@charset "UTF-8";
/* reset */
* {
  margin: 0;
  padding: 0;
  outline: none;
  box-sizing: border-box; }

a {
  text-decoration: none;
  color: inherit; }

li {
  list-style: none; }

img {
  border: none;
  vertical-align: bottom;
  max-width: 100%; }

button {
  border: 0;
  background-color: transparent;
  outline: none;
  -webkit-appearance: none; }

select {
  border: none;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none; }

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal; 
}

input,
textarea {
  outline: none;
  border: none; 
}

textarea {
  resize: none;
  overflow: auto; }

i,
em {
  font-weight: normal;
  font-style: normal; }

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0; }

input {
  -moz-appearance: textfield; }

@font-face {
  font-family: "Avenir Next";
  font-style: bold;
  font-weight: 600;
  src: url("../fonts/Avenir-Next.TTF"); }
/* body h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
a {
font-family: "微软雅黑", "Microsoft YaHei", "SimSun", "宋体"; } */
html body {
  margin: 0px auto;
  max-width: 1920px;
  min-width: 320px;
  font-size: 16px;
  font-family: "微软雅黑", "Microsoft YaHei", "SimSun","宋体",sans-serif;
  background-color: #fff; }

/* 单行文本溢出隐藏 */
/* 多行文本溢出隐藏 */
/* flex 布局 */
.wrap {
  width: 1520px;
  margin: 0 auto; }

.header-box {
  transition-duration: .3s; }

.header {
  /* height: 120px; */
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 15;
  transition: all .3s;
  max-width: 1920px;
  margin: 0 auto; }
  .header .pc {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    max-width: 1540px;
    margin: 0 auto;
    height: 100px; }

.header-box.active .header {
  border-bottom: 1px solid #f5f5f5;
  background-color: #fff; }

.header-box.active .hd-nav li > a::after {
  background-color: #333; }

.hd-logo img {
  display: block; }
.hd-logo .img2 {
  display: none; }

.header-box.active .hd-logo .img2 {
  display: block; }
.header-box.active .hd-logo .img1 {
  display: none; }

.hd-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  position: relative; }
  .hd-nav li {
    position: relative; }
    .hd-nav li:hover .item1 {
      opacity: 1;
      visibility: visible; }
    .hd-nav li .item1 {
      display: block;
      position: fixed;
      left: 0;
      right: 0;
      top: 80px;
      background-color: #fff;
      opacity: 0;
      visibility: hidden;
      transition-duration: .3s;
      padding: 40px 0; }
      .hd-nav li .item1 .wrap {
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        justify-content: space-between; }

        .hd-nav li .item1 .tit {
          width: 25%;
          padding: 20px 0;
          padding-right: 30px;

        
        }
        .hd-nav li .item1 .tit h3{
          
          margin-bottom: 18px;
          font-size: 24px;
          color: #333;
        }
        .hd-nav li .item1 .tit p{
          
          font-size: 14px;
          color: #666;
          line-height: 24px;
        }

      .hd-nav li .item1 .swiper-box {
        width: 72%;
        padding: 0 6%;
        position: relative; 
        border-left: 1px solid #d7d7d7;
      }



      .hd-nav li .item1 .swiper-container .swiper-slide {
        width: 180px;
        /* padding-bottom: 35px; */
        /* border-bottom: 1px solid #d7d7d7;  */
      }
        .hd-nav li .item1 .swiper-container .swiper-slide .pic {
          display: block;
          width: 100%;
          position: relative;
          padding-bottom: 66.6%;
          overflow: hidden; }
          .hd-nav li .item1 .swiper-container .swiper-slide .pic img {
            width: 100%;
            height: 100%;
            display: block;
            position: absolute;
            left: 0;
            top: 0;
            object-fit: cover;
            transition-duration: .3s; }
        .hd-nav li .item1 .swiper-container .swiper-slide h5 {
          font-size: 16px;
          line-height: 1.2;
          color: #333333;
          margin-top: 25px;
          overflow: hidden;
          text-overflow: ellipsis;
          white-space: nowrap; }
        .hd-nav li .item1 .swiper-container .swiper-slide:hover .pic img {
          transform: scale(1.1); }
        .hd-nav li .item1 .swiper-container .swiper-slide:hover .pic::after {
          border-color: #da251d; }
        .hd-nav li .item1 .swiper-container .swiper-slide:hover h5 {
          color: #da251d; }
  .hd-nav li > a {
    font-size: 16px;
    line-height: 1;
    color: #ffffff;
    display: block;
    margin: 0 25px;
    transition: all .3s;
    position: relative;
    text-align: center; }
    .hd-nav li > a::after {
      content: '';
      display: block;
      width: 0;
      height: 2px;
      background-color: #fff;
      position: absolute;
      bottom: -14px;
      opacity: 0;
      right: 0;
      left: 0;
      margin: 0 auto; 
      transition-duration: .3s;
    }
    .hd-nav li > a:hover::after {
      opacity: 1;
      width: 100%;
     }

  .hd-nav .on > a::after {
    opacity: 1;
    width: 100%;
    background-color: #fff;
   }

.header-box.active .hd-nav li > a {
  color: #333; }
.header-box.active .hd-nav .on > a {
  color: #333; }
.header-box.active .hd-nav .on > a::after {
  background-color: #333; }
.header-box.active .hd-nav .on > a:hover::after {
  background-color: #333; }
.header-box.active .hd-nav li > a:hover {
  color: #333; }
.header-box.active .hd-btn {
  -webkit-filter: grayscale(1) brightness(0);
  filter: grayscale(1) brightness(0); }
  .header-box.active .hd-btn .tel-btn .tel {
    background-color: initial; }

.hd-btn {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between; }
  .hd-btn a {
    margin-right: 6px; }
  .hd-btn .search-btn {
    width: 36px;
    height: 36px;
    background: url(../img/search-ico01.png) no-repeat center;
    transition-duration: .3s;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center; }
  .hd-btn .tel-btn {
    background: url(../img/tel-ico01.png) no-repeat left center;
    padding-left: 40px;
    transition-duration: .3s;
    position: relative;
    font-size: 22px;
    line-height: 30px;
    color: #ffffff;
    margin-left: 35px;
    font-family: Arial, Helvetica, sans-serif; }
  .hd-btn .wx-btn {
    width: 25px;
    height: 25px;
    background: url(../img/wx-ico01.png) no-repeat center;
    transition-duration: .3s; }
  .hd-btn .add-btn {
    width: 25px;
    height: 25px;
    background: url(../img/add-ico01.png) no-repeat center;
    transition-duration: .3s;
    margin-right: 0; }

.videoWindow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 99;
  display: none; }

.videoWindow video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1320px;
  max-width: 95%;
  height: auto;
  max-height: 80%;
  transform: translateX(-50%) translateY(-50%); }

.videoWindow i {
  display: block;
  position: absolute;
  top: 30px;
  right: 30px;
  width: 25px;
  height: 25px;
  background: url("../icon/onlineClose.png") no-repeat;
  background-size: contain;
  cursor: pointer; }

.m-nav {
  display: none; }

.store .store-swiper {
  margin-top: 60px; }
  .store .store-swiper .swiper-slide {
    position: relative;
    cursor: pointer; }
    .store .store-swiper .swiper-slide .pic {
      display: block;
      width: 100%;
      position: relative;
      padding-bottom: 31.25%;
      overflow: hidden; }
      .store .store-swiper .swiper-slide .pic img {
        width: 100%;
        height: 100%;
        display: block;
        position: absolute;
        left: 0;
        top: 0;
        object-fit: cover;
        transition-duration: .3s; }
    .store .store-swiper .swiper-slide .txt {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: rgba(0, 0, 0, 0.4);
      opacity: 0;
      visibility: hidden;
      transition-duration: .3s; }
      .store .store-swiper .swiper-slide .txt h3 {
        font-size: 35px;
        line-height: 1;
        color: #fff;
        text-align: center;
        margin-top: 12%; }
      .store .store-swiper .swiper-slide .txt h5 {
        font-size: 30px;
        line-height: 1;
        color: #fff;
        margin-top: 15px;
        text-align: center; }
      .store .store-swiper .swiper-slide .txt p {
        position: absolute;
        bottom: 10px;
        left: 0;
        right: 0;
        font-size: 12px;
        line-height: 1;
        color: #fff;
        text-align: center; }
    .store .store-swiper .swiper-slide:hover .txt {
      opacity: 1;
      visibility: visible; }
  .store .store-swiper .swiper-button-prev {
    width: 127px;
    height: 20px;
    background: url(../img/left-ico03.png) no-repeat center;
    background-size: contain;
    left: 35px;
    opacity: 0;
    z-index: 9; }
  .store .store-swiper .swiper-button-next {
    width: 127px;
    height: 20px;
    background: url(../img/left-ico03.png) no-repeat center;
    background-size: contain;
    transform: rotate(180deg);
    right: 35px;
    opacity: 0;
    z-index: 9; }
  .store .store-swiper:hover .swiper-button-prev {
    opacity: 1; }
  .store .store-swiper:hover .swiper-button-next {
    opacity: 1; }

.contact .form {
  margin-top: 75px; }
  .contact .form li {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px; }
    .contact .form li:last-child {
      margin-bottom: 80px; }
    .contact .form li label {
      font-size: 16px;
      line-height: 1;
      color: #666666;
      white-space: pre-wrap;
      cursor: pointer; }
    .contact .form li:not(:nth-child(n + 4)) input {
      width: 650px;
      height: 47px;
      border: 1px solid #000000;
      padding: 0 13px;
      font-size: 16px;
      line-height: 1;
      color: #666666; }
    .contact .form li #radio1 {
      margin-right: 90px; }
    .contact .form li:nth-child(4) input {
      cursor: pointer; }
    .contact .form li .sub {
      width: 320px;
      height: 60px;
      border: 1px solid #000;
      display: flex;
      justify-content: center;
      flex-direction: column;
      align-items: center;
      font-size: 16px;
      line-height: 1;
      color: #000000;
      transition-duration: .3s; }
      .contact .form li .sub:hover {
        background-color: #000;
        color: #fff; }

.formError {
  max-width: 280px;
  pointer-events: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 10001;
  background-color: #f6f6f6;
  padding: 15px 30px;
  border-radius: 5px;
  opacity: 0;
  transition: .4s all;
  box-shadow: 0 5px 10px rgba(67, 65, 68, 0.9); }

.formError.active {
  opacity: 1; }

.formError h6 {
  font-size: 16px;
  color: #434144; }

.online {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 101;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none; }

.online .main {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  max-width: 850px;
  width: 96%;
  padding: 30px;
  background-color: #fff; }

.online .main .tit {
  width: 100%;
  max-width: 260px;
  margin: 0 auto; }

.online .main .tit h3 {
  text-align: center;
  font-size: 24px;
  color: #434144;
  font-weight: bold; }

.online .main .tit span {
  display: block;
  font-size: 14px;
  text-transform: uppercase;
  position: relative;
  margin-top: 5px;
  text-align: center;
  font-family: "Arial";
  color: #787878;
  font-weight: bold; }

.online .main .tit span b {
  color: #da251d; }

.online .main .tit span:before {
  content: '';
  opacity: 1;
  display: block;
  top: 50%;
  left: 0;
  position: absolute;
  transform: translateY(-50%);
  width: 65px;
  height: 1px;
  background-color: #434144; }

.online .main .tit span:after {
  content: '';
  opacity: 1;
  display: block;
  top: 50%;
  right: 0;
  position: absolute;
  transform: translateY(-50%);
  width: 65px;
  height: 1px;
  background-color: #434144; }

.online .main form {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: space-between;
  justify-content: space-between;
  align-items: unset; }

.online .main form figure {
  display: block;
  width: 45%;
  position: relative;
  padding: 20% 0; }

.online .main form figure img {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover; }

.online .main form ul {
  width: 52%; }

.online .main form ul li {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: space-between;
  justify-content: space-between;
  height: 40px; }

.online .main form ul li + li {
  margin-top: 15px; }

.online .main form ul li .ind {
  width: 48%;
  height: 100%;
  border: 1px solid #bebebe;
  padding: 0 10px;
  background-color: transparent;
  color: #979797;
  font-size: 14px;
  transition: .2s all; }

.online .main form ul li .ind.active {
  box-shadow: 0 5px 10px rgba(43, 59, 120, 0.6); }

.online .main form ul li .ind:hover {
  box-shadow: 0 5px 10px rgba(43, 59, 120, 0.6); }

.online .main form ul li .ind::-webkit-input-placeholder {
  color: #979797;
  font-size: 14px; }

.online .main form ul li select {
  background: url(../img/ico-002.png) #fff 95% center no-repeat; }

.online .main form ul li.phone input {
  width: 100%; }

.online .main form ul li.textarea {
  height: 180px; }

.online .main form ul li.textarea textarea {
  width: 100%;
  padding: 10px; }

.online .main form ul li button {
  width: 100%;
  height: 100%;
  line-height: 40px;
  text-align: center;
  background-color: #da251d;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: .4s all;
  border: 1px solid transparent; }

.online .main form ul li button:hover {
  background-color: transparent;
  border-color: #999;
  border-radius: 5px;
  color: #666; }

.online .close {
  display: block;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 0;
  right: 0;
  background: url(../img/close.png) no-repeat center center #da251d;
  background-size: 60%;
  cursor: pointer; }

.slide-nav {
  position: fixed;
  right: 20px;
  top: 30%;
  z-index: 98; }

.slide-nav .item {
  margin: 10px 0;
  width: 55px;
  height: 55px;
  border: 1px solid #bebebe;
  background-color: #fff;
  position: relative;
  transition: .4s all;
  border-radius: 100%; }

.slide-nav .item:hover {
  background-color: #da251d; }

.slide-nav .item:hover .icon {
  background-position: center bottom; }

.slide-nav .item:hover h4 {
  color: #fff; }

.slide-nav .goTop {
  opacity: 0;
  visibility: hidden;
  transition: all .3s;
  margin-top: 60px;
  /* display: none;  */
}

.slide-nav .goTop.active {
  opacity: 1;
  visibility: visible; }

.slide-nav .icon {
  margin: 10px auto 3px;
  display: block;
  width: 35px;
  height: 35px;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 35px auto; }

.slide-nav h4 {
  font-size: 12px;
  color: #4e4e4e;
  font-weight: 400;
  text-align: center; }

.slide-nav .nav_custom {
  position: absolute;
  right: 100%;
  top: -32px;
  width: 430px;
  opacity: 0;
  visibility: hidden;
  transition-duration: 0.3s; }

.slide-nav .item:hover .nav_custom {
  opacity: 1;
  visibility: visible; }

.slide-nav .mask {
  margin-top: -1px;
  position: absolute;
  right: 100%;
  top: 0;
  -webkit-transform: scale(1, 0);
  -ms-transform: scale(1, 0);
  -o-transform: scale(1, 0);
  transform: scale(1, 0);
  opacity: 0;
  white-space: nowrap;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s; }

.slide-nav .tel {
  padding: 0 30px;
  height: 55px;
  line-height: 55px;
  font-size: 14px;
  color: #4e4e4e;
  border: 1px solid #999;
  border-right: none;
  background-color: #fff; }

.slide-nav .qr {
  margin-right: 2px;
  width: 140px;
  height: 140px;
  border: 1px solid #f2f2f2;
  overflow: hidden; }

.slide-nav .qr img {
  display: block;
  width: 100%;
  height: 100%; }

.slide-nav .item:hover {
  border-color: #da251d; }

.slide-nav .item:hover .mask {
  -webkit-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  transform: scale(1, 1);
  opacity: 1; }

.menu-btn {
  display: none; }

.search_btn {
  display: none; }

/* 产品详情 */
.m-serve {
  background-color: #fff;
  padding-bottom: 20px;
  margin-bottom: 20px; }

.m-serve .tit {
  text-align: center;
  padding: 24px 0 45px;
  background-color: #2b3b78; }

.m-serve .tit h3 {
  font-size: 18px;
  color: #fff;
  line-height: 30px;
  margin-bottom: 6px;
  font-weight: bold; }

.m-serve .tit p {
  font-size: 14px;
  color: #fff;
  line-height: 24px;
  display: none; }

.m-serve .form {
  margin: -26px 20px 0;
  background-color: #fff;
  border-radius: 5px;
  padding: 19px 15px 19px;
  border: 1px solid #f0f0f0; }

.m-serve .form .item {
  margin-bottom: 15px;
  overflow: hidden; }

.m-serve .form .item .inp, .m-serve .form select {
  border: 1px solid #e2e2e2;
  padding: 0 20px 0 13px;
  font-size: 12px;
  color: #828282;
  line-height: 35px;
  height: 35px;
  display: block;
  width: 100%;
  border-radius: 3px; }

.m-serve .form select {
  background: url(../img/qwy-i5.png) center right 11px no-repeat; }

.m-serve .form .sub {
  line-height: 30px;
  height: 40px;
  font-size: 14px;
  color: #fff;
  text-align: center;
  border-radius: 5px;
  background-color: #2b3b78;
  border: none;
  width: 100%;
  cursor: pointer;
  transition: .4s all;
  border: 1px solid transparent; }

.m-serve .form .sub:hover {
  border-radius: 3px;
  color: #2b3b78;
  background-color: transparent;
  border-color: #2b3b78; }

.ul-form {
  overflow: hidden;
  margin: 0 -4px; }

.ul-form li {
  float: left;
  width: 50%;
  margin-top: 12px;
  padding: 0 4px; }

.g-box {
  padding: 23px 20px 5px;
  background-color: #fff;
  margin-bottom: 30px; }

.g-tit1 {
  overflow: hidden;
  margin-bottom: 20px; }

.g-tit1 h3 {
  float: left;
  padding-left: 20px;
  font-size: 24px;
  color: #000;
  background: url(../img/qwy-i6.png) center left no-repeat;
  line-height: 34px;
  font-weight: 400; }

.g-tit1 a {
  float: right;
  font-size: 14px;
  color: #828282;
  line-height: 24px;
  margin-top: 8px;
  transition: all .3s; }

.g-tit1 a:hover {
  color: #2b3b78; }

.m-list2 {
  padding-bottom: 10px; }

.m-list2 li a {
  display: block;
  font-size: 14px;
  color: #838282;
  line-height: 24px;
  margin-bottom: 7px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  position: relative;
  padding-left: 6px;
  transition: all .3s; }

.m-list2 li a:hover {
  color: #2b3b78; }

.m-list2 li a::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 2px;
  height: 2px;
  background-color: #838282;
  margin-top: 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%); }

.m-list1 {
  height: auto;
  overflow: hidden; }

.m-list1 li {
  width: 50%;
  float: left; }

.pages {
  background-color: #f6f6f6; }

/* 内页导航1 */
.navbar1 {
  /* background-color: #192028; */
  padding-top: 70px;
  padding-bottom: 50px;
  display: none; }

.navbar1 .box {
  max-width: 1500px;
  margin: 0 auto;
  background-color: #fff;
  border: 1px solid #e2e2e2; }

.navbar1 .tit {
  padding: 0 40px;
  line-height: 58px;
  overflow: hidden;
  border-bottom: 1px solid #e2e2e2;
  font-size: 16px;
  color: #3b3b3b;
  background-color: #f1f1f1; }

.navbar1 .tit span {
  float: left;
  padding-left: 29px;
  background: url(../img/all.png) center left no-repeat; }

.navbar1 .tit .js-more {
  float: right;
  padding-right: 20px;
  /* background: url(../img/qwy-i3.png) center right no-repeat; */
  cursor: pointer;
  position: relative;
  color: #7e7e7e; }

.navbar1 .tit .js-more::before {
  content: '';
  display: block;
  width: 11px;
  height: 7px;
  background: url(../img/qwy-i3.png) center no-repeat;
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -3px;
  transition: all .3s; }

.navbar1 .tit .js-more.active::before {
  transform: rotate(180deg); }

.navbar1 .nav {
  /* border-bottom: 1px solid #e2e2e2; */
  padding: 0 46px;
  /* display: flex;
  flex-wrap: wrap;
  align-items: center; */
  background-color: #fff;
  justify-content: flex-start;
  background: url(../img/nav-bg1.png) repeat left top; }

.navbar1 ul li {
  position: relative;
  padding-left: 80px;
  user-select: none; }

.navbar1 ul li h4 {
  position: absolute;
  left: 0;
  top: 0;
  display: inline-block;
  width: 80px;
  font-size: 16px;
  color: #484848;
  line-height: 58px;
  /* margin-left: 48px; */
  padding-right: 15px;
  text-align: right;
  font-weight: bold;
  display: none;
  user-select: none; }

.navbar1 ul li h4:first-child {
  display: block; }

.navbar1 ul li a {
  font-size: 16px;
  color: #9e9e9e;
  margin: 0 10px;
  line-height: 58px;
  display: inline-block;
  position: relative; }
  .navbar1 ul li a::after {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    background-color: transparent;
    position: absolute;
    bottom: 11px;
    left: 0;
    transition-duration: .3s; }

.navbar1 ul li a:hover,
.navbar1 ul li a.on {
  color: #2b3b78; }
  .navbar1 ul li a:hover::after,
  .navbar1 ul li a.on::after {
    background-color: #4a458e; }

.navbar1 ul li.active a {
  /* color: #2b3b78; */ }

body.bg1 {
  background-color: #f9f9f9; }

.navbar {
  /* background-color: #192028; */
  padding-top: 60px;
  padding-bottom: 60px; }

.navbar div {
  border: 1px solid #e2e2e2;
  width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: space-between;
  justify-content: space-between;
  padding: 0 0 0 15px;
  background-color: #fff; }

.navbar div p {
  font-size: 16px;
  line-height: 60px;
  color: #626262;
  padding-left: 30px;
  position: relative; }

  /* .navbar ul {
	border-top: 1px solid #e2e2e2;
	width: 1400px;
	padding: 0 30px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	background-color: #fff;
	justify-content: flex-start;
  }
  
  .navbar ul li {
	position: relative;
	transition: .4s all;
  } */
.navbar div p::before {
  content: '';
  opacity: 1;
  display: block;
  width: 14px;
  height: 14px;
  background: url("../images/all.png") no-repeat;
  background-size: auto;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%); }

.navbar div p::before {
  content: '';
  opacity: 1;
  display: block;
  width: 18px;
  height: 18px;
  background: url("../img/all.png") no-repeat;
  background-size: auto;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%); }

.navbar div ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start; }

.navbar div ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start; }

.navbar div ol li {
  position: relative;
  transition: .4s all;
  border-radius: 15px; }

.navbar div ol li {
  position: relative;
  transition: .4s all;
  border-radius: 15px; }

.navbar div ol li.active {
  background-color: #ddae60; }

.navbar div ol li a {
  display: block;
  font-size: 16px;
  color: #131313;
  transition: .4s all;
  /* padding: 6px 15px; */
  height: 60px;
  line-height: 60px;
  padding: 0 18px;
  min-width: 85px;
  text-align: center; }

.navbar .js-more {
  display: none; }

.navbar > div {
  padding: 0 20px;
  width: 100%;
  display: block;
  position: relative; }

.navbar div .js-more {
  display: block;
  /* font-size: 14px;
  line-height: 30px; */
  position: relative;
  line-height: 44px;
  font-size: 16px;
  color: #626262;
  cursor: pointer;
  text-align: center; }

.navbar div p {
  display: none;
  /* font-size: 14px;
  line-height: 30px; */ }

.navbar {
  padding: 40px 15px;
  /* margin-top: 20px; */ }

.navbar .js-more::before {
  content: '';
  display: block;
  width: 11px;
  height: 7px;
  background: url(../img/qwy-i3.png) center no-repeat;
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -3px;
  transition: all .3s; }

.navbar > div::after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background-color: #e2e2e2;
  position: absolute;
  top: 45px;
  right: 0; }

.navbar div ol {
  display: none;
  padding: 8px 0; }

.navbar .js-more.active::before {
  transform: rotate(180deg); }

.navbar div ol li a {
  text-align: center;
  font-size: 14px;
  padding: 6px 15px;
  height: auto;
  line-height: 1.2;
  color: #666; }

.navbar > div {
  padding: 0 20px; }

.navbar div ol li.on a, .navbar div ol li a:hover {
  /* color: #2b3b78; */ }

.navbar {
  display: none; }

.sidebar_news2 {
  padding: 30px;
  background-color: #fff;
  margin-bottom: 36px; }
  .sidebar_news2 .tit {
    font-size: 16px;
    line-height: 1;
    color: #333333;
    padding-bottom: 14px;
    border-bottom: 2px solid #ececec;
    padding-left: 20px;
    position: relative;
    margin-bottom: 15px; }
    .sidebar_news2 .tit::after {
      content: '';
      display: block;
      width: 2px;
      height: 20px;
      background-color: #da251d;
      position: absolute;
      left: 0;
      top: 0; }
  .sidebar_news2 li a {
    font-size: 14px;
    line-height: 25px;
    color: #666666;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
    padding-left: 20px;
    margin-bottom: 10px;
    position: relative;
    transition-duration: .3s; }
    .sidebar_news2 li a::after {
      content: '';
      display: block;
      width: 6px;
      height: 6px;
      border-radius: 100%;
      background-color: #333;
      position: absolute;
      left: 0;
      top: 50%;
      margin-top: -3px; }
    .sidebar_news2 li a:hover {
      color: #da251d; }

.sidebar_item {
  padding: 30px;
  background-color: #fff; }
  .sidebar_item .tit {
    font-size: 16px;
    line-height: 1;
    color: #333333;
    padding-bottom: 14px;
    border-bottom: 2px solid #ececec;
    padding-left: 20px;
    position: relative;
    margin-bottom: 15px; }
    .sidebar_item .tit::after {
      content: '';
      display: block;
      width: 2px;
      height: 20px;
      background-color: #da251d;
      position: absolute;
      left: 0;
      top: 0; }
  .sidebar_item .code {
    padding: 22px 40px;
    background: #f8f8f8;
    text-align: center; }
    .sidebar_item .code h3 {
      font-size: 14px;
      line-height: 1;
      color: #000000;
      margin-top: 10px;
      text-align: center; }

.sidebar_news {
  padding: 30px;
  background-color: #fff; }
  .sidebar_news .tit {
    font-size: 16px;
    line-height: 1;
    color: #333333;
    padding-bottom: 14px; }
  .sidebar_news li {
    border-bottom: 1px solid #dbdbdb;
    padding-bottom: 30px; }
  .sidebar_news h3 {
    font-size: 14px;
    line-height: 25px;
    color: #5d5d5d;
    transition-duration: .3s;
    margin-top: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    height: 50px; }
    .sidebar_news h3:hover {
      color: #a73736; }
  .sidebar_news .pic {
    display: block;
    width: 100%;
    position: relative;
    padding-bottom: 55%;
    margin-top: 10px;
    overflow: hidden; }
    .sidebar_news .pic img {
      width: 100%;
      height: 100%;
      display: block;
      position: absolute;
      left: 0;
      top: 0;
      object-fit: cover;
      transition-duration: .3s; }
  .sidebar_news p {
    font-size: 14px;
    line-height: 25px;
    color: #828282;
    height: 50px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 23px;
    margin-top: 15px; }
    .sidebar_news p:hover {
      color: #4a458e; }

.m-contxt1 {
  padding: 40px 30px 20px;
  background-color: #fff; }

.m-contxt1 .tit {
  font-size: 24px;
  color: #292929;
  line-height: 1.2;
  /* margin-bottom: 13px; */
  font-weight: bold; }

.m-contxt1 .box-info {
  margin-top: 20px;
  padding-bottom: 30px;
  margin-bottom: 20px;
  border-bottom: 2px solid #e6e6e6;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: space-between;
  justify-content: space-between; }

.m-contxt1 .box-info .info span {
  font-size: 16px;
  color: #a7a7a7;
  margin-right: 10px;
  display: inline-block; }

.m-contxt1 .item {
  padding-bottom: 30px;
  border-bottom: 1px solid #d6d6d6;
  /*
   
   margin-bottom: 35px; */
  /* text-indent: 2em; */
  margin-bottom: 30px; }

.m-contxt1 .share-box {
  font-size: 16px;
  color: #a7a7a7; }
.m-contxt1 .social-share {
  display: inline-block; }
.m-contxt1 .link {
  padding-right: 150px;
  position: relative; }
  .m-contxt1 .link a {
    display: block; }
  .m-contxt1 .link .prev {
    font-size: 16px;
    line-height: 1.1;
    color: #9d9d9d;
    margin-bottom: 10px; }
    .m-contxt1 .link .prev:hover {
      color: #a73736; }
  .m-contxt1 .link .next {
    font-size: 16px;
    line-height: 1.1;
    color: #9d9d9d; }
    .m-contxt1 .link .next:hover {
      color: #a73736; }
  .m-contxt1 .link .back {
    position: absolute;
    bottom: 0;
    right: 0;
    color: #fff;
    display: inline-block;
    padding: 10px 30px;
    background-color: #b8b8b8;
    border-radius: 5px;
    font-size: 16px;
    line-height: 1;
    color: #fff; }
    .m-contxt1 .link .back:hover {
      color: #a73736; }

.page-t1 a {
  display: block;
  width: 45%;
  font-size: 16px;
  color: #aaaaaa;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; }
  .page-t1 a em {
    display: inline-block;
    width: 10px;
    height: 15px;
    background: url(../img/news-left-01.png) no-repeat center;
    margin-right: 18px;
    position: relative;
    top: 2px; }
  .page-t1 a:hover em {
    background-image: url(../img/news-left-02.png); }
  .page-t1 a.next {
    padding-right: 25px;
    position: relative; }
    .page-t1 a.next em {
      position: absolute;
      right: 0;
      background-image: url(../img/news-right-01.png); }
    .page-t1 a.next:hover em {
      background-image: url(../img/news-right-02.png); }

.page-t1 a:hover {
  color: #f27416; }

.page-t1 a.prev {
  margin-bottom: 5px; }

.page-t1 {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between; }

.page-t1 .blank {
  display: inline-block;
  font-size: 18px;
  color: #fff;
  padding: 10px 25px;
  background-color: #b8b8b8;
  border-radius: 3px;
  position: absolute;
  right: 0;
  top: 0;
  letter-spacing: 2px;
  transition: all .3s; }

.page-t1 .blank:hover {
  background-color: #FF5200; }

.box-blank .con {
  background: #3d3d3d;
  display: inline-block;
  width: 215px; }

.box-blank .box1 {
  width: 65px;
  height: 40px;
  background: #4a458e url(../img/t3-img6.png) no-repeat center center;
  float: left; }

.box-blank .blank {
  overflow: hidden;
  display: block;
  font-size: 16px;
  text-align: center;
  line-height: 40px;
  color: #fff;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s; }

.box-blank .blank:hover {
  opacity: .8; }

.box-blank {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: space-between;
  justify-content: space-between;
  overflow: hidden;
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid #d6d6d6;
  margin-left: 30px;
  margin-right: 30px;
  margin-bottom: 30px; }
  .box-blank div a {
    display: block;
    font-size: 16px;
    color: #787878;
    transition: .4s all; }
    .box-blank div a + a {
      margin-top: 15px; }
    .box-blank div a:hover {
      color: #000000; }

.cases_view {
  padding-top: 70px; }
  .cases_view .list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    margin-right: -1.8%; }
    .cases_view .list li {
      width: 31.5%;
      margin-right: 1.8%;
      transition-duration: .3s; }
      .cases_view .list li .pic {
        display: block;
        width: 100%;
        position: relative;
        padding-bottom: 74.15%;
        overflow: hidden; }
        .cases_view .list li .pic img {
          width: 100%;
          height: 100%;
          display: block;
          position: absolute;
          left: 0;
          top: 0;
          object-fit: cover;
          transition-duration: .3s; }
      .cases_view .list li h3 {
        font-size: 16px;
        line-height: 1.2;
        color: #000;
        margin-top: 20px;
        margin-bottom: 25px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        transition-duration: .3s;
        position: relative;
        padding-bottom: 3px;
        display: inline-block;
        max-width: 100%; }
        .cases_view .list li h3::after {
          content: '';
          display: block;
          width: 100%;
          height: 12px;
          background-color: #eb531d;
          position: absolute;
          left: 0;
          bottom: 0;
          z-index: -1;
          opacity: 0;
          visibility: hidden;
          transition-duration: .3s; }
      .cases_view .list li:hover h3 {
        padding-left: 10px;
        padding-right: 10px; }
      .cases_view .list li:hover h3::after {
        opacity: 1;
        visibility: visible; }

.com-banner2 {
  position: relative;
  padding-bottom: 41.6%;
  /* margin-top: 76px; */ }

.com-banner2 img {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover; }

.search-box {
  padding: 0;
  transition: 1s ease;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #999;
  width: 320px;
  height: 0;
  position: absolute;
  z-index: 3;
  right: 0;
  top: 90px;
  transform: translateX(50px);
  opacity: 0;
  visibility: hidden;
  /* transition:transform .3s,opacity 1s,visibility 1s; */
  transition: initial;
  padding: 15px;
  height: 200px;
  transition: all .8s; }

.search-box.active {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  right: 0;
  transition: transform .3s;
  /* transition: transform .3s,opacity .3s,visibility .3s; */ }

.search-box p {
  text-transform: uppercase;
  font-size: 24px;
  text-align: center;
  color: #333;
  margin-bottom: 20px;
  font-weight: bold; }

.search-box input {
  width: 100%;
  border: 1px solid #999;
  height: 40px;
  background: transparent;
  padding: 0 15px; }

.search-box button {
  height: 40px;
  border: 1px solid #fff;
  background: #f27416;
  color: #fff;
  width: 100%;
  margin-top: 20px;
  cursor: pointer; }

.project_view .list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: -35px; }

.project_view .list li {
  width: 31.2142857%;
  transition: all .3s;
  margin-bottom: 35px;
  background: #fff; }

.project_view .list::after {
  content: "";
  width: 31.2142857%; }

.project_view .list .pic {
  display: block;
  position: relative;
  padding-bottom: 77.8032%; }

.project_view .list .pic img {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: contain;
  padding: 10px 30px 0; }

.project_view .list .tit h3 {
  font-size: 14px;
  color: #202020;
  line-height: 1.2;
  padding-top: 25px;
  padding-bottom: 25px;
  text-align: center; }

.project_view .list li:hover {
  transform: translateY(-5px);
  box-shadow: 3px 3px 5px #c3c0c0; }
  .project_view .list li:hover .tit h3 {
    color: #2b3b78; }

.care_view .list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: -35px; }

.care_view .list::after {
  content: "";
  width: 31.2142857%; }

.care_view .list li {
  width: 31.2142857%;
  transition: all .3s;
  margin-bottom: 35px; }

.care_view .list .tit h3 {
  font-size: 16px;
  color: #9e9e9e;
  line-height: 1.2;
  padding-top: 15px;
  padding-bottom: 12px;
  text-align: center; }

.care_view .list:after {
  content: "";
  width: 31.2142857%; }

.care_view .list li:hover {
  transform: translateY(-5px);
  /* background-color: #fff; */
  box-shadow: 3px 3px 5px #c3c0c0; }

.care_view .list .pic {
  display: block;
  position: relative;
  padding-bottom: 77.8032%; }

.care_view .list .pic img {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover; }

.duty_view .content {
  margin-bottom: 50px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  align-items: flex-start; }
  .duty_view .content .pic {
    width: 41%;
    height: 550px; }
    .duty_view .content .pic img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
  .duty_view .content .txt {
    width: 56%; }
    .duty_view .content .txt h3 {
      font-size: 30px;
      line-height: 1;
      color: #02537c; }
    .duty_view .content .txt h5 {
      font-size: 24px;
      line-height: 1;
      color: #5f5f5f;
      margin-top: 14px; }
    .duty_view .content .txt p {
      margin-top: 35px;
      font-size: 18px;
      line-height: 30px;
      color: #919191; }

.nav2 {
  padding: 25px 0 55px; }
  .nav2 .wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start; }
  .nav2 .tit {
    font-size: 26px;
    line-height: 35px;
    color: #363636;
    margin-left: 20px; }
    .nav2 .tit span {
      color: #a73736; }
  .nav2 .tabs {
    margin-left: 75px; }
    .nav2 .tabs a {
      display: inline-block;
      font-size: 14px;
      line-height: 1;
      color: #bc1b28;
      padding: 12px 30px;
      border-radius: 30px;
      border: 1px solid #a73736;
      margin-right: 25px;
      background-color: #ffffff;
      transition-duration: .3s; }
      .nav2 .tabs a:hover {
        background-color: #a73736;
        color: #fff; }

.bg2 {
  background-color: #f8f8f8; }

.m-index {
  display: none; }

.guard {
  background-color: #f5f5f5;
  padding: 90px 0 110px; }
  .guard .top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between; }
    .guard .top .tit {
      width: 41%;
      padding-left: 78px;
      background: url(../img/guard-ico01.png) no-repeat left top; }
      .guard .top .tit h3 {
        font-size: 40px;
        line-height: 45px;
        color: #1c1c1c;
        font-weight: bold;
        white-space: pre-wrap;
        padding-top: 30px; }
      .guard .top .tit h5 {
        font-size: 24px;
        line-height: 1;
        color: #1c1c1c;
        margin-top: 20px; }
    .guard .top p {
      width: 59%;
      font-size: 14px;
      line-height: 28px;
      color: #666666; }
  .guard .guard-swiper {
    padding-top: 100px; }
    .guard .guard-swiper .swiper-pagination {
      top: 6px;
      bottom: initial;
      width: auto;
      left: 65%;
      font-size: 18px;
      line-height: 1;
      color: #666666;
      display: none; }
      .guard .guard-swiper .swiper-pagination .swiper-pagination-current {
        font-size: 36px;
        line-height: 1;
        color: #f27416; }
    .guard .guard-swiper .box-button {
      width: 130px;
      height: 50px;
      position: absolute;
      top: 0;
      left: 50%;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: flex-start; }
      .guard .guard-swiper .box-button div {
        position: initial;
        margin-top: 0;
        width: 50%;
        height: 100%;
        border: 1px solid #999999;
        background: url(../img/guard-left-ico01.png) no-repeat center; }
        .guard .guard-swiper .box-button div:hover {
          background-image: url(../img/guard-left-ico02.png);
          background-color: #f27416;
          border-color: #f27416; }
        .guard .guard-swiper .box-button div::after {
          display: none; }
      .guard .guard-swiper .box-button .swiper-button-next {
        transform: rotate(180deg); }
    .guard .guard-swiper .swiper-slide {
      width: 280px;
      height: 480px; }
      .guard .guard-swiper .swiper-slide a {
        display: block;
        width: 100%;
        height: 100%; }
      .guard .guard-swiper .swiper-slide .pic {
        position: relative;
        width: 100%;
        height: 100%; }
        .guard .guard-swiper .swiper-slide .pic .bg {
          width: 100%;
          height: 100%;
          display: block;
          position: absolute;
          left: 0;
          top: 0;
          object-fit: cover;
          transition-duration: .3s; }
        .guard .guard-swiper .swiper-slide .pic .txt {
          position: absolute;
          bottom: 0;
          left: 0;
          right: 0;
          padding: 20px;
          transition-duration: .3s; }
          .guard .guard-swiper .swiper-slide .pic .txt h2 {
            font-size: 100px;
            line-height: 1;
            color: #ffffff;
            font-family: Arial, Helvetica, sans-serif; }
          .guard .guard-swiper .swiper-slide .pic .txt .ico {
            width: 55px;
            height: 55px;
            position: relative;
            display: none; }
            .guard .guard-swiper .swiper-slide .pic .txt .ico img {
              width: 100%;
              height: 100%;
              display: block;
              position: absolute;
              left: 0;
              top: 0;
              object-fit: contain;
              transition-duration: .3s; }
          .guard .guard-swiper .swiper-slide .pic .txt h3 {
            font-size: 12px;
            line-height: 1;
            color: #ffffff;
            margin-top: 30px; }
          .guard .guard-swiper .swiper-slide .pic .txt h4 {
            font-size: 12px;
            line-height: 1;
            color: #bdbdbd;
            margin-top: 12px;
            margin-bottom: 25px; }
          .guard .guard-swiper .swiper-slide .pic .txt p {
            font-size: 12px;
            line-height: 25px;
            color: #ffffff;
            height: 125px;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 5;
            -webkit-box-orient: vertical;
            display: none; }
          .guard .guard-swiper .swiper-slide .pic .txt span {
            display: inline-block;
            font-size: 14px;
            line-height: 25px;
            color: #ffffff;
            padding-right: 32px;
            background: url(../img/guard-ico03.png) no-repeat right center;
            display: none; }
      .guard .guard-swiper .swiper-slide:hover .pic .txt {
        padding: 20px 30px;
        top: 0;
        background-color: #f27416; }
        .guard .guard-swiper .swiper-slide:hover .pic .txt h2 {
          display: none; }
        .guard .guard-swiper .swiper-slide:hover .pic .txt h3 {
          font-size: 24px; }
        .guard .guard-swiper .swiper-slide:hover .pic .txt .ico {
          display: block;
          margin-top: 30px; }
        .guard .guard-swiper .swiper-slide:hover .pic .txt h4 {
          color: #fff; }
        .guard .guard-swiper .swiper-slide:hover .pic .txt p {
          display: block;
          margin-top: 30px; }
        .guard .guard-swiper .swiper-slide:hover .pic .txt span {
          margin-top: 90px;
          display: inline-block; }

.brand {
  padding: 130px 0; }
  .brand .tit {
    text-align: center; }
    .brand .tit h3 {
      font-size: 18px;
      line-height: 1;
      color: #ee7835; }
    .brand .tit h5 {
      font-size: 36px;
      line-height: 1;
      color: #333333;
      margin-top: 20px; }
  .brand .list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    margin-top: 55px; }
    .brand .list li {
      width: 19.4%;
      margin-right: 0.7%; }
      .brand .list li:nth-child(5n) {
        margin-right: 0; }
      .brand .list li .pic {
        display: block;
        width: 100%;
        position: relative;
        padding-bottom: 100%;
        overflow: hidden;
        overflow: hidden; }
        .brand .list li .pic img {
          width: 100%;
          height: 100%;
          display: block;
          position: absolute;
          left: 0;
          top: 0;
          object-fit: cover;
          transition-duration: .3s;
          transition-duration: .3s; }
        .brand .list li .pic:hover img {
          transform: scale(1.1); }
        .brand .list li .pic .txt {
          text-align: center;
          position: absolute;
          left: 0;
          right: 0;
          bottom: 0; }
          .brand .list li .pic .txt h3 {
            font-size: 16px;
            line-height: 1;
            color: #ffffff;
            font-weight: bold;
            padding-bottom: 28px;
            transition-duration: .3s; }
          .brand .list li .pic .txt h5 {
            font-size: 12px;
            line-height: 1;
            color: #ffffff;
            opacity: 0;
            visibility: hidden;
            height: 0;
            transition-duration: .3s; }
          .brand .list li .pic .txt span {
            display: block;
            font-size: 12px;
            line-height: 1;
            color: #ffffff;
            opacity: 0;
            visibility: hidden;
            height: 0;
            transition-duration: .3s; }
        .brand .list li .pic:hover .txt h3 {
          padding-bottom: 12px; }
        .brand .list li .pic:hover .txt h5 {
          height: auto;
          opacity: 1;
          visibility: visible;
          padding-bottom: 10px; }
        .brand .list li .pic:hover .txt span {
          height: auto;
          opacity: 1;
          visibility: visible;
          padding-bottom: 24px; }

.guard_view .info {
  background-color: #f5f5f5;
  padding: 80px 0 100px; }
  .guard_view .info .wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    align-items: flex-start; }
  .guard_view .info .tit {
    width: 41%;
    padding-left: 78px;
    background: url(../img/guard-ico01.png) no-repeat left top; }
    .guard_view .info .tit h3 {
      font-size: 40px;
      line-height: 45px;
      color: #1c1c1c;
      font-weight: bold;
      padding-top: 30px; }
    .guard_view .info .tit h5 {
      font-size: 24px;
      line-height: 1;
      color: #1c1c1c;
      margin-top: 20px; }
  .guard_view .info .con {
    width: 56%;
    font-size: 14px;
    line-height: 25px;
    color: #666666;
    padding-top: 40px;
    white-space: pre-wrap; }
.guard_view .list {
  padding-top: 105px; }
  .guard_view .list li {
    margin-bottom: 105px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    height: 650px;
    align-items: stretch; }
    .guard_view .list li .pic {
      width: 64%;
      height: 100%;
      position: relative; }
      .guard_view .list li .pic img {
        width: 100%;
        height: 100%;
        display: block;
        position: absolute;
        left: 0;
        top: 0;
        object-fit: cover;
        transition-duration: .3s; }
    .guard_view .list li .txt {
      width: 36%;
      padding: 70px 30px  0 90px;
      background-color: #f5f5f5;
      position: relative;
      overflow: hidden; }
      .guard_view .list li .txt .bg-t1 {
        display: block;
        position: absolute;
        top: 0;
        right: -80px;
        font-size: 340px;
        width: 340px;
        line-height: 1;
        color: #f0f0f0; }
      .guard_view .list li .txt .ico1 {
        width: 55px;
        height: 55px;
        object-fit: contain;
        position: relative; }
      .guard_view .list li .txt h3 {
        font-size: 30px;
        line-height: 1;
        color: #333333;
        margin-top: 15px;
        position: relative; }
      .guard_view .list li .txt h5 {
        font-size: 18px;
        line-height: 1;
        color: #333333;
        margin-top: 15px;
        position: relative; }
      .guard_view .list li .txt p {
        font-size: 14px;
        line-height: 30px;
        color: #333333;
        margin-top: 40px;
        white-space: pre-wrap;
        margin-bottom: 45px;
        position: relative; }
      .guard_view .list li .txt .ico2 {
        position: relative; }
    .guard_view .list li:nth-child(2n) .pic {
      order: 1; }

.video_window {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.85);
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  display: none; }

.video_window .main {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 750px;
  height: 500px; }

.video_window .main video {
  border: 20px solid #fff;
  border-radius: 10px;
  background-color: #000; }

.video_window .main {
  overflow: visible;
  background-color: initial; }

.video_window .main i {
  display: block;
  width: 36px;
  height: 36px;
  cursor: pointer;
  margin: 0 auto;
  margin-top: 30px;
  background: url(../img/close.png) no-repeat;
  background-size: 100% 100%; }

.com-more3 {
  display: inline-block;
  font-size: 16px;
  line-height: 1;
  color: #ffffff;
  padding: 15px 40px 15px 60px;
  background: url(../img/more-ico01.png) no-repeat left 35px center;
  background-color: #a73736;
  transition-duration: .3s; }
  .com-more3:hover {
    background-color: #313131;
    color: #fff; }

.hot {
  padding: 125px 0 110px;
  overflow: hidden;
  background: url(../img/hot-bg01.jpg) no-repeat center;
  background-size: cover; }
  .hot .tit {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between; }
    .hot .tit h3 {
      font-size: 48px;
      line-height: 1;
      color: #101010; }
    .hot .tit .tabs {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: flex-start; }
      .hot .tit .tabs a {
        font-size: 16px;
        line-height: 1;
        color: #878787;
        margin-right: 45px;
        padding: 0 5px 10px;
        border-bottom: 3px solid transparent;
        transition-duration: .3s; }
        .hot .tit .tabs a:last-child {
          margin-right: 0; }
        .hot .tit .tabs a.on, .hot .tit .tabs a:hover {
          border-bottom-color: #a73736;
          color: #a73736; }
  .hot .hot-swiper {
    margin-top: 65px;
    padding-bottom: 55px;
    overflow: visible; }
    .hot .hot-swiper .swiper-slide {
      width: 440px; }
      .hot .hot-swiper .swiper-slide .pic {
        display: block;
        width: 100%;
        position: relative;
        padding-bottom: 73.8%;
        overflow: hidden;
        overflow: hidden; }
        .hot .hot-swiper .swiper-slide .pic img {
          width: 100%;
          height: 100%;
          display: block;
          position: absolute;
          left: 0;
          top: 0;
          object-fit: cover;
          transition-duration: .3s;
          transition-duration: .3s; }
        .hot .hot-swiper .swiper-slide .pic:hover img {
          transform: scale(1.1); }
      .hot .hot-swiper .swiper-slide h3 {
        font-size: 20px;
        line-height: 1.4;
        color: #535353;
        text-align: center;
        margin-top: 25px;
        margin-bottom: 20px; }
    .hot .hot-swiper .swiper-scrollbar {
      width: 100%;
      left: initial;
      bottom: 20px;
      height: 3px;
      background-color: #cdcdcd;
      display: block !important; }
      .hot .hot-swiper .swiper-scrollbar .swiper-scrollbar-drag {
        height: 7px;
        position: relative;
        background-color: #a73736;
        border-radius: 7px;
        left: 0;
        top: -2px; }
        .hot .hot-swiper .swiper-scrollbar .swiper-scrollbar-drag::after {
          content: '';
          width: 42px;
          height: 42px;
          background: url(../img/cur-ico01.png) no-repeat center;
          background-size: contain;
          position: absolute;
          left: 50%;
          top: 50%;
          transform: translateX(-50%) translateY(-50%); }
  .hot .more {
    text-align: center;
    margin-top: 60px; }

.header .m {
  display: none;
  padding: 30px 30px;
  position: relative;
  background-color: #fff;
  overflow: hidden; }

.header .m .menu {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 40px;
  background-color: transparent; }

.header .m .menu path {
  stroke: #333; }

.header .m .menu label {
  left: -40px;
  top: -45px;
  max-width: 130px;
  max-height: 130px; }

.header .m > a {
  display: block;
  height: 45px;
  text-align: center; }

.header .m > a img {
  display: inline-block;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  margin: 0 auto; }

.header .m .Msearch {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background: url("../icon/Msearch.png") no-repeat;
  background-size: contain; }

.PopupColumn {
  position: fixed;
  top: 75px;
  left: -1024px;
  padding: 20px 15px;
  width: 100%;
  max-width: 1024px;
  height: 100%;
  background-color: #333;
  transition: 0.4s all;
  z-index: 99; }

.PopupColumn.active {
  left: 0; }

.PopupColumn li {
  border-bottom: 1px solid #999; }

.PopupColumn li.active a:after {
  background-color: #fff; }

.PopupColumn li.active a icon {
  transform: translateY(-50%) rotate(180deg); }

.PopupColumn li > a {
  display: block !important;
  font-size: 15px;
  color: #fff;
  padding: 20px 0;
  letter-spacing: 1px;
  transition: 0.4s all;
  letter-spacing: 2px;
  position: relative;
  padding-left: 30px; }

.PopupColumn li > a:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border: 1px solid #fff;
  border-radius: 50%;
  transition: 0.4s; }

.PopupColumn li > a icon {
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  background: url("../icon/downJT.png") no-repeat;
  background-size: contain;
  transition: 0.4s all; }

.PopupColumn li dl {
  display: none;
  padding-bottom: 20px; }

.PopupColumn li dl dd {
  padding: 10px 30px; }

.PopupColumn li dl dd a {
  display: block;
  font-size: 14px;
  color: #fff; }

.PopupColumn p {
  font-size: 20px;
  margin-top: 30px;
  color: #004d85;
  cursor: pointer;
  font-family: english;
  letter-spacing: 1px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  flex-direction: unset; }

.PopupColumn p i {
  display: block;
  width: 15px;
  height: 15px;
  background: url("../img/top.png") no-repeat;
  background-size: contain;
  margin-left: 5px;
  margin-top: 2px; }

.PopupSearch {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 99; }

.PopupSearch form {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%); }

.PopupSearch form h4 {
  font-size: 40px;
  color: #fff;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px; }

.PopupSearch form .div {
  margin-top: 20px;
  margin-bottom: 80px;
  width: 640px;
  height: 50px;
  border-radius: 6px;
  border: 1px solid #dfdfdf;
  position: relative; }

.PopupSearch ul {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px; }

.PopupSearch ul li {
  display: inline-block; }

.PopupSearch ul li div {
  color: #fff; }

.PopupSearch form .div select {
  width: 180px;
  line-height: 48px;
  padding: 0 15px;
  font-size: 17px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  background: url("../icon/dropDown.png") rgba(0, 0, 0, 0.7) 95% center no-repeat;
  background-size: 15px 15px;
  border-right: 1px solid #dfdfdf;
  color: #dfdfdf;
  letter-spacing: 2px; }

.PopupSearch form .div select option {
  padding: 10px 0; }

.PopupSearch form .div input {
  width: 453px;
  line-height: 48px;
  background-color: transparent;
  padding: 0 10px;
  color: #dfdfdf;
  font-size: 17px;
  letter-spacing: 2px; }

.PopupSearch form .div input::-webkit-input-placeholder {
  color: #dfdfdf;
  font-size: 17px; }

.PopupSearch form .div button {
  width: 80px;
  height: 48px;
  line-height: 48px;
  position: absolute;
  top: 0;
  right: 0;
  border-left: 1px solid #dfdfdf;
  text-transform: uppercase;
  cursor: pointer; }

.PopupSearch form .div button i {
  display: block;
  width: 30px;
  height: 30px;
  position: relative;
  margin: 0 auto;
  overflow: hidden; }

.PopupSearch form .div button i:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 60px;
  background: url("../icon/search.png") no-repeat;
  background-position: center top;
  background-size: contain; }

.PopupSearch form icon {
  display: block;
  overflow: hidden;
  margin: 0 auto;
  cursor: pointer;
  font-size: 24px;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  transition: 0.4s all; }

.PopupSearch form icon:hover {
  color: #1e2b69; }

.m_search {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #434144;
  z-index: 999;
  display: none; }

.m_search ul {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center; }

.m_search ul li {
  display: inline-block; }

.m_search .layui-form-radio {
  line-height: 28px; }

.m_search .layui-form-radio div {
  color: #fff; }

.m_search .layui-form-radio i {
  width: 25px !important;
  height: 25px !important; }

.m_search > div {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center; }

.m_search > div > i {
  width: 50px;
  height: 50px;
  background: url("../icon/Msearch.png") no-repeat;
  background-size: contain; }

.m_search > div h5 {
  font-size: 32px;
  font-family: english;
  letter-spacing: 1px;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  line-height: 36px;
  color: #fff;
  margin-top: 20px;
  letter-spacing: 1px; }

.m_search > div h5:before {
  content: "";
  margin-right: 2px; }

.m_search > div form {
  width: 100%;
  padding: 0 15%;
  margin-top: 50px; }

.m_search > div form input {
  width: 100%;
  background-color: transparent;
  border-bottom: 1px solid #fff;
  color: #fff;
  font-size: 20px;
  line-height: 60px; }

.m_search > div form input:-webkit-input-placeholder {
  color: #fff;
  font-size: 20px;
  line-height: 60px; }

.m_search > div form button {
  width: 100%;
  line-height: 50px;
  background-color: #da251d;
  text-transform: uppercase;
  color: #fff;
  font-size: 18px;
  font-family: english;
  letter-spacing: 1px;
  font-weight: bold;
  text-align: center;
  margin-top: 50px; }

.m_search > div .searchClose {
  margin-top: 50px; }

.m_search > div .searchClose i {
  display: block;
  width: 40px;
  height: 40px;
  background: url("../icon/onlineClose.png") no-repeat;
  background-size: contain;
  margin: 0 auto; }

.m_search > div .searchClose p {
  font-size: 18px;
  color: #fff;
  margin-top: 5px;
  text-transform: uppercase;
  font-family: english;
  letter-spacing: 2px;
  font-weight: bold; }

.PopupSearch {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 99; }

.PopupSearch form {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%); }

.PopupSearch form h4 {
  font-size: 40px;
  color: #fff;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px; }

.PopupSearch form .div {
  margin-top: 30px;
  margin-bottom: 80px;
  width: 640px;
  height: 50px;
  border-radius: 6px;
  border: 1px solid #dfdfdf;
  position: relative; }

.PopupSearch ul {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px; }

.PopupSearch ul li {
  display: inline-block; }

.PopupSearch ul li div {
  color: #fff; }

.PopupSearch form .div select {
  width: 180px;
  line-height: 48px;
  padding: 0 15px;
  font-size: 17px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  background: url("../icon/dropDown.png") rgba(0, 0, 0, 0.7) 95% center no-repeat;
  background-size: 15px 15px;
  border-right: 1px solid #dfdfdf;
  color: #dfdfdf;
  letter-spacing: 2px; }

.PopupSearch form .div select option {
  padding: 10px 0; }

.PopupSearch form .div input {
  width: 453px;
  line-height: 48px;
  background-color: transparent;
  padding: 0 10px;
  color: #dfdfdf;
  font-size: 17px;
  letter-spacing: 2px; }

.PopupSearch form .div input::-webkit-input-placeholder {
  color: #dfdfdf;
  font-size: 17px; }

.PopupSearch form .div button {
  width: 80px;
  height: 48px;
  line-height: 48px;
  position: absolute;
  top: 0;
  right: 0;
  border-left: 1px solid #dfdfdf;
  text-transform: uppercase;
  cursor: pointer; }

.PopupSearch form .div button i {
  display: block;
  width: 30px;
  height: 30px;
  position: relative;
  margin: 0 auto;
  overflow: hidden; }

.PopupSearch form .div button i:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 60px;
  background: url("../icon/search.png") no-repeat;
  background-position: center top;
  background-size: contain; }

.PopupSearch form icon {
  display: block;
  overflow: hidden;
  margin: 0 auto;
  cursor: pointer;
  font-size: 24px;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  transition: 0.4s all;
  width: 40px;
  height: 40px;
  background: url("../icon/onlineClose.png") no-repeat;
  background-size: contain; }

.PopupSearch form icon:hover {
  color: #da251d; }

.com-banner1 {
  position: relative;
  height: 700px; }
  .com-banner1 .mobile {
    display: none; }

.com-banner1 img {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover; }

.com-banner1 h3 {
  color: #ffffff;
  font-size: 36px;
  line-height: 1.2;
  font-weight: bold;
  position: absolute;
  left: 50%;
  top: 45%;
  margin-left: -760px; }
  .com-banner1 h3 span {
    font-size: 18px;
    line-height: 1.2;
    color: #ffffff;
    margin-top: 10px;
    display: block; }

.com-banner1 .tabs-box {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5); }

.com-banner1 .tabs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  /* height: 55px; */
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  flex-wrap: nowrap; }

.com-banner1 .tabs a {
  padding: 30px 80px;
  font-size: 18px;
  line-height: 1;
  color: #ffffff;
  transition-duration: .3s; }

.com-banner1 .tabs a.on, .com-banner1 .tabs a:hover {
  background-color: #da251d; }

.PopupCode {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 99; }

.PopupCode ul {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start; }

.PopupCode ul li {
  background-color: #fff;
  padding: 20px;
  transition: 0.4s all; }

.PopupCode ul li + li {
  margin-left: 30px; }

.PopupCode ul li figure img {
  width: 260px;
  height: 260px; }

.PopupCode ul li p {
  width: 100%;
  text-align: center;
  font-size: 16px;
  color: #434144;
  margin-top: 10px;
  padding-top: 15px;
  border-top: 1px solid #434144;
  transition: 0.4s all;
  letter-spacing: 2px; }

.PopupCode ul li span {
  display: table;
  margin: 0 auto;
  margin-top: 10px;
  text-align: center;
  font-size: 14px;
  color: #1e2b69;
  cursor: pointer;
  transition: 0.4s all;
  position: relative;
  padding-bottom: 3px; }

.PopupCode ul li span:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #fff;
  opacity: 0;
  transition: 0.4s all; }

.PopupCode ul li span:hover:after {
  opacity: 1; }

.PopupCode ul li:hover {
  background-color: #da251d; }

.PopupCode ul li:hover p {
  color: #fff;
  border-color: #fff; }

.PopupCode ul li:hover span {
  color: #fff; }

.download_view .tit {
  text-align: center; }
  .download_view .tit h3 {
    font-size: 30px;
    line-height: 1.2;
    color: #2b2b2b;
    text-transform: uppercase;
    font-family: Arial, Helvetica, sans-serif; }
  .download_view .tit h5 {
    font-size: 26px;
    line-height: 1.2;
    color: #2b2b2b;
    margin-top: 25px; }
  .download_view .tit i {
    display: inline-block;
    width: 30px;
    height: 4px;
    background-color: #a73736;
    margin-top: 35px; }
.download_view .download {
  margin-top: 50px; }
.download_view .download li {
  margin-top: 30px;
  background: #f7f7f7; }
.download_view .download li:nth-of-type(1) {
  margin-top: 0; }
.download_view .download li a {
  width: 100%;
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between; }
.download_view .download li a .download_img {
  width: 31.04%;
  padding: 9.84% 0;
  position: relative; }
.download_view .download li a .download_img img {
  transition: 0.6s;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: content; }
.download_view .download li a .download_img:before {
  transition: 0.6s;
  z-index: 2;
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); }
.download_view .download li a .download_img:after {
  transition: 0.6s;
  z-index: 3;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -29px;
  margin-left: -32px;
  content: '';
  width: 64px;
  height: 58px;
  background: url("../images/download.png") center no-repeat; }
.download_view .download li a .download_word {
  width: 65.13%; }
.download_view .download li a .download_word h5 {
  font-size: 24px;
  font-weight: normal;
  color: #303030;
  line-height: 32px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; }
.download_view .download li a .download_word time {
  display: block;
  font-size: 16px;
  color: #5b5c5c;
  line-height: 32px;
  margin: 20px 0; }
.download_view .download li a .download_word span {
  display: inline-block;
  transition: 0.6s;
  width: 100px;
  height: 30px;
  line-height: 30px;
  font-size: 12px;
  color: #fff;
  text-align: center;
  border: 1px solid #da251d;
  background: #da251d; }
.download_view .download li:hover a .download_img:before,
.download_view .download li:hover a .download_img:after {
  opacity: 1; }
.download_view .download li:hover a .download_word span {
  color: #da251d;
  background: transparent; }

.Mnav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 90; }

.Mnav ul {
  width: 100%;
  background-color: #b5b5b5;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: space-between;
  justify-content: space-between; }

.Mnav ul li {
  width: 33.333%;
  padding: 15px 0;
  transition: 0.4s all; }

.Mnav ul li:hover {
  background-color: #da251d; }

.Mnav ul li a {
  display: block;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  flex-direction: unset; }

.Mnav ul li a icon {
  display: block;
  width: 40px;
  height: 40px; }

.Mnav ul li a span {
  font-size: 18px;
  color: #fff;
  margin-left: 20px; }

.Mnav ul li:nth-of-type(1) icon {
  background: url("../icon/Mnav_tel.png") no-repeat;
  background-size: contain; }

.Mnav ul li:nth-of-type(2) icon {
  background: url("../icon/Mnav_message.png") no-repeat;
  background-size: contain; }

.Mnav ul li:nth-of-type(3) icon {
  background: url("../icon/Mnav_wx.png") no-repeat;
  background-size: contain; }

.MgoTop {
  position: fixed;
  right: 20px;
  bottom: 90px;
  display: none;
  width: 60px;
  height: 60px;
  background: url("../icon/MgoTop.png") no-repeat;
  background-size: contain;
  z-index: 90;
  transition: 0.4s all; }

.MgoTop.active {
  opacity: 1;
  pointer-events: auto; }

.art {
  padding: 160px 0 240px;
  background: url(../img/art-bg01.jpg) no-repeat center; }
  .art .txt h3 {
    font-size: 40px;
    line-height: 70px;
    color: #ffffff;
    font-family: 思源宋体 CN;
    white-space: pre-wrap; }
  .art .txt h5 {
    font-size: 12px;
    line-height: 20px;
    color: #78797c;
    font-family: TimesNewRoman, Arial, Helvetica, sans-serif;
    white-space: pre-wrap;
    margin-top: 15px;
    text-transform: uppercase; }
  .art .txt a {
    font-size: 16px;
    line-height: 1;
    color: #ffffff;
    display: inline-block;
    padding: 20px 45px;
    background: url(../img/art-ico01.png) no-repeat right 30px center;
    background-color: #4a458e;
    margin-top: 110px; }
  .art .txt p {
    font-size: 16px;
    line-height: 30px;
    color: #ebebeb;
    white-space: pre-wrap;
    margin-top: 20px; }

.navbar2 {
  max-width: 1500px;
  margin: 0 auto;
  border: 1px solid #dfdfdf;
  background-color: #f1f1f1;
  margin-top: 65px;
  margin-bottom: 65px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between; }
  .navbar2 .tit {
    font-size: 18px;
    line-height: 20px;
    color: #3b3b3b;
    padding-left: 30px;
    margin-left: 45px;
    background: url(../img/all.png) no-repeat left center; }
  .navbar2 .tabs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end; }
    .navbar2 .tabs a {
      font-size: 16px;
      line-height: 1;
      color: #3b3b3b;
      padding: 24px 40px;
      transition-duration: .3s; }
      .navbar2 .tabs a:hover, .navbar2 .tabs a.on {
        background-color: #4a458e;
        color: #fff; }

.advantage {
  background: url(../img/adv-bg01.jpg) no-repeat center;
  background-size: cover;
  padding: 95px 0 120px; }
  .advantage .tit {
    text-align: center; }
    .advantage .tit h3 {
      font-size: 38px;
      line-height: 1;
      color: #fefcfc; }
    .advantage .tit h5 {
      font-size: 28px;
      line-height: 1;
      color: #fbf9f9;
      margin-top: 12px; }
  .advantage .list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    margin-top: 105px;
    background-color: #ffffff;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px; }
    .advantage .list li {
      width: 25%;
      padding: 70px 0 60px;
      display: flex;
      justify-content: center;
      flex-direction: column;
      align-items: center;
      position: relative; }
      .advantage .list li h3 {
        font-size: 16px;
        line-height: 1.4;
        color: #141313;
        margin-top: 30px; }
      .advantage .list li h5 {
        font-size: 14px;
        line-height: 1.4;
        color: #6e6d6d; }
      .advantage .list li::after {
        content: '';
        display: block;
        width: 2px;
        height: 175px;
        background-color: #dcdcdc;
        position: absolute;
        top: 80px;
        right: 0; }
      .advantage .list li:last-child::after {
        display: none; }

.page-tabs {
  border-top: 3px solid #da251d;
  background-color: #f6f6f6; }
  .page-tabs .wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between; }
  .page-tabs .tabs {
    width: 100%;
    white-space: nowrap;
    text-align: center;
    letter-spacing: -5px; }
    .page-tabs .tabs a {
      font-size: 16px;
      line-height: 1;
      color: #333333;
      transition-duration: .3s;
      padding: 20px 6%;
      text-align: center;
      display: inline-block;
      letter-spacing: normal; }
      .page-tabs .tabs a:hover, .page-tabs .tabs a.on {
        background-color: #da251d;
        color: #fff; }
      .page-tabs .tabs a:last-child {
        margin-right: 0; }
  .page-tabs ul {
    padding-left: 25px;
    background: url(../img/cur-ico001.png) no-repeat left center;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start; }
    .page-tabs ul li {
      font-size: 14px;
      line-height: 20px;
      color: #666;
      padding-right: 25px;
      background: url(../img/cur-ico002.png) no-repeat right 10px center; }
      .page-tabs ul li:last-child {
        padding-right: 0;
        background: initial; }
      .page-tabs ul li a:hover {
        color: #da251d; }

.pro-tab-box {
  margin-top: 44px;
  margin-bottom: -30px; }

.pro-tab {
  overflow: hidden;
  margin-bottom: 30px; }

.pro-tab dt {
  float: left;
  line-height: 45px;
  text-align: center;
  font-size: 20px;
  color: #3a3a3a;
  font-weight: bold; }

.pro-tab dd {
  overflow: hidden; }

.pro-tab dd a {
  color: #181818;
  font-size: 18px;
  float: left;
  line-height: 1;
  margin: left 10px;
  display: inline-block;
  padding: 12px 35px;
  border-radius: 45px;
  margin-left: 10px;
  transition-duration: .3s; }
  .pro-tab dd a.active {
    background-color: #da251d;
    color: #fff; }
  .pro-tab dd a:hover {
    background-color: #da251d;
    color: #fff; }
  .pro-tab dd a:first-child {
    margin-left: 40px; }

.pro-list2 {
  padding-bottom: 20px;
  margin: 0 -55px;
  overflow: hidden; }

.pro-list2 li {
  float: left;
  width: 33.33%; }

.pro-list2 li .item {
  display: block;
  margin: 0 55px 90px; }

.pro-list2 li .item:hover p {
  color: #a73736; }

.pro-list2 li .item:hover img {
  -ms-transform: scale(1.08);
  -moz-transform: scale(1.08);
  -webkit-transform: scale(1.08);
  -o-transform: scale(1.08);
  transform: scale(1.08); }

.pro-list2 li .item:hover .img .full {
  opacity: 1; }

.pro-list2 li .item:hover .img .helf {
  opacity: 0; }

.pro-list2 li .item .img {
  position: relative;
  overflow: hidden;
  padding-top: 59.17%;
  background-color: #fff;
  margin-bottom: 20px; }

.pro-list2 li .item .img img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%; }

.pro-list2 li .item .img .full {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0; }

.pro-list2 li .item .img .helf {
  display: block;
  width: 100%;
  height: auto; }

.pro-list2 li .item p {
  font-size: 24px;
  color: #2c2c2b;
  line-height: 34px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  -ms-transition: .3s;
  -moz-transition: .3s;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s; }

.pro-list2 li .item span {
  display: block;
  font-size: 14px;
  color: #8a8a89;
  line-height: 24px; }

.factory_index {
  padding: 110px 0 100px; }
  .factory_index .wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between; }
  .factory_index .pic {
    width: 43%;
    height: 590px;
    position: relative;
    overflow: hidden; }
    .factory_index .pic img {
      width: 100%;
      height: 100%;
      display: block;
      position: absolute;
      left: 0;
      top: 0;
      object-fit: cover;
      transition-duration: .3s; }
    .factory_index .pic:hover img {
      transform: scale(1.1); }
  .factory_index .item {
    width: 55.5%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: -30px; }
    .factory_index .item li {
      width: 49%;
      height: 280px;
      margin-bottom: 30px;
      position: relative;
      overflow: hidden; }
      .factory_index .item li img {
        width: 100%;
        height: 100%;
        display: block;
        position: absolute;
        left: 0;
        top: 0;
        object-fit: cover;
        transition-duration: .3s; }
      .factory_index .item li:hover img {
        transform: scale(1.1); }
      .factory_index .item li:nth-child(4) {
        background-color: #da251d;
        padding-left: 45px; }
        .factory_index .item li:nth-child(4) h3 {
          font-size: 24px;
          line-height: 1.2;
          color: #ffffff;
          margin-top: 110px; }
        .factory_index .item li:nth-child(4) h5 {
          font-size: 36px;
          line-height: 1.5;
          color: #ffffff;
          font-weight: bold;
          margin-top: 5px; }

.pages-tabs {
  padding: 30px 0; }
  .pages-tabs .wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center; }
    .pages-tabs .wrap a {
      width: 210px;
      height: 50px;
      font-size: 18px;
      line-height: 1;
      color: #747474;
      display: flex;
      justify-content: center;
      flex-direction: column;
      align-items: center;
      border: 1px solid #434343;
      transition-duration: .3s;
      margin: 0 10px; }
      .pages-tabs .wrap a:hover, .pages-tabs .wrap a.on {
        background-color: #1d1e20;
        border-color: #1d1e20;
        color: #fff; }

.science_view .slogen {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between; }
  .science_view .slogen li {
    width: 20%;
    height: 630px;
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    transition-duration: .3s; }
    .science_view .slogen li .bg {
      width: 100%;
      height: 100%;
      display: block;
      position: absolute;
      left: 0;
      top: 0;
      object-fit: cover;
      transition-duration: .3s; }
    .science_view .slogen li.on {
      width: 40%;
      padding: 0 5%;
      justify-content: flex-start; }
      .science_view .slogen li.on h3 {
        width: 100%;
        height: auto;
        border: none;
        display: block;
        margin-top: 105px; }
      .science_view .slogen li.on p {
        display: block; }
    .science_view .slogen li h3 {
      width: 170px;
      height: 50px;
      border: 1px solid #fff;
      display: flex;
      justify-content: center;
      flex-direction: column;
      align-items: center;
      font-size: 24px;
      line-height: 1;
      color: #ffffff;
      position: relative;
      z-index: 1; }
    .science_view .slogen li p {
      display: none;
      font-size: 20px;
      line-height: 30px;
      color: #ffffff;
      transition-duration: .3s;
      margin-top: 100px;
      position: relative;
      z-index: 1; }
.science_view .target {
  padding-top: 70px;
  padding-bottom: 210px; }
  .science_view .target .tit h3 {
    font-size: 36px;
    line-height: 1.5;
    color: #1d1e20; }
  .science_view .target .tit h5 {
    font-size: 24px;
    line-height: 1.5;
    color: #8f8f8f;
    margin-top: 5px; }
  .science_view .target .list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-left: -40px;
    margin-right: -40px;
    align-items: stretch;
    margin-top: 60px; }
    .science_view .target .list li {
      width: 19%;
      background-color: #da251d;
      padding: 0 1%;
      border-top-left-radius: 60px;
      border-bottom-right-radius: 60px; }
      .science_view .target .list li:nth-child(2n) {
        position: relative;
        top: 115px; }
      .science_view .target .list li h3 {
        font-size: 145px;
        line-height: 1;
        color: #ffffff;
        font-weight: bold;
        text-align: center;
        margin-top: 45px; }
      .science_view .target .list li p {
        font-size: 18px;
        line-height: 30px;
        color: #ffffff;
        margin-top: 50px;
        margin-bottom: 30px; }
.science_view .process {
  background: url(../img/process-bg001.jpg) no-repeat center;
  background-size: cover;
  padding-top: 120px; }
  .science_view .process .tit {
    text-align: center; }
    .science_view .process .tit h3 {
      font-size: 45px;
      line-height: 1;
      color: #ffffff;
      font-weight: bold; }
    .science_view .process .tit h5 {
      font-size: 30px;
      line-height: 1;
      color: #ffffff;
      margin-top: 12px; }
  .science_view .process .con {
    text-align: center;
    padding: 95px 0 180px; }

.slogen .pic {
  padding: 0 11%;
  padding-top: 120px;
  padding-bottom: 170px;
  text-align: center;
  background-image: linear-gradient(to bottom, #ededed 40%, #ffffff 65%); }

.login_view {
  padding: 100px 0; }
  .login_view form {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between; }
    .login_view form input {
      width: 40%;
      height: 70px;
      font-size: 20px;
      line-height: 1;
      color: #666;
      padding: 0 28px;
      border: 1px solid #1b1b1b;
      border-radius: 10px; }
    .login_view form button {
      width: 16.5%;
      height: 70px;
      font-size: 20px;
      line-height: 1;
      color: #fff;
      text-align: center;
      border: 1px solid #1b1b1b;
      border-radius: 10px;
      background-color: #1b1b1b;
      transition-duration: .3s;
      cursor: pointer; }
      .login_view form button:hover {
        background-color: #666; }

.com-more1 {
  display: inline-block;
  width: 180px;
  height: 55px;
  border-radius: 55px;
  font-size: 16px;
  line-height: 1;
  color: #fff;
  background-color: #da251d;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  transition-duration: .3s; }
  .com-more1 span {
    margin-right: 7px; }
  .com-more1:hover {
    background-color: #333;
    color: #fff; }

.com-more2 {
  display: block;
  width: 200px;
  height: 50px;
  border-radius: 3px;
  font-size: 16px;
  line-height: 50px;
  color: #fffefe;
  padding: 0 25px;
  background: url(../img/more-ico01.png) no-repeat right 32px center;
  background-color: #da251d;
  margin: 0 auto;
  transition-duration: .3s; }
  .com-more2:hover {
    transform: translateY(-3px);
    box-shadow: 3px 3px 5px #dddddd;
    color: #fffefe; }

.keji {
  padding: 160px 0 75px;
  background: url(../img/keji-bg01.jpg) no-repeat center;
  background-size: cover; }
  .keji .keji-swiper {
    margin-top: 90px;
    padding-bottom: 65px; }
    .keji .keji-swiper .swiper-pagination {
      display: none; }
    .keji .keji-swiper .swiper-slide {
      width: 520px;
      padding-left: 25px; }
      .keji .keji-swiper .swiper-slide::after {
        content: '';
        display: block;
        width: 1px;
        height: 98%;
        position: absolute;
        left: 4px;
        bottom: 0;
        background-color: #d7d7d7; }
      .keji .keji-swiper .swiper-slide h3 {
        font-size: 48px;
        line-height: 1;
        color: #333333;
        font-family: DINNextLTProLight;
        position: relative; }
        .keji .keji-swiper .swiper-slide h3::after {
          content: '';
          display: block;
          width: 8px;
          height: 8px;
          background-color: #333333;
          border-radius: 50%;
          position: absolute;
          top: 7px;
          left: -24px;
          z-index: 1; }
      .keji .keji-swiper .swiper-slide h5 {
        font-size: 20px;
        line-height: 1;
        color: #333333;
        margin-top: 30px; }
      .keji .keji-swiper .swiper-slide i {
        display: block;
        width: 36px;
        height: 2px;
        background-color: #da251d;
        margin-top: 30px; }
      .keji .keji-swiper .swiper-slide .pic {
        display: block;
        width: 100%;
        position: relative;
        padding-bottom: 50%;
        overflow: hidden;
        margin-top: 35px; }
        .keji .keji-swiper .swiper-slide .pic img {
          width: 100%;
          height: 100%;
          display: block;
          position: absolute;
          left: 0;
          top: 0;
          object-fit: cover;
          transition-duration: .3s; }
        .keji .keji-swiper .swiper-slide .pic:hover img {
          transform: scale(1.1); }
      .keji .keji-swiper .swiper-slide p {
        font-size: 14px;
        line-height: 30px;
        color: #333333;
        height: 60px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        margin-top: 35px; }

.slogan {
  padding: 110px 0;
  background: url(../img/slogan-bg02.jpg) no-repeat center;
  background-size: cover; }
  .slogan .wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between; }
  .slogan .left {
    width: 47%;
    margin-bottom: -45px; }
    .slogan .left a {
      display: block;
      margin-bottom: 45px; }
    .slogan .left .pic {
      height: 345px;
      position: relative;
      overflow: hidden;
      border-radius: 20px; }
      .slogan .left .pic .bg {
        width: 100%;
        height: 100%;
        display: block;
        position: absolute;
        left: 0;
        top: 0;
        object-fit: cover;
        transition-duration: .3s; }
      .slogan .left .pic .txt {
        position: absolute;
        top: 80px;
        left: 60px; }
        .slogan .left .pic .txt h3 {
          font-size: 34px;
          line-height: 1.5;
          color: #ffffff;
          font-weight: bold; }
        .slogan .left .pic .txt h5 {
          font-size: 20px;
          line-height: 1.5;
          color: #ffffff;
          margin-top: 15px; }
        .slogan .left .pic .txt span {
          margin-top: 40px;
          display: block;
          width: 215px;
          height: 65px;
          border: 4px solid #fff;
          border-radius: 65px;
          display: flex;
          justify-content: center;
          flex-direction: column;
          align-items: center;
          font-size: 18px;
          line-height: 1;
          color: #fff;
          font-family: Arial, Helvetica, sans-serif;
          text-transform: uppercase;
          transition-duration: .3s; }
          .slogan .left .pic .txt span:hover {
            background-color: #fff;
            color: #da251d; }
  .slogan .right {
    width: 50%; }
    .slogan .right .pic {
      height: 735px;
      position: relative;
      overflow: hidden;
      border-radius: 20px; }
      .slogan .right .pic .bg {
        width: 100%;
        height: 100%;
        display: block;
        position: absolute;
        left: 0;
        top: 0;
        object-fit: cover;
        transition-duration: .3s; }
      .slogan .right .pic .txt {
        position: absolute;
        top: 36%;
        left: 60px; }
        .slogan .right .pic .txt h3 {
          font-size: 34px;
          line-height: 1.5;
          color: #ffffff;
          font-weight: bold; }
        .slogan .right .pic .txt h5 {
          font-size: 20px;
          line-height: 1.5;
          color: #ffffff;
          margin-top: 15px; }
        .slogan .right .pic .txt span {
          margin-top: 40px;
          display: block;
          width: 215px;
          height: 65px;
          border: 4px solid #fff;
          border-radius: 65px;
          display: flex;
          justify-content: center;
          flex-direction: column;
          align-items: center;
          font-size: 18px;
          line-height: 1;
          color: #fff;
          font-family: Arial, Helvetica, sans-serif;
          text-transform: uppercase;
          transition-duration: .3s; }
          .slogan .right .pic .txt span:hover {
            background-color: #fff;
            color: #da251d; }

.lead_view {
  padding: 120px 0 90px; }
  .lead_view .list {
    margin-top: 70px;
    margin-bottom: -65px; }
    .lead_view .list li {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 65px; }
      .lead_view .list li:nth-child(2n) .txt {
        order: 1;
        padding: 0 15% 0 7%; }
      .lead_view .list li .txt {
        width: 50%;
        padding: 0 7% 0 15%; }
        .lead_view .list li .txt h3 {
          font-size: 56px;
          line-height: 1;
          color: #333333;
          font-family: HarmonyOS_Sans_SC_Thin;
          font-weight: 100; }
        .lead_view .list li .txt h5 {
          font-size: 32px;
          line-height: 1.4;
          color: #333333;
          margin-top: 22px; }
        .lead_view .list li .txt p {
          font-size: 14px;
          line-height: 30px;
          color: #595757;
          white-space: pre-wrap;
          margin-top: 40px;
          margin-bottom: 45px; }
      .lead_view .list li .pic {
        width: 50%;
        height: 550px;
        position: relative;
        overflow: hidden; }
        .lead_view .list li .pic img {
          width: 100%;
          height: 100%;
          display: block;
          position: absolute;
          left: 0;
          top: 0;
          object-fit: cover;
          transition-duration: .3s;
          transition-duration: 0.3s;
          filter: grayscale(100%);
          filter: gray; }
        .lead_view .list li .pic:hover img {
          filter: initial; }

.buy_view .tit {
  text-align: center; }
  .buy_view .tit h3 {
    font-size: 44px;
    line-height: 1;
    color: #333333; }
  .buy_view .tit h5 {
    font-size: 16px;
    line-height: 1;
    color: #999999;
    margin-top: 15px;
    font-family: Arial, Helvetica, sans-serif;
    text-transform: uppercase; }
  .buy_view .tit p {
    font-size: 16px;
    line-height: 1.5;
    color: #666666;
    margin-top: 30px; }
.buy_view .store {
  padding: 95px 0 130px;
  background-color: #f4f5f6; }
  .buy_view .store .choice {
    margin-top: 40px; }
    .buy_view .store .choice .top {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between; }
      .buy_view .store .choice .top .store_location {
        width: 63%;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between; }
        .buy_view .store .choice .top .store_location select {
          width: 32%;
          border: 1px solid #ebebeb;
          padding: 0 20px;
          font-size: 16px;
          line-height: 1;
          color: #666666;
          background: url(../img/store-ico001.png) no-repeat right 22px center;
          background-color: #fff;
          height: 55px; }
      .buy_view .store .choice .top .store_search {
        width: 36%;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between; }
        .buy_view .store .choice .top .store_search input {
          width: 82%;
          height: 55px;
          background-color: #fff;
          font-size: 16px;
          line-height: 1;
          color: #333;
          padding: 0 20px; }
        .buy_view .store .choice .top .store_search button {
          width: 18%;
          height: 55px;
          font-size: 16px;
          line-height: 55px;
          color: #ffffff;
          text-align: center;
          background-color: #da251d; }
  .buy_view .store .bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    align-items: stretch;
    margin-top: 18px; }
    .buy_view .store .bottom .left {
      width: 63%;
      background-color: #fff; }
      .buy_view .store .bottom .left #joan_map {
        width: 100%;
        height: 100%; }
    .buy_view .store .bottom .right {
      width: 37%;
      padding-left: 55px;
      padding-right: 20px;
      padding-top: 20px;
      padding-bottom: 20px;
      background-color: #fff; }
      .buy_view .store .bottom .right .switch_address {
        height: 480px;
        overflow-y: auto; }
        .buy_view .store .bottom .right .switch_address li {
          padding: 25px 0;
          border-bottom: 1px solid #dadada;
          transition-duration: .3s; }
          .buy_view .store .bottom .right .switch_address li h4 {
            font-size: 22px;
            line-height: 1.2;
            color: #333333;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            transition-duration: 0.3s; }
          .buy_view .store .bottom .right .switch_address li h5 {
            font-size: 16px;
            line-height: 30px;
            color: #666666;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            margin-top: 20px;
            padding-left: 30px;
            background: url(../img/store-ico002.png) no-repeat left center; }
          .buy_view .store .bottom .right .switch_address li a {
            display: block;
            font-size: 16px;
            line-height: 30px;
            color: #333333;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            margin-top: 15px;
            padding-left: 30px;
            background: url(../img/store-ico003.png) no-repeat left center;
            margin-top: 10px; }
          .buy_view .store .bottom .right .switch_address li:hover {
            border-color: #da251d; }
            .buy_view .store .bottom .right .switch_address li:hover h4 {
              color: #da251d; }
.buy_view .check {
  background: url(../img/check-bg001.jpg) no-repeat center;
  background-size: cover;
  padding: 88px 0; }
  .buy_view .check .tit {
    text-align: left; }
  .buy_view .check .item {
    width: 620px;
    background-color: #fff;
    padding: 105px 98px  85px; }
    .buy_view .check .item p {
      font-size: 14px;
      line-height: 25px;
      color: #333333;
      margin-top: 55px; }
    .buy_view .check .item h6 {
      font-size: 14px;
      line-height: 25px;
      color: #333333;
      margin-top: 10px; }
    .buy_view .check .item form {
      position: relative;
      max-width: 360px;
      margin-top: 40px; }
      .buy_view .check .item form input {
        width: 100%;
        height: 36px;
        border: 1px solid #222222;
        padding: 0 15px;
        font-size: 14px;
        line-height: 1;
        color: #333333; }
      .buy_view .check .item form button {
        width: 45px;
        height: 36px;
        position: absolute;
        top: 0;
        right: 0;
        cursor: pointer;
        background: url(../img/check-ico001.png) no-repeat center;
        transition-duration: .3s; }
        .buy_view .check .item form button:hover {
          opacity: .8; }
.buy_view .process {
  padding: 170px 0;
  background-color: #f4f5f6; }
  .buy_view .process .con {
    margin-top: 65px; }
  .buy_view .process .list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-top: 105px; }
    .buy_view .process .list li {
      position: relative;
      text-align: center; }
      .buy_view .process .list li img {
        width: 110px;
        height: 110px; }
      .buy_view .process .list li h4 {
        font-size: 18px;
        line-height: 1;
        color: #333333;
        margin-top: 20px; }
      .buy_view .process .list li h6 {
        font-size: 18px;
        line-height: 1;
        color: #333333;
        margin-top: 20px; }
      .buy_view .process .list li::after {
        content: '';
        display: block;
        width: 30px;
        height: 20px;
        background: url(../img/process-bg002.png) no-repeat center;
        position: absolute;
        right: -67%;
        top: 45px; }
      .buy_view .process .list li:last-child::after {
        display: none; }

/*
页码
*/
.m-pages {
  text-align: center;
  font-size: 14px;
  padding-top: 100px;
  padding-bottom: 100px;
  /* background-color: #192028; */ }

.m-pages ul {
  display: inline-block;
  vertical-align: middle;
  overflow: hidden;
  margin-right: 25px; }

.m-pages li {
  float: left;
  margin: 0 3px; }

.m-pages li a {
  display: block;
  width: 65px;
  text-align: center;
  color: #333;
  height: 50px;
  line-height: 49px;
  transition: .4s all;
  font-size: 18px;
  background-color: #f9f9f9; }

.m-pages select {
  width: 65px;
  height: 50px;
  line-height: 49px;
  color: #333;
  padding-left: 10px;
  background: url(../img/qwy-i4.png) center right 10px no-repeat;
  /* background-size: auto;
  background-size: 8px; */
  font-size: 18px;
  background-color: #fff;
  border: 2px solid #e7e7e7;
  vertical-align: bottom; }

.m-pages select option {
  width: 100%;
  height: 55px;
  font-size: 14px; }

.m-pages li.active a,
.m-pages li a:hover {
  background-color: #da251d;
  color: #fff;
  border-color: #da251d; }

.m-pages li {
  font-family: Arial, Helvetica, sans-serif; }

.color_view .int {
  padding-top: 140px; }
  .color_view .int .con {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    align-items: flex-start; }
    .color_view .int .con .txt {
      width: 30%; }
      .color_view .int .con .txt h3 {
        font-size: 110px;
        line-height: 1;
        color: #f27416;
        font-weight: bold;
        font-family: DINNextLTProM;
        display: inline-block;
        padding-right: 200px;
        background: url(../img/color-ico001.png) no-repeat right center;
        margin-top: 70px; }
      .color_view .int .con .txt h5 {
        font-size: 24px;
        line-height: 35px;
        color: #333333;
        white-space: pre-wrap;
        margin-top: 30px; }
      .color_view .int .con .txt p {
        font-size: 16px;
        line-height: 30px;
        color: #333333;
        margin-top: 35px; }
    .color_view .int .con .pic {
      width: 59.6%; }
    .color_view .int .con ul {
      width: 100%;
      margin-top: 60px;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between; }
      .color_view .int .con ul li {
        width: 23.33%;
        height: 250px;
        position: relative; }
        .color_view .int .con ul li img {
          width: 100%;
          height: 100%;
          display: block;
          position: absolute;
          left: 0;
          top: 0;
          object-fit: cover;
          transition-duration: .3s; }
  .color_view .int .ban {
    margin-top: 80px;
    width: 100%;
    padding-bottom: 43.3%;
    position: relative; }
    .color_view .int .ban .pic {
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      background-position: top 200px center;
      background-size: 1920px 830px;
      background-repeat: no-repeat;
      background-attachment: fixed; }
.color_view .pro {
  background-color: #f5f5f5;
  padding-top: 110px; }
  .color_view .pro .tit {
    font-size: 36px;
    line-height: 1.2;
    color: #333333;
    text-align: center; }
  .color_view .pro .tabs {
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center; }
    .color_view .pro .tabs a {
      font-size: 18px;
      line-height: 1;
      color: #333333;
      padding: 15px 45px;
      background-color: #fff;
      border-radius: 50px;
      margin: 0 22px;
      transition-duration: .3s; }
      .color_view .pro .tabs a:hover, .color_view .pro .tabs a.on {
        background-color: #da251d;
        color: #fff; }
  .color_view .pro .pro-swiper {
    margin-top: 50px; }
    .color_view .pro .pro-swiper .swiper-button-prev {
      width: 55px;
      height: 55px;
      cursor: pointer;
      background: url(../img/color-pro004.png) no-repeat center;
      background-color: #f5f5f5;
      border-radius: 50%;
      left: 65px;
      top: 500px;
      z-index: 1; }
      .color_view .pro .pro-swiper .swiper-button-prev:hover {
        background-image: url(../img/color-pro005.png);
        background-color: #da251d; }
      .color_view .pro .pro-swiper .swiper-button-prev::after {
        display: none; }
    .color_view .pro .pro-swiper .swiper-button-next {
      width: 55px;
      height: 55px;
      cursor: pointer;
      background: url(../img/color-pro004.png) no-repeat center;
      background-color: #f5f5f5;
      border-radius: 50%;
      left: 130px;
      top: 500px;
      transform: rotate(180deg);
      z-index: 1; }
      .color_view .pro .pro-swiper .swiper-button-next:hover {
        background-image: url(../img/color-pro005.png);
        background-color: #da251d; }
      .color_view .pro .pro-swiper .swiper-button-next::after {
        display: none; }
    .color_view .pro .pro-swiper .con {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between; }
      .color_view .pro .pro-swiper .con .txt {
        width: 29%;
        padding-top: 130px;
        padding-left: 65px;
        height: 650px;
        background-color: #fff; }
        .color_view .pro .pro-swiper .con .txt h3 {
          font-size: 48px;
          line-height: 60px;
          color: #333;
          font-family: Current_Regular;
          text-transform: uppercase; }
        .color_view .pro .pro-swiper .con .txt h5 {
          margin-top: 40px;
          font-size: 30px;
          line-height: 1.2;
          color: #333333;
          text-decoration: underline; }
        .color_view .pro .pro-swiper .con .txt p {
          font-size: 16px;
          line-height: 30px;
          color: #333333;
          margin-top: 40px;
          white-space: pre-wrap; }
      .color_view .pro .pro-swiper .con .pic {
        width: 71%;
        height: 650px;
        position: relative; }
        .color_view .pro .pro-swiper .con .pic img {
          width: 100%;
          height: 100%;
          display: block;
          position: absolute;
          left: 0;
          top: 0;
          object-fit: cover;
          transition-duration: .3s; }
    .color_view .pro .pro-swiper .item-swiper {
      margin-top: 60px;
      padding-bottom: 170px; }
      .color_view .pro .pro-swiper .item-swiper .box_btn {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        position: absolute;
        bottom: 90px;
        width: 100%; }
        .color_view .pro .pro-swiper .item-swiper .box_btn .swiper-pagination {
          position: relative;
          top: -2px; }
          .color_view .pro .pro-swiper .item-swiper .box_btn .swiper-pagination .swiper-pagination-bullet {
            margin: 0 5px; }
          .color_view .pro .pro-swiper .item-swiper .box_btn .swiper-pagination .swiper-pagination-bullet-active {
            background-color: #da251d; }
        .color_view .pro .pro-swiper .item-swiper .box_btn .button-prev {
          width: 35px;
          height: 25px;
          cursor: pointer;
          background: url(../img/color-pro003.png) no-repeat center;
          margin-right: 20px;
          z-index: 1; }
          .color_view .pro .pro-swiper .item-swiper .box_btn .button-prev:hover {
            opacity: 0.8; }
        .color_view .pro .pro-swiper .item-swiper .box_btn .button-next {
          width: 35px;
          height: 25px;
          cursor: pointer;
          background: url(../img/color-pro003.png) no-repeat center;
          margin-left: 20px;
          z-index: 1;
          transform: rotate(180deg); }
          .color_view .pro .pro-swiper .item-swiper .box_btn .button-next:hover {
            opacity: 0.8; }
      .color_view .pro .pro-swiper .item-swiper .swiper-slide {
        width: 460px; }
        .color_view .pro .pro-swiper .item-swiper .swiper-slide .pic2 {
          display: block;
          width: 100%;
          position: relative;
          padding-bottom: 51%;
          overflow: hidden; }
          .color_view .pro .pro-swiper .item-swiper .swiper-slide .pic2 img {
            width: 100%;
            height: 100%;
            display: block;
            position: absolute;
            left: 0;
            top: 0;
            object-fit: cover;
            transition-duration: .3s; }
          .color_view .pro .pro-swiper .item-swiper .swiper-slide .pic2:hover img {
            transform: scale(1.1); }
        .color_view .pro .pro-swiper .item-swiper .swiper-slide .txt2 {
          padding: 40px 35px 50px;
          background-color: #fff;
          position: relative; }
          .color_view .pro .pro-swiper .item-swiper .swiper-slide .txt2 h3 {
            font-size: 24px;
            line-height: 1;
            color: #333333;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            margin-bottom: 10px; }
          .color_view .pro .pro-swiper .item-swiper .swiper-slide .txt2 h5 {
            font-size: 14px;
            line-height: 1;
            color: #999999; }
          .color_view .pro .pro-swiper .item-swiper .swiper-slide .txt2 i {
            display: inline-block;
            width: 10px;
            height: 2px;
            background-color: #666;
            margin-top: 30px; }
          .color_view .pro .pro-swiper .item-swiper .swiper-slide .txt2 span {
            display: inline-block;
            font-size: 16px;
            line-height: 1;
            color: #333333;
            padding: 12px 30px;
            border: 1px solid #666666;
            border-radius: 40px;
            position: absolute;
            right: 35px;
            top: 48px; }
          .color_view .pro .pro-swiper .item-swiper .swiper-slide .txt2 hr {
            height: 1px;
            background-color: #d7d7d7;
            margin-top: 5px;
            border: none; }
.color_view .line {
  padding: 120px 0; }
  .color_view .line .wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    align-items: flex-start; }
  .color_view .line .left {
    width: 41%; }
    .color_view .line .left .tit h3 {
      font-size: 36px;
      line-height: 1.2;
      color: #333333;
      margin-top: 24px; }
    .color_view .line .left .tit h5 {
      font-size: 16px;
      line-height: 1.2;
      color: #333333;
      margin-top: 10px; }
    .color_view .line .left .tabs {
      margin-top: 70px;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: flex-start;
      margin-bottom: -5px; }
      .color_view .line .left .tabs a {
        width: 19.3%;
        margin-right: 0.8%;
        margin-bottom: 5px;
        height: 120px;
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        background-color: #f5f5f5;
        transition-duration: .3; }
        .color_view .line .left .tabs a:nth-child(5n) {
          margin-right: 0; }
        .color_view .line .left .tabs a .img_box {
          width: 60px;
          height: 60px;
          position: relative; }
          .color_view .line .left .tabs a .img_box img {
            width: 100%;
            height: 100%;
            display: block;
            position: absolute;
            left: 0;
            top: 0;
            object-fit: scale-down;
            transition-duration: .3s; }
        .color_view .line .left .tabs a h4 {
          font-size: 16px;
          line-height: 1;
          color: #333333;
          margin-top: 10px;
          overflow: hidden;
          text-overflow: ellipsis;
          white-space: nowrap; }
        .color_view .line .left .tabs a:hover, .color_view .line .left .tabs a.on {
          background-color: #da251d; }
          .color_view .line .left .tabs a:hover .img_box .ico2, .color_view .line .left .tabs a.on .img_box .ico2 {
            opacity: 0; }
          .color_view .line .left .tabs a:hover h4, .color_view .line .left .tabs a.on h4 {
            color: #fff; }
  .color_view .line .right {
    width: 50.5%; }
    .color_view .line .right .line-swiper .swiper-pagination {
      display: none; }
    .color_view .line .right .line-swiper .pic {
      height: 600px;
      width: 100%;
      position: relative; }
      .color_view .line .right .line-swiper .pic img {
        width: 100%;
        height: 100%;
        display: block;
        position: absolute;
        left: 0;
        top: 0;
        object-fit: cover;
        transition-duration: .3s; }
.color_view .inf {
  background-color: #f5f5f5;
  padding: 190px 0 255px;
  background: url(../img/color-inf001.jpg) no-repeat center;
  background-size: cover; }
  .color_view .inf .txt h3 {
    font-size: 24px;
    line-height: 1;
    color: #333333;
    white-space: pre-wrap; }
    .color_view .inf .txt h3 span {
      font-size: 66px;
      line-height: 80px;
      color: #f27416;
      font-family: DINNextLTProM; }
  .color_view .inf .txt p {
    font-size: 24px;
    line-height: 35px;
    color: #333333;
    white-space: pre-wrap; }

.navbar3 {
  background-color: #fff; }
  .navbar3 .wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between; }
  .navbar3 .add {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    font-size: 16px;
    line-height: 1;
    color: #a9a9a9; }
    .navbar3 .add li:nth-of-type(n+3) {
      padding-left: 22px;
      position: relative;
      margin-left: 0; }
      .navbar3 .add li:nth-of-type(n+3)::before {
        content: '';
        opacity: 1;
        display: block;
        position: absolute;
        top: 52%;
        left: 8px;
        transform: translateY(-50%);
        width: 8px;
        height: 7px;
        background: url("../img/jt.png") no-repeat;
        background-size: auto;
        background-size: contain; }
  .navbar3 .tabs {
    padding: 25px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start; }
    .navbar3 .tabs a {
      font-size: 16px;
      line-height: 1;
      color: #3c3c3c;
      padding: 17px 45px;
      margin-left: 8px;
      transition-duration: .3s; }
      .navbar3 .tabs a:hover, .navbar3 .tabs a.on {
        background-color: #da251d;
        color: #fff; }

.advantages_view {
  overflow: hidden;
  padding: 120px 0 90px; }
  .advantages_view .tit {
    text-align: center; }
    .advantages_view .tit h3 {
      font-size: 40px;
      line-height: 1;
      color: #333333;
      font-weight: bold; }
    .advantages_view .tit p {
      font-size: 16px;
      line-height: 30px;
      color: #666666;
      white-space: pre-wrap;
      margin-top: 30px; }
  .advantages_view .tabs-box {
    position: relative; }
    .advantages_view .tabs-box::after {
      content: '';
      display: block;
      left: 0;
      right: 0;
      height: 1px;
      background-color: #d7d7d7;
      position: absolute;
      bottom: 0; }
    .advantages_view .tabs-box::before {
      content: '';
      display: block;
      left: 0;
      right: 0;
      height: 1px;
      background-color: #d7d7d7;
      position: absolute;
      top: 0; }
  .advantages_view .tabs-swiper {
    margin-top: 70px;
    border-left: 1px solid #d7d7d7; }
    .advantages_view .tabs-swiper .swiper-slide {
      width: 240px;
      height: 140px;
      display: flex;
      justify-content: center;
      flex-direction: column;
      align-items: center;
      border-right: 1px solid #d7d7d7;
      cursor: pointer; }
      .advantages_view .tabs-swiper .swiper-slide .pic {
        width: 45px;
        height: 45px;
        position: relative; }
        .advantages_view .tabs-swiper .swiper-slide .pic img {
          width: 100%;
          height: 100%;
          display: block;
          position: absolute;
          left: 0;
          top: 0;
          object-fit: scale-down;
          transition-duration: .3s; }
        .advantages_view .tabs-swiper .swiper-slide .pic .ico2 {
          opacity: 0;
          visibility: hidden; }
      .advantages_view .tabs-swiper .swiper-slide h3 {
        font-size: 16px;
        line-height: 1;
        color: #333333;
        margin-top: 15px; }
      .advantages_view .tabs-swiper .swiper-slide:hover, .advantages_view .tabs-swiper .swiper-slide-active {
        background-color: #da251d; }
        .advantages_view .tabs-swiper .swiper-slide:hover .pic .ico2, .advantages_view .tabs-swiper .swiper-slide-active .pic .ico2 {
          opacity: 1;
          visibility: visible; }
        .advantages_view .tabs-swiper .swiper-slide:hover h3, .advantages_view .tabs-swiper .swiper-slide-active h3 {
          color: #fff; }
  .advantages_view .adv-swiper {
    margin-top: 60px; }
    .advantages_view .adv-swiper .swiper-slide {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      align-items: stretch; }
      .advantages_view .adv-swiper .swiper-slide .txt {
        width: 52%;
        border: 1px solid #d7d7d7;
        padding: 130px 3% 0 6%;
        position: relative; }
        .advantages_view .adv-swiper .swiper-slide .txt h3 {
          display: inline-block;
          font-size: 22px;
          line-height: 1;
          color: #ffffff;
          padding: 12px 30px;
          background-color: #da251d;
          border-top-right-radius: 20px;
          position: absolute;
          left: 0;
          top: 45px; }
        .advantages_view .adv-swiper .swiper-slide .txt h4 {
          font-size: 30px;
          line-height: 1.2;
          color: #333333; }
        .advantages_view .adv-swiper .swiper-slide .txt h5 {
          font-size: 40px;
          line-height: 1.2;
          color: #333333;
          margin-top: 5px; }
        .advantages_view .adv-swiper .swiper-slide .txt i {
          width: 100px;
          height: 2px;
          background-color: #da251d;
          display: block;
          margin-top: 35px; }
        .advantages_view .adv-swiper .swiper-slide .txt p {
          margin-top: 30px;
          font-size: 16px;
          line-height: 30px;
          color: #666666;
          white-space: pre-wrap;
          margin-right: 50px;
          height: 180px;
          overflow: hidden;
          text-overflow: ellipsis;
          display: -webkit-box;
          -webkit-line-clamp: 6;
          -webkit-box-orient: vertical; }
        .advantages_view .adv-swiper .swiper-slide .txt span {
          font-size: 100px;
          line-height: 1;
          color: #f0f0f0;
          position: absolute;
          right: 80px;
          bottom: 45px; }
      .advantages_view .adv-swiper .swiper-slide .pic {
        width: 48%;
        height: 550px;
        position: relative; }
        .advantages_view .adv-swiper .swiper-slide .pic img {
          width: 100%;
          height: 100%;
          display: block;
          position: absolute;
          left: 0;
          top: 0;
          object-fit: cover;
          transition-duration: .3s; }

.col-l {
  width: 22%; }

.col-r {
  width: 75%; }

.fast_box {
  padding: 70px 0 140px; }
  .fast_box .wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between; }
  .fast_box .item {
    width: 32.2%;
    position: relative; }
    .fast_box .item .pic {
      display: block;
      width: 100%;
      position: relative;
      padding-bottom: 136%;
      overflow: hidden; }
      .fast_box .item .pic img {
        width: 100%;
        height: 100%;
        display: block;
        position: absolute;
        left: 0;
        top: 0;
        object-fit: cover;
        transition-duration: .3s; }
    .fast_box .item .txt {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      display: flex;
      justify-content: center;
      flex-direction: column;
      align-items: center;
      justify-content: flex-end; }
      .fast_box .item .txt h5 {
        font-size: 20px;
        line-height: 1.2;
        color: #ffffff;
        margin-bottom: 65px; }
      .fast_box .item .txt h3 {
        font-size: 40px;
        line-height: 1.2;
        color: #ffffff;
        margin-bottom: 15px;
        font-family: PLUMB,Arial, Helvetica, sans-serif;
        text-transform: uppercase; }
      .fast_box .item .txt img {
        margin-bottom: 135px; }
    .fast_box .item:hover .txt {
      background-color: transparent; }
    .fast_box .item:hover .pic img {
      transform: scale(1.1); }

.case2-info_view {
  padding: 110px 0 120px; }
  .case2-info_view .wrap {
    max-width: 1200px; }
  .case2-info_view .tit {
    font-size: 36px;
    line-height: 1.5;
    color: #333333;
    font-weight: bold;
    text-align: center; }
  .case2-info_view .edit {
    padding: 60px 0 70px; }
  .case2-info_view .back {
    text-align: center; }
    .case2-info_view .back a {
      display: inline-block;
      font-size: 16px;
      line-height: 1;
      color: #ffffff;
      padding: 20px 50px 20px 85px;
      border-radius: 56px;
      background: url(../img/back-ico002.png) no-repeat left 50px center;
      background-color: #da251d;
      transition-duration: .3s; }
      .case2-info_view .back a:hover {
        background-color: #333; }

.former {
  background-color: #eff4ff;
  padding: 95px 0 60px; }
  .former .tit {
    text-align: center;
    font-size: 40px;
    line-height: 1.2;
    color: #333333;
    font-weight: bold; }
  .former .box {
    margin-top: 55px;
    position: relative; }
    .former .box li::after {
      content: '';
      display: block;
      width: 176px;
      height: 114px;
      background: url(../img/former-ico02.png) no-repeat center;
      background-size: contain;
      position: absolute;
      transition-duration: 0.3s;
      opacity: 0;
      visibility: hidden; }
    .former .box li .idot {
      position: absolute;
      cursor: pointer; }
    .former .box li.on::after {
      opacity: 1;
      visibility: visible; }
    .former .box li.on .item {
      opacity: 1;
      visibility: visible; }
    .former .box li:nth-child(1) .idot {
      left: 280px;
      top: 295px; }
    .former .box li:nth-child(1) .item {
      left: 0;
      top: 73px; }
    .former .box li:nth-child(1)::after {
      left: 116px;
      top: 201px; }
    .former .box li:nth-child(2) .idot {
      left: 280px;
      top: 538px; }
    .former .box li:nth-child(2) .item {
      left: 0;
      top: 321px; }
    .former .box li:nth-child(2)::after {
      left: 116px;
      top: 445px; }
    .former .box li:nth-child(3) .idot {
      left: 585px;
      top: 261px; }
    .former .box li:nth-child(3) .item {
      left: 298px;
      top: 42px; }
    .former .box li:nth-child(3)::after {
      left: 415px;
      top: 166px; }
    .former .box li:nth-child(4) .idot {
      left: 639px;
      top: 512px; }
    .former .box li:nth-child(4) .item {
      left: 347px;
      top: 659px; }
    .former .box li:nth-child(4)::after {
      left: 469px;
      top: 532px;
      transform: rotateX(180deg); }
    .former .box li:nth-child(5) .idot {
      left: 823px;
      top: 187px; }
    .former .box li:nth-child(5) .item {
      left: 913px;
      top: -24px; }
    .former .box li:nth-child(5)::after {
      left: 857px;
      top: 95px;
      transform: rotateY(180deg); }
    .former .box li:nth-child(6) .idot {
      left: 1038px;
      top: 256px; }
    .former .box li:nth-child(6) .item {
      left: 1120px;
      top: 39px; }
    .former .box li:nth-child(6)::after {
      left: 1066px;
      top: 161px;
      transform: rotateY(180deg); }
    .former .box li:nth-child(7) .idot {
      left: 1136px;
      top: 437px; }
    .former .box li:nth-child(7) .item {
      left: 1220px;
      top: 220px; }
    .former .box li:nth-child(7)::after {
      left: 1165px;
      top: 343px;
      transform: rotateY(180deg); }
    .former .box li:nth-child(8) .idot {
      left: 1136px;
      top: 594px; }
    .former .box li:nth-child(8) .item {
      left: 1220px;
      top: 735px; }
    .former .box li:nth-child(8)::after {
      left: 1165px;
      top: 613px;
      transform: rotateY(180deg) rotateX(180deg); }
    .former .box .out {
      transform: rotateX(48deg);
      background: #ffffff;
      border-radius: 50%;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-pack: center;
      justify-content: center;
      -ms-flex-align: center;
      align-items: center;
      width: 40px;
      height: 40px;
      animation-delay: 1.41114s;
      background: rgba(56, 50, 139, 0.21);
      animation: scale-data-v-55260c69 2s infinite ease-in-out; }
    .former .box .middle, .former .box .inner, .former .box .center {
      border-radius: 50%;
      background: #ff4e54;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-pack: center;
      justify-content: center;
      -ms-flex-align: center;
      align-items: center; }
    .former .box .middle {
      background: rgba(56, 50, 139, 0.41);
      width: 70%;
      height: 70%; }
    .former .box .inner {
      background: #fff;
      width: 50%;
      height: 50%; }
    .former .box .center {
      width: 50%;
      height: 50%;
      border-radius: 50%;
      background: rgba(56, 50, 139, 0.8); }
    .former .box .item {
      padding: 28px 40px 25px 45px;
      display: inline-block;
      background: url(../img/former-bg01.png) no-repeat center;
      background-size: contain;
      position: absolute;
      transition-duration: 0.3s;
      opacity: 0;
      visibility: hidden; }
      .former .box .item h3 {
        font-size: 24px;
        line-height: 1.2;
        color: #333333;
        font-weight: bold; }
        .former .box .item h3::after {
          content: '';
          display: inline-block;
          width: 27px;
          height: 27px;
          background: url(../img/former-ico01.png) no-repeat center;
          position: relative;
          margin-left: 10px;
          top: 5px; }
      .former .box .item h5 {
        font-size: 16px;
        line-height: 1.2;
        color: #333333;
        margin-top: 6px; }

@keyframes scale-data-v-55260c69 {
  0% {
    transform: rotateX(48deg) scale(1); }
  50% {
    transform: rotateX(48deg) scale(1.2); }
  100% {
    transform: rotateX(48deg) scale(1); } }
.job_view {
  background-color: #f4f5f6;
  padding: 75px 0 120px; }
  .job_view .list {
    background-color: #fff;
    padding: 0 30px;
    box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.2); }
    .job_view .list li .sup {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      padding: 25px 0;
      border-bottom: 1px solid #d7d7d7; }
      .job_view .list li .sup h3 {
        font-size: 18px;
        line-height: 1.2;
        color: #333333; }
      .job_view .list li .sup p {
        width: 59%;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        font-size: 14px;
        line-height: 22px;
        color: #333333;
        text-align: center; }
        .job_view .list li .sup p i {
          display: block;
          color: #4a458e; }
      .job_view .list li .sup .btn {
        font-size: 16px;
        line-height: 1.2;
        color: #ffffff;
        cursor: pointer;
        padding: 12px 45px;
        background-color: #da251d;
        border-radius: 45px;
        transition-duration: 0.3s;
        user-select: none; }
        .job_view .list li .sup .btn:hover {
          background-color: #999; }
    .job_view .list li .item {
      padding: 30px 0 70px;
      border-bottom: 1px solid #d7d7d7;
      display: none; }
      .job_view .list li .item p {
        font-size: 16px;
        line-height: 35px;
        color: #333333;
        white-space: pre-wrap; }
        .job_view .list li .item p i {
          font-weight: bold; }
    .job_view .list li.on .sup h3 {
      color: #da251d; }
  .job_view .con {
    margin-top: 85px;
    padding: 75px 70px;
    background: url(../img/job-bg001.jpg) no-repeat center;
    background-size: cover; }
    .job_view .con p {
      font-size: 18px;
      line-height: 35px;
      color: #fff;
      white-space: pre-wrap; }
      .job_view .con p i {
        font-weight: bold;
        font-size: 24px; }
    .job_view .con a {
      font-size: 18px;
      line-height: 35px;
      color: #fff;
      margin-top: 40px;
      display: inline-block;
      padding-left: 85px;
      background: url(../img/email-ico001.png) no-repeat left center;
      background-size: 68px; }
      .job_view .con a span {
        font-weight: bold;
        font-size: 24px; }

.slogn {
  padding: 85px 0;
  background: url(../img/slogn-bg01.jpg) no-repeat center;
  background-size: cover; }
  .slogn .list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between; }
    .slogn .list a {
      width: 24%;
      height: 150px;
      background-color: #fff;
      padding: 0 2%;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between; }
      .slogn .list a .tit h3 {
        font-size: 20px;
        line-height: 1.2;
        color: #333333;
        font-family: "PINGFANG-BOLD";
        font-weight: bold; }
      .slogn .list a .tit h5 {
        font-size: 14px;
        line-height: 1.2;
        color: #999999;
        margin-top: 10px;
        transition-duration: 0.3s; }
      .slogn .list a .pic {
        padding: 10px;
        border-radius: 50%;
        background-color: rgba(218, 37, 29, 0.5);
        width: 84px;
        height: 84px; }
        .slogn .list a .pic img {
          width: 100%;
          height: 100%;
          padding: 14px;
          border-radius: 50%;
          background-color: #da251d;
          object-fit: none; }
      .slogn .list a:hover .pic {
        animation: flipInY 2s; }
      .slogn .list a:hover .tit h5 {
        color: #da251d; }

.serve_view {
  padding-top: 100px; }
  .serve_view .tit {
    text-align: center; }
    .serve_view .tit h3 {
      font-size: 40px;
      line-height: 1.2;
      color: #333;
      font-weight: bold;
      margin-bottom: 20px; }
    .serve_view .tit p {
      font-size: 18px;
      line-height: 30px;
      color: #666666;
      white-space: pre-wrap; }
  .serve_view .con {
    margin-top: 60px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between; }
    .serve_view .con a {
      width: 31%;
      height: 660px;
      position: relative;
      overflow: hidden; }
      .serve_view .con a .bg {
        width: 100%;
        height: 100%;
        display: block;
        position: absolute;
        left: 0;
        top: 0;
        object-fit: cover;
        transition-duration: .3s; }
      .serve_view .con a .txt {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.3);
        padding: 95px 12% 0; }
        .serve_view .con a .txt h3 {
          font-size: 36px;
          line-height: 1.2;
          color: #ffffff;
          font-weight: bold; }
        .serve_view .con a .txt h5 {
          font-size: 16px;
          line-height: 1.2;
          color: #ffffff;
          margin-top: 20px; }
        .serve_view .con a .txt span {
          display: inline-block;
          font-size: 18px;
          line-height: 1.2;
          color: #ffffff;
          padding: 20px 70px 20px 45px;
          border-radius: 60px;
          background: url(../img/next-ico001.png) no-repeat right 40px center;
          border: 1px solid #fff;
          transition-duration: 0.3s;
          position: absolute;
          bottom: 85px;
          left: 12%; }
          .serve_view .con a .txt span:hover {
            background-color: #da251d;
            border-color: #da251d; }
  .serve_view .links {
    margin-top: 65px;
    padding: 70px 0;
    background: url(../img/serve-bg001.jpg) no-repeat center; }
    .serve_view .links .wrap {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between; }
      .serve_view .links .wrap a {
        width: 31%;
        padding: 0 3.5%;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        background-color: #fff;
        height: 180px; }
        .serve_view .links .wrap a .txt h3 {
          font-size: 24px;
          line-height: 1.2;
          color: #333333;
          font-weight: bold; }
        .serve_view .links .wrap a .txt p {
          font-size: 14px;
          line-height: 1.2;
          color: #666666;
          transition-duration: 0.3s;
          margin-top: 10px; }
        .serve_view .links .wrap a img {
          width: 80px;
          height: 80px;
          object-fit: scale-down; }
        .serve_view .links .wrap a:hover p {
          color: #da251d; }

.doors_view .other {
  padding: 80px 0 115px; }
  .doors_view .other .tit {
    font-size: 40px;
    line-height: 1.2;
    color: #333333;
    text-align: center;
    font-weight: bold; }
  .doors_view .other .other-swiper {
    margin-top: 50px; }
    .doors_view .other .other-swiper .swiper-slide .pic {
      display: block;
      width: 100%;
      position: relative;
      padding-bottom: 70%;
      overflow: hidden; }
      .doors_view .other .other-swiper .swiper-slide .pic img {
        width: 100%;
        height: 100%;
        display: block;
        position: absolute;
        left: 0;
        top: 0;
        object-fit: cover;
        transition-duration: .3s; }
      .doors_view .other .other-swiper .swiper-slide .pic:hover img {
        transform: scale(1.1); }
    .doors_view .other .other-swiper .swiper-slide .txt {
      background-color: #f5f5f5;
      padding: 35px 100px 48px 30px;
      position: relative; }
      .doors_view .other .other-swiper .swiper-slide .txt h3 {
        font-size: 24px;
        line-height: 1.2;
        color: #333333;
        font-weight: bold;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap; }
      .doors_view .other .other-swiper .swiper-slide .txt p {
        font-size: 16px;
        line-height: 1.2;
        color: #999999;
        margin-top: 15px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap; }
      .doors_view .other .other-swiper .swiper-slide .txt .more {
        width: 55px;
        height: 55px;
        background: url(../img/product-left001.png) no-repeat center;
        background-color: #fff;
        position: absolute;
        border-radius: 50%;
        top: 60px;
        right: 45px;
        transform: rotate(140deg);
        cursor: pointer;
        z-index: 1;
        transition-duration: 0.3s; }
        .doors_view .other .other-swiper .swiper-slide .txt .more:hover {
          background-image: url(../img/product-left002.png);
          background-color: #da251d; }
    .doors_view .other .other-swiper .swiper-pagination {
      bottom: 0;
      display: none; }
      .doors_view .other .other-swiper .swiper-pagination .swiper-pagination-bullet {
        background: #dcdcdc;
        opacity: 1; }
        .doors_view .other .other-swiper .swiper-pagination .swiper-pagination-bullet-active {
          background-color: #da251d; }
.doors_view .order {
  padding: 115px 0;
  background-color: #f8f8f8; }
.doors_view .order .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between; }
.doors_view .order .tit {
  width: 32%; }
.doors_view .order .tit h3 {
  font-size: 40px;
  line-height: 60px;
  color: #333333;
  font-weight: bold; }
.doors_view .order .tit h5 {
  font-size: 30px;
  line-height: 1;
  color: #333333; }
.doors_view .order .tit h5 span {
  font-size: 60px;
  line-height: 1;
  color: #da251d;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold; }
.doors_view .order form {
  width: 68%;
  display: block; }
.doors_view .order form .ind {
  width: 100%;
  height: 55px;
  border: 1px solid #d7d7d7;
  border-radius: 4px;
  padding: 0 25px;
  font-size: 18px;
  line-height: 1;
  color: #666666;
  background-color: #fff;
  margin-bottom: 12px; }
.doors_view .order form div:nth-child(1) {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between; }
.doors_view .order form div:nth-child(1) .ind {
  width: 49%; }
.doors_view .order form div:nth-child(2) {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between; }
.doors_view .order form div:nth-child(2) .ind {
  width: 32%;
  background: url(../img/ico-002.png) #fff 95% center no-repeat; }
.doors_view .order form .sub {
  width: 100%;
  height: 55px;
  border: 1px solid #1051a1;
  border-radius: 4px;
  font-size: 18px;
  line-height: 1;
  color: #fff;
  background-color: #da251d;
  cursor: pointer;
  transition: all .3s; }
.doors_view .order form .sub:hover {
  /* background-color: #d7d7d7;
  color: #1051a1; */
  box-shadow: 1px 2px 5px #999; }
.doors_view .why {
  padding: 100px 0 60px; }
.doors_view .tit1 {
  text-align: center; }
  .doors_view .tit1 h3 {
    font-size: 40px;
    line-height: 1.2;
    color: #333333;
    font-weight: bold; }
  .doors_view .tit1 p {
    font-size: 18px;
    line-height: 1.2;
    color: #666666;
    margin-top: 20px; }
.doors_view .why-swiper {
  margin-top: 80px;
  padding-bottom: 75px; }
  .doors_view .why-swiper .swiper-slide {
    width: 330px;
    height: 490px;
    position: relative; }
    .doors_view .why-swiper .swiper-slide .bg {
      position: absolute;
      width: 100%;
      height: 100%;
      object-fit: cover;
      top: 0;
      left: 0;
      opacity: 0;
      visibility: hidden;
      transition-duration: 0.3s; }
    .doors_view .why-swiper .swiper-slide .txt {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      display: flex;
      justify-content: center;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      background-color: #f8f8f8;
      transition-duration: 0.3s;
      text-align: center; }
      .doors_view .why-swiper .swiper-slide .txt .ico {
        width: 50px;
        height: 50px;
        object-fit: scale-down;
        margin-top: 80px; }
      .doors_view .why-swiper .swiper-slide .txt h3 {
        font-size: 24px;
        line-height: 1.2;
        color: #333333;
        font-weight: bold;
        margin-top: 25px; }
      .doors_view .why-swiper .swiper-slide .txt p {
        font-size: 16px;
        line-height: 30px;
        color: #333333;
        margin-top: 35px;
        white-space: pre-wrap; }
      .doors_view .why-swiper .swiper-slide .txt span {
        width: 30px;
        height: 30px;
        background: url(../img/why-ico002.png) no-repeat center;
        margin-top: 110px; }
    .doors_view .why-swiper .swiper-slide:hover .bg {
      opacity: 1;
      visibility: visible; }
    .doors_view .why-swiper .swiper-slide:hover .txt {
      background-color: rgba(0, 0, 0, 0.4); }
      .doors_view .why-swiper .swiper-slide:hover .txt * {
        -webkit-filter: grayscale(100%) brightness(500%);
        filter: grayscale(100%) brightness(500%); }
  .doors_view .why-swiper .swiper-pagination {
    bottom: 0; }
    .doors_view .why-swiper .swiper-pagination .swiper-pagination-bullet {
      background: #dcdcdc;
      opacity: 1; }
      .doors_view .why-swiper .swiper-pagination .swiper-pagination-bullet-active {
        background-color: #da251d; }
.doors_view .anli {
  padding: 60px 0 100px;
  overflow: hidden; }
  .doors_view .anli .anli-swiper {
    margin-top: 55px;
    padding-bottom: 110px;
    overflow: visible; }
    .doors_view .anli .anli-swiper .swiper-slide {
      width: 630px; }
      .doors_view .anli .anli-swiper .swiper-slide .pic {
        display: block;
        width: 100%;
        position: relative;
        padding-bottom: 66.7%;
        overflow: hidden; }
        .doors_view .anli .anli-swiper .swiper-slide .pic img {
          width: 100%;
          height: 100%;
          display: block;
          position: absolute;
          left: 0;
          top: 0;
          object-fit: cover;
          transition-duration: .3s; }
        .doors_view .anli .anli-swiper .swiper-slide .pic:hover img {
          transform: scale(1.1); }
        .doors_view .anli .anli-swiper .swiper-slide .pic h3 {
          font-size: 24px;
          line-height: 1.2;
          color: #ffffff;
          font-weight: bold;
          position: absolute;
          bottom: 25px;
          left: 50px;
          right: 50px;
          overflow: hidden;
          text-overflow: ellipsis;
          white-space: nowrap; }
    .doors_view .anli .anli-swiper .btn_box {
      width: 210px;
      left: calc(50% - 105px);
      bottom: 0;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      position: absolute; }
      .doors_view .anli .anli-swiper .btn_box .button-prev {
        width: 55px;
        height: 55px;
        background: url(../img/product-left001.png) no-repeat center;
        background-color: #f5f5f5;
        border-radius: 50%;
        cursor: pointer;
        z-index: 1;
        transition-duration: 0.3s; }
        .doors_view .anli .anli-swiper .btn_box .button-prev:hover {
          background-image: url(../img/product-left002.png);
          background-color: #da251d; }
      .doors_view .anli .anli-swiper .btn_box .button-next {
        width: 55px;
        height: 55px;
        background: url(../img/product-left001.png) no-repeat center;
        background-color: #f5f5f5;
        border-radius: 50%;
        transform: rotate(180deg);
        cursor: pointer;
        z-index: 1;
        transition-duration: 0.3s; }
        .doors_view .anli .anli-swiper .btn_box .button-next:hover {
          background-image: url(../img/product-left002.png);
          background-color: #da251d; }
      .doors_view .anli .anli-swiper .btn_box .swiper-pagination {
        width: auto;
        position: initial;
        font-size: 16px;
        line-height: 1.2;
        color: #333333;
        font-weight: bold; }
        .doors_view .anli .anli-swiper .btn_box .swiper-pagination .swiper-pagination-current {
          font-size: 30px; }
.doors_view .pain {
  background-color: #f8f8f8;
  padding: 100px 0; }
  .doors_view .pain .list {
    margin-top: 60px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between; }
    .doors_view .pain .list li {
      width: 15.6%;
      position: relative; }
      .doors_view .pain .list li img {
        width: 100%;
        height: 380px;
        object-fit: cover; }
      .doors_view .pain .list li .txt {
        width: 100%;
        height: 120px;
        background-color: rgba(0, 0, 0, 0.2);
        padding: 30px 15px 0;
        position: absolute;
        bottom: 0;
        left: 0; }
        .doors_view .pain .list li .txt h3 {
          font-size: 24px;
          line-height: 1.2;
          color: #ffffff;
          font-weight: bold; }
        .doors_view .pain .list li .txt h5 {
          font-size: 16px;
          line-height: 1.2;
          color: #ffffff;
          margin-top: 5px; }
.doors_view .gonyi {
  padding: 90px 0 100px;
  overflow: hidden; }
  .doors_view .gonyi .box_swiper {
    padding: 0 170px;
    margin-top: 60px;
    position: relative; }
    .doors_view .gonyi .box_swiper .button-prev {
      width: 55px;
      height: 55px;
      background: url(../img/product-left001.png) no-repeat center;
      background-color: #f5f5f5;
      position: absolute;
      top: calc( 50% - 50px);
      border-radius: 50%;
      left: 50px;
      cursor: pointer;
      z-index: 1;
      transition-duration: 0.3s; }
      .doors_view .gonyi .box_swiper .button-prev:hover {
        background-image: url(../img/product-left002.png);
        background-color: #da251d; }
    .doors_view .gonyi .box_swiper .button-next {
      width: 55px;
      height: 55px;
      background: url(../img/product-left001.png) no-repeat center;
      background-color: #f5f5f5;
      position: absolute;
      border-radius: 50%;
      top: calc( 50% - 50px);
      right: 50px;
      transform: rotate(180deg);
      cursor: pointer;
      z-index: 1;
      transition-duration: 0.3s; }
      .doors_view .gonyi .box_swiper .button-next:hover {
        background-image: url(../img/product-left002.png);
        background-color: #da251d; }
  .doors_view .gonyi .gonyi-swiper {
    padding-bottom: 70px;
    overflow: visible; }
    .doors_view .gonyi .gonyi-swiper .swiper-pagination {
      bottom: 0; }
      .doors_view .gonyi .gonyi-swiper .swiper-pagination .swiper-pagination-bullet {
        background: transparent;
        border: 1px solid #9c9c9c;
        opacity: 1; }
        .doors_view .gonyi .gonyi-swiper .swiper-pagination .swiper-pagination-bullet-active {
          background-color: #da251d;
          border-color: #da251d; }
    .doors_view .gonyi .gonyi-swiper .swiper-slide {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      align-items: stretch; }
      .doors_view .gonyi .gonyi-swiper .swiper-slide .pic {
        width: 50%;
        height: 520px;
        position: relative;
        overflow: hidden; }
        .doors_view .gonyi .gonyi-swiper .swiper-slide .pic img {
          width: 100%;
          height: 100%;
          display: block;
          position: absolute;
          left: 0;
          top: 0;
          object-fit: cover;
          transition-duration: .3s; }
      .doors_view .gonyi .gonyi-swiper .swiper-slide .txt {
        width: 50%;
        padding: 85px 7% 0;
        background-color: #f5f5f5;
        position: relative; }
        .doors_view .gonyi .gonyi-swiper .swiper-slide .txt h3 {
          font-size: 40px;
          line-height: 1.2;
          color: #333333;
          font-weight: bold; }
        .doors_view .gonyi .gonyi-swiper .swiper-slide .txt h5 {
          font-size: 18px;
          line-height: 1.2;
          color: #a8a8a8;
          font-family: Arial, Helvetica, sans-serif;
          margin-top: 8px; }
        .doors_view .gonyi .gonyi-swiper .swiper-slide .txt .line {
          margin-top: 25px;
          height: 1px;
          background-color: #999999; }
        .doors_view .gonyi .gonyi-swiper .swiper-slide .txt p {
          font-size: 16px;
          line-height: 30px;
          color: #333333;
          margin-top: 35px; }
        .doors_view .gonyi .gonyi-swiper .swiper-slide .txt img {
          position: absolute;
          bottom: 45px;
          right: 15%;
          width: 50px;
          height: 50px;
          object-fit: scale-down; }
.doors_view .liuchen {
  padding-top: 130px;
  background: url(../img/liuchen-bg001.jpg) no-repeat top center;
  background-size: 100% 450px; }
  .doors_view .liuchen .tit1 h3 {
    color: #fff; }
  .doors_view .liuchen .tit1 p {
    color: #fff; }
  .doors_view .liuchen .list {
    margin-top: 50px;
    background-color: #f5f5f5;
    padding: 85px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    justify-content: space-evenly; }
    .doors_view .liuchen .list li {
      display: flex;
      justify-content: center;
      flex-direction: column;
      align-items: center;
      position: relative; }
      .doors_view .liuchen .list li::after {
        content: '';
        display: block;
        width: 70px;
        height: 9px;
        background: url(../img/liuchen-right001.png) no-repeat center;
        background-size: contain;
        position: absolute;
        bottom: 11px;
        right: -55%; }
      .doors_view .liuchen .list li:last-child::after {
        display: none; }
      .doors_view .liuchen .list li h3 {
        margin-top: 20px;
        font-size: 20px;
        line-height: 1.2;
        color: #333333;
        display: inline-block;
        padding: 5px 18px;
        border-radius: 35px;
        background-color: #fff; }
.doors_view .baozhan {
  padding: 100px 0 120px; }
  .doors_view .baozhan .baozhan-swiper {
    margin-top: 60px; }
    .doors_view .baozhan .baozhan-swiper .swiper-slide {
      width: 370px;
      position: relative; }
      .doors_view .baozhan .baozhan-swiper .swiper-slide .bg {
        width: 100%;
        height: 500px;
        object-fit: cover; }
      .doors_view .baozhan .baozhan-swiper .swiper-slide .txt {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.6);
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        text-align: center;
        transition-duration: 0.3s; }
        .doors_view .baozhan .baozhan-swiper .swiper-slide .txt .ico {
          width: 100px;
          height: 100px;
          border-radius: 50%;
          background-color: rgba(255, 255, 255, 0.1); }
          .doors_view .baozhan .baozhan-swiper .swiper-slide .txt .ico img {
            width: 100%;
            height: 100%;
            object-fit: scale-down;
            -webkit-filter: grayscale(100%) brightness(500%);
            filter: grayscale(100%) brightness(500%);
            transition-duration: 0.3s; }
        .doors_view .baozhan .baozhan-swiper .swiper-slide .txt h3 {
          font-size: 30px;
          line-height: 35px;
          color: #fff;
          margin-top: 25px;
          height: 35px;
          white-space: pre-wrap;
          font-weight: bold; }
        .doors_view .baozhan .baozhan-swiper .swiper-slide .txt .line {
          width: 36px;
          height: 3px;
          border-radius: 3px;
          background-color: #fff;
          margin-top: 22px;
          display: none;
          transition-duration: 0.3s; }
        .doors_view .baozhan .baozhan-swiper .swiper-slide .txt p {
          font-size: 16px;
          line-height: 35px;
          color: #fff;
          margin-top: 25px;
          display: none;
          white-space: pre-wrap;
          transition-duration: 0.3s; }
        .doors_view .baozhan .baozhan-swiper .swiper-slide .txt:hover {
          background-color: rgba(218, 37, 29, 0.8); }
          .doors_view .baozhan .baozhan-swiper .swiper-slide .txt:hover .ico {
            background-color: #fff; }
            .doors_view .baozhan .baozhan-swiper .swiper-slide .txt:hover .ico img {
              filter: initial; }
          .doors_view .baozhan .baozhan-swiper .swiper-slide .txt:hover .line {
            display: block; }
          .doors_view .baozhan .baozhan-swiper .swiper-slide .txt:hover p {
            display: block; }
    .doors_view .baozhan .baozhan-swiper .swiper-pagination {
      bottom: 0;
      display: none; }
      .doors_view .baozhan .baozhan-swiper .swiper-pagination .swiper-pagination-bullet {
        background: transparent;
        border: 1px solid #9c9c9c;
        opacity: 1; }
        .doors_view .baozhan .baozhan-swiper .swiper-pagination .swiper-pagination-bullet-active {
          background-color: #da251d;
          border-color: #da251d; }

.shop_view {
  padding: 100px 0 85px;
  overflow: hidden; }
  .shop_view .tit {
    font-size: 36px;
    line-height: 1.2;
    color: #333333;
    font-weight: bold; }
  .shop_view .store_location {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between; }
    .shop_view .store_location select {
      width: 27%;
      height: 55px;
      padding-right: 45px;
      padding-left: 16px;
      font-size: 14px;
      line-height: 1.2;
      color: #333333;
      background: url(../img/ico-002.png) no-repeat right 25px center;
      border: 1px solid #d7d7d7; }
    .shop_view .store_location button {
      width: 15%;
      height: 55px;
      font-size: 14px;
      line-height: 55px;
      color: #fff;
      text-align: center;
      background-color: #da251d;
      cursor: pointer; }
  .shop_view .con {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    align-items: flex-start;
    margin-left: -12.4%;
    margin-right: -12.4%;
    margin-top: 70px;
    background-color: #f5f5f5; }
    .shop_view .con #joan_map {
      width: 58%;
      height: 640px; }
    .shop_view .con .list_box {
      width: 42%;
      padding: 40px 10% 0 3%; }
      .shop_view .con .list_box .t1 {
        font-size: 14px;
        line-height: 1.2;
        color: #333333;
        margin-bottom: 20px; }
        .shop_view .con .list_box .t1 span {
          font-size: 18px;
          line-height: 1.2;
          color: #da251d;
          font-weight: bold; }
      .shop_view .con .list_box .switch_address {
        overflow-y: auto;
        height: 560px; }
        .shop_view .con .list_box .switch_address li {
          padding: 25px;
          background-color: #fff;
          cursor: pointer;
          margin-bottom: 10px; }
          .shop_view .con .list_box .switch_address li h4 {
            font-size: 18px;
            line-height: 1.2;
            color: #333333;
            font-weight: bold; }
          .shop_view .con .list_box .switch_address li:hover h4 {
            color: #da251d; }
          .shop_view .con .list_box .switch_address li h5 {
            font-size: 14px;
            line-height: 20px;
            color: #999999;
            padding-left: 25px;
            margin-top: 10px;
            background: url(../img/add-ico001.png) no-repeat top left; }
          .shop_view .con .list_box .switch_address li h6 {
            font-size: 14px;
            line-height: 20px;
            color: #999999;
            padding-left: 25px;
            margin-top: 5px;
            background: url(../img/tel-ico001.png) no-repeat top left; }

.case {
  padding-top: 100px;
  background-color: #191919; }
  .case .tit {
    text-align: center; }
    .case .tit h3 {
      font-size: 26px;
      line-height: 1.2;
      color: #fff; }
      .case .tit h3 span {
        font-family: Avenir Next;
        font-size: 36px;
        line-height: 1.2;
        color: #fff;
        margin-bottom: 10px;
        display: block;
        text-transform: uppercase; }
  .case .con {
    margin-top: 60px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    height: 720px;
    overflow: hidden;
    position: relative;
    transition-duration: .3s; }
    .case .con.on {
      height: auto; }
    .case .con .list {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      align-content: space-between;
      height: 820px;
      width: 49.4%;
      margin-bottom: 15px; }
      .case .con .list a {
        width: 100%;
        height: 500px;
        border-radius: 15px;
        overflow: hidden; }
        .case .con .list a .pic {
          width: 100%;
          height: 100%;
          position: relative;
          overflow: hidden; }
          .case .con .list a .pic img {
            width: 100%;
            height: 100%;
            display: block;
            position: absolute;
            left: 0;
            top: 0;
            object-fit: cover;
            transition-duration: .3s; }
          .case .con .list a .pic h3 {
            font-size: 16px;
            line-height: 1.2;
            color: #ffffff;
            padding: 20px 30px;
            border-radius: 55px;
            display: inline-block;
            position: absolute;
            top: 30px;
            left: 30px;
            transition-duration: .3s;
            background-color: rgba(0, 0, 0, 0.2); }
          .case .con .list a .pic:hover img {
            transform: scale(1.1); }
          .case .con .list a .pic:hover h3 {
            background-color: #da251d; }
    .case .con .list1 a:nth-child(2) {
      height: 300px; }
    .case .con .list2 a:nth-child(1) {
      height: 300px; }
    .case .con .list2 a:nth-child(2) {
      width: 49%; }
    .case .con .list2 a:nth-child(3) {
      width: 49%; }
    .case .con .more {
      height: 320px;
      background-image: -moz-linear-gradient(0deg, #000000, rgba(0, 0, 0, 0));
      background-image: -webkit-linear-gradient(0deg, #000000, rgba(0, 0, 0, 0));
      background-image: -ms-linear-gradient(0deg, #000000, rgba(0, 0, 0, 0));
      background-image: linear-gradient(0deg, #000000, rgba(0, 0, 0, 0));
      width: 100%;
      position: absolute;
      bottom: 0;
      left: 0;
      display: flex;
      justify-content: center;
      flex-direction: column;
      align-items: center;
      cursor: pointer; }
      .case .con .more span {
        font-size: 16px;
        line-height: 1.2;
        color: #ffffff;
        margin-bottom: 5px; }

.com-tit2 {
  text-align: center; }
  .com-tit2 h3 {
    font-size: 36px;
    line-height: 1.2;
    color: #333333;
    margin-bottom: 10px;
    font-weight: bold; }
  .com-tit2 h5 {
    font-size: 14px;
    line-height: 1.2;
    color: #adadad;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif; }

.brand_view {
  padding: 75px 0 120px; }
  .brand_view .con {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-top: 99px; }
    .brand_view .con .txt {
      width: 50%; }
      .brand_view .con .txt p {
        font-size: 18px;
        line-height: 35px;
        color: #666666;
        white-space: pre-wrap; }
      .brand_view .con .txt h3 {
        font-size: 24px;
        line-height: 1.5;
        color: #333333;
        font-weight: bold;
        margin-top: 65px;
        margin-bottom: 15px; }
    .brand_view .con .pic {
      width: 41%; }

.factory_view {
  padding-top: 30px; }
  .factory_view .list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: -48px; }
    .factory_view .list li {
      width: 30.8%;
      margin-right: 3.8%;
      margin-bottom: 48px;
      position: relative; }
      .factory_view .list li:nth-child(3n) {
        margin-right: 0; }
      .factory_view .list li .pic {
        display: block;
        width: 100%;
        position: relative;
        padding-bottom: 67%;
        overflow: hidden; }
        .factory_view .list li .pic img {
          width: 100%;
          height: 100%;
          display: block;
          position: absolute;
          left: 0;
          top: 0;
          object-fit: cover;
          transition-duration: .3s; }
        .factory_view .list li .pic:hover img {
          transform: scale(1.1); }
      .factory_view .list li .txt {
        background: url(../img/factory-ico003.png) no-repeat right 22px center;
        border: 1px soild #e1e1e1;
        border-top: none;
        background-color: #ffffff;
        padding: 28px;
        padding-left: 15px;
        padding-right: 60px;
        position: relative; }
        .factory_view .list li .txt h3 {
          font-size: 18px;
          line-height: 1.2;
          color: #333333;
          overflow: hidden;
          text-overflow: ellipsis;
          white-space: nowrap;
          font-weight: bold; }
      .factory_view .list li:hover .txt {
        background-color: #da251d;
        background-image: url(../img/factory-ico002.png); }
        .factory_view .list li:hover .txt h3 {
          color: #fff; }

.product_view .list {
  margin-top: 100px;
  margin-bottom: -40px; }

.product_view .list li {
  margin-bottom: 40px; }

.product_view .list li a {
  display: block;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  align-items: stretch; }

.product_view .list li a .pic {
  display: block;
  width: 53%;
  position: relative;
  padding-bottom: 39.2%;
  overflow: hidden; }
  .product_view .list li a .pic::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: url(../img/product-ico004.png) no-repeat center;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.4);
    transition-duration: .3s;
    opacity: 0;
    visibility: hidden; }
  .product_view .list li a .pic::before {
    content: '';
    display: block;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid #fff;
    position: absolute;
    transition-duration: .3s;
    opacity: 0;
    visibility: hidden;
    z-index: 1; }
  .product_view .list li a .pic:hover::after {
    opacity: 1;
    visibility: visible; }
  .product_view .list li a .pic:hover::before {
    opacity: 1;
    visibility: visible; }

.product_view .list li a .pic img {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  transition-duration: .3s;
  object-fit: cover; }

.product_view .list li a .pic img.img2 {
  padding: 25px;
  background-color: rgba(0, 0, 0, 0.7);
  object-fit: contain;
  opacity: 0;
  visibility: hidden;
  transition-duration: .4s; }

.product_view .list li a .pic:hover img.img2 {
  opacity: 1;
  visibility: visible;
  width: 100%;
  height: 100%; }

.product_view .list li:nth-child(2n) .pic {
  order: 1; }

.product_view .list li .txt {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: #fff;
  width: 47%; }
  .product_view .list li .txt h3 {
    font-size: 24px;
    line-height: 1.2;
    color: #666666;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: bold; }
  .product_view .list li .txt h5 {
    font-size: 18px;
    line-height: 1.2;
    color: #666666;
    margin-top: 12px; }
  .product_view .list li .txt span {
    width: 160px;
    height: 45px;
    border-radius: 45px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    transition-duration: .3s;
    background-color: #333;
    font-size: 16px;
    line-height: 1;
    color: #fff;
    margin-top: 55px; }
    .product_view .list li .txt span:hover {
      background-color: #da251d; }

.product_view {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  align-items: stretch;
  background-color: #efefef; }

.product_view .left {
  width: 29%;
  padding-left: 9.8%;
  padding-right: 2%;
  background-color: red;
  background-color: #ffffff; }

.product_view .right {
  width: 68%;
  padding-right: 9.8%; }

.sidebar_pro {
  padding-top: 75px; }
  .sidebar_pro form {
    display: block;
    position: relative;
    margin-top: 125px; }
    .sidebar_pro form input {
      width: 100%;
      display: block;
      height: 40px;
      border: 1px solid #999999;
      border-radius: 4px;
      padding-left: 20px;
      padding-right: 50px;
      font-size: 14px;
      line-height: 1;
      color: #333; }
    .sidebar_pro form button {
      width: 50px;
      height: 40px;
      background: url(../img/search-ico02.png) no-repeat center;
      position: absolute;
      top: 0;
      right: 0;
      cursor: pointer; }
  .sidebar_pro .tit {
    padding-bottom: 35px;
    border-bottom: 1px solid #e7e7e7; }
    .sidebar_pro .tit h5 {
      font-size: 14px;
      line-height: 1.2;
      color: #333333;
      font-weight: bold;
      padding-left: 38px;
      text-transform: uppercase;
      background: url(../img/product-ico003.png) no-repeat left center;
      font-family: Arial, Helvetica, sans-serif; }
    .sidebar_pro .tit h3 {
      font-size: 24px;
      line-height: 1.2;
      color: #333333;
      font-weight: bold;
      padding-left: 38px;
      margin-top: 10px; }

.sidebar_pro dl {
  user-select: none;
  margin-left: 32px;
  border-bottom: 1px solid #e7e7e7; }

.sidebar_pro dl.on dt i {
  font-weight: bold;
  color: #333; }

.sidebar_pro dl.on dt::after {
  background-image: url(../img/product-ico002.png); }

.sidebar_pro dl.on dd {
  height: auto;
  margin-bottom: 15px;
  opacity: 1; }

.sidebar_pro dl dt:hover i {
  color: #333; }

.sidebar_pro dl dt:hover::after {
  opacity: 1;
  visibility: visible; }

.sidebar_pro dl dt {
  position: relative;
  cursor: pointer;
  padding: 30px 25px 30px 0; }
  .sidebar_pro dl dt i {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 20px;
    font-size: 18px;
    color: #666666;
    display: block; }

.sidebar_pro dl dt::after {
  content: '';
  display: block;
  width: 14px;
  height: 14px;
  background: url(../img/product-ico001.png) no-repeat center;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition-duration: .3s; }

.sidebar_pro dl dd {
  padding-left: 32px;
  height: 0;
  opacity: 0;
  overflow: hidden;
  transition-duration: .3s;
  position: relative; }
  .sidebar_pro dl dd::after {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    background: url(../img/on-ico001.png) no-repeat center;
    background-size: contain;
    position: absolute;
    left: 0;
    top: 46%;
    transform: translateY(-50%);
    transition-duration: .3s; }

.sidebar_pro dl dd a {
  font-size: 16px;
  line-height: 1;
  color: #999999; }

.sidebar_pro dl dd.on::after {
  background-image: url(../img/on-ico002.png); }
.sidebar_pro dl dd.on a {
  color: #333333; }

.sidebar_pro dl dd a:hover {
  color: #333333; }

.product-info_view .above {
  padding: 100px 0; }
  .product-info_view .above .wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    align-items: flex-start; }

.product-info_view .above .img-swiper {
  width: 50%;
  height: 515px;
  margin: 0;
  position: relative; }
  .product-info_view .above .img-swiper .swiper-pagination {
    bottom: 0; }
    .product-info_view .above .img-swiper .swiper-pagination .swiper-pagination-bullet {
      background: #dcdcdc;
      opacity: 1; }
      .product-info_view .above .img-swiper .swiper-pagination .swiper-pagination-bullet-active {
        background-color: #da251d; }
  .product-info_view .above .img-swiper::after {
    content: '';
    display: block;
    width: 80px;
    height: 80px;
    background: url(../img/big-ico001.jpg) no-repeat center;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;
    background-size: contain; }

.product-info_view .above .img-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: contain; }

.product-info_view .above .img-swiper .button-prev {
  position: absolute;
  width: 50px;
  height: 50px;
  background: url(../img/product-left001.png) no-repeat center;
  margin-top: -25px;
  left: 27px;
  cursor: pointer;
  z-index: 2;
  top: 50%; }

.product-info_view .above .img-swiper .button-next {
  position: absolute;
  width: 50px;
  height: 50px;
  background: url(../img/product-left001.png) no-repeat center;
  margin-top: -25px;
  transform: rotate(180deg);
  right: 27px;
  cursor: pointer;
  z-index: 2;
  top: 50%; }

.product-info_view .above .img-swiper .swiper-button-prev:hover {
  opacity: .8; }

.product-info_view .above .img-swiper .swiper-button-next:hover {
  opacity: .8; }

.product-info_view .above .txt {
  width: 44.8%;
  padding: 10px 0 0; }

.product-info_view .above .txt h1 {
  font-size: 30px;
  line-height: 1.5;
  color: #333333;
  padding-bottom: 35px;
  border-bottom: 1px solid #e1e1e1;
  font-weight: bold; }

.product-info_view .above .txt .info {
  font-size: 16px;
  line-height: 40px;
  color: #333333;
  margin-top: 20px;
  white-space: pre-wrap; }

.product-info_view .above .txt .link {
  margin-top: 20px;
  padding-top: 45px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  border-top: 1px solid #d7d7d7; }
  .product-info_view .above .txt .link a {
    display: block;
    width: 128px;
    height: 45px;
    border: 1px solid #cccccc;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    font-size: 14px;
    line-height: 1;
    color: #333333;
    transition-duration: .3s; }
    .product-info_view .above .txt .link a:hover {
      background-color: #da251d;
      color: #fff;
      border-color: #da251d; }
    .product-info_view .above .txt .link a:first-child {
      margin-right: 20px; }

.product-info_view .effect {
  padding-bottom: 115px; }
  .product-info_view .effect .tit1 {
    text-align: center; }
    .product-info_view .effect .tit1 h3 {
      font-size: 36px;
      line-height: 1.2;
      color: #333333;
      font-weight: bold; }
    .product-info_view .effect .tit1 h5 {
      font-size: 16px;
      line-height: 1.2;
      color: #666666;
      margin-top: 9px; }

.product-info_view .effect .content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  align-items: stretch;
  margin-top: 70px; }

.product-info_view .effect .content .img-swiper {
  width: 100%;
  margin: 0;
  padding-bottom: 50px; }
  .product-info_view .effect .content .img-swiper .swiper-pagination {
    bottom: 0; }
    .product-info_view .effect .content .img-swiper .swiper-pagination .swiper-pagination-bullet {
      background: #dcdcdc;
      opacity: 1; }
      .product-info_view .effect .content .img-swiper .swiper-pagination .swiper-pagination-bullet-active {
        background-color: #da251d; }

.product-info_view .effect .content .img-swiper .swiper-slide {
  position: relative;
  height: 750px; }
  .product-info_view .effect .content .img-swiper .swiper-slide::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: url(../img/vr720-ico001.png) no-repeat center;
    background-color: rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition-duration: .3s;
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer; }
  .product-info_view .effect .content .img-swiper .swiper-slide:hover::after {
    opacity: 1;
    visibility: visible; }

.product-info_view .effect .content .img-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover; }

.case2_view {
  padding-top: 80px;
  overflow: hidden; }
  .case2_view .list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: -50px; }
    .case2_view .list li {
      margin-bottom: 115px;
      position: relative;
      width: 48%; }
      .case2_view .list li .pic {
        display: block;
        width: 100%;
        position: relative;
        padding-bottom: 54.5%;
        overflow: hidden; }
        .case2_view .list li .pic img {
          width: 100%;
          height: 100%;
          display: block;
          position: absolute;
          left: 0;
          top: 0;
          object-fit: cover;
          transition-duration: .3s; }
        .case2_view .list li .pic:hover img {
          transform: scale(1.1); }
      .case2_view .list li .txt {
        width: 80%;
        position: absolute;
        bottom: -70px;
        left: 0;
        right: 0;
        margin: 0 auto;
        padding: 26px 10%;
        text-align: center;
        background-color: #efefef; }
        .case2_view .list li .txt h3 {
          font-size: 20px;
          line-height: 30px;
          color: #333333;
          height: 60px;
          overflow: hidden;
          text-overflow: ellipsis;
          display: -webkit-box;
          -webkit-line-clamp: 2;
          -webkit-box-orient: vertical;
          font-weight: bold; }
          .case2_view .list li .txt h3:hover {
            color: #da251d; }

.join_view .tit {
  text-align: center; }
  .join_view .tit h3 {
    font-size: 36px;
    line-height: 1.2;
    color: #333;
    margin-bottom: 10px;
    font-weight: bold; }
  .join_view .tit h5 {
    font-size: 14px;
    line-height: 1.2;
    color: #adadad;
    font-family: Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    font-weight: bold; }
.join_view .guanmin {
  padding: 70px 0 110px; }
  .join_view .guanmin .con {
    margin-top: 40px; }
    .join_view .guanmin .con .img-tabs {
      position: relative;
      margin-top: 15px;
      height: 180px; }
      .join_view .guanmin .con .img-tabs .swiper-slide .pic {
        width: 100%;
        height: 100%;
        position: relative;
        overflow: hidden;
        cursor: pointer; }
        .join_view .guanmin .con .img-tabs .swiper-slide .pic img {
          width: 100%;
          height: 100%;
          display: block;
          position: absolute;
          left: 0;
          top: 0;
          object-fit: cover;
          transition-duration: .3s;
          border: 0 solid #da251d; }
      .join_view .guanmin .con .img-tabs .swiper-slide-active .pic img {
        border-width: 7px; }
    .join_view .guanmin .con .img-swiper {
      height: 685px; }
      .join_view .guanmin .con .img-swiper .swiper-slide .pic {
        width: 100%;
        height: 100%;
        position: relative;
        overflow: hidden; }
        .join_view .guanmin .con .img-swiper .swiper-slide .pic img {
          width: 100%;
          height: 100%;
          display: block;
          position: absolute;
          left: 0;
          top: 0;
          object-fit: cover;
          transition-duration: .3s; }
      .join_view .guanmin .con .img-swiper .swiper-pagination {
        bottom: 25px;
        display: none; }
        .join_view .guanmin .con .img-swiper .swiper-pagination .swiper-pagination-bullet {
          background-color: #c1c1c1; }
          .join_view .guanmin .con .img-swiper .swiper-pagination .swiper-pagination-bullet-active {
            background-color: #a73736; }
.join_view .marketing {
  padding: 90px 0 55px;
  background-color: #f5f5f5; }
  .join_view .marketing .marketing-swiper {
    margin-top: 50px;
    padding-bottom: 70px; }
    .join_view .marketing .marketing-swiper .pic {
      display: block;
      width: 100%;
      position: relative;
      padding-bottom: 59.6%;
      overflow: hidden; }
      .join_view .marketing .marketing-swiper .pic img {
        width: 100%;
        height: 100%;
        display: block;
        position: absolute;
        left: 0;
        top: 0;
        object-fit: cover;
        transition-duration: .3s; }
    .join_view .marketing .marketing-swiper .swiper-pagination {
      bottom: 0; }
      .join_view .marketing .marketing-swiper .swiper-pagination .swiper-pagination-bullet {
        background: #dcdcdc;
        opacity: 1; }
        .join_view .marketing .marketing-swiper .swiper-pagination .swiper-pagination-bullet-active {
          background-color: #da251d; }
.join_view .future {
  padding-top: 100px;
  overflow: hidden; }
  .join_view .future .future-swiper {
    margin-top: 55px;
    overflow: visible; }
    .join_view .future .future-swiper .swiper-slide .pic {
      display: block;
      width: 100%;
      position: relative;
      padding-bottom: 56%;
      overflow: hidden; }
      .join_view .future .future-swiper .swiper-slide .pic img {
        width: 100%;
        height: 100%;
        display: block;
        position: absolute;
        left: 0;
        top: 0;
        object-fit: cover;
        transition-duration: .3s; }
      .join_view .future .future-swiper .swiper-slide .pic::after {
        width: 100%;
        height: 100%;
        content: '';
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        background-color: rgba(0, 0, 0, 0.4);
        opacity: 1;
        visibility: visible; }
    .join_view .future .future-swiper .swiper-slide-active .pic::after {
      opacity: 0;
      visibility: hidden; }
    .join_view .future .future-swiper .swiper-pagination {
      bottom: 0;
      display: none; }
      .join_view .future .future-swiper .swiper-pagination .swiper-pagination-bullet {
        background: #dcdcdc;
        opacity: 1; }
        .join_view .future .future-swiper .swiper-pagination .swiper-pagination-bullet-active {
          background-color: #da251d; }
    .join_view .future .future-swiper .button-prev {
      width: 40px;
      height: 40px;
      background: url(../img/product-left01.png) no-repeat center;
      border-radius: 50%;
      position: absolute;
      top: calc(50% - 20px);
      border-radius: 50%;
      left: 5%;
      cursor: pointer;
      z-index: 99;
      transition-duration: 0.3s; }
    .join_view .future .future-swiper .button-next {
      width: 40px;
      height: 40px;
      background: url(../img/product-left01.png) no-repeat center;
      border-radius: 50%;
      position: absolute;
      top: calc(50% - 20px);
      border-radius: 50%;
      right: 5%;
      cursor: pointer;
      z-index: 99;
      transition-duration: 0.3s;
      transform: rotate(180deg); }
.join_view .ul8 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-top: 45px;
  margin-bottom: -20px; }
  .join_view .ul8 li {
    width: 32.2%;
    height: 250px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    border: 17px solid #f0f0f0;
    margin-bottom: 20px;
    transition-duration: .3s; }
    .join_view .ul8 li .pic {
      width: 40px;
      height: 40px;
      position: relative; }
      .join_view .ul8 li .pic img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: scale-down;
        top: 0;
        left: 0; }
      .join_view .ul8 li .pic .img1 {
        display: none; }
    .join_view .ul8 li h4 {
      font-size: 18px;
      line-height: 1;
      color: #333333;
      margin-top: 12px; }
    .join_view .ul8 li .txt p {
      font-size: 14px;
      line-height: 25px;
      color: #333333;
      height: 50px;
      margin-top: 20px;
      text-align: center;
      white-space: pre-wrap; }
    .join_view .ul8 li:hover {
      background: url(../img/join6-bg001.jpg) no-repeat center;
      background-size: cover;
      border-width: 1px; }
      .join_view .ul8 li:hover .pic .img1 {
        display: block; }
      .join_view .ul8 li:hover .pic .img2 {
        display: none; }
      .join_view .ul8 li:hover h4 {
        color: #fff; }
      .join_view .ul8 li:hover .txt p {
        color: #fff; }
.join_view .row-join5 {
  overflow: hidden;
  padding: 115px 0 125px; }
.join_view .row-join5 .tit-1 {
  margin-bottom: 50px; }
.join_view .ul7 {
  margin-bottom: -10px;
  margin-top: 40px;
  font-size: 0; }
.join_view .ul7 li {
  display: inline-block;
  vertical-align: top;
  width: 20%;
  height: 270px; }
  .join_view .ul7 li:nth-child(2n) .pic::after {
    display: none; }
.join_view .ul7 .con {
  display: block;
  height: 100%;
  position: relative;
  overflow: hidden; }
.join_view .ul7 .pic {
  height: 100%;
  position: relative;
  overflow: hidden; }
  .join_view .ul7 .pic::after {
    content: '';
    display: block;
    position: absolute;
    top: 10px;
    right: 10px;
    bottom: 10px;
    left: 10px;
    border: 1px solid #d7d7d7; }
.join_view .ul7 .pic img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover; }
.join_view .ul7 .mask {
  padding: 38px 30px 20px;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  overflow-y: auto;
  z-index: 2;
  -webkit-transition: .5s;
  -o-transition: .5s;
  transition: .5s; }
.join_view .ul7 .mask h4 {
  margin-bottom: 22px;
  font-size: 24px;
  color: #333;
  font-weight: 400;
  -webkit-transition: .5s;
  -o-transition: .5s;
  transition: .5s; }
  .join_view .ul7 .mask h4 span {
    display: inline-block;
    font-size: 16px;
    line-height: 1;
    color: #ffffff;
    padding: 7px 5px;
    border-radius: 50%;
    background-color: #da251d;
    margin-right: 7px;
    position: relative;
    top: -3px;
    font-weight: bold; }
.join_view .ul7 .mask .txt {
  font-size: 14px;
  color: #666;
  line-height: 24px;
  text-align: left;
  -webkit-transition: .5s;
  -o-transition: .5s;
  transition: .5s; }
.join_view .ul7 li:nth-child(even) .mask {
  background-color: rgba(0, 0, 0, 0.6); }
.join_view .ul7 li:nth-child(even) .mask h4 {
  color: #fff; }
.join_view .ul7 li:nth-child(even) .mask .txt {
  color: #fff; }
.join_view .ul7 .con:hover .mask {
  background-color: #bc1b28; }
.join_view .ul7 .con:hover .mask h4 {
  color: #fff; }
.join_view .ul7 .con:hover .mask .txt {
  color: #fff; }
.join_view .policies {
  padding: 154px 0;
  background: url(../img/policies-bg001.jpg) no-repeat center;
  background-size: cover; }
  .join_view .policies .tit h3 {
    color: #fff; }
  .join_view .policies .tit h5 {
    color: #fff; }
  .join_view .policies .list {
    margin-top: 45px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between; }
    .join_view .policies .list li {
      width: 15.5%;
      height: 260px;
      background-color: #fff;
      display: flex;
      justify-content: center;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      text-align: center;
      padding: 33px 14px 0; }
      .join_view .policies .list li img {
        width: 58px;
        height: 58px;
        object-fit: scale-down; }
      .join_view .policies .list li h3 {
        font-size: 24px;
        line-height: 1.2;
        color: #333333;
        font-weight: bold;
        margin-top: 15px; }
      .join_view .policies .list li p {
        font-size: 14px;
        line-height: 25px;
        color: #666666;
        height: 75px;
        margin-top: 10px; }
.join_view .condition {
  padding: 100px 0; }
  .join_view .condition .list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-top: 80px; }
    .join_view .condition .list li {
      width: 48%; }
      .join_view .condition .list li .txt {
        font-size: 16px;
        line-height: 35px;
        color: #333333;
        background-color: #efefef;
        white-space: pre-wrap;
        padding: 20px 40px; }
        .join_view .condition .list li .txt i {
          color: #da251d; }
  .join_view .condition .more {
    margin-top: 60px; }
    .join_view .condition .more a {
      display: block;
      width: 220px;
      height: 65px;
      border-radius: 65px;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      transition-duration: .3s;
      background-color: #da251d;
      font-size: 16px;
      line-height: 1;
      color: #fff;
      margin: 0 auto; }
      .join_view .condition .more a:hover {
        background-color: #981724; }

.shipin {
  cursor: pointer;
  display: block;
  width: 100%;
  position: relative;
  padding-bottom: 45.8%;
  overflow: hidden; }

.shipin .bg {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
  transition-duration: .3s;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover; }

.shipin .box {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  text-align: center; }
  .shipin .box h3 {
    font-size: 16px;
    line-height: 1.2;
    color: #ffffff;
    white-space: pre-wrap; }
  .shipin .box .ico {
    margin-top: 60px;
    cursor: pointer;
    user-select: none; }

.shipin .box h5 {
  font-size: 30px;
  line-height: 1.2;
  color: #ffffff;
  margin-top: 15px;
  white-space: pre-wrap;
  font-weight: bold; }

.join {
  padding: 100px 0; }
  .join .item {
    display: block;
    width: 100%;
    height: 500px;
    position: relative; }
    .join .item .bg {
      width: 100%;
      height: 100%;
      object-fit: cover;
      position: absolute;
      top: 0;
      left: 0; }
    .join .item .txt {
      width: 100%;
      height: 100%;
      display: flex;
      justify-content: center;
      flex-direction: column;
      align-items: center;
      position: relative;
      z-index: 1; }
      .join .item .txt h3 {
        font-size: 36px;
        line-height: 1.2;
        color: #fff;
        display: block;
        font-weight: bold; }
      .join .item .txt p {
        font-size: 16px;
        line-height: 1.5;
        color: #ffffff;
        margin-top: 10px; }
      .join .item .txt .more {
        width: 220px;
        height: 65px;
        border-radius: 65px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        transition-duration: .3s;
        background-color: #da251d;
        font-size: 16px;
        line-height: 1;
        color: #fff;
        margin-top: 40px; }
        .join .item .txt .more:hover {
          background-color: #981724; }

.shipin_view {
  padding-top: 90px;
  background-color: #efefef; }
  .shipin_view .tit {
    font-size: 40px;
    line-height: 1.2;
    color: #333333;
    font-weight: bold; }
  .shipin_view .tuijain {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between; }
    .shipin_view .tuijain .shipin_box {
      width: 74%;
      height: 730px;
      position: relative;
      cursor: pointer; }
      .shipin_view .tuijain .shipin_box video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0; }
      .shipin_view .tuijain .shipin_box img {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        object-fit: cover;
        transition-duration: 0.3s;
        width: 100%;
        height: 100%; }
      .shipin_view .tuijain .shipin_box h3 {
        position: absolute;
        left: 45px;
        bottom: 30px;
        right: 45px;
        font-size: 24px;
        line-height: 1.2;
        color: #ffffff;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        transition-duration: 0.3s;
        z-index: 2; }
      .shipin_view .tuijain .shipin_box::after {
        content: '';
        display: block;
        background: url(../img/shipin-ico001.png) no-repeat center;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.3);
        position: absolute;
        top: 0;
        left: 0;
        transition-duration: 0.3s; }
      .shipin_view .tuijain .shipin_box.on::after {
        opacity: 0;
        visibility: hidden; }
      .shipin_view .tuijain .shipin_box.on img {
        opacity: 0;
        visibility: hidden; }
      .shipin_view .tuijain .shipin_box.on h3 {
        opacity: 0;
        visibility: hidden; }
    .shipin_view .tuijain .list2 {
      width: 24%;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: flex-start;
      height: 730px;
      overflow-y: auto; }
      .shipin_view .tuijain .list2 li {
        height: 31%;
        width: 100%;
        position: relative;
        overflow: hidden;
        cursor: pointer;
        margin-bottom: 8%; }
        .shipin_view .tuijain .list2 li:last-child {
          margin-bottom: 0; }
        .shipin_view .tuijain .list2 li img {
          width: 100%;
          height: 100%;
          display: block;
          position: absolute;
          left: 0;
          top: 0;
          object-fit: cover;
          transition-duration: .3s; }
        .shipin_view .tuijain .list2 li h3 {
          position: absolute;
          left: 18px;
          bottom: 20px;
          right: 18px;
          font-size: 20px;
          line-height: 1.2;
          color: #ffffff;
          overflow: hidden;
          text-overflow: ellipsis;
          white-space: nowrap; }
        .shipin_view .tuijain .list2 li::before {
          content: '';
          display: block;
          border: 8px solid transparent;
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          z-index: 1;
          transition-duration: 0.3s; }
        .shipin_view .tuijain .list2 li::after {
          content: '';
          display: block;
          background: url(../img/shipin-ico001.png) no-repeat center;
          width: 100%;
          height: 100%;
          background-color: rgba(0, 0, 0, 0.3);
          position: absolute;
          top: 0;
          left: 0; }
        .shipin_view .tuijain .list2 li.on::before {
          border-color: #da251d; }
  .shipin_view .list {
    margin-top: 80px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: -75px; }
    .shipin_view .list li {
      width: 30.8%;
      margin-right: 3.8%;
      margin-bottom: 75px;
      position: relative;
      cursor: pointer; }
      .shipin_view .list li:nth-child(3n) {
        margin-right: 0; }
      .shipin_view .list li .pic {
        display: block;
        width: 100%;
        position: relative;
        padding-bottom: 70%;
        overflow: hidden; }
        .shipin_view .list li .pic img {
          width: 100%;
          height: 100%;
          display: block;
          position: absolute;
          left: 0;
          top: 0;
          object-fit: cover;
          transition-duration: .3s; }
        .shipin_view .list li .pic::after {
          content: '';
          display: block;
          background: url(../img/shipin-ico001.png) no-repeat center;
          width: 100%;
          height: 100%;
          background-color: rgba(0, 0, 0, 0.3);
          position: absolute;
          top: 0;
          left: 0; }
      .shipin_view .list li .txt {
        background-color: #ffffff;
        padding: 22px 22px 40px;
        position: relative; }
        .shipin_view .list li .txt h5 {
          font-size: 18px;
          line-height: 1.2;
          color: #888888;
          font-family: Arial, Helvetica, sans-serif;
          margin-top: 20px; }
        .shipin_view .list li .txt h3 {
          font-size: 20px;
          line-height: 30px;
          color: #333333;
          font-weight: bold;
          overflow: hidden;
          text-overflow: ellipsis;
          display: -webkit-box;
          -webkit-line-clamp: 2;
          -webkit-box-orient: vertical;
          height: 60px;
          transition-duration: 0.3s; }
        .shipin_view .list li .txt:hover h3 {
          color: #da251d; }

.honor_view {
  padding-top: 70px; }
  .honor_view .list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: -75px; }
    .honor_view .list li {
      width: 24%;
      margin-right: 1.3%;
      margin-bottom: 75px; }
      .honor_view .list li:nth-child(4n) {
        margin-right: 0; }
      .honor_view .list li .pic {
        height: 360px;
        background: url(../img/honor-bg001.jpg) no-repeat center;
        background-size: cover;
        padding: 40px 28px;
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center; }
        .honor_view .list li .pic img {
          max-width: 100%;
          max-height: 100%;
          object-fit: contain; }
      .honor_view .list li .txt {
        padding: 20px 15px;
        background-color: #efefef; }
        .honor_view .list li .txt h3 {
          font-size: 18px;
          line-height: 1.2;
          color: #333333;
          overflow: hidden;
          text-overflow: ellipsis;
          white-space: nowrap;
          text-align: center; }

.news_view {
  padding-top: 105px; }
  .news_view .tit {
    text-align: center; }
    .news_view .tit h3 {
      font-size: 36px;
      line-height: 1.2;
      color: #333333;
      font-weight: bold; }
    .news_view .tit h5 {
      font-size: 18px;
      line-height: 1.2;
      color: #999999;
      margin-top: 12px;
      text-transform: uppercase;
      font-family: Arial, Helvetica, sans-serif; }
  .news_view .list {
    margin-top: 44px; }
    .news_view .list li:first-child .wrap::before {
      content: '';
      display: block;
      position: absolute;
      height: 1px;
      left: 0;
      right: 0;
      top: -35px;
      background-color: #e1e1e1; }
    .news_view .list li a {
      display: block;
      padding: 35px 0; }
      .news_view .list li a:hover {
        background-color: #f5f5f5; }
    .news_view .list li .wrap {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      align-items: flex-start;
      position: relative; }
      .news_view .list li .wrap::after {
        content: '';
        display: block;
        position: absolute;
        height: 1px;
        left: 0;
        right: 0;
        bottom: -50px;
        background-color: #e1e1e1;
        display: none; }
    .news_view .list li .pic {
      width: 520px;
      height: 265px;
      position: relative;
      overflow: hidden;
      margin-left: 25px; }
      .news_view .list li .pic img {
        width: 100%;
        height: 100%;
        display: block;
        position: absolute;
        left: 0;
        top: 0;
        object-fit: cover;
        transition-duration: .3s; }
      .news_view .list li .pic:hover img {
        transform: scale(1.1); }
    .news_view .list li .txt {
      width: 41.5%;
      padding-left: 30px;
      margin-right: auto;
      margin-top: 25px; }
      .news_view .list li .txt h3 {
        font-size: 24px;
        line-height: 1.2;
        color: #464646;
        font-weight: bold;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap; }
        .news_view .list li .txt h3:hover {
          color: #da251d; }
      .news_view .list li .txt p {
        font-size: 16px;
        line-height: 30px;
        color: #666666;
        margin-top: 20px;
        height: 60px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical; }
      .news_view .list li .txt span {
        display: block;
        padding-left: 30px;
        position: relative;
        font-size: 14px;
        line-height: 30px;
        color: #757575;
        margin-top: 40px; }
        .news_view .list li .txt span::after {
          content: '';
          display: block;
          width: 23px;
          height: 2px;
          background-color: #717171;
          position: absolute;
          top: 14px;
          left: 0; }
        .news_view .list li .txt span:hover {
          color: #da251d; }
          .news_view .list li .txt span:hover::after {
            background-color: #da251d; }
    .news_view .list li .time {
      font-family: Arial, Helvetica, sans-serif;
      text-align: right;
      margin-right: 25px;
      margin-top: 25px; }
      .news_view .list li .time h3 {
        font-size: 60px;
        line-height: 1;
        color: #da251d; }
      .news_view .list li .time h6 {
        font-size: 26px;
        line-height: 1.2;
        color: #757575;
        margin-top: 10px; }

.case_view {
  padding-top: 80px; }
  .case_view .list {
    margin-bottom: -50px;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start; }
    .case_view .list li {
      width: 32%;
      margin-right: 2%;
      margin-bottom: 50px; }
      .case_view .list li:nth-child(3n) {
        margin-right: 0; }
      .case_view .list li .pic {
        display: block;
        width: 100%;
        position: relative;
        padding-bottom: 71.5%;
        overflow: hidden; }
        .case_view .list li .pic img {
          width: 100%;
          height: 100%;
          display: block;
          position: absolute;
          left: 0;
          top: 0;
          object-fit: cover;
          transition-duration: .3s; }
        .case_view .list li .pic .txt {
          padding: 20px 15px;
          background-color: #f9f9f9;
          position: absolute;
          bottom: 0;
          right: 0;
          left: 0;
          opacity: 1;
          visibility: visible;
          transition-duration: .3s; }
          .case_view .list li .pic .txt h3 {
            font-size: 18px;
            line-height: 1.2;
            color: #333333;
            text-align: center;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap; }
        .case_view .list li .pic::after {
          content: '';
          display: block;
          width: 100%;
          height: 100%;
          position: absolute;
          top: 0;
          left: 0;
          background: url(../img/business-more001.png) no-repeat center;
          background-color: rgba(0, 0, 0, 0.3);
          opacity: 0;
          visibility: hidden;
          transition-duration: .3s; }
        .case_view .list li .pic:hover .txt {
          opacity: 0;
          visibility: hidden; }
        .case_view .list li .pic:hover::after {
          opacity: 1;
          visibility: visible; }

.banner {
  height: 100vh;
  max-height: 1080px;
  position: relative; 
  user-select: none; 
}
 
    .banner .arrow {
      content: '';
      display: block;
      width: 115px;
      height: 75px;
      background: url(../img/banner-ico01.png) no-repeat center;
      background-size: contain;
      position: absolute;
      bottom: 50px;
      left: calc(50% - 31px);
      z-index: 2; 
    }
    .banner .arrow::after{
      content: '';
      display: block;
      width: 2px;
      height: 7px;
      background-color: #fff;
      position: absolute;
      top: 13px;
      left: calc(50% - 1px);
      -webkit-animation: bounce-up 3s 0.8s linear infinite;
           
      -ms-animation: bounce-up 3s 0.8s linear infinite;
      animation:bounce-up 3s 0.8s linear infinite;
    }
   
   @keyframes bounce-up{
     25% {
           transform: translateY(10px);
       }
       50%, 100% {
           transform: translateY(0);
       }
       75% {
           transform: translateY(10px);
       }
   }
   @-webkit-keyframes bounce-up{
     25% {
           transform: translateY(10px);
       }
       50%, 100% {
           transform: translateY(0);
       }
       75% {
           transform: translateY(10px);
       }
   }
   


  .banner .button-prev {
    width: 45px;
    height: 70px;
    cursor: pointer;
    background: url(../img/banner-left01.png) no-repeat center;
    position: absolute;
    left: 4%;
    top: 49%;
    z-index: 1;
    transition-duration: .3s; }
  .banner .button-next {
    width: 45px;
    height: 70px;
    cursor: pointer;
    background: url(../img/banner-left01.png) no-repeat center;
    position: absolute;
    right: 4%;
    top: 49%;
    z-index: 1;
    transition-duration: .3s;
    transform: rotate(180deg); }

.banner .swiper-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0; }

.banner .swiper-pagination {
  display: none;
  bottom: 35px; }
  .banner .swiper-pagination .swiper-pagination-bullet {
    background-color: #c3c3c3;
    opacity: 1; }
  .banner .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #da251d; }

.banner .mobile {
  display: none; }

.banner .swiper-slide .bg {
  width: 100%;
  height: 100%;
  object-fit: cover; }


.banner .swiper-slide.id1 .txt {
  position: absolute;
  left: 50%;
  margin-left: -400px;
  top: 44%;

 }

 .banner .swiper-slide.id2 .txt {
  position: absolute;

  left: 10%;
  top: 30%;

 }

 .banner .swiper-slide.id3 .txt {
  position: absolute;

  left: 10%;
  top: 30%;

 }

 .banner .swiper-slide.id4 .txt {
  position: absolute;

  right: 10%;
  top: 30%;

 }

 .banner .swiper-slide-active .txt {
  animation: fadeInRight 3s;

 }





.about {
  padding-top: 285px;
  padding-bottom: 245px;
  background: url(../img/about-bg01.jpg) no-repeat center;
  /* background-size: cover; */
  background-attachment: fixed;
  
 }
  .about .wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between; }
  .about .txt {
    width: 50%; }
    .about .txt h3 {
      font-size: 40px;
      line-height: 1.2;
      color: #fff;
      font-weight: bold; }
    .about .txt h5 {
      font-size: 36px;
      line-height: 1.5;
      color: #fff; }
    .about .txt p {
      font-size: 16px;
      line-height: 30px;
      color: #fff;
      margin-top: 65px;
      padding-right: 50px; }
    .about .txt a {
      width: 170px;
      height: 47px;
      border: 3px solid #fff;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      margin-top: 60px;
      transition-duration: .3s; }
      .about .txt a span {
        font-size: 16px;
        line-height: 1.2;
        color: #fff; }
      .about .txt a i {
        width: 7px;
        height: 11px;
        background: url(../img/more-ico01.png) no-repeat center;
        margin-left: 22px; }
      .about .txt a:hover {
        background-color: #da251d;
        border-color: #da251d;
       }
  .about .list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    max-width: 603px;
    margin-top: 150px; }
    .about .list li {
      width: 33.3%;
      margin-bottom: 70px; }
      .about .list li:nth-child(n+4) {
        margin-bottom: 0; }
      .about .list li h3 {
        font-size: 16px;
        color: #fff;
        line-height: 1.2; }
        .about .list li h3 span {
          font-size: 60px;
          color: #fff;
          line-height: 1.2;
          font-weight: bold;
          font-family: Arial, Helvetica, sans-serif;
          margin-right: 12px; }
      .about .list li h5 {
        font-size: 16px;
        color: #fff;
        line-height: 1.2;
        margin-top: 7px; }

.product {
  padding: 100px 0 120px;
  position: relative;
  overflow: hidden;
  background: url(../img/product-bg01.jpg) no-repeat center bottom;
  background-size: 100% 398px; }
  .product .tit {
    text-align: center; }
    .product .tit h5 {
      font-size: 18px;
      line-height: 1.2;
      color: #999999;
      font-family: Arial, Helvetica, sans-serif;
      text-transform: uppercase; }
    .product .tit h3 {
      font-size: 40px;
      line-height: 1.2;
      color: #333333;
      font-weight: bold;
      margin-top: 10px; }
  .product .swiper_box {
    margin-left: -125px;
    margin-right: -125px;
    padding: 0 125px;
    position: relative; }
    .product .swiper_box .button-prev {
      width: 65px;
      height: 65px;
      background: url(../img/product-left01.png) no-repeat center;
      border-radius: 50%;
      background-color: #c3c3c3;
      position: absolute;
      top: 48%;
      border-radius: 50%;
      left: 0;
      cursor: pointer;
      z-index: 99;
      transition-duration: 0.3s; }
      .product .swiper_box .button-prev:hover {
        background-color: #da251d; }
    .product .swiper_box .button-next {
      width: 65px;
      height: 65px;
      background: url(../img/product-left01.png) no-repeat center;
      border-radius: 50%;
      background-color: #c3c3c3;
      position: absolute;
      top: 48%;
      border-radius: 50%;
      right: 0;
      cursor: pointer;
      z-index: 99;
      transition-duration: 0.3s;
      transform: rotate(180deg); }
      .product .swiper_box .button-next:hover {
        background-color: #da251d; }
  .product .product-swiper {
    margin-top: 50px;
    padding-bottom: 35px; }
    .product .product-swiper .swiper-pagination {
      display: none;
      bottom: 0; }
      .product .product-swiper .swiper-pagination .swiper-pagination-bullet {
        background-color: #c3c3c3;
        opacity: 1; }
      .product .product-swiper .swiper-pagination .swiper-pagination-bullet-active {
        background-color: #da251d; }
    .product .product-swiper .swiper-slide {
      width: 350px;
      position: relative; }
      .product .product-swiper .swiper-slide:nth-child(odd) {
        top: 30px; }
      .product .product-swiper .swiper-slide .pic {
        position: relative;
        overflow: hidden;
        height: 560px; }
        .product .product-swiper .swiper-slide .pic .bg {
          width: 100%;
          height: 100%;
          display: block;
          position: absolute;
          left: 0;
          top: 0;
          object-fit: cover;
          transition-duration: .3s; }
        .product .product-swiper .swiper-slide .pic .txt {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          display: flex;
          justify-content: center;
          flex-direction: column;
          align-items: center;
          transition-duration: .3s;
          text-align: center; }
          .product .product-swiper .swiper-slide .pic .txt .ico {
            width: 90px;
            height: 90px;
            object-fit: scale-down;
            margin-top: 35px; }
          .product .product-swiper .swiper-slide .pic .txt .line {
            width: 29px;
            height: 4px;
            background-color: #fff;
            margin-top: 20px; }
          .product .product-swiper .swiper-slide .pic .txt h3 {
            font-size: 26px;
            line-height: 1.2;
            color: #ffffff;
            font-weight: bold;
            margin-top: 15px; }
          .product .product-swiper .swiper-slide .pic .txt h5 {
            font-size: 14px;
            line-height: 1.2;
            color: #dae1e6;
            margin-top: 5px;
            text-transform: uppercase; }
          .product .product-swiper .swiper-slide .pic .txt .right_ico {
            width: 40px;
            height: 25px;
            background: url(../img/product-right01.png) no-repeat center;
            margin-top: 90px;
            opacity: 0;
            visibility: hidden;
            transition-duration: 0.3s; }
          .product .product-swiper .swiper-slide .pic .txt:hover {
            background-color: rgba(218, 37, 29, 0.8); }
            .product .product-swiper .swiper-slide .pic .txt:hover .right_ico {
              opacity: 1;
              visibility: visible; }

.news {
  padding: 130px 0 120px;
  background: url(../img/news-bg01.jpg) no-repeat center;
  background-size: cover; }
  .news .tit {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between; }
    .news .tit h3 {
      font-size: 40px;
      line-height: 1.2;
      color: #333333;
      font-weight: bold; }
      .news .tit h3 span {
        font-weight: normal;
        font-size: 18px;
        line-height: 1.2;
        color: #999999;
        font-family: Arial, Helvetica, sans-serif;
        text-transform: uppercase;
        display: block;
        margin-bottom: 5px; }
    .news .tit a {
      width: 170px;
      height: 47px;
      border: 3px solid #cac8c8;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center; 
      transition-duration: .3s;
    }
      .news .tit a span {
        font-size: 16px;
        line-height: 1.2;
        color: #333; }
      .news .tit a i {
        width: 7px;
        height: 11px;
        background: url(../img/more-ico02.png) no-repeat center;
        margin-left: 22px; }
      .news .tit a:hover {
        background-color: #da251d;
        border-color: #da251d; }
        .news .tit a:hover span {
          color: #fff; }
        .news .tit a:hover i {
          background-image: url(../img/more-ico01.png); }
  .news .news-swiper {
    margin-top: 75px; }
    .news .news-swiper .swiper-pagination {
      bottom: 0;
      display: none; }
      .news .news-swiper .swiper-pagination .swiper-pagination-bullet {
        background-color: #dcdcdc;
        opacity: 1; }
      .news .news-swiper .swiper-pagination .swiper-pagination-bullet-active {
        background-color: #da251d; }
    .news .news-swiper .swiper-slide .pic {
      position: relative;
      padding-bottom: 69.8%;
      overflow: hidden; }
      .news .news-swiper .swiper-slide .pic img {
        width: 100%;
        height: 100%;
        display: block;
        position: absolute;
        left: 0;
        top: 0;
        object-fit: cover;
        transition-duration: .3s; }
      .news .news-swiper .swiper-slide .pic:hover img {
        transform: scale(1.1); }
    .news .news-swiper .swiper-slide .txt {
      padding: 35px 25px;
      background: no-repeat center;
      background-size: cover;
      background-color: #fff;
      transition-duration: .3s; }
      .news .news-swiper .swiper-slide .txt h3 {
        font-size: 18px;
        line-height: 25px;
        color: #333333;
        height: 50px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        font-weight: bold; }
      .news .news-swiper .swiper-slide .txt p {
        font-size: 14px;
        line-height: 30px;
        color: #666666;
        height: 60px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        margin-top: 15px; }
      .news .news-swiper .swiper-slide .txt .time {
        font-size: 16px;
        line-height: 1.2;
        color: #999999;
        margin-top: 45px; }
    .news .news-swiper .swiper-slide:hover .txt {
      background-image: url(../img/news-bg02.jpg); }
      .news .news-swiper .swiper-slide:hover .txt h3 {
        color: #fff; }
      .news .news-swiper .swiper-slide:hover .txt p {
        color: #fff; }
      .news .news-swiper .swiper-slide:hover .txt .time {
        color: #fff; }

.partners .pic {
  background: url(../img/partners-bg01.jpg) no-repeat center;
  padding: 125px 0;
  background-size: cover;
  text-align: center; }
  .partners .pic h3 {
    font-weight: bold;
    font-size: 30px;
    line-height: 1.2;
    color: #ffffff; }
    .partners .pic h3 span {
      font-size: 100px;
      line-height: 1.2;
      color: #da251d;
      font-family: Arial, Helvetica, sans-serif; }
    .partners .pic h3 i {
      font-size: 71px;
      line-height: 1.2;
      color: #da251d;
      font-family: Arial, Helvetica, sans-serif; }
.partners .pic2 {
  padding: 100px 0 85px;
  background-color: #f4f3f3;
  text-align: center; }

.step-7 {
  overflow: hidden;
  position: relative;
  background-color: #f4f4f4;
  padding-bottom: 90px; }
  .step-7 .col {
    flex: 1 0 0%; }

.step-7 .head {
  background-position: 50%;
  background-repeat: no-repeat;
  
  height: 30vh;
  position: relative;
  background-attachment: fixed;
  /* background-size: contain; */

 }

.step-7 .head .content,
.step-7 .head:before {
  left: 0;
  margin: auto;
  position: absolute;
  right: 0; }

.step-7 .head .content {
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
  top: 22%; }
  .step-7 .head .content i {
    font-size: 71px;
    color: #da251d; }
  .step-7 .head .content .big {
    font-size: 90px;
    color: #da251d; }

.step-7 .container {
  align-items: stretch;
  background: transparent;
  display: flex;
  flex-direction: column;
  height: 50vh;
  justify-content: space-around;
  margin-top: 90px;
  position: relative; }

.step-7 .container .col {
  margin: .8571428571rem;
  overflow: hidden;
  position: relative; }

.step-7 .container .col:after,
.step-7 .container .col:before {
  bottom: 0;
  content: "";
  display: block;
  margin: auto;
  position: absolute;
  top: 0;
  width: 18.8571428571rem;
  z-index: 1; }

.step-7 .container .col:before {
  background: linear-gradient(90deg, #f2f2f2, rgba(242, 242, 242, 0));
  left: 0; }

.step-7 .container .col:after {
  background: linear-gradient(90deg, rgba(242, 242, 242, 0), #f2f2f2);
  right: 0; }

@keyframes case {
  0% {
    transform: translateX(0); }
  to {
    transform: translateX(-50%); } }
.step-7 .container .col .items {
  align-items: stretch;
  animation-duration: 45s;
  animation-iteration-count: infinite;
  animation-name: case;
  animation-timing-function: linear;
  display: flex;
  height: 100%;
  position: absolute; }

.step-7 .container .col .items .item {
  align-items: center;
  aspect-ratio: 2;
  background-color: #fff;
  border-radius: .5714285714rem;
  cursor: pointer;
  display: flex;
  filter: grayscale(100%);
  height: 100%;
  justify-content: center;
  margin: 0 0.8571428571rem; }

.step-7 .container .col .items .item img {
  max-height: 100%;
  max-width: 100%; }

.step-7 .container .col .items .item:hover {
  filter: none; }

.step-7 .container .col:nth-child(2n) .items {
  animation-direction: reverse; }

.step-7 .container .col:hover .items {
  animation-play-state: paused; }

.footer {
  padding-top: 100px;
  background-color: #fff;
  border-top: 1px solid #e9e9e9; }
  .footer .wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    align-items: flex-start;
    position: relative; }
  .footer .footer_nav {
    width: 54%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    align-items: flex-start; }
    .footer .footer_nav dl dt {
      margin-bottom: 35px; }
      .footer .footer_nav dl dt a {
        font-size: 18px;
        line-height: 1;
        color: #333333;
        font-weight: bold; }
        .footer .footer_nav dl dt a:hover {
          color: #b5b4b4; }
    .footer .footer_nav dl dd {
      margin-bottom: 25px; }
      .footer .footer_nav dl dd a {
        font-size: 14px;
        line-height: 1;
        color: #666666; }
        .footer .footer_nav dl dd a:hover {
          color: #999999; }
  .footer .info_box {
    width: 280px; }
    .footer .info_box .txt {
      text-align: right; }
      .footer .info_box .txt h5 {
        font-size: 14px;
        line-height: 1.2;
        color: #999999; }
        .footer .info_box .txt h5 span {
          display: block;
          font-size: 36px;
          color: #333;
          margin-top: 5px;
          font-family: Arial, Helvetica, sans-serif;
          font-weight: bold; }
      .footer .info_box .txt p {
        margin-top: 20px;
        font-size: 14px;
        line-height: 1.2;
        color: #999999; }
        .footer .info_box .txt p span {
          display: block;
          font-size: 14px;
          line-height: 1.2;
          color: #333;
          margin-top: 8px; }
    .footer .info_box .codes {
      margin-top: 95px;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: flex-end; }
      .footer .info_box .codes a {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background-color: rgba(87, 87, 87, 0.12);
        margin-right: 12px;
        transition-duration: .3s;
        position: relative; }
      .footer .info_box .codes a .ico1 {
        width: 100%;
        height: 100%;
        padding: 12px;
        object-fit: scale-down;
        transition-duration: .3s; }
      .footer .info_box .codes a:hover {
        background-color: #da251d; }
      .footer .info_box .codes a:hover .ico1 {
        filter: grayscale(100%) brightness(500%); }
      .footer .info_box .codes a:hover .pic {
        display: block;
        box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.3); }
      .footer .info_box .codes a .pic {
        width: 120px;
        background-color: #fff;
        display: none;
        position: absolute;
        padding: 5px;
        bottom: 55px;
        left: -38px;
        text-align: center; }
      .footer .info_box .codes a .pic h6 {
        display: block;
        font-size: 14px;
        color: #666;
        margin-bottom: 4px; }
      .footer .info_box .codes a .pic img {
        width: 100%; }
      .footer .info_box .codes a .pic::before {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        bottom: -10px;
        width: 20px;
        height: 10px;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-top: 10px solid #FFF;
        margin: 0 auto;
        box-sizing: border-box; }
    .footer .info_box .links {
      display: block;
      margin-top: 40px;
      position: relative;
      width: 190px;
      height: 40px;
      margin-left: auto; }
      .footer .info_box .links h3 {
        font-size: 14px;
        line-height: 38px;
        color: #333;
        padding-left: 15px;
        padding-right: 50px;
        margin-left: auto;
        border: 1px solid #999999;
        cursor: pointer;
        background: url(../img/links-ico01.png) no-repeat right 20px center;
        text-align: left; }
      .footer .info_box .links .links_box {
        border: 2px solid #999999;
        padding: 15px 15px;
        transition-duration: 0.3s;
        position: absolute;
        bottom: 100%;
        left: 0;
        right: 0;
        transition-duration: 0.3s;
        opacity: 0;
        visibility: hidden;
        background-color: #fff; }
        .footer .info_box .links .links_box a {
          display: block;
          font-size: 14px;
          line-height: 20px;
          color: #333; }
          .footer .info_box .links .links_box a:hover {
            color: #da251d; }
      .footer .info_box .links:hover .links_box {
        opacity: 1;
        visibility: visible; }
  .footer .copy {
    width: 100%;
    margin-top: 30px;
    padding: 30px 0;
    border-top: 1px solid #ebebeb;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between; }
    .footer .copy p {
      font-size: 14px;
      line-height: 1.5;
      color: #333333; }
      .footer .copy p a:hover {
        color: #999; }

.about_view .intro {
  padding: 105px 0 110px; }


  .about_view .intro .pic{
    
    width: 1000px;
    margin: 0 auto;
    height: 500px;
    position: relative;
    margin-top:40px;
    cursor: pointer;
  }
  .about_view .intro .pic img{
    
   width: 100%;
   height: 100%;
   object-fit: cover;

  }
  
  .about_view .intro .pic:after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: url(../img/shipin-ico001.png) no-repeat center;
    background-color: rgba(0, 0, 0, 0.4);
 

}


  .about_view .intro .txt {
    font-size: 18px;
    line-height: 40px;
    color: #3f3f3f;
    white-space: pre-wrap;
    text-align: center;
    margin-top: 30px; }
  .about_view .intro .list {
    margin-top: 45px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between; }
    .about_view .intro .list li {
      text-align: center; }
      .about_view .intro .list li .ico {
        width: 52px;
        height: 52px;
        object-fit: scale-down;
        margin-bottom: 25px; }
      .about_view .intro .list li h3 {
        font-size: 16px;
        line-height: 1.2;
        color: #da251d; }
        .about_view .intro .list li h3 span {
          font-size: 66px;
          line-height: 1.2;
          color: #da251d;
          font-weight: bold; }
      .about_view .intro .list li h5 {
        font-size: 18px;
        line-height: 1.2;
        color: #333333;
        margin-top: 30px; }
.about_view .ban {
  padding: 220px 0 220px;
  background: url(../img/intro-bg001.jpg) no-repeat center;
  background-size: cover; }
  .about_view .ban .txt {
    text-align: center; }
    .about_view .ban .txt h3 {
      font-size: 48px;
      line-height: 1.2;
      color: #fff;
      font-weight: bold; }
    .about_view .ban .txt p {
      font-size: 18px;
      line-height: 1.2;
      color: #fffefe;
      margin-top: 40px; }
.about_view .history {
  padding-top: 95px; }
  .about_view .history .tabs-swiper {
    margin-top: 30px; }
    .about_view .history .tabs-swiper::after {
      content: '';
      display: block;
      height: 1px;
      width: 100%;
      position: absolute;
      left: 0;
      bottom: 12px;
      background-color: #f4f4f4; }
    .about_view .history .tabs-swiper .swiper-slide {
      width: 220px;
      font-size: 18px;
      line-height: 1.2;
      color: #515151;
      padding-bottom: 35px;
      text-align: center;
      letter-spacing: 3px;
      position: relative;
      cursor: pointer; }
      .about_view .history .tabs-swiper .swiper-slide::before {
        content: '';
        display: block;
        width: 27px;
        height: 27px;
        border-radius: 50%;
        background-color: #f4f4f4;
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1; }
      .about_view .history .tabs-swiper .swiper-slide::after {
        content: '';
        display: block;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background-color: #cccccc;
        position: absolute;
        bottom: 7px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 2;
        transition-duration: .3s; }
      .about_view .history .tabs-swiper .swiper-slide-active::before {
        background-color: rgba(218, 37, 29, 0.4); }
      .about_view .history .tabs-swiper .swiper-slide-active::after {
        background-color: #da251d; }
.about_view .history-swiper {
  margin-top: 50px; }
  .about_view .history-swiper .swiper-slide {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between; }
    .about_view .history-swiper .swiper-slide .pic {
      width: 50%;
      height: 410px;
      position: relative;
      overflow: hidden; }
      .about_view .history-swiper .swiper-slide .pic img {
        width: 100%;
        height: 100%;
        display: block;
        position: absolute;
        left: 0;
        top: 0;
        object-fit: cover;
        transition-duration: .3s; }
      .about_view .history-swiper .swiper-slide .pic:hover img {
        transform: scale(1.1); }
    .about_view .history-swiper .swiper-slide .txt {
      width: 50%;
      height: 410px;
      padding: 50px 5% 20px;
      background-color: #f4f4f4; 
    }
    .about_view .history-swiper .swiper-slide .txt h5{
      font-size: 24px;
      line-height: 1.2;
      color: #4c4c4c;
      font-weight: bold;
      margin-top: 10px;
    }
      .about_view .history-swiper .swiper-slide .txt h3 {
        font-size: 24px;
        line-height: 1.2;
        color: #4c4c4c;
        font-weight: bold; }
      .about_view .history-swiper .swiper-slide .txt p {
        font-size: 16px;
        line-height: 40px;
        color: #666666;
        white-space: pre-wrap;
        margin-top: 20px; }
.about_view .adv {
  padding: 120px 0; }
  .about_view .adv .list {
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between; }
    .about_view .adv .list li {
      width: 11%;
      height: 470px;
      position: relative;
      transition-duration: .3s; }
      .about_view .adv .list li .bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover; }
      .about_view .adv .list li .txt {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        text-align: center;
        background-color: rgba(0, 0, 0, 0.2);
        justify-content: flex-start;
        transition-duration: .3s; }
        .about_view .adv .list li .txt .pic {
          width: 50px;
          height: 50px;
          margin-top: 150px; }
        .about_view .adv .list li .txt .ico {
          width: 100%;
          height: 100%;
          object-fit: scale-down; }
        .about_view .adv .list li .txt h3 {
          font-size: 20px;
          line-height: 1.2;
          color: #ffffff;
          margin-top: 50px;
          transition-duration: .3s; }
        .about_view .adv .list li .txt h5 {
          font-size: 16px;
          line-height: 25px;
          color: #ffffff;
          height: 50px;
          display: none;
          margin-top: 30px;
          padding: 0 30px;
          transition-duration: .3s; }
        .about_view .adv .list li .txt h6 {
          font-size: 16px;
          line-height: 1.2;
          color: #ffffff;
          margin-top: 150px;
          padding-bottom: 1px;
          border-bottom: 1px solid #fff;
          display: inline-block; }
      .about_view .adv .list li.on {
        width:29%;
        position: relative;
        top: -15px; }
        .about_view .adv .list li.on .txt {
          background-color: rgba(218, 37, 29, 0.5); }

          .about_view .adv .list li.on .txt .pic {
            width: 100px;
            height: 100px;
            padding: 25px;
            border-radius: 50%;
            border: 3px solid #fff;
            margin-top: 100px; 
          }


          .about_view .adv .list li.on .txt h3 {
            margin-top: 15px; }
          .about_view .adv .list li.on .txt h5 {
            display: block; }
          .about_view .adv .list li.on .txt h6 {
            margin-top: 95px; }
  .about_view .adv .adv-swiper {
    margin-top: 30px;
    padding-bottom: 30px;
    display: none; }
    .about_view .adv .adv-swiper .swiper-pagination {
      display: block;
      bottom: 0; }
      .about_view .adv .adv-swiper .swiper-pagination .swiper-pagination-bullet {
        background-color: #c3c3c3;
        opacity: 1; }
      .about_view .adv .adv-swiper .swiper-pagination .swiper-pagination-bullet-active {
        background-color: #da251d; }
    .about_view .adv .adv-swiper .swiper-slide {
      width: 100%;
      height: 380px; }
      .about_view .adv .adv-swiper .swiper-slide .bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover; }
      .about_view .adv .adv-swiper .swiper-slide .txt {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        text-align: center;
        background-color: rgba(0, 0, 0, 0.2);
        justify-content: flex-start;
        transition-duration: .3s; }
        .about_view .adv .adv-swiper .swiper-slide .txt .pic {
          width: 70px;
          height: 70px;
          padding: 18px;
          border-radius: 50%;
          border: 1px solid #fff;
          margin-top: 90px; }
        .about_view .adv .adv-swiper .swiper-slide .txt .ico {
          width: 100%;
          height: 100%;
          object-fit: scale-down; }
        .about_view .adv .adv-swiper .swiper-slide .txt h3 {
          font-size: 20px;
          line-height: 1.2;
          color: #ffffff;
          margin-top: 15px;
          transition-duration: .3s; }
        .about_view .adv .adv-swiper .swiper-slide .txt h5 {
          font-size: 16px;
          line-height: 25px;
          color: #ffffff;
          height: 50px;
          display: none;
          margin-top: 30px;
          padding: 0 30px;
          transition-duration: .3s;
          display: block; }
        .about_view .adv .adv-swiper .swiper-slide .txt h6 {
          font-size: 16px;
          line-height: 1.2;
          color: #ffffff;
          margin-top: 60px;
          padding-bottom: 1px;
          border-bottom: 1px solid #fff;
          display: inline-block; }
      .about_view .adv .adv-swiper .swiper-slide:hover .txt {
        background-color: rgba(218, 37, 29, 0.5); }
.about_view .strength {
  padding: 90px 0 120px;
  background-color: #f6f6f6;
  overflow: hidden; }
  .about_view .strength .strength-swiper {
    margin-top: 60px;
    overflow: visible; }
    .about_view .strength .strength-swiper .swiper-pagination {
      display: none;
      bottom: 0; }
      .about_view .strength .strength-swiper .swiper-pagination .swiper-pagination-bullet {
        background-color: #c3c3c3;
        opacity: 1; }
      .about_view .strength .strength-swiper .swiper-pagination .swiper-pagination-bullet-active {
        background-color: #da251d; }
    .about_view .strength .strength-swiper .button-prev {
      width: 65px;
      height: 65px;
      background: url(../img/product-left01.png) no-repeat center;
      border-radius: 50%;
      background-color: #c3c3c3;
      position: absolute;
      top: 43%;
      border-radius: 50%;
      left: 9%;
      cursor: pointer;
      z-index: 99;
      transition-duration: 0.3s; }
      .about_view .strength .strength-swiper .button-prev:hover {
        background-color: #da251d; }
    .about_view .strength .strength-swiper .button-next {
      width: 65px;
      height: 65px;
      background: url(../img/product-left01.png) no-repeat center;
      border-radius: 50%;
      background-color: #c3c3c3;
      position: absolute;
      top: 43%;
      border-radius: 50%;
      right: 9%;
      cursor: pointer;
      z-index: 99;
      transition-duration: 0.3s;
      transform: rotate(180deg); }
      .about_view .strength .strength-swiper .button-next:hover {
        background-color: #da251d; }
    .about_view .strength .strength-swiper .swiper-slide {
      width: 1080px;
      transform: scale(0.8);
      position: relative; }
      .about_view .strength .strength-swiper .swiper-slide .pic {
        display: block;
        width: 100%;
        position: relative;
        padding-bottom: 55%;
        overflow: hidden; }
        .about_view .strength .strength-swiper .swiper-slide .pic img {
          width: 100%;
          height: 100%;
          display: block;
          position: absolute;
          left: 0;
          top: 0;
          object-fit: cover;
          transition-duration: .3s; }
        .about_view .strength .strength-swiper .swiper-slide .pic .txt {
          position: absolute;
          left: 0;
          bottom: 0;
          width: 100%;
          padding: 25px 22px;
          background-color: #da251d;
          transition-duration: .3s;
          opacity: 0; }
          .about_view .strength .strength-swiper .swiper-slide .pic .txt h3 {
            font-size: 24px;
            line-height: 1.2;
            color: #ffffff;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            font-weight: bold; }
        .about_view .strength .strength-swiper .swiper-slide .pic:hover .txt {
          opacity: 1; }
      .about_view .strength .strength-swiper .swiper-slide::after {
        content: '';
        display: block;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.7);
        position: absolute;
        top: 0;
        left: 0;
        transition-duration: .3s; }
      .about_view .strength .strength-swiper .swiper-slide-active {
        transform: scale(1); }
        .about_view .strength .strength-swiper .swiper-slide-active::after {
          opacity: 0;
          visibility: hidden; }
.about_view .team {
  padding: 85px 0 95px;
  background: url(../img/team-bg001.jpg) no-repeat center;
  background-size: cover; }
  .about_view .team .com-tit1 {
    text-align: left; }
  .about_view .team .con {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between; }
    .about_view .team .con .left {
      width: 64%;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between; }
      .about_view .team .con .left img {
        object-fit: cover; }
        .about_view .team .con .left img:nth-child(1) {
          width: 100%;
          height: 350px;
          margin-bottom: 10px; }
        .about_view .team .con .left img:nth-child(n+2) {
          width: 49.3%;
          height: 350px; }
    .about_view .team .con .right {
      width: 35%; }
      .about_view .team .con .right img {
        height: 710px;
        width: 100%;
        object-fit: cover; }
.about_view .honor {
  padding: 50px 0 80px; 
  overflow: hidden;
}
  .about_view .honor .com-tit1 {
    text-align: left; }
  .about_view .honor .swiper_box {
    margin-left: -125px;
    margin-right: -125px;
    padding: 0 125px;
    position: relative;
    margin-top: 70px; }
    .about_view .honor .swiper_box .button-prev {
      width: 65px;
      height: 65px;
      background: url(../img/product-left01.png) no-repeat center;
      border-radius: 50%;
      background-color: #c3c3c3;
      position: absolute;
      top: 33%;
      border-radius: 50%;
      left: 0;
      cursor: pointer;
      z-index: 99;
      transition-duration: 0.3s; }
      .about_view .honor .swiper_box .button-prev:hover {
        background-color: #da251d; }
    .about_view .honor .swiper_box .button-next {
      width: 65px;
      height: 65px;
      background: url(../img/product-left01.png) no-repeat center;
      border-radius: 50%;
      background-color: #c3c3c3;
      position: absolute;
      top: 33%;
      border-radius: 50%;
      right: 0;
      cursor: pointer;
      z-index: 99;
      transition-duration: 0.3s;
      transform: rotate(180deg); }
      .about_view .honor .swiper_box .button-next:hover {
        background-color: #da251d; }
  .about_view .honor .honor-swiper .swiper-pagination {
    display: none;
    bottom: 0; }
    .about_view .honor .honor-swiper .swiper-pagination .swiper-pagination-bullet {
      background-color: #c3c3c3;
      opacity: 1; }
    .about_view .honor .honor-swiper .swiper-pagination .swiper-pagination-bullet-active {
      background-color: #da251d; }
  .about_view .honor .honor-swiper .swiper-slide .pic {
    display: block;
    width: 100%;
    position: relative;
    padding-bottom: 70%;
    overflow: hidden; }
    .about_view .honor .honor-swiper .swiper-slide .pic img {
      width: 100%;
      height: 100%;
      display: block;
      position: absolute;
      left: 0;
      top: 0;
      object-fit: contain;
      transition-duration: .3s; }
    .about_view .honor .honor-swiper .swiper-slide .pic:hover img {
      transform: scale(1.1); }

.business_view_1 .intro {
  padding-top: 110px; }
  .business_view_1 .intro .tit {
    text-align: center; }
    .business_view_1 .intro .tit h3 {
      font-size: 40px;
      line-height: 1.2;
      color: #333333;
      font-weight: bold; }
    .business_view_1 .intro .tit p {
      font-size: 18px;
      line-height: 30px;
      color: #666666;
      margin-top: 30px;
      white-space: pre-wrap; }
  .business_view_1 .intro .list1 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-evenly;
    align-items: flex-start;
    margin-top: 125px; }
    .business_view_1 .intro .list1 li {
      text-align: center; }
      .business_view_1 .intro .list1 li .ico {
        width: 110px;
        height: 110px;
        object-fit: scale-down; }
      .business_view_1 .intro .list1 li h3 {
        font-size: 24px;
        line-height: 1.2;
        color: #666666;
        margin-top: 45px; }
      .business_view_1 .intro .list1 li h5 {
        font-size: 16px;
        line-height: 1.2;
        color: #999999;
        margin-top: 20px; }
      .business_view_1 .intro .list1 li p {
        font-size: 14px;
        line-height: 30px;
        color: #999999;
        margin-top: 15px;
        white-space: pre-wrap; }
  .business_view_1 .intro .tit2 {
    margin-top: 85px; }
  .business_view_1 .intro .list2 {
    margin-top: 80px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: -15px; }
    .business_view_1 .intro .list2 li {
      width: 49%;
      margin-bottom: 15px; }
      .business_view_1 .intro .list2 li .pic {
        display: block;
        width: 100%;
        position: relative;
        padding-bottom: 35.5%;
        overflow: hidden; }
        .business_view_1 .intro .list2 li .pic img {
          width: 100%;
          height: 100%;
          display: block;
          position: absolute;
          left: 0;
          top: 0;
          object-fit: cover;
          transition-duration: .3s; }
        .business_view_1 .intro .list2 li .pic .txt {
          position: absolute;
          left: 0;
          bottom: 0;
          width: 100%;
          height: 100%;
          display: flex;
          justify-content: center;
          flex-direction: column;
          align-items: center;
          text-align: center;
          background: linear-gradient(to top, #da251d, transparent);
          opacity: 0;
          visibility: hidden;
          transition-duration: .3s; }
          .business_view_1 .intro .list2 li .pic .txt h3 {
            font-size: 24px;
            line-height: 1.2;
            color: #ffffff; }
        .business_view_1 .intro .list2 li .pic h5 {
          font-size: 24px;
          line-height: 1.2;
          color: #ffffff;
          position: absolute;
          left: 15px;
          bottom: 40px; }
        .business_view_1 .intro .list2 li .pic:hover h5 {
          display: none; }
        .business_view_1 .intro .list2 li .pic:hover .txt {
          opacity: 1;
          visibility: visible; }
.business_view_1 .caseT {
  padding-top: 100px; }
  .business_view_1 .caseT .tit {
    text-align: center;
    padding: 0 120px;
    position: relative; }
    .business_view_1 .caseT .tit a {
      display: inline-block;
      font-size: 12px;
      line-height: 1.2;
      color: #fff;
      padding: 12px 20px;
      background-color: #da251d;
      transition-duration: .3s;
      position: absolute;
      right: 0;
      bottom: 0; }
      .business_view_1 .caseT .tit a:hover {
        background-color: #999; }
    .business_view_1 .caseT .tit h3 {
      font-size: 40px;
      line-height: 1.2;
      color: #333333;
      font-weight: bold; }
    .business_view_1 .caseT .tit p {
      font-size: 18px;
      line-height: 40px;
      color: #666666;
      margin-top: 30px;
      white-space: pre-wrap; }
  .business_view_1 .caseT .caseT-swiper {
    margin-top: 60px;
    padding-bottom: 90px; }
    .business_view_1 .caseT .caseT-swiper .swiper-pagination {
      bottom: 0;
      display: none; }
      .business_view_1 .caseT .caseT-swiper .swiper-pagination .swiper-pagination-bullet {
        background-color: #dcdcdc;
        opacity: 1; }
      .business_view_1 .caseT .caseT-swiper .swiper-pagination .swiper-pagination-bullet-active {
        background-color: #da251d; }
    .business_view_1 .caseT .caseT-swiper .swiper-scrollbar {
      width: 80%;
      max-width: 700px;
      margin: 0 auto;
      left: 0;
      right: 0;
      bottom: 0;
      height: 3px;
      background-color: #efefef;
      display: block !important; }
      .business_view_1 .caseT .caseT-swiper .swiper-scrollbar .swiper-scrollbar-drag {
        height: 3px;
        position: relative;
        background-color: #da251d;
        left: 0;
        top: 0; }
    .business_view_1 .caseT .caseT-swiper .swiper-slide {
      width: 490px; }
      .business_view_1 .caseT .caseT-swiper .swiper-slide .pic {
        display: block;
        width: 100%;
        position: relative;
        padding-bottom: 71.5%;
        overflow: hidden; }
        .business_view_1 .caseT .caseT-swiper .swiper-slide .pic img {
          width: 100%;
          height: 100%;
          display: block;
          position: absolute;
          left: 0;
          top: 0;
          object-fit: cover;
          transition-duration: .3s; }
        .business_view_1 .caseT .caseT-swiper .swiper-slide .pic .txt {
          padding: 20px 15px;
          background-color: #f9f9f9;
          position: absolute;
          bottom: 0;
          right: 0;
          left: 0;
          opacity: 1;
          visibility: visible;
          transition-duration: .3s; }
          .business_view_1 .caseT .caseT-swiper .swiper-slide .pic .txt h3 {
            font-size: 18px;
            line-height: 1.2;
            color: #333333;
            text-align: center; }
        .business_view_1 .caseT .caseT-swiper .swiper-slide .pic::after {
          content: '';
          display: block;
          width: 100%;
          height: 100%;
          position: absolute;
          top: 0;
          left: 0;
          background: url(../img/business-more001.png) no-repeat center;
          background-color: rgba(0, 0, 0, 0.3);
          opacity: 0;
          visibility: hidden;
          transition-duration: .3s; }
        .business_view_1 .caseT .caseT-swiper .swiper-slide .pic:hover .txt {
          opacity: 0;
          visibility: hidden; }
        .business_view_1 .caseT .caseT-swiper .swiper-slide .pic:hover::after {
          opacity: 1;
          visibility: visible; }
.business_view_1 .liuchen {
  padding-top: 100px;
  padding-bottom: 125px; }
  .business_view_1 .liuchen .tit {
    font-size: 40px;
    line-height: 1.2;
    color: #333333;
    font-weight: bold; }
  .business_view_1 .liuchen .con {
    margin-top: 50px;
    text-align: center; }

section.contact {
  padding: 180px 0 130px;
  background: url(../img/contact-bg001.jpg) no-repeat center;
  background-size: cover; }
  section.contact .tit {
    padding-right: 280px;
    position: relative; }
    section.contact .tit h3 {
      font-size: 40px;
      line-height: 1.2;
      color: #fff;
      font-weight: bold; }
    section.contact .tit p {
      font-size: 18px;
      line-height: 35px;
      color: #ffffff;
      margin-top: 25px; }
    section.contact .tit a {
      font-size: 18px;
      line-height: 1.2;
      color: #ffffff;
      padding: 15px 60px;
      background-color: #da251d;
      display: inline-block;
      position: absolute;
      right: 75px;
      bottom: 30px;
      transition-duration: .3s; }
      section.contact .tit a:hover {
        background-color: #999; }

.business_view_4 .wrap {
  max-width: 1450px; }
.business_view_4 .tit2 {
  text-align: center; }
  .business_view_4 .tit2 h3 {
    font-size: 40px;
    line-height: 1.2;
    color: #333333;
    font-weight: bold; }
  .business_view_4 .tit2 p {
    font-size: 18px;
    line-height: 30px;
    color: #666666;
    margin-top: 30px;
    white-space: pre-wrap; }
.business_view_4 .intro {
  padding-top: 110px; }
  .business_view_4 .intro .list {
    margin-top: 60px; }
    .business_view_4 .intro .list li {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      align-items: stretch; }
      .business_view_4 .intro .list li:nth-child(2n) .txt {
        order: 1; }
    .business_view_4 .intro .list .txt {
      background-color: #f5f5f5;
      padding: 50px 4% 0 5%;
      position: relative;
      width: 50%;
      transition-duration: .3s; }
      .business_view_4 .intro .list .txt h3 {
        font-size: 22px;
        line-height: 1.2;
        color: #333333; }
        .business_view_4 .intro .list .txt h3 span {
          font-weight: bold; }
      .business_view_4 .intro .list .txt p {
        font-size: 16px;
        line-height: 30px;
        color: #666;
        margin-top: 20px; }
      .business_view_4 .intro .list .txt::after {
        content: '';
        display: block;
        width: 2px;
        height: 120px;
        background-color: #da251d;
        position: absolute;
        top: 70px;
        left: 7%; }
      .business_view_4 .intro .list .txt:hover {
        background-color: #da251d; }
        .business_view_4 .intro .list .txt:hover h3 {
          color: #fff; }
        .business_view_4 .intro .list .txt:hover p {
          color: #fff; }
        .business_view_4 .intro .list .txt:hover::after {
          background-color: #fff; }
    .business_view_4 .intro .list .pic {
      width: 50%;
      height: 320px;
      position: relative;
      overflow: hidden; }
      .business_view_4 .intro .list .pic img {
        width: 100%;
        height: 100%;
        display: block;
        position: absolute;
        left: 0;
        top: 0;
        object-fit: cover;
        transition-duration: .3s; }
.business_view_4 .duiwu {
  padding: 100px 0; }
  .business_view_4 .duiwu .list {
    margin-top: 55px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: -75px; }
    .business_view_4 .duiwu .list li {
      width: 32%;
      margin-bottom: 75px; }
      .business_view_4 .duiwu .list li .pic {
        display: block;
        width: 100%;
        position: relative;
        padding-bottom: 72%;
        overflow: hidden; }
        .business_view_4 .duiwu .list li .pic img {
          width: 100%;
          height: 100%;
          display: block;
          position: absolute;
          left: 0;
          top: 0;
          object-fit: cover;
          transition-duration: .3s; }
        .business_view_4 .duiwu .list li .pic:hover img {
          transform: scale(1.1); }

.business_view_5 .list3 {
  margin-top: 100px; }
  .business_view_5 .list3 li {
    padding: 100px 0 85px; }
    .business_view_5 .list3 li:nth-child(odd) {
      background-color: #f6f6f6; }
    .business_view_5 .list3 li:nth-child(2n) .txt {
      order: 1; }
    .business_view_5 .list3 li .wrap {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      align-items: flex-start; }
    .business_view_5 .list3 li .pic {
      width: 40%; }
    .business_view_5 .list3 li .txt {
      width: 47%;
      padding-right: 50px;
      padding-left: 60px; }
      .business_view_5 .list3 li .txt h3 {
        font-size: 32px;
        line-height: 1.2;
        color: #da251d;
        font-weight: bold; }
      .business_view_5 .list3 li .txt p {
        font-size: 18px;
        line-height: 30px;
        color: #1f1f1f;
        padding-left: 25px;
        position: relative;
        border-left: 2px solid #da251d;
        margin-top: 20px; }
      .business_view_5 .list3 li .txt h5 {
        font-size: 24px;
        line-height: 1.2;
        color: #1f1f1f;
        margin-left: 20px;
        margin-top: 35px;
        font-weight: bold; }
      .business_view_5 .list3 li .txt .t2 {
        font-size: 16px;
        line-height: 30px;
        color: #666666;
        white-space: pre-wrap;
        padding-left: 26px;
        margin-top: 20px;
        position: relative; }
        .business_view_5 .list3 li .txt .t2 i {
          color: #da251d;
          position: absolute;
          left: 0; }

.fuwu_view {
  padding: 110px 0 120px; }
  .fuwu_view .wrap {
    max-width: 1440px; }
  .fuwu_view .tit h3{
    font-size: 40px;
    line-height: 1.2;
    color: #333;
    font-weight: bold;
    text-align: center; }
    .fuwu_view .tit p{
      font-size: 18px;
      line-height: 1.8;
      color: #999;
      text-align: center; 
      margin-top: 20px;
      white-space: pre-wrap;
    }


  .fuwu_view .list {
    margin-top: 70px; }
    .fuwu_view .list li {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      align-items: stretch; }
      .fuwu_view .list li:nth-child(2n) .txt {
        order: 1; }
    .fuwu_view .list .txt {
      background-color: #f5f5f5;
      padding: 50px 4% 0 5%;
      position: relative;
      width: 50%;
      transition-duration: .3s;
      background-position: right bottom;
      background-repeat: no-repeat; }
      .fuwu_view .list .txt h3 {
        font-size: 22px;
        line-height: 1.2;
        color: #333333; }
      .fuwu_view .list .txt h5 {
        font-size: 19px;
        line-height: 1.5;
        color: #666;
        margin-top: 12px; }
      .fuwu_view .list .txt p {
        font-size: 16px;
        line-height: 25px;
        color: #888;
        margin-top: 15px;
        white-space: pre-wrap; }
      .fuwu_view .list .txt::after {
        content: '';
        display: block;
        width: 2px;
        height: 120px;
        background-color: #da251d;
        position: absolute;
        top: 70px;
        left: 7%; }
      .fuwu_view .list .txt:hover {
        background-color: #da251d; }
        .fuwu_view .list .txt:hover h3 {
          color: #fff; }
        .fuwu_view .list .txt:hover h5 {
          color: #fff; }
        .fuwu_view .list .txt:hover p {
          color: #fff; }
        .fuwu_view .list .txt:hover::after {
          background-color: #fff; }
    .fuwu_view .list .pic {
      width: 50%;
      height: 320px;
      position: relative;
      overflow: hidden; }
      .fuwu_view .list .pic img {
        width: 100%;
        height: 100%;
        display: block;
        position: absolute;
        left: 0;
        top: 0;
        object-fit: cover;
        transition-duration: .3s; }

.com-tit1 {
  text-align: center; }
  .com-tit1 h3 {
    font-size: 18px;
    line-height: 1.2;
    color: #a1a1a1;
    font-family: Arial, Helvetica, sans-serif;
    text-transform: uppercase; }
  .com-tit1 h5 {
    font-size: 40px;
    line-height: 1.2;
    color: #333;
    font-weight: bold;
    margin-top: 20px; }

.process_view .liuchen {
  padding: 120px 0 200px;
  background: url(../img/process-bg001.jpg) no-repeat center;
  background-size: cover;
 }

  .process_view .liuchen .tit {
    font-size: 40px;
    line-height: 1.2;
    color: #fff;
    text-align: center;
    font-weight: bold; }
  .process_view .liuchen .list {
    width: 50%;
    margin-left: 50%;
    position: relative;
    margin-top: 80px; }

    .process_view .liuchen .list::after {
      content: '';
      display: block;
      width: 1px;
      background-color: #fff;
      position: absolute;
      top: 40px;
      bottom: 40px;
      left: 0; 

    }

    .process_view .liuchen .list li {
      position: relative;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: flex-start;
      margin-bottom: 60px; }
      .process_view .liuchen .list li:last-child {
        margin-bottom: 0; }
      .process_view .liuchen .list li .pic {
        width: 76px;
        height: 76px;
        background-color: #fff;
        border-radius: 50%;
        padding: 18px;
        margin-left: 30px;
        z-index: 1;
        position: relative;
        transition-duration: .3s; 
      }


        .process_view .liuchen .list li .bg1{
          width: 290px;
          background-color: #da251d;
          height: 86px;
          position: absolute;
          left: 15px;
          top: -7px;
          z-index: 1;
          display: none;


        }
        .process_view .liuchen .list li.on .bg1{
          display: block;


        }
        .process_view .liuchen .list li.on .pic img {
          
          filter: grayscale(100%) brightness(500%);

        }
        .process_view .liuchen .list li.on .pic {
          background-color: transparent;
        }
        .process_view .liuchen .list li .pic img {
          width: 100%;
          height: 100%;
          object-fit: scale-down; }
      .process_view .liuchen .list li h3 {
        font-size: 20px;
        line-height: 1.2;
        color: #fff;
        font-weight: bold;
        margin-left: 10px;
        z-index: 1;
        position: relative;
        transition-duration: .3s; }
      .process_view .liuchen .list li .txt {
        background-color: #fff;
        width: 600px;
        height: 230px;
        padding: 90px 80px 20px;
        position: absolute;
        top: 0;
        left: 25px;
        transition-duration: .3s;
        opacity: 0;
        visibility: hidden; }
        .process_view .liuchen .list li .txt h5 {
          font-size: 46px;
          line-height: 1.2;
          color: #fae8e7;
          position: absolute;
          top: 20px;
          right: 30px;
          font-weight: bold; }
        .process_view .liuchen .list li .txt p {
          font-size: 14px;
          line-height: 25px;
          color: #999999; }
      .process_view .liuchen .list li:nth-child(odd) .pic {
        left: -140px; }
      .process_view .liuchen .list li:nth-child(odd) h3 {
        left: -355px; }
      .process_view .liuchen .list li:nth-child(odd) .txt {
        left: -634px; }
        .process_view .liuchen .list li:nth-child(odd) .txt h5 {
          right: initial;
          left: 20px; }
      .process_view .liuchen .list li:nth-child(odd)::after {
        left: -36px; }


        .process_view .liuchen .list li:nth-child(odd) .bg1 {
          left: -312px;
        }
      .process_view .liuchen .list li.on h3 {
        color: #fff;
       }
      .process_view .liuchen .list li.on .txt {
        opacity: 1;
        visibility: visible; }
      .process_view .liuchen .list li::before {
        display: block;
        content: '';
        width: 12px;
        height: 12px;
        background-color: #fff;
        border-radius: 50%;
        position: absolute;
        left: -6px;
        top: 32px; }
      .process_view .liuchen .list li::after {
        display: block;
        content: '';
        width: 30px;
        height: 1px;
        background-color: #fff;
        position: absolute;
        left: 0;
        top: 38px; 
      }
.process_view .adv {
  padding: 95px 0 110px;
  background: url(../img/adv-bg001.jpg) no-repeat center;
  background-size: cover; }
  .process_view .adv .tit {
    font-size: 40px;
    line-height: 1.2;
    color: #333333;
    font-weight: bold;
    text-align: center; }
  .process_view .adv .con {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-evenly;
    margin-top: 100px; }
    .process_view .adv .con .txt {
      text-align: right; }
      .process_view .adv .con .txt h3 {
        font-size: 48px;
        line-height: 1.4;
        color: #333333; }
        .process_view .adv .con .txt h3 span {
          font-weight: bold;
          display: block; }
      .process_view .adv .con .txt h5 {
        font-size: 72px;
        line-height: 1.2;
        color: #da251d;
        font-weight: bold;
        margin-top: 40px; }
    .process_view .adv .con .list {
      width: 57%;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      margin-bottom: -60px; }
      .process_view .adv .con .list li {
        width: 28%;
        height: 190px;
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        transition-duration: .3s;
        background-color: #ffffff;
        margin-bottom: 60px;
        user-select: none; }
        .process_view .adv .con .list li img {
          width: 70px;
          height: 55px;
          object-fit: scale-down; }
        .process_view .adv .con .list li h3 {
          font-size: 24px;
          line-height: 1.2;
          color: #6e6e6e;
          margin-top: 16px;
          transition-duration: .3s; }
        .process_view .adv .con .list li h5 {
          font-size: 18px;
          line-height: 1.2;
          color: #fafafa;
          margin-top: 10px;
          display: none; }
        .process_view .adv .con .list li:hover {
          background-color: #da251d; }
          .process_view .adv .con .list li:hover img {
            display: none; }
          .process_view .adv .con .list li:hover h5 {
            display: block; }
          .process_view .adv .con .list li:hover h3 {
            font-size: 36px;
            font-weight: bold;
            color: #fff; }

.yunwei_view .yunwei {
  padding: 90px 0 65px;
  background: url(../img/yunwei-bg001.jpg) no-repeat center;
  background-size: cover; }
  .yunwei_view .yunwei .tit {
    font-size: 40px;
    line-height: 1.2;
    color: #3f3f3f;
    font-weight: bold;
    text-align: center; }
  .yunwei_view .yunwei .con {
    margin-top: 90px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center; }
    .yunwei_view .yunwei .con .txt {
      margin-right: 29%; }
      .yunwei_view .yunwei .con .txt h3 {
        font-size: 48px;
        line-height: 1.2;
        color: #000;
        font-weight: bold; }
      .yunwei_view .yunwei .con .txt h5 {
        font-size: 40px;
        line-height: 1.2;
        color: #000;
        font-weight: bold;
        margin-top: 25px; }
      .yunwei_view .yunwei .con .txt p {
        font-size: 24px;
        line-height: 1.2;
        color: #666666;
        margin-top: 30px; }
  .yunwei_view .yunwei .list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-top: 35px; }
    .yunwei_view .yunwei .list li {
      width: 26.5%;
      height: 250px;
      position: relative;
      transition-duration: .3s; }
      .yunwei_view .yunwei .list li .pic {
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        background-color: #da251d; }
        .yunwei_view .yunwei .list li .pic .ico {
          width: 82px;
          height: 72px;
          object-fit: scale-down; }
        .yunwei_view .yunwei .list li .pic h3 {
          font-size: 18px;
          line-height: 1.2;
          color: #ffffff;
          font-weight: bold;
          margin-top: 26px; }
      .yunwei_view .yunwei .list li .txt {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        padding: 30px;
        background-color: #fff;
        background-position: bottom 5px right 10px;
        background-repeat: no-repeat;
        opacity: 0;
        visibility: hidden;
        transition-duration: .3s; }
        .yunwei_view .yunwei .list li .txt h3 {
          font-size: 18px;
          line-height: 1.2;
          color: #da251d;
          font-weight: bold; }
        .yunwei_view .yunwei .list li .txt p {
          font-size: 18px;
          line-height: 30px;
          color: #3f3f3f;
          margin-top: 15px;
          white-space: pre-wrap; }
      .yunwei_view .yunwei .list li.on {
        width: 45%; }
        .yunwei_view .yunwei .list li.on .txt {
          opacity: 1;
          visibility: visible; }

.yunwei_view .yunwei .yunwei-swiper {
margin-top: 30px;
padding-bottom: 30px;
display: none;
}
.yunwei_view .yunwei .yunwei-swiper  .swiper-pagination {
display: block;
bottom: 0; 
}
.yunwei_view .yunwei .yunwei-swiper .swiper-pagination .swiper-pagination-bullet {
  background-color: #c3c3c3;
  opacity: 1; }
  .yunwei_view .yunwei .yunwei-swiper  .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #da251d;
 }

.yunwei_view .yunwei .yunwei-swiper .swiper-slide {
width: 300px;
height: 250px;
position: relative;
transition-duration: .3s; }
.yunwei_view .yunwei .yunwei-swiper .swiper-slide .pic {
width: 100%;
height: 100%;
display: flex;
justify-content: center;
flex-direction: column;
align-items: center;
background-color: #da251d; }
.yunwei_view .yunwei .yunwei-swiper .swiper-slide .pic .ico {
width: 82px;
height: 72px;
object-fit: scale-down; }
.yunwei_view .yunwei .yunwei-swiper .swiper-slide .pic h3 {
font-size: 18px;
line-height: 1.2;
color: #ffffff;
font-weight: bold;
margin-top: 26px; }
.yunwei_view .yunwei .yunwei-swiper .swiper-slide .txt {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
padding: 30px;
background-color: #fff;
background-position: bottom 5px right 10px;
background-repeat: no-repeat;
opacity: 0;
visibility: hidden;
transition-duration: .3s; }
.yunwei_view .yunwei .yunwei-swiper .swiper-slide .txt h3 {
font-size: 18px;
line-height: 1.2;
color: #da251d;
font-weight: bold; }
.yunwei_view .yunwei .yunwei-swiper .swiper-slide .txt p {
font-size: 18px;
line-height: 30px;
color: #3f3f3f;
margin-top: 15px;
white-space: pre-wrap; }
.yunwei_view .yunwei .yunwei-swiper .swiper-slide {
width: 300px; }
.yunwei_view .yunwei .yunwei-swiper .swiper-slide .txt {
opacity: 1;
visibility: visible;
 }





.yunwei_view .scheme {

  padding: 100px 0 110px; }
  .yunwei_view .scheme .tit {
    text-align: center; }
    .yunwei_view .scheme .tit h3 {
      font-size: 40px;
      line-height: 1.2;
      color: #333333;
      font-weight: bold; }
    .yunwei_view .scheme .tit h5 {
      font-size: 18px;
      line-height: 1.2;
      color: #666666;
      margin-top: 15px; }
  .yunwei_view .scheme .con {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between; }
    .yunwei_view .scheme .con .left {
      width: 67.5%; }
      .yunwei_view .scheme .con .left .pic {
        height: 810px;
        position: relative;
        overflow: hidden; }
        .yunwei_view .scheme .con .left .pic img {
          width: 100%;
          height: 100%;
          display: block;
          position: absolute;
          left: 0;
          top: 0;
          object-fit: cover;
          transition-duration: .3s; }
        .yunwei_view .scheme .con .left .pic:hover img {
          transform: scale(1.1); }
    .yunwei_view .scheme .con .list {
      width: 31.5%; }
      .yunwei_view .scheme .con .list li {
        margin-bottom: 20px; }
        .yunwei_view .scheme .con .list li .pic {
          height: 255px;
          position: relative;
          overflow: hidden; }
          .yunwei_view .scheme .con .list li .pic img {
            width: 100%;
            height: 100%;
            display: block;
            position: absolute;
            left: 0;
            top: 0;
            object-fit: cover;
            transition-duration: .3s; }
          .yunwei_view .scheme .con .list li .pic:hover img {
            transform: scale(1.1); }
          .yunwei_view .scheme .con .list li .pic h3 {
            font-size: 16px;
            line-height: 1.2;
            color: #ffffff;
            padding: 9px 17px;
            background: linear-gradient(to right, #da251d, transparent);
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0; }
        .yunwei_view .scheme .con .list li:last-child {
          margin-bottom: 0; }

.case-info_view .above {
  padding-bottom: 110px; }
  .case-info_view .above .wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    align-items: flex-start; }

.case-info_view .above .img-swiper {
  width: 55.7%;
  height: 560px;
  margin: 0; }

.case-info_view .above .img-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover; }

.case-info_view .above .img-swiper .button-prev {
  position: absolute;
  width: 50px;
  height: 50px;
  background: url(../img/case-left001.png) no-repeat center;
  background-color: #fff;
  border-radius: 50%;
  margin-top: -25px;
  left: 50px;
  cursor: pointer;
  z-index: 2;
  top: 50%; }

.case-info_view .above .img-swiper .button-next {
  position: absolute;
  width: 50px;
  height: 50px;
  background: url(../img/case-left001.png) no-repeat center;
  background-color: #fff;
  border-radius: 50%;
  margin-top: -25px;
  transform: rotate(180deg);
  right: 50px;
  cursor: pointer;
  z-index: 2;
  top: 50%; }

.case-info_view .above .img-swiper .button-prev:hover {
  background-image: url(../img/case-left002.png);
  background-color: #da251d; }

.case-info_view .above .img-swiper .button-next:hover {
  background-image: url(../img/case-left002.png);
  background-color: #da251d; }

.case-info_view .above .txt {
  width: 44.3%;
  padding: 70px 25px 0 6%;
  background-color: #f5f5f5;
  height: 560px; }

.case-info_view .above .txt h1 {
  font-size: 36px;
  line-height: 1.5;
  color: #333333;
  padding-bottom: 20px;
  border-bottom: 1px solid #999999; }

.case-info_view .above .txt p {
  font-size: 18px;
  line-height: 40px;
  color: #333333;
  margin-top: 25px;
  white-space: pre-wrap;
  height: 160px; }

.case-info_view .above .txt .links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  margin-top: 25px; }
  .case-info_view .above .txt .links .btn1 {
    width: 210px;
    height: 50px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    background-color: #da251d;
    transition-duration: 0.3s; }
    .case-info_view .above .txt .links .btn1 span {
      font-size: 16px;
      line-height: 1.2;
      color: #fff;
      margin-left: 5px; }
    .case-info_view .above .txt .links .btn1:hover {
      box-shadow: 1px 2px 5px rgba(218, 37, 29, 0.5); }
  .case-info_view .above .txt .links .tel-btn {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    margin-left: 5%; }
    .case-info_view .above .txt .links .tel-btn span {
      font-size: 24px;
      line-height: 1.2;
      color: #333333;
      font-weight: bold;
      margin-left: 5px; }

.case-info_view .caseT {
  padding: 70px 0 95px;
  background-color: #fafafa; }
  .case-info_view .caseT .tit {
    text-align: center;
    position: relative; }
    .case-info_view .caseT .tit h3 {
      font-size: 36px;
      line-height: 1.2;
      color: #333333;
      font-weight: bold; }
    .case-info_view .caseT .tit p {
      font-size: 18px;
      line-height: 1.2;
      color: #999999;
      margin-top: 12px;
      text-transform: uppercase;
      font-family: Arial, Helvetica, sans-serif; }
  .case-info_view .caseT .caseT-swiper {
    margin-top: 80px;
    padding-bottom: 70px; }
    .case-info_view .caseT .caseT-swiper .swiper-pagination {
      bottom: 0;
      display: none; }
      .case-info_view .caseT .caseT-swiper .swiper-pagination .swiper-pagination-bullet {
        background-color: #dcdcdc;
        opacity: 1; }
      .case-info_view .caseT .caseT-swiper .swiper-pagination .swiper-pagination-bullet-active {
        background-color: #da251d; }
    .case-info_view .caseT .caseT-swiper .swiper-scrollbar {
      width: 80%;
      max-width: 700px;
      margin: 0 auto;
      left: 0;
      right: 0;
      bottom: 0;
      height: 3px;
      background-color: #efefef;
      display: block !important; }
      .case-info_view .caseT .caseT-swiper .swiper-scrollbar .swiper-scrollbar-drag {
        height: 3px;
        position: relative;
        background-color: #da251d;
        left: 0;
        top: 0; }
    .case-info_view .caseT .caseT-swiper .swiper-slide {
      width: 490px; }
      .case-info_view .caseT .caseT-swiper .swiper-slide .pic {
        display: block;
        width: 100%;
        position: relative;
        padding-bottom: 71.5%;
        overflow: hidden; }
        .case-info_view .caseT .caseT-swiper .swiper-slide .pic img {
          width: 100%;
          height: 100%;
          display: block;
          position: absolute;
          left: 0;
          top: 0;
          object-fit: cover;
          transition-duration: .3s; }
        .case-info_view .caseT .caseT-swiper .swiper-slide .pic .txt {
          padding: 20px 15px;
          background-color: #fff;
          position: absolute;
          bottom: 0;
          right: 0;
          left: 0;
          opacity: 1;
          visibility: visible;
          transition-duration: .3s; }
          .case-info_view .caseT .caseT-swiper .swiper-slide .pic .txt h3 {
            font-size: 18px;
            line-height: 1.2;
            color: #333333;
            text-align: center; }
        .case-info_view .caseT .caseT-swiper .swiper-slide .pic::after {
          content: '';
          display: block;
          width: 100%;
          height: 100%;
          position: absolute;
          top: 0;
          left: 0;
          background: url(../img/business-more001.png) no-repeat center;
          background-color: rgba(0, 0, 0, 0.3);
          opacity: 0;
          visibility: hidden;
          transition-duration: .3s; }
        .case-info_view .caseT .caseT-swiper .swiper-slide .pic:hover .txt {
          opacity: 0;
          visibility: hidden; }
        .case-info_view .caseT .caseT-swiper .swiper-slide .pic:hover::after {
          opacity: 1;
          visibility: visible; }

.crumbs {
  padding: 40px 0; }

.crumbs nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: space-between;
  justify-content: space-between;
  padding-left: 30px;
  background: url(../img/crumbs-ico001.png) no-repeat left center; }

.crumbs nav ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start; }

.crumbs nav ul li:first-child {
  margin-right: 0; }

.crumbs nav ul li {
  font-size: 14px;
  line-height: 20px;
  color: #666666; }

.crumbs nav ul li a {
  font-size: 14px;
  color: #666666;
  transition: .4s all; }

.crumbs nav ul li a:hover {
  color: #da251d; }

.crumbs li:nth-of-type(n+3) {
  padding-left: 22px;
  position: relative;
  margin-left: 0; }

.crumbs li:nth-of-type(n+3)::before {
  content: '';
  opacity: 1;
  display: block;
  position: absolute;
  top: 52%;
  left: 8px;
  transform: translateY(-50%);
  width: 8px;
  height: 7px;
  background: url("../img/jt.png") no-repeat;
  background-size: contain; }

.news-info_view {
  padding: 90px 0 50px; }
  .news-info_view .wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    align-items: flex-start; }
  .news-info_view .left {
    width: 71%; }
  .news-info_view .sidebar {
    width: 25%; }
    .news-info_view .sidebar .tit {
      border-left: 3px solid #da251d;
      padding-left: 12px;
      padding-bottom: 2px; }
      .news-info_view .sidebar .tit h3 {
        font-size: 24px;
        line-height: 1.2;
        color: #333333; }
    .news-info_view .sidebar .list {
      margin-top: 35px;
      margin-bottom: -40px; }
      .news-info_view .sidebar .list li {
        margin-bottom: 40px; }
      .news-info_view .sidebar .list .pic {
        display: block;
        width: 100%;
        position: relative;
        padding-bottom: 66.6%;
        overflow: hidden; }
        .news-info_view .sidebar .list .pic img {
          width: 100%;
          height: 100%;
          display: block;
          position: absolute;
          left: 0;
          top: 0;
          object-fit: cover;
          transition-duration: .3s; }
        .news-info_view .sidebar .list .pic:hover img {
          transform: scale(1.1); }
      .news-info_view .sidebar .list h4 {
        font-size: 18px;
        line-height: 1.5;
        color: #333333;
        margin-top: 25px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        transition-duration: .3s; }
        .news-info_view .sidebar .list h4:hover {
          color: #da251d; }
      .news-info_view .sidebar .list .time {
        font-size: 16px;
        line-height: 1.5;
        color: #666666;
        margin-top: 7px; }
  .news-info_view .m-contxt2 .tit {
    font-size: 24px;
    line-height: 1.5;
    color: #333333;
    text-align: center; }
  .news-info_view .m-contxt2 .info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 25px 0;
    border-bottom: 2px solid #f0f0f0; }
    .news-info_view .m-contxt2 .info .time {
      font-size: 16px;
      line-height: 20px;
      color: #999999;
      padding-left: 30px;
      background: url(../img/time-ico001.png) no-repeat left center;
      padding-bottom: 2px; }
  .news-info_view .m-contxt2 .edit {
    padding: 50px 0; }
  .news-info_view .link {
    padding-top: 40px;
    border-top: 2px solid #f0f0f0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between; }
    .news-info_view .link a {
      width: 260px;
      height: 50px;
      padding-left: 70px;
      position: relative;
      font-size: 14px;
      line-height: 25px;
      color: #999999; }
      .news-info_view .link a::after {
        width: 50px;
        content: '';
        display: block;
        height: 50px;
        background: url(../img/news-left001.png) no-repeat center;
        border-radius: 50%;
        background-color: #cccccc;
        position: absolute;
        top: 0;
        left: 0;
        transition-duration: .3s; }
      .news-info_view .link a.next {
        padding-left: 0;
        padding-right: 70px; }
        .news-info_view .link a.next::after {
          left: initial;
          right: 0;
          transform: rotate(180deg); }
      .news-info_view .link a span {
        display: block;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap; }
      .news-info_view .link a:hover {
        color: #da251d; }
        .news-info_view .link a:hover::after {
          background-color: #da251d; }

.contact_view .info {
  padding-top: 115px;
  padding-bottom: 77px; }
  .contact_view .info .tit {
    font-size: 40px;
    line-height: 1.2;
    color: #333333;
    text-align: center;
    font-weight: bold; }
  .contact_view .info .item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: -20px;
    margin-top: 70px; }
    .contact_view .info .item li {
      width: 32%;
      display: flex;
      flex-wrap: nowrap;
      align-items: flex-start;
      justify-content: flex-start;
      margin-bottom: 20px; }
      .contact_view .info .item li p {
        margin-left: 40px;
        font-size: 18px;
        line-height: 1.5;
        color: #333333; }
        .contact_view .info .item li p span {
          display: block;
          margin-top: 12px;
          font-weight: bold; }

.contact_view .map {
  height: 760px;
  margin-top: 60px; }

.contact_view .online2 {
  padding: 80px 0;
  background: url(../img/contact-bg002.jpg) no-repeat center;
  background-size: cover; }

.contact_view .online2 .tit {
  text-align: center; }
  .contact_view .online2 .tit h3 {
    font-size: 40px;
    line-height: 1.2;
    color: #333333;
    font-weight: bold; }
  .contact_view .online2 .tit h5 {
    font-size: 30px;
    line-height: 1.2;
    color: #333333; }

.contact_view .online2 ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: -25px;
  margin-top: 70px; }

.contact_view .online2 ul li {
  width: 32.3%;
  margin-bottom: 25px; }

.contact_view .online2 ul li:nth-child(n+4) {
  width: 100%; }

.contact_view .online2 ul li input {
  width: 100%;
  height: 85px;
  padding: 0 40px;
  font-size: 18px;
  line-height: 1;
  color: #666;
  background-color: #fff; }

.contact_view .online2 ul li:nth-child(4) {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between; }
  .contact_view .online2 ul li:nth-child(4) .ind {
    width: 49%;
    height: 85px;
    padding: 0 40px;
    font-size: 18px;
    line-height: 1;
    color: #666;
    background: url(../img/online2-ico001.png) no-repeat right 25px center;
    background-color: #fff; }

.contact_view .online2 ul li textarea {
  padding: 20px 40px;
  font-size: 18px;
  line-height: 1;
  color: #666666;
  background-color: #fff;
  width: 100%;
  height: 260px; }

.contact_view .online2 ul li:last-child {
  text-align: center;
  margin-top: 40px; }
  .contact_view .online2 ul li:last-child button {
    display: inline-block;
    font-size: 20px;
    font-weight: bold;
    line-height: 1;
    color: #fff;
    padding: 20px 80px;
    margin: 0 10px;
    transition-duration: .3s;
    cursor: pointer;
    background-color: #da251d; }
    .contact_view .online2 ul li:last-child button:hover {
      background-color: #ad221c;
      color: #fff; }

@media screen and (max-width: 1560px) {
  body:after {
    background: yellow; }

  .wrap {
    width: 1400px; }

  .com-banner1 h3 {
    margin-left: -700px; }

  .banner-box {
    height: 0;
    padding-bottom: 50%; }

  .navbar2 {
    max-width: 1400px; }

  .hd-nav li > a {
    margin: 0 15px; }

  .header .pc {
    padding: 0 40px; }

  .former {
    overflow: hidden; }

  .former .box {
    transform: scale(0.7);
    width: 1530px;
    position: relative;
    left: calc( 50% - 765px);
    margin-top: -50px;
    margin-bottom: -50px; }

  .former {
    padding-bottom: 20px; } }
@media screen and (max-width: 1440px) {
  body:after {
    background: blue; }

  .wrap {
    width: 1200px; }

  .banner {
    height: 0;
    padding-bottom: 50%; }

  .com-banner1 h3 {
    margin-left: -600px; }

  .hd-nav li > a {
    margin: 0 20px; }

  .header .pc {
    padding: 0 20px 0; }

  .com-banner1 .tabs a {
    padding: 20px 15px;
    font-size: 14px; }

  .navbar2 {
    max-width: 1200px; }

  .navbar1 .box {
    width: 1200px; } }
@media screen and (max-width: 1280px) {
  body:after {
    background: lightblue; }

  .hd-nav li > a {
    margin: 0 10px;
    font-size: 14px; }

  .color_view .pro .tabs a {
    padding: 15px 20px; }

  .color_view .int .con .txt h3 {
    font-size: 80px;
    padding-right: 180px; }

  .science_view .target .list {
    margin-left: 0;
    margin-right: 0; }

  .science_view .target .list li h3 {
    font-size: 60px; }

  .science_view .target .list li p {
    font-size: 14px;
    line-height: 25px;
    margin-top: 25px;
    margin-bottom: 20px; }

  .science_view .process .con {
    text-align: center;
    padding: 60px 20px 100px; }

  .wrap {
    width: 100%;
    padding: 0 20px; }

  .com-banner1 h3 {
    margin-left: 0;
    left: 15px; }

  .navbar2 {
    margin-left: 20px;
    margin-right: 20px; }

  .navbar1 .box {
    width: 100%; }

  .navbar1 {
    padding: 20px; } }
@media screen and (max-width: 1024px) {
  /* 移动ipad */
  /* ..... */
  body:after {
    background: pink; }

  .news-info_view {
    padding: 50px 0 30px; }

  .news-info_view .left {
    width: 100%; }

  .news-info_view .sidebar {
    width: 100%;
    margin-top: 40px; }

  .navbar1 {
    display: block; }

  .videoWindow video {
    width: 96%; }

  .pages-tabs {
    display: none; }

  .login_view {
    padding: 80px 0; }

  .login_view form {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center; }

  .login_view form input {
    width: 60%;
    height: 40px;
    font-size: 14px;
    padding: 0 15px;
    border-radius: 5px;
    margin-bottom: 20px; }

  .login_view form button {
    width: 20%;
    height: 40px;
    font-size: 14px;
    border-radius: 5px; }

  .navbar2 {
    display: none; }

  .Mnav {
    display: block; }

  .slide-nav {
    display: none; }

  .MgoTop {
    display: block; }

  .header .pc {
    display: none; }

  .header .m {
    display: block; }

  .header .m {
    padding: 15px 10px; }

  .header-box .header {
    border-bottom: none; }

  .header-box.active .header {
    border-bottom: none; }

  .hd-nav {
    display: none; }

  .hd-btn a {
    display: none; }

  .header-box {
    height: 75px; }

  .hd-logo {
    padding: 0; }

  .nav2 {
    display: none; }

  .header-box .img1 {
    display: none; }

  .header-box .img2 {
    display: block;
    width: 145px;
    max-height: 50px; }

  .hd-btn::after {
    display: none; }

  .header .menu-btn {
    display: block;
    position: relative;
    z-index: 9; }

  .menu-btn {
    /* background-color: #215644; */
    height: 23px;
    width: 30px;
    position: relative;
    cursor: pointer;
    display: none;
    /* top: 50%;
    transform: translateY(-50%);
    */ }

  .menu-btn span {
    display: block;
    position: absolute;
    width: 30px;
    height: 3px;
    background-color: #fff;
    left: 10px;
    top: 13px;
    transition: all .4s;
    border-radius: 3px; }

  .menu-btn span:nth-child(2) {
    top: 23px; }

  .menu-btn span:nth-child(3) {
    top: 33px;
    width: 19px;
    left: initial;
    right: 10px; }

  .menu-btn {
    display: block;
    /* position:absolute;right:8px;top:6px; */
    height: 50px;
    width: 50px;
    padding: 10px; }

  .menu-btn.active span:nth-child(2) {
    width: 0;
    left: 22px;
    opacity: 0; }

  .menu-btn.active span {
    -webkit-transform: rotate(45deg);
    top: 23px; }

  .menu-btn.active span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    top: 23px;
    width: 30px; }

  .m-nav {
    /* display: none; */
    width: 75%;
    height: 100vh;
    max-width: 420px;
    padding: 50px 0 70px;
    /* height: 100vh; */
    position: fixed;
    top: 61px;
    right: -100vw;
    transition: .4s all;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 99;
    display: block; }

  .m-nav ul li:hover a {
    background-color: #f27416; }

  .m-nav ul li a {
    display: block;
    width: 100%;
    padding: 10px 5%;
    box-sizing: border-box;
    font-size: 14px;
    color: #fff;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3); }

  .m-nav.active {
    right: 0; }

  .search_btn {
    display: block;
    width: 30px;
    margin-left: auto; }

  .slide-nav {
    left: 0;
    top: auto;
    right: 0;
    bottom: 0;
    font-size: 0;
    text-align: center; }

  .slide-nav .item {
    margin: 0;
    border: none;
    opacity: 1 !important;
    border-top: 1px solid #999;
    border-radius: 0;
    border-left: 1px solid #999;
    display: inline-block;
    vertical-align: middle;
    width: 20%;
    height: 60px; }

  .slide-nav .item:first-child {
    border: none;
    border-top: 1px solid #999; }

  .slide-nav .goTop {
    display: inline-block !important; }

  .slide-nav .icon {
    width: 30px;
    height: 30px;
    -webkit-background-size: 30px auto;
    background-size: 30px auto; }

  .slide-nav .mask {
    left: 50%;
    right: auto;
    bottom: 100%;
    top: auto;
    -webkit-transform: translateX(-50%) scale(1, 0);
    -ms-transform: translateX(-50%) scale(1, 0);
    -o-transform: translateX(-50%) scale(1, 0);
    transform: translateX(-50%) scale(1, 0); }

  .slide-nav .tel {
    padding: 0 15px;
    border: 2px solid #000;
    height: 46px;
    line-height: 42px; }

  .slide-nav .qr {
    width: 120px;
    height: 120px; }

  .slide-nav .item:hover .icon {
    /* background-position:center -30px */ }

  .slide-nav .item:hover .mask {
    -webkit-transform: scale(1, 1) translateX(-50%);
    -ms-transform: scale(1, 1) translateX(-50%);
    -o-transform: scale(1, 1) translateX(-50%);
    transform: scale(1, 1) translateX(-50%); }

  .slide-nav .item {
    width: 25%; }

  .slide-nav .appoint {
    display: none; }

  /* .slide-nav .nav-qq{display:none} */
  .slide-nav .icon {
    margin: 15px auto 3px; }

  .slide-nav .icon {
    /* background-position: center; */ }

  .slide-nav .goTop {
    opacity: 1;
    visibility: visible; }

  .hd-search {
    display: none; }

  .header .wrap {
    justify-content: space-between; }

  .pro-tab dt {
    float: none;
    display: block;
    font-size: 16px;
    line-height: 36px; }

  .pro-tab dd {
    overflow-x: scroll;
    white-space: nowrap; }

  .pro-tab dd a {
    margin-left: 0;
    display: inline-block;
    float: none;
    font-size: 14px; }

  .pro-tab dd a:first-child {
    margin-left: 0; }

  .pro-tab dd a {
    font-size: 14px;
    padding: 8px 10px;
    border-radius: 30px;
    margin-left: 5px; }

  .pro-tab {
    margin-bottom: 10px; }

  .navbar1 {
    padding: 30px 15px; }

  .navbar1 .tit span {
    display: none; }

  .navbar1 .tit .js-more {
    float: initial;
    display: block;
    text-align: center; }

  .navbar1 .nav ul {
    display: block;
    /* border-bottom: 1px solid #e2e2e2; */
    /* padding: 5px 20px; */
    background: #fff; }

  .navbar1 ul li {
    border-bottom: 1px solid #e2e2e2; }

  .navbar1 ul li:last-child {
    border-bottom: none; }

  .navbar1 ul li:last-child h4 {
    /* border-bottom:none */ }

  .navbar1 ul li a {
    display: none; }

  .navbar1 .tit {
    padding: 0 20px;
    line-height: 44px;
    font-size: 14px; }

  .navbar1 .tit .js-more {
    padding-right: 0;
    font-size: 16px; }

  .navbar1 ul li h4 {
    position: initial;
    text-align: center;
    width: 100%;
    padding-right: 0;
    line-height: 45px;
    font-weight: normal;
    border-bottom: 1px solid #e2e2e2;
    position: relative;
    /* margin: 0 20px; */ }

  .navbar1 ul li {
    position: relative;
    padding-left: 0; }

  .navbar1 ul li a {
    display: block;
    font-size: 14px;
    line-height: 35px;
    display: block;
    margin: 0;
    text-align: center; }

  .navbar1 .nav {
    background: initial; }

  .navbar1 .nav {
    border-bottom: 1px solid #e2e2e2;
    padding: 0; }

  .navbar1 ul li h4::before {
    content: '';
    display: block;
    width: 11px;
    height: 7px;
    background: url(../img/qwy-i3.png) center no-repeat;
    position: absolute;
    top: 50%;
    right: 20px;
    margin-top: -3px;
    transition: all .3s; }

  .navbar1 ul li a.on {
    color: #4a458e; }

  .navbar1 ul li {
    height: auto;
    overflow: hidden;
    max-height: 46px; }

  .navbar1 ul li.active {
    max-height: initial; }

  .navbar1 ul li a:hover::after, .navbar1 ul li a.on::after {
    background-color: transparent; }

  .navbar1 .nav {
    border-bottom: none; }

  .navbar1 ul li.active h4::before {
    transform: rotate(180deg); } }
@media screen and (max-width: 768px) {
  /* 响应手机..... */
  body:after {
    background: red; }

  .wrap {
    padding: 0 15px; }

  .header-box {
    height: 50px; }

  .guard-info_view {
    padding: 40px 0; }

  .guard-info_view .tit {
    font-size: 22px;
    margin-bottom: 30px; }

  .guard_view .info .tit {
    width: 100%;
    padding-left: 50px;
    background: url(../img/guard-ico01.png) no-repeat left top;
    background-size: 30px; }

  .guard_view .info .tit h3 {
    font-size: 24px;
    line-height: 30px;
    padding-top: 10px; }

  .guard_view .info .tit h5 {
    font-size: 18px;
    margin-top: 15px; }

  .guard_view .info {
    padding: 40px 0; }

  .guard_view .info .con {
    width: 100%;
    padding-top: 40px;
    white-space: pre-wrap; }

  .guard_view .list li .pic {
    padding-bottom: 72%;
    height: 0; }

  .guard_view .list {
    padding-top: 40px; }

  .guard_view .list li {
    margin-bottom: 40px; }

  .guard_view .list li .txt {
    padding: 30px 20px; }

  .guard_view .list li .txt .ico1 {
    width: 40px;
    height: 40px; }

  .guard_view .list li .txt h3 {
    font-size: 20px;
    margin-top: 10px; }

  .guard_view .list li .txt h5 {
    font-size: 16px;
    margin-top: 15px; }

  .guard_view .list li .txt p {
    font-size: 14px;
    line-height: 25px;
    margin-top: 25px;
    margin-bottom: 25px; }

  .store .store-swiper {
    margin-top: 30px; }

  .store .store-swiper .swiper-slide .pic {
    padding-bottom: 45%; }

  .contact .form li:not(:nth-child(n+4)) input {
    width: 74%;
    height: 40px;
    padding: 0 8px;
    font-size: 14px; }

  .contact .form li label {
    font-size: 14px;
    white-space: initial; }

  .contact .form {
    margin-top: 20px; }

  .contact .form li {
    margin-bottom: 20px; }

  .contact .form li .sub {
    width: 150px;
    height: 40px;
    font-size: 14px; }

  .contact .form li #radio1 {
    margin-right: 20px; }

  .contact .form li:last-child {
    margin-bottom: 40px; }

  .guard .top .tit {
    width: 100%;
    padding-left: 50px;
    background: url(../img/guard-ico01.png) no-repeat left top;
    background-size: 30px; }

  .guard {
    padding: 40px 0; }

  .guard .top .tit h3 {
    font-size: 24px;
    line-height: 30px;
    padding-top: 10px; }

  .guard .top .tit h5 {
    font-size: 18px;
    margin-top: 15px; }

  .guard .top p {
    width: 100%;
    font-size: 14px;
    line-height: 28px;
    margin-top: 20px; }

  .guard .guard-swiper {
    padding-top: 50px; }

  .guard .guard-swiper .box-button {
    width: 115px;
    height: 40px;
    left: initial;
    right: 1px; }

  .guard .guard-swiper .swiper-slide .pic .txt h2 {
    font-size: 72px; }

  .guard .guard-swiper .swiper-slide .pic .txt h3 {
    font-size: 14px;
    margin-top: 30px; }

  .guard .guard-swiper .swiper-slide .pic .txt span {
    display: inline-block; }

  .guard .guard-swiper .swiper-slide .pic .txt {
    padding: 30px; }

  .guard .guard-swiper .swiper-slide {
    height: 440px; }

  .video_window .main {
    width: 96%; }

  .video_window .main video {
    border: 10px solid #fff; }

  .video_window .main {
    height: 320px; }

  .video_view .row-new1 > ul li a .txt h3 {
    font-size: 12px; }

  .com-more3 {
    padding: 13px 25px 15px 40px;
    background-position: left 15px center; }

  .header .m .Msearch {
    width: 22px;
    height: 22px; }

  .header .m .menu label {
    max-width: 90px;
    max-height: 90px;
    left: -32px;
    top: -25px; }

  .header .m > a {
    height: 30px; }

  .header .m {
    padding: 10px; }

  .hot {
    padding: 60px 0; }

  .hot .tit h3 {
    font-size: 22px;
    text-align: center;
    width: 100%; }

  .hot .tit .tabs {
    width: 100%;
    justify-content: center;
    margin-top: 20px; }

  .hot .tit .tabs a {
    font-size: 14px;
    margin-right: 0;
    padding: 0 2px 5px;
    border-bottom: 1px solid transparent;
    margin: 5px; }

  .hot .hot-swiper {
    margin-top: 20px;
    padding-bottom: 25px; }

  .hot .hot-swiper .swiper-slide h3 {
    font-size: 14px;
    margin-top: 15px;
    margin-bottom: 20px; }

  .hot .hot-swiper .swiper-scrollbar {
    bottom: 15px;
    height: 2px; }

  .hot .hot-swiper .swiper-scrollbar .swiper-scrollbar-drag {
    height: 5px;
    border-radius: 5px;
    top: -2px; }

  .hot .hot-swiper .swiper-scrollbar .swiper-scrollbar-drag::after {
    width: 30px;
    height: 30px; }

  .hot .more {
    margin-top: 20px; }

  .PopupColumn {
    top: 50px; }

  .m_search div > i {
    width: 40px;
    height: 40px; }

  .m_search div h5 {
    font-size: 24px;
    margin-top: 10px;
    line-height: 30px; }

  .m_search div form {
    padding: 0 40px;
    margin-top: 20px; }

  .m_search div form input {
    line-height: 40px;
    font-size: 16px; }

  .m_search div form button {
    margin-top: 30px;
    line-height: 40px;
    font-size: 14px; }

  .PopupCode ul li figure img {
    height: auto; }

  .download_view .tit h3 {
    font-size: 22px; }

  .download_view .tit h5 {
    font-size: 18px;
    margin-top: 10px; }

  .download_view .tit i {
    height: 2px;
    margin-top: 20px; }

  .com-banner1 .pc {
    display: none; }
  .com-banner1 .mobile {
    display: block; }

  .com-banner1 h3 span {
    font-size: 14px;
    margin-bottom: 5px; }

  .com-banner1 h3 {
    font-size: 20px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    text-align: center;
   }

  .page-tabs .tabs {
    width: 100%; }

  .page-tabs ul {
    padding-left: 35px;
    background: url(../img/cur-ico001.png) no-repeat left center;
    margin-right: 75px;
    margin-top: 0;
    margin-bottom: 20px; }

  .MgoTop {
    width: 40px;
    height: 40px; }

  .Mnav ul li a icon {
    width: 20px;
    height: 20px; }

  .Mnav ul li a span {
    font-size: 14px;
    margin-left: 10px; }

  .art {
    padding: 80px 0 120px; }

  .art .txt h3 {
    font-size: 19px;
    line-height: 30px; }

  .art .txt h5 {
    font-size: 12px;
    line-height: 20px;
    margin-top: 12px; }

  .art .txt a {
    font-size: 14px;
    padding: 15px 25px;
    background-position: right 10px center;
    margin-top: 60px; }

  .art .txt p {
    font-size: 12px;
    line-height: 20px;
    margin-top: 15px; }

  .advantage {
    padding: 40px 0; }

  .advantage .tit h3 {
    font-size: 22px; }

  .advantage .tit h5 {
    font-size: 20px;
    margin-top: 10px; }

  .advantage .list {
    padding: 20px 0; }

  .advantage .list li {
    width: 50%;
    padding: 20px 10px; }
    .advantage .list li .ico {
      width: 45px;
      height: 45px; }

  .advantage .list li h3 {
    font-size: 12px;
    margin-top: 10px;
    text-align: center; }

  .advantage .list li h5 {
    font-size: 12px;
    text-align: center; }

  .advantage .list li::after {
    width: 1px;
    height: 90px;
    top: 20px; }

  .advantage .list {
    margin-top: 30px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px; }

  .factory_index {
    padding: 40px 0; }

  .factory_index .pic {
    width: 100%;
    height: 0;
    padding-bottom: 80%;
    margin-bottom: 15px; }

  .factory_index .item {
    width: 100%;
    margin-bottom: -15px; }

  .factory_index .item li {
    width: 48%;
    height: 0;
    padding-bottom: 50%;
    margin-bottom: 15px; }

  .factory_index .item li:nth-child(4) h3 {
    font-size: 14px;
    margin-top: 50px; }

  .factory_index .item li:nth-child(4) {
    padding-left: 20px; }

  .factory_index .item li:nth-child(4) h5 {
    font-size: 22px;
    margin-top: 5px; }

  .science_view .slogen {
    align-items: stretch; }

  .science_view .slogen li {
    width: 50%;
    min-height: 460px;
    height: auto;
    padding: 0 5%;
    justify-content: flex-start !important; }

  .science_view .slogen li.on {
    width: 50%;
    padding: 0 5%; }

  .science_view .slogen li h3 {
    width: 100%;
    height: auto;
    border: none;
    display: block;
    margin-top: 40px !important;
    text-align: center;
    font-size: 20px; }

  .science_view .slogen li p {
    font-size: 14px;
    line-height: 25px;
    margin-top: 25px;
    display: block; }

  .science_view .target {
    padding-top: 40px;
    padding-bottom: 40px; }

  .science_view .target .tit h3 {
    font-size: 22px; }

  .science_view .target .tit h5 {
    font-size: 14px;
    margin-top: 0px; }

  .science_view .target .list {
    margin-top: 30px;
    margin-bottom: -15px; }

  .science_view .target .list li {
    width: 48%;
    padding: 0 3%;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
    margin-bottom: 15px;
    min-height: 270px; }

  .science_view .target .list li:nth-child(2n) {
    top: 0; }

  .science_view .target .list li h3 {
    font-size: 30px;
    margin-top: 30px; }

  .science_view .target .list li p {
    font-size: 12px;
    line-height: 24px;
    margin-top: 20px;
    margin-bottom: 20px; }

  .science_view .target .list li:nth-child(5) {
    width: 100%;
    min-height: 200px; }

  .science_view .process .tit h3 {
    font-size: 22px; }

  .science_view .process .tit h5 {
    font-size: 18px;
    margin-top: 8px; }

  .science_view .process {
    padding-top: 40px; }

  .science_view .process .con {
    padding: 40px 15px 60px; }

  .slogen .pic {
    padding: 0 15px;
    padding-top: 40px;
    padding-bottom: 40px; }

  .slogen .wrap {
    padding: 0; }

  .pro-tab-box {
    margin-top: 20px;
    margin-bottom: -15px; }

  .login_view form input {
    width: 100%; }

  .login_view form button {
    width: 35%; }

  .download_view .download {
    margin-top: 0px; }

  .download_view .download li a {
    padding: 15px; }

  .download_view .download li a .download_word h5 {
    font-size: 14px;
    line-height: 20px; }

  .download_view .download li a .download_word time {
    font-size: 12px;
    line-height: 20px;
    margin: 3px 0; }

  .download_view .download li a .download_word span {
    width: 60px;
    height: 25px;
    line-height: 25px;
    font-size: 12px; }

  .download_view .download li a .download_img {
    width: 38%;
    padding: 15% 0; }

  .download_view .download li a .download_word {
    width: 58%; }

  .download_view .download li {
    margin-top: 15px; }

  .keji .keji-swiper {
    margin-top: 20px;
    padding-bottom: 50px; }

  .keji .keji-swiper .swiper-slide h3 {
    font-size: 28px; }

  .keji .keji-swiper .swiper-slide h5 {
    font-size: 16px;
    margin-top: 10px; }

  .keji .keji-swiper .swiper-slide i {
    width: 30px;
    height: 1px;
    margin-top: 15px; }

  .keji .keji-swiper .swiper-slide .pic {
    margin-top: 15px; }

  .keji .keji-swiper .swiper-slide {
    padding-left: 15px; }

  .keji .keji-swiper .swiper-slide h3::after {
    left: -14px; }

  .keji .keji-swiper .swiper-slide p {
    font-size: 12px;
    line-height: 25px;
    height: 50px;
    margin-top: 15px; }

  .keji .keji-swiper .swiper-pagination {
    display: block;
    bottom: 10px; }
    .keji .keji-swiper .swiper-pagination .swiper-pagination-bullet-active {
      background-color: #da251d; }

  .com-more2 {
    width: 120px;
    height: 40px;
    font-size: 12px;
    line-height: 40px;
    padding: 0 15px;
    background-position: right 20px center;
    background-size: 10px; }

  .slogan {
    padding: 40px 0; }
    .slogan .left {
      width: 100%; }
    .slogan .right {
      width: 100%;
      margin-top: 15px; }

  .slogan .left .pic {
    height: 150px;
    border-radius: 10px; }

  .slogan .right .pic {
    height: 240px;
    border-radius: 10px; }

  .slogan .left .pic .txt h3 {
    font-size: 20px; }

  .slogan .left .pic .txt h5 {
    font-size: 14px;
    margin-top: 5px; }

  .slogan .left .pic .txt {
    position: absolute;
    top: 20px;
    left: 15px; }

  .slogan .left .pic .txt span {
    margin-top: 15px;
    width: 120px;
    height: 40px;
    border: 2px solid #fff;
    border-radius: 40px;
    font-size: 14px; }

  .slogan .left {
    margin-bottom: -15px; }

  .slogan .left a {
    margin-bottom: 15px; }

  .slogan .right .pic .txt {
    top: 26%;
    left: 15px; }

  .slogan .right .pic .txt h3 {
    font-size: 20px; }

  .slogan .right .pic .txt h5 {
    font-size: 14px;
    margin-top: 5px; }

  .slogan .right .pic .txt span {
    margin-top: 15px;
    width: 120px;
    height: 40px;
    border: 2px solid #fff;
    border-radius: 40px;
    font-size: 14px; }

  .lead_view {
    padding: 40px 0; }

  .lead_view .list {
    margin-top: 20px;
    margin-bottom: -20px; }

  .lead_view .list li {
    margin-bottom: 20px; }

  .lead_view .list li .txt {
    width: 100%;
    padding: 30px 15px !important;
    order: 1; }

  .lead_view .list li .pic {
    width: 100%;
    height: 0;
    padding-bottom: 57.8%; }

  .lead_view .list li .txt h3 {
    font-size: 22px; }

  .lead_view .list li .txt h5 {
    font-size: 18px;
    margin-top: 5px; }

  .lead_view .list li .txt p {
    font-size: 14px;
    line-height: 25px;
    margin-top: 15px;
    margin-bottom: 15px; }

  .buy_view .tit h3 {
    font-size: 20px; }

  .buy_view .tit h5 {
    font-size: 16px;
    margin-top: 12px; }

  .buy_view .tit p {
    font-size: 12px;
    margin-top: 15px;
    width: 80%;
    display: inline-block; }

  .buy_view .store {
    padding: 40px 0; }

  .buy_view .process .con {
    margin-top: 30px; }

  .buy_view .store .choice .top .store_location {
    width: 100%;
    margin-bottom: -15px; }

  .buy_view .store .choice .top .store_location select {
    width: 100%;
    border: 1px solid #d7d7d7;
    padding: 0 15px;
    font-size: 14px;
    background-position: right 10px center;
    height: 40px;
    margin-bottom: 15px;
    background-size: 8px; }

  .buy_view .store .choice .top .store_search {
    width: 100%;
    margin-top: 15px; }

  .buy_view .store .choice .top .store_search input {
    height: 40px;
    font-size: 14px;
    padding: 0 15px; }

  .buy_view .store .choice .top .store_search button {
    height: 40px;
    font-size: 14px;
    line-height: 40px; }

  .buy_view .store .bottom .left {
    display: none; }

  .buy_view .store .bottom .right {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: #fff; }

  .buy_view .store .bottom .right .switch_address li {
    padding: 15px 0; }

  .buy_view .store .bottom .right .switch_address li h4 {
    font-size: 16px; }

  .buy_view .store .bottom .right .switch_address li h5 {
    font-size: 14px;
    line-height: 25px;
    margin-top: 15px;
    padding-left: 25px; }

  .buy_view .store .bottom .right .switch_address li a {
    font-size: 14px;
    line-height: 25px;
    margin-top: 8px;
    padding-left: 25px; }

  .buy_view .store .bottom .right .switch_address {
    height: 360px; }

  .buy_view .check {
    padding: 40px 0; }

  .buy_view .check .item {
    width: 100%;
    padding: 30px 20px; }

  .buy_view .check .item p {
    font-size: 12px;
    line-height: 22px;
    margin-top: 30px; }

  .buy_view .check .item h6 {
    font-size: 12px;
    line-height: 22px;
    margin-top: 8px; }

  .buy_view .check .item form {
    margin-top: 20px; }

  .buy_view .check .item form input {
    padding: 0 10px; }

  .buy_view .check .item form button {
    background-size: 15px; }

  .buy_view .process {
    padding: 40px 0; }

  .buy_view .process .list {
    margin-top: 40px;
    margin-bottom: -20px;
    justify-content: center; }
    .buy_view .process .list li {
      width: 25%; }
      .buy_view .process .list li img {
        width: 80%;
        height: auto; }
      .buy_view .process .list li::after {
        display: none; }

  .buy_view .process .list li {
    margin-bottom: 20px; }

  .buy_view .process .list li h4 {
    font-size: 14px;
    margin-top: 15px; }

  .buy_view .process .list li h6 {
    font-size: 14px;
    margin-top: 10px; }

  .buy_view .store .choice {
    margin-top: 20px; }

  .m-pages {
    padding-top: 40px;
    padding-bottom: 40px; }

  .page-t1 {
    padding-right: 0; }

  .m-pages li {
    display: none; }

  .m-pages li.fengye {
    display: block; }

  .m-pages li {
    font-size: 14px;
    line-height: 33px; }

  .m-pages select {
    font-size: 14px;
    width: 55px;
    height: 40px;
    line-height: 38px; }

  .color_view .int {
    padding-top: 40px; }

  .color_view .int .con .txt {
    width: 100%; }

  .color_view .int .con .pic {
    width: 100%; }

  .color_view .int .con ul {
    margin-top: 20px;
    margin-bottom: -15px; }

  .color_view .int .con ul li {
    width: 49%;
    margin-top: 15px;
    height: 150px; }

  .color_view .int .con .txt h3 {
    font-size: 40px;
    padding-right: 100px;
    margin-top: 0px;
    background-size: 80px; }

  .color_view .int .con .txt h5 {
    font-size: 18px;
    line-height: 30px;
    color: #333333;
    white-space: pre-wrap;
    margin-top: 15px; }

  .color_view .int .con .txt p {
    font-size: 14px;
    line-height: 25px;
    margin-top: 24px; }

  .color_view .int .con .pic {
    width: 100%;
    margin-top: 20px; }

  .color_view .int .ban {
    margin-top: 30px; }
    .color_view .int .ban .pic {
      background-attachment: initial;
      background-position: center;
      background-size: cover; }

  .color_view .pro {
    background-color: #f5f5f5;
    padding-top: 40px; }

  .color_view .pro .tit {
    font-size: 22px; }

  .color_view .pro .tabs {
    margin-top: 30px;
    margin-bottom: -10px; }

  .color_view .pro .tabs a {
    font-size: 14px;
    padding: 10px 15px;
    border-radius: 35px;
    margin: 0 10px;
    margin-bottom: 10px; }

  .color_view .pro .pro-swiper .con .txt {
    width: 100%;
    padding-top: 20px;
    padding-left: 15px;
    padding-right: 15px;
    height: 300px; }

  .color_view .pro .pro-swiper .con .pic {
    width: 100%;
    height: 200px; }

  .color_view .pro .pro-swiper .con .txt h3 {
    font-size: 24px;
    line-height: 30px; }

  .color_view .pro .pro-swiper .con .txt h5 {
    margin-top: 20px;
    font-size: 22px; }

  .color_view .pro .pro-swiper .con .txt p {
    font-size: 14px;
    line-height: 24px;
    margin-top: 25px; }

  .color_view .pro .pro-swiper .item-swiper {
    margin-top: 30px;
    padding-bottom: 80px; }

  .color_view .pro .pro-swiper .swiper-button-prev {
    width: 35px;
    height: 35px;
    background-size: 12px;
    left: 15px;
    top: 250px; }

  .color_view .pro .pro-swiper .swiper-button-next {
    width: 35px;
    height: 35px;
    background-size: 12px;
    left: 70px;
    top: 250px; }

  .color_view .pro .pro-swiper .item-swiper .swiper-slide .txt2 {
    padding: 30px 15px; }

  .color_view .pro .pro-swiper .item-swiper .swiper-slide .txt2 h3 {
    font-size: 20px;
    margin-bottom: 8px; }

  .color_view .pro .pro-swiper .item-swiper .swiper-slide .txt2 span {
    font-size: 12px;
    padding: 10px 20px;
    border-radius: 32px;
    right: 15px;
    top: 50px; }

  .color_view .pro .pro-swiper .item-swiper .box_btn {
    bottom: 30px; }

  .color_view .pro .pro-swiper .item-swiper .box_btn .button-prev {
    width: 30px;
    height: 20px;
    margin-right: 10px;
    background-size: 18px; }

  .color_view .pro .pro-swiper .item-swiper .box_btn .button-next {
    width: 30px;
    height: 20px;
    margin-left: 10px;
    background-size: 18px; }

  .color_view .line {
    padding: 40px 0; }

  .color_view .line .left {
    width: 100%; }

  .color_view .line .right {
    width: 100%;
    margin-top: 20px; }

  .color_view .line .left .tit h3 {
    font-size: 22px;
    margin-top: 0; }

  .color_view .line .left .tit h5 {
    font-size: 14px;
    margin-top: 8px; }

  .color_view .line .left .tabs {
    margin-top: 20px;
    margin-bottom: -5px; }

  .color_view .line .left .tabs a .img_box {
    width: 35px;
    height: 35px; }

  .color_view .line .left .tabs a h4 {
    font-size: 12px; }

  .color_view .line .left .tabs a {
    height: 80px; }

  .color_view .line .right .line-swiper .pic {
    height: 0;
    padding-bottom: 78.9%; }

  .color_view .inf {
    padding: 60px 0;
    background: #f5f5f5; }

  .color_view .inf .txt h3 {
    font-size: 18px;
    line-height: 1;
    color: #333333;
    white-space: pre-wrap; }

  .color_view .inf .txt p {
    font-size: 16px;
    line-height: 25px; }

  .color_view .inf .txt h3 span {
    font-size: 26px;
    line-height: 35px; }

  .com-more1 {
    width: 105px;
    height: 35px;
    border-radius: 35px;
    font-size: 12px; }
    .com-more1 img {
      width: 15px; }

  .advantages_view {
    padding: 60px 0; }

  .advantages_view .tit h3 {
    font-size: 22px; }

  .advantages_view .tit p {
    font-size: 14px;
    line-height: 25px;
    white-space: initial;
    margin-top: 25px; }

  .advantages_view .tabs-swiper {
    margin-top: 30px; }

  .advantages_view .tabs-swiper .swiper-slide .pic {
    width: 35px;
    height: 35px; }

  .advantages_view .tabs-swiper .swiper-slide h3 {
    font-size: 14px;
    margin-top: 10px; }

  .advantages_view .tabs-swiper .swiper-slide {
    height: 90px; }

  .advantages_view .adv-swiper .swiper-slide .txt {
    width: 100%;
    padding: 60px 15px  30px; }

  .advantages_view .adv-swiper .swiper-slide .pic {
    width: 100%;
    height: 0px;
    padding-bottom: 80%; }

  .advantages_view .adv-swiper {
    margin-top: 30px; }

  .advantages_view .adv-swiper .swiper-slide .txt h3 {
    font-size: 12px;
    padding: 8px 15px;
    border-top-right-radius: 15px;
    top: 20px; }

  .advantages_view .adv-swiper .swiper-slide .txt h4 {
    font-size: 16px; }

  .advantages_view .adv-swiper .swiper-slide .txt h5 {
    font-size: 22px;
    line-height: 1.5; }

  .advantages_view .adv-swiper .swiper-slide .txt i {
    width: 60px;
    height: 1px;
    margin-top: 25px; }

  .advantages_view .adv-swiper .swiper-slide .txt p {
    margin-top: 20px;
    font-size: 14px;
    line-height: 25px;
    margin-right: 40px;
    height: 150px; }

  .advantages_view .adv-swiper .swiper-slide .txt span {
    font-size: 38px;
    right: 15px;
    bottom: 20px; }

  .page-tabs .tabs a {
    font-size: 14px;
    padding: 10px 15px; }

  .fast_box .item {
    width: 32%;
    position: relative; }

  .fast_box {
    padding: 40px 0 60px; }

  .fast_box .item .txt h5 {
    font-size: 12px;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 20px; }

  .fast_box .item .txt h3 {
    font-size: 18px;
    margin-bottom: 5px; }

  .fast_box .item .txt img {
    margin-bottom: 20px;
    width: 35px; }

  .col-l {
    width: 100%; }

  .col-r {
    width: 100%; }

  .sidebar_news2 {
    padding: 25px 15px;
    background-color: #fff;
    margin-bottom: 25px; }

  .sidebar_item {
    padding: 25px 15px; }

  .former .tit {
    font-size: 22px; }

  .former {
    padding: 40px 0; }

  .former .box_big {
    overflow-x: auto; }

  .former .box {
    transform: scale(0.5);
    left: calc( 50% - 500px);
    margin-top: -150px;
    margin-bottom: -150px; }

  .page-tabs .tabs {
    order: 1;
    overflow-x: scroll;
    transition: height 0.5s cubic-bezier(0.65, 0.05, 0.36, 1); }
    .page-tabs .tabs::-webkit-scrollbar-track-piece {
      background-color: rgba(0, 0, 0, 0);
      border-left: 1px solid rgba(0, 0, 0, 0); }
    .page-tabs .tabs::-webkit-scrollbar {
      width: 5px;
      height: 5px;
      -webkit-border-radius: 5px;
      -moz-border-radius: 5px;
      border-radius: 5px; }
    .page-tabs .tabs::-webkit-scrollbar-thumb {
      background-color: #bfbfbf;
      background-clip: padding-box;
      -webkit-border-radius: 5px;
      -moz-border-radius: 5px;
      border-radius: 5px;
      min-height: 28px; }
    .page-tabs .tabs::-webkit-scrollbar-thumb::hover {
      background-color: rgba(0, 0, 0, 0.5);
      -webkit-border-radius: 5px;
      -moz-border-radius: 5px;
      border-radius: 5px; }

  .com-banner1 h5 {
    font-size: 20px;
    width: 80%; }

  .job_view {
    padding: 40px 0 50px; }

  .job_view .list li .sup {
    padding: 20px 0;
    position: relative; }

  .job_view .list {
    padding: 0 15px; }

  .job_view .list li .sup p {
    width: 100%;
    font-size: 12px;
    line-height: 20px;
    align-items: flex-start;
    margin-top: 20px; }

  .job_view .list li .sup .btn {
    font-size: 12px;
    line-height: 1.2;
    padding: 8px 15px;
    position: absolute;
    top: 15px;
    right: 0; }

  .job_view .list li .sup h3 {
    font-size: 16px;
    width: 70%; }

  .job_view .list li .sup p span {
    max-width: 65%; }

  .job_view .list li .item {
    padding: 15px 0 25px; }

  .job_view .list li .item p {
    font-size: 14px;
    line-height: 25px; }

  .job_view .con {
    margin-top: 40px;
    padding: 30px 15px; }

  .job_view .con p {
    font-size: 14px;
    line-height: 25px; }

  .job_view .con p i {
    font-size: 16px; }

  .job_view .con a {
    font-size: 14px;
    line-height: 25px;
    margin-top: 25px;
    padding-left: 57px;
    background-size: 49px; }

  .job_view .con a span {
    font-size: 16px; }

  .com-banner1 .tit h4 {
    font-size: 22px; }

  .com-banner1 .tit p {
    max-width: 85%;
    font-size: 12px;
    margin-top: 9px; }

  .com-banner1 .tit a {
    font-size: 12px;
    padding: 8px 15px;
    margin-top: 18px; }

  .banner-box {
    padding-bottom: 100%; }

  .m-pages li a {
    width: 50px;
    height: 40px;
    line-height: 39px; }

  .serve_view {
    padding-top: 60px; }

  .serve_view .tit h3 {
    font-size: 22px;
    margin-bottom: 12px; }

  .serve_view .tit p {
    font-size: 12px;
    line-height: 22px; }

  .serve_view .con {
    margin-top: 30px;
    margin-bottom: -20px; }

  .serve_view .con a {
    width: 100%;
    height: 400px;
    margin-bottom: 20px; }

  .serve_view .con a .txt {
    padding: 50px 9% 0; }

  .serve_view .con a .txt h3 {
    font-size: 20px; }

  .serve_view .con a .txt h5 {
    font-size: 12px;
    margin-top: 12px; }

  .serve_view .con a .txt span {
    font-size: 12px;
    padding: 10px 31px 10px 15px;
    background-position: right 15px center;
    background-size: 10px;
    bottom: 50px;
    left: 8%; }

  .serve_view .links .wrap a {
    width: 100%;
    padding: 0 15px;
    height: 90px;
    margin-bottom: 15px; }
    .serve_view .links .wrap a:last-child {
      margin-bottom: 0; }

  .serve_view .links .wrap a .txt h3 {
    font-size: 16px; }

  .serve_view .links .wrap a .txt p {
    font-size: 12px;
    margin-top: 8px; }

  .serve_view .links .wrap a img {
    width: 60px;
    height: 60px; }

  .serve_view .links {
    margin-top: 40px;
    padding: 30px 0;
    background-size: cover; }

  .doors_view .order {
    padding: 40px 0; }

  .doors_view .order .tit {
    width: 100%;
    text-align: center; }

  .doors_view .order form {
    width: 100%;
    margin-top: 20px; }

  .doors_view .order .tit h3 {
    font-size: 22px;
    line-height: 30px; }

  .doors_view .order .tit h5 {
    font-size: 18px; }

  .doors_view .order .tit h5 span {
    font-size: 30px;
    line-height: 1.5; }

  .doors_view .order form .ind {
    height: 40px;
    padding: 0 10px;
    font-size: 14px;
    margin-bottom: 10px; }

  .doors_view .order form div:nth-child(1) .ind {
    width: 100%; }

  .doors_view .order form .sub {
    height: 40px;
    font-size: 14px; }

  .doors_view .why {
    padding: 60px 0 30px; }

  .doors_view .tit1 h3 {
    font-size: 22px; }

  .doors_view .tit1 p {
    font-size: 14px;
    margin-top: 15px;
    white-space: pre-wrap; }

  .doors_view .why-swiper {
    margin-top: 40px;
    padding-bottom: 40px; }

  .doors_view .why-swiper .swiper-slide {
    height: 280px; }

  .doors_view .why-swiper .swiper-slide .txt .ico {
    width: 35px;
    height: 35px;
    margin-top: 30px; }

  .doors_view .why-swiper .swiper-slide .txt h3 {
    font-size: 16px;
    margin-top: 20px; }

  .doors_view .why-swiper .swiper-slide .txt p {
    font-size: 14px;
    line-height: 24px;
    margin-top: 25px; }

  .doors_view .why-swiper .swiper-slide .txt span {
    width: 20px;
    height: 20px;
    margin-top: 50px; }

  .doors_view .anli {
    padding: 40px 0; }

  .doors_view .anli .anli-swiper {
    margin-top: 30px;
    padding-bottom: 50px; }

  .doors_view .anli .anli-swiper .swiper-slide .pic h3 {
    font-size: 18px;
    bottom: 25px;
    left: 25px;
    right: 25px; }

  .doors_view .anli .anli-swiper .btn_box .button-prev {
    width: 35px;
    height: 35px; }

  .doors_view .anli .anli-swiper .btn_box .button-next {
    width: 35px;
    height: 35px; }

  .doors_view .anli .anli-swiper .btn_box .swiper-pagination {
    font-size: 12px; }

  .doors_view .anli .anli-swiper .btn_box .swiper-pagination .swiper-pagination-current {
    font-size: 22px; }

  .doors_view .anli .anli-swiper .btn_box {
    width: 140px;
    left: calc(50% - 70px); }

  .doors_view .pain {
    padding: 50px 0; }

  .doors_view .pain .list {
    margin-top: 30px;
    margin-bottom: -10px; }

  .doors_view .pain .list li {
    width: 32%;
    margin-bottom: 10px; }

  .doors_view .pain .list li img {
    height: 190px; }

  .doors_view .pain .list li .txt {
    height: 80px;
    padding: 14px 8px 0; }

  .doors_view .pain .list li .txt h3 {
    font-size: 18px; }

  .doors_view .pain .list li .txt h5 {
    font-size: 12px;
    margin-top: 4px; }

  .doors_view .gonyi {
    padding: 40px 0; }

  .doors_view .gonyi .box_swiper .button-prev {
    display: none; }

  .doors_view .gonyi .box_swiper .button-next {
    display: none; }

  .doors_view .gonyi .box_swiper {
    padding: 0;
    margin-top: 30px; }

  .doors_view .gonyi .gonyi-swiper .swiper-slide .pic {
    width: 100%;
    height: 240px; }

  .doors_view .gonyi .gonyi-swiper .swiper-slide .txt {
    width: 100%;
    padding: 30px 15px 60px; }

  .doors_view .gonyi .gonyi-swiper .swiper-slide .txt h3 {
    font-size: 20px; }

  .doors_view .gonyi .gonyi-swiper .swiper-slide .txt h5 {
    font-size: 14px;
    margin-top: 5px; }

  .doors_view .gonyi .gonyi-swiper .swiper-slide .txt .line {
    margin-top: 15px; }

  .doors_view .gonyi .gonyi-swiper .swiper-slide .txt p {
    font-size: 12px;
    line-height: 22px;
    margin-top: 15px; }

  .doors_view .gonyi .gonyi-swiper .swiper-slide .txt img {
    bottom: 15px;
    right: 15px;
    width: 35px;
    height: 35px; }

  .doors_view .gonyi .gonyi-swiper {
    padding-bottom: 40px; }

  .doors_view .liuchen {
    padding-top: 60px;
    background-size: 100% 220px; }

  .doors_view .liuchen .list {
    margin-top: 30px;
    padding: 40px 0 15px; }

  .doors_view .liuchen .list li {
    margin-bottom: 15px;
    width: 33.3%; }

  .doors_view .liuchen .list li img {
    width: 70px; }

  .doors_view .liuchen .list li h3 {
    margin-top: 15px;
    font-size: 12px;
    padding: 5px 12px;
    white-space: nowrap; }

  .doors_view .liuchen .list li::after {
    display: none; }

  .doors_view .baozhan {
    padding: 50px 0 60px; }

  .doors_view .baozhan .baozhan-swiper {
    margin-top: 30px; }

  .doors_view .baozhan .baozhan-swiper .swiper-slide .bg {
    width: 100%;
    height: 410px; }

  .doors_view .baozhan .baozhan-swiper .swiper-slide .txt .ico {
    width: 80px;
    height: 80px;
    padding: 17px; }

  .doors_view .baozhan .baozhan-swiper .swiper-slide .txt h3 {
    font-size: 18px;
    line-height: 30px;
    margin-top: 15px;
    height: 30px; }

  .doors_view .baozhan .baozhan-swiper .swiper-slide .txt .line {
    width: 30px;
    height: 2px;
    margin-top: 12px; }

  .doors_view .baozhan .baozhan-swiper .swiper-slide .txt p {
    font-size: 12px;
    line-height: 24px;
    margin-top: 20px; }

  .doors_view .other {
    padding: 40px 0 50px; }

  .doors_view .other .tit {
    font-size: 22px; }

  .doors_view .other .other-swiper {
    margin-top: 25px;
    padding-bottom: 30px; }

  .doors_view .other .other-swiper .swiper-slide .txt {
    padding: 15px 70px 20px 15px; }

  .doors_view .other .other-swiper .swiper-slide .txt h3 {
    font-size: 18px; }

  .doors_view .other .other-swiper .swiper-slide .txt p {
    font-size: 14px;
    margin-top: 8px; }

  .doors_view .other .other-swiper .swiper-slide .txt .more {
    width: 40px;
    height: 40px;
    top: 24px;
    right: 15px;
    background-size: 12px; }

  .doors_view .other .other-swiper .swiper-pagination {
    display: block; }

  .doors_view .other {
    padding: 40px 0; }

  .shop_view {
    padding: 50px 0 40px; }

  .shop_view .tit {
    font-size: 22px; }

  .shop_view .store_location select {
    height: 40px;
    padding-right: 20px;
    padding-left: 10px;
    font-size: 12px;
    background-position: right 6px center; }

  .shop_view .store_location button {
    height: 40px;
    font-size: 12px;
    line-height: 40px; }

  .shop_view .con {
    margin-left: 0;
    margin-right: 0;
    margin-top: 30px; }

  .shop_view .con #joan_map {
    width: 100%;
    height: 240px; }

  .shop_view .con .list_box {
    width: 100%;
    padding: 25px 15px; }

  .shop_view .con .list_box .switch_address {
    height: 300px; }

  .shop_view .con .list_box .t1 {
    font-size: 12px;
    margin-bottom: 15px; }

  .shop_view .con .list_box .t1 span {
    font-size: 16px; }

  .shop_view .con .list_box .switch_address li {
    padding: 15px; }

  .shop_view .con .list_box .switch_address li h4 {
    font-size: 14px; }

  .shop_view .con .list_box .switch_address li h5 {
    font-size: 12px;
    line-height: 20px;
    background-position: top 5px left;
    margin-top: 7px; }

  .shop_view .con .list_box .switch_address li h6 {
    font-size: 12px;
    line-height: 20px;
    background-position: top 4px left;
    margin-top: 3px; }

  .case {
    padding-top: 50px; }

  .case .tit h3 {
    font-size: 20px; }
    .case .tit h3 span {
      font-size: 22px;
      margin-bottom: 5px; }

  .case .con .list {
    height: 375px;
    width: 100%; }

  .case .con .list a {
    height: 180px; }

  .case .con .list a .pic h3 {
    font-size: 12px;
    padding: 12px 17px;
    top: 20px;
    left: 15px; }

  .case .con .list1 a:nth-child(2) {
    height: 180px; }

  .case .con .list2 a:nth-child(1) {
    height: 180px; }

  .case .con .list2 a:nth-child(2) {
    width: 48%; }

  .case .con .list2 a:nth-child(3) {
    width: 48%; }

  .case .con {
    margin-top: 30px;
    height: 385px; }

  .case .con .more {
    height: 150px; }

  .com-banner1 {
    height: 0;
    padding-bottom: 60%; }

  .com-tit2 h3 {
    font-size: 22px;
    margin-bottom: 5px; }

  .com-tit2 h5 {
    font-size: 20px; }

  .brand_view {
    padding: 20px 0px 60px; }

  .brand_view .con {
    margin-top: 40px; }

  .brand_view .con .txt {
    width: 100%; }

  .brand_view .con .pic {
    width: 100%;
    margin-top: 25px; }

  .brand_view .con .txt p {
    font-size: 14px;
    line-height: 25px; }

  .brand_view .con .txt h3 {
    font-size: 20px;
    margin-top: 33px;
    margin-bottom: 15px; }

  .factory_view {
    padding-top: 20px; }

  .factory_view .tit {
    font-size: 22px; }

  .factory_view .list {
    margin-bottom: -20px; }

  .factory_view .list li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px; }

  .factory_view .list li .txt {
    padding: 20px;
    padding-right: 45px;
    padding-left: 15px;
    background-size: 25px; }

  .factory_view .list li .txt .btn {
    width: 28px;
    height: 28px;
    top: 20px;
    right: 15px; }

  .factory_view .list li .txt h3 {
    font-size: 14px;
    line-height: 1.2; }

  .factory_view .list li .pic::after {
    background-size: 150px; }

  .product_view .right {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px; }

  .product_view .left {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px; }

  .sidebar_pro .tit {
    padding-bottom: 20px; }

  .sidebar_pro {
    padding: 40px 0 20px; }

  .sidebar_pro .tit h3 {
    font-size: 20px; }

  .sidebar_pro dl {
    margin-left: 0; }

  .sidebar_pro dl dt {
    padding: 18px  25px 18px  0; }

  .sidebar_pro dl dt i {
    font-size: 16px; }

  .sidebar_pro dl.on dd {
    margin-bottom: 5px; }

  .sidebar_pro dl dd {
    padding-left: 25px; }

  .sidebar_pro dl dd a {
    font-size: 12px; }

  .sidebar_pro dl dd::after {
    width: 8px;
    height: 8px;
    left: 5px;
    top: 58%; }

  .sidebar_pro form {
    margin-top: 30px; }

  .sidebar_pro form input {
    height: 35px;
    padding-left: 15px;
    padding-right: 35px;
    font-size: 12px; }

  .sidebar_pro form button {
    width: 40px;
    height: 35px;
    background-size: 15px; }

  .product_view .list {
    margin-top: 40px;
    margin-bottom: -20px; }

  .product_view .list li {
    margin-bottom: 20px; }

  .product_view .list li a .pic {
    width: 100%;
    padding-bottom: 75.25%; }

  .product_view .list li .txt {
    width: 100%;
    height: 170px; }

  .product_view .list li .txt h3 {
    font-size: 18px; }

  .product_view .list li .txt h5 {
    font-size: 14px;
    margin-top: 10px; }

  .product_view .list li .txt span {
    width: 120px;
    height: 40px;
    font-size: 14px;
    margin-top: 20px; }

  .product_view .list li:nth-child(2n) .pic {
    order: initial; }

  .product_view .list li a .pic::after {
    background-size: 150px; }

  .product_view .list li a .pic::before {
    top: 6px;
    left: 6px;
    right: 6px;
    bottom: 6px; }

  .product-info_view .above .img-swiper::after {
    width: 50px;
    height: 50px; }

  .product-info_view .above {
    padding: 60px 0; }

  .product-info_view .above .img-swiper {
    width: 100%;
    height: 220px;
    margin: 0; }

  .product-info_view .above .txt {
    width: 100%;
    padding: 30px 0 0;
    height: auto;
    margin-top: 0; }

  .product-info_view .above .img-swiper .button-prev {
    width: 40px;
    height: 40px;
    margin-top: -20px;
    left: 15px;
    background-size: 12px; }

  .product-info_view .above .img-swiper .button-next {
    width: 40px;
    height: 40px;
    margin-top: -20px;
    right: 15px;
    background-size: 12px; }

  .product-info_view .above .txt h1 {
    font-size: 22px;
    padding-bottom: 12px; }

  .product-info_view .above .txt .info {
    font-size: 14px;
    line-height: 25px;
    margin-top: 14px; }

  .product-info_view .above .txt .link {
    margin-top: 20px;
    padding-top: 20px; }

  .product-info_view .above .txt .link a {
    width: 120px;
    height: 40px;
    font-size: 14px; }

  .product-info_view .above .txt .link a:first-child {
    margin-right: 15px; }

  .product-info_view .effect .tit1 h5 {
    font-size: 14px;
    margin-top: 5px; }

  .product-info_view .effect .tit1 h3 {
    font-size: 20px; }

  .product-info_view .effect .content {
    margin-top: 30px; }

  .product-info_view .effect .content .img-swiper {
    padding-bottom: 40px; }

  .product-info_view .effect {
    padding-bottom: 40px; }

  .product-info_view .effect .content .img-swiper .swiper-slide {
    height: 220px; }

  .product-info_view .effect .content .img-swiper .swiper-slide::after {
    opacity: 1;
    visibility: visible;
    background-size: 55px; }

  .case2_view .list li {
    width: 100%;
    margin-bottom: 65px; }

  .case2_view {
    padding-top: 50px; }

  .case2_view .list li .txt h3 {
    font-size: 14px;
    line-height: 20px;
    height: 40px; }

  .case2_view .list li .txt {
    bottom: -40px;
    padding: 15px 6%; }

  .case2_view .list {
    margin-bottom: -28px; }

  .shipin {
    padding-bottom: 60%; }

  .shipin .box h5 {
    font-size: 18px;
    margin-top: 8px; }

  .shipin .box .ico {
    margin-top: 10px;
    width: 40px; }

  .shipin .box h3 {
    font-size: 14px; }

  .join {
    padding: 50px 0; }

  .join .item {
    height: 240px; }
    .join .item .txt .more {
      width: 105px;
      height: 38px;
      font-size: 12px;
      margin: 0 auto;
      margin-top: 0px;
      margin-top: 15px; }

  .join .item .txt h3 {
    font-size: 20px; }

  .join .item .txt p {
    font-size: 13px;
    margin-top: 10px;
    padding: 0 15px; }

  .footer .txt_box {
    display: none; }

  .footer .code_box {
    display: none; }

  .footer .info_box .copy p {
    margin-top: 30px;
    line-height: 1.5; }

  .shipin_view {
    padding-top: 50px; }

  .shipin_view .tit {
    font-size: 22px; }

  .shipin_view .tuijain .shipin_box {
    width: 100%;
    height: 0;
    padding-bottom: 63%; }

  .shipin_view .tuijain .list2 {
    width: 100%;
    height: 85px;
    overflow-y: hidden;
    overflow-x: scroll;
    margin-top: 10px;
    display: block;
    white-space: nowrap; }

  .shipin_view .tuijain .list2 li {
    height: 100%;
    width: 35%;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    margin-bottom: 0;
    margin-right: 1%;
    display: inline-block; }
    .shipin_view .tuijain .list2 li:last-child {
      margin-right: 0; }

  .shipin_view .tuijain .shipin_box h3 {
    left: 15px;
    bottom: 15px;
    right: 15px;
    font-size: 16px; }

  .shipin_view .tuijain .shipin_box::after {
    background-size: 50px; }

  .shipin_view .tuijain .list2 li::after {
    background-size: 30px; }

  .shipin_view .tuijain .list2 li h3 {
    left: 10px;
    bottom: 10px;
    right: 10px;
    font-size: 12px; }

  .shipin_view .tuijain .list2 li::before {
    border-width: 4px; }

  .shipin_view .list {
    margin-top: 40px;
    margin-bottom: -20px; }

  .shipin_view .list li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px; }

  .shipin_view .list li .txt {
    padding: 15px; }

  .shipin_view .list li .txt h5 {
    font-size: 14px;
    margin-top: 8px; }

  .shipin_view .list li .txt h3 {
    font-size: 16px;
    line-height: 25px;
    height: 50px; }

  .shipin_view .list li .pic::after {
    background-size: 50px; }

  .honor_view {
    padding-top: 40px; }

  .honor_view .list {
    margin-bottom: -20px;
    justify-content: space-between; }

  .honor_view .list li {
    width: 100%;
    margin-right: 0%;
    margin-bottom: 20px; }

  .honor_view .list li .pic {
    height: 310px;
    padding: 22px 15px; }

  .honor_view .list li .txt {
    padding: 15px 12px; }

  .honor_view .list li .txt h3 {
    font-size: 16px; }

  .join_view .guanmin {
    padding: 50px 0; }

  .join_view .tit h3 {
    font-size: 22px;
    margin-bottom: 6px; }

  .join_view .guanmin .con {
    margin-top: 30px; }

  .join_view .guanmin .con .img-swiper {
    width: 100%;
    height: 260px; }

  .join_view .guanmin .con .img-tabs {
    width: 100%;
    height: 80px;
    margin-top: 15px; }

  .join_view .guanmin .con .img-tabs .swiper-slide-active .pic img {
    border-width: 2px; }

  .join_view .marketing {
    padding: 60px 0 30px; }

  .join_view .marketing .marketing-swiper {
    margin-top: 30px;
    padding-bottom: 40px; }

  .join_view .future {
    padding-top: 60px;
    padding-bottom: 30px; }

  .join_view .future .future-swiper {
    margin-top: 30px;
    padding-bottom: 40px; }

  .join_view .future .future-swiper .swiper-pagination {
    display: block; }

  .join_view .future .future-swiper .swiper-slide .pic {
    height: 200px; }

  .join_view .future .future-swiper .button-prev {
    width: 35px;
    height: 35px;
    top: calc(50% - 17px);
    left: 5px;
    display: none; }

  .join_view .future .future-swiper .button-next {
    width: 35px;
    height: 35px;
    top: calc(50% - 17px);
    right: 5px;
    display: none; }

  .join_view .future .future-swiper .swiper-slide .pic .txt {
    padding: 15px; }

  .join_view .future .future-swiper .swiper-slide .pic h3 {
    font-size: 14px; }

  .join_view .row-join5 {
    padding: 60px 0; }

  .join_view .row-join5 {
    padding-top: 40px; }
  .join_view .ul7 li {
    width: 50%;
    height: 170px; }
  .join_view .ul7 .mask {
    padding: 15px; }
  .join_view .ul7 .mask h4 {
    margin-bottom: 5px;
    font-size: 16px; }
  .join_view .ul7 .mask .txt {
    font-size: 10px;
    line-height: 1.5;
    text-align: center; }
  .join_view .row-join6 {
    padding: 50px 0 30px; }
  .join_view .row-join7 {
    padding: 20px 0 50px; }
  .join_view .ul9:after {
    left: 7px; }
  .join_view .ul9 ul {
    margin: 0;
    margin-bottom: -10px; }
  .join_view .ul9 li {
    padding: 0;
    padding-left: 20px;
    margin-bottom: 10px;
    width: 100%;
    text-align: left !important; }
  .join_view .ul9 li:before {
    right: auto !important;
    left: 0 !important;
    top: 14px !important;
    bottom: auto !important; }
  .join_view .ul9 .con {
    padding: 10px; }
  .join_view .ul9 .num {
    font-size: 18px; }

  .join_view .condition {
    padding-top: 60px;
    padding-bottom: 60px; }

  .join_view .condition .list {
    margin-top: 30px;
    margin-bottom: -20px; }

  .join_view .condition .more {
    margin-top: 30px; }

  .join_view .condition .more a {
    width: 105px;
    height: 38px;
    font-size: 12px;
    margin: 0 auto;
    margin-top: 0px;
    margin-top: 0px;
    margin-top: 15px; }

  .join_view .condition .list li {
    width: 100%;
    margin-bottom: 20px; }

  .join_view .condition .list li .txt {
    font-size: 14px;
    line-height: 25px;
    padding: 15px 20px; }

  .join_view .policies {
    padding: 80px 0; }

  .join_view .policies .policies-swiper .pic {
    height: 400px; }

  .join_view .policies .policies-swiper .pic .txt .ico {
    width: 40px;
    height: 40px; }

  .join_view .policies .policies-swiper .pic .txt h3 {
    font-size: 22px;
    margin-top: 22px; }

  .join_view .policies .policies-swiper .pic .txt .line {
    width: 28px;
    height: 1px;
    margin-top: 28px; }

  .join_view .policies .policies-swiper .pic .txt p {
    font-size: 12px;
    line-height: 22px; }

  .join_view .policies .policies-swiper .pic .txt:hover p {
    height: 66px;
    margin-top: 30px; }

  .join_view .policies .list {
    margin-bottom: -20px; }

  .join_view .policies .list li {
    width: 47.5%;
    height: 190px;
    padding: 25px 12px 0;
    margin-bottom: 20px; }

  .join_view .policies .list li img {
    width: 30px;
    height: 30px; }

  .join_view .policies .list li h3 {
    font-size: 18px;
    margin-top: 9px; }

  .join_view .policies .list li p {
    font-size: 14px;
    line-height: 20px;
    height: 60px;
    margin-top: 8px; }

  .banner {
    padding-bottom: 100%;
    
  }

  .banner .pc {
    display: none; }

  .banner .mobile {
    display: block; }

  .banner::after {
    display: none; }

  .banner .button-prev {
    display: none; }

  .banner .button-next {
    display: none; }

  .banner .swiper-pagination {
    bottom: 20px;
    display: block; }
    .banner .arrow{
      display: none;
    }
    .banner .swiper-slide.id1 .txt {

      left: 10%;
      margin-left: 0;
   
      width: 80%;
    }

.banner .swiper-slide.id2 .txt {
 
  left: 20px;
  top: 30%;
  width: 80%;
}
.banner .swiper-slide.id3 .txt {
 
  left: 20px;
  top: 30%;
  width: 60%;
}
.banner .swiper-slide.id4 .txt {
 
  right: 20px;
  top: 30%;
  width: 60%;
}


  .about {
    padding-top: 60px;
    padding-bottom: 60px;
    background-attachment: initial;
  }

  .about .txt {
    width: 100%; 
  }

  .about .list {
    width: 100%; 
  }


  .about .txt h3 {
    font-size: 22px; 
  }

  .about .txt h5 {
    font-size: 20px; }

  .about .txt p {
    font-size: 14px;
    line-height: 22px;
    margin-top: 30px;
    padding-right: 20px; }

  .about .txt a {
    width: 110px;
    height: 40px;
    border: 1px solid #fff;
    margin-top: 30px; }

  .about .txt a span {
    font-size: 12px; }

  .about .txt a i {
    width: 5px;
    height: 9px;
    margin-left: 12px;
    background-size: contain; }

  .about .list li h3 span {
    font-size: 30px;
    margin-right: 5px; }

  .about .list li h3 {
    font-size: 14px; }

  .about .list li h5 {
    font-size: 14px;
    margin-top: 3px; }

  .about .list li {
    margin-bottom: 20px; }

  .about .list {
    margin-top: 100px; }

  .product {
    padding: 60px 0; }

  .product .tit h3 {
    font-size: 22px;
    margin-top: 5px; }

  .product .product-swiper {
    margin-top: 30px;
    padding-bottom: 30px; }

  .product .product-swiper .swiper-slide .pic {
    height: 420px; }

  .product .product-swiper .swiper-slide .pic .txt .ico {
    width: 60px;
    height: 60px;
    margin-top: 15px; }

  .product .product-swiper .swiper-slide .pic .txt .line {
    width: 25px;
    height: 2px;
    margin-top: 15px; }

  .product .product-swiper .swiper-slide .pic .txt h3 {
    font-size: 20px;
    margin-top: 15px; }

  .product .product-swiper .swiper-slide .pic .txt h5 {
    font-size: 12px;
    margin-top: 5px; }

  .product .product-swiper .swiper-slide .pic .txt .right_ico {
    width: 30px;
    height: 20px;
    background-size: contain;
    margin-top: 55px; }

  .product .product-swiper .swiper-slide:nth-child(2n+1) {
    top: 0; }

  .product .product-swiper .swiper-pagination {
    display: block; }

  .news {
    padding: 60px 0 40px; }

  .news .tit h3 {
    font-size: 22px; }

  .news .tit a {
    width: 120px;
    height: 40px;
    border: 1px solid #cac8c8;
    margin-top: 0; }

  .news .news-swiper .swiper-slide .txt {
    padding: 15px 10px; }

  .news .news-swiper .swiper-slide .txt h3 {
    font-size: 16px;
    line-height: 22px;
    height: 44px; }

  .news .news-swiper .swiper-slide .txt p {
    font-size: 12px;
    line-height: 20px;
    height: 40px;
    margin-top: 10px; }

  .news .news-swiper .swiper-slide .txt .time {
    font-size: 12px;
    margin-top: 10px; }

  .news .news-swiper {
    margin-top: 30px;
    padding-bottom: 30px; }

  .news .news-swiper .swiper-pagination {
    display: block; }

  .step-7 .head .content .big {
    font-size: 36px; }

  .step-7 .head .content i {
    font-size: 30px; }

  .step-7 .head .content {
    font-size: 16px;
    top: 35%; }

  .step-7 .head {
    height: 150px; 
    background-attachment: initial;
  background-size: cover;
  }

  .step-7 .container {
    height: 240px;
    margin-top: 40px; }

  .step-7 .container .col .items .item {
    filter: initial; }

  .step-7 .container .col .items .item {
    margin: 0 7px; }

  .step-7 .container .col::after, .step-7 .container .col::before {
    width: 50px; }

  .step-7 .container .col {
    margin: 7px; }

  .step-7 {
    padding-bottom: 40px; }

  .footer .footer_nav {
    display: none; }

  .footer {
    padding-top: 50px;
    margin-bottom: 50px; }

  .footer .right_box .footer_nav {
    display: none; }

  .footer .info_box {
    width: 100%;
    text-align: center; }

  .footer .info_box .txt {
    text-align: center; }

  .footer .info_box .txt h5 span {
    font-size: 22px;
    margin-top: 5px; }

  .footer .info_box .codes {
    margin-top: 50px;
    justify-content: center; }

  .footer .info_box .links {
    margin-top: 30px;
    width: 150px;
    height: 40px;
    margin-right: auto; }

  .footer .info_box .txt p {
    padding: 0 40px; }

  .footer .copy {
    padding: 15px 0;
    display: block; }

  .footer .copy p {
    font-size: 12px;
    display: inline; }
    .footer .wrap {
      display: block;
      text-align: center;
   
    }


  .news .tit a span {
    font-size: 12px; }

  .news .tit a i {
    width: 5px;
    height: 9px;
    margin-left: 12px;
    background-size: contain; }

  .about_view .intro {
    padding: 60px 0 50px; }

    .about_view .intro .pic {
      width: 100%;
      
      height: 220px;
      margin-top: 20px;
    }
    .about_view .intro .pic::after {
     background-size: 40px;
    }
  .com-tit1 h3 {
    font-size: 16px; }

  .com-tit1 h5 {
    font-size: 24px;
    margin-top: 8px; }

  .about_view .intro .txt {
    font-size: 16px;
    line-height: 30px;
    margin-top: 30px;
    text-align: left;
   }

  .about_view .intro .list {
    margin-top: 20px; }

  .about_view .intro .list li .ico {
    width: 35px;
    height: 35px;
    margin-bottom: 15px; }

  .about_view .intro .list li h3 {
    font-size: 14px; }

  .about_view .intro .list li h3 span {
    font-size: 30px; }

  .about_view .intro .list li h5 {
    font-size: 11px;
    margin-top: 10px; }

  .about_view .ban {
    padding: 80px 0; }

  .about_view .ban .txt h3 {
    font-size: 24px; }

  .about_view .ban .txt p {
    font-size: 12px;
    margin-top: 20px; 
    line-height: 1.8;
  }

  .about_view .history {
    padding-top: 50px; }

  .about_view .history .tabs-swiper .swiper-slide {
    width: 85px;
    font-size: 14px;
    padding-bottom: 30px; }

  .about_view .history .tabs-swiper .swiper-slide::before {
    width: 23px;
    height: 23px; }

  .about_view .history .tabs-swiper .swiper-slide::after {
    width: 9px;
    height: 9px;
    bottom: 7px; }

  .about_view .history .tabs-swiper::after {
    bottom: 10px; }

  .about_view .history-swiper {
    margin-top: 30px;
    padding-bottom: 0; }

  .about_view .history-swiper .swiper-slide .pic {
    width: 100%;
    height: 220px; }

  .about_view .history-swiper .swiper-slide .txt {
    width: 100%;
    height: 230px;
    padding: 20px 15px; }

  .about_view .history-swiper .swiper-slide .txt h3 {
    font-size: 18px; }

    .about_view .history-swiper .swiper-slide .txt h5 {
      font-size: 18px; 
      margin-top: 6px;
    }
  .about_view .history-swiper .swiper-slide .txt p {
    font-size: 12px;
    line-height: 20px;
    margin-top: 10px; }

  .about_view .adv {
    padding: 60px 0 40px; }

  .about_view .adv .list {
    display: none; }

  .about_view .adv .adv-swiper {
    display: block; }

  .about_view .strength {
    padding: 50px 0 40px; }

  .about_view .strength .strength-swiper {
    margin-top: 30px;
    padding-bottom: 30px; }

  .about_view .strength .strength-swiper .button-prev {
    display: none; }

  .about_view .strength .strength-swiper .button-next {
    display: none; }

  .about_view .strength .strength-swiper .swiper-pagination {
    display: block; }

  .about_view .team {
    padding: 60px 0; }

  .about_view .team .con .left {
    width: 100%; }

  .about_view .team .con .right {
    width: 100%;
    /* margin-top: 8px; */
   }

  .about_view .team .con .left img:nth-child(1) {
    width: 100%;
    height: 150px;
    margin-bottom: 8px; }

  .about_view .team .con .left img:nth-child(n+2) {
    width: 100%;
    height: 240px;
    margin-bottom: 8px;
  }

  .about_view .team .con .right img {
    height: 400px; }

  .about_view .honor {
    padding: 40px 0; }

  .about_view .honor .swiper_box {
    margin-top: 30px; }
    .about_view .honor .swiper_box .swiper-container {
      padding-bottom: 40px; }
      .about_view .honor .swiper_box .swiper-container .swiper-pagination {
        display: none; 

      
      }

  .business_view_1 .intro .tit h3 {
    font-size: 20px; }

  .business_view_1 .intro {
    padding-top: 50px; }

  .business_view_1 .intro .tit p {
    font-size: 12px;
    line-height: 20px;
    margin-top: 15px; }

  .business_view_1 .intro .list1 {
    margin-top: 40px; }

  .business_view_1 .intro .list1 li .ico {
    width: 50px;
    height: 50px; }

  .business_view_1 .intro .list1 li h3 {
    font-size: 18px;
    margin-top: 20px; }

  .business_view_1 .intro .list1 li h5 {
    font-size: 12px;
    margin-top: 12px; }

  .business_view_1 .intro .list1 li {
    width: 100%;
    margin-bottom: 15px; }
    .business_view_1 .intro .list1 li:last-child {
      margin-bottom: 0; }

  .business_view_1 .intro .list2 {
    margin-top: 40px; }

  .business_view_1 .intro .list2 li {
    width: 100%;
    margin-bottom: 15px; }
    .business_view_1 .intro .list2 li:last-child {
      margin-bottom: 0; }

  .business_view_1 .intro .list2 li .pic .txt {
    padding: 17px 12px; }

  .business_view_1 .intro .list2 li .pic .txt h3 {
    font-size: 14px; }

  .business_view_1 .caseT {
    padding-top: 60px; }

  .business_view_1 .caseT .tit {
    padding: 0; }

  .business_view_1 .caseT .tit h3 {
    font-size: 20px; }

  .business_view_1 .caseT .tit p {
    font-size: 12px;
    line-height: 20px;
    margin-top: 20px; }

  .business_view_1 .caseT .tit a {
    padding: 10px 15px;
    position: initial;
    margin-top: 15px; }

  .business_view_1 .caseT .caseT-swiper {
    margin-top: 30px;
    padding-bottom: 30px; }

  .business_view_1 .caseT .caseT-swiper .swiper-slide .pic .txt {
    padding: 12px; }

  .business_view_1 .caseT .caseT-swiper .swiper-slide .pic .txt h3 {
    font-size: 14px; }

  .business_view_1 .caseT .caseT-swiper .swiper-slide .pic::after {
    background-size: 50px; }

  .business_view_1 .caseT .caseT-swiper .swiper-pagination {
    display: block; }

  .business_view_1 .liuchen {
    padding-top: 60px;
    padding-bottom: 50px; }

  .business_view_1 .liuchen .tit {
    font-size: 20px; }

  .business_view_1 .liuchen .con {
    margin-top: 25px; }

  section.contact {
    padding: 60px 0 50px; }

  section.contact .tit {
    padding-right: 0;
    position: relative; }

  section.contact .tit h3 {
    font-size: 20px; }

  section.contact .tit p {
    font-size: 12px;
    line-height: 20px;
    margin-top: 20px; }

  section.contact .tit a {
    font-size: 14px;
    padding: 10px 20px;
    position: initial;
    margin-top: 20px; }

  .business_view_1 .intro .list2 li .pic h5 {
    font-size: 18px;
    left: 12px;
    bottom: 15px; }

  .business_view_1 .intro .tit2 {
    margin-top: 50px; }

  .business_view_4 .intro {
    padding-top: 60px; }

  .business_view_4 .tit2 h3 {
    font-size: 20px; }

  .business_view_4 .tit2 p {
    font-size: 12px;
    line-height: 22px;
    margin-top: 25px;
    white-space: initial; }

  .business_view_4 .intro .list {
    margin-top: 30px; }

  .business_view_4 .intro .list .txt {
    padding: 25px 30px 20px;
    width: 100%;
    height: 200px; }

  .business_view_4 .intro .list li:nth-child(2n) .txt {
    order: initial; }

  .business_view_4 .intro .list .pic {
    width: 100%;
    height: 155px;
    position: relative;
    overflow: hidden; }

  .business_view_4 .intro .list .txt h3 {
    font-size: 16px; }

  .business_view_4 .intro .list .txt p {
    font-size: 12px;
    line-height: 20px;
    margin-top: 12px; }

  .business_view_4 .intro .list .txt::after {
    width: 2px;
    height: 105px;
    top: 47px;
    left: 5%; }

  .business_view_4 .duiwu {
    padding: 60px 0; }

  .business_view_4 .duiwu .list {
    margin-top: 30px;
    margin-bottom: -15px; }

  .business_view_4 .duiwu .list li {
    width: 48%;
    margin-bottom: 15px; }

  .business_view_5 .list3 {
    margin-top: 60px; }

  .business_view_5 .list3 li .txt {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px; }

  .business_view_5 .list3 li .pic {
    width: 100%;
    margin-top: 20px; }

  .business_view_5 .list3 li .txt h3 {
    font-size: 18px; }

  .business_view_5 .list3 li .txt p {
    font-size: 14px;
    line-height: 22px;
    padding-left: 13px;
    border-left: 1px solid #da251d;
    margin-top: 20px; }

  .business_view_5 .list3 li .txt h5 {
    font-size: 18px;
    margin-left: 12px;
    margin-top: 20px; }

  .business_view_5 .list3 li .txt .t2 {
    font-size: 12px;
    line-height: 22px;
    padding-left: 18px;
    margin-top: 15px; }

  .business_view_5 .list3 li {
    padding: 40px 0; }

  .business_view_5 .list3 li:nth-child(2n) .txt {
    order: initial; }

  .business_view_1 .intro .list1 li p {
    font-size: 12px;
    line-height: 22px;
    margin-top: 12px;
    white-space: initial; }

  .fuwu_view {
    padding: 60px 0; }

  .fuwu_view .tit h3{
    font-size: 20px; }
    .fuwu_view .tit p{
      font-size: 14px;
      white-space: initial;
      margin-top: 10px;
      padding: 0 5%;
    }

  .fuwu_view .list {
    margin-top: 30px; }

  .fuwu_view .list .txt {
    padding: 25px 15px 20px 30px;
    width: 100%;
    height: 190px;
    background-size: 100px; }

  .fuwu_view .list li:nth-child(2n) .txt {
    order: initial; }

  .fuwu_view .list .pic {
    width: 100%;
    height: 155px;
    position: relative;
    overflow: hidden; }

  .fuwu_view .list .txt h3 {
    font-size: 16px; }

  .fuwu_view .list .txt p {
    font-size: 12px;
    line-height: 20px;
    margin-top: 12px; }

  .fuwu_view .list .txt::after {
    width: 2px;
    height: 105px;
    top: 47px;
    left: 5%; }

  .fuwu_view .list .txt h5 {
    font-size: 12px;
    margin-top: 10px; }

  .process_view .liuchen {
    padding: 50px 0; }

  .process_view .liuchen .tit {
    font-size: 22px; }

  .process_view .liuchen .list {
    width: 100%;
    margin-left: 0;
    margin-top: 40px; }

  .process_view .liuchen .list li:nth-child(2n+1) .pic {
    left: 0; }

  .process_view .liuchen .list li:nth-child(2n+1)::after {
    left: 0; }

  .process_view .liuchen .list li:nth-child(2n+1) .txt {
    left: 25px; }

  .process_view .liuchen .list li:nth-child(2n+1) h3 {
    left: 0; }

  .process_view .liuchen .list li .pic {
    width: 50px;
    height: 50px;
    padding: 10px;
    margin-left: 15px; }

  .process_view .liuchen .list li h3 {
    font-size: 18px;
    margin-left: 8px; }

  .process_view .liuchen .list li .txt {
    width: 95%;
    height: 240px;
    padding: 50px 50px 15px;
    top: 0;
    left: 15px; }

  .process_view .liuchen .list li:nth-child(2n+1) .txt h5 {
    right: 15px;
    left: initial;
    font-size: 30px;
    top: 12px; }

  .process_view .liuchen .list li .txt h5 {
    font-size: 30px;
    top: 12px;
    right: 15px; }

  .process_view .liuchen .list li .txt p {
    font-size: 12px;
    line-height: 20px; }

  .process_view .liuchen .list li:nth-child(2n+1) .txt {
    left: 15px; }

  .process_view .liuchen .list li::after {
    width: 17px;
    height: 1px;
    top: 29px; }

  .process_view .liuchen .list li::before {
    width: 10px;
    height: 10px;
    left: -5px;
    top: 24px; }

  .process_view .liuchen .list li .txt {
    opacity: 1;
    visibility: visible; }

  .process_view .liuchen .list::after {
    top: 25px;
    bottom: 22px; }

  .process_view .liuchen .list li {
    margin-bottom: 210px; }

  .process_view .liuchen .list li:last-child {
    margin-bottom: 195px; }

  .process_view .liuchen .list li h3 {
    color: #333; }

  .process_view .adv {
    padding: 60px 0; }

  .process_view .adv .tit {
    font-size: 22px; }

  .process_view .adv .con {
    margin-top: 30px; }

  .process_view .adv .con .txt {
    text-align: center;
    width: 100%; }

  .process_view .adv .con .txt h3 {
    font-size: 22px; }

  .process_view .adv .con .txt h5 {
    font-size: 30px;
    margin-top: 20px; }

  .process_view .adv .con .list {
    width: 100%;
    margin-top: 30px;
    margin-bottom: -20px; }

  .process_view .adv .con .list li {
    width: 32%;
    height: 130px;
    margin-bottom: 20px; }

  .process_view .adv .con .list li img {
    width: 40px;
    height: 30px; }

  .process_view .adv .con .list li h3 {
    font-size: 18px;
    margin-top: 10px; }

  .process_view .adv .con .list li:hover h3 {
    font-size: 22px; }

  .process_view .adv .con .list li h5 {
    font-size: 14px;
    margin-top: 7px; }

  .yunwei_view .yunwei {
    padding: 50px 0 40px; }

  .yunwei_view .yunwei .tit {
    font-size: 22px; }

  .yunwei_view .yunwei .con {
    margin-top: 30px; }

  .yunwei_view .yunwei .con .txt {
    margin-right: 0;
    width: 100%;
    text-align: center; }

  .yunwei_view .yunwei .con .txt h3 {
    font-size: 20px; }

  .yunwei_view .yunwei .con .txt h5 {
    font-size: 18px;
    margin-top: 15px; }

  .yunwei_view .yunwei .con .txt p {
    font-size: 12px;
    margin-top: 15px; }

  .yunwei_view .yunwei .con .pic {
    text-align: center;
    margin-top: 30px; }
    .yunwei_view .yunwei .con .pic img {
      width: 70%; }




    .yunwei_view .yunwei .yunwei-swiper {
      display: block;
    }



    .yunwei_view .yunwei .yunwei-swiper .swiper-slide{
      /* width: 100% !important; */
      /* margin-bottom: 15px; */
      height: 200px; 
    }
  
    .yunwei_view .yunwei .yunwei-swiper .swiper-slide .txt {
      opacity: 1;
      visibility: visible;
      padding: 15px;
      background-size: 70px; }
  
    .yunwei_view .yunwei .yunwei-swiper .swiper-slide .txt h3 {
      font-size: 16px; }
  
    .yunwei_view .yunwei .yunwei-swiper .swiper-slide .txt p {
      font-size: 13px;
      line-height: 22px;
      margin-top: 10px; }



  .yunwei_view .yunwei .list {
    margin-top: 20px; 
    display: none;
  }

  .yunwei_view .yunwei .list li {
    width: 100% !important;
    margin-bottom: 15px;
    height: 195px; }

  .yunwei_view .yunwei .list li .txt {
    opacity: 1;
    visibility: visible;
    padding: 15px;
    background-size: 70px; }

  .yunwei_view .yunwei .list li .txt h3 {
    font-size: 14px; }

  .yunwei_view .yunwei .list li .txt p {
    font-size: 12px;
    line-height: 22px;
    margin-top: 10px; }

  .yunwei_view .scheme {
    padding: 60px 0; }

  .yunwei_view .scheme .tit h3 {
    font-size: 22px; }

  .yunwei_view .scheme .tit h5 {
    font-size: 14px;
    margin-top: 10px; }

  .yunwei_view .scheme .con .left {
    width: 100%; }

  .yunwei_view .scheme .con .left .pic {
    height: 200px; }

  .yunwei_view .scheme .con .list {
    width: 100%;
    margin-top: 15px; }

  .yunwei_view .scheme .con .list li {
    margin-bottom: 15px; }

  .yunwei_view .scheme .con .list li .pic h3 {
    font-size: 12px;
    padding: 7px 12px; }

  .yunwei_view .scheme .con .list li .pic {
    height: 180px; }

  .case_view .list li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px; }

  .case_view {
    padding-top: 50px; }

  .case_view .list li .pic .txt {
    padding: 14px 10px; }

  .case_view .list li .pic .txt h3 {
    font-size: 14px; }

  .case_view .list li .pic::after {
    background-size: 50px; }

  .case_view .list {
    margin-bottom: -20px; }

  .crumbs nav ul li {
    font-size: 14px; }

  .crumbs nav ul li a {
    font-size: 14px;
    line-height: 1.5; }

  .crumbs {
    padding: 20px 0; }

  .case-info_view .above .img-swiper {
    width: 100%;
    height: 240px;
   }

  .case-info_view .above {
    padding-bottom: 40px; }

  .case-info_view .above .img-swiper {
    width: 100%; }

  .case-info_view .above .img-swiper .pic {
    height: 0;
    padding-bottom: 66%;
    position: relative;
    overflow: hidden;
    display: block; }

  .case-info_view .above .txt {
    width: 100%;
    height: auto;
    padding: 25px 15px; }

  .case-info_view .above .txt h1 {
    font-size: 20px;
    padding-bottom: 15px; }

  .case-info_view .above .img-swiper .button-prev {
    width: 32px;
    height: 32px;
    left: 12px; 
    margin-top: -16px;
  }

  .case-info_view .above .img-swiper .button-next {
    width: 32px;
    height: 32px;
    right: 12px;
    margin-top: -16px;
   }

  .case-info_view .above .txt p {
    height: auto;
    font-size: 12px;
    line-height: 22px;
    margin-top: 15px; }

  .case-info_view .above .txt .links .btn1 span {
    font-size: 14px;
    margin-left: 5px; }

  .case-info_view .above .txt .links .btn1 {
    width: 38%;
    height: 40px; }

  .case-info_view .above .txt .links .tel-btn span {
    font-size: 16px; }

  .case-info_view .above .txt .links .tel-btn img {
    width: 25px; }

  .case-info_view .above .txt .links {
    margin-top: 15px; }

  .case-info_view .caseT {
    padding: 50px 0 40px; }

  .case-info_view .caseT .tit h3 {
    font-size: 22px; }

  .case-info_view .caseT .tit p {
    font-size: 14px;
    margin-top: 8px; }

  .case-info_view .caseT .caseT-swiper .swiper-slide .pic .txt {
    padding: 12px; }

  .case-info_view .caseT .caseT-swiper .swiper-slide .pic .txt h3 {
    font-size: 14px; }

  .case-info_view .caseT .caseT-swiper .swiper-slide .pic::after {
    background-size: 50px; }

  .case-info_view .caseT .caseT-swiper {
    margin-top: 30px;
    padding-bottom: 40px; }

  .news_view .tit h3 {
    font-size: 22px; }

  .news_view .tit h5 {
    font-size: 14px;
    margin-top: 8px; }

  .news_view {
    padding-top: 30px; }

  .news_view .list li a {
    padding: 15px 0; }

  .news_view .list li .pic {
    width: 100%;
    height: 0;
    padding-bottom: 56%;
    margin-left: 0; }

  .news_view .list li .txt {
    width: 75%;
    padding-left: 0;
    margin-right: auto;
    margin-top: 20px; }

  .news_view .list li .txt h3 {
    font-size: 16px; }

  .news_view .list li .txt p {
    font-size: 12px;
    line-height: 20px;
    margin-top: 10px;
    height: 40px; }

  .news_view .list li .wrap {
    align-items: center; }

  .news_view .list li .txt span {
    margin-top: 10px;
    font-size: 12px; }

  .news_view .list li .time {
    margin-right: 0;
    margin-top: 20px; }

  .news_view .list li .txt span::after {
    height: 1px; }

  .news_view .list li .time h3 {
    font-size: 32px; }

  .news_view .list li .time h5 {
    font-size: 14px;
    line-height: 1;
    margin-top: 10px;
    margin-bottom: 5px; }

  .news_view .list li .time h6 {
    font-size: 14px;
    line-height: 1; }

  .news_view .list li .wrap::after {
    left: 15px;
    right: 15px;
    bottom: -20px; }

  .news_view .list li:first-child .wrap::before {
    top: -15px; }

  .news-info_view .m-contxt2 .tit {
    font-size: 20px; }

  .news-info_view .m-contxt2 .info {
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    justify-content: center; }
    .news-info_view .m-contxt2 .info .social-share {
      display: none; }

  .news-info_view .m-contxt2 .info .time {
    font-size: 14px;
    line-height: 18px;
    padding-left: 25px;
    background-size: 20px;
    padding-bottom: 2px; }

  .news-info_view .m-contxt2 .edit {
    padding: 30px 0; }

  .news-info_view .link {
    padding-top: 30px;
    border-top: 1px solid #f0f0f0; }

  .news-info_view .link a {
    width: 100%;
    height: 40px;
    padding-left: 50px;
    font-size: 14px;
    line-height: 20px; }

  .news-info_view .link a::after {
    width: 40px;
    height: 40px; }

  .news-info_view .link a.next {
    margin-top: 15px;
    padding-right: 0;
    padding-left: 50px; }

  .news-info_view .link a.next::after {
    left: 0;
    right: initial; }

  .news-info_view .sidebar .tit h3 {
    font-size: 20px; }

  .news-info_view .sidebar .tit {
    border-left: 2px solid #da251d;
    padding-left: 10px;
    padding-bottom: 1px; }

  .news-info_view .sidebar .list h4 {
    font-size: 14px;
    margin-top: 15px; }

  .news-info_view .sidebar .list .time {
    font-size: 14px;
    margin-top: 5px; }

  .news-info_view .sidebar .list li {
    margin-bottom: 20px; }

  .news-info_view .sidebar .list {
    margin-top: 22px;
    margin-bottom: -20px; }

  .product_view .list li a .txt span {
    display: none; }

  .contact_view .info .item li img {
    width: 40px; }

  .contact_view .info .item li {
    flex-wrap: nowrap;
    margin-bottom: 15px;
    width: 100%;
    justify-content: flex-start;
    align-items: flex-start; }

  .contact_view .info .item li p {
    margin-left: 7px;
    font-size: 14px; }

  .contact_view .info .item li p span {
    display: block;
    font-size: 15px;
    line-height: 1.2;
    color: #333;
    margin-top: 2px;
    font-weight: bold; }

  .contact_view .map {
    height: 260px;
    margin-left: 0;
    margin-right: 0;
    margin-top: 40px; }

  .contact_view .online2 {
    padding: 50px 0; }

  .contact_view .online2 .tit h3 {
    font-size: 22px; }

  .contact_view .online2 .tit h5 {
    font-size: 18px; }

  .contact_view .online2 h3::after {
    width: 100px;
    bottom: 20px; }

  .contact_view .online2 ul {
    margin-bottom: -10px;
    margin-top: 30px; }

  .contact_view .online2 ul li:nth-child(4) .ind {
    width: 49%;
    height: 40px;
    padding: 0 15px;
    font-size: 14px;
    background-position: right 10px center;
    background-size: 12px; }

  .contact_view .online2 ul li {
    width: 100%;
    margin-bottom: 10px; }

  .contact_view .online2 ul li:last-child {
    margin-top: 15px; }

  .contact_view .online2 ul li input {
    width: 100%;
    height: 40px;
    padding: 0 15px;
    font-size: 14px; }

  .contact_view .online2 ul li textarea {
    padding: 15px;
    font-size: 14px;
    height: 140px; }

  .contact_view .online2 ul li:last-child button {
    font-size: 14px;
    padding: 10px 30px;
    margin: 0 5px; }

  .contact_view .info .tit {
    font-size: 22px; }

  .contact_view .info {
    padding-top: 50px;
    padding-bottom: 40px; }

  .contact_view .info .item {
    margin-top: 30px;
    margin-bottom: -15px; }

  /* 768 */
  .online .main form figure {
    display: none; }

  .online .main form ul {
    width: 100%; }

  .online .main {
    padding: 15px; }

  .online .main .tit h3 {
    font-size: 20px; }

  .m-contxt1 .tit {
    margin-bottom: 0; }

  .m-contxt1 .share-ico {
    display: none; }

  .m-contxt1 {
    padding: 20px 10px; }

  .m-contxt1 .tit {
    font-size: 18px; }

  .m-contxt1 .box-info .info span {
    font-size: 14px; }

  .m-contxt1 .share-box {
    display: none; }

  .m-contxt1 .box-info {
    padding-bottom: 8px;
    margin-bottom: 8px; }

  .m-contxt1 .item {
    margin-bottom: 10px;
    padding-bottom: 15px; }

  .m-contxt1 .link .prev {
    font-size: 14px;
    margin-bottom: 6px; }

  .m-contxt1 .link .next {
    font-size: 14px; }

  .m-contxt1 .link .back {
    position: absolute;
    right: 0;
    bottom: 0;
    font-size: 14px;
    margin-top: 10px;
    padding: 8px 20px; }

  .m-contxt1 .link {
    padding-right: 0;
    position: relative;
    padding-bottom: 30px; }

  .page-t1 {
    padding-right: 0; }

  .page-t1 a {
    font-size: 14px; }

  .page-t1 .blank {
    position: initial;
    margin-top: 5px;
    font-size: 12px;
    padding: 7px 18px; }

  .box-blank {
    margin-top: 10px;
    padding-top: 5px; }

  .box-blank .con {
    width: 100%;
    margin-top: 10px; }

  .box-blank div a {
    font-size: 14px; }

  .box-blank div a + a {
    margin-top: 5px; }

  .m-contxt1 .box-blank .blank {
    font-size: 14px; }

  .cases_view {
    padding-top: 20px; }

  .cases_view .list {
    margin-right: 0; }

  .cases_view .list li {
    width: 100%;
    margin-right: 0; }

  .cases_view .list li h3 {
    font-size: 14px;
    margin-top: 10px;
    margin-bottom: 15px; }

  .page-t1 a em {
    margin-right: 5px; }

  .page-t1 a.next {
    padding-right: 20px; }

  .page-t1 a.next em {
    margin-right: 0; }

  .m-contxt1 .tit {
    margin-bottom: 10px; }

  .m-contxt1 .share-ico {
    display: none; }

  .project_view .list li {
    width: 100%;
    margin-bottom: 20px; }

  .project_view .list {
    margin-bottom: -20px; }

  .project_view .list .pic img {
    padding: 10px 30px 0; }

  .project_view .list .tit h3 {
    padding: 15px 0; }

  .care_view .list li {
    width: 100%;
    margin-bottom: 15px; }

  .care_view .list {
    margin-bottom: -15px; }

  .care_view .list .tit h3 {
    font-size: 14px;
    padding-top: 10px;
    padding-bottom: 10px; }

  .duty_view .content .pic {
    width: 100%;
    height: 220px; }

  .duty_view .content .txt {
    width: 100%;
    margin-top: 20px; }

  .duty_view .content .txt h3 {
    font-size: 18px; }

  .duty_view .content .txt h5 {
    font-size: 16px;
    margin-top: 5px; }

  .duty_view .content .txt p {
    margin-top: 10px;
    font-size: 14px;
    line-height: 20px; }

  .duty_view .content {
    margin-bottom: 20px; } }
/* 搜索返回按钮 */
.back_box {
  margin-bottom: 60px; }

.back_box a {
  font-size: 20px;
  color: #1b1b1b;
  transition: 0.4s all;
  border-bottom: 1px solid transparent; }

.back_box a:hover {
  border-bottom-color: #1b1b1b; }

.back_box h1 {
  font-size: 26px;
  margin-top: 20px;
  letter-spacing: 2px; }

@media screen and (max-width: 768px) {
  .back_box {
    margin-bottom: 20px; }

  .back_box h1 {
    font-size: 18px; }

  .back_box a {
    font-size: 16px; } }

/*# sourceMappingURL=main.css.map1 */
