@charset "utf-8";

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  -webkit-text-size-adjust: none;
}

:root {
  /* ====== Transition ====== */
  --tran-03: all 0.3s ease;
  --tran-04: all 0.4s ease;
  --tran-05: all 0.5s ease;
  --tran-06: all 0.6s ease;
}

body {
  font-family: "PingFang SC", "opensans", "Arial",
    sans-serif;
  font-size: 16px;
  min-height: 100vh;
  background: #ffffff;
}

body.hd {
  overflow: hidden;
}

input,
textarea,
select,
button {
  border: none;
  outline: none;
  resize: none;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  font-family: "PingFang SC", "opensans", "Arial",
}

button {
  cursor: pointer;
}

a {
  transition: all .25s ease;
}

ul,
ol,
li {
  list-style: none;
}

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

a:hover {
  text-decoration: none;
}

a:focus {
  outline: none;
}

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

i,
b {
  font-style: normal;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

/* 清除默认样式 */
.swiper-button-next,
.swiper-button-prev {
  outline: none;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  font-size: 0.833vw;
  font-weight: 400;
  color: #b5b5b5;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  /* Firefox 19+ */
  font-size: 0.833vw;
  font-weight: 400;
  color: #b5b5b5;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  /* IE 10+ */
  font-size: 0.833vw;
  font-weight: 400;
  color: #b5b5b5;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
  /* Firefox 18- */
  font-size: 0.833vw;
  font-weight: 400;
  color: #b5b5b5;
}

/* 滚动条 */
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

::-webkit-scrollbar-button:vertical {
  display: none;
}

::-webkit-scrollbar-track:vertical {
  background-color: #ffffff;
}

::-webkit-scrollbar-track-piece {
  background: #e3e3e3;
}

::-webkit-scrollbar-thumb:vertical {
  background-color: #009B4C;
  border-radius: 30px;
}

/* 浮动 */
.fl {
  float: left;
}

.fr {
  float: right;
}

/* 清除 */
.ov {
  overflow: hidden;
}

/* 隐藏 */
.op0 {
  opacity: 0;
  visibility: hidden;
}

.op1 {
  opacity: 1;
  visibility: visible;
}

/* flex布局 */
.fl-f {
  display: flex;
  display: -webkit-flex;
}

/* flex上下布局 */
.fl-ac {
  display: flex;
  display: -webkit-flex;
  align-items: center;
}

.fl-as {
  display: flex;
  display: -webkit-flex;
  align-items: flex-start;
}

.fl-ae {
  display: flex;
  display: -webkit-flex;
  align-items: flex-end;
}

/* flex左右布局 */
.fl-jc {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
}

.fl-jb {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
}

.fl-ja {
  display: flex;
  display: -webkit-flex;
  justify-content: space-around;
}

.fl-js {
  display: flex;
  display: -webkit-flex;
  justify-content: flex-start;
}

.fl-je {
  display: flex;
  display: -webkit-flex;
  justify-content: flex-end;
}

/* flex上下左右布局 */
.fl-cc {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
}

.fl-cb {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: space-between;
}

.fl-ca {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: space-around;
}

.fl-cs {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: flex-start;
}

.fl-ce {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: flex-end;
}

.fl-sc {
  display: flex;
  display: -webkit-flex;
  align-items: flex-start;
  justify-content: center;
}

.fl-sa {
  display: flex;
  display: -webkit-flex;
  align-items: flex-start;
  justify-content: space-around;
}

.fl-sb {
  display: flex;
  display: -webkit-flex;
  align-items: flex-start;
  justify-content: space-between;
}

.fl-ss {
  display: flex;
  display: -webkit-flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.fl-se {
  display: flex;
  display: -webkit-flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.fl-ea {
  display: flex;
  display: -webkit-flex;
  align-items: flex-end;
  justify-content: space-around;
}

.fl-eb {
  display: flex;
  display: -webkit-flex;
  align-items: flex-end;
  justify-content: space-between;
}

.fl-es {
  display: flex;
  display: -webkit-flex;
  align-items: flex-end;
  justify-content: flex-start;
}

.fl-ee {
  display: flex;
  display: -webkit-flex;
  align-items: flex-end;
  justify-content: flex-end;
}

/* flex自适应布局 */
.fl-fw {
  display: flex;
  flex-wrap: wrap;
}

.fl-fc {
  display: flex;
  flex-direction: column;
}

/* 手机端按钮 */
.toggle {
  display: none;
  padding: 0 0;
  background-color: transparent;
  border: none !important;
  z-index: 100;
}

.toggle .line-top,
.toggle .line-middle,
.toggle .line-bottom {
  display: block;
  width: 24px;
  height: 3px;
  background: #009B4C;
  margin: 5px 0;
  transition: 0.4s;
}

.open.toggle .line-top,
.open.toggle .line-middle,
.open.toggle .line-bottom {
  background: #009B4C;
}

.open .line-top {
  -webkit-transform: rotate(45deg) translate(4px, 9px);
  transform: rotate(45deg) translate(4px, 9px);
}

.open .line-middle {
  opacity: 0;
}

.open .line-bottom {
  -webkit-transform: rotate(-45deg) translate(2px, -7px);
  transform: rotate(-45deg) translate(2px, -7px);
}

.zw {
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  background: none !important;
  box-shadow: none !important;
  border: none !important;
}

.zw::after,
.zw::before {
  display: none !important;
}

.fuild {
  width: 100%;
}

.wrap {
  width: 100%;
  padding: 0 16.6667vw;
}

.row {
  width: 100%;
}

/* 公共样式 */
.more {
  width: 10.352083vw;
  height: 2.60417vw;
  background: #FFFFFF;
  border-radius: 0px;
  color: #009B4C;
  font-size: 0.8333vw;
  transition: all ease 0.3s;
}

.more1 {
  width: 9.375vw;
}

.more:hover {
  background: #ffffff;
}

.tit {
  width: 100%;
  text-align: center;
}

.tit h3 {
  max-width: 45.573vw;
  width: 100%;
  font-size: 1.770833vw;
  font-weight: bold;
  margin: 0 auto;
  text-transform: capitalize;
  position: relative;
}

.tit h3:after {
  content: '';
  position: absolute;
  width: 1.041667vw;
  height: 0.2083vw;
  background: #009B4C;
  margin: auto;
  left: 0;
  right: 0;
  bottom: -0.925vw;

}

.tit p {
  max-width: 36.979vw;
  width: 100%;
  font-size: 1.042vw;
  font-weight: 400;
  line-height: 1.5;
  color: #121212;
  margin: 1.302vw auto 0;
}

.tit1 {
  width: 100%;
  text-align: center;
}

.tit1 h3 {
  max-width: 45.573vw;
  width: 100%;
  font-size: 2.396vw;
  font-weight: bold;
  color: #121212;
  margin: 0 auto;
  text-transform: capitalize;
}

.tit1 h4 {
  max-width: 39.844vw;
  width: 100%;
  font-size: 1.875vw;
  font-weight: bold;
  color: #121212;
  margin: 3.125vw auto 0;
}

.tit1 b {
  color: #0175b0;
  font-size: 3.021vw;
}

.tit1 h6 {
  max-width: 51.563vw;
  width: 100%;
  font-size: 1.458vw;

  font-weight: bold;
  color: #5e5e5e;
  margin: 1.302vw auto 0;
}

.tit1 p {
  max-width: 36.979vw;
  width: 100%;
  font-size: 0.833vw;
  font-family: "Gotham Pro";
  font-weight: 400;
  line-height: 1.5;
  color: #5e5e5e;
  margin: 1.302vw auto 0;
}

/* 公共头部 */
.header {
  position: relative;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  padding: 0;
  background: transparent;
  transition: all ease 0.5s;
  border-bottom: 1px solid #d4d4d4;
}

.header.on {
  position: fixed;
  padding: 0;
  background: #ffffff;
}

.header.on .top_head {
  padding: 0.25vw 0;
}

.header .row {
  padding: 0 6.25vw;
}

.header .logo img {
  width: 30.46875vw;
}

.header .menu .link {
  margin: 0 3.2vw;
  padding: 1.3541vw 0;
  position: relative;
}

.header .link>a {
  font-size: 0.9375vw;
  font-weight: 500;
  color: #000000;
  text-transform: capitalize;
}

.header .link>a:hover {
  color: #009B4C;
}

.header .link .downmenu {
  position: absolute;
  top: -500vw;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  max-width: 11.458vw;
  width: max-content;
  text-align: center;
  background: #ffffff;
  box-shadow: 0px 3px 40px rgba(48, 116, 171, 0.17);
  border-radius: 10px;
  transition: opacity ease 0.5s;
}

.header .link:hover .downmenu {
  top: 100%;
  opacity: 1;
  padding-bottom: 0.5vw;
}

.header .downmenu>a {
  width: max-content;
  min-width: 100%;
  max-width: 100%;
  display: block;
  font-size: 0.8333vw;
  font-weight: 500;
  color: #000000;
  padding: 0.5vw 1.302vw;
  background: #ffffff;
  transition: all ease 0.3s;
}

.header .downmenu>a:last-child {
  margin: 0;
}

.header .downmenu>a:hover {
  color: #009B4C;
}

.header .trial {
  width: 13.281vw;
  height: 3.125vw;
  background: #ffffff;
  box-shadow: 0px 3px 40px rgba(0, 0, 0, 0.1);
  border-radius: 25px;
}

.header .trial img {
  width: 0.938vw;
  height: 0.938vw;
  margin-right: 0.625vw;
}

.header .trial span {
  font-size: 0.938vw;

  font-weight: bold;
  color: #0175b0;
}

/* 公共底部 */
.footer {
  width: 100%;
  background: #EBEBEB;
}

.ercode p {
  font-size: 0.8333vw;
  margin-bottom: 1vw;
  color: #696A6D;
}

.footer .footA {
  width: 100%;
  padding: 3.125vw 0 0;
}

.footer .f-logo img {
  width: 25.46875vw;
}

.footer .footB {
  width: 100%;
  align-items: flex-end;
  padding: 1.97917vw 0 0.8333vw;
}

.footer .footB dl {
  margin-right: 8.6979vw;
}

.footer .footB .col-l {
  width: 40%;
}

.footer .footB .col-r {
  width: 60%;
}

.footer .icon {
  width: 100%;
  margin: 0 0 1.042vw;
}

.footer .ico {
  width: 0.938vw;
  height: 0.938vw;
  margin-right: 0.521vw;
}

.footer .cont h2 {
  font-size: 0.9375vw;
  color: #009B4C;
  margin-bottom: 0.8333vw;
  font-weight: bold;
}

.footer .cont li {
  margin-bottom: 0.8333vw;
  color: #696A6D;
}

.footer .cont a {
  font-size: 0.8333vw;
  color: #696A6D;
  font-weight: normal;
}

.copyright {
  color: #737373;
  font-size: 0.8333vw;
  border-top: 1px solid #CFCFCF;
  font-weight: normal;
  padding: 0.8333vw 0;
}

.footer dl dd,
.footer dl dt {
  margin: 0 0 1.042vw;
}

.footer dl>dd:last-child {
  margin: 0;
}

.footer dl dt>a {
  font-size: 0.833vw;
  color: #696A6D;
  font-weight: normal;
}

.footer dl dd>a {
  font-size: 0.8333vw;
  font-weight: 400;
  color: #ffffff;
  transition: all ease 0.3s;
}

.footer a:hover {
  text-decoration: underline;
  color: #009B4C;
}

.footer dl dt>a:hover {
  text-decoration: none;
}

.copyright a {
  margin-left: 20px;
}

.footer .footC {
  width: 100%;
  padding: 1.823vw 0;
  text-align: center;
}

.footer .footC p,
.footer .footC a {
  font-size: 0.833vw;
  font-family: "Gotham Pro";
  font-weight: 400;
  color: #ffffff;
}

.footer .footC a {
  margin: 0 0.781vw;
}

/* 首页 */
.bj {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.bj img {
  max-width: 100%;
  width: 100%;
}

.bj0 {
  width: 31.25vw;
  left: 0;
  top: 3.125vw;
}

.bj1 {
  width: 33.333vw;
  left: 0;
  top: 16.406vw;
}

.bj2 {
  width: 29.896vw;
  right: 0;
  top: 0;
}

.bj3 {
  width: 52.083vw;
  right: 0;
  top: 0;
}

.bj4 {
  width: 24.74vw;
  left: 0;
  top: 0;
}

.bj5 {
  width: 37.76vw;
  right: 0;
  top: 0;
}

.bj6 {
  width: 37.5vw;
  right: 0;
  top: 0;
}

.bj7 {
  width: 47.396vw;
  right: 0;
  top: 0;
}

.home1 {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.home1 .fuild {
  /*padding: 0 4.427vw 0 13.542vw;*/
}

.home1 .intr {
  width: 37%;
  position: absolute;
  left: 13.542vw;
  top: 50%;
  transform: translateY(-50%);
}

.home1 .intr h1 {
  font-size: 3.333vw;

  font-weight: bold;
  color: #121212;
  line-height: 3.646vw;
  margin: 0 0 1.042vw;
}

.home1 .intr b {
  color: #0175b0;
}

.home1 .intr h2 {
  font-size: 1.875vw;
  font-weight: 400;
  color: #ffffff;
  line-height: 3.125vw;
  text-align: left;
}

.banner_Swiper {
  position: relative;
}

.banner_Swiper .swiper-pagination {
  position: absolute;
  text-align: right;
  bottom: 1.927vw !important;
}

.banner_Swiper .swiper-pagination-bullet {
  background: transparent;
  margin-right: 2.34275vw !important;
  color: #000000;
  opacity: .44;
  width: auto;
  height: auto;
  border-radius: 0;
  font-size: 0.9vw;
}

.banner_Swiper .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
  border-bottom: 2px solid #000000;
}

.home1 .intr .more {
  margin: 2.083vw 0 0;
}

.more:hover {
  background: #009B4C;
  color: #ffffff;
}

.home1 .pic {
  width: 59%;
}

.text-image {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.text-image .col {
  width: 100%;
  position: relative;
  margin: 0 0 6.25vw;
}

.text-image .pic {
  width: 37.5vw;
}

.text-image .intr {
  width: 26.979167vw
}

.text-image .col:nth-child(2n) .intr {
  left: auto;
  right: 13.542vw;
}

.text-image .intr h4 {
  font-size: 1.770833vw;
  font-weight: 600;
  line-height: 1.7;
  margin-bottom: 2.395833vw;
  position: relative;
}

.text-image .intr h4:after {
  content: '';
  width: 20px;
  height: 4px;
  background: #009B4C;
  position: absolute;
  left: 0;
  bottom: -15px;
  display: inline-block;
}

.text-image .intr h6 {
  font-size: 1.458vw;

  font-weight: bold;
  color: #5e5e5e;
  position: relative;
  margin: 0 0 1.302vw;
  padding-left: 3.125vw;
}

.text-image .intr h6::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.208vw;
  width: 1.563vw;
  height: 1.563vw;
  background-image: url(../image/gou.svg);
  background-repeat: no-repeat;
  background-size: cover;
}

.text-image .intr p {
  font-size: 0.8333vw;
  font-weight: normal;
  line-height: 1.5;
  color: #ABABAB;
  margin: 0;
  margin-top: 7px;
  width: 18.4375vw;
}

.text-image .intr .more {
  margin: 0.26vw 0 0;
}

.home3 {
  width: 100%;
  background: url(../image/bg03.jpg);
  background-size: cover;
  padding: 5vw 0;
}

.home3 .row {
  margin: 2vw 0 0;
  margin-left: -1.2vw;
  margin-right: -1.2vw;
}

.home3 .intr:hover .dt_item:first-of-type .dt_title {
  color: #009B4C;
}

.home3 .intr:hover h2 a {
  background: url(../image/rightc.svg);
}

.home3 .intr h2 {
  font-size: 1.25vw;
  font-weight: bold;
  color: #000000;
  padding: 0.5vw 0;
  position: relative;
  display: flex;
  align-items: center;
  transition: all .25s ease;
  justify-content: space-between;
}

.home3 .intr h2 a {
  background: url(../image/right_o.svg);
  width: 1.97917vw;
  height: 1.97917vw;
  background-size: cover;
  display: inline-block;
  transition: all .25s ease;
}

.dt_item {
  display: block;
  padding: 0.8333vw 0 0.9441vw;
  border-bottom: 1px solid #E4E4E4;
}

.dt_title {
  font-size: 0.9375vw;
  color: #5B5B5B;
  margin-bottom: 0.41vw;
  font-weight: bold;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dt_title:hover {
  color: #009B4C;
}

.dt_item:first-of-type .dt_title {
  color: #000000;
  margin-top: 0.677vw;
  font-weight: bold;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dt_item:first-of-type {
  padding-top: 0;
}

.dt_title_info {
  font-size: 0.8333vw;
  font-weight: 100;
  color: #666666;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;

}

.sr_card {
  padding: 0 1.2vw;
  border-right: 1px solid #D1D1D1;
  width: 33.333%;
}

.sr_card:last-child {
  border-right: 0;
}

.home3 .intr p {
  font-size: 0.833vw;
  font-family: "Gotham Pro";
  font-weight: 400;
  color: #000000;
}

.home4 {
  width: 100%;
  padding: 5.4687vw 0;
  position: relative;
}

.home4 .row {
  position: relative;
  display: flex;


}

.home4 .swiper-container {
  /*width: 65%;*/
  width: 43.75vw;
  height: 22.08vw;
}

.form_result {
  width: 35%;
  box-shadow: 0px 3px 10px 1px rgba(0, 0, 0, 0.1);
}

.hd_item {
  display: block;
  margin-bottom: 0.9896vw;
  position: relative;
  border-radius: 0.625vw;
  overflow: hidden;
}

.hd_item:after {
  content: '';
  width: 100%;
  height: 100%;
  background: #009B4C;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 1;
}

.hd_item:hover:after {
  opacity: 1;
}

.hd_item i {
  background: #ffffff url(../image/right.svg);
  width: 38px;
  height: 38px;
  border-radius: 38px;
  background-size: 12px 11px;
  background-repeat: no-repeat;
  display: inline-block;
  background-position: center;
  margin-top: 13px;
  opacity: 0;
  transition: all .4s ease;
}

.hd_item:hover i {
  opacity: 1;
}

.hd_item img {
  width: 100%;
}

.hd_item>div {
  position: absolute;
  top: 2.0833vw;
  right: 3.28125vw;
  color: #ffffff;
  z-index: 2;
}

.hd_item strong {
  display: block;
  font-size: 1.25vw;
  margin-bottom: 0.5208vw;
}

.hd_item em {
  display: block;
  font-style: normal;
  font-size: 0.8333vw;
}

.home4 .more {
  margin: 2.083vw auto 0;
}

.home4 .box {
  position: relative;
}

.home4 .label {
  width: 100%;
  margin: 0 0 1.1458vw;
  position: relative;
}

.home4 .box p {
  font-size: 0.9357vw;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  background: rgba(255, 255, 255, .3);
  width: 100%;
  padding: 0.8333vw 1.667vw;
  color: #ffffff;
  text-align: left;
}

.form_result h2 {
  font-size: 1.7vw;
  text-align: center;
  margin-bottom: 1.6583vw;
  position: relative;
  font-weight: bold;
}

.form_result h2:after {
  content: '';
  position: absolute;
  width: 1.041667vw;
  height: 0.2083vw;
  background: #009B4C;
  margin: auto;
  left: 0;
  right: 0;
  bottom: -0.925vw;
}

.form_result {
  padding: 1.5625vw 2.8125vw 2.96875vw;
}

.swiper-box {
  position: absolute;
  right: 1.667vw;
  bottom: 1.1333vw;
  z-index: 50;
  display: flex;
}

.swiper-btn {
  /* width: 2.344vw;
  height: 2.344vw;
  background: #ffffff;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 50%;*/
  cursor: pointer;
  transition: all ease 0.3s;
}

.swiper-btn i {
  font-size: 0.833vw;
  font-weight: bold;
  color: #121212;
  transition: all ease 0.3s;
}

.swiper-btn:hover i {
  color: #bcbcbc;
}

.swiper-num {
  margin: 1.042vw 0;
}

.swiper-num span {
  font-size: 0.729vw;
  font-weight: 400;
  color: #bcbcbc;
}

.home5 {
  width: 100%;
  padding: 7.813vw 0 4.48875vw;
  background: #ffffff;
}

.home5 .wrap {
  padding: 0 9.2vw;
}

.home5 .row {
  position: relative;
  margin: 3.646vw 0 0;
}

.col-l {
  width: 32.999vw;
}

.col-r {
  width: 22.9vw;
}

.home5 .pic {
  width: 15.104vw;
  height: 15.104vw;
  background: #ffffff;
  box-shadow: 0px 3px 99px rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  margin: 0 auto;
}

.home5 .pic img {
  width: 10.417vw;
}

.home5 .ev {
  width: 19.271vw;
}

.home5 .ev img {
  max-width: 100%;
  width: 100%;
}

.home5 .ev1 {
  position: absolute;
  top: 0;
  left: 0;
}

.home5 .ev2 {
  position: absolute;
  top: 0;
  right: 0;
}

.home5 .ev3 {
  margin: 2.604vw auto 0;
}

.home6 {
  width: 100%;
  padding: 5.46875vw 0;
  background: url(../image/bg02.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.home6 .intr {
  width: 34.16667vw;
  backdrop-filter: saturate(150%) contrast(50%) blur(8px);
  -webkit-backdrop-filter: saturate(150%) contrast(50%) blur(8px);
}

.home6 .form {
  display: flex;
  flex-flow: column;
  justify-content: center;
  width: 31.2667vw;
  padding: 0 2.8125vw;
  backdrop-filter: saturate(150%) contrast(50%) blur(3px);
  -webkit-backdrop-filter: saturate(150%) contrast(50%) blur(3px);

  height: 21.61458vw;
}

.wd_ul {
  display: flex;
  justify-content: space-between;
}

.wd_item {
  display: flex;
  align-items: center;
  padding: 0.5208vw 0.8333vw;
  color: #ffffff;
  position: relative;
  transition: all .35s ease;
}

.wd_list {
  margin-top: 1.041667vw;
}

.wd_item span {
  font-size: 0.8333vw;
  padding: 0 0.625vw;
  border: 1px solid #ffffff;
  display: inline-block;
  margin-right: 1.041667vw;
}

.wd_item div {
  font-size: 0.9375vw;
}

.wd_item i {
  background: url(../image/bright.svg);
  width: 12px;
  height: 11px;
  background-size: cover;
  display: inline-block;
  position: absolute;
  right: 14px;
}

.wd_item:hover i {
  background: url(../image/right.svg);
}

.intr_drag {
  padding: 0.8333vw 1.927vw;
}

.wd_ul li {
  font-size: 0.8333vw;
  border: 1px solid #ffffff;
  color: #ffffff;
  padding: 0.8333vw 0;
  width: 8.3854vw;
  text-align: center;
  cursor: pointer;
}

.wd_ul li.active {
  background: #ffffff;
  color: #009B4C;
}

.wd_item:hover {
  background: #ffffff;
  color: #009B4C;
}

.wd_item:hover span {
  color: #C5C5C5;
  border-color: #C5C5C5;
}

.form5 h2 {
  font-size: 1.875vw;
  font-weight: bold;
  color: #FFFFFF;
  margin-bottom: 1.8625vw;
  position: relative;
}

.form5 h2:after {
  content: '';
  position: absolute;
  width: 20px;
  height: 4px;
  background: #FFFFFF;
  display: inline-block;
  left: 0;
  bottom: -16px;
}

.form5box .label {}

.home6 .intr h2 {
  font-size: 2.188vw;
  font-family: "Poppins";
  font-weight: bold;
  color: #0175b0;
}

.home6 .intr p {
  font-size: 0.833vw;
  font-family: "Gotham Pro";
  font-weight: 400;
  color: #0175b0;
  margin: 0.521vw 0 3.646vw;
}

.home6 .intr img {
  width: 13.542vw;
}

.wd_box>div {
  display: none;
}

.wd_box>div:first-child {
  display: block;
}

.form5box {
  display: flex;
  flex-flow: wrap;
  justify-content: space-between;
}

.home6 .label {
  width: 12.5vw;
  height: 2.5vw;
  background: #EFEFEF;
  margin: 0 0 1.14583vw;
  position: relative;
}

.home6 .label:nth-child(7) {
  width: 100%;
}

.label .input {
  width: 100%;
  background: #ffffff;
  border: 1px solid #dedede;
  border-radius: 0;
}

.home4 .label .input {
  width: 100%;
  height: 2.5vw;
  background: #EFEFEF;
  border-radius: 0px 0px 0px 0px;
}

.label input {
  height: 2.604vw;
  padding: 0 1.302vw;
  position: relative;
}

.home6 .label textarea {
  height: 7.813vw;
  padding: 0.781vw 1.302vw;
}

.label .close {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 5;
  width: 60px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.label i {
  position: absolute;
  top: 50%;
  right: 1.302vw;
  transform: translateY(-50%);
  z-index: 4;
  font-size: 0.833vw;
  color: #A4A2A2;
  pointer-events: none;
}

.label .input-sub {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 5;
  width: 100%;
  border: 1px solid #dedede;
  border-radius: 0;
  overflow: auto;
  max-height: 300px;
  display: none;
  /*transition: opacity ease 0.3s;*/
}

.form .btn.btn_green {
  width: 10.52083vw;
  height: 2.604166vw;
  background: #009B4C;
  border-radius: 0;
  text-align: center;
  line-height: 2.604166vw;
  color: #ffffff;
  display: block;
  margin: auto;
}

.label .input-sub li {
  background: #ffffff;
  padding: 0.781vw 1.302vw;
  font-size: 0.833vw;
  color: #121212;
  cursor: pointer;
  transition: all ease 0.5s;
}

.input-sub li:hover {
  background: #f6f6f8;
}


.form .btn {
  width: 100%;
  height: 2.604vw;
  background: #009B4C;
  box-shadow: none;
  border-radius: 0;
  cursor: pointer;
  transition: all ease 0.3s;
}

.form .btn span,
.form .btn a {
  font-size: 0.938vw;
  font-family: "Poppins";
  font-weight: bold;
  color: #ffffff;
  text-transform: capitalize;
  transition: all ease 0.3s;
}

/* 产品页面 */
.pro0 {
  width: 100%;
  padding: 6.25vw 0;
  position: relative;
}

.pro0 .bj {
  width: 31.25vw;
  position: absolute;
  left: 0;
  top: 3.125vw;
  z-index: 0;
  pointer-events: none;
}

.pro0 .bj img {
  max-width: 100%;
  width: 100%;
}

.pro0 .fuild {
  padding: 0 4.427vw 0 13.542vw;
}

.pro0 .intr {
  width: 35%;
  position: absolute;
  left: 13.542vw;
  top: 50%;
  transform: translateY(-50%);
}

.pro0 .intr h1 {
  font-size: 3.333vw;

  font-weight: bold;
  color: #121212;
  line-height: 3.646vw;
  margin: 0 0 1.042vw;
}

.pro0 .intr b {
  color: #0175b0;
}

.pro0 .intr h2 {
  font-size: 2.969vw;
  font-family: "Gotham Regular";
  font-weight: 400;
  line-height: 3.125vw;
  color: #121212;
}

.pro0 .intr p {
  font-size: 1.042vw;
  font-family: "Gotham Pro";
  font-weight: 400;
  line-height: 1.5;
  color: #121212;
}

.pro0 .intr .more {
  margin: 2.083vw 0 0;
}

.pro0 .pic {
  width: 59%;
}

.pro1 {
  width: 100%;
}

.pro2 {
  width: 100%;
  padding: 0 0 6.25vw;
}

.pro2 .row {
  margin: 3.125vw 0 0;
}

.pro2 .col {
  width: 32%;
  padding: 2.083vw 1.563vw;
  background: #ffffff;
  border: 1px solid #dedede;
  border-radius: 10px;
  transition: all ease 0.3s;
}

.pro2 .col:hover {
  border: 1px solid #edf0f7;
  box-shadow: 0px 3px 40px rgba(48, 116, 171, 0.17);
}

.pro2 .col .pic img {
  width: 4.167vw;
  height: 4.167vw;
}

.pro2 .intr {
  width: 100%;
  text-align: center;
}

.pro2 .intr h6 {
  font-size: 1.458vw;

  font-weight: bold;
  color: #5e5e5e;
  margin: 1.042vw 0;
}

.pro2 .intr p {
  font-size: 0.833vw;
  font-family: "Gotham Pro";
  font-weight: 400;
  line-height: 1.5;
  color: #5e5e5e;
}

.pro3 {
  width: 100%;
  background: #f7f9fc;
  padding: 6.25vw 0;
}

.pro3 .row2 .intr {
  width: 43%;
}

.pro3 .row2 .pic {
  width: 53%;
}

.pro3 .intr h4 {
  font-size: 1.875vw;

  font-weight: 400;
  color: #121212;
  line-height: 2.188vw;
}

.pro3 .intr b {
  color: #0175b0;
}

.pro3 .intr p {
  font-size: 0.833vw;
  font-family: "Gotham Pro";
  font-weight: 400;
  line-height: 1.5;
  color: #5e5e5e;

  margin: 1.563vw 0;
}

.pro3 .intr h6 {
  font-size: 1.458vw;

  font-weight: bold;
  color: #5e5e5e;
  position: relative;
  margin: 0 0 1.302vw;
  padding-left: 3.125vw;
}

.pro3 .intr h6::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.208vw;
  width: 1.563vw;
  height: 1.563vw;
  background-image: url(../image/gou.svg);
  background-repeat: no-repeat;
  background-size: cover;
}

.pro4 {
  width: 100%;
  padding: 6.25vw 0;
}

.pro4 .row {
  margin: 1.823vw 0 0;
}

.pro4 .intr,
.pro4 .pic {
  width: 48%;
}

.pro4 .intr h6 {
  font-size: 1.042vw;
  font-family: "Gotham Pro";
  font-weight: 400;
  color: #121212;
  position: relative;
  margin: 0 0 1.302vw;
  padding-left: 3.125vw;
}

.pro4 .intr h6::before {
  content: "";
  position: absolute;
  left: 0;
  width: 1.563vw;
  height: 1.563vw;
  background-image: url(../image/gou.svg);
  background-repeat: no-repeat;
  background-size: cover;
}

.pro5 {
  width: 100%;
  padding: 6.25vw 0 0;
  background: #f7f9fc;
}

.pro5 .tit1 p {
  max-width: 46.875vw;
}

.pro5 .intr p {
  max-width: 25.521vw;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  font-size: 0.833vw;
  font-family: "Gotham Pro";
  font-weight: 400;
  line-height: 1.5;
  color: #5e5e5e;
}

.pro6 {
  width: 100%;
  padding: 6.25vw 0;
  background: #f7f9fc;
}

.pro6 .intr p {
  text-align: center;
  font-size: 0.833vw;
  font-family: Gotham Pro;
  font-weight: bold;
  line-height: 1.5;
  color: #121212;
}

.pro7 {
  width: 100%;
  padding: 6.25vw 0;
}

.pro7 .fuild {
  padding: 0 30.99vw;
}

.pro7 .form {
  width: 100%;
  margin: 2.083vw 0 0;
}

.pro7 .label {
  width: 48%;
  margin: 0 0 1.042vw;
  position: relative;
}

.pro7 .label:nth-child(7) {
  width: 100%;
}

.pro7 .label .input {
  width: 100%;
  background: #ffffff;
  border: 1px solid #dedede;
  border-radius: 30px;
}

.pro7 .label input {
  height: 2.604vw;
  padding: 0 1.302vw;
  position: relative;
}

.pro7 .label textarea {
  height: 7.813vw;
  padding: 0.781vw 1.302vw;
}

.pro7 .btn {
  width: 100%;
}

.pro8 {
  width: 100%;
  padding: 0 0 6.25vw;
}

.pro8 .row {
  margin: 3.125vw 0 0;
}

.pro8 .col {
  width: 19%;
  padding: 2.083vw 1.042vw;
  background: #ffffff;
  border: 1px solid #dedede;
  border-radius: 10px;
  transition: all ease 0.3s;
}

.pro8 .col:hover {
  border: 1px solid #edf0f7;
  box-shadow: 0px 3px 40px rgba(48, 116, 171, 0.17);
}

.pro8 .pic img {
  width: 4.167vw;
  height: 4.167vw;
}

.pro8 .intr {
  width: 100%;
  text-align: center;
}

.pro8 .intr h6 {
  font-size: 1.042vw;

  font-weight: bold;
  color: #5e5e5e;
  margin: 1.563vw 0 0.781vw;
}

.pro8 .intr p {
  font-size: 0.833vw;
  font-family: "Gotham Pro";
  font-weight: 400;
  line-height: 1.5;
  color: #5e5e5e;
}

.pro9 {
  width: 100%;
  padding: 6.25vw 0;
  position: relative;
  background-image: url(../image/pr9-bj.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

.pro9 .fuild {
  padding: 0 19.792vw;
}

.pro9 .row {
  position: relative;
  margin: 3.125vw 0 0;
}

.pro9 .col {
  width: 21%;
}

.pro9 .col:nth-child(1),
.pro9 .col:nth-child(2),
.pro9 .col:nth-child(3),
.pro9 .col:nth-child(4) {
  margin: 0 0 3.125vw;
}

.pro9 .pic img {
  width: 4.167vw;
  height: 4.167vw;
}

.pro9 .intr {
  width: 100%;
  text-align: center;
  margin: 1.563vw 0 0;
}

.pro9 .intr p {
  font-size: 1.042vw;

  font-weight: bold;
  color: #5e5e5e;
}

.pro10 {
  width: 100%;
  padding: 6.25vw 0 0;
}

.pro10 .fuild {
  padding: 0 30.99vw;
}

.pro10 .pic img {
  width: 5.729vw;
  height: 4.167vw;
}

.pro10 .more {
  margin: 2.083vw auto 0;
}

.fixed {
  position: sticky;
  position: -webkit-sticky;
  top: 5.208vw;
  z-index: 20;
}

.fixed .curr {
  width: 35.938vw;
  margin: 0 auto;
  box-shadow: 0px 3px 20px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.fixed .sub {
  width: calc(100% / 3);
  height: 3.906vw;
  font-size: 1.25vw;

  font-weight: bold;
  color: #dedede;
  background: #ffffff;
  cursor: pointer;
  text-align: center;
  transition: all ease 0.3s;
}

.fixed .sub.on {
  background: linear-gradient(205deg, #3074ab 0%, #99c9e1 100%);
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 8px;
  color: #ffffff;
}

.pro11 {
  width: 100%;
  padding: 6.25vw 0;
  overflow: hidden;
}

.pro11 .row {
  margin: 3.125vw 0 0;
}

.pro11 .col {
  width: 100%;
  position: relative;
}

.pro11 .intr {
  width: 44%;
  position: absolute;
  left: 0;
  right: auto;
  top: 50%;
  transform: translateY(-50%);
}

.pro11 .col:nth-child(2n) .intr {
  left: auto;
  right: 0;
}

.pro11 .pic {
  width: 50%;
}

.pro11 .pic img {
  max-width: 100%;
  width: 100%;
}

.pro11 .intr h4 {
  font-size: 1.875vw;

  font-weight: 400;
  color: #121212;
  margin: 0 0 1.563vw;
}

.pro11 .intr p {
  font-size: 0.833vw;
  font-family: "Gotham Pro";
  font-weight: 400;
  line-height: 1.5;
  color: #5e5e5e;
}

.pro12 {
  width: 100%;
  padding: 6.25vw 0;
  background: #f7f9fc;
}

.pro12 .row {
  margin: 3.125vw 0 0;
}

.pro13 {
  width: 100%;
  padding: 6.25vw 0;
}

.pro13 .fuild {
  padding: 0 21.615vw;
}

.pro13 .row {
  margin: 3.125vw 0 0;
}

.pro13 .col {
  width: 31%;
  background: #ffffff;
  border: 1px solid #dedede;
  border-radius: 10px;
  padding: 1.563vw;
  transition: all ease 0.3s;
}

.pro13 .col:hover {
  border: 1px solid #edf0f7;
  box-shadow: 0px 3px 40px rgba(48, 116, 171, 0.17);
}

.pro13 .intr h4 {
  font-size: 0.833vw;

  font-weight: bold;
  color: #121212;
}

.pro13 .intr h5 {
  font-size: 1.042vw;

  font-weight: bold;
  color: #0175b0;
}

.pro13 .intr h6 {
  font-size: 1.042vw;
  font-family: "Gotham Pro";
  font-weight: 400;
  color: #121212;
  margin: 2.083vw 0;
}

.pro13 .intr b {
  font-size: 1.458vw;
  color: #0175b0;
}

.pro13 .intr p {
  font-size: 0.833vw;
  font-family: "Gotham Pro";
  font-weight: 400;
  color: #5e5e5e;
}

.pro13 .intr span {
  font-size: 0.833vw;
  font-family: "Gotham Pro";
  font-weight: 400;
  color: #5e5e5e;
  margin: 1.042vw 0 0;
  position: relative;
  padding-left: 0.781vw;
  display: inline-block;
}

.pro13 .intr span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.26vw;
  width: 0.417vw;
  height: 0.417vw;
  background: #0175b0;
  border-radius: 50%;
}

.sec-timage {
  padding: 5.052083vw 0;
}

.pro13 .intr hr {
  border: 1px solid #dedede;
  margin: 1.042vw 0;
}

.pro13 .get {
  margin: 3.125vw auto 0;
}

.get {
  width: 10.156vw;
  height: 3.125vw;
  background: #0175b0;
  box-shadow: 0px 3px 99px rgba(0, 0, 0, 0.16);
  border-radius: 25px;
  transition: all ease 0.3s;
}

.get span {
  font-size: 0.938vw;
  font-family: "Poppins";
  font-weight: bold;
  color: #ffffff;
  transition: all ease 0.3s;
}

.get:hover {
  background: #ffffff;
}

.get:hover span {
  color: #0175b0;
}

.pro14 {
  width: 100%;
  padding: 6.25vw 0;
  background: #f7f9fc;
}

.pro14 .row {
  margin: 3.125vw 0 0;
}

.pro14 .col {
  width: 32%;
}

.pro14 .pic img {
  max-width: 100%;
  width: 100%;
}

.pro14 .intr p {
  font-size: 1.042vw;
  font-family: "Gotham Pro";
  font-weight: 400;
  line-height: 1.5;
  color: #121212;
  margin: 1.042vw 0 0;
}

.pro15 {
  width: 100%;
  padding: 0 0 6.25vw;
}

.pro15 .row {
  margin: 3.125vw 0 0;
}

.pro15 .pic {
  width: 46%;
}

.pro15 .intr {
  width: 47%;
}

.pro15 .intr h4 {
  font-size: 1.875vw;

  font-weight: bold;
  color: #121212;
  margin: 0 0 1.563vw;
}

.pro15 .intr p {
  font-size: 0.833vw;
  font-family: "Gotham Pro";
  font-weight: 400;
  line-height: 1.5;
  color: #5e5e5e;
}

.pro16 {
  background: #f7f9fc;
}

.so1 {
  width: 100%;
  padding: 6.25vw 0;
  position: relative;
}

.so1 .fuild {
  padding: 0 4.427vw 0 13.542vw;
}

.so1 .intr {
  width: 36%;
  position: absolute;
  left: 13.542vw;
  top: 50%;
  transform: translateY(-50%);
}

.so1 .intr h1 {
  font-size: 3.333vw;

  font-weight: bold;
  color: #121212;
  line-height: 3.646vw;
  margin: 0 0 1.042vw;
}

.so1 .intr b {
  color: #0175b0;
}

.so1 .intr h2 {
  font-size: 2.969vw;
  font-family: "Gotham Regular";
  font-weight: 400;
  color: #121212;
  line-height: 3.125vw;
}

.so1 .intr p {
  font-size: 1.042vw;
  font-family: "Gotham Pro";
  font-weight: 400;
  line-height: 1.5;
  color: #121212;
}

.so1 .intr .more {
  margin: 2.083vw 0 0;
}

.so1 .pic {
  width: 59%;
}

.so2 {
  width: 100%;
  padding: 0 0 6.25vw;
}

.so2 .row {
  margin: 3.125vw 0 0;
}

.so2 .col {
  width: 48%;
  margin: 0 0 2.083vw;
}

.so2 .pic img {
  width: 4.167vw;
  height: 4.167vw;
}

.so2 .intr p {
  font-size: 0.833vw;
  font-family: "Gotham Pro";
  font-weight: 400;
  line-height: 1.5;
  color: #5e5e5e;
  margin: 1.563vw 0 0;
}

.so3 {
  background: #f7f9fc;
}

.so4 {
  width: 100%;
  padding: 6.25vw 0;
}

.so4 .row {
  margin: 3.125vw 0 0;
}

.so5 {
  width: 100%;
  padding: 6.25vw 0;
  background: #f7f9fc;
}

.so5 .row {
  margin: 3.125vw 0 0;
}

.so5 .col {
  width: 24%;
  margin: 0 0 1.042vw;
  padding: 0 1.042vw;
}

.pa1 {
  padding: 11.458vw 0 6.25vw;
}

.pa1 .intr {
  width: 100%;
  text-align: center;
}

.pa1 .intr h1 {
  font-size: 3.333vw;

  font-weight: bold;
  line-height: 3.646vw;
  color: #121212;
  margin: 0 0 1.042vw;
}

.search_select label.search_btn {
  width: 30vw;
  display: flex;
  align-items: center;
}

.search_select .label.search_btn .inputb {
  width: 18.17708333vw;
  margin-right: 1vw;
  position: relative;
}

.se_btn {
  width: 6vw;
  height: 2.604vw;
  line-height: 2.604vw;
  background: #009b4c;
  color: #ffffff;
}

.pa1 .intr h2 {
  font-size: 2.969vw;
  font-family: "Gotham Regular";
  font-weight: 400;
  line-height: 3.125vw;
  color: #121212;
}

.pa2 {
  width: 100%;
  padding: 6.25vw 0;
  background: #f7f9fc;
  position: relative;
}

.pa2 .row {
  margin: 3.125vw 0 0;
}

.pa2 .intr,
.pa2 .pic {
  width: 48%;
}

.pa2 .pic img {
  max-width: 100%;
  width: 100%;
}

.pa2 .intr h6 {
  font-size: 1.042vw;

  font-weight: bold;
  color: #5e5e5e;
  position: relative;
  margin: 0 0 1.563vw;
  padding-left: 3.125vw;
}

.pa2 .intr h6::before {
  content: "";
  position: absolute;
  left: 0;
  top: -0.208vw;
  width: 1.563vw;
  height: 1.563vw;
  background-image: url(../image/gou.svg);
  background-repeat: no-repeat;
  background-size: cover;
}

.pa2 .intr p {
  font-size: 0.833vw;
  font-family: "Gotham Pro";
  font-weight: 400;
  color: #5e5e5e;
}

.pa3 {
  width: 100%;
  padding: 6.25vw 0;
  position: relative;
  background-image: url(../image/pa3-bj.svg);
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.pa3 .fuild {
  padding: 0 28.646vw;
}

.pa3 .row {
  margin: 3.125vw 0 0;
}

.pa3 .col {
  width: 45%;
}

.pa3 .pic img {
  width: 17.708vw;
}

.pa3 .intr {
  width: 100%;
  text-align: center;
}

.pa3 .intr p {
  font-size: 1.458vw;

  font-weight: bold;
  color: #121212;
  margin: 1.042vw 0 0;
}

.pa4 {
  width: 100%;
  padding: 7.5521vw 0 6.35417vw;
  background-image: url(../image/bg08.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.pa4 .intr {
  width: 32.4479166vw
}

.pa4 .form {
  width: 38.64583vw;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.pa4 .form .label.width-full {
  width: 100%;
}

.pa4 .intr h3 {
  font-size: 1.770833vw;
  font-weight: bold;
  color: #000000;
  margin: 0 0 2vw;
  position: relative;
}

.pa4 .intr h3:after {
  content: '';
  width: 20px;
  height: 4px;
  background: #009B4C;
  display: inline-block;
  position: absolute;
  bottom: -18px;
  left: 0;
}

.pa4 .intr p {
  font-size: 0.8333vw;
  font-weight: 400;
  color: #737373;
  margin-bottom: 0.8333vw;
  max-width: 19.58333333vw;
}

.pa4 .form .btn {
  width: 10.52083333vw;
  height: 2.604166vw;
  color: #ffffff;
}

.pa4 .intr big {
  color: #009B4C;
  font-family: Oswald-Bold, Oswald;
  font-weight: bold;
  font-size: 1.354166vw;
  margin-bottom: 0.8333vw;
  display: block;
}

.pa4 .form h6 {
  font-size: 1.042vw;

  font-weight: bold;
  color: #121212;
  margin: 0 0 1.042vw;
}

.pa4 .form .label {
  width: 48%;
  display: block;
  margin: 0 0 1.5625vw;
  position: relative;
}

.pa4 .label .input {
  width: 100%;
  height: 2.447917vw;
  border: 1px solid #dedede;
  border-radius: 0;
}

.pa4 .label input {
  height: 2.604vw;
  padding: 0 1.302vw;
  position: relative;
}

.pa4 .label textarea.input {
  width: 38.64583vw;
  height: 9.479166vw;
  padding: 1.042vw 1.302vw;
}

.pa4 .checkbox {
  width: 100%;
  margin: 0 0 1.042vw;
}

.pa4 .checkbox .check {
  width: 1.042vw;
  height: 1.042vw;
  background: #ffffff;
  border: 1px solid #0175b0;
  border-radius: 5px;
  margin-right: 1.042vw;
  transform: translateY(0.26vw);
}

.pa4 .checkbox .check.on {
  background: #0175b0;
}

.pa4 .checkbox .txt {
  width: calc(100% - 2.083vw);
}

.pa4 .checkbox p {
  font-size: 0.729vw;
  font-family: "Gotham Pro";
  font-weight: 400;
  line-height: 1.5;
  color: #5e5e5e;
}

.pa4 .checkbox b {
  color: #ff7043;
}

.fixed2 {
  width: 100%;
  position: sticky;
  position: -webkit-sticky;
  top: 5.208vw;
  z-index: 20;
}

.fixed2 .curr {
  width: 62.5vw;
  margin: 11.458vw auto 0;
  box-shadow: 0px 3px 20px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.fixed2 .sub {
  width: calc(100% / 3);
  height: 3.906vw;
  font-size: 1.25vw;

  font-weight: bold;
  color: #dedede;
  background: #ffffff;
  cursor: pointer;
  text-align: center;
  transition: all ease 0.3s;
}

.fixed2 .sub.on {
  background: linear-gradient(205deg, #3074ab 0%, #99c9e1 100%);
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 8px;
  color: #ffffff;
}

.su1 {
  width: 100%;
  padding: 6.25vw 0;
}

.su2 {
  width: 100%;
  padding: 6.25vw 0;
  background: #f7f9fc;
}

.su2 .row {
  margin: 3.125vw 0 0;
}

.su2 .col {
  width: 32%;
  padding: 3.125vw;
  background: #ffffff;
  border: 1px solid #dedede;
  border-radius: 10px;
  transition: all ease 0.3s;
}

.su2 .col:hover {
  border: 1px solid #edf0f7;
  box-shadow: 0px 3px 40px rgba(48, 116, 171, 0.17);
}

.su2 .pic img {
  width: 4.167vw;
  height: 4.167vw;
}

.su2 .intr {
  width: 100%;
  text-align: center;
}

.su2 .intr h6 {
  font-size: 1.458vw;

  font-weight: bold;
  color: #5e5e5e;
  margin: 1.563vw 0 1.042vw;
}

.su2 .intr p {
  font-size: 0.833vw;
  font-family: "Gotham Pro";
  font-weight: 400;
  line-height: 1.5;
  color: #5e5e5e;
}

.su3 {
  width: 100%;
  padding: 6.25vw 0;
}

.su3 .row {
  margin: 3.125vw 0 0;
}

.su4 {
  width: 100%;
  padding: 6.25vw 0;
  background: #f7f9fc;
}

.su4 .row {
  margin: 3.125vw 0 0;
}

.su4 .col {
  width: 48%;
  padding: 2.083vw;
  background: #ffffff;
  border: 1px solid #dedede;
  border-radius: 10px;
  position: relative;
  margin: 0 0 2.083vw;
  overflow: hidden;
  transition: all ease 0.3s;
}

.su4 .col:hover {
  border: 1px solid #edf0f7;
  box-shadow: 0px 3px 40px rgba(48, 116, 171, 0.17);
}

.su4 .intr {
  width: 85%;
}

.su4 .intr h6 {
  font-size: 1.458vw;

  font-weight: bold;
  color: #0175b0;
  margin: 0 0 1.563vw;
}

.su4 .intr p {
  font-size: 0.833vw;
  font-family: "Gotham Pro";
  font-weight: 400;
  line-height: 1.5;
  color: #5e5e5e;
  opacity: 1;
}

.su4 .pic {
  position: absolute;
  right: 2.083vw;
  bottom: 0;
  z-index: -1;
  pointer-events: none;
  width: 11.458vw;
}

.su4 .pic img {
  max-width: 100%;
  width: 100%;
}

.su4 .download {
  margin: 2.083vw 0 0;
}

.su4 .new {
  position: absolute;
  top: 2.083vw;
  right: 2.083vw;
  display: none;
}

.su4 .col.on .new {
  display: block;
}

.new span {
  font-size: 1.042vw;
  font-family: "Gotham Pro";
  font-weight: 400;
  background: #ff7043;
  color: #ffffff;
  padding: 0.417vw 0.625vw;
  border-radius: 4px;
}

.download {
  width: 10.417vw;
  height: 3.125vw;
  background: #0175b0;
  box-shadow: 0px 3px 99px rgba(0, 0, 0, 0.16);
  border-radius: 25px;
  cursor: pointer;
  transition: all ease 0.3s;
}

.download span {
  font-size: 0.938vw;
  font-family: "Poppins";
  font-weight: bold;
  color: #ffffff;
  text-transform: capitalize;
  transition: all ease 0.3s;
}

.download:hover {
  background: #ffffff;
}

.download:hover span {
  color: #0175b0;
}

.su5 {
  width: 100%;
  padding: 6.25vw 0;
}

.su5 .fuild {
  padding: 0 26.042vw;
}

.su5 .row {
  margin: 3.125vw 0 0;
}

.su5 .col {
  width: 100%;
  padding: 1.563vw 0;
  border-bottom: 1px solid #dedede;
}

.su5 .col .col-t {
  width: 100%;
  padding: 0 3.906vw 0 0;
  position: relative;
}

.su5 .col .col-b {
  width: 100%;
  padding: 1.563vw 3.906vw 0 0;
  display: none;
}

.su5 .col h6 {
  font-size: 1.042vw;
  font-family: "Gotham Pro";
  font-weight: 400;
  color: #121212;
  transition: all ease 0.3s;
}

.su5 .col.on h6 {
  color: #0175b0;
}

.su5 .col i {
  position: absolute;
  right: 0.833vw;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  font-size: 0.833vw;
  color: #0175b0;
  transition: all ease 0.3s;
}

.su5 .col.on i {
  transform: translateY(-50%) rotate(90deg);
}

.su5 .col p {
  font-size: 0.833vw;
  font-family: "Gotham Pro";
  font-weight: 400;
  color: #5e5e5e;
  line-height: 1.5;
}

.su6 {
  width: 100%;
  padding: 6.25vw 0;
  background: #f7f9fc;
}

.su6 .tit h3 {
  max-width: 33.854vw;
}

.su6 .fuild {
  padding: 0 22.917vw;
}

.su6 .row {
  margin: 3.125vw 0 0;
}

.su6 .col {
  width: 48%;
  padding: 2.083vw;
  background: #ffffff;
  border: 1px solid #dedede;
  border-radius: 10px;
  transition: all ease 0.3s;
}

.su6 .col:hover {
  border: 1px solid #edf0f7;
  box-shadow: 0px 3px 40px rgba(48, 116, 171, 0.17);
}

.su6 .pic img {
  width: 4.688vw;
  height: 4.688vw;
}

.look {
  width: 100%;
  margin: 2.083vw 0 0;
}

.look span {
  font-size: 1.458vw;

  font-weight: bold;
  color: #121212;
  margin-right: 0.521vw;
}

.look img {
  width: 1.042vw;
  height: 1.042vw;
}

.ab1 {
  width: 100%;
  padding: 11.458vw 0 3.125vw;
}

.ab1 .row {
  margin: 3.125vw 0 0;
}

.ab1 .pic {
  width: 48%;
  margin-top: -3.125vw;
  z-index: 10;
}

.ab1 .pic img {
  max-width: 100%;
  width: 100%;
}

.ab1 .intr {
  width: 48%;
}

.ab1 .intr h3 {
  font-size: 2.396vw;

  font-weight: bold;
  color: #121212;
  margin: 0 0 2.083vw;
}

.ab1 .intr p {
  font-size: 0.833vw;
  font-family: "Gotham Pro";
  font-weight: 400;
  line-height: 1.5;
  color: #5e5e5e;
}

.ab2 {
  width: 100%;
  padding: 0 0 6.25vw;
}

.ab2 .intr h2 {
  font-size: 2.917vw;
  font-family: "Gotham Pro";
  font-weight: 500;
  color: #000000;
  margin: 0 0 1.042vw;
}

.ab2 .intr p {
  font-size: 0.833vw;
  font-family: "Gotham Pro";
  font-weight: 400;
  color: #000000;
}

.about-time {
  width: 100vw;
  padding: 5.15625vw 0 5.52083vw;
  background-image: url(../image/bg11.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.about-time .tit h3 {
  color: #ffffff;
}

.about-time .tit h3:after {
  background: #ffffff;
}

.about-time .row {
  margin: 10.58333vw 0 0;
  position: relative;
}


.about-time .swiper-container:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 0.052vw;
  background: #dedede;
}

.about-time .swiper-slide {
  padding: 11.458vw 0;
  cursor: pointer;
}

.about-time .slide-box {
  width: 100%;
  position: relative;
  transition: all ease 0.3s;
  padding-left: 5.72916vw;
}

.about-time .swiper-slide-active .slide-box {
  opacity: 1;
}

.about-time .item-round {
  position: relative;
  width: 0.625vw;
  height: 0.625vw;
  border-radius: 50%;
  background: #ffffff;
}

.about-time .item-round::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: transparent;
  width: 1.14583vw;
  height: 1.14583vw;
  border: 1px solid #F2F2F2;
  transition: all ease 0.3s;
  border-radius: 50%;
}

.about-time .item-round::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: transparent;
  width: 1.5625vw;
  height: 1.5625vw;
  border: 1px solid #F2F2F2;
  transition: all ease 0.3s;
  border-radius: 50%;
}

.about-time .item-year {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 100%;
  text-align: left;
  padding-left: 5.72916vw;
  transition: all ease 0.3s;
  padding-top: 2.8vw;
  padding-bottom: 2.8vw;
}

.about-time .item-year span {
  display: inline-block;
  margin: 1.563vw 0;
  font-size: 1.042vw;

  font-weight: bold;
  color: #121212;
  transition: all ease 0.3s;
}

.about-time .item-year .txt {
  width: 14.323vw;
  transition: all ease 0.3s;
}

.about-time .swiper-slide-active .txt {
  opacity: 1;
  visibility: visible;
}

.about-time .item-year p {
  font-size: 0.8333vw;
  color: #ffffff;
  margin-bottom: 0.8333vw;
  transition: all ease 0.3s;
}

.about-time .item-year p:before {
  content: '';
  width: 8px;
  height: 8px;
  background: #FFFFFF;
  border-radius: 8px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 13px;
}

.about-time .item-content {
  width: 100%;
  position: absolute;
  left: 0;
  top: 100%;
  text-align: center;
  margin: 1.563vw 0 0;
  /*opacity: 0;*/
  /*visibility: hidden;*/
  transition: all ease 0.3s;
}

.about-time .swiper-slide-active .item-content {
  opacity: 1;
  visibility: visible;
}

.about-time .item-content .core {
  width: 14.323vw;
  margin-left: 5.72916vw;
  transition: all ease 0.3s;
  text-align: left;
}

.about-time .core span,
.about-time .core p {
  font-size: 1.042vw;
  margin: 1.4584vw 0;
  font-weight: bold;
  color: #ffffff;
  transition: all ease 0.3s;
  display: block;
}

.about-time .swiper-box {
  right: 4.688vw;
}

.sub_title {
  padding: 0.781vw 1.302vw;
  font-size: 0.833vw;
  color: #909399 !important;
  display: block;
  background: #ffffff;
}

.label .input {
  transition: all ease 0.3s;
}

.label .input:focus {
  border: 1px solid #009B4C !important;
}

.shake {
  border: 1px solid #0175b0 !important;
  animation: shake 0.6s ease;
}

@-webkit-keyframes RightToLeft {
  0% {
    transform: translateX(0px);
    -webkit-transform: translateX(0px);
  }

  100% {
    transform: translateX(20px);
    -webkit-transform: translateX(20px);
  }
}

@keyframes RightToLeft {
  0% {
    transform: translateX(0px);
    -webkit-transform: translateX(0px);
  }

  100% {
    transform: translateX(20px);
    -webkit-transform: translateX(20px);
  }
}

@-webkit-keyframes BottomToTop {
  0% {
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
  }

  100% {
    transform: translateY(20px);
    -webkit-transform: translateY(20px);
  }
}

@keyframes BottomToTop {
  0% {
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
  }

  100% {
    transform: translateY(20px);
    -webkit-transform: translateY(20px);
  }
}

.ev1 img {
  animation: BottomToTop 4s linear infinite alternate;
}

.ev2 img {
  animation: BottomToTop 6s linear infinite alternate-reverse;
}

.ev3 img {
  animation: BottomToTop 3.5s linear infinite alternate-reverse;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;

  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  font-size: 12px;
  color: #000;
  opacity: 1;
  background: rgba(0, 0, 0, 0.2);
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4vw;
}

.pagination a {
  color: #DCDCDC;
  font-size: 0.8333vw;
  width: 1.97917vw;
  height: 1.97917vw;
  display: inline-block;
  border-radius: 100%;
  text-align: center;
  line-height: 1.97917vw;
  font-weight: bold;
}

.pagination a.on {
  background: #009B4C;
  color: #ffffff;
}

.news_nav .about_item {
  width: 50%;
}
.download_nav .about_item {
  width: 33.333%;
}
.swiper-pagination-bullet-active {
  color: #fff;
  background: #007aff;
}

.download-banner {
  background: url(../image/bg04.jpg);

}

.lang_banner em {
  font-size: 2.60417vw;
  font-weight: 400;
  color: #FFFFFF;
  margin-bottom: 0.625vw;
  display: block;
  font-style: normal;
  opacity: .27;
  font-family: Impact-Regular, Impact;

}

.news-banner {
  background: url(../image/bg05.jpg);
}

.lang_banner {
  width: 100vw;
  height: 27.8646vw;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
}

.lang_banner h2 {
  font-size: 1.875vw;
  font-weight: bold;
  color: #FFFFFF;
  position: relative;
}

.lang_banner h2:after {
  content: '';
  width: 24px;
  height: 2px;
  background: #FFFFFF;
  display: inline-block;
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  bottom: -15px;
}

.search_select {
  margin-top: 5.5729vw;
  margin-bottom: 2.34275vw;
}

.search_select label {
  position: relative;
  width: 18.17708333vw;
  margin-bottom: 1vw;
}

.search_select .label .input {
  border-left: 0;
  border-right: 0;
  outline: none;
}

.search_select .label i.icon-search {
  right: auto;
  left: 1.302vw;
}

.icon-phone {
  background: url(../image/phone.svg);
  width: 2.041667vw;
  height: 2.041667vw;
  background-size: cover;
  display: inline-block;
  margin-right: 0.3vw;
}

.top_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #d4d4d4;
  padding: 1vw 0;
}

.fl-cb-mens {
  justify-content: center;
}

.top_head a {
  display: flex;
  align-items: center;
  font-size: 1vw;
}

.label .input.searchi {
  padding-left: 3vw;
}

.download-center .wrap {
  padding: 0 12.5vw;
}

.download_nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 5.5729vw;
  margin-bottom: 2.34275vw;
}

.download_nav li {
  width: 18.177vw;
  padding: 1.4584vw 0;
  border: 1px solid #EDEDED;
  border-left: 0;
  border-right: 0;
  font-size: 0.8333vw;
  color: #000000;
  line-height: 1;
  cursor: pointer;
  font-weight: bold;
}

.download_nav li.active {
  color: #009B4C;
}

.download_item a {
  font-size: 0;
  color: #ffffff;
  position: relative;
  z-index: 2;
}

.download_item:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: #009B4C url(../image/bg3.svg) no-repeat;
  background-size: 207px 301px;
  background-position: bottom right;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 1;
}

.download_item:hover:after {
  opacity: 1;
}

.download_item:hover a i {
  background: url(../image/down1.svg);
}

.download_item:hover p {
  color: #ffffff;
}

.download-center .row {
  padding-bottom: 8.3125vw;
}

.download_item {
  width: 18.125vw;
  height: 23.229vw;
  background: #E2E2E2 url(../image/bot.png);
  margin-bottom: 1.875vw;
  padding: 1.7708vw 0.9375vw 2vw 1.7708vw;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  position: relative;
}

.download_item a i {
  background: url(../image/down2.svg);
  width: 1.5625vw;
  height: 1.5625vw;
  background-size: cover;
  display: inline-block;
  margin-left: 1.2584vw;
  vertical-align: middle;
}

.download_item:hover a {
  font-size: 0.8333vw;
  color: #ffffff;
}

.download_list {
  display: flex;
  flex-flow: wrap;
  justify-content: space-between;
}

.download_item p {
  font-size: 1.25vw;
  color: #000000;
  position: relative;
  z-index: 2;
}

.news_pic {
  width: 22.2396vw;
  height: 10.3646vw;
  margin-right: 1.25vw;
}

.news_item {
  padding: 1.97917vw 0;
}

.news_item a {
  display: flex;
}

.news_item a:hover h2 {
  color: #009B4C;
}

.news_item a:hover .news_bottom span {
  color: #009B4C;
}

.news_item a:hover .news_bottom span:before {
  background: #009B4C;
}

.news_info h2 {
  font-size: 1.25vw;
  margin-bottom: 1.25vw;
  transition: all .25s ease;
  font-weight: bold;
}

.news_info p {
  font-size: 0.8333vw;
  color: #ABABAB;
  margin-bottom: 1.25vw;
}

.news_list {
  margin: 0 0 1.97917vw;
}

.news-center {
  background: url(../image/bg06.jpg);
  background-size: cover;
  padding: 3.5417vw 0 6.417vw;
}

.news_bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8333vw;
  font-family: Oswald-Bold, Oswald;
  font-weight: bold;
  color: #DCDCDC;
}

.news_bottom span {
  font-size: 0.8333vw;
  color: #000000;
  font-weight: normal;
  display: flex;
  align-items: center;
}

.news_bottom span:before {
  content: '';
  width: 49px;
  height: 1px;
  background: #707070;
  display: inline-block;
  margin-right: 11px;
}

.news-detail {
  padding: 5.52083vw 0;
}

.news-detail .row>h2 {
  font-size: 1.875vw;
  text-align: center;
  margin-bottom: 1.041667vw;
}

.news-detail .row>em {
  font-size: 0.8333vw;
  text-align: center;
  font-weight: 400;
  color: #ABABAB;
  display: block;
  font-style: normal;
}

article {
  border-top: 1px solid #DEDEDE;

  padding: 1.25vw 0;
  margin-top: 1.041667vw;
}

.return_list {
  display: block;
  text-align: center;
  font-size: 0.8333vw;
  font-weight: bold;
  color: #009B4C;
  text-decoration: underline;
}

.evaluation-banner {
  background: url(../image/bg07.jpg);
  background-size: cover;
}

.contact-banner {
  background: url(../image/bg09.jpg);
  background-size: cover;
}

.about-banner {
  background: url(../image/bg10.jpg);
  background-size: cover;
}

.zc_list p {
  height: 0;
  display: none;
}

.zc_list li {
  font-size: 0.9375vw;
  padding: 0.8333vw 0;
  border-bottom: 1px solid #DCDCDC;
  cursor: pointer;
  font-weight: bold;
}

.zc_list li.active p {
  height: auto;
  display: block;
  font-weight: normal;
}

.about-con {
  background: url(../image/about1.jpg);
  background-size: cover;
  padding: 5.9375vw 0 7.34375vw;
}

.about_info p {
  font-size: 0.8333vw;
  margin-bottom: 0.989585vw;
  line-height: 1.7;
}

.about_info a {
  font-size: 0.9375vw;
  font-weight: bold;
  padding: 0.989585vw 0;
  display: block;
  border-bottom: 1px solid #DCDCDC;
}

.about_nav {
  display: flex;
  margin-top: -2.6vw;

}

.about_item {
  width: 25%;
  text-align: center;
  padding: 0.7292vw 0;
  font-size: 0.8333vw;
  color: #ffffff;
  cursor: pointer;
  backdrop-filter: saturate(150%) contrast(50%) blur(3px);
  -webkit-backdrop-filter: saturate(150%) contrast(50%) blur(3px);
}

.about_item.active {
  background: #009B4C;
}

.about_info a:hover {
  color: #009B4C;
}

.swiper-slide {
  background: transparent;
}

.image_top .item-content {
  bottom: 100%;
  top: auto;
}

.image_top .item-year {
  bottom: auto;
  top: 100%;
}

.about_boix>div {
  display: none;
  min-height: 300px;
}

.about_boix>div:first-child {
  display: block;
}

.honor_bg {
  width: 27.760416vw;
  margin-right: 5.6770833vw;
  flex: none;
  height: 63.02083vw;
}

.honor {
  display: flex;
}

.honor_txt {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-top: 1px solid #eeeeee;
  padding-top: 5.0520833vw;
  margin-top: 2.8125vw;
}

.honor_txt p {
  font-size: 1.770833vw;
  width: 14.1666vw;
  font-weight: bold;
}

.honor_content {
  width: 29.4270833vw;
}

.honor_content p {
  width: auto;
  font-size: 0.9375vw;
}

.honor_right {
  width: 54.739583vw;
  font-size: 0.8333vw;
  line-height: 1.97917vw;
  padding-top: 6.14583vw;
}

.honor_right>h2 {
  font-size: 1.770833vw;
  position: relative;
  font-weight: bold;
}

.honor_right>h2:after {
  content: '';
  width: 20px;
  height: 4px;
  background: #009B4C;
  position: absolute;
  left: 0;
  bottom: -24px;
  display: inline-block;

}

.green_txt {
  color: #009B4C;
}

.honor_ul li {
  font-size: 0.8333vw;
  margin-bottom: 1.041667vw;
  cursor: pointer;
  line-height: 1;
}

.honor_ul li.active {
  color: #009B4C;
}

.honor_ul li:before {
  content: '';
  width: 0.2044vw;
  height: 0.2044vw;
  background: #009B4C;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.5208vw;
}

.honor_box {
  width: 100%;
  margin-top: 6.354166vw;
  position: relative;
}

.honor_box>div.honor_lis {
  display: none;
}

.honor_box>div.honor_lis:first-child {
  display: block;
}

.swiper-button-next.s1,
.swiper-button-next.s4 {
  width: 0;
  height: 0;
  border: 12px solid #009B4C;
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-right-color: transparent;
}

.swiper-button-prev.s2,
.swiper-button-prev.s3 {
  width: 0;
  height: 0;
  border: 12px solid #009B4C;
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-left-color: transparent;
}

.honor1,
.honor2 {
  position: relative;
  overflow: hidden;
}

.navigation-s div {
  position: relative;
  left: auto;
  right: auto;
  top: auto;
  transform: none;
  margin-top: 0;
}

.navigation-s {
  display: flex;
  align-items: center;
  margin-top: 105px;
}

.navigation-s .swiper-button-prev.swiper-button-disabled {
  opacity: 1;
  border: 12px solid #CBCBCC;
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-left-color: transparent;
  width: 0;
  height: 0;
}

.navigation-s .swiper-button-next.swiper-button-disabled {
  opacity: 1;
  border: 12px solid #CBCBCC;
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-right-color: transparent;
  width: 0;
  height: 0;
}

.banner_Swiper .swiper-button-next:hover {
  background-image: url(../image/rightb.svg);
  right: 10px;
  left: auto;
  width: 4vw;
  height: 4vw;
  background-size: cover;
}

.banner_Swiper .swiper-button-next {
  background-image: url(../image/righta.svg);
  right: 10px;
  left: auto;
  width: 4vw;
  height: 4vw;
  background-size: cover;
}

.banner_Swiper .swiper-button-prev {
  background-image: url(../image/lefta.svg);
  width: 4vw;
  height: 4vw;
  background-size: cover;
}

.banner_Swiper .swiper-button-prev:hover {
  background-image: url(../image/leftb.svg);
  width: 4vw;
  height: 4vw;
  background-size: cover;
}

.navigation-s var {
  width: 1px;
  height: 11px;
  background: #CBCBCC;
  display: inline-block;
  margin: 0 14px;
}

.organization {
  background: url(../image/bg12.jpg);
  background-size: cover;
  display: block;
  padding: 5vw 0 5.885416vw;
}

.organization .row {
  margin-top: 2.7604166vw;
}

.organization-box {
  width: 100%;
  background: #FFFFFF;
  box-shadow: 0px 3px 30px 1px rgba(0, 0, 0, 0.11);
  border-radius: 0px 0px 0px 0px;
  text-align: center;
  display: flex;
  /* padding: 3.125vw 0; */
}

.ercode {
  width: 100%;
  display: flex;
  align-items: center;
  padding-top: 0.9375vw;
  justify-content: flex-end;
  margin-bottom: 1vw;
}

.footB_f {
  display: flex;
  color: #6B6B6B;
  font-size: 0.8333vw;
  justify-content: space-between;
  padding: 1.25vw 0;
  margin-top: 0.5vw;
}

.ercode span {
  display: block;
  font-size: 0.8333vw;
  text-align: center;
  color: #000000;
}

.ercode div {
  margin-left: 20px;
}

.links {
  width: 100%;
  margin-top: 2.60417vw;
  font-size: 0.8333vw;
  color: #6B6B6B;
}

.links a {
  color: #696A6D;
}

.footer dl dd,
.footer dl dt {
  color: #6B6B6B;
  font-size: 0.9375vw;
  font-weight: bold;
}

.ercode img {
  width: 5.520833vw;
  height: 5.520833vw;
  box-shadow: 1px 1px;
}

.prev {
  width: 0;
  height: 0;
  border: 0.325vw solid #FFFFFF;
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-left-color: transparent;
}

.next {
  width: 0;
  height: 0;
  border: 0.325vw solid #FFFFFF;
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-right-color: transparent;
  margin-left: 0.8333vw;
}

.open-poup {
  display: flex;
  float: left;
  margin-top: 10px;
  color: #ffffff;
  background: transparent;
  font-size: 0.8333vw;
  align-items: center;
  margin-top: 1.770833vw;
}

.video_icon {
  width: 1.25vw;
  height: 1.25vw;
  background: url(../image/video.svg);
  background-size: cover;
  display: inline-block;
  margin-right: 0.5208vw;
}

.mask {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .5);
  top: 0;
  left: 0;
  z-index: 1000;
  display: none;
}

.modal {
  width: 50vw;
  position: fixed;
  margin: auto;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1001;
  background: #ffffff;
}

.video-content video {
  width: 100%;
}

#video_modal {
  display: none;
}

.hui_icon {
  background: url(../image/hui.png);
  width: 20px;
  height: 20px;
  background-size: cover;
  display: inline-block;
  vertical-align: middle;
}

.video_list {
  display: flex;
  flex-flow: wrap;
  justify-content: space-between;
}

.video_item {
  width: 21.7vw;
  margin-bottom: 1.875vw;
}

.video_item .news_info p {
  color: #DCDCDC;
  font-weight: bold;
}

.video_item h2 {
  margin-top: 0.8333vw;
}

.video_item a {
  display: block;
}

.video_pic {
  position: relative;
}

.video_pic video {
  width: 100%;
}

.video_pic:after {
  content: '';
  width: 2.5vw;
  height: 2.5vw;
  background: url(../image/video.svg);
  background-size: cover;
  display: none;
  margin-right: 0.5208vw;
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.video_item:hover h2 {
  color: #009B4C;
}

input[type='checkbox'] {
  appearance: checkbox;
  -moz-appearance: checkbox;
  -webkit-appearance: checkbox;
  margin-right: 0.625vw;
}

.checkbox_list {
  width: 100%;
  display: flex;
  /*justify-content: space-between;*/
  color: #737373;
  margin-bottom: 1.5625vw;
}

.checkbox_list label {
  margin-left: 50px;
}

.pic_list {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.5625vw;
}

.add_pic {
  width: 6.7708333vw;
  height: 6.7708333vw;
  background: #F8F8F8 url(../image/add.png);
  border: 1px solid #EDEDED;
  position: relative;
  background-size: 2vw 2vw;
  background-repeat: no-repeat;
  background-position: center center;
}

.add_pic input {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
}

.pic_item {
  width: 6.7708333vw;
}

.pic_item span {
  margin-top: 0.7292vw;
  font-size: 0.7292vw;
  color: #737373;
  display: block;
  text-align: center;
}

.pa4 .form .btn.cabguan_btn {
  width: 100%;
  margin-top: 1.5vw;
}

.search_box table {
  width: 100%;
}

.search_box table tr th {
  color: #ffffff;
  font-size: 0.8333vw;
  background: #009B4C;
  padding: 1.25vw 0;
}

.search_box table tr td {
  text-align: center;
  font-size: 0.8333vw;
  padding: 1.25vw 0;
  color: #000000;
}

.search_box table tr td img {
  width: 1.927083333vw;
}

.search_box table tr:nth-child(2n+1) {
  background: #F5F5F5;
}

.container-el {
  display: inline-flex;
  align-items: flex-start;
  flex-wrap: nowrap;
}

.col-el {
  width: 16.777%;
}

.el {
  transition: all .3s ease;
  padding: 10px;
}

.el:hover {
  box-shadow: 1px 1px 4px rgba(0, 0, 0, .24);
}

.about-time .swiper-container {
  overflow: inherit;
}