.n_title h2 {
  font-size: 38px;
  color: #333;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.n_title h2 span {
  font-size: 56px;
  margin: 0 10px;
  color: #ff7f2b;
  font-family: "Impact";
  font-weight: 400;
  font-style: italic;
}
.n_title h4 {
  font-size: 18px;
  color: #333;
  line-height: 1;
  font-weight: 100;
  text-align: center;
}
@media screen and (max-width: 1440px) {
  .n_title h2 {
    font-size: 26px;
  }
  .n_title h4 {
    font-size: 16px;
  }
}
@media screen and (max-width: 992px) {
  .n_title h2 {
    font-size: 22px;
    margin-bottom: 12px;
  }
  .n_title h4 {
    font-size: 15px;
    line-height: 1.5;
  }
}
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  background-color: #ffffff;
  line-height: 82px;
  height: 82px;
}
header > div {
  line-height: inherit;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
header > div .logo {
  width: 46%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
header > div .logo .logo_img {
  margin-right: 20px;
}
header > div .logo .logo_img a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
header > div .logo .logo_img a img {
  height: 67px;
}
header > div .logo .logo_text a h3 {
  font-size: 30px;
  color: #fff;
  line-height: 1;
  font-weight: 700;
  text-align: left;
  margin-bottom: 10px;
}
header > div .logo .logo_text a p {
  font-size: 14px;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: left;
}
header > div nav {
  width: 54%;
  line-height: inherit;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
header > div nav ul {
  width: 90%;
  width: calc(100% - 180px);
  line-height: inherit;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
header > div nav ul li {
  line-height: inherit;
  position: relative;
  width: 15%;
  z-index: 999;
  transition: all 1s;
}
header > div nav ul li:hover {
  background-color: #f8f8f8;
}
header > div nav ul li:hover .menu {
  height: auto;
  opacity: 1;
}
header > div nav ul li a {
  display: block;
  font-size: 16px;
  color: #333;
  line-height: inherit;
  font-weight: 400;
  text-align: center;
}
header > div nav ul li .menu {
  opacity: 0;
  overflow: hidden;
  height: 0;
  width: 100%;
  transition: all 1s;
  position: absolute;
  top: 112px;
  left: 0;
  background-color: #f8f8f8;
}
header > div nav ul li .menu .menu_item:nth-of-type(1) {
  margin-top: 20px;
}
header > div nav ul li .menu .menu_item:nth-last-of-type(1) {
  margin-bottom: 20px;
}
header > div nav ul li .menu .menu_item a {
  font-size: 14px;
  color: #333;
  line-height: 40px;
  font-weight: 400;
  text-align: center;
}
header > div nav ul li .menu .menu_item:hover {
  background-color: #ff7f2b;
}
header > div nav ul li .menu .menu_item:hover a {
  color: #fff;
}
header > div nav .tool {
  width: 150px;
  border-left: 1px solid #dfdfdf;
  padding-left: 20px;
}
header > div nav .tool > div {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
header > div nav .tool > div i {
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 30px;
  background-color: #ff7f2b;
  line-height: 30px;
  text-align: center;
}
header > div nav .tool > div h3 {
  margin-left: 10px;
  font-size: 14px;
  color: #333;
  line-height: 18px;
  font-weight: 700;
  text-align: center;
}
header > div nav .tool > p {
  font-size: 18px;
  color: #fff;
  line-height: 30px;
  font-weight: 700;
  text-align: left;
}
@media screen and (max-width: 1440px) {
  header > div .logo {
    width: 30%;
  }
  header > div nav {
    width: 66%;
  }
  header > div nav ul li a {
    font-size: 15px;
  }
}
@media screen and (max-width: 992px) {
  header {
    display: none;
  }
}
footer .top {
  width: 100%;
  padding-top: 40px;
  padding-bottom: 40px;
  background-image: url(/images/footer_bg.jpg);
  background-position: center;
  background-size: cover;
}
footer .top .w80 .top_sub1 {
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
footer .top .w80 .top_sub1 .left {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
footer .top .w80 .top_sub1 .left .img img {
  width: initial;
}
footer .top .w80 .top_sub1 .left .text {
  margin-left: 0px;
}
footer .top .w80 .top_sub1 .left .text h3 {
  font-size: 24px;
  color: #fff;
  line-height: 1;
  font-weight: 700;
  text-align: left;
}
footer .top .w80 .top_sub1 .left .text p {
  margin-top: 6px;
  font-size: 12px;
  color: #fff;
  line-height: 1;
  font-weight: 100;
  text-align: left;
  opacity: 0.4;
  letter-spacing: 1px;
}
footer .top .w80 .top_sub1 .right ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
footer .top .w80 .top_sub1 .right ul li {
  margin: 0 20px;
  padding-left: 10px;
  position: relative;
}
footer .top .w80 .top_sub1 .right ul li::after {
  content: "";
  display: block;
  width: 1px;
  height: 16px;
  background-color: #ff7f2b;
  position: absolute;
  left: 0;
  top: 2px;
}
footer .top .w80 .top_sub1 .right ul li a {
  font-size: 16px;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: left;
}
footer .top .w80 .top_sub2 {
  margin-top: 100px;
  margin-bottom: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
footer .top .w80 .top_sub2 .left {
  width: 70%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
footer .top .w80 .top_sub2 .left .l_sub1 h3 {
  font-size: 18px;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  margin-bottom: 20px;
}
footer .top .w80 .top_sub2 .left .l_sub1 h3 span {
  font-weight: 700;
}
footer .top .w80 .top_sub2 .left .l_sub2 {
  margin-left: 50px;
}
footer .top .w80 .top_sub2 .left .l_sub2 h3 {
  font-size: 18px;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  margin-bottom: 20px;
}
footer .top .w80 .top_sub2 .left .l_sub2 h3 span {
  font-weight: 700;
}
footer .top .w80 .top_sub2 .center h3 {
  font-size: 34px;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: center;
  font-family: "Avan";
  margin-bottom: 8px;
}
footer .top .w80 .top_sub2 .center p {
  font-size: 14px;
  color: #fff;
  line-height: 1;
  font-weight: 100;
  text-align: center;
  opacity: 0.3;
}
footer .top .w80 .top_sub2 .right img {
  width: 126px;
}
footer .top .w80 .top_sub2 .right p {
  margin-top: 10px;
  font-size: 16px;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: center;
}
footer .bottom {
  background-color: #000;
}
footer .bottom .w80 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
footer .bottom .w80 .left a {
  font-size: 15px;
  color: #fff;
  line-height: 56px;
  font-weight: 400;
  text-align: left;
  opacity: 0.5;
}
footer .bottom .w80 .right a {
  font-size: 15px;
  color: #fff;
  line-height: 56px;
  font-weight: 400;
  text-align: left;
  opacity: 0.5;
}
@media screen and (max-width: 1440px) {
  footer .top .w80 .top_sub2 {
    margin-top: 70px;
    margin-bottom: 30px;
  }
  footer .top .w80 .top_sub2 .right img {
    width: 100px;
  }
  footer .top .w80 .top_sub2 .right p {
    font-size: 14px;
  }
  footer .top .w80 .top_sub2 .center h3 {
    font-size: 26px;
  }
  footer .top .w80 .top_sub2 .center p {
    font-size: 12px;
  }
  footer .top .w80 .top_sub2 .left .l_sub1 h3 {
    font-size: 16px;
  }
  footer .top .w80 .top_sub2 .left .l_sub2 h3 {
    font-size: 16px;
  }
  footer .top .w80 .top_sub1 .left .text h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  footer .top .w80 .top_sub1 .left .text p {
    font-size: 12px;
    letter-spacing: 0.5px;
  }
  footer .bottom .w80 .left a {
    font-size: 14px;
  }
  footer .bottom .w80 .right a {
    font-size: 14px;
  }
  footer .top .w80 .top_sub1 .right ul li {
    margin: 0 10px;
  }
}
@media screen and (max-width: 992px) {
  footer .top .w80 .top_sub2 .left .l_sub2 {
    margin-left: 0;
  }
  footer .top .w80 .top_sub1 .right {
    display: none;
  }
  footer .top .w80 .top_sub1 .left .text h3 {
    font-size: 20px;
  }
  footer .top .w80 .top_sub1 .left .text p {
    letter-spacing: 0;
  }
  footer .top .w80 .top_sub1 .left .text {
    margin-left: 6px;
  }
  footer .top .w80 .top_sub2 .center {
    display: none;
  }
  footer .top .w80 .top_sub2 {
    position: relative;
  }
  footer .top .w80 .top_sub2 .right {
    position: absolute;
    top: 0;
    right: 0;
  }
  footer .bottom .w80 .left {
    display: none;
  }
  footer .top .w80 .top_sub2 .right p {
    display: none;
  }
}
.index .part01 {
  background-color: #f8f8f8;
  padding-top: 120px;
  padding-bottom: 100px;
}
.index .part01 .w80 .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .part01 .w80 .top .left {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .part01 .w80 .top .left .title h2 {
  font-size: 36px;
  color: #ff7f2b;
  line-height: 1;
  font-weight: 700;
  text-align: left;
  margin-bottom: 6px;
}
.index .part01 .w80 .top .left .title h3 {
  font-size: 24px;
  color: #333;
  line-height: 1;
  font-weight: 700;
  text-align: left;
}
.index .part01 .w80 .top .left .desc {
  margin-left: 20px;
}
.index .part01 .w80 .top .left .desc p {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  font-weight: 400;
  text-align: left;
}
.index .part01 .w80 .top .right .more {
  box-shadow: 1px 1px 5px #dfdfdf;
}
.index .part01 .w80 .top .right .more a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 200px;
  height: 46px;
  line-height: 46px;
  background-color: #fff;
  color: #333;
}
.index .part01 .w80 .top .right .more a .m_left {
  width: 76%;
  height: inherit;
  text-align: center;
}
.index .part01 .w80 .top .right .more a .m_right {
  width: 24%;
  height: inherit;
  text-align: center;
  background-color: #ff7f2b;
}
.index .part01 .w80 .top .right .more a .m_right i {
  color: #fff;
}
.index .part01 .w80 .bottom {
  margin-top: 60px;
}
.index .part01 .w80 .bottom ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .part01 .w80 .bottom ul li {
  background-color: #fff;
  width: 24%;
  height: 420px;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  margin-bottom: 30px;
}
.index .part01 .w80 .bottom ul li:hover a .img img {
  transform: scale(1.2);
}
.index .part01 .w80 .bottom ul li:hover a .mask .m_top {
  opacity: 1;
}
.index .part01 .w80 .bottom ul li:hover a .mask .m_bottom {
  opacity: 1;
}
.index .part01 .w80 .bottom ul li a .img {
  width: 50%;
  overflow: hidden;
  box-shadow: 0px 0px 8px #d6d6d6;
  border-radius: 50%;
  padding: 10px;
  background-color: #ff7f2b;
  margin: 50px auto 30px;
  position: relative;
  z-index: 6;
}
.index .part01 .w80 .bottom ul li a .img img {
  width: 100%;
  border-radius: 50%;
  transition: all 0.5s ease;
}
.index .part01 .w80 .bottom ul li a .text {
  text-align: center;
}
.index .part01 .w80 .bottom ul li a .text h3 {
  font-size: 24px;
  color: #333;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
}
.index .part01 .w80 .bottom ul li a .text p {
  font-size: 16px;
  color: #ff7f2b;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  margin-bottom: 24px;
}
.index .part01 .w80 .bottom ul li a .text h2 {
  font-size: 16px;
  color: #666;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  display: inline-block;
  padding-bottom: 6px;
  border-bottom: 1px solid #666;
}
.index .part01 .w80 .bottom ul li a .mask {
  width: 100%;
  height: 100%;
}
.index .part01 .w80 .bottom ul li a .mask .m_top {
  position: absolute;
  left: -50px;
  top: -50px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background-color: #ff7f2b;
  opacity: 0.2;
  transition: all 0.5s ease;
}
.index .part01 .w80 .bottom ul li a .mask .m_bottom {
  position: absolute;
  right: 6%;
  bottom: 0%;
  width: 0;
  height: 0;
  border-left: 50px solid #ff7f2b;
  border-top: 50px solid transparent;
  border-bottom: 50px solid transparent;
  transform: rotate(45deg);
  opacity: 0;
  transition: all 0.5s ease;
}
.index .part02 {
  width: 100%;
  background-color: #ff7f2b;
  overflow: hidden;
}
.index .part02 .w80 .top {
  padding-top: 80px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.index .part02 .w80 .top .title {
  width: 36%;
}
.index .part02 .w80 .top .title h2 {
  font-size: 36px;
  color: #fff;
  line-height: 1;
  font-weight: 700;
  text-align: left;
  margin-bottom: 6px;
}
.index .part02 .w80 .top .title h3 {
  font-size: 24px;
  color: #fff;
  line-height: 1;
  font-weight: 700;
  text-align: left;
}
.index .part02 .w80 .top .content {
  width: 60%;
}
.index .part02 .w80 .top .content h2 {
  font-size: 20px;
  color: #fff;
  line-height: 1;
  font-weight: 700;
  text-align: left;
  margin-bottom: 18px;
}
.index .part02 .w80 .top .content p {
  font-size: 16px;
  color: #fff;
  line-height: 1.6;
  font-weight: 400;
  text-align: left;
  opacity: 0.8;
}
.index .part02 .w80 .top .content h3 {
  margin-top: 20px;
  font-size: 16px;
  color: #fff;
  line-height: 1;
  font-weight: 700;
  text-align: left;
  opacity: 1;
}
.index .part02 .w80 .bottom {
  margin-top: 60px;
  margin-bottom: 80px;
  position: relative;
}
.index .part02 .w80 .bottom .text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.index .part02 .w80 .bottom .text img {
  width: 200px;
}
.index .part02 .w80 .bottom .text h3 {
  margin-top: 10px;
}
.index .part02 .w80 .bottom .text h3 span {
  font-size: 36px;
  color: #fff;
  line-height: 1;
  font-weight: 700;
  text-align: left;
  display: inline-block;
}
.index .part02 .w80 .bottom .text h3 span:nth-of-type(1) {
  animation: fontUpDown 3s ease infinite;
}
.index .part02 .w80 .bottom .text h3 span:nth-of-type(2) {
  animation: fontUpDown 3s ease 0.4s infinite;
}
.index .part02 .w80 .bottom .text h3 span:nth-of-type(3) {
  animation: fontUpDown 3s ease 0.8s infinite;
}
.index .part02 .w80 .bottom .text h3 span:nth-of-type(4) {
  animation: fontUpDown 3s ease 1.2s infinite;
}
.index .part02 .w80 .bottom .text h3 span:nth-of-type(5) {
  animation: fontUpDown 3s ease 1.6s infinite;
}
.index .part02 .w80 .bottom .text h3 span:nth-of-type(6) {
  animation: fontUpDown 3s ease 2s infinite;
}
.index .part02 .w80 .bottom .text h3 span:nth-of-type(7) {
  animation: fontUpDown 3s ease 2.4s infinite;
}
.index .part02 .w80 .bottom .text h3 span:nth-of-type(8) {
  animation: fontUpDown 3s ease 2.8s infinite;
}
.index .part02 .w80 .bottom .text h3 span:nth-of-type(9) {
  animation: fontUpDown 3s ease 3.2s infinite;
}
.index .part02 .w80 .bottom .text h3 span:nth-of-type(10) {
  animation: fontUpDown 3s ease 3.6s infinite;
}
.index .part02 .w80 .bottom .text h3 span:nth-of-type(11) {
  animation: fontUpDown 3s ease 4s infinite;
}
.index .part02 .w80 .bottom .text h3 span:nth-of-type(12) {
  animation: fontUpDown 3s ease 4.4s infinite;
}
.index .part02 .w80 .bottom .text h4 {
  margin-top: 6px;
}
.index .part02 .w80 .bottom .text h4 span {
  font-size: 18px;
  color: #fff;
  line-height: 1;
  font-weight: 100;
  text-align: left;
  display: inline-block;
  letter-spacing: 1px;
  opacity: 0.6;
}
.index .part02 .w80 .bottom .img img {
  width: 100%;
}
.index .part03 {
  overflow: hidden;
  padding-top: 120px;
  padding-bottom: 100px;
  width: 100%;
  background-color: #f8f8f8;
}
.index .part03 .w80 .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .part03 .w80 .top .left {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .part03 .w80 .top .left .title h2 {
  font-size: 36px;
  color: #ff7f2b;
  line-height: 1;
  font-weight: 700;
  text-align: left;
  margin-bottom: 6px;
}
.index .part03 .w80 .top .left .title h3 {
  font-size: 24px;
  color: #333;
  line-height: 1;
  font-weight: 700;
  text-align: left;
}
.index .part03 .w80 .top .left .desc {
  margin-left: 20px;
}
.index .part03 .w80 .top .left .desc p {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  font-weight: 400;
  text-align: left;
}
.index .part03 .w80 .top .right .more {
  box-shadow: 1px 1px 5px #dfdfdf;
}
.index .part03 .w80 .top .right .more a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 200px;
  height: 46px;
  line-height: 46px;
  background-color: #fff;
  color: #333;
}
.index .part03 .w80 .top .right .more a .m_left {
  width: 76%;
  height: inherit;
  text-align: center;
}
.index .part03 .w80 .top .right .more a .m_right {
  width: 24%;
  height: inherit;
  text-align: center;
  background-color: #ff7f2b;
}
.index .part03 .w80 .top .right .more a .m_right i {
  color: #fff;
}
.index .part03 .w80 .bottom {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.index .part03 .w80 .bottom .left {
  width: 32%;
}
.index .part03 .w80 .bottom .left .img {
  overflow: hidden;
  height: 0;
  padding-bottom: 360px;
}
.index .part03 .w80 .bottom .left .img img {
  float: left;
  width: 100%;
}
.index .part03 .w80 .bottom .left .text {
  width: 100%;
  height: 180px;
  background-color: #ff7f2b;
  box-sizing: border-box;
  padding: 20px;
  overflow: hidden;
}
.index .part03 .w80 .bottom .left .text .t1 {
  margin-top: 20px;
}
.index .part03 .w80 .bottom .left .text .t1 h3 {
  font-size: 18px;
  color: #fff;
  line-height: 1;
  font-weight: 700;
  text-align: left;
  margin-bottom: 10px;
}
.index .part03 .w80 .bottom .left .text .t1 p {
  font-size: 14px;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  margin-bottom: 20px;
}
.index .part03 .w80 .bottom .left .text .t2 {
  margin-bottom: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.index .part03 .w80 .bottom .left .text .t2 p {
  font-size: 15px;
  color: #fff;
  line-height: 1.5;
  font-weight: 400;
  text-align: left;
  opacity: 0.8;
}
.index .part03 .w80 .bottom .center {
  width: 32%;
}
.index .part03 .w80 .bottom .center ul li {
  background-color: #fff;
  box-sizing: border-box;
  padding: 26px;
  height: 166px;
  margin-bottom: 21px;
  position: relative;
}
.index .part03 .w80 .bottom .center ul li:hover .line::after {
  width: 100%;
}
.index .part03 .w80 .bottom .center ul li:hover .title h4 {
  color: #ff7f2b;
}
.index .part03 .w80 .bottom .center ul li:nth-of-type(3) {
  margin-bottom: 0;
}
.index .part03 .w80 .bottom .center ul li .title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.index .part03 .w80 .bottom .center ul li .title h4 {
  font-size: 18px;
  color: #333;
  line-height: 1;
  font-weight: 700;
  text-align: left;
  transition: all 0.5s ease;
}
.index .part03 .w80 .bottom .center ul li .title p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  font-weight: 400;
  text-align: left;
}
.index .part03 .w80 .bottom .center ul li .content p {
  font-size: 15px;
  color: #666;
  line-height: 1.5;
  font-weight: 400;
  text-align: left;
}
.index .part03 .w80 .bottom .center ul li .line {
  position: absolute;
  left: 20px;
  bottom: 20px;
  height: 1px;
  width: calc(100% - 40px);
  background-color: #eeeeee;
}
.index .part03 .w80 .bottom .center ul li .line::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background-color: #ff7f2b;
  transition: all 0.5s ease;
}
.index .part03 .w80 .bottom .right {
  width: 32%;
}
.index .part03 .w80 .bottom .right ul li {
  background-color: #fff;
  box-sizing: border-box;
  position: relative;
  padding: 20px;
  height: 166px;
  margin-bottom: 21px;
}
.index .part03 .w80 .bottom .right ul li:hover .line::after {
  width: 100%;
}
.index .part03 .w80 .bottom .right ul li:hover .title h4 {
  color: #ff7f2b;
}
.index .part03 .w80 .bottom .right ul li:nth-of-type(3) {
  margin-bottom: 0;
}
.index .part03 .w80 .bottom .right ul li .title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.index .part03 .w80 .bottom .right ul li .title h4 {
  font-size: 18px;
  color: #333;
  line-height: 1;
  font-weight: 700;
  text-align: left;
  transition: all 0.5s ease;
}
.index .part03 .w80 .bottom .right ul li .title p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  font-weight: 400;
  text-align: left;
}
.index .part03 .w80 .bottom .right ul li .content p {
  font-size: 15px;
  color: #666;
  line-height: 1.5;
  font-weight: 400;
  text-align: left;
}
.index .part03 .w80 .bottom .right ul li .line {
  position: absolute;
  left: 20px;
  bottom: 20px;
  height: 1px;
  width: calc(100% - 40px);
  background-color: #eeeeee;
}
.index .part03 .w80 .bottom .right ul li .line::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background-color: #ff7f2b;
  transition: all 0.5s ease;
}
.index .part04 {
  width: 100%;
  height: 300px;
  background-image: url(/images/part04_bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.index .part04 .w80 .title {
  margin-top: 72px;
}
.index .part04 .w80 .title h2 {
  font-size: 30px;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: center;
}
.index .part04 .w80 .title h2 span {
  font-weight: 700;
  font-size: 36px;
}
.index .part04 .w80 .title h4 {
  margin-top: 20px;
  font-size: 20px;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: center;
}
.index .part04 .w80 .pt_box {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.index .part04 .w80 .pt_box .c {
  width: 180px;
  height: 44px;
  background-color: #fff;
}
.index .part04 .w80 .pt_box .c a {
  height: inherit;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.index .part04 .w80 .pt_box .c a p {
  margin-right: 10px;
  font-size: 16px;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: center;
}
.index .part04 .w80 .pt_box .p {
  margin-left: 20px;
  width: 180px;
  height: 44px;
  background-color: #fff;
}
.index .part04 .w80 .pt_box .p a {
  height: inherit;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.index .part04 .w80 .pt_box .p a p {
  margin-right: 10px;
  font-size: 16px;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: center;
}
.index .part04 .w80 .pt_box .p a i {
  font-size: 16px;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: center;
}
@media screen and (max-width: 1440px) {
  .index .part01 .w80 .top .left .title h2 {
    font-size: 32px;
  }
  .index .part01 .w80 .top .left .title h3 {
    font-size: 22px;
  }
  .index .part01 .w80 .top .left .desc p {
    font-size: 15px;
    line-height: 1.8;
  }
  .index .part01 .w80 .bottom ul li {
    height: 380px;
  }
  .index .part01 .w80 .bottom ul li a .text h3 {
    font-size: 18px;
    margin-bottom: 24px;
  }
  .index .part01 .w80 .bottom ul li a .img {
    margin: 40px auto 30px;
    padding: 8px;
  }
  .index .part01 .w80 .bottom ul li a .text h2 {
    font-size: 15px;
  }
  .index .part02 .w80 .top .content p {
    font-size: 15px;
  }
  .index .part02 .w80 .top .title h2 {
    font-size: 32px;
  }
  .index .part02 .w80 .top .title h3 {
    font-size: 22px;
  }
  .index .part02 .w80 .bottom .text h3 span {
    font-size: 30px;
  }
  .index .part02 .w80 .bottom .text h4 span {
    font-size: 15px;
  }
  .index .part03 .w80 .top .left .title h2 {
    font-size: 32px;
  }
  .index .part03 .w80 .top .left .title h3 {
    font-size: 22px;
  }
  .index .part03 .w80 .top .left .desc p {
    font-size: 15px;
  }
  .index .part03 .w80 .top .right .more a {
    width: 180px;
  }
  .index .part03 .w80 .bottom .right ul li .title h4 {
    font-size: 16px;
  }
  .index .part03 .w80 .bottom .right ul li .content p {
    font-size: 14px;
  }
  .index .part03 .w80 .bottom .center ul li .title h4 {
    font-size: 16px;
  }
  .index .part03 .w80 .bottom .center ul li .content p {
    font-size: 14px;
  }
  .index .part04 .w80 .title h2 {
    font-size: 24px;
  }
  .index .part04 .w80 .title h2 span {
    font-size: 28px;
  }
  .index .part04 .w80 .title h4 {
    font-size: 16px;
  }
  .index .part04 .w80 .pt_box .p a p {
    font-size: 14px;
  }
  .index .part04 .w80 .pt_box .p a .iconfont {
    font-size: 14px;
  }
  .index .part04 .w80 .pt_box .c a p {
    font-size: 14px;
  }
  .index .part04 .w80 .pt_box .c a .iconfont {
    font-size: 14px;
  }
  .index .part04 {
    height: 260px;
  }
  .index .part04 .w80 .title {
    margin-top: 52px;
  }
}
@media screen and (max-width: 992px) {
  .index .part01 .w80 .top .left .desc {
    margin-left: 0;
    margin-top: 10px;
  }
  .index .part01 .w80 .top .right .more {
    display: none;
  }
  .index .part01 {
    padding-top: 80px;
  }
  .index .part01 .w80 .bottom ul li {
    width: 100%;
  }
  .index .part01 .w80 .top .left .title h2 {
    font-size: 24px;
  }
  .index .part02 .w80 .top .title {
    width: 100%;
  }
  .index .part02 .w80 .top .title h2 {
    font-size: 24px;
  }
  .index .part02 .w80 .top .content {
    width: 100%;
    margin-top: 40px;
  }
  .index .part02 .w80 .bottom .text h3 {
    display: none;
  }
  .index .part02 .w80 .bottom .text h4 {
    display: none;
  }
  .index .part03 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .index .part03 .w80 .top .left .desc {
    margin-left: 0;
    margin-top: 10px;
  }
  .index .part03 .w80 .top .right {
    display: none;
  }
  .index .part03 .w80 .bottom .left {
    width: 100%;
  }
  .index .part03 .w80 .bottom .center {
    width: 100%;
    margin-top: 20px;
  }
  .index .part03 .w80 .bottom .right {
    width: 100%;
    margin-top: 20px;
  }
  .index .part03 .w80 .bottom .left .img {
    padding-bottom: 300px;
  }
  .index .part04 .w80 .title h2 {
    font-size: 16px;
  }
  .index .part04 .w80 .title h2 span {
    font-size: 24px;
  }
  .index .part04 .w80 .pt_box .c {
    width: 130px;
  }
  .index .part04 .w80 .pt_box .p {
    width: 130px;
    margin-left: 10px;
  }
}
@keyframes fontUpDown {
  0% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.3;
  }
}
.about .main {
  width: 100%;
  overflow: hidden;
}
.about .main .w80 .top {
  margin-top: 120px;
  margin-bottom: 100px;
}
.about .main .w80 .top .img {
  width: 100%;
}
.about .main .w80 .top .img img {
  width: initial;
}
.about .main .w80 .top .text {
  margin-top: 50px;
}
.about .main .w80 .top .text h2 {
  font-size: 32px;
  color: #ff7f2b;
  line-height: 1;
  font-weight: 700;
  text-align: left;
  margin-bottom: 20px;
}
.about .main .w80 .top .text p {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  font-weight: 400;
  text-align: left;
}
.about .main .w80 .bottom {
  background-color: #f8f8f8;
  padding: 40px;
  margin-top: 60px;
  margin-bottom: 120px;
}
.about .main .w80 .bottom .text2 {
  margin-top: 30px;
}
.about .main .w80 .bottom .text2 h2 {
  font-size: 26px;
  color: #ff7f2b;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
}
.about .main .w80 .bottom .text2 .t2_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.about .main .w80 .bottom .text2 .t2_box p {
  width: 49%;
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  font-weight: 400;
  text-align: left;
  position: relative;
  padding-left: 10px;
  margin-bottom: 16px;
  background-color: #fff;
  padding: 20px 40px;
  box-sizing: border-box;
}
.about .main .w80 .bottom .text2 .t2_box p::after {
  content: "";
  display: block;
  width: 2px;
  height: 24px;
  background-color: #ff7f2b;
  position: absolute;
  left: 20px;
  top: 22px;
}
@media screen and (max-width: 992px) {
  .about .main .w80 .top .img img {
    width: 100%;
  }
  .about .main .w80 .top .text h2 {
    font-size: 22px;
  }
  .about .main .w80 .top {
    margin-top: 80px;
    margin-bottom: 60px;
  }
  .about .main .w80 .bottom .text2 h2 {
    font-size: 18px;
  }
  .about .main .w80 .bottom {
    padding: 20px;
  }
  .about .main .w80 .bottom .text2 .t2_box p {
    width: 100%;
    font-size: 15px;
  }
}
.product .main {
  padding-top: 130px;
  overflow: hidden;
}
.product .main > .w80 .top {
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.product .main > .w80 .top .n_proList {
  margin-top: 60px;
}
.product .main > .w80 .top .n_proList ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.product .main > .w80 .top .n_proList ul li {
  width: 20%;
  width: calc(20% - 2px);
  background-color: #f8f8f8;
  margin-bottom: 2px;
}
.product .main > .w80 .top .n_proList ul li a {
  display: block;
  font-size: 16px;
  color: #666;
  line-height: 52px;
  font-weight: 100;
  text-align: center;
}
.product .main .n_list {
  margin-top: 50px;
}
.product .main .n_list ul {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.product .main .n_list ul li {
  width: 24%;
  margin-right: 1%;
  margin-bottom: 26px;
  transition: all 0.5s ease;
}
.product .main .n_list ul li:hover a .img img {
  transform: scale(1.2);
}
.product .main .n_list ul li a .img {
  width: 100%;
  border: 1px solid #efefef;
  box-sizing: border-box;
  overflow: hidden;
}
.product .main .n_list ul li a .img img {
  width: 100%;
  transition: all 0.5s ease;
}
.product .main .n_list ul li a .txt {
  background-color: #ff7f2b;
  box-sizing: border-box;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  transition: all 0.5s ease;
  height: 58px;
}
.product .main .n_list ul li a .txt .left {
  display: flex;
  align-items: center;
  width: calc(100% - 68px);
  font-size: 16px;
  line-height: 1;
  color: #fff;
  text-transform: lowercase;
}
.product .main .n_list ul li a .txt .left p {
  font-size: 16px;
  line-height: 1;
  color: #fff;
  text-transform: lowercase;
}
.product .main .n_list ul li a .txt .right {
  width: 64px;
  display: flex;
  align-items: center;
}
.product .main .n_list ul li a .txt .right p {
  font-size: 14px;
  line-height: 1;
  color: #fff;
  opacity: 0.6;
}
.product .main .n_list ul li a .txt .right p i {
  font-size: 24px;
  margin-left: 10px;
}
.product .main .n_list ul li:nth-child(4n) {
  margin-right: 0;
}
@media screen and (max-width: 1440px) {
  .product .main > .w80 .top .n_proList ul li a {
    font-size: 14px;
    line-height: 46px;
  }
  .product .main .n_list ul li a .txt .left {
    font-size: 15px;
    width: 100%;
  }
  .product .main .n_list ul li a .txt .right p {
    font-size: 13px;
  }
  .product .main .n_list ul li a .txt {
    padding: 14px;
  }
  .product .main .n_list ul li a .txt .right {
    display: none;
  }
}
@media screen and (max-width: 992px) {
  .product .main {
    padding-top: 80px;
  }
  .product .main .n_list ul li {
    width: 100%;
  }
}
.proDetailed .main {
  overflow: hidden;
  padding-bottom: 100px;
  padding-top: 100px;
  background-color: #f7f7f7;
}
.proDetailed .main > div .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.proDetailed .main > div .pro_box {
  padding: 50px;
  box-sizing: border-box;
  background-color: #fff;
}
.proDetailed .main > div .pro_box::after {
  content: "";
  display: block;
  height: 0;
  clear: both;
}
.proDetailed .main > div .pro_box::before {
  content: "";
  display: block;
  height: 0;
  clear: both;
}
.proDetailed .main > div .pro_box .m_proDetailed_left {
  float: left;
  width: 50%;
  position: relative;
}
.proDetailed .main > div .pro_box .m_proDetailed_left .bigImg img {
  width: 70%;
  display: block;
  margin: 0 auto;
}
.proDetailed .main > div .pro_box .m_proDetailed_right {
  float: right;
  width: 45%;
}
.proDetailed .main > div .pro_box .m_proDetailed_right .m_proDetailedTitle {
  overflow: hidden;
  border-bottom: 1px solid #dcdcdc;
}
.proDetailed .main > div .pro_box .m_proDetailed_right .m_proDetailedTitle h3 {
  display: block;
  font-size: 26px;
  font-weight: bold;
  text-transform: uppercase;
  color: #333;
  margin-bottom: 20px;
  line-height: 28px;
}
.proDetailed .main > div .pro_box .m_proDetailed_right .m_proDetailedTitle p {
  font-size: 14px;
  line-height: 24px;
  color: #666;
  margin-bottom: 20px;
}
.proDetailed .main > div .pro_box .m_proDetailed_right .m_proDetailedContent {
  margin-bottom: 20px;
  padding-top: 30px;
}
.proDetailed .main > div .pro_box .m_proDetailed_right .m_proDetailedContent ul li {
  list-style: none;
  margin-bottom: 20px;
}
.proDetailed .main > div .pro_box .m_proDetailed_right .m_proDetailedContent ul li:nth-of-type(3) {
  margin-bottom: 60px;
}
.proDetailed .main > div .pro_box .m_proDetailed_right .m_proDetailedContent ul li p {
  display: inline-block;
  font-size: 16px;
  color: #333;
  text-transform: uppercase;
}
.proDetailed .main > div .pro_box .m_proDetailed_right .m_proDetailedContent ul li p span {
  display: inline-block;
  font-size: 16px;
  padding-left: 5px;
  color: #999;
  text-transform: uppercase;
}
.proDetailed .main > div .pro_box .m_proDetailed_right .m_proDetailedContent ul li > div {
  background-color: #ff7f2b;
  font-size: 18px;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: center;
  display: inline-block;
  padding: 20px;
}
.proDetailed .main > div .pro_box .m_proDetailed_right .m_proDetailedContent ul li > div i {
  font-size: 24px;
}
.proDetailed .main > div .pro_box .m_proDetailed_right .m_proDetailedContent .qiehuan {
  margin-top: 40px;
}
.proDetailed .main > div .pro_box .m_proDetailed_right .m_proDetailedContent .qiehuan .fenxiang .fenxiang_title {
  margin-top: 0;
}
.proDetailed .main > div .pro_box .m_proDetailed_right .m_proDetailedContent .qiehuan .fenxiang .fenxiang_title h3 {
  font-size: 15px;
  font-weight: bold;
}
.proDetailed .main > div .pro_box .m_proDetailed_right .m_proDetailedContent .qiehuan .fenxiang .fenxiang_txt {
  margin-top: 12px;
}
.proDetailed .main > div .pro_box .m_proDetailed_right .m_proDetailedContent .qiehuan .fenxiang .fenxiang_txt a {
  display: inline-block;
  margin-right: 20px;
}
.proDetailed .main > div .pro_box .m_proDetailed_right .m_proDetailedContent .qiehuan .pre {
  margin-top: 20px;
  padding: 10px;
  width: 100%;
  background-color: #f6f6f6;
  box-sizing: border-box;
}
.proDetailed .main > div .pro_box .m_proDetailed_right .m_proDetailedContent .qiehuan .pre a {
  font-size: 14px;
  color: #333;
  line-height: 1;
  font-weight: normal;
  text-align: left;
}
.proDetailed .main > div .pro_box .m_proDetailed_right .m_proDetailedContent .qiehuan .next {
  margin-top: 12px;
  padding: 10px;
  width: 100%;
  background-color: #f6f6f6;
  box-sizing: border-box;
}
.proDetailed .main > div .pro_box .m_proDetailed_right .m_proDetailedContent .qiehuan .next a {
  font-size: 14px;
  color: #333;
  line-height: 1;
  font-weight: normal;
  text-align: left;
}
.proDetailed .main > div .pro_box .pro_content {
  margin-top: 60px;
}
.proDetailed .main > div .pro_box .pro_content .proDetails_title {
  border-bottom: 1px solid #dfdfdf;
}
.proDetailed .main > div .pro_box .pro_content .proDetails_title h3 {
  font-size: 18px;
  color: #fff;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  display: inline-block;
  background-color: #ff7f2b;
  padding: 15px 40px;
}
.proDetailed .main > div .pro_box .pro_content .pro_details {
  margin-top: 20px;
}
.proDetailed .main > div .pro_box .pro_content .pro_details h3 {
  font-size: 18px;
  color: #ff7f2b;
  line-height: 1.8;
  font-weight: 700;
  text-align: left;
  margin-bottom: 16px;
  padding-left: 50px;
  background-image: url(/images/proTitleIcon.jpg);
  background-position: left center;
  background-repeat: no-repeat;
}
.proDetailed .main > div .pro_box .pro_content .pro_details p {
  font-size: 16px;
  color: #333;
  line-height: 1.8;
  font-weight: 400;
  text-align: left;
  margin-bottom: 10px;
}
.proDetailed .main > div .pro_box .pro_content .pro_details img {
  width: 100%;
}
.proDetailed .main > div .other {
  overflow: hidden;
  margin-top: 60px;
}
.proDetailed .main > div .other .title {
  margin-bottom: 20px;
}
.proDetailed .main > div .other .title h3 {
  font-size: 24px;
}
.proDetailed .main > div .other ul li .img img {
  width: 100%;
}
.proDetailed .main > div .other ul li .txt {
  width: 100%;
  padding: 14px;
  box-sizing: border-box;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.proDetailed .main > div .other ul li .txt p {
  font-size: 15px;
  color: #333;
  line-height: 1;
  font-weight: normal;
  text-align: left;
  text-transform: lowercase;
}
.proDetailed .main > div .other ul li .txt i {
  font-size: 15px;
  color: #333;
  line-height: 1;
  font-weight: normal;
  text-align: left;
}
@media screen and (max-width: 1440px) {
  .proDetailed .main > div .pro_box .m_proDetailed_right .m_proDetailedContent ul li:nth-of-type(3) {
    display: none;
  }
  .proDetailed .main > div .pro_box .m_proDetailed_right .m_proDetailedContent ul li:nth-of-type(2) {
    margin-bottom: 30px;
  }
  .proDetailed .main > div .pro_box .pro_content .pro_details p {
    font-size: 14px;
  }
  .proDetailed .main {
    padding-top: 60px;
  }
  .n_title3::before {
    font-size: 72px;
    top: 20px;
  }
  .n_title3 h3 {
    font-size: 32px;
    margin-bottom: -4px;
  }
  .n_title3 p {
    font-size: 14px;
  }
  .n_title3 {
    margin-bottom: 24px;
  }
  .proDetailed .main > div .pro_box .m_proDetailed_right .m_proDetailedTitle h3 {
    font-size: 20px;
    margin-bottom: 6px;
  }
  .proDetailed .main > div .pro_box .m_proDetailed_right .m_proDetailedContent ul li {
    margin-bottom: 10px;
  }
  .proDetailed .main > div .pro_box .m_proDetailed_right .m_proDetailedContent ul li p {
    font-size: 14px;
  }
  .proDetailed .main > div .pro_box .m_proDetailed_right .m_proDetailedContent {
    padding-top: 20px;
  }
  .proDetailed .main > div .pro_box .m_proDetailed_right .m_proDetailedContent ul li p span {
    font-size: 14px;
  }
  .proDetailed .main > div .pro_box .m_proDetailed_right .m_proDetailedContent ul li > div {
    padding: 0 14px;
    font-size: 15px;
    line-height: 40px;
  }
  .proDetailed .main > div .pro_box .m_proDetailed_right .m_proDetailedContent ul li > div:nth-of-type(2) {
    display: none;
  }
  .proDetailed .main > div .pro_box .m_proDetailed_right .m_proDetailedContent ul li > div i {
    font-size: 18px;
  }
  .proDetailed .main > div .pro_box .m_proDetailed_right .m_proDetailedContent ul li:nth-of-type(3) {
    margin-bottom: 24px;
  }
  .proDetailed .main > div .pro_box .pro_content {
    margin-top: 30px;
  }
  .proDetailed .main > div .pro_box .pro_content .proDetails_title h3 {
    padding: 12px 34px;
    font-size: 14px;
  }
  .proDetailed .main > div .pro_box .m_proDetailed_left .smailImg .btnLeft {
    margin-left: 10px;
    width: 22px;
    height: 50px;
    line-height: 50px;
  }
  .proDetailed .main > div .pro_box .m_proDetailed_left .smailImg .btnRight {
    margin-left: 10px;
    width: 22px;
    height: 50px;
    line-height: 50px;
  }
  .proDetailed .main > div .pro_box {
    padding: 30px;
  }
  .proDetailed .main > div .top {
    margin-bottom: 30px;
  }
  .proDetailed .main > div .other ul li .txt i {
    display: none;
  }
}
@media screen and (max-width: 992px) {
  .proDetailed .main > div .pro_box .m_proDetailed_left .bigImg {
    padding: 0;
  }
  .proDetailed .main > div .pro_box .m_proDetailed_left .smailImg {
    display: none;
  }
  .proDetailed .main > div .pro_box {
    padding: 10px;
  }
  .proDetailed .main > div .pro_box .m_proDetailed_left {
    width: 100%;
  }
  .proDetailed .main > div .pro_box .m_proDetailed_right {
    width: 100%;
    margin-top: 30px;
  }
  .proDetailed .main > div .pro_box .m_proDetailed_right .m_proDetailedContent ul li > div {
    font-size: 14px;
  }
  .proDetailed .main > div .other .title h3 {
    font-size: 22px;
  }
}
.news .main > div:first-of-type {
  margin-top: 80px;
  overflow: hidden;
}
.news .main > div:first-of-type .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.news .main > div:first-of-type .news_part02 {
  margin-top: 50px;
}
.news .main > div:first-of-type .news_part02 ul li {
  float: left;
  width: 32%;
  margin-right: 2%;
  background: #fff;
  transition: 0.5s ease;
  margin-bottom: 40px;
  border-bottom: 3px solid #cecdcf;
  box-shadow: 3px 4px 8px #f8f8f8;
}
.news .main > div:first-of-type .news_part02 ul li:nth-of-type(3n) {
  margin-right: 0;
}
.news .main > div:first-of-type .news_part02 ul li a:hover .n_newsText {
  background-color: #ff7f2b;
}
.news .main > div:first-of-type .news_part02 ul li a:hover .n_newsText .n_textBox .n_textBox_center .tit {
  color: #fff;
  opacity: 0.6;
}
.news .main > div:first-of-type .news_part02 ul li a:hover .n_newsText .n_textBox .n_textBox_center .desc p {
  color: #fff;
}
.news .main > div:first-of-type .news_part02 ul li a:hover .n_newsText .n_textBox .n_textBox_center .box2 .date {
  color: #fff;
}
.news .main > div:first-of-type .news_part02 ul li a:hover .n_newsText .n_textBox .n_textBox_center .box2 .n_icon {
  background-color: #ff7f2b;
}
.news .main > div:first-of-type .news_part02 ul li a:hover .n_newsImg .n_newsImg_box img {
  transform: calc(1.1);
}
.news .main > div:first-of-type .news_part02 ul li a .n_newsImg .n_newsImg_box {
  position: relative;
  display: block;
  width: 100%;
  height: 350px;
  overflow: hidden;
}
.news .main > div:first-of-type .news_part02 ul li a .n_newsImg .n_newsImg_box img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  transition: all 0.5s ease;
}
.news .main > div:first-of-type .news_part02 ul li a .n_newsText {
  background-color: #f6f6f6;
}
.news .main > div:first-of-type .news_part02 ul li a .n_newsText .n_textBox {
  padding: 30px 30px 16px 30px;
}
.news .main > div:first-of-type .news_part02 ul li a .n_newsText .n_textBox .n_textBox_center {
  position: relative;
  display: block;
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-bottom: 100px;
}
.news .main > div:first-of-type .news_part02 ul li a .n_newsText .n_textBox .n_textBox_center .tit {
  font-size: 14px;
  line-height: 1;
  height: 14px;
  color: #cccccc;
  overflow: hidden;
  margin: 0 0 6px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.news .main > div:first-of-type .news_part02 ul li a .n_newsText .n_textBox .n_textBox_center .desc {
  height: 30px;
  margin-bottom: 6px;
}
.news .main > div:first-of-type .news_part02 ul li a .n_newsText .n_textBox .n_textBox_center .desc p {
  font-size: 18px;
  color: #333;
  line-height: 1.5;
  font-weight: 700;
  text-align: left;
}
.news .main > div:first-of-type .news_part02 ul li a .n_newsText .n_textBox .n_textBox_center .box2 {
  border-top: 1px solid #d5d5d5;
  padding-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.news .main > div:first-of-type .news_part02 ul li a .n_newsText .n_textBox .n_textBox_center .box2 .date {
  font-size: 15px;
  line-height: 20px;
  color: #a1a0a1;
}
.news .main > div:first-of-type .news_part02 ul li a .n_newsText .n_textBox .n_textBox_center .box2 .n_icon {
  width: 32px;
  height: 32px;
  box-sizing: border-box;
  transition: 0.3s ease;
  cursor: pointer;
  background-color: #ff7f2b;
  border-radius: 50%;
  text-align: center;
  line-height: 32px;
}
.news .main > div:first-of-type .news_part02 ul li a .n_newsText .n_textBox .n_textBox_center .box2 .n_icon i {
  color: #fff;
}
@media screen and (max-width: 1440px) {
  .news .main > div:first-of-type .newsBoxTitle h3 {
    font-size: 24px;
  }
  .news .main > div:first-of-type .newsBoxTitle h3::after {
    margin-top: 14px;
    height: 2px;
    width: 30px;
    background-color: #ff7f2b;
  }
  .news .main > div:first-of-type .newsBoxTitle p {
    font-size: 16px;
  }
  .news .main > div:first-of-type .newsBoxTitle p img {
    display: none;
  }
  .news .main > div:first-of-type .newsBoxTitle {
    margin-bottom: 30px;
  }
  .news .main > div:first-of-type .news_part02 ul li a .n_newsImg .n_newsImg_box {
    height: 240px;
  }
  .news .main > div:first-of-type .news_part02 ul li a .n_newsText .n_textBox {
    padding: 20px;
  }
  .news .main > div:first-of-type .news_part02 ul li a .n_newsText .n_textBox .n_textBox_center {
    padding-bottom: 130px;
  }
  .news .main > div:first-of-type .news_part02 ul li a .n_newsText .n_textBox .n_textBox_center .desc {
    height: 50px;
    margin-bottom: 10px;
  }
  .news .main > div:first-of-type .news_part02 ul li a .n_newsText .n_textBox .n_textBox_center .desc p {
    font-size: 16px;
  }
  .news .main {
    padding-bottom: 0px;
  }
}
@media screen and (max-width: 992px) {
  .news .main > div:first-of-type {
    margin-top: 50px;
  }
  .news .main > div:first-of-type .newsBoxTitle h3 {
    font-size: 18px;
  }
  .news .main > div:first-of-type .newsBoxTitle p {
    font-size: 13px;
    margin-top: 14px;
  }
  .news .main > div:first-of-type .news_part02 ul li {
    width: 100%;
  }
  .news .main > div:first-of-type .news_part02 ul li a .n_newsImg .n_newsImg_box {
    height: 200px;
  }
  .news .main > div:first-of-type .news_part02 ul li a .n_newsText .n_textBox .n_textBox_center .desc p {
    font-size: 14px;
  }
  .news .main > div:first-of-type .news_part02 ul li a .n_newsText .n_textBox .n_textBox_center .desc {
    height: 40px;
  }
  .news .main > div:first-of-type .news_part02 ul li a .n_newsText .n_textBox .n_textBox_center {
    padding-bottom: 114px;
  }
  .news .main > div:first-of-type .news_part02 ul li a .n_newsText .n_textBox .n_textBox_center .box2 .date {
    font-size: 12px;
  }
  .news .main {
    margin-bottom: 40px;
  }
}
.news_detailed .main .ct .detailed > .n_title {
  display: block;
}
.news_detailed .main .ct .detailed > .n_title h3 {
  font-size: 24px;
  color: #333;
  line-height: 1;
  font-weight: bold;
  text-align: center;
}
.news_detailed .main .ct .detailed .sub2 .share {
  display: flex;
  justify-content: center;
  padding-bottom: 20px;
  border-bottom: 1px solid #d6d6d6;
  margin-bottom: 40px;
}
.news_detailed .main .ct .detailed .sub2 .share p {
  font-size: 14px;
  margin: 0 10px;
}
.news_detailed .main .ct .detailed .sub2 .news_content {
  text-align: center;
}
.news_detailed .main .ct .detailed .sub2 .news_content p {
  margin-bottom: 20px;
  font-size: 16px;
  color: #333;
  line-height: 1.8;
  font-weight: normal;
  text-align: left;
}
.news_detailed .main .ct .detailed .sub2 .news_content img {
  display: block;
  width: initial;
  margin: 0 auto;
}
.news_detailed .main .ct .detailed .sub2 .np {
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 75px;
}
.news_detailed .main .ct .detailed .sub2 .np div {
  width: 48%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f6f6f6;
}
.news_detailed .main .ct .detailed .sub2 .np div i {
  font-size: 24px;
}
.news_detailed .main .ct .detailed .sub2 .np div a {
  font-size: 16px;
  color: #000;
  line-height: 60px;
  font-weight: normal;
  text-align: left;
}
@media screen and (max-width: 1440px) {
  .news_detailed .main .ct .detailed > .n_title h3 {
    font-size: 22px;
  }
  .news_detailed .main .ct .detailed .sub1 h3 {
    font-size: 20px;
  }
  .news_detailed .main .ct .detailed .sub2 .news_content p {
    font-size: 15px;
  }
  .news_detailed .main .ct .detailed .sub2 .np div a {
    font-size: 14px;
  }
  .mt-100 {
    margin-top: 80px;
  }
}
@media screen and (max-width: 992px) {
  .news_detailed .main .ct .detailed .sub2 .np {
    flex-wrap: wrap;
  }
  .news_detailed .main .ct .detailed .sub2 .np div {
    width: 100%;
    margin-bottom: 10px;
    justify-content: flex-start;
  }
  .news_detailed .main .ct .detailed .sub2 .np div i {
    display: none;
  }
  .news_detailed .main .ct .detailed .n_title h3 {
    font-size: 18px;
  }
  .news_detailed .main .ct .detailed .sub2 .news_content img {
    width: 100%;
  }
  .news_detailed .main .ct .detailed .sub2 .np div a {
    line-height: 1.2;
    padding: 8px;
  }
}
.contact .main {
  background-color: #f3f3f3;
  overflow: hidden;
}
.contact .main .top {
  margin-top: 120px;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.contact .main .top .left {
  width: 48%;
}
.contact .main .top .left .img {
  width: 100%;
  height: 0;
  padding-bottom: 440px;
  overflow: hidden;
}
.contact .main .top .left .img img {
  width: 100%;
}
.contact .main .top .right {
  width: 48%;
  height: 440px;
}
.contact .main .top .right .n_title {
  margin-bottom: 30px;
}
.contact .main .top .right .n_title h3 {
  font-size: 20px;
  color: #333;
  line-height: 1;
  font-weight: 700;
  text-align: left;
}
.contact .main .top .right ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.contact .main .top .right ul li {
  background-color: #fff;
  width: 50%;
  height: 102px;
  padding: 0 34px;
  box-sizing: border-box;
  border-right: 1px solid #ededed;
  margin-bottom: 6px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.contact .main .top .right ul li:nth-of-type(5) {
  margin-bottom: 0;
}
.contact .main .top .right ul li:nth-of-type(5) .c_icon i {
  font-size: 42px;
  line-height: 30px;
}
.contact .main .top .right ul li:nth-of-type(6) {
  margin-bottom: 0;
}
.contact .main .top .right ul li:nth-of-type(6) .c_icon i {
  font-size: 42px;
  line-height: 30px;
}
.contact .main .top .right ul li .c_icon i {
  font-size: 36px;
  line-height: 1;
  color: #ff7f2b;
}
.contact .main .top .right ul li .c_text {
  margin-left: 10px;
}
.contact .main .top .right ul li .c_text h3 {
  font-size: 15px;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  margin-bottom: 6px;
}
.contact .main .top .right ul li .c_text p {
  font-size: 18px;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: left;
}
.contact .main .part02 {
  margin-top: 50px;
  background-image: url(/images/message.jpg);
  overflow: hidden;
  padding-bottom: 100px;
  background-repeat: no-repeat;
}
.contact .main .part02 .w80 {
  background-color: #fff;
  padding: 0 40px 40px;
  box-sizing: border-box;
  box-shadow: 0px 2px 6px #dcdcdc;
}
.contact .main .part02 .w80 .title {
  margin-top: 20px;
  padding-top: 50px;
  display: block;
}
.contact .main .part02 .w80 .title h3 {
  font-size: 26px;
  color: #ff7f2b;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}
.contact .main .part02 .w80 .title p {
  font-size: 18px;
  color: #333;
  line-height: 1;
  font-weight: 100;
  text-align: center;
}
.contact .main .part02 .w80 .i_content {
  margin-top: 60px;
}
.contact .main .part02 .w80 .i_content .i_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.contact .main .part02 .w80 .i_content .i_top .i_item {
  width: 32%;
  background-color: #f8f8f8;
}
.contact .main .part02 .w80 .i_content .i_top .i_item input {
  width: 100%;
  padding-left: 20px;
  font-size: 15px;
  color: #333;
  line-height: 56px;
  font-weight: 100;
  text-align: left;
  background-color: #f8f8f8;
  box-sizing: border-box;
}
.contact .main .part02 .w80 .i_content .i_bottom {
  margin-top: 20px;
}
.contact .main .part02 .w80 .i_content .i_bottom textarea {
  width: 100%;
  height: 300px;
  background-color: #f8f8f8;
  padding: 20px;
  color: #333;
  font-size: 15px;
  box-sizing: border-box;
}
.contact .main .part02 .w80 .i_content .i_tijiao {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.contact .main .part02 .w80 .i_content .i_tijiao button {
  width: 200px;
  font-size: 15px;
  color: #fff;
  line-height: 56px;
  font-weight: 100;
  text-align: center;
  background-color: #ff7f2b;
  margin-right: 6px;
  cursor: pointer;
}
.contact .main .part02 .w80 .i_content .i_tijiao button#cz {
  background-color: #ff7f2b;
}
@media screen and (max-width: 1440px) {
  .contact .main .n_list .bottom ul li .c_text p {
    font-size: 14px;
  }
  .contact .main .n_list .bottom ul li .c_text h3 {
    font-size: 18px;
  }
  .contact .main .n_list .bottom ul li {
    padding: 30px 16px;
    height: 170px;
  }
  .contact .main .n_list .bottom ul li .c_icon {
    text-align: center;
  }
  .contact .main .n_list .bottom ul li .c_text {
    text-align: center;
  }
  .contact .main .n_list .bottom ul li .c_text h3 {
    text-align: center;
  }
  .contact .main .n_list .bottom ul li .c_text p {
    text-align: center;
  }
  .contact .main .n_list .bottom ul li .c_text {
    margin-top: 16px;
  }
  .contact .main .part02 .w80 .title h3 {
    font-size: 24px;
  }
  .contact .main .part02 .w80 .title p {
    font-size: 16px;
  }
  .contact .main .part02 .w80 .i_content .i_bottom textarea {
    height: 240px;
  }
  .contact .main .part02 .w80 .i_content .i_tijiao button {
    line-height: 48px;
  }
  .contact .main .n_list .bottom {
    margin-bottom: 20px;
  }
  .contact .main .part02 .w80 .i_content {
    margin-top: 30px;
  }
  .contact .main .part02 .w80 .title h3 {
    font-size: 20px;
  }
}
@media screen and (max-width: 992px) {
  .contact .main .top {
    margin-top: 80px;
  }
  .contact .main .top .left {
    width: 100%;
  }
  .contact .main .top .right {
    width: 100%;
    height: auto;
  }
  .contact .main .top_box {
    margin-top: 70px;
    margin-bottom: 40px;
  }
  .contact .main .top_box .title h1 {
    font-size: 34px;
  }
  .contact .main .n_list {
    margin-top: 40px;
    padding-bottom: 60px;
  }
  .contact .main .n_list .bottom ul li {
    width: 100%;
    margin-bottom: 10px;
  }
  .contact .main .part02 .w80 .title h3 {
    font-size: 20px;
  }
  .contact .main .part02 .w80 .title p {
    line-height: 1.5;
  }
  .contact .main .part02 .w80 .i_content .i_top .i_item {
    width: 100%;
    margin-bottom: 6px;
  }
  .contact .main .part02 .w80 .i_content .i_tijiao button {
    margin-bottom: 6px;
  }
  .contact .main .top .left .img {
    padding-bottom: 230px;
  }
  .contact .main .top .right .n_title h3 {
    font-size: 16px;
    line-height: 1.5;
  }
  .contact .main .top .right ul li {
    width: 100%;
  }
  .contact .main .top .right ul li:nth-of-type(5) {
    margin-bottom: 6px;
  }
}
.yingyong .main {
  background-color: #f8f8f8;
  overflow: hidden;
}
.yingyong .main .w80 {
  margin-top: 120px;
  background-color: #fff;
}
.yingyong .main .w80 .yy_title {
  margin-top: 80px;
}
.yingyong .main .w80 .yy_title h4 {
  font-size: 24px;
  color: #333;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  margin-bottom: 24px;
}
.yingyong .main .w80 .yy_title h4::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background-color: #ff7f2b;
  margin: 10px auto;
}
.yingyong .main .w80 .yy_title .img {
  width: 100%;
  margin-bottom: 60px;
}
.yingyong .main .w80 .yy_title .img img {
  margin: 0 auto;
  display: block;
  width: initial;
}
@media screen and (max-width: 992px) {
  .yingyong .main .w80 .yy_title h4 {
    font-size: 22px;
  }
  .yingyong .main .w80 {
    margin-top: 80px;
  }
  .yingyong .main .w80 .yy_title .img img {
    width: 100%;
  }
}
