@font-face {
  font-family: 'DINPro-Regular';
  src: url("../fonts/DINPro-Regular_0.otf");
}
@font-face {
  font-family: 'DINPro-Medium';
  src: url("../fonts/DINPro-Medium.otf");
}
@font-face {
  font-family: 'DINPro-Light';
  src: url("../fonts/DINPro-Light.otf");
}
@font-face {
  font-family: 'DINPro-Bold';
  src: url("../fonts/DINPro-Bold.otf");
}
@keyframes o-upfade-top {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes o-upfade-bottom {
  0% {
    opacity: 0;
    transform: translateY(-40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.wrapper {
  width: 80vw;
  max-width: 1420px;
  margin: 0 auto;
  position: relative;
}
.wrapper:after {
  content: '';
  display: block;
  clear: both;
}

/* header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  font-size: 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9;
}
.header.down .logo img {
  height: 40px;
}
.header.down ul li a.single {
  line-height: 80px;
}
.header.down a.search {
  width: 80px;
  height: 80px;
}
.header .logo {
  margin-left: 2vw;
}
.header .logo img {
  display: block;
  height: 53px;
  transition: all .3s ease;
}
.header ul {
  display: inline-block;
  vertical-align: middle;
  margin-right: 20px;
}
.header ul li {
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin-left: 40px;
}
.header ul li a.single {
  display: block;
  font-size: 18px;
  line-height: 120px;
  position: relative;
}
.header ul li a.single:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background-color: #0b4591;
  transition: all .3s ease;
  transform: scaleX(0);
}
.header ul li .drop {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffffff;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
}
.header ul li .drop a {
  display: block;
  text-align: center;
  font-size: 16px;
  line-height: 50px;
  padding: 0 30px;
  white-space: nowrap;
  color: #333;
  transition: all .3s ease;
}
@media screen and (min-width: 1025px) {
  .header ul li .drop a:hover {
    background-color: #0b4591;
    color: #fff;
  }
}
@media screen and (min-width: 1025px) {
  .header ul li:nth-of-type(1) {
    margin-left: 0;
  }
  .header ul li.active a.single {
    color: #0b4591;
  }
  .header ul li.active a.single:after {
    transform: scaleX(1);
  }
  .header ul li:hover a.single {
    color: #0b4591;
  }
  .header ul li:hover a.single:after {
    transform: scaleX(1);
  }
  .header ul li:hover .drop {
    opacity: 1;
    visibility: visible;
    transition: all .3s ease;
  }
}
.header a.tel {
  display: inline-block;
  vertical-align: middle;
  font-size: 22px;
  color: #1a1a1a;
  font-family: 'DINPro-Medium';
  margin-left: 40px;
}
.header a.tel:before {
  content: '';
  width: 16px;
  height: 17px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/icon-1.png");
  display: inline-block;
  vertical-align: middle;
  margin: -2px 10px 0 0;
}
.header .link {
  display: inline-block;
  vertical-align: middle;
  margin-left: 40px;
}
.header .link a {
  display: inline-block;
  vertical-align: top;
  font-size: 18px;
  color: #1a1a1a;
}
.header .link a:nth-of-type(2):before {
  content: '';
  width: 2px;
  height: 14px;
  background-color: #e2e2e2;
  display: inline-block;
  vertical-align: middle;
  margin: 0 15px;
}
.header a.user {
  display: inline-block;
  vertical-align: middle;
  font-size: 18px;
  color: #0c78d4;
  margin-left: 40px;
}
.header a.search {
  display: inline-block;
  vertical-align: middle;
  width: 120px;
  height: 120px;
  background-color: #1a4899;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/icon-2.png");
  margin-left: 40px;
  transition: all .3s ease;
}

/* other */
.fixed-search {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  background-color: #1a4899;
  display: none;
}
.fixed-search .close {
  width: 60px;
  height: 60px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/close.png");
  position: absolute;
  top: 3.125vw;
  right: 3.125vw;
  cursor: pointer;
  z-index: 3;
}
.fixed-search .main {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}
.fixed-search .box {
  width: 90%;
  max-width: 960px;
  margin: 0 auto;
}
.fixed-search h3 {
  text-align: center;
  font-size: 60px;
  color: #fff;
  margin-bottom: 4.5vw;
}
.fixed-search input {
  display: block;
  width: 100%;
  height: 100px;
  border-bottom: 4px solid #fff;
  background-color: transparent;
  padding: 0 30px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
}
.fixed-search input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.fixed-search input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.fixed-search input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.product-fixedright {
  position: fixed;
  right: 0;
  bottom: 20%;
  z-index: 10;
  display: none;
}
.product-fixedright .block {
  width: 60px;
  height: 60px;
  margin-top: 2px;
  border-radius: 2px;
  position: relative;
  background-color: #4b494a;
  cursor: pointer;
}
.product-fixedright a {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  font-size: 14px;
  color: #fff;
  line-height: 16px;
  padding: 14px;
  z-index: 2;
}
.product-fixedright span {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #006e35;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/totop.png");
  background-size: auto 24px;
}

/* footer */
.footer .top-block {
  padding: 3.5vw 0 2.5vw;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../images/img-1.jpg");
}
.footer .bot-block {
  background-color: #002c61;
  padding: 20px 0;
}
.footer .bot-block .flex {
  align-items: center;
}
.footer .flex {
  display: flex;
  justify-content: space-between;
}
.footer .box:nth-of-type(2) {
  width: calc(100% - 600px - 12vw);
}
.footer .box .logo {
  margin-bottom: 20px;
}
.footer .box .logo img {
  display: block;
  height: 43px;
}
.footer .box h3 {
  font-size: 24px;
  color: #fff;
  line-height: 30px;
}
.footer .box h3:after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: #006e35;
  margin: 15px 0;
}
.footer .box p {
  font-size: 16px;
  line-height: 2;
  color: #fff;
}
.footer .box .tel {
  font-size: 36px;
  color: #fff;
  font-family: 'DINPro-Medium';
  line-height: 1;
}
.footer .box .ewm {
  max-width: 150px;
}
.footer .box .ewm img {
  display: block;
  width: 100%;
}
.footer .box .ewm .tip {
  font-size: 14px;
  line-height: 18px;
  color: #fff;
  margin-top: 10px;
  text-align: center;
}
.footer .copyright {
  font-size: 14px;
  color: #fff;
}
.footer .copyright a {
  color: #fff;
}
.footer .share a {
  display: inline-block;
  vertical-align: top;
  float: none;
  padding: 0;
  margin: 0 0 0 10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: rgba(143, 143, 143, 0.2);
  background-position: center;
  background-repeat: no-repeat;
  transition: all .3s ease;
}
.footer .share a.weixin {
  background-image: url("../images/share-1.png");
}
.footer .share a.weixin:hover {
  background-image: url("../images/share-1-on.png");
}
.footer .share a.tsina {
  background-image: url("../images/share-2.png");
}
.footer .share a.tsina:hover {
  background-image: url("../images/share-2-on.png");
}
.footer .share a.sqq {
  background-image: url("../images/share-3.png");
}
.footer .share a.sqq:hover {
  background-image: url("../images/share-3-on.png");
}

/* media */
@media screen and (max-width: 1600px) {
  .header .logo img {
    height: 46px;
  }

  .header ul li a.single {
    font-size: 16px;
    line-height: 100px;
  }

  .header a.tel {
    font-size: 20px;
  }

  .header a.user,
  .header .link a {
    font-size: 16px;
  }

  .header a.search {
    width: 100px;
    height: 100px;
  }

  .header ul li,
  .header a.tel,
  .header a.user,
  .header .link,
  .header a.search {
    margin-left: 30px;
  }

  .footer .box p,
  .footer .box p {
    font-size: 15px;
  }

  .footer .box h3 {
    font-size: 20px;
  }

  .footer .box .tel {
    font-size: 30px;
  }

  .footer .box .ewm {
    max-width: 120px;
  }

  .fixed-search h3 {
    font-size: 50px;
  }

  .fixed-search input {
    height: 90px;
  }
}
@media screen and (max-width: 1366px) {
  .header ul li a.single {
    font-size: 14px;
  }

  .header ul li,
  .header a.tel,
  .header a.user,
  .header .link,
  .header a.search {
    margin-left: 20px;
  }

  .header a.tel {
    font-size: 16px;
  }

  .header a.user, .header .link a {
    font-size: 14px;
  }

  .footer .box p,
  .footer .box p {
    font-size: 14px;
  }

  .footer .box h3 {
    font-size: 18px;
  }

  .footer .box .tel {
    font-size: 26px;
  }

  .footer .box:nth-of-type(2) {
    width: calc(100% - 500px - 12vw);
  }

  .fixed-search h3 {
    font-size: 40px;
  }

  .fixed-search input {
    height: 80px;
    padding: 0 20px;
  }
}
@media screen and (max-width: 1200px) {
  .header .logo img,
  .header.down .logo img {
    height: 36px;
  }

  .header ul li a.single {
    line-height: 90px;
  }

  .header a.search {
    width: 90px;
    height: 90px;
  }
}
@media screen and (max-width: 1024px) {
  .wrapper {
    width: 100%;
  }

  .header {
    height: 60px;
    padding: 0 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }

  .header .logo {
    margin-left: 0;
  }

  .header .logo img {
    height: 30px;
  }

  .header .main {
    margin-right: 44px;
  }

  .header a.user, .header .link a {
    font-size: 12px;
  }

  .header a.tel {
    display: none;
  }

  .header a.search {
    width: 16px !important;
    height: 16px !important;
    background-color: transparent;
    background-size: contain;
    background-image: url("../images/icon-2-on.png");
  }

  .header ul {
    position: fixed;
    top: 60px;
    left: 100%;
    width: 100%;
    background-color: #fff;
    padding: 60px 0;
    margin: 0;
    text-align: left;
    overflow: auto;
    z-index: 3;
    border-top: 1px solid #f5f5f5;
    transition: left .3s linear;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  }
  .header ul.active {
    left: 0;
  }

  .header ul li {
    display: block;
    margin: 0;
    padding: 0 30px;
  }

  .header ul li a.single {
    font-size: 16px;
    line-height: 60px;
    padding: 0;
    text-align: center;
  }

  .header ul li .drop {
    display: none;
  }

  .mNavBtn {
    display: block;
    width: 24px;
    height: 16px;
    right: 20px;
    top: 22px;
    position: fixed;
    cursor: pointer;
    z-index: 4;
  }
  .mNavBtn.active .line2 {
    display: none;
  }
  .mNavBtn.active .line1 {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 7px;
  }
  .mNavBtn.active .line3 {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    bottom: 7px;
  }
  .mNavBtn span {
    position: absolute;
    left: 0;
    width: 24px;
    height: 2px;
    background: #1a4899;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .mNavBtn span.line1 {
    top: 0;
  }
  .mNavBtn span.line2 {
    top: 7px;
  }
  .mNavBtn span.line3 {
    bottom: 0;
  }

  .fixed-search .close {
    top: 5%;
    right: 5%;
  }

  .fixed-search h3 {
    font-size: 30px;
  }

  .fixed-search input {
    height: 60px;
    border-bottom-width: 2px;
  }

  .footer .flex {
    display: block;
  }

  .footer .top-block {
    padding: 30px 5%;
  }

  .footer .box:nth-of-type(2),
  .footer .box:nth-of-type(4) {
    display: none;
  }

  .footer .box .logo img {
    margin: 0 auto;
  }

  .footer .box:nth-of-type(1) p {
    display: none;
  }

  .footer .box:nth-of-type(3) h3 {
    display: none;
  }

  .footer .box:nth-of-type(3) {
    text-align: center;
  }

  .footer .bot-block {
    padding: 20px 5%;
  }

  .footer .copyright {
    line-height: 24px;
    text-align: center;
  }

  .footer .share {
    display: none;
  }

  .product-fixedright {
    transform: scale(0.6);
    transform-origin: right bottom;
  }
}
body {
  padding-top: 120px;
}

.index-tit {
  text-align: center;
}
.index-tit h3 {
  font-size: 38px;
  color: #333333;
}
.index-tit span {
  display: inline-block;
  margin-top: 5px;
  padding-bottom: 20px;
  position: relative;
  font-size: 24px;
  color: #898989;
  text-transform: uppercase;
  font-weight: lighter;
  letter-spacing: 2px;
}
.index-tit span:before {
  content: '';
  height: 2px;
  position: absolute;
  left: -10px;
  right: -10px;
  bottom: 6px;
  background-color: #006e35;
}
.index-tit span:after {
  content: '';
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #006e35;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.c-banner {
  position: relative;
}
.c-banner .img-box {
  overflow: hidden;
}
.c-banner img {
  display: block;
  width: 100%;
}
.c-banner .txt-box {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}
.c-banner h3 {
  font-size: 40px;
  color: #fff;
  font-weight: bold;
}
.c-banner span {
  display: block;
  font-size: 18px;
  line-height: 1;
  color: #fff;
  font-family: 'DINPro-Medium';
  text-transform: uppercase;
  margin-top: 15px;
  opacity: .7;
}
.c-banner p {
  font-size: 20px;
  color: #fff;
  margin-top: 15px;
  opacity: .7;
}
.c-banner form {
  position: relative;
  max-width: 500px;
  height: 50px;
  background-color: #fff;
  margin-top: 20px;
}
.c-banner input {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0 20px;
  font-size: 16px;
  color: #333;
  background-color: transparent;
}
.c-banner button {
  width: 60px;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-color: transparent;
  background-image: url("../images/icon-2-on.png");
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
}

.suspension {
  font-size: 0;
  position: relative;
  z-index: 2;
}
.suspension .main {
  background-color: #fff;
  box-shadow: 0 0 20px rgba(203, 203, 203, 0.35);
  margin-top: -55px;
  padding: 0 3.125vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.suspension .left-box a {
  display: inline-block;
  vertical-align: top;
  font-size: 18px;
  color: #333;
  line-height: 110px;
  position: relative;
  margin-left: 3.125vw;
  transition: color .3s ease;
}
.suspension .left-box a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background-color: #1a4899;
  transform-origin: left top;
  transform: scaleX(0);
  transition: transform .6s ease;
}
.suspension .left-box a:nth-of-type(1) {
  margin-left: 0;
}
.suspension .left-box a:hover, .suspension .left-box a.active {
  color: #1a4899;
}
.suspension .left-box a:hover:after, .suspension .left-box a.active:after {
  transform: scaleX(1);
}
.suspension .right-box span, .suspension .right-box a, .suspension .right-box i {
  display: inline-block;
  vertical-align: middle;
  font-size: 16px;
  color: #999999;
}
.suspension .right-box span:before {
  content: '';
  width: 14px;
  height: 14px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/home.png");
  display: inline-block;
  vertical-align: middle;
  margin: -2px 10px 0 0;
}
.suspension .right-box a {
  transition: color .3s ease;
}
.suspension .right-box a:hover {
  color: #006e35;
}
.suspension .right-box i {
  margin: -2px 10px 0;
  font-style: normal;
}

.inner-tit h3 {
  font-size: 38px;
}
.inner-tit p {
  font-size: 18px;
  font-weight: lighter;
  text-transform: uppercase;
  margin-top: 10px;
}
.inner-tit.white h3 {
  color: #fff;
}
.inner-tit.white p {
  color: #fff;
}
.inner-tit.gray h3 {
  color: #333333;
}
.inner-tit.gray p {
  color: #666666;
}
.inner-tit.center {
  text-align: center;
}

.comm-page {
  font-size: 0;
  text-align: center;
  margin-top: 2vw;
}
.comm-page li {
  display: inline-block;
  vertical-align: top;
  margin: 0 5px;
  border: 1px solid #e6e6e6;
}
.comm-page li a {
  display: block;
  width: 40px;
  font-size: 14px;
  color: #666;
  line-height: 38px;
  text-align: center;
}
.comm-page li:first-of-type a, .comm-page li:last-of-type a {
  width: 60px;
}
.comm-page li:hover, .comm-page li.active {
  border-color: transparent;
}
.comm-page li:hover a, .comm-page li.active a {
  background-image: linear-gradient(135deg, #38ac8e, 30%, #2f59bb);
  color: #fff;
}

.comm-share {
  float: left;
  margin-left: -80px;
  margin-top: 9vw;
  width: 40px;
  position: sticky;
  top: 120px;
}
.comm-share span {
  margin-top: 20px;
  height: 1px;
  background-color: #e6e6e6;
  display: block;
}
.comm-share a {
  display: block;
  width: 40px;
  height: 40px !important;
  padding: 0 !important;
  margin: 10px 0 0 !important;
  float: none !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.comm-share a:first-of-type {
  border-radius: 5px;
  background-image: url("../images/about/icon-7.jpg");
}
.comm-share a.weixin {
  background-image: url("../images/about/icon-8-1.png");
}
.comm-share a.weixin:hover {
  background-image: url("../images/about/icon-8-1-on.png");
}
.comm-share a.tsina {
  background-image: url("../images/about/icon-8-2.png");
}
.comm-share a.tsina:hover {
  background-image: url("../images/about/icon-8-2-on.png");
}
.comm-share a.sqq {
  background-image: url("../images/about/icon-8-3.png");
}
.comm-share a.sqq:hover {
  background-image: url("../images/about/icon-8-3-on.png");
}

.index-s1 {
  position: relative;
  overflow: hidden;
}
.index-s1 .item {
  height: calc(100vh - 120px);
  position: relative;
  overflow: hidden;
}
.index-s1 .item .img-box {
  width: 100%;
  height: 100%;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
}
.index-s1 .button {
  width: 15px;
  height: 20px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/index/icon-1.png");
  position: absolute;
  top: 50%;
  margin-top: -10px;
  z-index: 2;
  cursor: pointer;
  opacity: .3;
  transition: all .3s ease;
}
.index-s1 .button:hover {
  opacity: 1;
}
.index-s1 .button-prev {
  left: 4vw;
  transform: rotate(180deg);
}
.index-s1 .button-next {
  right: 4vw;
}
.index-s1 .ope {
  position: absolute;
  bottom: 3vw;
  left: 0;
  right: 0;
  font-size: 0;
  text-align: center;
  z-index: 2;
}
.index-s1 .ope ul {
  display: inline-block;
  vertical-align: middle;
}
.index-s1 .ope ul li {
  display: inline-block;
  vertical-align: top;
  width: 60px;
  height: 20px;
  position: relative;
  margin-left: 10px;
  cursor: pointer;
}
.index-s1 .ope ul li:first-of-type {
  margin-left: 0;
}
.index-s1 .ope ul li:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8px;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.3);
}
.index-s1 .ope ul li span {
  position: absolute;
  left: 0;
  bottom: 8px;
  width: 0;
  height: 4px;
  background-color: #006e35;
}
.index-s1 .ope ul li.active:before {
  height: 6px;
}
.index-s1 .ope ul li.active span {
  width: 100%;
  height: 6px;
  -webkit-transition: width 5s linear;
  -moz-transition: width 5s linear;
  -ms-transition: width 5s linear;
  transition: width 5s linear;
}
.index-s1 .ope a {
  display: inline-block;
  vertical-align: middle;
  width: 16px;
  height: 16px;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/index/icon-2.png");
  margin-left: 20px;
}
.index-s1 .ope a.play {
  background-image: url("../images/index/icon-2-on.png");
}

.index-s2 {
  padding: 5vw 0 6.25vw;
}
.index-s2 .items {
  margin: 4vw -4px 0;
  padding: 4px;
}
.index-s2 .item {
  display: inline-block;
  vertical-align: top;
  width: 33.33%;
  box-shadow: 0 0 4px rgba(215, 215, 215, 0.6);
  position: relative;
  border-radius: 3px;
  overflow: hidden;
}
.index-s2 .item .bg-box {
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all .3s ease;
}
.index-s2 .item .bg-box:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  background-image: linear-gradient(135deg, #38ac8e, 30%, #2f59bb);
  transition: all .3s ease;
}
.index-s2 .item .bg-box img {
  display: block;
  width: 100%;
  position: relative;
  opacity: .2;
  z-index: 2;
}
.index-s2 .item .cont-box {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0 20px;
  text-align: center;
  z-index: 2;
}
.index-s2 .item .cell {
  position: relative;
}
.index-s2 .item .img {
  position: relative;
  display: inline-block;
  width: 3.125vw;
  height: 3.125vw;
  max-width: 60px;
  max-height: 60px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.index-s2 .item h3 {
  font-size: 22px;
  color: #333333;
  margin-top: 40px;
  transition: color .3s ease;
}
.index-s2 .item p {
  font-size: 16px;
  line-height: 24px;
  color: #777777;
  height: 48px;
  overflow: hidden;
  margin-top: 15px;
  transition: color .3s ease;
}
.index-s2 .item span {
  display: block;
  margin: 15px auto 0;
  width: 42px;
  height: 38px;
  line-height: 30px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/index/icon-5.png");
  font-size: 12px;
  color: #006e35;
  transition: all .3s ease;
}
.index-s2 .item a {
  display: block;
  margin: 0 auto;
  width: 160px;
  font-size: 14px;
  line-height: 40px;
  color: #fff;
  background-color: #006e35;
  border-radius: 24px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  transition: all .3s ease;
}
.index-s2 .item:nth-of-type(1) .img {
  background-image: url("../images/index/icon-3-1.png");
}
@media screen and (min-width: 1025px) {
  .index-s2 .item:nth-of-type(1):hover .img {
    background-image: url("../images/index/icon-3-1-on.png");
  }
}
.index-s2 .item:nth-of-type(2) .img {
  background-image: url("../images/index/icon-3-2.png");
}
@media screen and (min-width: 1025px) {
  .index-s2 .item:nth-of-type(2):hover .img {
    background-image: url("../images/index/icon-3-2-on.png");
  }
}
.index-s2 .item:nth-of-type(3) .img {
  background-image: url("../images/index/icon-3-3.png");
}
@media screen and (min-width: 1025px) {
  .index-s2 .item:nth-of-type(3):hover .img {
    background-image: url("../images/index/icon-3-3-on.png");
  }
}
.index-s2 .item:nth-of-type(4) .img {
  background-image: url("../images/index/icon-3-4.png");
}
@media screen and (min-width: 1025px) {
  .index-s2 .item:nth-of-type(4):hover .img {
    background-image: url("../images/index/icon-3-4-on.png");
  }
}
@media screen and (min-width: 1025px) {
  .index-s2 .item:hover .bg-box:before {
    opacity: 1;
  }
  .index-s2 .item:hover h3, .index-s2 .item:hover p {
    color: #fff;
  }
  .index-s2 .item:hover span {
    opacity: 0;
  }
  .index-s2 .item:hover a {
    opacity: 1;
    visibility: visible;
  }
}
.index-s2 .pagination {
  font-size: 0;
  text-align: center;
  margin-top: 2vw;
  display: none;
}
.index-s2 .pagination span {
  display: inline-block;
  vertical-align: top;
  width: 8px;
  height: 8px;
  margin: 0 2px;
  border-radius: 50%;
  background-color: #000;
  opacity: .5;
}
.index-s2 .pagination span.active {
  opacity: 1;
  background-color: #1a4899;
}

.index-s3 {
  padding: 5vw 0;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 100%;
  background-color: #f5f5f5;
  background-image: url("../images/index/img-3.jpg");
}
.index-s3 .swiper {
  position: relative;
  margin-top: 3.125vw;
}
.index-s3 .item {
  display: inline-block;
  width: 33.33%;
  position: relative;
  border-radius: 3px;
  overflow: hidden;
}
.index-s3 .item .img-box {
  position: relative;
  overflow: hidden;
}
.index-s3 .item .img-box:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.1);
}
.index-s3 .item img {
  display: block;
  width: 100%;
  transition: transform .6s ease;
}
.index-s3 .item .txt-box {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0 2.5vw;
  background-image: linear-gradient(135deg, rgba(56, 172, 142, 0.9), rgba(47, 89, 187, 0.9));
  opacity: 0;
  z-index: 2;
  transition: all .3s ease;
}
.index-s3 .item i {
  display: block;
  width: 50px;
  height: 50px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.index-s3 .item h3 {
  font-size: 22px;
  color: #fff;
  margin-top: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.index-s3 .item p {
  font-size: 16px;
  color: #fff;
  margin-top: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.index-s3 .item span {
  display: block;
  width: 110px;
  line-height: 28px;
  border-radius: 12px;
  text-align: center;
  font-size: 12px;
  color: #006e35;
  background-color: #fff;
  margin-top: 24px;
}
@media screen and (min-width: 1025px) {
  .index-s3 .item:hover img {
    transform: scale(1.1);
  }
  .index-s3 .item:hover .txt-box {
    opacity: 1;
    visibility: visible;
  }
}
.index-s3 .pagination {
  font-size: 0;
  text-align: center;
  margin-top: 2vw;
  display: none;
}
.index-s3 .pagination span {
  display: inline-block;
  vertical-align: top;
  width: 8px;
  height: 8px;
  margin: 0 2px;
  border-radius: 50%;
  background-color: #000;
  opacity: .5;
}
.index-s3 .pagination span.active {
  opacity: 1;
  background-color: #1a4899;
}
.index-s3 .button {
  width: 72px;
  height: 72px;
  position: absolute;
  top: 50%;
  margin-top: -36px;
  border-radius: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #fff;
  background-image: url("../images/index/icon-7-1.png");
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 2;
  cursor: pointer;
  transition: all .3s ease;
}
.index-s3 .button:hover {
  background-color: #093977;
  background-image: url("../images/index/icon-7-2.png");
}
.index-s3 .button-prev {
  left: 4vw;
}
.index-s3 .button-next {
  right: 4vw;
  transform: rotateY(180deg);
}
.index-s3 a.more {
  display: block;
  width: 180px;
  font-size: 16px;
  line-height: 48px;
  text-align: center;
  color: #fff;
  border-radius: 24px;
  background-color: #006e35;
  margin: 3.125vw auto 0;
  transition: all .3s ease;
}
@media screen and (min-width: 1025px) {
  .index-s3 a.more:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(0, 110, 53, 0.3);
  }
}

.index-s4 {
  padding: 6.25vw 0;
}
.index-s4 .cont {
  margin-top: 5vw;
  position: relative;
}
.index-s4 .tit {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #ececec;
  align-items: flex-start;
}
.index-s4 .tit span {
  display: inline-block;
  font-size: 22px;
  line-height: 24px;
  color: #000;
  padding: 0 5px 20px 30px;
  background-position: left 1px;
  background-repeat: no-repeat;
  border-bottom: 2px solid #006e35;
  margin-bottom: -1px;
}
.index-s4 .tit a {
  width: 88px;
  line-height: 28px;
  background-color: #eeeeee;
  border-radius: 15px;
  font-size: 12px;
  color: #006e35;
  text-align: center;
  transition: all .3s ease;
}
@media screen and (min-width: 1025px) {
  .index-s4 .tit a:hover {
    background-color: #006e35;
    color: #fff;
  }
}
.index-s4 .left-block {
  width: 66.66%;
  padding-right: 45px;
}
.index-s4 .left-block .tit span {
  background-image: url("../images/index/icon-4-1.png");
}
.index-s4 .left-block .items {
  margin-top: 30px;
}
@media screen and (min-width: 769px) {
  .index-s4 .left-block .box {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
.index-s4 .left-block .item {
  width: calc(50% - 12px);
  position: relative;
  border-radius: 3px;
  overflow: hidden;
}
.index-s4 .left-block .item .img-box {
  overflow: hidden;
}
.index-s4 .left-block .item img {
  display: block;
  width: 100%;
  transition: transform .6s ease;
}
.index-s4 .left-block .item .show {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  transition: all .3s ease;
}
.index-s4 .left-block .item .show h3 {
  font-size: 16px;
  color: #fff;
  position: absolute;
  padding: 24px;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.index-s4 .left-block .item .hide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(135deg, rgba(56, 172, 142, 0.9), rgba(47, 89, 187, 0.9));
  padding: 0 2.3vw;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  transition: all .3s ease;
}
.index-s4 .left-block .item .hide h3 {
  font-size: 22px;
  color: #fff;
  line-height: 24px;
  overflow: hidden;
  max-height: 48px;
}
.index-s4 .left-block .item .hide p {
  font-size: 16px;
  line-height: 30px;
  color: #fff;
  height: 90px;
  overflow: hidden;
  margin-top: 10px;
  text-align: justify;
}
@media screen and (min-width: 769px) {
  .index-s4 .left-block .item:nth-of-type(3), .index-s4 .left-block .item:nth-of-type(4) {
    margin-top: 24px;
  }
}
@media screen and (min-width: 1025px) {
  .index-s4 .left-block .item:hover img {
    transform: scale(1.1);
  }
  .index-s4 .left-block .item:hover .show {
    opacity: 0;
    visibility: hidden;
  }
  .index-s4 .left-block .item:hover .hide {
    opacity: 1;
    visibility: visible;
  }
}
.index-s4 .right-block {
  width: 33.33%;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
}
.index-s4 .right-block .tit span {
  background-image: url("../images/index/icon-4-2.png");
}
.index-s4 .right-block .items {
  height: calc(100% - 76px);
  margin-top: 30px;
  background-color: #f5f5f5;
  padding: 24px;
}
.index-s4 .right-block .scroll {
  height: 100%;
  overflow: auto;
  margin-right: -10px;
  padding-right: 10px;
}
.index-s4 .right-block .item {
  line-height: 45px;
  border-bottom: 1px dashed #babcbc;
  position: relative;
}
.index-s4 .right-block .item span {
  font-size: 16px;
  display: block;
  width: calc(100% - 80px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.index-s4 .right-block .item span:before {
  content: '';
  width: 4px;
  height: 4px;
  background-color: #3c4648;
  border-radius: 50%;
  display: inline-block;
  vertical-align: middle;
  margin: -2px 20px 0 0;
}
.index-s4 .right-block .item a {
  font-size: 15px;
  position: absolute;
  right: 0;
  top: 0;
  color: #3c4648;
  transition: color .3s ease;
}
@media screen and (min-width: 1025px) {
  .index-s4 .right-block .item a:hover {
    color: #006e35;
  }
}
.index-s4 .pagination {
  font-size: 0;
  text-align: center;
  margin-top: 2vw;
  display: none;
}
.index-s4 .pagination span {
  display: inline-block;
  vertical-align: top;
  width: 8px;
  height: 8px;
  margin: 0 2px;
  border-radius: 50%;
  background-color: #000;
  opacity: .5;
}
.index-s4 .pagination span.active {
  opacity: 1;
  background-color: #1a4899;
}

.index-s5 {
  padding: 4.5vw 0;
  background-color: #f5f5f5;
}
.index-s5 .items {
  margin: 3vw -10px 0;
  display: flex;
  flex-wrap: wrap;
}
.index-s5 .item {
  width: calc(16.66% - 20px);
  margin: 20px 10px 0;
  background-color: #fff;
  height: 120px;
  text-align: center;
  transition: box-shadow .3s ease;
}
.index-s5 .item img {
  width: auto;
  max-width: 70%;
  max-height: 70%;
}
@media screen and (min-width: 769px) {
  .index-s5 .item:nth-of-type(1), .index-s5 .item:nth-of-type(2), .index-s5 .item:nth-of-type(3), .index-s5 .item:nth-of-type(4), .index-s5 .item:nth-of-type(5), .index-s5 .item:nth-of-type(6) {
    margin-top: 0;
  }
}
@media screen and (min-width: 1025px) {
  .index-s5 .item:hover {
    box-shadow: 0 0 3.125vw rgba(0, 110, 53, 0.2);
  }
}

.index-s6 {
  padding: 2vw 0;
  font-size: 0;
}
.index-s6 span, .index-s6 a {
  display: inline-block;
  vertical-align: top;
  font-size: 16px;
  line-height: 2;
  color: #333333;
}
.index-s6 a {
  margin-right: 20px;
  transition: color .3s ease;
}
@media screen and (min-width: 1025px) {
  .index-s6 a:hover {
    color: #006e35;
  }
}

.product-s1 {
  padding: 6.25vw 0;
  background-color: #f5f5f5;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.product-s1 .items {
  margin: 2.5vw 0;
  display: flex;
  flex-wrap: wrap;
}
.product-s1 .item {
  width: calc((100% - 6.25vw) / 3);
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/product/img-10.jpg");
  background-size: 100% 100%;
  margin: 3.125vw 3.125vw 0 0;
  transition: all .3s ease;
}
.product-s1 .item .img-box {
  height: 25vw;
  max-height: 470px;
  text-align: center;
}
.product-s1 .item img {
  width: auto;
  max-width: 100%;
  max-height: 100%;
}
.product-s1 .item .txt-box {
  padding: 10px 20px;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}
.product-s1 .item .txt-box:before {
  content: '';
  position: absolute;
  left: 20px;
  right: 20px;
  top: 0;
  bottom: 20px;
  background-image: linear-gradient(90deg, #38ac8e, 30%, #2f59bb);
  opacity: 0;
  z-index: 1;
  transition: all .3s ease;
}
.product-s1 .item h3 {
  font-size: 18px;
  line-height: 60px;
  color: #333;
  text-align: center;
  position: relative;
  z-index: 2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 10px;
  transition: all .3s ease;
}
@media screen and (min-width: 769px) {
  .product-s1 .item:nth-of-type(1), .product-s1 .item:nth-of-type(2), .product-s1 .item:nth-of-type(3) {
    margin-top: 0;
  }
  .product-s1 .item:nth-of-type(3n) {
    margin-right: 0;
  }
}
@media screen and (min-width: 1025px) {
  .product-s1 .item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  .product-s1 .item:hover .txt-box {
    border-color: transparent;
  }
  .product-s1 .item:hover .txt-box:before {
    opacity: 1;
  }
  .product-s1 .item:hover h3 {
    color: #fff;
    transform: translateY(-10px);
  }
}
.product-s1 a.more {
  display: block;
  margin: 0 auto;
  width: 180px;
  font-size: 16px;
  line-height: 48px;
  text-align: center;
  border-radius: 24px;
  transition: all .3s ease;
}
.product-s1 a.more.gray {
  color: #fff;
  background-color: #006e35;
}
.product-s1 a.more.white {
  color: #006e35;
  background-color: #fff;
}
@media screen and (min-width: 1025px) {
  .product-s1 a.more:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(0, 110, 53, 0.3);
  }
}

.product-detail-s1 {
  background-color: #eeeeee;
  padding: 2vw 0 1vw;
}
.product-detail-s1 span, .product-detail-s1 a, .product-detail-s1 i {
  display: inline-block;
  vertical-align: middle;
  font-size: 16px;
  color: #999999;
}
.product-detail-s1 span:before {
  content: '';
  width: 14px;
  height: 14px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/home.png");
  display: inline-block;
  vertical-align: middle;
  margin: -2px 10px 0 0;
}
.product-detail-s1 a {
  transition: color .3s ease;
}
.product-detail-s1 a:hover {
  color: #006e35;
}
.product-detail-s1 i {
  margin: -2px 10px 0;
  font-style: normal;
}

.product-detail-s2 {
  background-color: #eeeeee;
  padding-bottom: 4vw;
}
.product-detail-s2 .flex {
  display: flex;
  align-items: center;
}
.product-detail-s2 .img-box {
  width: 46%;
  flex: 1 0 46%;
  background-image: linear-gradient(-32deg, #9bcefb, #5ea6d9);
  height: 24vw;
  max-height: 524px;
  text-align: center;
}
.product-detail-s2 .img-box img {
  width: auto;
  max-width: 100%;
  max-height: 100%;
}
.product-detail-s2 .txt-box {
  width: 100%;
  padding-left: 4vw;
}
.product-detail-s2 span {
  font-size: 44px;
  color: #00479d;
  font-family: 'DINPro-Medium';
}
.product-detail-s2 h3 {
  font-size: 36px;
  color: #111111;
  margin-top: 15px;
}
.product-detail-s2 .para {
  font-size: 16px;
  line-height: 28px;
  color: #555555;
  margin-top: 15px;
}
.product-detail-s2 .btn {
  margin-top: 30px;
  font-size: 0;
}
.product-detail-s2 a {
  display: inline-block;
  vertical-align: top;
  font-size: 16px;
  line-height: 50px;
  padding: 0 24px;
  color: #fff;
  transition: all .3s ease;
}
.product-detail-s2 a.btn-1 {
  background-color: #b31b34;
}
.product-detail-s2 a.btn-1:before {
  content: '';
  width: 27px;
  height: 24px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/product/icon-1.png");
  display: inline-block;
  vertical-align: middle;
  margin: -2px 8px 0 0;
}
.product-detail-s2 a.btn-2 {
  background-color: #012643;
}
.product-detail-s2 a:nth-of-type(2) {
  margin-left: 12px;
}
@media screen and (min-width: 1025px) {
  .product-detail-s2 a:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
}

.product-detail-s3 {
  padding: 5vw 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../images/product/img-8.jpg");
  background-attachment: fixed;
}
.product-detail-s3 .items {
  margin-top: 4vw;
  display: flex;
  flex-wrap: wrap;
  font-size: 0;
}
.product-detail-s3 .item {
  width: calc(50% - 15px);
  padding: 3.125vw;
  margin: 30px 30px 0 0;
  border-radius: 5px;
  background-color: #fff;
  transition: all .3s ease;
}
.product-detail-s3 .item i {
  display: inline-block;
  vertical-align: middle;
  width: 60px;
  height: 60px;
  position: relative;
}
.product-detail-s3 .item .show, .product-detail-s3 .item .hide {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: all .3s ease;
}
.product-detail-s3 .item .hide {
  opacity: 0;
}
.product-detail-s3 .item .box {
  display: inline-block;
  vertical-align: middle;
  width: calc(100% - 110px);
  padding-left: 2vw;
}
.product-detail-s3 .item h3 {
  font-size: 22px;
  color: #333333;
  transition: color .3s ease;
}
.product-detail-s3 .item p {
  font-size: 16px;
  line-height: 22px;
  color: #79848d;
  margin-top: 10px;
  transition: color .3s ease;
}
@media screen and (min-width: 769px) {
  .product-detail-s3 .item:nth-of-type(1), .product-detail-s3 .item:nth-of-type(2) {
    margin-top: 0;
  }
  .product-detail-s3 .item:nth-of-type(even) {
    margin-right: 0;
  }
}
@media screen and (min-width: 1025px) {
  .product-detail-s3 .item:hover {
    background-color: #006e35;
  }
  .product-detail-s3 .item:hover i .show {
    opacity: 0;
  }
  .product-detail-s3 .item:hover i .hide {
    opacity: 1;
  }
  .product-detail-s3 .item:hover h3, .product-detail-s3 .item:hover p {
    color: #fff;
  }
}

.product-detail-s4 {
  padding: 5vw 0;
}
.product-detail-s4 .table {
  margin-top: 3.125vw;
  text-align: center;
}
.product-detail-s4 .table.nomar {
  margin: 0;
}
.product-detail-s4 .table img {
  max-width: 100%;
}

.product-detail-s5 {
  padding: 5vw 0;
  background-color: #f5f5f5;
}
.product-detail-s5 .swiper {
  margin-top: 2.5vw;
}
.product-detail-s5 .item {
  display: inline-block;
  width: 25%;
  position: relative;
  border-radius: 3px;
  overflow: hidden;
}
.product-detail-s5 .item .img-box {
  position: relative;
  overflow: hidden;
}
.product-detail-s5 .item .img-box:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.1);
}
.product-detail-s5 .item img {
  display: block;
  width: 100%;
  transition: transform .6s ease;
}
.product-detail-s5 .item .txt-box {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0 2.5vw;
  background-image: linear-gradient(135deg, rgba(56, 172, 142, 0.9), rgba(47, 89, 187, 0.9));
  opacity: 0;
  z-index: 2;
  transition: all .3s ease;
}
.product-detail-s5 .item i {
  display: block;
  width: 50px;
  height: 50px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.product-detail-s5 .item h3 {
  font-size: 22px;
  color: #fff;
  margin-top: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-detail-s5 .item p {
  font-size: 16px;
  color: #fff;
  margin-top: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-detail-s5 .item span {
  display: block;
  width: 110px;
  line-height: 28px;
  border-radius: 12px;
  text-align: center;
  font-size: 12px;
  color: #006e35;
  background-color: #fff;
  margin-top: 24px;
}
@media screen and (min-width: 1025px) {
  .product-detail-s5 .item:hover img {
    transform: scale(1.1);
  }
  .product-detail-s5 .item:hover .txt-box {
    opacity: 1;
    visibility: visible;
  }
}
.product-detail-s5 .pagination {
  font-size: 0;
  text-align: center;
  margin-top: 2vw;
  display: none;
}
.product-detail-s5 .pagination span {
  display: inline-block;
  vertical-align: top;
  width: 8px;
  height: 8px;
  margin: 0 2px;
  border-radius: 50%;
  background-color: #000;
  opacity: .5;
}
.product-detail-s5 .pagination span.active {
  opacity: 1;
  background-color: #1a4899;
}
.product-detail-s5 .btns {
  text-align: center;
  margin-top: 2.5vw;
  font-size: 0;
}
.product-detail-s5 .button {
  display: inline-block;
  vertical-align: top;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #fff;
  background-image: url("../images/index/icon-7-1.png");
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all .3s ease;
}
.product-detail-s5 .button:hover {
  background-color: #093977;
  background-image: url("../images/index/icon-7-2.png");
}
.product-detail-s5 .button-prev {
  margin-right: 20px;
}
.product-detail-s5 .button-next {
  transform: rotateY(180deg);
}

.product-detail-s6 {
  padding: 6.25vw 0;
  background-color: #eee;
}
.product-detail-s6 .swiper {
  margin-top: 2vw;
  position: relative;
}
.product-detail-s6 .items {
  width: 68%;
  max-width: 960px;
  margin: 0 auto;
  border: 4px solid #333;
  border-radius: 10px;
  overflow: hidden;
}
.product-detail-s6 .item img {
  display: block;
  width: 100%;
}
.product-detail-s6 .tip {
  text-align: center;
  margin-top: 3.125vw;
  font-size: 24px;
  color: #000;
}
.product-detail-s6 .button {
  width: 72px;
  height: 72px;
  position: absolute;
  top: 50%;
  margin-top: -36px;
  border-radius: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #fff;
  background-image: url("../images/index/icon-7-1.png");
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 2;
  cursor: pointer;
  transition: all .3s ease;
}
.product-detail-s6 .button:hover {
  background-color: #093977;
  background-image: url("../images/index/icon-7-2.png");
}
.product-detail-s6 .button-prev {
  left: 0;
}
.product-detail-s6 .button-next {
  right: 0;
  transform: rotateY(180deg);
}
.product-detail-s6 .pagination {
  font-size: 0;
  text-align: center;
  margin-top: 2vw;
  display: none;
}
.product-detail-s6 .pagination span {
  display: inline-block;
  vertical-align: top;
  width: 8px;
  height: 8px;
  margin: 0 2px;
  border-radius: 50%;
  background-color: #000;
  opacity: .5;
}
.product-detail-s6 .pagination span.active {
  opacity: 1;
  background-color: #1a4899;
}

.pdservice-s1 {
  padding: 6.25vw 0;
}
.pdservice-s1 .para {
  font-size: 18px;
  line-height: 2;
  color: #333;
  margin-top: 2vw;
}
.pdservice-s1 .img-box {
  margin-top: 2vw;
}
.pdservice-s1 .img-box img {
  display: block;
  width: 100%;
}

.user-page {
  padding: 10vw 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../images/user/img-1.jpg");
  background-attachment: fixed;
}
.user-page .tit {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid #d6d6d6;
}
.user-page .tit span {
  font-size: 24px;
  color: #00479d;
}
.user-page .tit span:before {
  content: '';
  width: 16px;
  height: 16px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/user/icon-1.png");
  display: inline-block;
  vertical-align: middle;
  margin: -4px 10px 0 0;
}
.user-page .tit a {
  font-size: 16px;
  color: #0c78d4;
}
.user-page .tip-signin {
  margin-top: 30px;
  text-align: center;
  font-size: 18px;
  color: #333333;
}
.user-page .tip-signin a {
  color: #0c78d4;
  text-decoration: underline;
}

.login-block {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}
.login-block .top-block {
  display: flex;
  background-color: #fff;
  border-radius: 30px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.login-block .left-box {
  width: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../images/user/img-2.jpg");
  text-align: center;
}
.login-block .left-box .inner-tit {
  display: inline-block;
  text-align: left;
}
.login-block .right-box {
  width: 50%;
  padding: 40px;
}
.login-block form {
  margin-top: 30px;
}
.login-block .box {
  margin-top: 20px;
  position: relative;
}
.login-block .box .txt {
  border: 1px solid #c9c9c9;
  border-radius: 5px;
  position: relative;
  padding-left: 40px;
  overflow: hidden;
}
.login-block .box .txt:before {
  content: '';
  width: 24px;
  height: 24px;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  margin-top: -12px;
  left: 16px;
}
.login-block .box input {
  display: block;
  width: 100%;
  height: 50px;
  padding: 0 20px;
  font-size: 16px;
  color: #b2b2b2;
}
.login-block .box button {
  display: block;
  width: 100%;
  height: 60px;
  border-radius: 30px;
  background-color: #0c78d4;
  font-size: 20px;
  color: #fff;
  cursor: pointer;
}
.login-block .box a.yzm {
  width: 150px;
  position: absolute;
  right: 0;
  top: 0;
  border: 1px solid #c9c9c9;
  border-radius: 5px;
  overflow: hidden;
}
.login-block .box a.yzm img {
  display: block;
  width: 100%;
  height: 50px;
}
.login-block .box a.tofind {
  font-size: 16px;
  color: #0c78d4;
}
.login-block .box:nth-of-type(1) {
  margin-top: 0;
}
.login-block .box:nth-of-type(1) .txt:before {
  background-image: url("../images/user/icon-2.png");
}
.login-block .box:nth-of-type(2) .txt:before {
  background-image: url("../images/user/icon-3.png");
}
.login-block .box:nth-of-type(3) {
  padding-right: 165px;
}
.login-block .box:nth-of-type(3) .txt:before {
  background-image: url("../images/user/icon-4.png");
}
.login-block .tip {
  font-size: 16px;
  color: #00479d;
  margin-top: 2.5vw;
  text-align: center;
  font-weight: bold;
}

.success-block {
  width: 90%;
  max-width: 570px;
  margin: 0 auto;
  border-radius: 30px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  padding: 60px 40px;
  background-color: #fff;
}
.success-block h3 {
  font-size: 30px;
  color: #333333;
  text-align: center;
}
.success-block h3:before {
  content: '';
  width: 51px;
  height: 42px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/user/icon-5.png");
  display: inline-block;
  vertical-align: middle;
  margin: -5px 10px 0 0;
}
.success-block p {
  font-size: 18px;
  color: #b2b2b2;
  text-align: center;
  margin-top: 30px;
}
.success-block p a {
  color: #0c78d4;
  text-decoration: underline;
}
.success-block a.btn {
  display: block;
  margin: 40px auto 0;
  width: 200px;
  font-size: 20px;
  line-height: 50px;
  color: #fff;
  text-align: center;
  border-radius: 24px;
  background-color: #0c78d4;
}

.register-block {
  width: 90%;
  max-width: 600px;
  margin: 0 auto;
  border-radius: 30px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  padding: 60px;
  background-color: #fff;
}
.register-block form {
  max-width: 420px;
  margin: 50px auto 0;
}
.register-block form button {
  display: block;
  margin-top: 50px;
  width: 100%;
  height: 60px;
  border-radius: 30px;
  background-color: #0c78d4;
  font-size: 20px;
  color: #fff;
  cursor: pointer;
}
.register-block .box {
  margin-top: 20px;
  position: relative;
  border: 1px solid #c9c9c9;
  border-radius: 5px;
  overflow: hidden;
}
.register-block .box input[type="text"],
.register-block .box input[type="password"] {
  display: block;
  width: 100%;
  height: 50px;
  padding: 0 20px;
  font-size: 16px;
  color: #b2b2b2;
}
.register-block .box:nth-of-type(1) {
  margin-top: 0;
  padding-left: 95px;
}
.register-block .box:nth-of-type(1) span {
  position: absolute;
  top: 0;
  left: 0;
  width: 95px;
  line-height: 50px;
  font-size: 16px;
  color: #b2b2b2;
  text-align: center;
}
.register-block .box:nth-of-type(1) span:after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -10px;
  width: 1px;
  height: 20px;
  background-color: #e3e3e3;
}
.register-block .box:nth-of-type(2) {
  padding-right: 130px;
}
.register-block .box:nth-of-type(2) a {
  position: absolute;
  top: 0;
  right: 0;
  width: 130px;
  line-height: 50px;
  font-size: 15px;
  color: #0c78d4;
  text-align: center;
}
.register-block .box:nth-of-type(2) a:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -10px;
  width: 1px;
  height: 20px;
  background-color: #e3e3e3;
}

.recover-block {
  width: 90%;
  max-width: 600px;
  margin: 0 auto;
  border-radius: 30px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  padding: 60px;
  background-color: #fff;
}
.recover-block .tip {
  max-width: 420px;
  margin: 30px auto 0;
}
.recover-block .tip h3 {
  font-size: 18px;
  color: #333333;
}
.recover-block .tip p {
  font-size: 14px;
  color: #666666;
  margin-top: 10px;
}
.recover-block form {
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}
.recover-block form a.next {
  display: block;
  width: 100%;
  margin-top: 30px;
  line-height: 60px;
  text-align: center;
  border-radius: 30px;
  background-color: #0c78d4;
  font-size: 20px;
  color: #fff;
  cursor: pointer;
}
.recover-block .box {
  margin-top: 20px;
  position: relative;
  border: 1px solid #c9c9c9;
  border-radius: 5px;
  overflow: hidden;
}
.recover-block .box input[type="text"],
.recover-block .box input[type="password"] {
  display: block;
  width: 100%;
  height: 50px;
  padding: 0 20px;
  font-size: 16px;
  color: #b2b2b2;
}
.recover-block .box:nth-of-type(1) {
  margin-top: 0;
}
.recover-block .box.code {
  padding-right: 130px;
}
.recover-block .box.code a {
  position: absolute;
  top: 0;
  right: 0;
  width: 130px;
  line-height: 50px;
  font-size: 15px;
  color: #0c78d4;
  text-align: center;
}
.recover-block .box.code a:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -10px;
  width: 1px;
  height: 20px;
  background-color: #e3e3e3;
}

.recover-block-1 form {
  margin-top: 50px;
}

.recover-block-2 form,
.recover-block-3 form {
  margin-top: 30px;
}

.recover-block-3 .check {
  margin-top: 30px;
}
.recover-block-3 .check h3 {
  font-size: 20px;
  color: #333333;
  margin-bottom: 10px;
}
.recover-block-3 .check p {
  font-size: 16px;
  line-height: 30px;
  color: #666;
  margin-top: 5px;
  padding-left: 26px;
  background-position: left center;
  background-repeat: no-repeat;
  background-image: url("../images/user/icon-6.png");
}

.recover-block-4 h3 {
  font-size: 30px;
  color: #333333;
  text-align: center;
}
.recover-block-4 p {
  font-size: 18px;
  color: #b2b2b2;
  text-align: center;
}
.recover-block-4 p span {
  color: #0c78d4;
}
.recover-block-4 p:before {
  content: '';
  width: 51px;
  height: 42px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/user/icon-5.png");
  display: block;
  margin: 30px auto;
}
.recover-block-4 a.btn {
  display: block;
  margin: 40px auto 0;
  width: 200px;
  font-size: 20px;
  line-height: 50px;
  color: #fff;
  text-align: center;
  border-radius: 24px;
  background-color: #0c78d4;
}

.user-block {
  padding: 4.5vw 0 8vw;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../images/user/img-4.jpg");
}

.user-block-s1 span, .user-block-s1 a, .user-block-s1 i {
  display: inline-block;
  vertical-align: middle;
  font-size: 16px;
  color: #999999;
}
.user-block-s1 span:before {
  content: '';
  width: 14px;
  height: 14px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/home.png");
  display: inline-block;
  vertical-align: middle;
  margin: -2px 10px 0 0;
}
.user-block-s1 a {
  transition: color .3s ease;
}
.user-block-s1 a:hover {
  color: #006e35;
}
.user-block-s1 i {
  margin: -2px 10px 0;
  font-style: normal;
}

.user-block-s2 {
  margin-top: 3.125vw;
  padding: 4.5vw 3.125vw 7.625vw;
  border-radius: 15px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../images/user/img-5.jpg");
}
.user-block-s2 .head-img {
  width: 200px;
  height: 200px;
  padding: 36px;
  margin: 0 auto;
  position: relative;
}
.user-block-s2 .head-img:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  z-index: 1;
}
.user-block-s2 .head-img:after {
  content: '';
  position: absolute;
  top: 18px;
  left: 18px;
  right: 18px;
  bottom: 18px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  z-index: 2;
}
.user-block-s2 .head-img .img {
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 3;
}
.user-block-s2 .head-img img {
  display: block;
  width: 100%;
}
.user-block-s2 h3 {
  font-size: 24px;
  color: #fff;
  text-align: center;
  margin-top: 30px;
}

.user-block-s3 {
  position: relative;
  z-index: 2;
}
.user-block-s3 .box {
  width: 80%;
  max-width: 1040px;
  margin: -3.125vw auto 0;
  border-radius: 15px;
  background-color: #fff;
  padding: 3.125vw;
  font-size: 0;
}
.user-block-s3 .box i {
  display: inline-block;
  vertical-align: middle;
  width: 35px;
  height: 62px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/user/icon-8.png");
}
.user-block-s3 .box .txt {
  width: calc(100% - 60px);
  margin-left: 24px;
  display: inline-block;
  vertical-align: middle;
}
.user-block-s3 .box h3 {
  font-size: 20px;
  color: #333333;
}
.user-block-s3 .box p {
  font-size: 16px;
  color: #666666;
  margin-top: 10px;
}

.about-index-s1 .top-block {
  position: relative;
  padding: 100px 0;
}
.about-index-s1 .top-block:before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  background-color: #fafafa;
}
.about-index-s1 .top-block .flex {
  display: flex;
  align-items: center;
}
.about-index-s1 .top-block .swiper {
  width: calc(50% + 100px);
  flex: 1 0 calc(50% + 100px);
  position: relative;
}
.about-index-s1 .top-block .item img {
  display: block;
  width: 100%;
}
.about-index-s1 .top-block .txt-box {
  width: 100%;
  padding-left: 5vw;
}
.about-index-s1 .top-block h3 {
  font-size: 60px;
  color: #1a4899;
}
.about-index-s1 .top-block span {
  font-size: 20px;
  color: #1a4899;
  text-transform: uppercase;
  display: block;
  margin-top: 10px;
}
.about-index-s1 .top-block .para {
  font-size: 18px;
  line-height: 2;
  color: #666666;
  margin-top: 20px;
}
.about-index-s1 .btn {
  position: absolute;
  bottom: 0;
  left: 50%;
  font-size: 0;
}
.about-index-s1 .button {
  width: 100px;
  height: 100px;
  display: inline-block;
  vertical-align: top;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
}
.about-index-s1 .button-prev {
  background-color: #f8f8f8;
  background-image: url("../images/about/icon-10.png");
}
.about-index-s1 .button-next {
  background-color: #1a4899;
  transform: rotateY(-180deg);
  background-image: url("../images/about/icon-10-1.png");
}
.about-index-s1 .pagination {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  font-size: 0;
  text-align: center;
  z-index: 2;
  display: none;
}
.about-index-s1 .pagination span {
  display: inline-block;
  vertical-align: top;
  width: 8px;
  height: 8px;
  margin: 0 2px;
  border-radius: 50%;
  background-color: #fff;
  opacity: .8;
}
.about-index-s1 .pagination span.active {
  opacity: 1;
  background-color: #1a4899;
}
.about-index-s1 .bot-block {
  padding: 6.25vw 0;
}
.about-index-s1 .bot-block .items {
  display: flex;
  justify-content: space-between;
  padding: 0 6.25vw;
}
.about-index-s1 .bot-block .item {
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.about-index-s1 .bot-block .item i {
  width: 88px;
  height: 88px;
  flex: 1 0 88px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.about-index-s1 .bot-block .item .txt {
  width: 100%;
  padding-left: 30px;
}
.about-index-s1 .bot-block .item span, .about-index-s1 .bot-block .item em {
  display: inline-block;
  vertical-align: bottom;
}
.about-index-s1 .bot-block .item span {
  font-size: 60px;
  line-height: 1;
  color: #333;
  font-family: 'DINPro-Bold';
}
.about-index-s1 .bot-block .item em {
  font-style: normal;
  font-size: 16px;
  color: #999999;
  margin-left: 10px;
  transform: translateY(-5px);
}
.about-index-s1 .bot-block .item p {
  font-size: 16px;
  color: #666666;
  margin-top: 10px;
}
.about-index-s1 .bot-block .item:nth-of-type(1) i {
  background-image: url("../images/about/icon-11-1.png");
}
.about-index-s1 .bot-block .item:nth-of-type(2) i {
  background-image: url("../images/about/icon-11-2.png");
}
.about-index-s1 .bot-block .item:nth-of-type(3) i {
  background-image: url("../images/about/icon-11-3.png");
}

.about-index-s2 {
  padding: 6.25vw 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../images/about/img-9.jpg");
  background-attachment: fixed;
  font-size: 0;
}
.about-index-s2 .txt-box {
  display: inline-block;
  vertical-align: middle;
  width: 52%;
  padding-right: 4.5vw;
}
.about-index-s2 h3 {
  font-size: 60px;
  color: #fff;
}
.about-index-s2 .tip {
  font-size: 30px;
  color: #fff;
  margin-top: 15px;
}
.about-index-s2 .para {
  font-size: 18px;
  line-height: 2;
  color: #ffffff;
  margin-top: 15px;
}
.about-index-s2 .img-box {
  width: 47.5%;
  max-width: 668px;
  display: inline-block;
  vertical-align: middle;
  overflow: hidden;
}
.about-index-s2 .img-box img {
  display: block;
  width: 100%;
  transition: transform .6s ease;
}
@media screen and (min-width: 1025px) {
  .about-index-s2 .img-box:hover img {
    transform: scale(1.1);
  }
}

.about-index-s3 {
  padding: 6.25vw 0;
  font-size: 0;
}
.about-index-s3 .img-box {
  position: relative;
  width: 39.5%;
  max-width: 560px;
  display: inline-block;
  vertical-align: middle;
}
.about-index-s3 .img-box:before {
  content: '';
  width: 12.5vw;
  height: 14.5vw;
  background-color: #153a96;
  position: absolute;
  right: -20px;
  bottom: -20px;
  z-index: 1;
}
.about-index-s3 .img-box .img {
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.about-index-s3 .img-box img {
  display: block;
  width: 100%;
  transition: transform .6s ease;
}
@media screen and (min-width: 1025px) {
  .about-index-s3 .img-box:hover img {
    transform: scale(1.1);
  }
}
.about-index-s3 .txt-box {
  width: 60%;
  display: inline-block;
  vertical-align: middle;
  padding-left: 6.25vw;
}
.about-index-s3 h3 {
  font-size: 60px;
  color: #006e35;
}
.about-index-s3 .tip {
  font-size: 30px;
  color: #000;
  margin-top: 15px;
}
.about-index-s3 .para {
  font-size: 18px;
  line-height: 2;
  color: #666666;
  margin-top: 15px;
}

.about-index-s4 {
  padding: 6.25vw 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../images/about/img-11.jpg");
  background-attachment: fixed;
  font-size: 0;
}
.about-index-s4 .top-block {
  position: relative;
  margin-top: 9.375vw;
}
.about-index-s4 .top-block .year {
  position: absolute;
  top: -5vw;
  left: 0;
  right: 0;
  font-size: 200px;
  line-height: 1;
  font-family: 'DINPro-Bold';
  color: rgba(255, 255, 255, 0.05);
  text-align: center;
  z-index: 1;
}
.about-index-s4 .tab-cont {
  width: 80%;
  max-width: 840px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.about-index-s4 .child {
  background-color: #fff;
  padding: 30px;
  display: none;
}
.about-index-s4 .child.active {
  display: block;
}
.about-index-s4 .child .flex {
  display: flex;
  align-items: center;
}
.about-index-s4 .child .img-box {
  width: 319px;
  flex: 1 0 319px;
  overflow: hidden;
}
.about-index-s4 .child img {
  display: block;
}
.about-index-s4 .child .txt-box {
  width: 100%;
  padding-left: 2vw;
}
.about-index-s4 .child h3 {
  font-size: 24px;
  color: #010101;
}
.about-index-s4 .child .para {
  font-size: 16px;
  line-height: 24px;
  color: #666666;
  margin-top: 10px;
  height: 96px;
  overflow: auto;
  padding-right: 10px;
}
.about-index-s4 .bot-block {
  margin-top: 5vw;
}
.about-index-s4 .bot-block .item {
  padding: 60px 0;
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-image: url("../images/about/img-13.png");
  cursor: pointer;
}
.about-index-s4 .bot-block .item i {
  width: 25px;
  height: 32px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/about/icon-13.png");
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  opacity: 0;
  transition: all .3s ease;
}
.about-index-s4 .bot-block .item h3 {
  font-size: 20px;
  color: #fff;
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  font-family: 'DINPro-Medium';
  opacity: .5;
  transition: all .3s ease;
}
.about-index-s4 .bot-block .item.active i {
  opacity: 1;
}
.about-index-s4 .bot-block .item.active h3 {
  opacity: 1;
  font-size: 24px;
}
.about-index-s4 .button {
  width: 60px;
  height: 60px;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  margin-top: -30px;
  background-color: #fff;
  border-radius: 50%;
  background-image: url("../images/about/icon-12.png");
  cursor: pointer;
  z-index: 2;
}
.about-index-s4 .button-prev {
  left: 0;
}
.about-index-s4 .button-next {
  right: 0;
  transform: rotateY(-180deg);
}

.about-index-s5 {
  padding: 6.25vw 0;
}
.about-index-s5 .mid-block {
  margin-top: 3.125vw;
  position: relative;
}
.about-index-s5 .item .img-box {
  overflow: hidden;
}
.about-index-s5 .item img {
  display: block;
  width: 100%;
  transition: transform .6s ease;
}
.about-index-s5 .item h3 {
  font-size: 20px;
  color: #222222;
  text-align: center;
  margin-top: 2vw;
}
.about-index-s5 .pagination {
  font-size: 0;
  text-align: center;
  margin-top: 2vw;
  display: none;
}
.about-index-s5 .pagination span {
  display: inline-block;
  vertical-align: top;
  width: 8px;
  height: 8px;
  margin: 0 2px;
  border-radius: 50%;
  background-color: #000;
  opacity: .5;
}
.about-index-s5 .pagination span.active {
  opacity: 1;
  background-color: #1a4899;
}
.about-index-s5 .button {
  width: 72px;
  height: 72px;
  position: absolute;
  top: 50%;
  margin-top: -36px;
  border-radius: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #fff;
  background-image: url("../images/index/icon-7-1.png");
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 2;
  cursor: pointer;
  transition: all .3s ease;
}
.about-index-s5 .button:hover {
  background-color: #093977;
  background-image: url("../images/index/icon-7-2.png");
}
.about-index-s5 .button-prev {
  left: 4vw;
}
.about-index-s5 .button-next {
  right: 4vw;
  transform: rotateY(180deg);
}
.about-index-s5 a.more {
  display: block;
  width: 180px;
  font-size: 16px;
  line-height: 48px;
  text-align: center;
  color: #fff;
  border-radius: 24px;
  background-color: #006e35;
  margin: 3.125vw auto 0;
  transition: all .3s ease;
}
@media screen and (min-width: 1025px) {
  .about-index-s5 a.more:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(0, 110, 53, 0.3);
  }
}

.about-contact-s1 {
  padding: 8vw 0;
  font-size: 0;
}
.about-contact-s1 .flex {
  display: flex;
}
.about-contact-s1 .left-block {
  width: 100%;
  padding-right: 3.125vw;
}
.about-contact-s1 .tip {
  font-size: 16px;
  color: #555555;
  margin-top: 15px;
}
.about-contact-s1 .items {
  margin-top: 30px;
}
.about-contact-s1 .item {
  font-size: 18px;
  line-height: 36px;
  color: #333333;
  margin-top: 15px;
}
.about-contact-s1 .item:before {
  content: '';
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #dddddd;
  background-position: center;
  background-repeat: no-repeat;
  box-sizing: border-box;
  display: inline-block;
  vertical-align: top;
  margin-right: 20px;
}
.about-contact-s1 .item:nth-of-type(1) {
  margin-top: 0;
}
.about-contact-s1 .item.item-1:before {
  background-image: url("../images/about/icon-1-1.png");
}
.about-contact-s1 .item.item-2:before {
  background-image: url("../images/about/icon-1-2.png");
}
.about-contact-s1 .item.item-3:before {
  background-image: url("../images/about/icon-1-3.png");
}
.about-contact-s1 .item.item-4:before {
  background-image: url("../images/about/icon-1-4.png");
}
.about-contact-s1 .item.item-5:before {
  background-image: url("../images/about/icon-1-5.png");
}
.about-contact-s1 .box {
  display: inline-block;
  vertical-align: top;
}
.about-contact-s1 .box:nth-of-type(1) {
  margin-right: 80px;
}
.about-contact-s1 .right-block {
  width: 330px;
  flex: 1 0 330px;
  font-size: 0;
}
.about-contact-s1 .ewm {
  display: inline-block;
  vertical-align: top;
  width: 150px;
  text-align: center;
}
.about-contact-s1 .ewm img {
  display: block;
  width: 100%;
  border: 1px solid #dadada;
}
.about-contact-s1 .ewm p {
  font-size: 16px;
  color: #414141;
  margin-top: 25px;
  font-weight: bold;
}
.about-contact-s1 .ewm:nth-of-type(2) {
  margin-left: 24px;
}

.about-contact-s2 {
  position: relative;
  padding-bottom: 5vw;
  z-index: 2;
}
.about-contact-s2 .map {
  height: 40vw;
  max-height: 800px;
}
.about-contact-s2 .tab-tit {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
}
.about-contact-s2 .tab-tit .items {
  border-radius: 10px;
  box-shadow: 0 0 10px #b6b6b6;
  background-color: #fff;
  font-size: 0;
  display: flex;
  overflow: hidden;
}
.about-contact-s2 .tab-tit .item {
  display: inline-block;
  vertical-align: top;
  width: 20%;
  height: 10vw;
  position: relative;
  cursor: pointer;
}
.about-contact-s2 .tab-tit .item:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background-color: #00479d;
  transform-origin: left top;
  transform: scaleX(0);
  transition: .6s ease;
}
.about-contact-s2 .tab-tit .item:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-image: url("../images/about/icon-3.png");
  background-size: 100% auto;
  opacity: 0;
  transition: all .3s ease;
  z-index: 1;
}
.about-contact-s2 .tab-tit .item .cell-box {
  height: 100%;
  text-align: center;
  position: relative;
  z-index: 2;
}
.about-contact-s2 .tab-tit .item .cell-box:after {
  content: '';
  width: 1px;
  height: 4.5vw;
  background-color: #f2f2f2;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -2.25vw;
}
.about-contact-s2 .tab-tit .item h3 {
  font-size: 24px;
  color: #333;
  transition: color .3s ease;
}
.about-contact-s2 .tab-tit .item p {
  font-size: 15px;
  color: rgba(68, 68, 68, 0.6);
  text-transform: uppercase;
  margin-top: 10px;
  transition: color .3s ease;
}
.about-contact-s2 .tab-tit .item:last-of-type .cell-box:after {
  display: none;
}
.about-contact-s2 .tab-tit .item:hover:after, .about-contact-s2 .tab-tit .item.active:after {
  opacity: 1;
}
.about-contact-s2 .tab-tit .item:hover h3, .about-contact-s2 .tab-tit .item:hover p, .about-contact-s2 .tab-tit .item.active h3, .about-contact-s2 .tab-tit .item.active p {
  color: #00479d;
}
.about-contact-s2 .tab-tit .item.active:before {
  transform: scaleX(1);
}
.about-contact-s2 .map-cont {
  width: 520px;
  margin: -10px -18px -10px -10px;
  font-size: 0;
}
.about-contact-s2 .map-cont .img-box {
  display: inline-block;
  vertical-align: middle;
  width: 190px;
  height: 150px;
  text-align: center;
  background-color: #00479d;
}
.about-contact-s2 .map-cont .img-box img {
  width: auto;
  max-width: 70% !important;
  max-height: 50% !important;
}
.about-contact-s2 .map-cont .txt {
  display: inline-block;
  vertical-align: middle;
  width: 320px;
  padding: 0 40px;
  font-size: 16px;
  line-height: 28px;
  color: #333333;
}

.about-contact-s3 {
  padding: 6.25vw 0;
}
.about-contact-s3 form {
  margin-top: 3.125vw;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.about-contact-s3 form button {
  display: block;
  margin: 3.125vw auto 0;
  width: 180px;
  height: 48px;
  font-size: 16px;
  color: #fff;
  background-color: #006e35;
  border-radius: 24px;
  cursor: pointer;
}
.about-contact-s3 .box {
  position: relative;
  margin-top: 18px;
}
@media screen and (min-width: 769px) {
  .about-contact-s3 .box:nth-of-type(1), .about-contact-s3 .box:nth-of-type(2), .about-contact-s3 .box:nth-of-type(3), .about-contact-s3 .box:nth-of-type(4) {
    margin-top: 0;
    width: calc((100% - 54px) / 4);
  }
  .about-contact-s3 .box:nth-of-type(5) {
    width: 100%;
  }
}
.about-contact-s3 .box input, .about-contact-s3 .box select, .about-contact-s3 .box textarea {
  display: block;
  width: 100%;
  font-size: 16px;
  color: #666666;
  border: 1px solid #e3e3e3;
  cursor: pointer;
  transition: border .3s ease;
}
.about-contact-s3 .box input:focus, .about-contact-s3 .box select:focus, .about-contact-s3 .box textarea:focus {
  border-color: #006e35;
}
.about-contact-s3 .box input, .about-contact-s3 .box select {
  height: 60px;
  padding: 0 20px;
}
.about-contact-s3 .box textarea {
  height: 180px;
  padding: 10px 20px;
  resize: none;
}
.about-contact-s3 .box select {
  background-position: calc(100% - 20px) center;
  background-repeat: no-repeat;
  background-image: url("../images/about/icon-4.png");
}

.about-culture-s1 {
  padding: 5vw 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../images/about/img-2.jpg");
  background-attachment: fixed;
}
.about-culture-s1 .items {
  display: flex;
  margin: 2vw -18px 0;
  flex-wrap: wrap;
}
.about-culture-s1 .item {
  width: calc(33.33% - 36px);
  margin: 36px 18px 0;
  background-color: #fff;
  transition: transform .3s ease;
}
.about-culture-s1 .item .img-box {
  overflow: hidden;
}
.about-culture-s1 .item img {
  display: block;
  width: 100%;
  transition: transform .6s ease;
}
.about-culture-s1 .item .txt-box {
  padding: 30px;
}
.about-culture-s1 .item h3 {
  font-size: 20px;
  color: #222222;
}
.about-culture-s1 .item p {
  font-size: 16px;
  color: #777777;
  line-height: 24px;
  margin-top: 10px;
}
@media screen and (min-width: 769px) {
  .about-culture-s1 .item:nth-of-type(1), .about-culture-s1 .item:nth-of-type(2), .about-culture-s1 .item:nth-of-type(3) {
    margin-top: 0;
  }
}
@media screen and (min-width: 1025px) {
  .about-culture-s1 .item:hover {
    transform: translateY(-10px);
  }
  .about-culture-s1 .item:hover img {
    transform: scale(1.1);
  }
}

.about-culture-s2 {
  padding: 5vw 0;
}
.about-culture-s2 .items {
  display: flex;
  flex-wrap: wrap;
  margin: 3.125vw -18px 4vw;
}
.about-culture-s2 .item {
  width: calc(33.33% - 36px);
  margin: 36px 18px 0;
  background-color: #fff;
  position: relative;
  transition: transform .3s ease;
  overflow: hidden;
}
.about-culture-s2 .item .img-box {
  overflow: hidden;
}
.about-culture-s2 .item img {
  display: block;
  width: 100%;
  transition: transform .6s ease;
}
.about-culture-s2 .item h3 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 18px;
  line-height: 50px;
  color: #fff;
  background-color: rgba(0, 71, 157, 0.9);
  transform: translateY(100%);
  transition: transform .3s ease;
}
@media screen and (min-width: 1025px) {
  .about-culture-s2 .item:hover {
    transform: translateY(-10px);
  }
  .about-culture-s2 .item:hover img {
    transform: scale(1.1);
  }
  .about-culture-s2 .item:hover h3 {
    transform: translateY(0);
  }
}
@media screen and (min-width: 769px) {
  .about-culture-s2 .item:nth-of-type(1), .about-culture-s2 .item:nth-of-type(2), .about-culture-s2 .item:nth-of-type(3) {
    margin-top: 0;
  }
}

.about-honor-s1 {
  padding: 6.25vw 0;
}
.about-honor-s1 .items {
  display: flex;
  flex-wrap: wrap;
  margin: 3.125vw -15px 0;
}
.about-honor-s1 .item {
  width: calc(25% - 30px);
  margin: 2vw 15px 0;
  background-color: #fff;
  position: relative;
  transition: transform .3s ease;
  overflow: hidden;
}
.about-honor-s1 .item .img-box {
  overflow: hidden;
}
.about-honor-s1 .item img {
  display: block;
  width: 100%;
  transition: transform .6s ease;
}
.about-honor-s1 .item h3 {
  font-size: 20px;
  color: #222222;
  text-align: center;
  margin-top: 2vw;
}
@media screen and (min-width: 769px) {
  .about-honor-s1 .item:nth-of-type(1), .about-honor-s1 .item:nth-of-type(2), .about-honor-s1 .item:nth-of-type(3), .about-honor-s1 .item:nth-of-type(4) {
    margin-top: 0;
  }
}
@media screen and (min-width: 1025px) {
  .about-honor-s1 .item:hover {
    transform: translateY(-10px);
  }
}

.about-recruit-s1 {
  padding: 5vw 0;
}
.about-recruit-s1 .items {
  display: flex;
}
.about-recruit-s1 .item {
  width: 33.33%;
  text-align: center;
  border-right: 1px solid #f7f7f7;
  transition: transform .3s ease;
}
.about-recruit-s1 .item i {
  display: block;
  height: 4.7vw;
  max-height: 90px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.about-recruit-s1 .item h3 {
  font-size: 24px;
  color: #333;
  margin-top: 30px;
}
.about-recruit-s1 .item p {
  font-size: 16px;
  line-height: 26px;
  color: #808080;
  max-width: 250px;
  margin: 10px auto 0;
}
.about-recruit-s1 .item:nth-of-type(1) i {
  background-image: url("../images/about/icon-5-1.png");
}
.about-recruit-s1 .item:nth-of-type(2) i {
  background-image: url("../images/about/icon-5-2.png");
}
.about-recruit-s1 .item:nth-of-type(3) {
  border: none;
}
.about-recruit-s1 .item:nth-of-type(3) i {
  background-image: url("../images/about/icon-5-3.png");
}
@media screen and (min-width: 1025px) {
  .about-recruit-s1 .item:hover {
    transform: translateY(-10px);
  }
  .about-recruit-s1 .item:hover i {
    transform: rotateY(360deg);
    transition: transform 1s ease;
  }
}

.about-recruit-s2 {
  padding-bottom: 6.25vw;
}
.about-recruit-s2 .top-block {
  position: relative;
}
.about-recruit-s2 .img-box {
  overflow: hidden;
}
.about-recruit-s2 .img-box img {
  display: block;
  width: 100%;
}
.about-recruit-s2 .txt-box {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  z-index: 2;
}
.about-recruit-s2 .bot-block {
  margin-top: -80px;
}
.about-recruit-s2 .head-box {
  padding: 0 2vw;
  background-color: #1a4899;
  text-align: center;
  display: flex;
}
.about-recruit-s2 .head-box span {
  width: 20%;
  font-size: 16px;
  color: #fff;
  line-height: 80px;
  font-weight: bold;
}
.about-recruit-s2 .head-box span:nth-of-type(1) {
  text-align: left;
  padding-left: 3.125vw;
}
.about-recruit-s2 .items {
  padding: 0 2vw 3.125vw;
  background-color: #fff;
  box-shadow: 0 0 20px rgba(91, 91, 91, 0.14);
}
.about-recruit-s2 .item .show {
  border-bottom: 1px solid #f2f2f2;
  text-align: center;
  display: flex;
  cursor: pointer;
}
.about-recruit-s2 .item .show span {
  width: 20%;
  font-size: 16px;
  color: #808080;
  line-height: 80px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.about-recruit-s2 .item .show span:nth-of-type(1) {
  text-align: left;
  padding-left: 3.125vw;
}
.about-recruit-s2 .item .show span:last-of-type {
  color: #2768dd;
}
.about-recruit-s2 .item .hide {
  padding: 3.125vw;
  background-color: #f9f9f9;
  display: none;
}
.about-recruit-s2 .item .box h4 {
  font-size: 18px;
  color: #000;
}
.about-recruit-s2 .item .box .para {
  font-size: 16px;
  line-height: 2.25;
  color: #6e6e6e;
  margin-top: 15px;
}
.about-recruit-s2 .item .info-box {
  display: flex;
  padding: 3.125vw 0;
  text-align: center;
  border-bottom: 1px solid #eaeaea;
  margin-bottom: 2vw;
}
.about-recruit-s2 .item .info-box .info {
  width: 25%;
  border-right: 1px solid #e3e3e3;
}
.about-recruit-s2 .item .info-box .info:last-of-type {
  border: none;
}
.about-recruit-s2 .item .info-box .info:before {
  content: '';
  width: 42px;
  height: 42px;
  display: block;
  margin: 0 auto;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.about-recruit-s2 .item .info-box .info.info-1:before {
  background-image: url("../images/about/icon-6-1.png");
}
.about-recruit-s2 .item .info-box .info.info-2:before {
  background-image: url("../images/about/icon-6-2.png");
}
.about-recruit-s2 .item .info-box .info.info-3:before {
  background-image: url("../images/about/icon-6-3.png");
}
.about-recruit-s2 .item .info-box .info.info-4:before {
  background-image: url("../images/about/icon-6-4.png");
}
.about-recruit-s2 .item .info-box .info h3 {
  font-size: 15px;
  color: #333333;
  margin-top: 10px;
}
.about-recruit-s2 .item a {
  display: block;
  width: 150px;
  font-size: 16px;
  line-height: 50px;
  color: #fff;
  border-radius: 5px;
  background-color: #1a4899;
  text-align: center;
}

.about-bidding-s1 {
  padding: 6.25vw 0;
}
.about-bidding-s1 .items {
  margin-bottom: 5vw;
}
.about-bidding-s1 .item {
  transition: all .3s ease;
  border-bottom: 1px solid #eeeeee;
}
.about-bidding-s1 .item:nth-of-type(1) {
  border-top: 1px solid #eeeeee;
}
.about-bidding-s1 .item a {
  display: flex;
  align-items: center;
  padding: 3.125vw 0;
}
.about-bidding-s1 .item .date {
  width: 170px;
  flex: 1 0 170px;
  text-align: center;
  font-size: 18px;
  color: #636363;
  font-family: 'DINPro-Medium';
  transition: color .3s ease;
}
.about-bidding-s1 .item .date span {
  display: block;
  font-size: 48px;
}
.about-bidding-s1 .item .txt {
  width: 100%;
  padding: 0 3.125vw;
  border-left: 1px solid #f6f6f6;
  transition: all .3s ease;
}
.about-bidding-s1 .item h3 {
  font-size: 24px;
  color: #000000;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color .3s ease;
}
.about-bidding-s1 .item p {
  font-size: 16px;
  color: #818181;
  line-height: 24px;
  height: 48px;
  overflow: hidden;
  margin-top: 15px;
  transition: color .3s ease;
}
@media screen and (min-width: 1025px) {
  .about-bidding-s1 .item:hover {
    background-color: #1a4899;
  }
  .about-bidding-s1 .item:hover .txt {
    border-color: rgba(255, 255, 255, 0.2);
  }
  .about-bidding-s1 .item:hover .date, .about-bidding-s1 .item:hover h3, .about-bidding-s1 .item:hover p {
    color: #fff;
  }
}

.detail-page-s1 {
  padding: 9vw 0 14vw;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.detail-page-s1 h4 {
  font-size: 24px;
  color: #fff;
}
.detail-page-s1 h3 {
  font-size: 52px;
  color: #fff;
  margin: 20px 0;
}
.detail-page-s1 .date {
  font-size: 18px;
  color: #fff;
}

.detail-page-s2 {
  border-top: 1px solid transparent;
  background-color: #f7f9fc;
  padding-bottom: 6.25vw;
}
.detail-page-s2 .main {
  margin-top: -6.25vw;
}
.detail-page-s2 .block {
  display: flex;
  align-items: flex-start;
}
.detail-page-s2 .block:after {
  content: '';
  display: block;
  clear: both;
}
.detail-page-s2 .left-block {
  width: 66.6%;
  flex: 1 0 66.6%;
  margin-right: 24px;
}
.detail-page-s2 .right-block {
  width: 33.33%;
  background-color: #fff;
  padding: 3.125vw 2vw 2vw;
  position: sticky;
  top: 120px;
}
.detail-page-s2 .right-block h3 {
  margin: 0 -2vw;
  font-size: 18px;
  color: #333333;
  border-left: 2px solid #2768dd;
  padding: 0 2vw;
}
.detail-page-s2 .right-block .img-box {
  margin-top: 2vw;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}
.detail-page-s2 .right-block .img-box img {
  display: block;
  width: 100%;
  transition: transform .6s ease;
}
.detail-page-s2 .right-block .img-box h4 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  font-size: 16px;
  color: #fff;
  text-align: center;
  padding: 3.125vw 20px 20px;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0), black);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (min-width: 1025px) {
  .detail-page-s2 .right-block .img-box:hover img {
    transform: scale(1.1);
  }
}
.detail-page-s2 .right-block a.link {
  display: block;
  font-size: 16px;
  color: #555555;
  line-height: 60px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  border-bottom: 1px dashed #d5d5d5;
  transition: color .3s ease;
}
.detail-page-s2 .right-block a.link:before {
  content: '';
  width: 6px;
  height: 6px;
  background-color: #cccccc;
  display: inline-block;
  vertical-align: middle;
  margin: -2px 15px 0 0;
}
.detail-page-s2 .right-block a.link span {
  font-size: 14px;
  position: absolute;
  right: 0;
}
.detail-page-s2 .right-block a.link span:before {
  content: '';
  width: 14px;
  height: 19px;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/achievement/icon-5.png");
  display: inline-block;
  vertical-align: middle;
  margin: 0 10px 0 0;
}
.detail-page-s2 .right-block a.link:last-of-type {
  border-bottom: none;
}
.detail-page-s2 .right-block a.link.pd {
  position: relative;
  padding-right: 70px;
}
@media screen and (min-width: 1025px) {
  .detail-page-s2 .right-block a.link:hover {
    color: #2768dd;
  }
}
.detail-page-s2 a.back {
  display: block;
  margin: 0 auto;
  width: 167px;
}
.detail-page-s2 a.back img {
  display: block;
  width: 100%;
}
.detail-page-s2 .other {
  margin-top: 30px;
  background-color: #fff;
  border-top: 3px solid #2768dd;
  padding: 2vw;
}
.detail-page-s2 .other a {
  font-size: 16px;
  color: #333333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color .3s ease;
}
@media screen and (min-width: 1025px) {
  .detail-page-s2 .other a:hover {
    color: #2768dd;
  }
}
.detail-page-s2 .other-1 {
  display: flex;
}
.detail-page-s2 .other-1 a {
  width: 50%;
}
.detail-page-s2 .other-1 a:nth-of-type(1) {
  padding-right: 20px;
}
.detail-page-s2 .other-1 a:nth-of-type(2) {
  padding-left: 20px;
  text-align: right;
}
.detail-page-s2 .other-2 a {
  display: block;
}
.detail-page-s2 .other-2 a:nth-of-type(2) {
  margin-top: 10px;
}

.detail-s1 {
  width: 100%;
}
.detail-s1 .top-block {
  background-color: #fff;
  padding: 4vw 3.125vw 2vw;
}
.detail-s1 .top-block .title {
  font-size: 30px;
  color: #222222;
  margin-bottom: 20px;
}

.detail-s2 {
  width: 100%;
}
.detail-s2 .top-block {
  background-color: #fff;
  padding: 4vw 3.125vw 2vw;
}
.detail-s2 .top-block .title {
  font-size: 30px;
  color: #222222;
  margin-bottom: 20px;
}
.detail-s2 .para {
  font-size: 16px;
  line-height: 2;
  color: #555555;
}
.detail-s2 .para.mt {
  margin-top: 3.125vw;
}
.detail-s2 .swiper {
  position: relative;
  margin: 3.125vw 36px 0;
}
.detail-s2 .items {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
}
.detail-s2 .item {
  position: relative;
}
.detail-s2 .item .img-box {
  overflow: hidden;
}
.detail-s2 .item img {
  display: block;
  width: 100%;
}
.detail-s2 .item h3 {
  background-color: rgba(9, 57, 119, 0.9);
  padding: 30px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  font-size: 16px;
  color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.detail-s2 .pagination {
  font-size: 0;
  text-align: center;
  margin-top: 2vw;
  display: none;
}
.detail-s2 .pagination span {
  display: inline-block;
  vertical-align: top;
  width: 8px;
  height: 8px;
  margin: 0 2px;
  border-radius: 50%;
  background-color: #000;
  opacity: .5;
}
.detail-s2 .pagination span.active {
  opacity: 1;
  background-color: #1a4899;
}
.detail-s2 .button {
  width: 72px;
  height: 72px;
  position: absolute;
  top: 50%;
  margin-top: -36px;
  border-radius: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #fff;
  background-image: url("../images/index/icon-7-1.png");
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 2;
  cursor: pointer;
  transition: all .3s ease;
}
.detail-s2 .button:hover {
  background-color: #093977;
  background-image: url("../images/index/icon-7-2.png");
}
.detail-s2 .button-prev {
  left: -36px;
}
.detail-s2 .button-next {
  right: -36px;
  transform: rotateY(180deg);
}

.detail-s3 {
  width: 100%;
}
.detail-s3 .top-block {
  padding: 0 2vw 2vw;
  background-color: #fff;
}
.detail-s3 .point {
  text-align: right;
  padding: 2vw 0;
  background-color: #fff;
}
.detail-s3 .point a {
  display: inline-block;
  vertical-align: top;
  font-size: 18px;
  color: #333333;
  transition: color .3s ease;
}
.detail-s3 .point a:after {
  content: '';
  width: 1px;
  height: 12px;
  background-color: #c9c9c9;
  display: inline-block;
  vertical-align: middle;
  margin: 0 1.5vw;
}
.detail-s3 .point a:last-of-type:after {
  display: none;
}
.detail-s3 .point a.active {
  color: #006e35;
}
.detail-s3 .section {
  padding: 5vw 0;
  border-top: 1px solid #f1f1f1;
}
.detail-s3 .section .tit {
  font-size: 24px;
  color: #333;
  font-weight: bold;
}
.detail-s3 .section .para {
  font-size: 16px;
  line-height: 2;
  color: #555555;
  margin-top: 1.5vw;
}
.detail-s3 .section .system-img {
  margin-top: 2vw;
  text-align: center;
}
.detail-s3 .section .system-img img {
  max-width: 100%;
}
.detail-s3 .section .items {
  display: flex;
  flex-wrap: wrap;
  margin: 2vw -18px 0;
}
.detail-s3 .section .item {
  width: calc(50% - 36px);
  margin: 36px 18px 0;
}
.detail-s3 .section .item .img-box {
  overflow: hidden;
}
.detail-s3 .section .item img {
  display: block;
  width: 100%;
  transition: transform .6s ease;
}
.detail-s3 .section .item:nth-of-type(1), .detail-s3 .section .item:nth-of-type(2) {
  margin-top: 0;
}
@media screen and (min-width: 1025px) {
  .detail-s3 .section .item:hover img {
    transform: scale(1.1);
  }
}

.news-list-s1 {
  padding-bottom: 5vw;
}
.news-list-s1 .form {
  padding: 2vw 0;
}
.news-list-s1 form {
  height: 72px;
  position: relative;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
  border-radius: 5px;
  overflow: hidden;
}
.news-list-s1 form input {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0 20px;
  font-size: 16px;
  color: #666;
}
.news-list-s1 form button {
  width: 80px;
  height: 100%;
  background-color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
  top: 0;
  background-image: url("../images/news/icon-1.png");
  cursor: pointer;
}
.news-list-s1 .items {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -18px 4vw;
}
.news-list-s1 .item {
  width: calc(33.33% - 36px);
  margin: 36px 18px 0;
  background-color: #fff;
  position: relative;
  transition: transform .3s ease;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}
.news-list-s1 .item .img-box {
  overflow: hidden;
}
.news-list-s1 .item img {
  display: block;
  width: 100%;
  transition: transform .6s ease;
}
.news-list-s1 .item .txt-box {
  padding: 2vw;
  position: relative;
}
.news-list-s1 .item .txt-box:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(135deg, #38ac8e, #2f59bb);
  z-index: 1;
  opacity: 0;
  transition: opacity .3s ease;
}
.news-list-s1 .item .date {
  font-size: 16px;
  color: #cccccc;
  line-height: 1;
  font-family: 'DINPro-Medium';
  transition: color .3s ease;
  position: relative;
  z-index: 2;
}
.news-list-s1 .item h3 {
  font-size: 18px;
  line-height: 24px;
  color: #333333;
  height: 48px;
  overflow: hidden;
  margin-top: 15px;
  transition: color .3s ease;
  position: relative;
  z-index: 2;
}
.news-list-s1 .item span {
  display: inline-block;
  font-size: 14px;
  line-height: 36px;
  color: #555555;
  margin-top: 15px;
  border-radius: 18px;
  transition: all .3s ease;
  position: relative;
  z-index: 2;
}
.news-list-s1 .item span:after {
  content: '';
  width: 8px;
  height: 12px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/news/icon-2.png");
  display: inline-block;
  vertical-align: middle;
  margin: -2px 0 0 8px;
}
@media screen and (min-width: 1025px) {
  .news-list-s1 .item:hover {
    transform: translateY(-10px);
  }
  .news-list-s1 .item:hover img {
    transform: scale(1.1);
  }
  .news-list-s1 .item:hover .txt-box:before {
    opacity: 1;
  }
  .news-list-s1 .item:hover .txt-box .date, .news-list-s1 .item:hover .txt-box h3 {
    color: #fff;
  }
  .news-list-s1 .item:hover .txt-box span {
    color: #2f59bb;
    background-color: #fff;
    padding: 0 18px;
  }
}
@media screen and (min-width: 769px) {
  .news-list-s1 .item:nth-of-type(1), .news-list-s1 .item:nth-of-type(2), .news-list-s1 .item:nth-of-type(3) {
    margin-top: 0;
  }
}

.cooperation-list-s1 {
  background-color: #f7f9fc;
  padding: 6.25vw 0;
}
.cooperation-list-s1 .items {
  display: flex;
  margin: 0 -18px;
  flex-wrap: wrap;
}
.cooperation-list-s1 .item {
  width: calc(33.33% - 36px);
  margin: 36px 18px 0;
  background-color: #fff;
  position: relative;
  text-align: center;
  transition: transform .3s ease;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}
.cooperation-list-s1 .item img {
  display: block;
  width: 100%;
  transition: transform .6s ease;
}
.cooperation-list-s1 .item .show {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  padding: 0 1.5vw 2vw;
  transition: all .3s ease;
  z-index: 2;
}
.cooperation-list-s1 .item .show .icon {
  width: 76px;
  height: 76px;
  margin: 0 auto;
  border-radius: 50%;
  background-color: #f7f7f7;
  position: relative;
  transform: translateY(-38px);
}
.cooperation-list-s1 .item .show i {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto 37px;
  opacity: .6;
  filter: grayscale(1);
}
.cooperation-list-s1 .item .show h3 {
  font-size: 22px;
  color: #333;
  margin-top: -15px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cooperation-list-s1 .item .show p {
  font-size: 16px;
  line-height: 26px;
  color: #777777;
  height: 52px;
  overflow: hidden;
  margin-top: 15px;
}
.cooperation-list-s1 .item .hide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0 2vw;
  background-color: rgba(0, 110, 53, 0.85);
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: all .3s ease;
  z-index: 3;
}
.cooperation-list-s1 .item .hide .icon {
  width: 90px;
  height: 90px;
  position: relative;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 50%;
}
.cooperation-list-s1 .item .hide .icon:before {
  content: '';
  position: absolute;
  top: -14px;
  left: -14px;
  right: -14px;
  bottom: -14px;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.1);
}
.cooperation-list-s1 .item .hide .icon:after {
  content: '';
  position: absolute;
  top: -7px;
  left: -7px;
  right: -7px;
  bottom: -7px;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.3);
}
.cooperation-list-s1 .item .hide i {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto 37px;
}
.cooperation-list-s1 .item .hide h3 {
  font-size: 22px;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 2.5vw;
}
.cooperation-list-s1 .item .hide p {
  font-size: 16px;
  line-height: 26px;
  color: #fff;
  margin-top: 15px;
  height: 52px;
  overflow: hidden;
}
.cooperation-list-s1 .item:nth-of-type(3n) .show i {
  background-image: url("../images/achievement/icon-3-1.png");
}
.cooperation-list-s1 .item:nth-of-type(3n) .hide i {
  background-image: url("../images/achievement/icon-3-2.png");
}
.cooperation-list-s1 .item:nth-of-type(3n-1) .show i {
  background-image: url("../images/achievement/icon-2-1.png");
}
.cooperation-list-s1 .item:nth-of-type(3n-1) .hide i {
  background-image: url("../images/achievement/icon-2-2.png");
}
.cooperation-list-s1 .item:nth-of-type(3n-2) .show i {
  background-image: url("../images/achievement/icon-1-1.png");
}
.cooperation-list-s1 .item:nth-of-type(3n-2) .hide i {
  background-image: url("../images/achievement/icon-1-2.png");
}
@media screen and (min-width: 769px) {
  .cooperation-list-s1 .item:nth-of-type(1), .cooperation-list-s1 .item:nth-of-type(2), .cooperation-list-s1 .item:nth-of-type(3) {
    margin-top: 0;
  }
}
@media screen and (min-width: 1025px) {
  .cooperation-list-s1 .item:hover img {
    transform: scale(1.05);
  }
  .cooperation-list-s1 .item:hover .show {
    opacity: 0;
    visibility: hidden;
  }
  .cooperation-list-s1 .item:hover .hide {
    opacity: 1;
    visibility: visible;
  }
}

.achievement-list-s1 {
  padding: 6.25vw 0;
  background-color: #f7f9fc;
}
.achievement-list-s1 .item {
  margin-top: 30px;
  background-color: #fff;
  position: relative;
  box-shadow: 0 0 3.125vw rgba(0, 0, 0, 0.05);
}
.achievement-list-s1 .item:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #006e35;
  transform-origin: left top;
  transform: scaleX(0);
}
.achievement-list-s1 .item a {
  display: flex;
  align-items: center;
}
.achievement-list-s1 .item .img-box {
  position: relative;
  overflow: hidden;
  background-color: #006e35;
  width: 481px;
  flex: 1 0 481px;
}
.achievement-list-s1 .item img {
  display: block;
  width: 100%;
  transition: all .6s ease;
}
.achievement-list-s1 .item span {
  width: 4vw;
  height: 4vw;
  max-width: 76px;
  max-height: 76px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all .3s ease;
}
.achievement-list-s1 .item .txt-box {
  width: 100%;
  padding: 0 3.5vw;
}
.achievement-list-s1 .item h3 {
  font-size: 24px;
  color: #1a1a1a;
}
.achievement-list-s1 .item p {
  font-size: 16px;
  color: #777777;
  line-height: 2;
  max-height: 96px;
  overflow: hidden;
  margin-top: 15px;
}
.achievement-list-s1 .item i {
  display: block;
  font-size: 14px;
  color: #006e35;
  margin-top: 15px;
  font-style: normal;
}
.achievement-list-s1 .item i:before {
  content: '';
  width: 14px;
  height: 19px;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/achievement/icon-5.png");
  display: inline-block;
  vertical-align: middle;
  margin: 0 10px 0 0;
}
.achievement-list-s1 .item.noicon img {
  opacity: 1 !important;
}
.achievement-list-s1 .item:nth-of-type(1) {
  margin-top: 0;
}
@media screen and (min-width: 1025px) {
  .achievement-list-s1 .item:hover:after {
    transform: scaleX(1);
    transition: transform .6s ease;
  }
  .achievement-list-s1 .item:hover img {
    transform: scale(1.1);
    opacity: 0.3;
  }
  .achievement-list-s1 .item:hover span {
    opacity: 1;
  }
}

.case-list-s1 {
  background-color: #f7f9fc;
  padding: 6.25vw 0;
}
.case-list-s1 .items {
  display: flex;
  margin: 0 -12px;
  flex-wrap: wrap;
  margin-bottom: 4vw;
}
.case-list-s1 .item {
  width: calc(33.33% - 24px);
  margin: 24px 12px 0;
  position: relative;
  border-radius: 3px;
  overflow: hidden;
}
.case-list-s1 .item .img-box {
  position: relative;
  overflow: hidden;
}
.case-list-s1 .item .img-box:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.1);
}
.case-list-s1 .item img {
  display: block;
  width: 100%;
  transition: transform .6s ease;
}
.case-list-s1 .item .txt-box {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0 2.5vw;
  background-image: linear-gradient(135deg, rgba(56, 172, 142, 0.9), rgba(47, 89, 187, 0.9));
  opacity: 0;
  z-index: 2;
  transition: all .3s ease;
}
.case-list-s1 .item i {
  display: block;
  width: 50px;
  height: 50px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.case-list-s1 .item h3 {
  font-size: 22px;
  color: #fff;
  margin-top: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.case-list-s1 .item p {
  font-size: 16px;
  color: #fff;
  margin-top: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.case-list-s1 .item span {
  display: block;
  width: 110px;
  line-height: 28px;
  border-radius: 12px;
  text-align: center;
  font-size: 12px;
  color: #006e35;
  background-color: #fff;
  margin-top: 24px;
}
@media screen and (min-width: 769px) {
  .case-list-s1 .item:nth-of-type(1), .case-list-s1 .item:nth-of-type(2), .case-list-s1 .item:nth-of-type(3) {
    margin-top: 0;
  }
}
@media screen and (min-width: 1025px) {
  .case-list-s1 .item:hover img {
    transform: scale(1.1);
  }
  .case-list-s1 .item:hover .txt-box {
    opacity: 1;
    visibility: visible;
  }
}

.download-page-s1 {
  padding: 4vw 0 6.25vw;
}
.download-page-s1 .items {
  margin-bottom: 4vw;
}
.download-page-s1 .item {
  border-bottom: 1px solid #f4f4f4;
  position: relative;
}
.download-page-s1 .item:after {
  content: '';
  height: 1px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  background-color: #006e35;
  transform-origin: left top;
  transform: scaleX(0);
  transition: transform .6s ease;
}
.download-page-s1 .item a {
  display: block;
  position: relative;
  font-size: 16px;
  color: #333;
  line-height: 2;
  padding: 24px 120px 24px 24px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color .3s ease;
}
.download-page-s1 .item a:before {
  content: '';
  width: 8px;
  height: 8px;
  background-color: #dcdcdc;
  border-radius: 50%;
  display: inline-block;
  vertical-align: middle;
  margin: -2px 20px 0 0;
  transition: all .3s ease;
}
.download-page-s1 .item a span {
  font-size: 14px;
  color: #666666;
  position: absolute;
  right: 24px;
}
.download-page-s1 .item a span:before {
  content: '';
  width: 14px;
  height: 19px;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/achievement/icon-5.png");
  display: inline-block;
  vertical-align: middle;
  margin: 0 10px 0 0;
}
@media screen and (min-width: 1025px) {
  .download-page-s1 .item:hover:after {
    transform: scaleX(1);
  }
  .download-page-s1 .item:hover a {
    color: #006e35;
  }
  .download-page-s1 .item:hover a:before {
    background-color: #006e35;
  }
}

.support-page-s1 {
  padding: 8vw 0;
  background-color: #f7f8fa;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-image: url("../images/support/img-1.jpg");
  background-size: 100% auto;
  font-size: 0;
}
.support-page-s1 .txt-box {
  display: inline-block;
  vertical-align: middle;
  width: 63%;
  padding-right: 8vw;
}
.support-page-s1 h3 {
  font-size: 34px;
  color: #333333;
}
.support-page-s1 p {
  font-size: 16px;
  line-height: 2;
  color: #686868;
}
.support-page-s1 p:before {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background-color: #006e35;
  margin: 20px 0;
}
.support-page-s1 a {
  display: block;
  width: 180px;
  font-size: 16px;
  line-height: 48px;
  text-align: center;
  color: #fff;
  border-radius: 24px;
  background-color: #006e35;
  margin-top: 2vw;
  transition: all .3s ease;
}
@media screen and (min-width: 1025px) {
  .support-page-s1 a:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(0, 110, 53, 0.3);
  }
}
.support-page-s1 .img-box {
  display: inline-block;
  vertical-align: middle;
  width: 37%;
  max-width: 514px;
}
.support-page-s1 .img-box img {
  display: block;
  width: 100%;
}

.support-page-s2 {
  padding: 6.25vw 0;
}
.support-page-s2 .tab-wrap {
  margin-top: 3.125vw;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
.support-page-s2 .tab-tit {
  font-size: 0;
  padding: 0 2.5vw;
  border-bottom: 1px solid #f4f4f4;
}
.support-page-s2 .tab-tit span {
  display: inline-block;
  vertical-align: top;
  padding: 2vw 1vw;
  position: relative;
  font-size: 22px;
  color: #333;
  margin-left: 3.125vw;
  cursor: pointer;
  transition: color .3s ease;
}
.support-page-s2 .tab-tit span:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #006e35;
  transform: scaleX(0);
  transition: transform .3s ease;
}
.support-page-s2 .tab-tit span:nth-of-type(1) {
  margin-left: 0;
}
.support-page-s2 .tab-tit span:hover, .support-page-s2 .tab-tit span.active {
  color: #006e35;
}
.support-page-s2 .tab-tit span:hover:after, .support-page-s2 .tab-tit span.active:after {
  transform: scale(1);
}
.support-page-s2 .tab-cont {
  padding: 2vw 2.5vw;
  font-size: 0;
}
.support-page-s2 .tab-cont .child {
  display: none;
}
.support-page-s2 .tab-cont .child.active {
  display: block;
}
.support-page-s2 ul {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
.support-page-s2 ul:after {
  content: '';
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  background-color: #f4f4f4;
}
.support-page-s2 li {
  display: inline-block;
  vertical-align: top;
  width: calc(50% - 2vw);
  position: relative;
  border-bottom: 1px solid #f4f4f4;
}
.support-page-s2 li:after {
  content: '';
  height: 1px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  background-color: #006e35;
  transform-origin: left top;
  transform: scaleX(0);
  transition: transform .6s ease;
}
.support-page-s2 li a {
  display: block;
  position: relative;
  font-size: 16px;
  color: #333;
  line-height: 2;
  padding: 24px 120px 24px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color .3s ease;
}
.support-page-s2 li a:before {
  content: '';
  width: 8px;
  height: 8px;
  background-color: #dcdcdc;
  border-radius: 50%;
  display: inline-block;
  vertical-align: middle;
  margin: -2px 20px 0 0;
  transition: all .3s ease;
}
.support-page-s2 li a span {
  font-size: 14px;
  color: #666666;
  position: absolute;
  right: 24px;
}
.support-page-s2 li a span:before {
  content: '';
  width: 14px;
  height: 19px;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/achievement/icon-5.png");
  display: inline-block;
  vertical-align: middle;
  margin: 0 10px 0 0;
}
@media screen and (min-width: 769px) {
  .support-page-s2 li:nth-of-type(odd) {
    margin-right: 2vw;
  }
  .support-page-s2 li:nth-of-type(even) {
    margin-left: 2vw;
  }
}
@media screen and (min-width: 1025px) {
  .support-page-s2 li:hover:after {
    transform: scaleX(1);
  }
  .support-page-s2 li:hover a {
    color: #006e35;
  }
  .support-page-s2 li:hover a:before {
    background-color: #006e35;
  }
  .support-page-s2 li:hover a:after {
    transform: scaleX(1);
  }
}
.support-page-s2 a.more {
  display: block;
  width: 180px;
  font-size: 16px;
  line-height: 48px;
  text-align: center;
  color: #fff;
  border-radius: 24px;
  background-color: #006e35;
  margin: 3.125vw auto 0;
  transition: all .3s ease;
}
@media screen and (min-width: 1025px) {
  .support-page-s2 a.more:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(0, 110, 53, 0.3);
  }
}

.support-page-s3 {
  padding: 6.25vw 0;
  background-color: #f3f3f3;
}
.support-page-s3 .items {
  margin: 4vw -15px 0;
  display: flex;
}
.support-page-s3 .item {
  width: calc(25% - 30px);
  margin: 0 15px;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  background-color: #000;
  transition: all .3s ease;
}
.support-page-s3 .item .img-box {
  overflow: hidden;
}
.support-page-s3 .item img {
  display: block;
  width: 100%;
  opacity: .7;
  transition: opacity .3s ease, transform .6s ease;
}
.support-page-s3 .item h3 {
  font-size: 20px;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.support-page-s3 .item .show {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  transition: all .3s ease;
}
.support-page-s3 .item .hide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px;
  z-index: 2;
  opacity: 0;
  transition: all .3s ease;
}
.support-page-s3 .item .hide i {
  display: block;
  width: 50px;
  height: 50px;
  margin: 0 auto;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/support/icon-1.png");
}
.support-page-s3 .item .hide h3 {
  margin: 20px 0;
}
.support-page-s3 .item .hide p {
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .support-page-s3 .item:hover {
    background-color: #006e35;
  }
  .support-page-s3 .item:hover img {
    opacity: .2;
    transform: scale(1.1);
  }
  .support-page-s3 .item:hover .show {
    opacity: 0;
  }
  .support-page-s3 .item:hover .hide {
    opacity: 1;
  }
}

.support-page-s4 {
  padding: 6.25vw 0;
}
.support-page-s4 form {
  margin-top: 3.125vw;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.support-page-s4 form button {
  display: block;
  margin: 3.125vw auto 0;
  width: 180px;
  height: 48px;
  font-size: 16px;
  color: #fff;
  background-color: #006e35;
  border-radius: 24px;
  cursor: pointer;
}
.support-page-s4 .box {
  position: relative;
  margin-top: 18px;
}
@media screen and (min-width: 769px) {
  .support-page-s4 .box:nth-of-type(1), .support-page-s4 .box:nth-of-type(2), .support-page-s4 .box:nth-of-type(3), .support-page-s4 .box:nth-of-type(4) {
    margin-top: 0;
    width: calc((100% - 54px) / 4);
  }
  .support-page-s4 .box:nth-of-type(5) {
    width: 100%;
  }
}
.support-page-s4 .box input, .support-page-s4 .box textarea {
  display: block;
  width: 100%;
  font-size: 16px;
  color: #666666;
  border: 1px solid #e3e3e3;
  cursor: pointer;
  transition: border .3s ease;
}
.support-page-s4 .box input:focus, .support-page-s4 .box textarea:focus {
  border-color: #006e35;
}
.support-page-s4 .box input {
  height: 60px;
  padding: 0 20px;
}
.support-page-s4 .box textarea {
  height: 180px;
  padding: 10px 20px;
  resize: none;
}
.support-page-s4 .box a {
  width: 110px;
  text-align: center;
  position: absolute;
  top: 0;
  right: 0;
  font-size: 16px;
  line-height: 60px;
  color: #fff;
  background-color: #006e35;
}
.support-page-s4 .tip {
  font-size: 16px;
  color: #666666;
  margin-top: 20px;
  width: 100%;
}

.pop-support {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 15;
  display: none;
}
.pop-support .cont {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.pop-support .main {
  background-color: #fff;
}
.pop-support .close {
  width: 36px;
  height: 36px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/close.png");
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}
.pop-support .top-block {
  background-color: #006e35;
  padding: 35px 0;
  position: relative;
}
.pop-support .top-block h3 {
  font-size: 36px;
  color: #fff;
  text-align: center;
}
.pop-support .bot-block {
  padding: 3.125vw;
}
.pop-support form {
  display: flex;
  flex-wrap: wrap;
}
.pop-support .box {
  width: calc((100% - 48px) / 3);
  margin-right: 24px;
  margin-top: 24px;
  font-size: 14px;
}
@media screen and (min-width: 769px) {
  .pop-support .box:nth-of-type(1), .pop-support .box:nth-of-type(2), .pop-support .box:nth-of-type(3) {
    margin-top: 0;
  }
  .pop-support .box:nth-of-type(3n) {
    margin-right: 0;
  }
  .pop-support .box:last-of-type {
    width: 100%;
  }
}
.pop-support input, .pop-support select {
  display: block;
  width: 100%;
  height: 60px;
  padding: 0 20px;
  font-size: 16px;
  color: #666;
  border: 1px solid #e3e3e3;
  cursor: pointer;
  transition: border .3s ease;
}
.pop-support input:focus, .pop-support select:focus {
  border-color: #006e35;
}
.pop-support select {
  background-position: calc(100% - 20px) center;
  background-repeat: no-repeat;
  background-image: url("../images/about/icon-4.png");
}
.pop-support button {
  display: block;
  margin: 0 auto;
  width: 180px;
  height: 48px;
  font-size: 16px;
  color: #fff;
  background-color: #006e35;
  border-radius: 24px;
  cursor: pointer;
}

.search-s2 {
  position: relative;
  background-color: #fff;
  padding: 4.5vw 0 6vw;
}
.search-s2 .cont {
  max-width: 1200px;
  margin: 0 auto;
}
.search-s2 .tip {
  font-size: 18px;
  color: #333;
}
.search-s2 .tip b {
  color: #006e35;
}
.search-s2 .nocont {
  margin-top: 20px;
}
.search-s2 .items {
  margin-bottom: 2vw;
}
.search-s2 .item {
  border-bottom: 8px solid #f5f5f5;
  transition: all .3s ease;
}
.search-s2 .item a {
  display: block;
  padding: 3.125vw 0;
}
.search-s2 .item .date {
  font-size: 14px;
  color: #006e35;
  font-style: italic;
}
.search-s2 .item h3 {
  font-size: 20px;
  color: #333333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 20px;
}
.search-s2 .item span {
  display: inline-block;
  font-size: 16px;
  color: #006e35;
  margin-top: 20px;
}
@media screen and (min-width: 1025px) {
  .search-s2 .item:hover {
    border-color: #006e35;
  }
}

@media screen and (max-width: 1600px) {
  body {
    padding-top: 100px;
  }

  .detail-page-s1 h3,
  .about-index-s1 .top-block h3,
  .about-index-s1 .bot-block .item span,
  .about-index-s2 h3,
  .about-index-s3 h3 {
    font-size: 46px;
  }

  .about-bidding-s1 .item .date span,
  .product-detail-s2 span {
    font-size: 40px;
  }

  .c-banner h3,
  .inner-tit h3,
  .index-tit h3,
  .product-detail-s2 h3,
  .support-page-s1 h3,
  .pop-support .top-block h3 {
    font-size: 32px;
  }

  .detail-s1 .top-block .title,
  .about-index-s2 .tip,
  .about-index-s3 .tip,
  .recover-block-4 h3,
  .success-block h3 {
    font-size: 24px;
  }

  .detail-page-s1 h4,
  .about-bidding-s1 .item h3,
  .about-contact-s2 .tab-tit .item h3,
  .index-tit span,
  .about-index-s4 .child h3,
  .about-index-s4 .bot-block .item.active h3,
  .about-recruit-s1 .item h3,
  .achievement-list-s1 .item h3,
  .case-list-s1 .item h3,
  .detail-s3 .section .tit,
  .cooperation-list-s1 .item .show h3,
  .cooperation-list-s1 .item .hide h3,
  .index-s2 .item h3,
  .index-s3 .item h3,
  .index-s4 .tit span,
  .index-s4 .left-block .item .hide h3,
  .product-detail-s3 .item h3,
  .product-detail-s5 .item h3,
  .user-page .tit span,
  .support-page-s2 .tab-tit span,
  .user-block-s2 h3 {
    font-size: 20px;
  }

  .about-culture-s1 .item h3,
  .about-honor-s1 .item h3,
  .about-index-s1 .top-block span,
  .about-index-s4 .bot-block .item h3,
  .about-index-s5 .item h3,
  .recover-block form a.next,
  .recover-block-3 .check h3,
  .recover-block-4 a.btn,
  .login-block .box button,
  .register-block form button,
  .success-block a.btn,
  .support-page-s3 .item h3,
  .user-block-s3 .box h3 {
    font-size: 18px;
  }

  .c-banner span,
  .detail-page-s1 .date,
  .suspension .left-box a,
  .suspension .right-box span,
  .suspension .right-box a,
  .suspension .right-box i,
  .about-bidding-s1 .item .date,
  .about-contact-s1 .item,
  .about-contact-s2 .map-cont .txt,
  .inner-tit p,
  .about-culture-s2 .item h3,
  .about-index-s1 .top-block .para,
  .about-index-s2 .para,
  .about-index-s3 .para,
  .detail-s3 .point a,
  .news-list-s1 .item h3,
  .product-s1 .item h3,
  .user-page .tip-signin,
  .recover-block .tip h3,
  .recover-block-4 p,
  .success-block p,
  .about-recruit-s2 .item .box h4,
  .pdservice-s1 .para {
    font-size: 16px;
  }

  .detail-page-s2 .other a,
  .about-bidding-s1 .item p,
  .about-contact-s1 .tip,
  .about-contact-s1 .ewm p,
  .about-contact-s3 .box input,
  .about-contact-s3 .box select,
  .about-contact-s3 .box textarea,
  .about-contact-s3 form button,
  .about-culture-s1 .item p,
  .about-index-s1 .bot-block .item em,
  .about-index-s1 .bot-block .item p,
  .about-index-s4 .child .para,
  .about-index-s5 a.more,
  .about-recruit-s1 .item p,
  .about-recruit-s2 .head-box span,
  .about-recruit-s2 .item .show span,
  .achievement-list-s1 .item p,
  .detail-page-s2 .right-block .img-box h4,
  .detail-page-s2 .right-block a.link,
  .case-list-s1 .item p,
  .detail-s3 .section .para,
  .cooperation-list-s1 .item .show p,
  .cooperation-list-s1 .item .hide p,
  .detail-s2 .para,
  .detail-s2 .item h3,
  .download-page-s1 .item a,
  .index-s2 .item p,
  .index-s3 .item p,
  .index-s3 a.more,
  .index-s4 .left-block .item .show h3,
  .index-s4 .left-block .item .hide p,
  .index-s4 .right-block .item span,
  .index-s6 span,
  .index-s6 a,
  .news-list-s1 form input,
  .news-list-s1 .item .date,
  .product-detail-s1 span,
  .product-detail-s1 a,
  .product-detail-s1 i,
  .product-detail-s2 .para,
  .product-detail-s2 a,
  .product-detail-s3 .item p,
  .product-detail-s5 .item p,
  .recover-block .box input[type="text"],
  .recover-block .box input[type="password"],
  .recover-block-3 .check p,
  .user-page .tit a,
  .login-block .box input,
  .login-block .box a.tofind,
  .register-block .box input[type="text"],
  .register-block .box input[type="password"],
  .support-page-s1 p,
  .support-page-s2 li a,
  .support-page-s3 .item .hide p,
  .support-page-s4 .box input,
  .support-page-s4 .box textarea,
  .support-page-s4 .box a,
  .support-page-s4 .tip,
  .support-page-s4 form button,
  .user-block-s3 .box p,
  .product-s1 a.more,
  .support-page-s1 a,
  .about-recruit-s2 .item .box .para,
  .about-recruit-s2 .item a,
  .support-page-s2 a.more,
  .pop-support button,
  .pop-support input,
  .pop-support select {
    font-size: 15px;
  }

  .about-index-s5 a.more,
  .index-s3 a.more,
  .product-s1 a.more,
  .support-page-s1 a,
  .support-page-s2 a.more {
    width: 150px;
    line-height: 40px;
  }

  .about-index-s5 .button,
  .product-detail-s5 .button,
  .product-detail-s6 .button {
    width: 60px;
    height: 60px;
  }

  .about-index-s5 .button,
  .product-detail-s6 .button {
    margin-top: -30px;
  }

  .about-index-s5 .button-prev {
    left: 3.125vw;
  }

  .about-index-s5 .button-next {
    right: 3.125vw;
  }

  .suspension .main {
    margin-top: -45px;
  }

  .suspension .left-box a {
    line-height: 90px;
  }

  .detail-page-s2 a.back {
    width: 140px;
  }

  .about-contact-s1 .ewm {
    width: 120px;
  }

  .about-contact-s2 .map-cont .img-box {
    height: 120px;
  }

  .about-contact-s2 .map-cont .txt {
    line-height: 24px;
  }

  .about-contact-s3 form button,
  .support-page-s4 form button,
  .pop-support button {
    width: 150px;
    height: 40px;
  }

  .about-contact-s3 .box input,
  .about-contact-s3 .box select,
  .support-page-s4 .box input,
  .pop-support input, .pop-support select {
    height: 50px;
  }

  .about-contact-s3 .box textarea,
  .support-page-s4 .box textarea {
    height: 150px;
  }

  .about-index-s1 .top-block .swiper {
    width: calc(50% + 80px);
    flex: 1 0 calc(50% + 80px);
  }

  .about-index-s1 .top-block {
    padding: 80px 0;
  }

  .about-index-s1 .button {
    width: 80px;
    height: 80px;
  }

  .about-index-s1 .bot-block .item i {
    width: 74px;
    height: 74px;
    flex: 1 0 74px;
  }

  .about-recruit-s2 .bot-block {
    margin-top: -70px;
  }

  .about-recruit-s2 .head-box span,
  .about-recruit-s2 .item .show span {
    line-height: 70px;
  }

  .detail-page-s2 .right-block a.link {
    line-height: 50px;
  }

  .case-list-s1 .item i,
  .index-s3 .item i,
  .product-detail-s5 .item i {
    width: 40px;
    height: 40px;
  }

  .detail-s2 .item h3 {
    padding: 24px;
  }

  .download-page-s1 .item a {
    padding: 20px 120px 20px 20px;
  }

  .support-page-s2 li a {
    padding: 20px 120px 20px 0;
  }

  .index-s4 .left-block .item .hide p {
    line-height: 24px;
    height: 72px;
  }

  .index-s4 .right-block .item a {
    font-size: 14px;
  }

  .index-s5 .item {
    height: 100px;
  }

  .news-list-s1 form {
    height: 60px;
  }

  .news-list-s1 .item span {
    line-height: 30px;
  }

  .product-detail-s2 a {
    line-height: 40px;
  }

  .product-detail-s3 .item i {
    width: 54px;
    height: 54px;
  }

  .product-s1 .item h3 {
    line-height: 50px;
  }

  .recover-block form a.next {
    line-height: 50px;
  }

  .recover-block .box.code a {
    font-size: 14px;
  }

  .recover-block-4 a.btn,
  .success-block a.btn {
    width: 160px;
    line-height: 44px;
  }

  .login-block .box button,
  .register-block form button {
    height: 50px;
  }

  .support-page-s4 .box a {
    line-height: 50px;
  }

  .user-block-s2 .head-img {
    width: 160px;
    height: 160px;
    padding: 20px;
  }

  .user-block-s2 .head-img:after {
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
  }

  .about-index-s4 .top-block .year {
    font-size: 160px;
  }

  .achievement-list-s1 .item p {
    max-height: 90px;
  }

  .achievement-list-s1 .item .img-box {
    width: 400px;
    flex: 1 0 400px;
  }

  .about-contact-s1 .right-block {
    width: 270px;
    flex: 1 0 270px;
  }

  .about-recruit-s2 .txt-box {
    top: 40%;
  }

  .about-recruit-s2 .item .info-box .info:before {
    width: 30px;
    height: 30px;
  }

  .about-recruit-s2 .item a {
    width: 120px;
    line-height: 40px;
  }

  .search-s2 .item h3 {
    font-size: 18px;
  }

  .search-s2 .item .url {
    font-size: 14px;
  }

  .search-s2 .item span {
    font-size: 14px;
  }
}
@media screen and (max-width: 1366px) {
  .detail-page-s1 h3,
  .about-index-s1 .top-block h3,
  .about-index-s1 .bot-block .item span,
  .about-index-s2 h3,
  .about-index-s3 h3 {
    font-size: 40px;
  }

  .about-bidding-s1 .item .date span,
  .product-detail-s2 span {
    font-size: 32px;
  }

  .inner-tit h3,
  .index-tit h3,
  .product-detail-s2 h3,
  .support-page-s1 h3,
  .pop-support .top-block h3 {
    font-size: 28px;
  }

  .detail-s1 .top-block .title,
  .about-index-s2 .tip,
  .about-index-s3 .tip,
  .recover-block-4 h3,
  .success-block h3 {
    font-size: 20px;
  }

  .detail-page-s1 h4,
  .about-bidding-s1 .item h3,
  .about-contact-s2 .tab-tit .item h3,
  .index-tit span,
  .about-index-s4 .child h3,
  .about-index-s4 .bot-block .item.active h3,
  .about-recruit-s1 .item h3,
  .achievement-list-s1 .item h3,
  .case-list-s1 .item h3,
  .detail-s3 .section .tit,
  .cooperation-list-s1 .item .show h3,
  .cooperation-list-s1 .item .hide h3,
  .index-s2 .item h3,
  .index-s3 .item h3,
  .index-s4 .tit span,
  .index-s4 .left-block .item .hide h3,
  .product-detail-s3 .item h3,
  .product-detail-s5 .item h3,
  .user-page .tit span,
  .support-page-s2 .tab-tit span,
  .user-block-s2 h3 {
    font-size: 18px;
  }

  .about-culture-s1 .item h3,
  .about-honor-s1 .item h3,
  .about-index-s1 .top-block span,
  .about-index-s4 .bot-block .item h3,
  .about-index-s5 .item h3,
  .recover-block form a.next,
  .recover-block-3 .check h3,
  .recover-block-4 a.btn,
  .login-block .box button,
  .register-block form button,
  .success-block a.btn,
  .support-page-s3 .item h3,
  .user-block-s3 .box h3 {
    font-size: 16px;
  }

  .c-banner span,
  .detail-page-s1 .date,
  .suspension .left-box a,
  .suspension .right-box span,
  .suspension .right-box a,
  .suspension .right-box i,
  .about-bidding-s1 .item .date,
  .about-contact-s1 .item,
  .about-contact-s2 .map-cont .txt,
  .inner-tit p,
  .about-culture-s2 .item h3,
  .about-index-s1 .top-block .para,
  .about-index-s2 .para,
  .about-index-s3 .para,
  .detail-s3 .point a,
  .news-list-s1 .item h3,
  .product-s1 .item h3,
  .user-page .tip-signin,
  .recover-block .tip h3,
  .recover-block-4 p,
  .success-block p,
  .about-recruit-s2 .item .box h4,
  .pdservice-s1 .para {
    font-size: 15px;
  }

  .detail-page-s2 .other a,
  .about-bidding-s1 .item p,
  .about-contact-s1 .tip,
  .about-contact-s1 .ewm p,
  .about-contact-s3 .box input,
  .about-contact-s3 .box select,
  .about-contact-s3 .box textarea,
  .about-contact-s3 form button,
  .about-culture-s1 .item p,
  .about-index-s1 .bot-block .item em,
  .about-index-s1 .bot-block .item p,
  .about-index-s4 .child .para,
  .about-index-s5 a.more,
  .about-recruit-s1 .item p,
  .about-recruit-s2 .head-box span,
  .about-recruit-s2 .item .show span,
  .achievement-list-s1 .item p,
  .detail-page-s2 .right-block .img-box h4,
  .detail-page-s2 .right-block a.link,
  .case-list-s1 .item p,
  .detail-s3 .section .para,
  .cooperation-list-s1 .item .show p,
  .cooperation-list-s1 .item .hide p,
  .detail-s2 .para,
  .detail-s2 .item h3,
  .download-page-s1 .item a,
  .index-s2 .item p,
  .index-s3 .item p,
  .index-s3 a.more,
  .index-s4 .left-block .item .show h3,
  .index-s4 .left-block .item .hide p,
  .index-s4 .right-block .item span,
  .index-s6 span,
  .index-s6 a,
  .news-list-s1 form input,
  .news-list-s1 .item .date,
  .product-detail-s1 span,
  .product-detail-s1 a,
  .product-detail-s1 i,
  .product-detail-s2 .para,
  .product-detail-s2 a,
  .product-detail-s3 .item p,
  .product-detail-s5 .item p,
  .recover-block .box input[type="text"],
  .recover-block .box input[type="password"],
  .recover-block-3 .check p,
  .user-page .tit a,
  .login-block .box input,
  .login-block .box a.tofind,
  .register-block .box input[type="text"],
  .register-block .box input[type="password"],
  .support-page-s1 p,
  .support-page-s2 li a,
  .support-page-s3 .item .hide p,
  .support-page-s4 .box input,
  .support-page-s4 .box textarea,
  .support-page-s4 .box a,
  .support-page-s4 .tip,
  .support-page-s4 form button,
  .user-block-s3 .box p,
  .product-s1 a.more,
  .support-page-s1 a,
  .about-recruit-s2 .item .box .para,
  .about-recruit-s2 .item .info-box .info h3,
  .about-recruit-s2 .item a,
  .support-page-s2 a.more,
  .pop-support button,
  .pop-support input,
  .pop-support select {
    font-size: 14px;
  }

  .suspension .main {
    margin-top: -40px;
  }

  .suspension .left-box a {
    line-height: 80px;
  }

  .about-bidding-s1 .item .date {
    width: 150px;
    flex: 1 0 150px;
  }

  .about-index-s1 .bot-block .item i {
    width: 70px;
    height: 70px;
    flex: 1 0 70px;
  }

  .about-index-s4 .top-block .year {
    font-size: 140px;
  }

  .about-recruit-s2 .head-box span,
  .about-recruit-s2 .item .show span {
    line-height: 60px;
  }

  .about-recruit-s2 .bot-block {
    margin-top: -60px;
  }

  .achievement-list-s1 .item p {
    line-height: 24px;
    max-height: 72px;
  }

  .achievement-list-s1 .item .img-box {
    width: 340px;
    flex: 1 0 340px;
  }

  .detail-page-s2 .right-block {
    top: 100px;
    padding: 2vw;
  }

  .detail-page-s2 .right-block a.link {
    line-height: 40px;
  }

  .detail-s2 .item h3 {
    padding: 15px;
  }

  .download-page-s1 .item a {
    padding: 15px 120px 15px 15px;
  }

  .index-s1 .item {
    height: calc(100vh - 100px);
  }

  .index-s5 .item {
    height: 80px;
  }

  .product-detail-s3 .item i {
    width: 50px;
    height: 50px;
  }

  .product-detail-s3 .item .box {
    width: calc(100% - 60px);
  }

  .product-detail-s6 .tip {
    font-size: 20px;
  }

  .support-page-s2 li a {
    padding: 15px 120px 15px 0;
  }

  .support-page-s3 .item .hide {
    padding: 15px;
  }

  .support-page-s3 .item .hide i {
    width: 40px;
    height: 40px;
  }

  .about-recruit-s2 .item .info-box .info:before {
    width: 24px;
    height: 24px;
  }

  .search-s2 .item h3 {
    margin-top: 10px;
  }

  .search-s2 .item .url {
    margin-top: 10px;
  }

  .search-s2 .item span {
    margin-top: 15px;
  }
}
@media screen and (max-width: 1200px) {
  body {
    padding-top: 90px;
  }

  .index-s1 .item {
    height: calc(100vh - 90px);
  }
}
@media screen and (max-width: 1024px) {
  body {
    padding-top: 60px;
  }

  .c-banner .txt-box {
    padding: 0 5%;
  }

  .suspension .main {
    margin-top: 0;
    padding: 0 5%;
  }

  .suspension .left-box a {
    line-height: 60px;
  }

  .about-bidding-s1 {
    padding: 40px 5%;
  }

  .detail-page-s1 {
    padding: 80px 5%;
  }

  .detail-page-s2 .main {
    margin-top: 0;
  }

  .detail-s1 .top-block,
  .about-contact-s1,
  .about-contact-s3,
  .about-culture-s1,
  .about-culture-s2,
  .about-honor-s1,
  .about-index-s1 .top-block,
  .about-index-s1 .bot-block,
  .about-index-s2,
  .about-index-s3,
  .about-index-s4,
  .about-index-s5,
  .about-recruit-s1,
  .achievement-list-s1,
  .detail-page-s2,
  .case-list-s1,
  .cooperation-list-s1,
  .download-page-s1,
  .index-s2,
  .index-s3,
  .index-s4,
  .index-s5,
  .product-detail-s3,
  .product-detail-s4,
  .product-detail-s5,
  .product-s1,
  .support-page-s1,
  .support-page-s2,
  .support-page-s3,
  .support-page-s4,
  .user-block,
  .detail-s2 .top-block,
  .product-detail-s6,
  .pdservice-s1 {
    padding: 40px 5%;
  }

  .search-s2 {
    padding: 40px 5%;
  }

  .comm-share {
    display: none;
  }

  .about-contact-s2 .tab-tit {
    padding: 0 5%;
  }

  .about-culture-s2 .item h3 {
    transform: none;
  }

  .about-index-s1 .button {
    width: 40px;
    height: 40px;
  }

  .about-index-s1 .top-block .swiper {
    width: calc(50% + 40px);
    flex: 1 0 calc(50% + 40px);
  }

  .about-index-s4 .top-block .year {
    font-size: 100px;
  }

  .about-index-s5 .button,
  .index-s3 .button {
    display: none;
  }

  .about-index-s1 .btn {
    display: none;
  }

  .about-index-s1 .pagination,
  .about-index-s5 .pagination,
  .detail-s2 .pagination {
    display: block;
  }

  .about-recruit-s2 .bot-block {
    padding: 0 5%;
  }

  .about-recruit-s2 .txt-box {
    top: 30%;
  }

  .achievement-list-s1 .item .img-box {
    width: 300px;
    flex: 1 0 300px;
  }

  .case-list-s1 .item .txt-box,
  .index-s3 .item .txt-box,
  .product-detail-s5 .item .txt-box {
    position: static;
    opacity: 1;
    padding: 20px;
  }

  .case-list-s1 .item i,
  .index-s3 .item i,
  .product-detail-s5 .item i {
    display: none;
  }

  .case-list-s1 .item h3,
  .index-s3 .item h3,
  .product-detail-s5 .item h3 {
    margin-top: 0;
  }

  .case-list-s1 .item span,
  .index-s3 .item span,
  .product-detail-s5 .item span {
    display: none;
  }

  .cooperation-list-s1 .item .hide {
    display: none;
  }

  .detail-s2 .button {
    display: none;
  }

  .detail-s2 .swiper {
    margin: 20px 0 0;
  }

  .index-s1 .item {
    height: 50vw;
  }

  .index-s2 .item a {
    opacity: 1;
    visibility: visible;
  }

  .index-s2 .item span {
    opacity: 0;
    visibility: hidden;
  }

  .index-s3 .pagination {
    display: block;
  }

  .index-s6 {
    padding: 20px 5%;
  }

  .news-list-s1 {
    padding: 0 5% 40px;
  }

  .news-list-s1 .form {
    padding: 20px 0;
  }

  .product-detail-s1 {
    padding: 20px 5%;
  }

  .product-detail-s2 {
    padding: 0 5% 40px;
  }

  .product-detail-s5 .btns {
    display: none;
  }

  .product-detail-s5 .pagination {
    display: block;
  }

  .support-page-s3 .item .show {
    display: none;
  }

  .support-page-s3 .item .hide {
    opacity: 1;
  }

  .support-page-s3 .item .hide i {
    width: 30px;
    height: 30px;
  }

  .support-page-s3 .item .hide h3 {
    margin: 15px 0;
  }

  .support-page-s3 .item .hide p {
    overflow: hidden;
  }

  .support-page-s3 .items {
    margin: 4vw -5px 0;
  }

  .support-page-s3 .item {
    margin: 0 5px;
  }

  .pop-support .cont {
    padding: 0 5%;
  }
}
@media screen and (max-width: 768px) {
  .c-banner h3 {
    font-size: 24px;
  }

  .c-banner span {
    font-size: 14px;
    margin-top: 10px;
  }

  .c-banner img {
    width: 140%;
    margin-left: -20%;
  }

  .suspension .main {
    display: block;
  }

  .suspension .right-box {
    display: none;
  }

  .suspension .left-box a {
    font-size: 14px;
    line-height: 40px;
    margin-left: 0;
    margin-right: 12px;
  }
  .suspension .left-box a:last-of-type {
    margin-right: 0;
  }

  .suspension .left-box a:after {
    height: 2px;
  }

  .about-bidding-s1 .items {
    margin-bottom: 40px;
  }

  .about-bidding-s1 .item a {
    padding: 20px 0;
  }

  .about-bidding-s1 .item .date {
    width: 70px;
    flex: 1 0 70px;
    font-size: 12px;
  }

  .about-bidding-s1 .item .date span {
    font-size: 24px;
  }

  .about-bidding-s1 .item .txt {
    padding: 0 0 0 15px;
    width: calc(100% - 70px);
  }

  .about-bidding-s1 .item h3 {
    font-size: 16px;
  }

  .about-bidding-s1 .item p {
    font-size: 12px;
    line-height: 20px;
    height: 40px;
    margin-top: 10px;
  }

  .comm-page li {
    margin: 0 1px;
  }

  .comm-page li a {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 12px;
  }

  .comm-page li:first-of-type a,
  .comm-page li:last-of-type a {
    width: 40px;
  }

  .detail-page-s1 h4 {
    font-size: 16px;
  }

  .detail-page-s1 h3 {
    font-size: 20px;
  }

  .detail-page-s1 .date {
    font-size: 12px;
  }

  .detail-s1 .top-block {
    padding: 20px;
  }

  .detail-s1 .top-block .title {
    display: none;
  }

  .detail-page-s1 {
    padding: 40px 5%;
  }

  .detail-page-s2 .other {
    margin-top: 20px;
    padding: 10px 20px;
  }

  .detail-page-s2 .other-1 {
    display: block;
  }

  .detail-page-s2 .other-1 a {
    display: block;
    width: 100%;
    line-height: 24px;
    padding: 0 !important;
    text-align: left !important;
  }

  .about-contact-s1 .flex {
    display: block;
  }

  .about-contact-s1 .left-block {
    padding: 0;
  }

  .inner-tit h3 {
    font-size: 20px;
  }

  .inner-tit p {
    font-size: 14px;
  }

  .about-contact-s1 .items {
    margin-top: 20px;
  }

  .about-contact-s1 .box {
    display: block;
    margin-top: 15px;
  }

  .about-contact-s1 .box:nth-of-type(1) {
    margin: 0;
  }

  .about-contact-s1 .item {
    font-size: 14px;
  }

  .about-contact-s1 .right-block {
    width: 100%;
    margin-top: 20px;
    text-align: center;
  }

  .about-contact-s1 .ewm {
    width: 100px;
  }

  .about-contact-s1 .ewm:nth-of-type(2) {
    margin-left: 15px;
  }

  .about-contact-s2 .map {
    height: 260px;
  }

  .about-contact-s2 {
    padding-bottom: 0;
  }

  .about-contact-s2 .map-cont {
    width: 260px;
  }

  .about-contact-s2 .map-cont .img-box {
    display: none;
  }

  .about-contact-s2 .map-cont .txt {
    width: 260px;
    padding: 20px;
    font-size: 12px;
    line-height: 20px;
  }

  .about-contact-s2 .tab-tit {
    position: static;
    margin-top: 20px;
  }

  .about-contact-s2 .tab-tit .items {
    flex-wrap: wrap;
  }

  .about-contact-s2 .tab-tit .item {
    width: 33.33%;
    height: 60px;
  }

  .about-contact-s2 .tab-tit .item:before {
    height: 2px;
  }

  .about-contact-s2 .tab-tit .item h3 {
    font-size: 14px;
  }

  .about-contact-s2 .tab-tit .item p {
    font-size: 12px;
    margin-top: 0;
  }

  .index-tit h3 {
    font-size: 20px;
  }

  .index-tit span {
    font-size: 12px;
    padding-bottom: 0;
  }

  .index-tit span:before {
    display: none;
  }

  .index-tit span:after {
    display: none;
  }

  .about-contact-s3 form,
  .support-page-s4 form {
    display: block;
    margin-top: 20px;
  }

  .about-contact-s3 .box,
  .support-page-s4 .box {
    margin-top: 15px;
  }
  .about-contact-s3 .box:nth-of-type(1),
  .support-page-s4 .box:nth-of-type(1) {
    margin-top: 0;
  }

  .support-page-s4 .box a {
    line-height: 40px;
  }

  .about-contact-s3 .box input,
  .about-contact-s3 .box select,
  .support-page-s4 .box input,
  .pop-support input,
  .pop-support select {
    height: 40px;
  }

  .about-contact-s3 .box select {
    background-size: auto 8px;
  }

  .about-contact-s3 .box textarea,
  .support-page-s4 .box textarea {
    height: 120px;
  }

  .about-contact-s3 form button,
  .support-page-s4 form button,
  .pop-support button {
    margin-top: 15px;
    width: 120px;
  }

  .about-culture-s1 .items {
    margin: 20px 0 0;
    display: block;
  }

  .about-culture-s1 .item {
    width: 100%;
    margin: 20px 0 0;
  }
  .about-culture-s1 .item:nth-of-type(1) {
    margin-top: 0;
  }

  .about-culture-s1 .item .txt-box {
    padding: 20px;
  }

  .about-culture-s1 .item p {
    font-size: 14px;
    line-height: 24px;
  }

  .about-culture-s2 .items {
    display: block;
    margin: 20px 0 40px 0;
  }

  .about-culture-s2 .item {
    width: 100%;
    margin: 20px 0 0;
  }
  .about-culture-s2 .item:nth-of-type(1) {
    margin-top: 0;
  }

  .about-honor-s1 .items {
    margin: 20px -5px 0;
  }

  .about-honor-s1 .item {
    width: calc(50% - 10px);
    margin: 20px 5px 0;
  }
  .about-honor-s1 .item:nth-of-type(1), .about-honor-s1 .item:nth-of-type(2) {
    margin-top: 0;
  }

  .about-honor-s1 .item h3 {
    margin-top: 10px;
  }

  .about-index-s1 .top-block .flex {
    display: block;
  }

  .about-index-s1 .top-block .swiper {
    width: 100%;
  }

  .about-index-s1 .top-block .txt-box {
    padding: 0;
    margin-top: 20px;
  }

  .about-index-s1 .top-block h3,
  .about-index-s2 h3,
  .about-index-s3 h3 {
    font-size: 20px;
  }

  .about-index-s1 .top-block span {
    font-size: 12px;
  }

  .about-index-s1 .top-block .para,
  .about-index-s2 .para,
  .about-index-s3 .para {
    font-size: 14px;
    line-height: 24px;
    margin-top: 10px;
  }

  .about-index-s1 .top-block:before {
    width: 100%;
  }

  .about-index-s1 .bot-block .items {
    padding: 0;
    display: block;
  }

  .about-index-s1 .bot-block .item {
    margin-top: 20px;
  }
  .about-index-s1 .bot-block .item:nth-of-type(1) {
    margin-top: 0;
  }

  .about-index-s1 .bot-block .item i {
    width: 50px;
    height: 50px;
    flex: 1 0 50px;
  }

  .about-index-s1 .bot-block .item .txt {
    padding-left: 20px;
  }

  .about-index-s1 .bot-block .item span {
    font-size: 30px;
  }

  .about-index-s1 .bot-block .item em {
    transform: none;
  }

  .about-index-s2 .txt-box {
    width: 100%;
    padding: 0;
  }

  .about-index-s2 .tip,
  .about-index-s3 .tip {
    font-size: 16px;
    margin-top: 10px;
  }

  .about-index-s2 .img-box {
    width: 100%;
    margin: 20px auto 0;
  }

  .about-index-s3 .img-box {
    width: 100%;
  }

  .about-index-s3 .img-box:before {
    display: none;
  }

  .about-index-s3 .txt-box {
    width: 100%;
    margin-top: 20px;
    padding: 0;
  }

  .about-index-s4 .top-block .year {
    display: none;
  }

  .about-index-s4 .button {
    display: none;
  }

  .about-index-s4 .top-block {
    margin-top: 20px;
  }

  .about-index-s4 .tab-cont {
    width: 100%;
  }

  .about-index-s4 .child {
    padding: 20px;
  }

  .about-index-s4 .child .flex {
    display: block;
  }

  .about-index-s4 .child .img-box {
    width: 100%;
  }

  .about-index-s4 .child .txt-box {
    padding: 0;
    margin-top: 15px;
  }

  .about-index-s4 .child h3 {
    font-size: 16px;
  }

  .about-index-s4 .child .para {
    font-size: 14px;
    line-height: 20px;
    height: 100px;
  }

  .about-index-s4 .bot-block {
    margin-top: 20px;
  }

  .about-index-s4 .bot-block .item {
    padding: 30px;
  }

  .about-index-s4 .bot-block .item i {
    height: 16px;
  }

  .about-index-s4 .bot-block .item h3 {
    font-size: 12px;
  }

  .about-index-s4 .bot-block .item.active h3 {
    font-size: 12px;
  }

  .about-index-s5 .item h3 {
    margin-top: 10px;
  }

  .about-index-s5 .pagination {
    margin-top: 20px;
  }

  .about-index-s5 a.more {
    margin-top: 20px;
  }

  .about-recruit-s1 .items {
    display: block;
  }

  .about-recruit-s1 .item {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #f7f7f7;
    padding: 20px 0;
    text-align: left;
  }

  .about-recruit-s1 .item i {
    width: 40px;
    height: 40px;
    float: left;
  }

  .about-recruit-s1 .item h3 {
    font-size: 16px;
    margin: 0 0 0 60px;
  }

  .about-recruit-s1 .item p {
    margin: 10px 0 0 60px;
    max-width: none;
  }

  .about-recruit-s2 .bot-block {
    margin-top: 20px;
  }

  .about-recruit-s2 .txt-box {
    top: 50%;
    transform: translateY(-50%);
  }

  .about-recruit-s2 .head-box {
    padding: 0;
  }

  .about-recruit-s2 .head-box span,
  .about-recruit-s2 .item .show span {
    width: 50%;
    line-height: 40px;
  }
  .about-recruit-s2 .head-box span:nth-of-type(3), .about-recruit-s2 .head-box span:nth-of-type(4), .about-recruit-s2 .head-box span:nth-of-type(5),
  .about-recruit-s2 .item .show span:nth-of-type(3),
  .about-recruit-s2 .item .show span:nth-of-type(4),
  .about-recruit-s2 .item .show span:nth-of-type(5) {
    display: none;
  }

  .about-recruit-s2 .head-box span:nth-of-type(1),
  .about-recruit-s2 .item .show span:nth-of-type(1) {
    padding-left: 20px;
  }

  .about-recruit-s2 .items {
    padding: 0;
  }

  .about-recruit-s2 .item .hide {
    padding: 20px;
  }

  .about-recruit-s2 .item .box h4 {
    font-size: 14px;
  }

  .about-recruit-s2 .item .box .para {
    font-size: 12px;
    line-height: 20px;
    margin-top: 10px;
  }

  .about-recruit-s2 .item .info-box {
    padding: 15px 0;
    margin-bottom: 15px;
    flex-wrap: wrap;
  }

  .about-recruit-s2 .item .info-box .info {
    width: 50%;
    border: none;
    margin-top: 20px;
  }
  .about-recruit-s2 .item .info-box .info:nth-of-type(1), .about-recruit-s2 .item .info-box .info:nth-of-type(2) {
    margin-top: 0;
  }

  .about-recruit-s2 .item .info-box .info h3 {
    font-size: 12px;
  }

  .achievement-list-s1 .item a {
    display: block;
  }

  .achievement-list-s1 .item .img-box {
    width: 100%;
  }

  .achievement-list-s1 .item .txt-box {
    padding: 20px;
  }

  .achievement-list-s1 .item h3 {
    font-size: 16px;
  }

  .achievement-list-s1 .item p {
    font-size: 12px;
    line-height: 20px;
    margin-top: 10px;
    height: 60px;
  }

  .achievement-list-s1 .item {
    margin-top: 20px;
  }

  .detail-page-s2 .block {
    display: block;
  }

  .detail-page-s2 .left-block {
    width: 100%;
    margin: 0;
  }

  .detail-page-s2 .right-block {
    width: 100%;
    position: static;
    padding: 20px;
    margin-top: 20px;
  }

  .detail-page-s2 .right-block h3 {
    margin: 0 -20px;
    padding: 0 20px;
    font-size: 20px;
  }

  .detail-page-s2 .right-block .img-box {
    margin-top: 20px;
  }

  .detail-page-s2 .right-block .img-box h4 {
    padding: 40px 20px 20px;
  }

  .case-list-s1 .items {
    display: block;
    margin: 0 0 40px;
  }

  .case-list-s1 .item {
    width: 100%;
    margin: 20px 0 0;
  }
  .case-list-s1 .item:nth-of-type(1) {
    margin-top: 0;
  }

  .detail-s3 .point {
    display: none;
  }

  .detail-s3 .section:nth-of-type(1) {
    border: none;
  }

  .detail-s3 .top-block {
    padding: 0 20px 20px;
  }

  .detail-s3 .section .tit {
    font-size: 20px;
  }

  .detail-s3 .section .para {
    margin-top: 15px;
  }

  .detail-s3 .section .system-img {
    margin-top: 15px;
  }

  .detail-s3 .section .items {
    margin: 15px -5px 0;
  }

  .detail-s3 .section .item {
    width: calc(50% - 10px);
    margin: 10px 5px 0;
  }

  .cooperation-list-s1 .items {
    margin: 0;
    display: block;
  }

  .cooperation-list-s1 .item {
    width: 100%;
    margin: 20px 0 0;
  }
  .cooperation-list-s1 .item:nth-of-type(1) {
    margin-top: 0;
  }

  .cooperation-list-s1 .item .show {
    padding: 0 20px 20px;
  }

  .cooperation-list-s1 .item .show .icon {
    width: 60px;
    height: 60px;
    transform: translateY(-30px);
  }

  .cooperation-list-s1 .item .show i {
    background-size: auto 26px;
  }

  .cooperation-list-s1 .item .show h3 {
    font-size: 16px;
  }

  .cooperation-list-s1 .item .show p {
    font-size: 14px;
    line-height: 24px;
    margin-top: 10px;
  }

  .detail-s2 .top-block {
    padding: 20px;
  }

  .detail-s2 .item h3 {
    padding: 10px;
  }

  .detail-s2 .para.mt {
    margin-top: 20px;
  }

  .detail-s2 .pagination {
    margin-top: 20px;
  }

  .download-page-s1 .items {
    margin-bottom: 40px;
  }

  .download-page-s1 .item a {
    padding: 10px 80px 10px 0;
  }

  .download-page-s1 .item a span {
    right: 0;
  }

  .download-page-s1 .item a:before,
  .support-page-s2 li a:before {
    margin-right: 10px;
  }

  .index-s1 .button {
    display: none;
  }

  .index-s1 .ope ul li {
    width: 30px;
  }

  .index-s1 .ope ul li:before {
    height: 2px;
    bottom: 9px;
  }

  .index-s1 .ope ul li span {
    height: 2px;
    bottom: 9px;
  }

  .index-s1 .ope ul li.active:before {
    height: 4px;
  }

  .index-s1 .ope ul li.active span {
    height: 4px;
  }

  .index-s1 .ope {
    bottom: 10px;
  }

  .index-s2 .pagination {
    margin-top: 20px;
    display: block;
  }

  .index-s2 .items {
    margin-top: 20px;
  }

  .index-s2 .item .img {
    width: 30px;
    height: 30px;
  }

  .index-s2 .item h3 {
    font-size: 16px;
    margin-top: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .index-s2 .item p {
    font-size: 12px;
    line-height: 20px;
    height: 40px;
    margin-top: 10px;
  }

  .index-s2 .item .cont-box {
    padding: 0 10px;
  }

  .index-s2 .item a {
    width: 100px;
    line-height: 32px;
    font-size: 12px;
  }

  .index-s3 .pagination {
    margin-top: 20px;
  }

  .index-s3 a.more {
    margin-top: 20px;
  }

  .index-s4 .cont {
    margin-top: 20px;
  }

  .index-s4 .left-block {
    width: 100%;
    padding: 0;
  }

  .index-s4 .right-block {
    width: 100%;
    position: static;
    margin-top: 20px;
  }

  .index-s4 .tit span {
    font-size: 16px;
  }

  .index-s4 .tit span {
    padding: 0 0 15px 25px;
    background-size: auto 16px;
    background-position: left 4px;
  }

  .index-s4 .left-block .items {
    margin-top: 20px;
  }

  .index-s4 .left-block .item {
    width: 100%;
  }

  .index-s4 .pagination {
    display: block;
    margin-top: 20px;
  }

  .index-s4 .left-block .item .show h3 {
    font-size: 16px;
    padding: 15px;
  }

  .index-s4 .right-block .items {
    margin-top: 20px;
    padding: 20px;
    height: 270px;
  }

  .index-s5 .items {
    margin: 20px -5px 0;
  }

  .index-s5 .item {
    width: calc(33.33% - 10px);
    height: 60px;
    margin: 10px 5px 0;
  }
  .index-s5 .item:nth-of-type(1), .index-s5 .item:nth-of-type(2), .index-s5 .item:nth-of-type(3) {
    margin-top: 0;
  }

  .index-s6 span {
    font-weight: bold;
  }

  .news-list-s1 form {
    height: 40px;
  }

  .news-list-s1 form button {
    width: 50px;
    background-size: auto 20px;
  }

  .news-list-s1 .items {
    display: block;
    margin: 0 0 40px;
  }

  .news-list-s1 .item {
    width: 100%;
    margin: 20px auto 0;
  }
  .news-list-s1 .item:nth-of-type(1) {
    margin-top: 0;
  }

  .news-list-s1 .item .txt-box {
    padding: 20px;
  }

  .news-list-s1 .item .date {
    font-size: 12px;
  }

  .news-list-s1 .item h3 {
    font-size: 16px;
    margin-top: 10px;
  }

  .news-list-s1 .item span {
    font-size: 12px;
    margin-top: 10px;
    line-height: 24px;
  }

  .product-detail-s1 {
    display: none;
  }

  .product-detail-s2 {
    padding: 40px 5%;
  }

  .product-detail-s2 .flex {
    display: block;
  }

  .product-detail-s2 .img-box {
    width: 100%;
    height: 50vw;
  }

  .product-detail-s2 .txt-box {
    padding: 0;
    margin-top: 20px;
  }

  .product-detail-s2 span {
    font-size: 16px;
  }

  .product-detail-s2 h3 {
    font-size: 20px;
    margin-top: 10px;
  }

  .product-detail-s2 .para {
    font-size: 14px;
    line-height: 24px;
    margin-top: 10px;
  }

  .product-detail-s2 .btn {
    margin-top: 20px;
  }

  .product-detail-s3 .items {
    display: block;
    margin-top: 20px;
  }

  .product-detail-s3 .item {
    width: 100%;
    padding: 20px;
    margin: 20px 0 0;
  }
  .product-detail-s3 .item:nth-of-type(1) {
    margin-top: 0;
  }

  .product-detail-s3 .item i {
    width: 40px;
    height: 40px;
  }

  .product-detail-s3 .item .box {
    padding-left: 20px;
  }

  .product-detail-s3 .item h3 {
    font-size: 16px;
  }

  .product-detail-s4 .table {
    margin-top: 20px;
  }

  .product-detail-s5 .swiper {
    margin-top: 20px;
  }

  .product-detail-s5 .pagination {
    margin-top: 20px;
  }

  .product-detail-s6 .swiper {
    margin-top: 20px;
  }

  .product-detail-s6 .items {
    border-width: 2px;
  }

  .product-detail-s6 .button {
    width: 30px;
    height: 30px;
    background-size: auto 14px;
  }

  .product-detail-s6 .tip {
    font-size: 16px;
    margin-top: 20px;
  }

  .pdservice-s1 .para {
    font-size: 14px;
    line-height: 24px;
    margin-top: 20px;
  }

  .pdservice-s1 .img-box {
    margin-top: 20px;
  }

  .case-list-s1 .item h3,
  .index-s3 .item h3,
  .product-detail-s5 .item h3 {
    font-size: 16px;
  }

  .case-list-s1 .item p,
  .index-s3 .item p,
  .product-detail-s5 .item p {
    font-size: 12px;
  }

  .product-s1 .items {
    display: block;
    margin: 20px 0 40px;
  }

  .product-s1 .item {
    width: 100%;
    margin: 20px 0 0;
  }
  .product-s1 .item:nth-of-type(1) {
    margin-top: 0;
  }

  .product-s1 .item .img-box {
    height: 65vw;
  }

  .product-s1 .item h3 {
    font-size: 16px;
  }

  .support-page-s1 h3 {
    font-size: 20px;
  }

  .support-page-s1 .txt-box {
    width: 100%;
    padding: 0;
  }

  .support-page-s1 p:before {
    width: 24px;
    height: 2px;
    margin: 15px 0;
  }

  .support-page-s1 .img-box {
    width: 100%;
    margin-top: 20px;
  }

  .about-index-s5 a.more,
  .index-s3 a.more,
  .product-s1 a.more,
  .support-page-s1 a,
  .support-page-s2 a.more {
    width: 120px;
  }

  .support-page-s2 .tab-wrap {
    margin-top: 20px;
  }

  .support-page-s2 .tab-tit {
    padding: 0 20px;
  }

  .support-page-s2 .tab-tit span {
    font-size: 14px;
    margin-left: 10px;
    padding: 10px;
  }

  .support-page-s2 .tab-cont {
    padding: 20px;
  }

  .support-page-s2 li {
    width: 100%;
  }

  .support-page-s2 ul:after {
    display: none;
  }

  .support-page-s2 li a {
    padding: 10px 80px 10px 0;
  }

  .support-page-s2 li a span {
    right: 0;
  }

  .support-page-s2 a.more {
    margin-top: 20px;
  }

  .support-page-s3 .items {
    margin: 20px 0 0;
    flex-wrap: wrap;
  }

  .support-page-s3 .item {
    width: 100%;
    margin: 20px 0 0;
  }
  .support-page-s3 .item:nth-of-type(1) {
    margin-top: 0;
  }

  .pop-support .top-block {
    padding: 20px 0;
  }

  .pop-support .close {
    width: 24px;
    height: 24px;
    right: 10px;
    top: 10px;
  }

  .pop-support .top-block h3 {
    font-size: 20px;
  }

  .pop-support .bot-block {
    padding: 20px 0;
  }

  .pop-support .scroll {
    padding: 0 20px;
    max-height: 340px;
    overflow: auto;
  }

  .pop-support form {
    display: block;
  }

  .pop-support .box {
    width: 100%;
    margin: 10px 0 0;
  }
  .pop-support .box:nth-of-type(1) {
    margin-top: 0;
  }

  .recover-block {
    padding: 20px;
  }

  .user-page .tit {
    padding-bottom: 15px;
  }

  .user-page .tit span {
    font-size: 20px;
  }

  .user-page .tip-signin {
    margin-top: 20px;
    font-size: 14px;
  }

  .recover-block-1 form {
    margin-top: 20px;
  }

  .recover-block .box input[type="text"], .recover-block .box input[type="password"] {
    height: 40px;
  }

  .recover-block form a.next {
    margin-top: 20px;
    line-height: 40px;
  }

  .recover-block .tip {
    margin-top: 20px;
  }

  .recover-block-2 form, .recover-block-3 form {
    margin-top: 20px;
  }

  .recover-block .box.code a {
    line-height: 40px;
    width: 120px;
  }

  .recover-block .box.code {
    padding-right: 20px;
  }

  .recover-block-3 .check {
    margin-top: 20px;
  }

  .recover-block-4 p:before {
    width: 36px;
    height: 36px;
    margin: 20px auto;
  }

  .recover-block-4 a.btn {
    margin-top: 20px;
  }

  .login-block .top-block {
    display: block;
    border-radius: 10px;
  }

  .recover-block {
    border-radius: 10px;
  }

  .login-block .left-box {
    width: 100%;
    height: 120px;
  }

  .login-block .right-box {
    width: 100%;
    padding: 20px;
  }

  .login-block form {
    margin-top: 20px;
  }

  .login-block .box input {
    height: 40px;
  }

  .login-block .box a.yzm {
    width: 100px;
  }

  .login-block .box a.yzm img {
    height: 40px;
  }

  .login-block .box:nth-of-type(3) {
    padding-right: 110px;
  }

  .login-block .box button {
    height: 40px;
  }

  .login-block .tip {
    margin-top: 20px;
    font-size: 14px;
  }

  .register-block {
    padding: 20px;
    border-radius: 10px;
  }

  .register-block form {
    margin-top: 20px;
  }

  .register-block form button {
    margin-top: 20px;
    height: 40px;
  }

  .register-block .box input[type="text"], .register-block .box input[type="password"] {
    height: 40px;
  }

  .register-block .box:nth-of-type(1) span {
    width: 60px;
    line-height: 40px;
  }

  .register-block .box:nth-of-type(1) {
    padding-left: 60px;
  }

  .register-block .box:nth-of-type(2) {
    padding-right: 120px;
  }

  .register-block .box:nth-of-type(2) a {
    width: 120px;
    line-height: 40px;
  }

  .success-block h3:before {
    width: 36px;
    height: 36px;
  }

  .success-block p {
    margin-top: 20px;
    font-size: 14px;
    line-height: 24px;
  }

  .success-block a.btn {
    margin-top: 20px;
  }

  .register-block .box,
  .login-block .box,
  .recover-block .box {
    margin-top: 15px;
  }

  .recover-block-4 p {
    font-size: 14px;
    line-height: 24px;
  }

  .recover-block .tip h3 {
    font-size: 16px;
  }

  .user-block-s1 {
    display: none;
  }

  .user-block-s2 {
    margin: 0;
    border-radius: 10px;
    padding: 20px 20px 40px;
  }

  .user-block-s2 .head-img {
    width: 120px;
    height: 120px;
  }

  .user-block-s2 h3 {
    font-size: 16px;
    margin-top: 10px;
  }

  .user-block-s3 .box {
    margin-top: -20px;
    border-radius: 10px;
    padding: 20px;
    width: 90%;
  }

  .user-block-s3 .box .txt {
    margin-left: 10px;
  }

  .search-s2 .item {
    margin-bottom: 20px;
  }

  .search-s2 .item {
    border-bottom-width: 2px;
  }

  .search-s2 .item a {
    padding: 20px 0;
  }

  .search-s2 .item .date {
    font-size: 12px;
  }

  .search-s2 .item h3 {
    font-size: 16px;
  }

  .search-s2 .item .url {
    font-size: 12px;
    line-height: 18px;
  }

  .search-s2 .tip {
    text-align: center;
    font-size: 16px;
  }
}

/*# sourceMappingURL=bundle.css.map */
