.title h3 {
  font-size: 48px;
  color: #000;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  font-family: "Avan";
  margin-bottom: 10px;
}
.title p {
  font-size: 24px;
  color: #d50601;
  line-height: 1;
  font-weight: 100;
  text-align: left;
}
.title.b h3 {
  color: #fff;
}
.title.b p {
  color: #fff;
  opacity: 0.3;
}
.title_f {
  width: 40%;
  background-image: url(/images/title_bg.png);
  background-repeat: no-repeat;
  background-position: right bottom;
  padding-bottom: 6px;
}
.title_f p {
  margin-left: 8px;
  font-size: 18px;
  color: #000;
  line-height: 1;
  font-weight: 400;
  text-align: right;
}
@media screen and (max-width: 1440px) {
  .title h3 {
    font-size: 34px;
  }
  .title p {
    font-size: 20px;
  }
  .title_f {
    width: 40%;
  }
  .title_f p {
    font-size: 16px;
    text-align: center;
  }
}
@media screen and (max-width: 992px) {
  .title h3 {
    font-size: 26px;
  }
  .title p {
    font-size: 16px;
  }
  .title_f {
    width: 100%;
    margin-top: 30px;
  }
  .title_f p {
    font-size: 16px;
    text-align: center;
  }
}
.more a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.more a span {
  font-size: 20px;
  color: #000;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  font-family: "Avan";
}
.more a img {
  width: initial;
  margin-left: 10px;
}
@media screen and (max-width: 1440px) {
  .more a span {
    font-size: 18px;
  }
}
@media screen and (max-width: 992px) {
  .more a span {
    font-size: 16px;
  }
}
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  background-color: rgba(255, 255, 255, 0);
  line-height: 112px;
  height: 112px;
  transition: all 0.5s ease;
}
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: 80px;
}
header > div .logo .logo_text a h3 {
  font-size: 30px;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  margin-bottom: 10px;
  font-family: "Avan";
}
header > div .logo .logo_text a p {
  font-size: 14px;
  color: #fff;
  line-height: 1;
  font-weight: 100;
  text-align: left;
  letter-spacing: 1px;
}
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% - 80px);
  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: #fff3f3;
}
header > div nav ul li:hover .menu {
  height: auto;
  opacity: 1;
}
header > div nav ul li a {
  display: block;
  font-size: 16px;
  color: #fff;
  line-height: inherit;
  font-weight: 700;
  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: #fff3f3;
}
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: #000;
}
header > div nav ul li .menu .menu_item:hover a {
  color: #fff;
}
header > div nav .tool {
  width: 34px;
}
header > div nav .tool > div {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 32px;
  height: 32px;
  border-radius: 30px;
  border: 1px solid #fff;
  text-align: center;
}
header > div nav .tool > div a {
  width: 100%;
  line-height: 32px;
}
header > div nav .tool > div a i {
  color: #fff;
  line-height: 30px;
  text-align: center;
}
header.active {
  background-color: #ffffff;
}
header.active > div .logo .logo_text h3 {
  color: #333;
}
header.active > div .logo .logo_text p {
  color: #333;
}
header.active > div nav ul li a {
  color: #000;
}
header.active > div nav .tool > div {
  border: 1px solid #d50601;
}
header.active > div nav .tool > div i {
  color: #d50601;
}
@media screen and (max-width: 1440px) {
  header {
    height: 96px;
    line-height: 96px;
  }
  header > div .logo .logo_text a h3 {
    font-size: 24px;
    margin-bottom: 6px;
  }
  header > div .logo .logo_text a p {
    font-size: 12px;
    letter-spacing: 0.5px;
  }
  header > div .logo .logo_img a img {
    height: 64px;
  }
  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: top center;
  background-size: 100%;
}
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: 20px;
}
footer .top .w80 .top_sub1 .left .text h3 {
  font-size: 30px;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  font-family: "Avan";
}
footer .top .w80 .top_sub1 .left .text p {
  margin-top: 6px;
  font-size: 14px;
  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: #d50601;
  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: 80px;
  margin-bottom: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
footer .top .w80 .top_sub2 .left {
  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: 30px;
}
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: initial;
}
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 .img img {
    width: 80px;
  }
  footer .top .w80 .top_sub1 .left .text h3 {
    font-size: 24px;
    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;
  }
}
@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 .img img {
    width: 62px;
  }
  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;
  }
}
.index .part01 {
  width: 100%;
  padding-top: 140px;
  padding-bottom: 120px;
  background-image: url(/images/hot_img.jpg);
  background-position: top center;
  background-size: 100%;
}
.index .part01 .w80 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .part01 .w80 .left {
  width: 42%;
  height: 600px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.index .part01 .w80 .left .l_sub1 {
  opacity: 0;
  top: 0;
  position: absolute;
  width: 100%;
}
.index .part01 .w80 .left .l_sub1.active {
  position: absolute;
  opacity: 1;
}
.index .part01 .w80 .left .l_sub1 .swiper-container {
  padding-bottom: 60px;
}
.index .part01 .w80 .left .l_sub1 .swiper-container ul li {
  flex-wrap: wrap;
  background: none;
}
.index .part01 .w80 .left .l_sub1 .swiper-container ul li a .text {
  margin-top: 16px;
}
.index .part01 .w80 .left .l_sub1 .swiper-container ul li a .text p {
  font-size: 24px;
  color: #000;
  line-height: 1;
  font-weight: 100;
  text-align: center;
}
.index .part01 .w80 .left .l_sub1 .swiper-container .swiper-pagination span {
  width: 40px;
  height: 3px;
  border-radius: 0;
}
.index .part01 .w80 .left .l_sub1 .swiper-container .swiper-pagination span.swiper-pagination-bullet-active {
  background-color: #000;
}
.index .part01 .w80 .right {
  width: 44%;
}
.index .part01 .w80 .right .pro_nav {
  margin-top: 58px;
}
.index .part01 .w80 .right .pro_nav .item {
  cursor: pointer;
  height: 124px;
  padding: 0 30px;
  margin-bottom: 30px;
  border-radius: 8px;
  overflow: hidden;
}
.index .part01 .w80 .right .pro_nav .item.active {
  background-image: url(/images/hot_list_bg.jpg);
  background-position: top center;
  background-size: 100%;
}
.index .part01 .w80 .right .pro_nav .item.active a .i_left .i_left_img {
  background-image: url(/images/hot_icon_b.png);
}
.index .part01 .w80 .right .pro_nav .item.active a .i_left .i_left_text h3 {
  color: #fff;
}
.index .part01 .w80 .right .pro_nav .item.active a .i_left .i_left_text p {
  color: #fff;
  opacity: 0.6;
}
.index .part01 .w80 .right .pro_nav .item.active a .i_right i {
  opacity: 1;
  color: #fff;
}
.index .part01 .w80 .right .pro_nav .item a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
}
.index .part01 .w80 .right .pro_nav .item a .i_left {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.index .part01 .w80 .right .pro_nav .item a .i_left .i_left_img {
  width: 62px;
  height: 60px;
  background-image: url(/images/hot_icon.png);
  background-position: top center;
  background-size: 100%;
  background-repeat: no-repeat;
}
.index .part01 .w80 .right .pro_nav .item a .i_left .i_left_text {
  margin-left: 20px;
}
.index .part01 .w80 .right .pro_nav .item a .i_left .i_left_text h3 {
  font-size: 30px;
  color: #000;
  line-height: 1;
  font-weight: 700;
  text-align: left;
  margin-bottom: 8px;
}
.index .part01 .w80 .right .pro_nav .item a .i_left .i_left_text p {
  font-size: 14px;
  color: #999;
  line-height: 1;
  font-weight: 100;
  text-align: left;
}
.index .part01 .w80 .right .pro_nav .item a .i_right i {
  font-size: 46px;
  color: #d50601;
  opacity: 0.3;
}
.index .part01 .w80 .right .more {
  margin-top: 120px;
  margin-left: 30px;
}
.index .part02 {
  width: 100%;
  padding-top: 140px;
  background-image: url(/images/about_bg.jpg);
  background-position: top center;
  background-size: 100%;
}
.index .part02 .w80 .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .part02 .w80 .top .left {
  width: 45%;
}
.index .part02 .w80 .top .left .content {
  margin-top: 50px;
}
.index .part02 .w80 .top .left .content p {
  font-size: 16px;
  color: #fff;
  line-height: 1.8;
  font-weight: 400;
  text-align: left;
  opacity: 0.6;
  margin-bottom: 20px;
}
.index .part02 .w80 .top .left .more2 {
  margin-top: 106px;
}
.index .part02 .w80 .top .right {
  width: 50%;
}
.index .part02 .w80 .top .right .img {
  border-radius: 20px;
  height: 0;
  width: 100%;
  padding-bottom: 482px;
  overflow: hidden;
}
.index .part02 .w80 .top .right .img img {
  width: 100%;
}
.index .part02 .w80 .bottom {
  margin-top: 80px;
  padding: 50px;
  background-color: #fff;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
}
.index .part02 .w80 .bottom ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .part02 .w80 .bottom ul li.line {
  width: 1px;
  height: 100px;
  background-color: #d50601;
}
.index .part02 .w80 .bottom ul li:nth-of-type(1) {
  width: 18%;
}
.index .part02 .w80 .bottom ul li:nth-of-type(3) {
  width: 31%;
}
.index .part02 .w80 .bottom ul li:nth-of-type(5) {
  width: 26%;
}
.index .part02 .w80 .bottom ul li:nth-of-type(7) {
  width: 23%;
}
.index .part02 .w80 .bottom ul li .t1 {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-wrap: wrap;
}
.index .part02 .w80 .bottom ul li .t1 h2 {
  font-size: 54px;
  color: #d50601;
  line-height: 1;
  font-weight: 400;
  text-align: center;
  font-family: "Avan";
}
.index .part02 .w80 .bottom ul li .t1 p {
  font-size: 18px;
  font-weight: 700;
  margin-left: 6px;
}
.index .part02 .w80 .bottom ul li .t2 {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-wrap: wrap;
  margin-top: 14px;
}
.index .part02 .w80 .bottom ul li .t2 p {
  font-size: 16px;
  color: #c8c8c8;
  line-height: 1;
  font-weight: 100;
  text-align: center;
}
.index .part03 {
  width: 100%;
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url(/images/ad_bg.jpg);
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
}
.index .part03 .w80 .content {
  margin-top: 60px;
}
.index .part03 .w80 .content ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .part03 .w80 .content ul li img {
  width: initial;
}
.index .part04 {
  width: 100%;
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url(/images/news_bg.png);
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
}
.index .part04 .w80 .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .part04 .w80 .bottom {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .part04 .w80 .bottom .left {
  width: 49%;
  position: relative;
  height: 500px;
  overflow: hidden;
  border-radius: 10px;
}
.index .part04 .w80 .bottom .left:hover .img img {
  transform: scale(1.1);
}
.index .part04 .w80 .bottom .left .text {
  position: absolute;
  left: 6%;
  top: 10%;
  width: 88%;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .part04 .w80 .bottom .left .text .title p {
  font-size: 16px;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  margin-bottom: 10px;
}
.index .part04 .w80 .bottom .left .text .title p i {
  margin-right: 4px;
  color: #d50601;
}
.index .part04 .w80 .bottom .left .text .title h3 {
  font-size: 24px;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: left;
}
.index .part04 .w80 .bottom .left .text .date {
  border: 1px solid #fff;
  padding: 10px 6px;
  border-radius: 4px;
}
.index .part04 .w80 .bottom .left .text .date h3 {
  font-size: 36px;
  color: #fff;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  margin-bottom: 4px;
}
.index .part04 .w80 .bottom .left .text .date p {
  font-size: 16px;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: center;
}
.index .part04 .w80 .bottom .left .more {
  position: absolute;
  left: 6%;
  bottom: 10%;
  z-index: 3;
}
.index .part04 .w80 .bottom .left .more a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .part04 .w80 .bottom .left .more a span {
  font-size: 16px;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  margin-right: 10px;
}
.index .part04 .w80 .bottom .left .mask {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.2);
}
.index .part04 .w80 .bottom .left .img {
  width: 100%;
}
.index .part04 .w80 .bottom .left .img img {
  width: 100%;
  transition: all 0.5s ease;
}
.index .part04 .w80 .bottom .right {
  width: 49%;
  margin-right: 0px;
}
.index .part04 .w80 .bottom .right ul li {
  height: 500px;
  box-sizing: border-box;
  padding: 30px;
  transition: all 0.5s;
  background-color: #fff3f3;
  border-radius: 6px;
}
.index .part04 .w80 .bottom .right ul li:hover {
  background-color: #000;
}
.index .part04 .w80 .bottom .right ul li:hover a .it1 p {
  color: #fff;
}
.index .part04 .w80 .bottom .right ul li:hover a .it2 h3 {
  color: #fff;
}
.index .part04 .w80 .bottom .right ul li:hover a .it4 span {
  color: #fff;
}
.index .part04 .w80 .bottom .right ul li a .it1 {
  margin-bottom: 34px;
}
.index .part04 .w80 .bottom .right ul li a .it1 p {
  font-size: 16px;
  color: #999;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  transition: all 0.5s;
}
.index .part04 .w80 .bottom .right ul li a .it2 {
  margin-bottom: 40px;
}
.index .part04 .w80 .bottom .right ul li a .it2 h3 {
  font-size: 20px;
  color: #333;
  line-height: 1.5;
  font-weight: 400;
  text-align: left;
  transition: all 0.5s;
}
.index .part04 .w80 .bottom .right ul li a .it3 {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 50px;
}
.index .part04 .w80 .bottom .right ul li a .it3 img {
  width: 100%;
}
.index .part04 .w80 .bottom .right ul li a .it4 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .part04 .w80 .bottom .right ul li a .it4 span {
  font-size: 16px;
  color: #999;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  transition: all 0.5s;
}
.index .part04 .w80 .pagination {
  margin-top: 40px;
}
.index .part04 .w80 .pagination .swiper-pagination .swiper-pagination-bullet {
  width: 13px;
  height: 13px;
  margin: 0 4px;
}
.index .part04 .w80 .pagination .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #d50601;
}
@media screen and (max-width: 1440px) {
  .index .part01 {
    padding-top: 120px;
    padding-bottom: 80px;
  }
  .index .part01 .w80 .right .pro_nav .item {
    height: 96px;
    margin-bottom: 20px;
  }
  .index .part01 .w80 .right .pro_nav .item a .i_left .i_left_text h3 {
    font-size: 24px;
    margin-bottom: 6px;
  }
  .index .part01 .w80 .right .pro_nav .item a .i_left .i_left_text p {
    font-size: 12px;
  }
  .index .part01 .w80 .right .pro_nav .item a .i_left .i_left_img {
    width: 42px;
    height: 40px;
  }
  .index .part01 .w80 .right .pro_nav .item a .i_right i {
    font-size: 36px;
  }
  .index .part01 .w80 .left .l_sub1 .swiper-container ul li a .img img {
    width: 100%;
  }
  .index .part01 .w80 .left {
    height: 440px;
  }
  .index .part01 .w80 .right .more {
    margin-top: 60px;
  }
  .index .part01 .w80 .right .pro_nav {
    margin-top: 38px;
  }
  .index .part02 {
    padding-top: 100px;
  }
  .index .part02 .w80 .top .left .content {
    margin-top: 30px;
  }
  .index .part02 .w80 .top .left .content p {
    font-size: 14px;
  }
  .index .part02 .w80 .top .left .more2 {
    margin-top: 40px;
  }
  .index .part02 .w80 .top .left .more2 img {
    width: 140px;
  }
  .index .part02 .w80 .top .right .img {
    padding-bottom: 366px;
  }
  .index .part02 .w80 .bottom ul li .t1 h2 {
    font-size: 36px;
  }
  .index .part02 .w80 .bottom {
    padding: 40px;
  }
  .index .part03 .w80 .content ul li {
    width: 24%;
  }
  .index .part03 .w80 .content ul li img {
    width: 100%;
  }
  .index .part03 .w80 .content {
    margin-top: 30px;
  }
  .index .part03 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .index .part04 .w80 .bottom .left {
    height: 360px;
  }
  .index .part04 .w80 .bottom .right ul li {
    height: 360px;
  }
  .index .part04 .w80 .bottom .right ul li a .it2 h3 {
    line-height: 1.2;
    font-size: 16px;
  }
  .index .part04 .w80 .bottom .right ul li a .it1 {
    margin-bottom: 12px;
  }
  .index .part04 .w80 .bottom .right ul li a .it2 {
    margin-bottom: 24px;
  }
  .index .part04 .w80 .bottom .right ul li a .it4 span {
    font-size: 12px;
  }
  .index .part04 .w80 .bottom .left .text .title h3 {
    font-size: 22px;
  }
  .index .part04 .w80 .bottom .left .text .date h3 {
    font-size: 28px;
  }
  .index .part04 .w80 .bottom .left .text .date p {
    font-size: 12px;
  }
  .index .part04 .w80 .bottom .left .more a span {
    font-size: 13px;
  }
  .index .part04 {
    padding-top: 90px;
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 992px) {
  .index .part01 {
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 50px;
  }
  .index .part02 {
    background-size: cover;
    background-repeat: no-repeat;
  }
  .index .part01 .w80 .left {
    width: 100%;
  }
  .index .part01 .w80 .right {
    width: 100%;
  }
  .index .part01 .w80 .right .pro_nav .item a .i_left .i_left_text h3 {
    font-size: 18px;
  }
  .index .part01 .w80 .right .pro_nav .item a .i_left .i_left_img {
    width: 34px;
    height: 32px;
  }
  .index .part01 .w80 .right .pro_nav .item a .i_left .i_left_text {
    margin-left: 10px;
  }
  .index .part01 .w80 .right .pro_nav .item {
    height: 76px;
  }
  .index .part02 .w80 .top .left {
    width: 100%;
  }
  .index .part02 .w80 .top .right {
    width: 100%;
    margin-top: 30px;
  }
  .index .part02 .w80 .top .right .img {
    padding-bottom: 226px;
  }
  .index .part02 .w80 .bottom ul li.line {
    display: none;
  }
  .index .part02 .w80 .bottom ul li {
    width: 48% !important;
    margin-bottom: 20px;
  }
  .index .part02 .w80 .bottom ul li:nth-of-type(n + 4) {
    margin-bottom: 0;
  }
  .index .part02 .w80 .bottom ul li .t1 h2 {
    font-size: 24px;
  }
  .index .part02 .w80 .bottom ul li .t1 p {
    font-size: 16px;
  }
  .index .part02 .w80 .bottom {
    padding: 30px 10px;
  }
  .index .part02 .w80 .bottom ul li .t2 p {
    font-size: 14px;
  }
  .index .part03 .w80 .content ul li {
    width: 100%;
    margin-bottom: 20px;
  }
  .index .part04 .w80 .bottom .left {
    width: 100%;
    height: 230px;
  }
  .index .part04 .w80 .bottom .right {
    width: 100%;
    margin-top: 20px;
  }
}
.about .main {
  width: 100%;
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url(/images/about_img.png);
  background-repeat: repeat;
}
.about .main .w80 {
  background-image: url(/images/aboutBg.png);
  background-repeat: no-repeat;
}
.about .main .w80 .n_title h2 {
  font-size: 42px;
  color: #d50601;
  line-height: 1;
  font-weight: 400;
  text-align: center;
  font-family: "Avan";
  opacity: 0.1;
}
.about .main .w80 .n_title h3 {
  font-size: 38px;
  color: #000;
  line-height: 1;
  font-weight: 400;
  text-align: center;
  font-family: "Avan";
  margin-top: -10px;
}
.about .main .w80 .n_title p {
  margin-top: 20px;
  font-size: 20px;
  color: #000;
  line-height: 1;
  font-weight: 400;
  text-align: center;
}
.about .main .w80 .content {
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.about .main .w80 .content .c_left {
  width: 48%;
  border-radius: 40px 0 0 0;
  overflow: hidden;
}
.about .main .w80 .content .c_left .img img {
  width: 100%;
}
.about .main .w80 .content .c_right {
  width: 48%;
}
.about .main .w80 .content .c_right h3 {
  font-size: 28px;
  color: #000;
  line-height: 1.8;
  font-weight: 400;
  text-align: left;
  font-family: "Avan";
  margin-bottom: 30px;
}
.about .main .w80 .content .c_right p {
  font-size: 16px;
  color: #000;
  line-height: 1.8;
  font-weight: 400;
  text-align: left;
  margin-bottom: 20px;
  text-indent: 2em;
}
.about .main .w80 .ad {
  margin-top: 40px;
  padding: 50px;
  background-color: #fff;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
}
.about .main .w80 .ad ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.about .main .w80 .ad ul li.line {
  width: 1px;
  height: 100px;
  background-color: #d50601;
}
.about .main .w80 .ad ul li .t1 {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-wrap: wrap;
}
.about .main .w80 .ad ul li .t1 h2 {
  font-size: 42px;
  color: #d50601;
  line-height: 1;
  font-weight: 400;
  text-align: center;
  font-family: "Avan";
}
.about .main .w80 .ad ul li .t1 p {
  font-size: 16px;
  font-weight: 700;
  margin-left: 6px;
}
.about .main .w80 .ad ul li .t2 {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-wrap: wrap;
  margin-top: 14px;
}
.about .main .w80 .ad ul li .t2 p {
  font-size: 16px;
  color: #c8c8c8;
  line-height: 1;
  font-weight: 100;
  text-align: center;
}
.about .main .w80 > .img {
  margin-top: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.about .main .w80 > .img .img_left {
  width: 44.1%;
  border-radius: 20px 0 0 0;
  overflow: hidden;
}
.about .main .w80 > .img .img_left .i_l_img img {
  display: block;
  width: 100%;
}
.about .main .w80 > .img .img_right {
  width: 54.8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.about .main .w80 > .img .img_right .r_img:nth-of-type(1) {
  width: 49%;
}
.about .main .w80 > .img .img_right .r_img:nth-of-type(1) img {
  width: 100%;
}
.about .main .w80 > .img .img_right .r_img:nth-of-type(2) {
  width: 49%;
}
.about .main .w80 > .img .img_right .r_img:nth-of-type(2) img {
  width: 100%;
}
@media screen and (max-width: 1400px) {
  .about .main {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .about .main .w80 .content .c_right p {
    font-size: 14px;
  }
  .about .main .w80 .ad ul li .t1 h2 {
    font-size: 30px;
  }
  .about .main .w80 .ad {
    padding: 34px;
  }
}
@media screen and (max-width: 992px) {
  .about .main .w80 .n_title h2 {
    font-size: 22px;
  }
  .about .main .w80 .n_title h3 {
    font-size: 22px;
  }
  .about .main .w80 .n_title p {
    font-size: 16px;
  }
  .about .main .w80 .content .c_left {
    width: 100%;
  }
  .about .main .w80 .content .c_right {
    width: 100%;
    margin-top: 30px;
  }
  .about .main .w80 .content .c_right h3 {
    font-size: 18px;
    margin-bottom: 16px;
  }
  .about .main .w80 .ad ul li {
    width: 49%;
    margin-bottom: 30px;
  }
  .about .main .w80 .ad ul li:nth-of-type(n + 4) {
    margin-bottom: 0;
  }
  .about .main .w80 .ad ul li .t1 h2 {
    font-size: 22px;
  }
  .about .main .w80 .ad ul li.line {
    display: none;
  }
  .about .main .w80 .ad ul li .t2 p {
    font-size: 13px;
  }
  .about .main .w80 > .img .img_left {
    width: 100%;
  }
  .about .main .w80 > .img .img_right {
    margin-top: 20px;
    width: 100%;
  }
}
.contact .main {
  padding-bottom: 60px;
  background-image: url(/images/about_img.png);
  background-repeat: repeat;
  overflow: hidden;
}
.contact .main .part01 {
  margin-top: 120px;
  margin-bottom: 60px;
  padding: 0 50px;
  box-sizing: border-box;
  background-image: url(/images/aboutBg.png);
  background-repeat: no-repeat;
}
.contact .main .part01 .w80 .top {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #eaeaea;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.contact .main .part01 .w80 .top .left h3 {
  font-size: 32px;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  margin-bottom: 16px;
  font-family: "Avan";
}
.contact .main .part01 .w80 .top .left p {
  font-size: 16px;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: left;
}
.contact .main .part01 .w80 .top .right h2 {
  font-size: 32px;
  color: #d50601;
  line-height: 1;
  font-weight: 700;
  text-align: left;
}
.contact .main .part01 .w80 .top .right p {
  font-size: 16px;
  color: #666;
  line-height: 1;
  font-weight: 400;
  text-align: right;
  margin-bottom: 10px;
}
.contact .main .part01 .w80 .bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.contact .main .part01 .w80 .bottom .left {
  width: 100%;
}
.contact .main .part01 .w80 .bottom .left ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.contact .main .part01 .w80 .bottom .left ul li i {
  font-size: 30px;
  color: #d50601;
}
.contact .main .part01 .w80 .bottom .left ul li h3 {
  margin-top: 12px;
  font-size: 18px;
  color: #333;
  line-height: 1.2;
  font-weight: 700;
  text-align: left;
}
.contact .main .part01 .w80 .bottom .left ul li p {
  margin-top: 4px;
  font-size: 15px;
  color: #333;
  line-height: 1.2;
  font-weight: 400;
  text-align: left;
}
.contact .main .part02 {
  margin-bottom: 100px;
}
@media screen and (max-width: 1440px) {
  .contact .main .part01 .w80 .top .left h3 {
    font-size: 24px;
  }
  .contact .main .part01 .w80 .top .right h2 {
    font-size: 28px;
  }
}
@media screen and (max-width: 992px) {
  .contact .main .part01 .w80 .top .left h3 {
    font-size: 24px;
  }
  .contact .main .part01 .w80 .top .right h2 {
    font-size: 28px;
  }
  .contact .main .part01 {
    padding: 0 20px;
    margin-top: 60px;
    margin-bottom: 60px;
  }
  .contact .main .part01 .w80 .top .left h3 {
    font-size: 20px;
  }
  .contact .main .part01 .w80 .top .left p {
    font-size: 15px;
    line-height: 1.4;
  }
  .contact .main .part01 .w80 .top .right {
    width: 100%;
    margin-top: 30px;
  }
  .contact .main .part01 .w80 .top .right h2 {
    text-align: left;
  }
  .contact .main .part01 .w80 .top .right p {
    text-align: left;
  }
  .contact .main .part01 .w80 .bottom .left ul li {
    margin-bottom: 20px;
  }
}
.product .main {
  padding-top: 100px;
  overflow: hidden;
}
.product .main > .w80 .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.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 a .img {
  width: 100%;
  box-sizing: border-box;
}
.product .main .n_list ul li a .img img {
  width: 100%;
}
.product .main .n_list ul li a .txt {
  background-color: #d50601;
  box-sizing: border-box;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  transition: all 0.5s ease;
}
.product .main .n_list ul li a .txt .left {
  display: flex;
  align-items: center;
  font-size: 16px;
  line-height: 1;
  color: #fff;
}
.product .main .n_list ul li a .txt .left p {
  font-size: 16px;
  line-height: 1;
  color: #fff;
}
.product .main .n_list ul li a .txt .right {
  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 .n_list ul li a .txt .right {
    display: none;
  }
  .product .main .n_list ul li a .txt .left {
    font-size: 15px;
  }
}
@media screen and (max-width: 992px) {
  .product .main .n_list ul li {
    width: 100%;
  }
  .product .n_nav_list > div .backhome {
    display: none;
  }
}
.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 {
  padding: 0;
}
.proDetailed .main > div .pro_box .m_proDetailed_left .bigImg img {
  width: 100%;
  display: block;
  margin: 0 auto;
}
.proDetailed .main > div .pro_box .m_proDetailed_left .smailImg {
  width: 100%;
  position: absolute;
  bottom: 10px;
  left: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.proDetailed .main > div .pro_box .m_proDetailed_left .smailImg .btnLeft {
  width: 30px;
  height: 66px;
  background-color: #fff3f3;
  margin-left: 20px;
  line-height: 66px;
  text-align: center;
  cursor: pointer;
}
.proDetailed .main > div .pro_box .m_proDetailed_left .smailImg .btnLeft i {
  display: block;
  transform: rotate(180deg);
}
.proDetailed .main > div .pro_box .m_proDetailed_left .smailImg .btnRight {
  width: 30px;
  height: 66px;
  background-color: #fff3f3;
  margin-left: 20px;
  line-height: 66px;
  text-align: center;
  cursor: pointer;
}
.proDetailed .main > div .pro_box .m_proDetailed_left .smailImg ul {
  width: 80%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.proDetailed .main > div .pro_box .m_proDetailed_left .smailImg ul li {
  cursor: pointer;
  width: 14%;
  border: 1px solid #dfdfdf;
  margin: 0 1%;
  box-sizing: border-box;
}
.proDetailed .main > div .pro_box .m_proDetailed_left .smailImg ul li img {
  width: 100%;
}
.proDetailed .main > div .pro_box .m_proDetailed_left .smailImg ul li:hover {
  border: 1px solid #000;
}
.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: #000;
  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: #000;
  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: #d50601;
  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 .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;
}
.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 {
    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;
  }
}
@media screen and (max-width: 992px) {
  .proDetailed .n_nav_list > div .backhome {
    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;
  }
}
.jiayao .main .top {
  margin-top: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.jiayao .main .list {
  margin-top: 50px;
}
.jiayao .main .list ul li {
  float: left;
  width: 24%;
  margin-right: 1.3%;
  background: #fff;
  transition: 0.5s ease;
  margin-bottom: 40px;
  border-bottom: 3px solid #cecdcf;
  box-shadow: 3px 4px 8px #fff3f3;
}
.jiayao .main .list ul li:nth-of-type(4n) {
  margin-right: 0;
}
.jiayao .main .list ul li a:hover .n_newsText {
  background-color: #000;
}
.jiayao .main .list ul li a:hover .n_newsText .n_textBox .n_textBox_center .tit {
  color: #fff;
  opacity: 0.6;
}
.jiayao .main .list ul li a:hover .n_newsText .n_textBox .n_textBox_center .desc p {
  color: #fff;
}
.jiayao .main .list ul li a:hover .n_newsText .n_textBox .n_textBox_center .box2 .date {
  color: #fff;
}
.jiayao .main .list ul li a:hover .n_newsText .n_textBox .n_textBox_center .box2 .n_icon {
  background-color: #000;
}
.jiayao .main .list ul li a:hover .n_newsImg .n_newsImg_box img {
  transform: calc(1.1);
}
.jiayao .main .list ul li a .n_newsImg .n_newsImg_box {
  position: relative;
  display: block;
  width: 100%;
  height: 250px;
  overflow: hidden;
}
.jiayao .main .list ul li a .n_newsImg .n_newsImg_box img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: all 0.5s ease;
}
.jiayao .main .list ul li a .n_newsText {
  background-color: #f6f6f6;
}
.jiayao .main .list ul li a .n_newsText .n_textBox {
  padding: 20px;
}
.jiayao .main .list ul li a .n_newsText .n_textBox .n_textBox_center {
  position: relative;
  display: block;
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-bottom: 140px;
}
.jiayao .main .list 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;
}
.jiayao .main .list ul li a .n_newsText .n_textBox .n_textBox_center .desc {
  height: 60px;
  margin-bottom: 16px;
}
.jiayao .main .list 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;
}
.jiayao .main .list 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;
}
.jiayao .main .list ul li a .n_newsText .n_textBox .n_textBox_center .box2 .date {
  font-size: 15px;
  line-height: 20px;
  color: #a1a0a1;
}
.jiayao .main .list 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: #000;
  border-radius: 50%;
  text-align: center;
  line-height: 32px;
}
.jiayao .main .list ul li a .n_newsText .n_textBox .n_textBox_center .box2 .n_icon i {
  color: #fff;
}
@media screen and (max-width: 1440px) {
  .jiayao .main .list ul li a .n_newsImg .n_newsImg_box {
    height: 200px;
  }
  .jiayao .main > div:first-of-type .newsBoxTitle h3 {
    font-size: 24px;
  }
  .jiayao .main > div:first-of-type .newsBoxTitle h3::after {
    margin-top: 14px;
    height: 2px;
    width: 30px;
    background-color: #000;
  }
  .jiayao .main > div:first-of-type .newsBoxTitle p {
    font-size: 16px;
  }
  .jiayao .main > div:first-of-type .newsBoxTitle p img {
    display: none;
  }
  .jiayao .main > div:first-of-type .newsBoxTitle {
    margin-bottom: 30px;
  }
  .jiayao .main > div:first-of-type .list ul li a .n_newsImg .n_newsImg_box {
    height: 240px;
  }
  .jiayao .main > div:first-of-type .list ul li a .n_newsText .n_textBox {
    padding: 20px;
  }
  .jiayao .main > div:first-of-type .list ul li a .n_newsText .n_textBox .n_textBox_center {
    padding-bottom: 130px;
  }
  .jiayao .main > div:first-of-type .list ul li a .n_newsText .n_textBox .n_textBox_center .desc {
    height: 50px;
    margin-bottom: 10px;
  }
  .jiayao .main > div:first-of-type .list ul li a .n_newsText .n_textBox .n_textBox_center .desc p {
    font-size: 16px;
  }
  .jiayao .main {
    padding-bottom: 0px;
  }
  .jiayao .main .list ul li a .n_newsText .n_textBox .n_textBox_center .desc {
    height: 36px;
  }
  .jiayao .main .list ul li a .n_newsText .n_textBox .n_textBox_center {
    padding-bottom: 116px;
  }
  .jiayao .main .list ul li a .n_newsText .n_textBox .n_textBox_center .desc p {
    font-size: 16px;
  }
}
@media screen and (max-width: 992px) {
  .jiayao .main > div:first-of-type {
    margin-top: 0px;
  }
  .jiayao .main > div:first-of-type .newsBoxTitle h3 {
    font-size: 18px;
  }
  .jiayao .main > div:first-of-type .newsBoxTitle p {
    font-size: 13px;
    margin-top: 14px;
  }
  .jiayao .main > div:first-of-type .list ul li {
    width: 100%;
  }
  .jiayao .main > div:first-of-type .list ul li a .n_newsImg .n_newsImg_box {
    height: 200px;
  }
  .jiayao .main > div:first-of-type .list ul li a .n_newsText .n_textBox .n_textBox_center .desc p {
    font-size: 14px;
  }
  .jiayao .main > div:first-of-type .list ul li a .n_newsText .n_textBox .n_textBox_center .desc {
    height: 40px;
  }
  .jiayao .main > div:first-of-type .list ul li a .n_newsText .n_textBox .n_textBox_center {
    padding-bottom: 114px;
  }
  .jiayao .main > div:first-of-type .list ul li a .n_newsText .n_textBox .n_textBox_center .box2 .date {
    font-size: 12px;
  }
  .jiayao .main {
    margin-bottom: 40px;
  }
  .jiayao .main .list ul li {
    width: 100%;
  }
}
.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 .sub1 h3 {
    font-size: 20px;
  }
  .news_detailed .main .ct .detailed .sub2 .news_content p {
    font-size: 15px;
  }
  .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;
  }
}
.news .main .top {
  margin-top: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.news .main .part02 {
  padding-top: 60px;
}
.news .main .part02 .w80 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.news .main .part02 .w80 .left {
  width: 76%;
}
.news .main .part02 .w80 .left ul li {
  margin-bottom: 24px;
  background-color: #fff;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
  position: relative;
}
.news .main .part02 .w80 .left ul li:hover::after {
  width: 100%;
}
.news .main .part02 .w80 .left ul li:hover a .img img {
  transform: scale(1.2);
  transition: all 2s ease;
}
.news .main .part02 .w80 .left ul li:hover a .text h3 {
  color: #000;
  transition: all 0.5s ease;
}
.news .main .part02 .w80 .left ul li::after {
  content: "";
  width: 0%;
  height: 4px;
  display: block;
  background-color: #000;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  transition: all 0.5s ease;
}
.news .main .part02 .w80 .left ul li a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.news .main .part02 .w80 .left ul li a .img {
  width: 29%;
  height: 0;
  padding-bottom: 230px;
  overflow: hidden;
}
.news .main .part02 .w80 .left ul li a .img img {
  width: 100%;
}
.news .main .part02 .w80 .left ul li a .text {
  margin-left: 3%;
  width: 64%;
}
.news .main .part02 .w80 .left ul li a .text h3 {
  font-size: 20px;
  color: #333;
  line-height: 1;
  font-weight: 700;
  text-align: left;
  margin-bottom: 30px;
}
.news .main .part02 .w80 .left ul li a .text p {
  font-size: 15px;
  color: #333;
  line-height: 1.8;
  font-weight: 100;
  text-align: left;
}
.news .main .part02 .w80 .left ul li a .text span {
  display: block;
  margin-top: 40px;
  font-size: 16px;
  color: #333;
  line-height: 1;
  font-weight: 100;
  text-align: left;
}
.news .main .part02 .w80 .right {
  width: 21%;
}
.news .main .part02 .w80 .right.fl {
  position: fixed;
  top: 120px;
  right: 8%;
  width: 17.6%;
  z-index: 0;
}
.news .main .part02 .w80 .right .item {
  margin-bottom: 50px;
}
.news .main .part02 .w80 .right .item .title {
  width: 100%;
  height: 60px;
  box-sizing: border-box;
  padding: 0 30px;
  background-color: #000;
}
.news .main .part02 .w80 .right .item .title h3 {
  font-size: 20px;
  color: #fff;
  line-height: 60px;
  font-weight: 400;
  text-align: left;
}
.news .main .part02 .w80 .right .item .box {
  border: 1px solid #dfdfdf;
}
.news .main .part02 .w80 .right .item .box ul li {
  margin: 12px;
  padding: 18px;
  transition: all 0.5s ease;
}
.news .main .part02 .w80 .right .item .box ul li:hover {
  background-color: #000;
  box-shadow: 2px 2px 4px #d9d9d9;
}
.news .main .part02 .w80 .right .item .box ul li:hover a {
  color: #fff;
}
.news .main .part02 .w80 .right .item .box ul li a {
  font-size: 16px;
  color: #333;
  line-height: 1;
  font-weight: 100;
  text-align: left;
}
.news .main .part02 .w80 .right .item .box {
  border: 1px solid #dfdfdf;
}
.news .main .part02 .w80 .right .item .box .box_sub1 {
  margin: 30px;
}
.news .main .part02 .w80 .right .item .box .box_sub1 p {
  font-size: 16px;
  color: #333;
  line-height: 1;
  font-weight: 100;
  text-align: left;
}
@media screen and (max-width: 1440px) {
  .news .main .part02 .w80 .left ul li a .text h3 {
    font-size: 16px;
    margin-bottom: 16px;
  }
  .news .main .part02 .w80 .left ul li a .img {
    padding-bottom: 170px;
  }
  .news .main .part02 .w80 .left ul li a .text span {
    margin-top: 20px;
  }
  .news .main .part02 .w80 .left ul li a .text p {
    font-size: 13px;
  }
  .news .main .part02 .w80 .right .item .title {
    height: 50px;
  }
  .news .main .part02 .w80 .right .item .title h3 {
    line-height: 50px;
    font-size: 16px;
  }
  .news .main .part02 .w80 .right .item .box .box_sub1 {
    margin: 20px;
  }
  .news .main .part02 .w80 .right .item .box .box_sub1 p {
    font-size: 14px;
  }
}
@media screen and (max-width: 992px) {
  .news .main .part02 .w80 .left {
    width: 100%;
  }
  .news .main .part02 .w80 .right {
    display: none;
  }
  .news .main .part02 .w80 .left ul li a .img {
    width: 100%;
    padding-bottom: 230px;
  }
  .news .main .part02 .w80 .left ul li a .text {
    width: 100%;
    margin-left: 0;
    margin-top: 20px;
    box-sizing: border-box;
    padding: 20px;
  }
}
