@charset "utf-8";
.ones-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.twos-text {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.clearfix:after,
.clearfix:before {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
}
.clearfix {
  zoom: 1;
}
.picture {
  /*position: relative;*/
  overflow: hidden;
  /*z-index: 10;*/
}
.picture img {
  transition: all 1.8s ease-in-out;
}
.each-item:hover .picture img {
  transform: scale(1.1);
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  zoom: 1.1 \9;
}
/*flex 布局*/
.flex {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.inline-flex {
  display: -webkit-inline-flex;
  display: inline-flex;
}
.flex-hc {
  -webkit-box-pack: center;
  -moz-justify-content: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.flex-zBetween {
  -webkit-box-pack: justify;
  -moz-justify-content: space-between;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.flex-zEnd {
  -webkit-box-pack: end;
  -moz-justify-content: flex-end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.flex-zStart {
  -webkit-box-pack: start;
  -moz-justify-content: flex-start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.flex-ac {
  -webkit-box-align: center;
  -moz-align-items: center;
  -webkit-align-items: center;
  align-items: center;
}
.flex-cStart {
  -webkit-box-align: start;
  -moz-align-items: flex-start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.flex-cEnd {
  -webkit-box-align: end;
  -moz-align-items: flex-end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.flex-cBaseline {
  -webkit-box-align: baseline;
  -moz-align-items: baseline;
  -webkit-align-items: baseline;
  align-items: baseline;
}
.flex-cStretch {
  -webkit-box-align: stretch;
  -moz-align-items: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
}
.flex-zTopBottom {
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -moz-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.flex-zBottomTop {
  -webkit-box-pack: end;
  -webkit-box-direction: reverse;
  -webkit-box-orient: vertical;
  -moz-flex-direction: column-reverse;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
.flex-zLeftRight {
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -moz-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
.flex-zRightLeft {
  -webkit-box-pack: end;
  -webkit-box-direction: reverse;
  -webkit-box-orient: horizontal;
  -moz-flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.flex-shrink {
  -webkit-box-flex: 0;
  -moz-flex-shrink: 0;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.flex-center {
  -webkit-align-content: center;
  align-content: center;
}
.flex-start {
  -webkit-align-content: flex-start;
  align-content: flex-start;
}
.flex-end {
  -webkit-align-content: flex-end;
  align-content: flex-end;
}
.flex-between {
  -webkit-align-content: space-between;
  align-content: space-between;
}
.flex-container {
  -webkit-align-content: space-around;
  align-content: space-around;
}
.flex-wrap {
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
}
.flex-nowrap {
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  -o-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.flex_bd {
  -prefix-box-flex: 1;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
* {
  padding: 0;
  margin: 0;
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  font-size: calc(100vw / 19.2);
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "SourceHanSansCN-Light", "Microsoft YaHei", "PingFang SC";
}
@media screen and (min-width: 1901px) {
  html {
    font-size: 100px;
  }
}
@media screen and (max-width: 1580px) {
  html {
    font-size: 66px;
  }
}
@media screen and (max-width: 480px) {
  html {
    font-size: calc(100vw / 7.5);
  }
}
body {
  min-height: 100%;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  background: #fff;
  font-family: "SourceHanSansCN-Light", "Microsoft YaHei", "PingFang SC";
}
@media screen and (max-width: 1580px) {
  body {
    font-size: 14px;
  }
}
@media screen and (max-width: 1580px) and screen and (max-width: 1580px) {
  body {
    font-size: clamp(12px, 0.14rem, 14px);
  }
}
@media screen and (max-width: 1580px) and screen and (max-width: 991px) {
  body {
    font-size: 13px;
  }
}
@media screen and (max-width: 767px) {
  body {
    font-size: .28rem;
  }
}
img {
  max-width: 100%;
  border: 0;
  vertical-align: top;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: inherit;
  font-style: inherit;
  font-size: inherit;
  font-weight: normal;
}
a,
a:hover,
a:focus {
  text-decoration: none;
}
input,
button {
  -webkit-appearance: none;
  border-radius: 0;
}
button {
  cursor: pointer;
}
input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
textarea {
  overflow: auto;
}
input,
button,
textarea,
select {
  border: 0;
  font-family: inherit;
  font-style: inherit;
  font-size: inherit;
  font-weight: normal;
  color: inherit;
  background: transparent;
}
select {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  white-space: nowrap;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
select::-ms-expand {
  display: none;
}
table {
  border-collapse: collapse;
}
.overflow {
  overflow: hidden;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
.clear {
  zoom: 1;
}
.clear:after {
  content: '';
  display: block;
  clear: both;
}
.contain {
  max-width: 1350px;
  width: 70.3125%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1580px) {
  .contain {
    max-width: 80%;
    width: 80%;
  }
}
@media screen and (max-width: 1260px) {
  .contain {
    max-width: 90%;
    width: 90%;
  }
}
.c-padding {
  padding-left: 4%;
  padding-right: 4%;
  box-sizing: border-box;
}
@media screen and (max-width: 991px) {
  .c-padding {
    padding-left: 5%;
    padding-right: 5%;
  }
}
.bgcolor {
  background: #fafafa;
}
@font-face {
  font-family: "SourceHanSansCN-Light";
  src: url("https://font.fonwi.com/xinweb/addfile/taige/fonts/SourceHanSansCN-Light.otf");
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SourceHanSansCN-Bold";
  src: url("https://font.fonwi.com/xinweb/addfile/taige/fonts/SourceHanSansCN-Bold.otf");
  font-display: swap;
}
@font-face {
  font-family: "SourceHanSansCN-Regular";
  src: url("https://font.fonwi.com/xinweb/addfile/taige/fonts/SourceHanSansCN-Regular.otf");
  font-display: swap;
}
@font-face {
  font-family: "SourceHanSansCN-Medium";
  src: url("https://font.fonwi.com/xinweb/addfile/taige/fonts/SourceHanSansCN-Medium.otf");
  font-display: swap;
}
.pt60 {
  padding-top: 0.6rem;
}
@media screen and (max-width: 1900px) {
  .pt60 {
    padding-top: 3.125vw;
  }
}
@media screen and (max-width: 1260px) {
  .pt60 {
    padding-top: 1rem;
  }
}
.pb60 {
  padding-bottom: 0.6rem;
}
@media screen and (max-width: 1900px) {
  .pb60 {
    padding-bottom: 3.125vw;
  }
}
@media screen and (max-width: 1260px) {
  .pb60 {
    padding-bottom: 1rem;
  }
}
.pt70 {
  padding-top: 0.7rem;
}
@media screen and (max-width: 1900px) {
  .pt70 {
    padding-top: 3.645833333333333vw;
  }
}
@media screen and (max-width: 1260px) {
  .pt70 {
    padding-top: 1rem;
  }
}
.pb70 {
  padding-bottom: 0.7rem;
}
@media screen and (max-width: 1900px) {
  .pb70 {
    padding-bottom: 3.645833333333333vw;
  }
}
@media screen and (max-width: 1260px) {
  .pb70 {
    padding-bottom: 1rem;
  }
}
.pt90 {
  padding-top: 0.9rem;
}
@media screen and (max-width: 1900px) {
  .pt90 {
    padding-top: 4.6875vw;
  }
}
@media screen and (max-width: 1260px) {
  .pt90 {
    padding-top: 1rem;
  }
}
.pb90 {
  padding-bottom: 0.9rem;
}
@media screen and (max-width: 1900px) {
  .pb90 {
    padding-bottom: 4.6875vw;
  }
}
@media screen and (max-width: 1260px) {
  .pb90 {
    padding-bottom: 1rem;
  }
}
.pt100 {
  padding-top: 1rem;
}
@media screen and (max-width: 1900px) {
  .pt100 {
    padding-top: 5.208333333333333vw;
  }
}
@media screen and (max-width: 1260px) {
  .pt100 {
    padding-top: 1rem;
  }
}
.pb100 {
  padding-bottom: 1rem;
}
@media screen and (max-width: 1900px) {
  .pb100 {
    padding-bottom: 5.208333333333333vw;
  }
}
@media screen and (max-width: 1260px) {
  .pb100 {
    padding-bottom: 1rem;
  }
}
.font12 {
  font-size: 12px;
}
.font14 {
  font-size: 14px;
}
@media screen and (max-width: 1580px) {
  .font14 {
    font-size: clamp(12px, 0.14rem, 14px);
  }
}
@media screen and (max-width: 991px) {
  .font14 {
    font-size: 13px;
  }
}
.font16 {
  font-size: 16px;
}
@media screen and (max-width: 1580px) {
  .font16 {
    font-size: clamp(13px, 0.16rem, 16px);
  }
}
@media screen and (max-width: 991px) {
  .font16 {
    font-size: 14px;
  }
}
.font17 {
  font-size: 17px;
}
@media screen and (max-width: 1580px) {
  .font17 {
    font-size: clamp(14px, 0.17rem, 17px);
  }
}
@media screen and (max-width: 991px) {
  .font17 {
    font-size: 14px;
  }
}
.font18 {
  font-size: 18px;
}
@media screen and (max-width: 1580px) {
  .font18 {
    font-size: clamp(15px, 0.18rem, 18px);
  }
}
@media screen and (max-width: 991px) {
  .font18 {
    font-size: 16px;
  }
}
.font19 {
  font-size: 19px;
}
@media screen and (max-width: 1580px) {
  .font19 {
    font-size: clamp(16px, 0.19rem, 19px);
  }
}
@media screen and (max-width: 991px) {
  .font19 {
    font-size: 18px;
  }
}
.font20 {
  font-size: 20px;
}
@media screen and (max-width: 1580px) {
  .font20 {
    font-size: clamp(18px, 0.2rem, 20px);
  }
}
@media screen and (max-width: 991px) {
  .font20 {
    font-size: 19px;
  }
}
.font22 {
  font-size: 22px;
}
@media screen and (max-width: 1580px) {
  .font22 {
    font-size: clamp(19px, 0.22rem, 22px);
  }
}
@media screen and (max-width: 991px) {
  .font22 {
    font-size: 20px;
  }
}
.font24 {
  font-size: 24px;
}
@media screen and (max-width: 1580px) {
  .font24 {
    font-size: clamp(20px, 0.24rem, 24px);
  }
}
@media screen and (max-width: 991px) {
  .font24 {
    font-size: 22px;
  }
}
.font26 {
  font-size: 26px;
}
@media screen and (max-width: 1580px) {
  .font26 {
    font-size: clamp(21px, 0.26rem, 26px);
  }
}
@media screen and (max-width: 991px) {
  .font26 {
    font-size: 22px;
  }
}
.font27 {
  font-size: 27px;
}
@media screen and (max-width: 1580px) {
  .font27 {
    font-size: clamp(21px, 0.27rem, 27px);
  }
}
@media screen and (max-width: 991px) {
  .font27 {
    font-size: 22px;
  }
}
.font30 {
  font-size: 30px;
}
@media screen and (max-width: 1580px) {
  .font30 {
    font-size: clamp(21px, 0.3rem, 30px);
  }
}
@media screen and (max-width: 991px) {
  .font30 {
    font-size: 24px;
  }
}
.font32 {
  font-size: 32px;
}
@media screen and (max-width: 1580px) {
  .font32 {
    font-size: clamp(21px, 0.32rem, 32px);
  }
}
@media screen and (max-width: 991px) {
  .font32 {
    font-size: 24px;
  }
}
.font36 {
  font-size: 36px;
}
@media screen and (max-width: 1580px) {
  .font36 {
    font-size: clamp(22px, 0.36rem, 36px);
  }
}
@media screen and (max-width: 991px) {
  .font36 {
    font-size: 24px;
  }
}
.font40 {
  font-size: 40px;
}
@media screen and (max-width: 1580px) {
  .font40 {
    font-size: clamp(24px, 0.4rem, 40px);
  }
}
@media screen and (max-width: 991px) {
  .font40 {
    font-size: 26px;
  }
}
.font45 {
  font-size: 45px;
}
@media screen and (max-width: 1580px) {
  .font45 {
    font-size: clamp(24px, 0.45rem, 45px);
  }
}
@media screen and (max-width: 991px) {
  .font45 {
    font-size: 26px;
  }
}
.font48 {
  font-size: 48px;
}
@media screen and (max-width: 1580px) {
  .font48 {
    font-size: clamp(24px, 0.48rem, 48px);
  }
}
@media screen and (max-width: 991px) {
  .font48 {
    font-size: 26px;
  }
}
.font50 {
  font-size: 50px;
}
@media screen and (max-width: 1580px) {
  .font50 {
    font-size: clamp(24px, 0.5rem, 50px);
  }
}
@media screen and (max-width: 991px) {
  .font50 {
    font-size: 26px;
  }
}
.font75 {
  font-size: 75px;
}
@media screen and (max-width: 1580px) {
  .font75 {
    font-size: clamp(28px, 0.75rem, 75px);
  }
}
@media screen and (max-width: 991px) {
  .font75 {
    font-size: 32px;
  }
}
#interval {
  height: 1.55rem;
}
@media screen and (max-width: 1260px) {
  #interval {
    height: 1.5rem;
  }
}
.public-btn span,
.public-btn a {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 1rem;
  height: 0.36rem;
  color: #ffffff;
  font-size: 16px;
  text-transform: uppercase;
  transition: all 0.4s ease-in-out;
  background: #e67817;
  padding: 0 0.18rem;
  box-sizing: border-box;
  overflow: hidden;
}
@media screen and (max-width: 1580px) {
  .public-btn span,
  .public-btn a {
    font-size: clamp(13px, 0.16rem, 16px);
  }
}
@media screen and (max-width: 991px) {
  .public-btn span,
  .public-btn a {
    font-size: 14px;
  }
}
@media screen and (max-width: 1260px) {
  .public-btn span,
  .public-btn a {
    min-width: 1.5rem;
    height: 0.5rem;
    padding: 0 0.2rem;
  }
}
@media screen and (max-width: 991px) {
  .public-btn span,
  .public-btn a {
    padding: 0 0.25rem;
    height: 0.6rem;
  }
}
@media screen and (max-width: 480px) {
  .public-btn span,
  .public-btn a {
    padding: 0 0.3rem;
  }
}
.public-btn span img,
.public-btn a img {
  display: inline-block;
  margin-right: 5px;
  width: 0.17rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1260px) {
  .public-btn span img,
  .public-btn a img {
    width: 15px;
  }
}
.public-btn span:before,
.public-btn a:before {
  content: '';
  position: absolute;
  top: 50%;
  min-width: calc(160px * 3);
  min-height: calc(160px * 3);
  background-color: transparent;
  animation-name: wave-animation;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  transition: all 1s linear;
  opacity: .3;
  left: -35px;
  border-radius: 35%;
  animation-duration: 10s;
}
.public-btn span:after,
.public-btn a:after {
  content: '';
  position: absolute;
  top: 50%;
  min-width: calc(160px * 3);
  min-height: calc(160px * 3);
  background-color: transparent;
  animation-name: wave-animation;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  transition: all 1s linear;
  left: -10px;
  opacity: .5;
  border-radius: 37%;
  animation-duration: 10s;
}
.public-btn span:after:after,
.public-btn a:after:after {
  background: #e61f18;
  left: 128%;
}
.public-btn span:hover,
.public-btn a:hover {
  color: #FFFFFF;
  background: #e67817;
}
.public-btn span:hover:before,
.public-btn a:hover:before {
  background: #FFFFFF;
  left: 125%;
  opacity: 1;
}
.public-btn span:hover:after,
.public-btn a:hover:after {
  background: #FFFFFF;
  left: 128%;
  opacity: 1;
}
.public-btn span.general,
.public-btn a.general {
  min-width: 1.3rem;
  height: 0.46rem;
  border-radius: 5px;
}
@media screen and (max-width: 1260px) {
  .public-btn span.general,
  .public-btn a.general {
    height: 0.5rem;
    padding: 0 0.2rem;
  }
}
@media screen and (max-width: 991px) {
  .public-btn span.general,
  .public-btn a.general {
    padding: 0 0.25rem;
    height: 0.6rem;
  }
}
@media screen and (max-width: 480px) {
  .public-btn span.general,
  .public-btn a.general {
    padding: 0 0.3rem;
  }
}
.public-btn span.button_w,
.public-btn a.button_w {
  color: #e67817;
  background: #ffffff;
  border: #e67817 solid 1px;
}
.public-btn span.button_w img,
.public-btn a.button_w img {
  -webkit-filter: none;
  filter: none;
}
.public-btn span.button_w:hover,
.public-btn a.button_w:hover {
  color: #ffffff;
  background: #e67817;
}
.public-btn span.button_w:hover img,
.public-btn a.button_w:hover img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.public-btn.large span,
.public-btn.large a {
  min-width: 1.3rem;
  height: 0.42rem;
}
@media screen and (max-width: 1260px) {
  .public-btn.large span,
  .public-btn.large a {
    height: 0.5rem;
    padding: 0 0.2rem;
  }
}
@media screen and (max-width: 991px) {
  .public-btn.large span,
  .public-btn.large a {
    padding: 0 0.25rem;
    height: 0.6rem;
  }
}
@media screen and (max-width: 480px) {
  .public-btn.large span,
  .public-btn.large a {
    padding: 0 0.3rem;
  }
}
.public-btn.bigger span,
.public-btn.bigger a {
  min-width: 1.2rem;
  height: 0.5rem;
}
@media screen and (max-width: 1260px) {
  .public-btn.bigger span,
  .public-btn.bigger a {
    padding: 0 0.2rem;
  }
}
@media screen and (max-width: 991px) {
  .public-btn.bigger span,
  .public-btn.bigger a {
    padding: 0 0.25rem;
    height: 0.6rem;
  }
}
@media screen and (max-width: 480px) {
  .public-btn.bigger span,
  .public-btn.bigger a {
    padding: 0 0.3rem;
  }
}
.public-btn.white span,
.public-btn.white a {
  color: #e67817;
  background: #ffffff;
  border: #e67817 solid 1px;
}
@media screen and (max-width: 1260px) {
  .public-btn.white span,
  .public-btn.white a {
    height: 0.5rem;
    padding: 0 0.2rem;
  }
}
@media screen and (max-width: 991px) {
  .public-btn.white span,
  .public-btn.white a {
    padding: 0 0.25rem;
    height: 0.6rem;
  }
}
@media screen and (max-width: 480px) {
  .public-btn.white span,
  .public-btn.white a {
    padding: 0 0.3rem;
  }
}
.public-btn.white span img,
.public-btn.white a img {
  -webkit-filter: none;
  filter: none;
}
.public-btn.white span:hover,
.public-btn.white a:hover {
  color: #ffffff;
  background: #e67817;
}
.public-btn.white span:hover img,
.public-btn.white a:hover img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
@keyframes wave-animation {
  0% {
    transform: translate(0, -50%) rotateZ(0deg);
  }
  50% {
    transform: translate(-2%, -50%) rotateZ(180deg);
  }
  100% {
    transform: translate(0, -50%) rotateZ(360deg);
  }
}
.header {
  position: relative;
  left: 0;
  top: 0;
  z-index: 15;
  width: 100%;
}
@media screen and (max-width: 1023px) {
  .header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 1023px) {
  .header .contain {
    max-width: 100%;
    width: 100%;
  }
}
@media screen and (max-width: 1023px) {
  .header .box {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.header .box .logo a {
  position: relative;
  display: flex;
  align-items: center;
  height: 0.7rem;
}
@media screen and (max-width: 1023px) {
  .header .box .logo a {
    height: 60px;
  }
}
.header .box .logo a img {
  max-height: 73%;
}
.header .box .head-nation {
  position: relative;
}
@media screen and (max-width: 1023px) {
  .header .box .head-nation {
    display: none;
  }
}
.header .box .head-nation .title {
  display: flex;
  align-items: center;
  height: 0.5rem;
  padding-right: 15px;
  box-sizing: border-box;
  cursor: pointer;
}
@media screen and (max-width: 1023px) {
  .header .box .head-nation .title {
    justify-content: center;
    width: 40px;
    height: 60px;
    padding-right: 0;
  }
}
.header .box .head-nation .title span {
  font-family: "SourceHanSansCN-Regular";
  color: #349734;
  font-size: 16px;
}
@media screen and (max-width: 1580px) {
  .header .box .head-nation .title span {
    font-size: clamp(13px, 0.16rem, 16px);
  }
}
@media screen and (max-width: 991px) {
  .header .box .head-nation .title span {
    font-size: 14px;
  }
}
@media screen and (max-width: 1023px) {
  .header .box .head-nation .title span {
    display: none;
  }
}
.header .box .head-nation .title i {
  position: absolute;
  right: 0;
  top: 0;
  width: 10px;
  height: 100%;
  background: url(../images/arrow.png) center right no-repeat;
  background-size: 5px auto;
}
@media screen and (max-width: 1023px) {
  .header .box .head-nation .title i {
    display: none;
  }
}
.header .box .head-nation .title img {
  display: none;
  width: 50%;
}
@media screen and (max-width: 1023px) {
  .header .box .head-nation .title img {
    display: inline-block;
  }
}
.header .box .head-nation .dropdown {
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  top: 100%;
  z-index: 100;
  min-width: 100%;
  border: #349734 solid 1px;
  box-sizing: border-box;
  display: none;
}
.header .box .head-nation .dropdown ul {
  width: max-content;
  background: #FFFFFF;
  padding: 0.1rem 0px;
  text-align: left;
  overflow: hidden;
}
@media screen and (max-width: 1580px) and (min-width: 992px) {
  .header .box .head-nation .dropdown ul {
    padding: 0.52083vw 0;
  }
}
.header .box .head-nation .dropdown ul li {
  list-style: none;
}
.header .box .head-nation .dropdown ul li a {
  position: relative;
  display: block;
  font-size: 14px;
  color: #333333;
  line-height: 2.2;
  min-width: 100%;
  padding-left: 0.42rem;
  padding-right: 0.42rem;
  white-space: nowrap;
  box-sizing: border-box;
  list-style: none;
}
@media screen and (max-width: 1580px) {
  .header .box .head-nation .dropdown ul li a {
    font-size: clamp(12px, 0.14rem, 14px);
  }
}
@media screen and (max-width: 991px) {
  .header .box .head-nation .dropdown ul li a {
    font-size: 13px;
  }
}
@media screen and (max-width: 1580px) and (min-width: 992px) {
  .header .box .head-nation .dropdown ul li a {
    min-width: 4.6875vw;
  }
}
.header .box .head-nation .dropdown ul li a::before {
  content: '';
  position: absolute;
  left: 0.2rem;
  top: 0;
  width: 0.15rem;
  height: 100%;
  background: url(../images/tick.png) center no-repeat;
  background-size: 100% auto;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.header .box .head-nation .dropdown ul li a:hover {
  color: #349734;
}
.header .box .head-nation .dropdown ul li.on a {
  color: #349734;
}
.header .box .head-nation .dropdown ul li.on a::before {
  opacity: 1;
}
.header .wrap {
  position: relative;
  background: #f5f5f5;
}
@media screen and (max-width: 1023px) {
  .header .wrap {
    background: none;
  }
}
.header .wrap .m-nation {
  flex-shrink: 0;
  margin-bottom: 20px;
  display: none;
}
@media screen and (max-width: 1023px) {
  .header .wrap .m-nation {
    display: block;
  }
}
.header .wrap .m-nation .title {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 0.5rem;
  padding-right: 15px;
  box-sizing: border-box;
  cursor: pointer;
}
.header .wrap .m-nation .title span {
  font-family: "SourceHanSansCN-Regular";
  color: #349734;
  font-size: 16px;
}
@media screen and (max-width: 1580px) {
  .header .wrap .m-nation .title span {
    font-size: clamp(13px, 0.16rem, 16px);
  }
}
@media screen and (max-width: 991px) {
  .header .wrap .m-nation .title span {
    font-size: 14px;
  }
}
.header .wrap .m-nation .title i {
  position: absolute;
  right: 0;
  top: 0;
  width: 10px;
  height: 100%;
  background: url(../images/arrow.png) center right no-repeat;
  background-size: 5px auto;
}
.header .wrap .version-list {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 15;
  width: 100%;
  height: 100vh;
  padding: 5% 5% 0;
  background: #ffffff;
  box-sizing: border-box;
  display: none;
}
.header .wrap .version-list .re-icon {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 40px;
  height: 40px;
}
.header .wrap .version-list .re-icon img {
  width: 25%;
}
.header .wrap .version-list .content {
  margin-top: 25px;
  padding-left: 5%;
  padding-right: 5%;
  box-sizing: border-box;
}
.header .wrap .version-list .content ul {
  text-align: left;
  overflow: hidden;
}
.header .wrap .version-list .content ul li {
  list-style: none;
}
.header .wrap .version-list .content ul li a {
  position: relative;
  display: block;
  font-size: 16px;
  color: #333333;
  line-height: 2.2;
  min-width: 100%;
  padding-left: 0.42rem;
  padding-right: 0.42rem;
  white-space: nowrap;
  box-sizing: border-box;
  list-style: none;
}
@media screen and (max-width: 1580px) {
  .header .wrap .version-list .content ul li a {
    font-size: clamp(13px, 0.16rem, 16px);
  }
}
@media screen and (max-width: 991px) {
  .header .wrap .version-list .content ul li a {
    font-size: 14px;
  }
}
.header .wrap .version-list .content ul li a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 13px;
  height: 100%;
  background: url(../images/tick.png) center no-repeat;
  background-size: 100% auto;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.header .wrap .version-list .content ul li a:hover {
  color: #349734;
}
.header .wrap .version-list .content ul li.on a {
  color: #349734;
}
.header .wrap .version-list .content ul li.on a::before {
  opacity: 1;
}
.header .wrap .nav {
  margin-right: 0.25rem;
}
@media screen and (max-width: 1023px) {
  .header .wrap .nav {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    position: fixed;
    left: 0;
    top: 60px;
    width: 100%;
    height: calc(100vh - 60px);
    padding: 0 5%;
    box-sizing: border-box;
    margin-right: 0;
    background: #ffffff;
  }
}
.header .wrap .nav.active {
  display: flex;
}
.header .wrap .nav.active ul {
  flex-direction: column;
  padding: 30px 0;
}
.header .wrap .nav.active ul li {
  width: 100%;
  padding: 0;
  border-bottom: rgba(1, 109, 47, 0.1) solid 1px;
}
.header .wrap .nav.active ul li > span,
.header .wrap .nav.active ul li > a {
  font-size: 16px;
  height: 48px;
}
.header .wrap .nav > ul {
  padding: 0;
}
.header .wrap .nav > ul > li {
  padding: 0 0.4rem;
  list-style: none;
  transition: all 0.4s ease;
}
.header .wrap .nav > ul > li:first-child {
  padding-left: 0;
}
@media screen and (max-width: 1023px) {
  .header .wrap .nav > ul > li {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.header .wrap .nav > ul > li > span,
.header .wrap .nav > ul > li > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 0.6rem;
  padding: 0 0.08rem;
  font-family: "SourceHanSansCN-Regular";
  color: #349734;
  font-size: 18px;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media screen and (max-width: 1580px) {
  .header .wrap .nav > ul > li > span,
  .header .wrap .nav > ul > li > a {
    font-size: clamp(15px, 0.18rem, 18px);
  }
}
@media screen and (max-width: 991px) {
  .header .wrap .nav > ul > li > span,
  .header .wrap .nav > ul > li > a {
    font-size: 16px;
  }
}
@media screen and (max-width: 1023px) {
  .header .wrap .nav > ul > li > span,
  .header .wrap .nav > ul > li > a {
    flex: 1;
    overflow: hidden;
    padding: 0;
    justify-content: flex-start;
  }
}
.header .wrap .nav > ul > li > span::before,
.header .wrap .nav > ul > li > a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 0;
  height: 0.04rem;
  background: #349734;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media screen and (max-width: 1023px) {
  .header .wrap .nav > ul > li > span::before,
  .header .wrap .nav > ul > li > a::before {
    display: none;
  }
}
.header .wrap .nav > ul > li i {
  display: none;
  width: 40px;
  height: 15px;
  background: url(../images/icon6.png) center right no-repeat;
  background-size: 8px auto;
}
@media screen and (max-width: 1023px) {
  .header .wrap .nav > ul > li i {
    display: block;
  }
}
.header .wrap .nav > ul > li:hover > span,
.header .wrap .nav > ul > li:hover > a {
  color: #00652b;
}
.header .wrap .nav > ul > li:hover > span::before,
.header .wrap .nav > ul > li:hover > a::before {
  width: 100%;
}
.header .wrap .nav > ul > li:hover i {
  background: url(../images/icon6a.png) center right no-repeat;
  background-size: 8px auto;
}
.header .wrap .nav > ul > li.on > span,
.header .wrap .nav > ul > li.on > a {
  color: #00652b;
}
.header .wrap .nav > ul > li.on > span::before,
.header .wrap .nav > ul > li.on > a::before {
  width: 100%;
}
@media screen and (max-width: 1023px) {
  .header .searches {
    position: relative;
    margin-right: 10px;
  }
}
@media screen and (max-width: 1023px) {
  .header .searches.active .search-close {
    display: flex;
  }
}
@media screen and (max-width: 1023px) {
  .header .searches.active .search-icon {
    opacity: 0;
    visibility: hidden;
  }
}
@media screen and (min-width: 1024px) {
  .header .searches.active .content .search-form {
    width: 2.5rem;
  }
}
.header .searches.active .content .search-form .form-body {
  border-radius: 0;
}
.header .searches.active .content .trending {
  display: block;
}
.header .searches .search-icon {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 60px;
}
@media screen and (max-width: 1023px) {
  .header .searches .search-icon {
    display: flex;
  }
}
.header .searches .search-icon img {
  width: 50%;
}
.header .searches .search-close {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.header .searches .search-close img {
  width: 50%;
}
.header .searches .content {
  position: relative;
}
@media screen and (max-width: 1023px) {
  .header .searches .content {
    position: fixed;
    left: 0;
    top: 60px;
    z-index: 15;
    width: 100%;
    height: calc(100vh - 60px);
    padding: 0 5%;
    background: #ffffff;
    box-sizing: border-box;
    display: none;
  }
}
.header .searches .content .search-form {
  width: 1.75rem;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media screen and (max-width: 1023px) {
  .header .searches .content .search-form {
    padding-top: 25px;
    width: 100%;
  }
}
.header .searches .content .search-form .form-body {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 0.34rem;
  box-sizing: border-box;
  background: #ffffff;
}
.header .searches .content .search-form .form-body input {
  width: calc(100% - 0.34rem);
  height: 0.34rem;
  font-size: 14px;
  color: #333333;
  text-align: left;
  padding-left: 0.18rem;
  padding-right: 0.1rem;
  box-sizing: border-box;
}
@media screen and (max-width: 1580px) {
  .header .searches .content .search-form .form-body input {
    font-size: clamp(12px, 0.14rem, 14px);
  }
}
@media screen and (max-width: 991px) {
  .header .searches .content .search-form .form-body input {
    font-size: 13px;
  }
}
@media screen and (max-width: 1023px) {
  .header .searches .content .search-form .form-body input {
    padding-left: 20px;
    padding-right: 15px;
    height: 48px;
    background: rgba(1, 109, 47, 0.05);
    font-size: 16px;
  }
}
.header .searches .content .search-form .form-body input::-webkit-input-placeholder {
  font-family: "SourceHanSansCN-Light";
  color: #aaaaaa;
}
.header .searches .content .search-form .form-body input::-moz-placeholder {
  font-family: "SourceHanSansCN-Light";
  color: #aaaaaa;
}
.header .searches .content .search-form .form-body input:-moz-placeholder {
  font-family: "SourceHanSansCN-Light";
  color: #aaaaaa;
}
.header .searches .content .search-form .form-body input:-ms-input-placeholder {
  font-family: "SourceHanSansCN-Light";
  color: #aaaaaa;
}
.header .searches .content .search-form .form-body .icon {
  line-height: 1;
  flex-shrink: 0;
  width: 0.34rem;
}
@media screen and (max-width: 1023px) {
  .header .searches .content .search-form .form-body .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: #016d2f;
  }
}
.header .searches .content .search-form .form-body .icon img {
  max-width: 50%;
}
@media screen and (max-width: 1023px) {
  .header .searches .content .search-form .form-body .icon img {
    max-width: 40%;
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
  }
}
.header .searches .content .trending {
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
}
@media screen and (min-width: 1024px) {
  .header .searches .content .trending {
    position: absolute;
    left: 0;
    top: 100%;
    display: none;
    background: #FFFFFF;
    box-shadow: 1px 1px 11px 0 rgba(126, 136, 144, 0.3);
  }
}
.header .searches .content .trending .subtitle {
  color: #333333;
  font-size: 14px;
  margin-bottom: 10px;
}
@media screen and (max-width: 1580px) {
  .header .searches .content .trending .subtitle {
    font-size: clamp(12px, 0.14rem, 14px);
  }
}
@media screen and (max-width: 991px) {
  .header .searches .content .trending .subtitle {
    font-size: 13px;
  }
}
@media screen and (max-width: 1023px) {
  .header .searches .content .trending .subtitle {
    font-size: 16px;
  }
}
.header .searches .content .trending ul li {
  margin-bottom: 5px;
}
.header .searches .content .trending ul li a {
  color: #333333;
  font-size: 14px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media screen and (max-width: 1580px) {
  .header .searches .content .trending ul li a {
    font-size: clamp(12px, 0.14rem, 14px);
  }
}
@media screen and (max-width: 991px) {
  .header .searches .content .trending ul li a {
    font-size: 13px;
  }
}
@media screen and (max-width: 1023px) {
  .header .searches .content .trending ul li a {
    font-size: 16px;
  }
}
.header .searches .content .trending ul li a:hover {
  color: #016d2f;
}
.header .phone-toggle {
  user-select: none;
  cursor: pointer;
  display: none;
}
@media screen and (max-width: 1023px) {
  .header .phone-toggle {
    display: block;
  }
}
.header .phone-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #016d2f;
  margin-bottom: 5px;
  transition: all 0.45s ease;
}
.header .phone-toggle span:last-of-type {
  margin-bottom: 0;
}
.header.white .phone-toggle span {
  background-color: #333333;
}
.header.whitebg .phone-toggle span {
  background-color: #333333;
}
.header .tg-navigation {
  width: 100%;
  overflow: hidden;
  position: relative;
  max-height: 0;
  transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
}
@media screen and (max-width: 1023px) {
  .header .tg-navigation {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 99;
    width: 100%;
    height: 100vh;
    background: #00652b;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}
.header .tg-navigation.active {
  max-height: 3000px;
  transition: max-height 1s ease-in;
}
.header .tg-navigation .icongather {
  position: absolute;
  left: 5%;
  top: 10px;
  z-index: 10;
  display: none;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  margin: auto;
}
@media screen and (max-width: 1023px) {
  .header .tg-navigation .icongather {
    display: flex;
  }
}
.header .tg-navigation .icongather .return-icon {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 40px;
  height: 40px;
}
.header .tg-navigation .icongather .return-icon img {
  width: 25%;
}
.header .tg-navigation .icongather .closing-icon {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 40px;
  height: 40px;
}
.header .tg-navigation .icongather .closing-icon img {
  width: 50%;
}
.header .tg-navigation .swiper {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #00652b;
}
@media screen and (max-width: 1023px) {
  .header .tg-navigation .swiper {
    padding-top: 100px;
  }
}
.header .tg-navigation .swiper .swiper-wrapper {
  align-items: stretch;
}
.header .tg-navigation .swiper .swiper-wrapper .swiper-slide {
  height: auto;
}
@media screen and (max-width: 1023px) {
  .header .tg-navigation .swiper .swiper-wrapper .swiper-slide .contain {
    max-width: 90%;
    width: 90%;
  }
}
@media screen and (min-width: 1024px) {
  .header .tg-navigation .swiper .swiper-wrapper .swiper-slide .pulldown {
    padding-top: 0.2rem;
    padding-bottom: 0.4rem;
  }
}
.header .tg-navigation .swiper .swiper-wrapper .swiper-slide .pulldown > ul {
  display: flex;
  padding-left: 0;
  gap: 0.8rem;
}
@media screen and (max-width: 1023px) {
  .header .tg-navigation .swiper .swiper-wrapper .swiper-slide .pulldown > ul {
    flex-direction: column;
    gap: 0;
  }
}
.header .tg-navigation .swiper .swiper-wrapper .swiper-slide .pulldown > ul > li {
  list-style: none;
  display: block;
  /* width: calc((100% - 3.2rem) / 5); */
  width: calc((100% - 3.2rem) / 4);
}
.header .tg-navigation .swiper .swiper-wrapper .swiper-slide .pulldown > ul > li.w100 {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .header .tg-navigation .swiper .swiper-wrapper .swiper-slide .pulldown > ul > li.w100 ul {
    display: grid;
    /* grid-template-columns: repeat(6, 1fr); */
    grid-template-columns: repeat(5,1fr);
    justify-content: space-between;
    gap: 0.1rem 0.3rem;
  }
}
.header .tg-navigation .swiper .swiper-wrapper .swiper-slide .pulldown > ul > li.auto {
  width: calc((100% - 2.4rem) / 4);
}
@media screen and (max-width: 1023px) {
  .header .tg-navigation .swiper .swiper-wrapper .swiper-slide .pulldown > ul > li.auto {
    width: 100%;
  }
}
@media screen and (max-width: 1023px) {
  .header .tg-navigation .swiper .swiper-wrapper .swiper-slide .pulldown > ul > li {
    width: 100%;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
  }
}
.header .tg-navigation .swiper .swiper-wrapper .swiper-slide .pulldown > ul > li .item-row {
  display: flex;
  align-items: stretch;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 0.15rem;
}
@media screen and (max-width: 1023px) {
  .header .tg-navigation .swiper .swiper-wrapper .swiper-slide .pulldown > ul > li .item-row {
    max-width: 560px;
    width: 100%;
    margin: auto;
  }
}
.header .tg-navigation .swiper .swiper-wrapper .swiper-slide .pulldown > ul > li .item-row .item {
  width: calc((100% - 40px) / 5);
}
@media screen and (max-width: 1023px) {
  .header .tg-navigation .swiper .swiper-wrapper .swiper-slide .pulldown > ul > li .item-row .item {
    width: 100%;
  }
}
.header .tg-navigation .swiper .swiper-wrapper .swiper-slide .pulldown > ul > li .item-row .item a {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  height: 1.55rem;
  padding: 15px;
  box-sizing: border-box;
  border: #ffffff solid 1px;
}
@media screen and (max-width: 1023px) {
  .header .tg-navigation .swiper .swiper-wrapper .swiper-slide .pulldown > ul > li .item-row .item a {
    height: 100px;
  }
}
.header .tg-navigation .swiper .swiper-wrapper .swiper-slide .pulldown > ul > li .item-row .item a .icon {
  margin-bottom: 10px;
}
.header .tg-navigation .swiper .swiper-wrapper .swiper-slide .pulldown > ul > li .item-row .item a .icon img {
  max-width: 0.36rem;
}
@media screen and (max-width: 1023px) {
  .header .tg-navigation .swiper .swiper-wrapper .swiper-slide .pulldown > ul > li .item-row .item a .icon img {
    max-width: 30px;
  }
}
.header .tg-navigation .swiper .swiper-wrapper .swiper-slide .pulldown > ul > li .item-row .item a .text {
  font-size: 18px;
  color: #FFFFFF;
}
@media screen and (max-width: 1580px) {
  .header .tg-navigation .swiper .swiper-wrapper .swiper-slide .pulldown > ul > li .item-row .item a .text {
    font-size: clamp(15px, 0.18rem, 18px);
  }
}
@media screen and (max-width: 991px) {
  .header .tg-navigation .swiper .swiper-wrapper .swiper-slide .pulldown > ul > li .item-row .item a .text {
    font-size: 16px;
  }
}
.header .tg-navigation .swiper .swiper-wrapper .swiper-slide .pulldown > ul > li .subtitle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "SourceHanSansCN-Bold";
  color: #FFFFFF;
  font-size: 16px;
  padding: 0.15rem 0;
  border-bottom: rgba(255, 255, 255, 0.2) solid 1px;
}
@media screen and (max-width: 1580px) {
  .header .tg-navigation .swiper .swiper-wrapper .swiper-slide .pulldown > ul > li .subtitle {
    font-size: clamp(13px, 0.16rem, 16px);
  }
}
@media screen and (max-width: 991px) {
  .header .tg-navigation .swiper .swiper-wrapper .swiper-slide .pulldown > ul > li .subtitle {
    font-size: 14px;
  }
}
@media screen and (max-width: 1023px) {
  .header .tg-navigation .swiper .swiper-wrapper .swiper-slide .pulldown > ul > li .subtitle {
    font-size: 16px;
  }
}
.header .tg-navigation .swiper .swiper-wrapper .swiper-slide .pulldown > ul > li .subtitle span {
  flex: 1;
  overflow: hidden;
}
.header .tg-navigation .swiper .swiper-wrapper .swiper-slide .pulldown > ul > li .subtitle > a {
  display: inline-block !important;
  width: auto !important;
}
.header .tg-navigation .swiper .swiper-wrapper .swiper-slide .pulldown > ul > li .subtitle i {
  display: none;
  width: 40px;
  height: 15px;
  background: url(../images/icon6b.png) center right no-repeat;
  background-size: 8px auto;
}
@media screen and (max-width: 1023px) {
  .header .tg-navigation .swiper .swiper-wrapper .swiper-slide .pulldown > ul > li .subtitle i {
    display: block;
  }
}
.header .tg-navigation .swiper .swiper-wrapper .swiper-slide .pulldown > ul > li .subtitle a {
  display: block;
  width: 100%;
  color: #FFFFFF;
}
.header .tg-navigation .swiper .swiper-wrapper .swiper-slide .pulldown > ul > li .subtitle .teaser {
  display: block !important;
  width: 100% !important;
  padding: 0.12rem 0.2rem;
  background: #349734;
  box-sizing: border-box;
}
@media screen and (max-width: 1023px) {
  .header .tg-navigation .swiper .swiper-wrapper .swiper-slide .pulldown > ul > li .subtitle .teaser {
    margin: 0.1rem auto;
    padding: 0.2rem 0.25rem;
  }
}
.header .tg-navigation .swiper .swiper-wrapper .swiper-slide .pulldown > ul > li .subtitle .teaser .icon {
  width: 100%;
  margin-bottom: 0.1rem;
}
.header .tg-navigation .swiper .swiper-wrapper .swiper-slide .pulldown > ul > li .subtitle .teaser .icon img {
  max-width: 0.39rem;
}
.header .tg-navigation .swiper .swiper-wrapper .swiper-slide .pulldown > ul > li .subtitle .teaser .sp1 {
  display: block;
  font-family: "SourceHanSansCN-Light";
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
}
@media screen and (max-width: 1580px) {
  .header .tg-navigation .swiper .swiper-wrapper .swiper-slide .pulldown > ul > li .subtitle .teaser .sp1 {
    font-size: clamp(13px, 0.16rem, 16px);
  }
}
@media screen and (max-width: 991px) {
  .header .tg-navigation .swiper .swiper-wrapper .swiper-slide .pulldown > ul > li .subtitle .teaser .sp1 {
    font-size: 14px;
  }
}
.header .tg-navigation .swiper .swiper-wrapper .swiper-slide .pulldown > ul > li .subtitle .teaser .sp2 {
  display: block;
  font-family: "SourceHanSansCN-Light";
  color: #FFFFFF;
  font-size: 16px;
}
@media screen and (max-width: 1580px) {
  .header .tg-navigation .swiper .swiper-wrapper .swiper-slide .pulldown > ul > li .subtitle .teaser .sp2 {
    font-size: clamp(13px, 0.16rem, 16px);
  }
}
@media screen and (max-width: 991px) {
  .header .tg-navigation .swiper .swiper-wrapper .swiper-slide .pulldown > ul > li .subtitle .teaser .sp2 {
    font-size: 14px;
  }
}
.header .tg-navigation .swiper .swiper-wrapper .swiper-slide .pulldown > ul > li ul {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  padding-top: 0.2rem;
}
@media screen and (max-width: 1023px) {
  .header .tg-navigation .swiper .swiper-wrapper .swiper-slide .pulldown > ul > li ul {
    display: none;
    padding-bottom: 0.25rem;
  }
}
@media screen and (max-width: 1023px) {
  .header .tg-navigation .swiper .swiper-wrapper .swiper-slide .pulldown > ul > li ul li {
    margin-bottom: 7px;
  }
}
.header .tg-navigation .swiper .swiper-wrapper .swiper-slide .pulldown > ul > li ul li a {
  position: relative;
  display: inline-block;
  padding-right: 0.2rem;
  color: #ffffff;
  font-size: 16px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media screen and (max-width: 1580px) {
  .header .tg-navigation .swiper .swiper-wrapper .swiper-slide .pulldown > ul > li ul li a {
    font-size: clamp(13px, 0.16rem, 16px);
  }
}
@media screen and (max-width: 991px) {
  .header .tg-navigation .swiper .swiper-wrapper .swiper-slide .pulldown > ul > li ul li a {
    font-size: 14px;
  }
}
.header .tg-navigation .swiper .swiper-wrapper .swiper-slide .pulldown > ul > li ul li a::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 0.1rem;
  height: 100%;
  background: url(../images/arrow-right.png) center right no-repeat;
  background-size: 70% auto;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.header .tg-navigation .swiper .swiper-wrapper .swiper-slide .pulldown > ul > li ul li a:hover {
  color: #f7a256;
}
.header .tg-navigation .swiper .swiper-wrapper .swiper-slide .pulldown > ul > li ul li a:hover::before {
  opacity: 1;
}
.mbox .header {
  background: #FFFFFF;
}
.mbox .phone-toggle {
  margin-top: -5px;
}
.mbox .phone-toggle span {
  background-color: #00652b;
}
.mbox .phone-toggle span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 5px);
}
.mbox .phone-toggle span:nth-child(2) {
  display: none;
}
.mbox .phone-toggle span:nth-child(3) {
  transform: rotate(45deg);
}
@media screen and (min-width: 1261px) {
  .phone-toggle {
    display: none !important;
  }
}
.footer {
  padding-top: 0.35rem;
  background: #515457;
  width: 100%;
  overflow: hidden;
}
.footer .contain.c-padding {
  padding-left: 0;
  padding-right: 0;
}
.footer .box .footer-nav {
  width: 100%;
}
.footer .box .footer-nav .row {
  display: flex;
  flex-direction: column;
  row-gap: 0.3rem;
  border-bottom: rgba(255, 255, 255, 0.1) solid 1px;
}
@media screen and (max-width: 719px) {
  .footer .box .footer-nav .row {
    gap: 20px;
  }
}
.footer .box .footer-nav .item {
  display: flex;
  align-items: flex-start;
  padding: 0.25rem 0;
}
@media screen and (max-width: 1024px) {
  .footer .box .footer-nav .item {
    flex-direction: column;
  }
}
.footer .box .footer-nav .item.on .title i {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.footer .box .footer-nav .item .title {
  position: relative;
  flex-shrink: 0;
  min-width: 13.56%;
  font-family: "SourceHanSansCN-Bold";
  font-size: 18px;
  color: #ffffff;
}
@media screen and (max-width: 1580px) {
  .footer .box .footer-nav .item .title {
    font-size: clamp(15px, 0.18rem, 18px);
  }
}
@media screen and (max-width: 991px) {
  .footer .box .footer-nav .item .title {
    font-size: 16px;
  }
}
@media screen and (max-width: 719px) {
  .footer .box .footer-nav .item .title {
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 0px;
  }
}
.footer .box .footer-nav .item .title a {
  display: inline-block;
  color: #ffffff;
}
.footer .box .footer-nav .item .title i {
  width: 40px;
  height: 40px;
  position: absolute;
  right: -10px;
  top: -8px;
  cursor: pointer;
  transition: all 0.5s;
  display: none;
}
@media screen and (max-width: 719px) {
  .footer .box .footer-nav .item .title i {
    display: block;
  }
}
.footer .box .footer-nav .item .title i::before {
  content: '';
  width: 12px;
  position: absolute;
  height: 2px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background: #FFFFFF;
}
.footer .box .footer-nav .item .title i::after {
  content: '';
  height: 12px;
  position: absolute;
  width: 2px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background: #FFFFFF;
}
.footer .box .footer-nav .item ul {
  flex: 1;
  overflow: hidden;
  padding-left: 0;
}
@media screen and (max-width: 1024px) {
  .footer .box .footer-nav .item ul {
    flex: none;
    width: 100%;
    padding-top: 15px;
    margin-top: 0;
  }
}
@media screen and (max-width: 719px) {
  .footer .box .footer-nav .item ul {
    display: none;
  }
}
.footer .box .footer-nav .item ul.text {
  display: grid;
  grid-template-columns: repeat(4, minmax(18.5%, auto)) 1.5rem;
  gap: 0.1rem 0.3rem;
  justify-content: space-between;
}
@media screen and (max-width: 719px) {
  .footer .box .footer-nav .item ul.text {
    display: none;
  }
}
.footer .box .footer-nav .item ul.text li a {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
  transition: all 0.5s ease;
}
@media screen and (max-width: 1580px) {
  .footer .box .footer-nav .item ul.text li a {
    font-size: clamp(13px, 0.16rem, 16px);
  }
}
@media screen and (max-width: 991px) {
  .footer .box .footer-nav .item ul.text li a {
    font-size: 14px;
  }
}
.footer .box .footer-nav .item ul.text li a:hover {
  color: #FFFFFF;
}
.footer .box .footer-nav .item ul li {
  list-style: none;
}
@media screen and (max-width: 719px) {
  .footer .box .footer-nav .item ul li {
    margin-bottom: 10px;
  }
}
.footer .box .follow {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 0.16rem;
  overflow: inherit !important;
}
@media screen and (max-width: 1260px) {
  .footer .box .follow {
    column-gap: 10px;
  }
}
@media screen and (max-width: 719px) {
  .footer .box .follow {
    display: none;
  }
}
.footer .box .follow li {
  position: relative;
}
.footer .box .follow li:hover > span,
.footer .box .follow li:hover a {
  background: #e9e9e9;
  border-color: #e9e9e9;
}
.footer .box .follow li:hover > span img,
.footer .box .follow li:hover a img {
  -webkit-filter: none;
  filter: none;
}
@media screen and (max-width: 719px) {
  .footer .box .follow li {
    display: inline-block;
    margin-right: 15px;
  }
}
.footer .box .follow li > span,
.footer .box .follow li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.3rem;
  height: 0.3rem;
  border: rgba(255, 255, 255, 0.1) solid 1px;
  border-radius: 50%;
  box-sizing: border-box;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media screen and (max-width: 1260px) {
  .footer .box .follow li > span,
  .footer .box .follow li a {
    width: 30px;
    height: 30px;
  }
}
.footer .box .follow li > span img,
.footer .box .follow li a img {
  max-width: 54%;
  opacity: 0.5;
  /*
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  */
}
.footer .box .follow li .qrcode {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 100%;
  width: 1.03rem;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media screen and (max-width: 1260px) {
  .footer .box .follow li .qrcode {
    width: 96px;
  }
}
.footer .box .follow li .qrcode .img {
  position: relative;
  z-index: 2;
  overflow: hidden;
  background-color: #FFFFFF;
}
.footer .box .follow li .qrcode .img img {
  width: 100%;
}
.footer .box .follow li .qrcode .sjx {
  position: relative;
  z-index: 1;
  display: block;
  width: 0;
  height: 0;
  margin: auto;
  margin-top: -3px;
  border-style: solid;
  border-width: 8px;
  border-color: #FFFFFF transparent transparent transparent;
}
.footer .box .follow li:hover a img {
  opacity: 1;
}
.footer .box .follow li:hover .qrcode {
  opacity: 1;
  visibility: visible;
}
@media screen and (max-width: 1260px) {
  .footer .box .follow {
    width: 100%;
  }
}
.footer .wrap {
  margin-top: 0.7rem;
  padding: 0.2rem 0;
  background: #f5f5f5;
}
@media screen and (max-width: 991px) {
  .footer .wrap {
    padding: 0.25rem 0;
  }
}
@media screen and (max-width: 991px) {
  .footer .wrap .footerbottom {
    flex-direction: column;
  }
}
.footer .wrap .footerbottom .copylink {
  flex: 1;
  overflow: hidden;
  font-size: 16px;
  color: #9b9b9b;
}
@media screen and (max-width: 1580px) {
  .footer .wrap .footerbottom .copylink {
    font-size: clamp(13px, 0.16rem, 16px);
  }
}
@media screen and (max-width: 991px) {
  .footer .wrap .footerbottom .copylink {
    font-size: 14px;
  }
}
@media screen and (max-width: 991px) {
  .footer .wrap .footerbottom .copylink {
    flex: none;
  }
}
@media screen and (max-width: 719px) {
  .footer .wrap .footerbottom .copylink {
    width: 100%;
    text-align: center;
    flex-direction: column;
  }
}
.footer .wrap .footerbottom .copylink .copyright {
  display: inline-block;
}
@media screen and (max-width: 719px) {
  .footer .wrap .footerbottom .copylink .copyright {
    display: block;
    width: 100%;
    text-align: center;
  }
}
.footer .wrap .footerbottom .copylink .copyright a {
  display: inline-block;
  color: #9b9b9b;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.footer .wrap .footerbottom .copylink .copyright a:hover {
  color: #9b9b9b;
}
.footer .wrap .footerbottom .copylink .poweredBy {
  display: inline-block;
  margin-left: 0.5rem;
  color: rgba(131, 131, 131, 0.41);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media screen and (max-width: 719px) {
  .footer .wrap .footerbottom .copylink .poweredBy {
    display: block;
    width: 100%;
    margin-top: 5px;
    margin-left: 0;
  }
}
.footer .wrap .footerbottom .copylink .poweredBy a {
  color: rgba(131, 131, 131, 0.41);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.footer .wrap .footerbottom .copylink .poweredBy:hover {
  color: #9b9b9b;
}
.footer .wrap .footerbottom .copylink .poweredBy:hover a {
  color: #9b9b9b;
}
.footer .wrap .footerbottom .footer-logo {
  flex-shrink: 0;
  margin-left: 0.2rem;
}
@media screen and (max-width: 991px) {
  .footer .wrap .footerbottom .footer-logo {
    margin-left: 0;
    width: 100%;
    text-align: center;
    margin-top: 0.15rem;
  }
}
.footer .wrap .footerbottom .footer-logo a img {
  height: 0.35rem;
}
@media screen and (max-width: 991px) {
  .footer .wrap .footerbottom .footer-logo a img {
    height: 28px;
  }
}
.mImg {
  display: none;
}
@media screen and (max-width: 991px) {
  .mImg {
    display: block;
  }
}
@media screen and (max-width: 991px) {
  .pImg {
    display: none;
  }
}
.obanner {
  position: relative;
  width: 100%;
  overflow: hidden;
  z-index: 5;
}
.obanner > img {
  width: 100%;
}
.obanner .bannerImg {
  display: none;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.obanner .watchword {
  position: absolute;
  bottom: 0.2rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 5;
  width: 100%;
  text-align: center;
}
.obanner .watchword .text {
  color: #FFFFFF;
  font-size: 26px;
}
@media screen and (max-width: 1580px) {
  .obanner .watchword .text {
    font-size: clamp(21px, 0.26rem, 26px);
  }
}
@media screen and (max-width: 991px) {
  .obanner .watchword .text {
    font-size: 22px;
  }
}
.obanner .watchword .text span {
  display: inline-block;
}
.obanner .watchword .text span::first-letter {
  color: #e61f18;
}
.obanner .bannerTitle {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 5;
  width: 100%;
}
.obanner .bannerTitle .box {
  width: 67.47%;
  text-align: left;
}
@media screen and (max-width: 991px) {
  .obanner .bannerTitle .box {
    width: 100%;
  }
}
.obanner .bannerTitle .box.center {
  text-align: center;
}
.obanner .bannerTitle .box .headline {
  font-family: "Poppins-SemiBold";
  line-height: 1.1;
  font-size: 48px;
  color: #ffffff;
}
@media screen and (max-width: 1580px) {
  .obanner .bannerTitle .box .headline {
    font-size: clamp(24px, 0.48rem, 48px);
  }
}
@media screen and (max-width: 991px) {
  .obanner .bannerTitle .box .headline {
    font-size: 26px;
  }
}
.obanner .bannerTitle .box .text {
  margin-top: 0.25rem;
  font-family: "Poppins-Light";
  color: rgba(255, 255, 255, 0.6);
  font-size: 20px;
  line-height: 1.75;
}
@media screen and (max-width: 1580px) {
  .obanner .bannerTitle .box .text {
    font-size: clamp(18px, 0.2rem, 20px);
  }
}
@media screen and (max-width: 991px) {
  .obanner .bannerTitle .box .text {
    font-size: 19px;
  }
}
@media screen and (max-width: 1260px) {
  .obanner .bannerTitle .box .text {
    font-size: 14px;
  }
}
.swiper-pagination.common-pagination {
  z-index: 3;
  bottom: 30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  text-align: center;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
.swiper-pagination.static {
  position: static;
  transform: none;
  margin-top: 30px;
}
@media screen and (max-width: 991px) {
  .swiper-pagination.static {
    margin-top: 20px;
  }
}
@media screen and (max-width: 480px) {
  .swiper-pagination.static {
    margin-top: 15px;
  }
}
.swiper-pagination.static .swiper-pagination-bullet {
  background: rgba(0, 0, 0, 0.35);
}
.swiper-pagination .swiper-pagination-bullet {
  position: relative;
  width: 8px;
  height: 8px;
  margin: 0 5px;
  opacity: 1;
  background: #ffffff;
  border-radius: 4px;
  overflow: hidden;
}
@media screen and (max-width: 480px) {
  .swiper-pagination .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    margin: 0 4px;
    border-radius: 3px;
  }
}
.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 35px;
  background: #00652b;
}
@media screen and (max-width: 480px) {
  .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 28px;
  }
}
.page {
  width: 100%;
  text-align: center;
}
.page .page-list {
  display: flex;
  align-items: center;
  justify-content: center;
}
.page .page-list span,
.page .page-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0.35rem;
  height: 0.35rem;
  margin-right: 0.12rem;
  margin-bottom: 0.1rem;
  text-align: center;
  font-size: 16px;
  color: #777777;
  background: #f4f4f4;
  border-radius: 50%;
  overflow: hidden;
  box-sizing: border-box;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1580px) {
  .page .page-list span,
  .page .page-list a {
    font-size: clamp(13px, 0.16rem, 16px);
  }
}
@media screen and (max-width: 991px) {
  .page .page-list span,
  .page .page-list a {
    font-size: 14px;
  }
}
@media screen and (min-width: 1261px) and (max-width: 1900px) {
  .page .page-list span,
  .page .page-list a {
    min-width: 1.875vw;
    height: 1.875vw;
    margin-right: 0.625vw;
    margin-bottom: 0.520833334vw;
  }
}
@media screen and (max-width: 480px) {
  .page .page-list span,
  .page .page-list a {
    min-width: 6vmin;
    height: 6vmin;
  }
}
.page .page-list span:last-child,
.page .page-list a:last-child {
  margin-right: 0;
}
.page .page-list span:hover,
.page .page-list a:hover {
  color: #FFFFFF;
  background: #016d2f;
}
.page .page-list span.fyprev img,
.page .page-list a.fyprev img {
  width: 6px;
  transition: all 0.5s ease;
}
.page .page-list span.fyprev:hover,
.page .page-list a.fyprev:hover {
  background: #016d2f;
}
.page .page-list span.fyprev:hover img,
.page .page-list a.fyprev:hover img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.page .page-list span.fyprev.disabled,
.page .page-list a.fyprev.disabled {
  pointer-events: none;
  background: none;
  opacity: 0.5;
}
.page .page-list span.fynext img,
.page .page-list a.fynext img {
  width: 6px;
  transition: all 0.5s ease;
}
.page .page-list span.fynext:hover,
.page .page-list a.fynext:hover {
  background: #016d2f;
}
.page .page-list span.fynext:hover img,
.page .page-list a.fynext:hover img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.page .page-list span.fynext.disabled,
.page .page-list a.fynext.disabled {
  pointer-events: none;
  background: none;
  opacity: 0.5;
}
.page .page-list span.on,
.page .page-list a.on {
  color: #FFFFFF;
  background: #016d2f;
}
.page .page-list span.omit,
.page .page-list a.omit {
  background: none;
}
.page .page-list span.omit:hover,
.page .page-list a.omit:hover {
  color: #777777;
}
.page .page-list span.omit img,
.page .page-list a.omit img {
  max-width: 0.09rem;
}
@media screen and (max-width: 1260px) {
  .page .page-list span.omit img,
  .page .page-list a.omit img {
    max-width: 9px;
  }
}
.c-title {
  color: #000000;
}
.c-title.center {
  text-align: center;
}
.c-title.white {
  color: #FFFFFF;
}
.c-title .headline {
  font-family: "SourceHanSansCN-Regular";
  font-size: 32px;
}
@media screen and (max-width: 1580px) {
  .c-title .headline {
    font-size: clamp(21px, 0.32rem, 32px);
  }
}
@media screen and (max-width: 991px) {
  .c-title .headline {
    font-size: 24px;
  }
}
.c-title .txt {
  font-family: "SourceHanSansCN-Regular";
  font-size: 18px;
}
@media screen and (max-width: 1580px) {
  .c-title .txt {
    font-size: clamp(15px, 0.18rem, 18px);
  }
}
@media screen and (max-width: 991px) {
  .c-title .txt {
    font-size: 16px;
  }
}
.c-title .desc {
  font-size: 19px;
}
@media screen and (max-width: 1580px) {
  .c-title .desc {
    font-size: clamp(16px, 0.19rem, 19px);
  }
}
@media screen and (max-width: 991px) {
  .c-title .desc {
    font-size: 18px;
  }
}
.c-title .txt {
  font-family: "SourceHanSansCN-Regular";
  font-size: 18px;
}
@media screen and (max-width: 1580px) {
  .c-title .txt {
    font-size: clamp(15px, 0.18rem, 18px);
  }
}
@media screen and (max-width: 991px) {
  .c-title .txt {
    font-size: 16px;
  }
}
.c-title .morebtn a {
  font-family: "SourceHanSansCN-Regular";
  color: #349734;
  font-size: 18px;
  text-decoration: underline;
}
@media screen and (max-width: 1580px) {
  .c-title .morebtn a {
    font-size: clamp(15px, 0.18rem, 18px);
  }
}
@media screen and (max-width: 991px) {
  .c-title .morebtn a {
    font-size: 16px;
  }
}
.c-text {
  font-size: 16px;
  line-height: 2;
}
@media screen and (max-width: 1580px) {
  .c-text {
    font-size: clamp(13px, 0.16rem, 16px);
  }
}
@media screen and (max-width: 991px) {
  .c-text {
    font-size: 14px;
  }
}
.o-title .main-title {
  font-family: "SourceHanSansCN-Regular";
  color: #000000;
  font-size: 45px;
}
@media screen and (max-width: 1580px) {
  .o-title .main-title {
    font-size: clamp(24px, 0.45rem, 45px);
  }
}
@media screen and (max-width: 991px) {
  .o-title .main-title {
    font-size: 26px;
  }
}
.o-title .headline {
  font-family: "SourceHanSansCN-Regular";
  color: #016d2f;
  font-size: 40px;
}
@media screen and (max-width: 1580px) {
  .o-title .headline {
    font-size: clamp(24px, 0.4rem, 40px);
  }
}
@media screen and (max-width: 991px) {
  .o-title .headline {
    font-size: 26px;
  }
}
.o-title .rubric {
  font-family: "SourceHanSansCN-Regular";
  color: #016D2F;
  font-size: 36px;
}
@media screen and (max-width: 1580px) {
  .o-title .rubric {
    font-size: clamp(22px, 0.36rem, 36px);
  }
}
@media screen and (max-width: 991px) {
  .o-title .rubric {
    font-size: 24px;
  }
}
.o-title .desc {
  margin-top: 0.1rem;
  color: #333333;
  font-size: 16px;
  line-height: 1.7;
}
@media screen and (max-width: 1580px) {
  .o-title .desc {
    font-size: clamp(13px, 0.16rem, 16px);
  }
}
@media screen and (max-width: 991px) {
  .o-title .desc {
    font-size: 14px;
  }
}
.o-title .desc p {
  margin-bottom: 0.25rem;
}
.o-title .desc p:last-child {
  margin-bottom: 0;
}
.o-title .text {
  margin-top: 0.15rem;
  color: #333333;
  font-size: 18px;
  line-height: 2;
}
@media screen and (max-width: 1580px) {
  .o-title .text {
    font-size: clamp(15px, 0.18rem, 18px);
  }
}
@media screen and (max-width: 991px) {
  .o-title .text {
    font-size: 16px;
  }
}
.o-title .text a {
  display: inline-block;
  color: #00652B;
  text-decoration: underline;
}
.index_section1 {
  margin-top: 10px;
}
@media screen and (max-width: 991px) {
  .index_section1 .box {
    flex-direction: column;
    gap: 15px;
  }
}
.index_section1 .box .left_w {
  position: relative;
  width: 66.66666666666667%;
}
@media screen and (max-width: 991px) {
  .index_section1 .box .left_w {
    width: 100%;
  }
}
.index_section1 .box .left_w .videobox {
  width: 100%;
  overflow: hidden;
}
.index_section1 .box .left_w .videobox video {
  display: block;
  width: 100%;
}
.index_section1 .box .left_w .textbox {
  position: absolute;
  left: 5%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 70%;
  padding: 5%;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .index_section1 .box .left_w .textbox {
    width: 90%;
  }
}
.index_section1 .box .left_w .textbox .title {
  font-family: "SourceHanSansCN-Medium";
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  font-size: 50px;
}
@media screen and (max-width: 1580px) {
  .index_section1 .box .left_w .textbox .title {
    font-size: clamp(24px, 0.5rem, 50px);
  }
}
@media screen and (max-width: 991px) {
  .index_section1 .box .left_w .textbox .title {
    font-size: 26px;
  }
}
.index_section1 .box .left_w .textbox .text {
  font-family: "SourceHanSansCN-Regular";
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  font-size: 18px;
}
@media screen and (max-width: 1580px) {
  .index_section1 .box .left_w .textbox .text {
    font-size: clamp(15px, 0.18rem, 18px);
  }
}
@media screen and (max-width: 991px) {
  .index_section1 .box .left_w .textbox .text {
    font-size: 16px;
  }
}
.index_section1 .box .left_w .textbox .public-btn {
  margin-top: 0.25rem;
}
.index_section1 .box .right_w {
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: calc((33.33333333333333% - 10px));
  background: #016d2f url(../images/img2.png) right bottom no-repeat;
  background-size: 64.1% auto;
  padding: 0.3rem;
  box-sizing: border-box;
  text-align: center;
}
@media screen and (max-width: 991px) {
  .index_section1 .box .right_w {
    width: 100%;
    padding: 30px 20px;
  }
}
.index_section1 .box .right_w .content {
  margin-top: 0.15rem;
}
.index_section1 .box .right_w .content .form-group {
  max-width: 2.7rem;
  width: 100%;
  margin: auto;
}
.index_section1 .box .right_w .content .form-group form .layui-form-item {
  position: relative;
  width: 100%;
  margin-bottom: 0;
}
.index_section1 .box .right_w .content .form-group form .layui-form-item .layui-form-select .layui-select-title .layui-input {
  text-align: center;
}
.index_section1 .box .right_w .content .form-group form .layui-form-item .layui-form-select .layui-select-title .layui-input::-webkit-input-placeholder {
  font-family: "SourceHanSansCN-Medium";
  color: #016d2f;
}
.index_section1 .box .right_w .content .form-group form .layui-form-item .layui-form-select .layui-select-title .layui-input::-moz-placeholder {
  font-family: "SourceHanSansCN-Medium";
  color: #016d2f;
}
.index_section1 .box .right_w .content .form-group form .layui-form-item .layui-form-select .layui-select-title .layui-input:-moz-placeholder {
  font-family: "SourceHanSansCN-Medium";
  color: #016d2f;
}
.index_section1 .box .right_w .content .form-group form .layui-form-item .layui-form-select .layui-select-title .layui-input:-ms-input-placeholder {
  font-family: "SourceHanSansCN-Medium";
  color: #016d2f;
}
.index_section1 .box .right_w .content .form-group form .layui-form-item .layui-form-select .layui-select-title .layui-edge {
  top: 0;
  right: 0;
  margin-top: 0;
  border-width: 0;
  width: 0.5rem;
  height: 100%;
  background: url(../images/icon17.png) center no-repeat;
  background-size: 30% auto;
  display: none;
}
@media screen and (max-width: 991px) {
  .index_section1 .box .right_w .content .form-group form .layui-form-item .layui-form-select .layui-select-title .layui-edge {
    width: 0.7rem;
  }
}
.index_section1 .box .right_w .content .form-group form .layui-form-item .layui-form-select dl {
  top: 100%;
  bottom: auto;
  max-width: 2.7rem;
  width: 100%;
  box-sizing: border-box;
  text-align: left;
}
.index_section1 .box .right_w .content .form-group form .layui-form-item .layui-form-select dl dd {
  font-size: 16px;
  color: #000000;
  line-height: 2.25;
  padding: 0 0.2rem;
}
@media screen and (max-width: 1580px) {
  .index_section1 .box .right_w .content .form-group form .layui-form-item .layui-form-select dl dd {
    font-size: clamp(13px, 0.16rem, 16px);
  }
}
@media screen and (max-width: 991px) {
  .index_section1 .box .right_w .content .form-group form .layui-form-item .layui-form-select dl dd {
    font-size: 14px;
  }
}
@media screen and (max-width: 991px) {
  .index_section1 .box .right_w .content .form-group form .layui-form-item .layui-form-select dl dd {
    padding: 0 0.3rem;
  }
}
.index_section1 .box .right_w .content .form-group form .layui-form-item .layui-form-select dl dd.layui-this {
  color: #FFFFFF;
  background-color: #016d2f;
}
.index_section1 .box .right_w .content .form-group form .layui-form-item .layui-form-select dl dd.layui-select-tips {
  padding-left: 0.2rem !important;
}
@media screen and (max-width: 991px) {
  .index_section1 .box .right_w .content .form-group form .layui-form-item .layui-form-select dl dd.layui-select-tips {
    padding-left: 0.3rem !important;
  }
}
.index_section1 .box .right_w .content .form-group form .layui-form-item .layui-input {
  width: 100%;
  height: 0.45rem;
  padding: 0 0.2rem;
  border-radius: 0;
  border: none;
  box-sizing: border-box;
  background: #FFFFFF;
  font-family: "SourceHanSansCN-Medium";
  color: #016d2f;
  font-size: 16px;
}
@media screen and (max-width: 1580px) {
  .index_section1 .box .right_w .content .form-group form .layui-form-item .layui-input {
    font-size: clamp(13px, 0.16rem, 16px);
  }
}
@media screen and (max-width: 991px) {
  .index_section1 .box .right_w .content .form-group form .layui-form-item .layui-input {
    font-size: 14px;
  }
}
@media screen and (max-width: 1260px) {
  .index_section1 .box .right_w .content .form-group form .layui-form-item .layui-input {
    height: 0.5rem;
  }
}
@media screen and (max-width: 991px) {
  .index_section1 .box .right_w .content .form-group form .layui-form-item .layui-input {
    height: 0.6rem;
    padding: 0 0.3rem;
  }
}
@media screen and (max-width: 480px) {
  .index_section1 .box .right_w .content .form-group form .layui-form-item .layui-input {
    height: 0.68rem;
  }
}
.index_section1 .box .right_w .content .form-group form .layui-form-item .layui-input::-webkit-input-placeholder {
  color: #999999;
}
.index_section1 .box .right_w .content .form-group form .layui-form-item .layui-input::-moz-placeholder {
  color: #999999;
}
.index_section1 .box .right_w .content .form-group form .layui-form-item .layui-input:-moz-placeholder {
  color: #999999;
}
.index_section1 .box .right_w .content .form-group form .layui-form-item .layui-input:-ms-input-placeholder {
  color: #999999;
}
.index_section1 .box .right_w .content .form-group form .layui-form-item .layui-input::hover {
  border-color: rgba(204, 204, 204, 0.5) !important;
}
.index_section1 .box .right_w .content .form-group form .layui-form-item .layui-input:focus {
  border-color: rgba(204, 204, 204, 0.5) !important;
}
.index_section1 .box .right_w .content .text {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 2.9rem;
  width: 100%;
  margin: 0.2rem auto;
  text-align: center;
}
.index_section1 .box .right_w .content .text::before {
  content: '';
  flex: 1;
  height: 1px;
  background: #FFFFFF;
}
.index_section1 .box .right_w .content .text::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #FFFFFF;
}
.index_section1 .box .right_w .content .text span {
  flex-shrink: 0;
  display: inline-block;
  margin: 0 0.1rem;
  box-sizing: border-box;
  font-family: "SourceHanSansCN-Regular";
  color: #FFFFFF;
  font-size: 16px;
}
@media screen and (max-width: 1580px) {
  .index_section1 .box .right_w .content .text span {
    font-size: clamp(13px, 0.16rem, 16px);
  }
}
@media screen and (max-width: 991px) {
  .index_section1 .box .right_w .content .text span {
    font-size: 14px;
  }
}
.index_section1 .box .right_w .content .btns {
  max-width: 2.7rem;
  width: 100%;
  margin: auto;
}
.index_section1 .box .right_w .content .btns a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 0.45rem;
  font-family: "SourceHanSansCN-Regular";
  color: #FFFFFF;
  font-size: 16px;
  border: #ffffff solid 1px;
  box-sizing: border-box;
  transition: all 0.5s ease;
}
@media screen and (max-width: 1580px) {
  .index_section1 .box .right_w .content .btns a {
    font-size: clamp(13px, 0.16rem, 16px);
  }
}
@media screen and (max-width: 991px) {
  .index_section1 .box .right_w .content .btns a {
    font-size: 14px;
  }
}
@media screen and (max-width: 1260px) {
  .index_section1 .box .right_w .content .btns a {
    height: 0.5rem;
  }
}
@media screen and (max-width: 991px) {
  .index_section1 .box .right_w .content .btns a {
    height: 0.6rem;
  }
}
@media screen and (max-width: 480px) {
  .index_section1 .box .right_w .content .btns a {
    height: 0.68rem;
  }
}
.index_section1 .box .right_w .content .btns a:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: rgba(255, 255, 255, 0.5);
}
.index_section2 .contain {
  background: #FFFFFF;
}
.index_section2 .contain .box {
  margin-top: 0.45rem;
}
.index_section2 .contain .box .swiper {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.index_section2 .contain .box .swiper .swiper-wrapper {
  align-items: stretch;
}
.index_section2 .contain .box .swiper .swiper-wrapper .swiper-slide {
  height: auto;
}
.index_section2 .contain .box .swiper .swiper-wrapper .swiper-slide .newitem {
  width: 100%;
  height: 100%;
}
.newitem {
  display: flex;
  flex-direction: column;
  border: #e9e9e9 solid 1px;
  box-sizing: border-box;
}
.newitem:hover .imgbox img {
  transform: scale(1.06);
}
.newitem:hover .textbox .content .subtitle {
  color: #016d2f;
}
.newitem .imgbox {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.newitem .imgbox img {
  display: block;
  width: 100%;
  transition: all 0.5s ease;
}
.newitem .textbox {
  flex: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 0.2rem;
  box-sizing: border-box;
}
@media screen and (max-width: 1260px) {
  .newitem .textbox {
    padding: 0.25rem;
  }
}
@media screen and (max-width: 991px) {
  .newitem .textbox {
    padding: 20px;
  }
}
.newitem .textbox .date {
  flex-shrink: 0;
  margin-bottom: 0.1rem;
  color: #969696;
  font-size: 16px;
}
@media screen and (max-width: 1580px) {
  .newitem .textbox .date {
    font-size: clamp(13px, 0.16rem, 16px);
  }
}
@media screen and (max-width: 991px) {
  .newitem .textbox .date {
    font-size: 14px;
  }
}
.newitem .textbox .content {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}
.newitem .textbox .content .subtitle {
  font-family: "SourceHanSansCN-Medium";
  color: #222222;
  font-size: 18px;
  margin-bottom: 0.15rem;
  transition: all 0.5s ease;
}
@media screen and (max-width: 1580px) {
  .newitem .textbox .content .subtitle {
    font-size: clamp(15px, 0.18rem, 18px);
  }
}
@media screen and (max-width: 991px) {
  .newitem .textbox .content .subtitle {
    font-size: 16px;
  }
}
.newitem .textbox .content .text {
  color: #333333;
  font-size: 17px;
  line-height: 1.5;
}
@media screen and (max-width: 1580px) {
  .newitem .textbox .content .text {
    font-size: clamp(14px, 0.17rem, 17px);
  }
}
@media screen and (max-width: 991px) {
  .newitem .textbox .content .text {
    font-size: 14px;
  }
}
.newitem .textbox .more {
  margin-top: 0.2rem;
  border-top: #e9e9e9 solid 1px;
  padding-top: 0.15rem;
}
@media screen and (max-width: 1260px) {
  .newitem .textbox .more {
    margin-top: 15px;
    padding-top: 12px;
  }
}
.newitem .textbox .more span {
  display: inline-block;
  color: #E67817;
  font-size: 16px;
  text-decoration: underline;
}
@media screen and (max-width: 1580px) {
  .newitem .textbox .more span {
    font-size: clamp(13px, 0.16rem, 16px);
  }
}
@media screen and (max-width: 991px) {
  .newitem .textbox .more span {
    font-size: 14px;
  }
}
.index_section3 .contain {
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
  background: linear-gradient(180deg, #f8fafd, #e9eef3);
  box-sizing: border-box;
}
.index_section3 .contain .box {
  position: relative;
}
@media screen and (max-width: 991px) {
  .index_section3 .contain .box {
    flex-wrap: wrap;
  }
}
.index_section3 .contain .box .textbox {
  width: 55.93%;
}
@media screen and (max-width: 991px) {
  .index_section3 .contain .box .textbox {
    width: 100%;
  }
}
.index_section3 .contain .box .textbox .c-title .headline {
  margin-bottom: 0.5rem;
}
.index_section3 .contain .box .textbox .c-title .txt {
  margin-bottom: 0.3rem;
  text-align: justify;
}
.index_section3 .contain .box .textbox .c-title .c-text {
  text-align: justify;
}
.index_section3 .contain .box .textbox .data_num {
  margin-top: 0.7rem;
}
@media screen and (max-width: 991px) {
  .index_section3 .contain .box .textbox .data_num {
    margin-top: 0.4rem;
  }
}
.index_section3 .contain .box .imgbox {
  position: relative;
  width: 43%;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .index_section3 .contain .box .imgbox {
    width: 100%;
    margin-top: 0.5rem;
    box-sizing: border-box;
    padding-right: 0.7rem;
  }
}
.index_section3 .contain .box .imgbox img {
  max-width: 100%;
}
@media screen and (max-width: 991px) {
  .index_section3 .contain .box .imgbox img {
    max-width: 400px;
    width: 100%;
  }
}
.index_section3 .contain .box .arrow {
  position: absolute;
  right: 0;
  bottom: 0.7rem;
  width: 0.58rem;
}
.index_section3 .contain .box .arrow a {
  display: block;
  width: 100%;
}
.index_section3 .contain .box .arrow a img {
  max-width: 0.58rem;
}
.data_num ul {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.2rem 0.3rem;
}
@media screen and (max-width: 767px) {
  .data_num ul {
    justify-content: flex-start;
  }
}
@media screen and (max-width: 767px) {
  .data_num ul li {
    width: calc((100% - 0.6rem) / 3);
  }
}
.data_num ul li .t1 {
  display: flex;
  align-items: baseline;
  font-family: "SourceHanSansCN-Bold";
  color: #016d2f;
}
.data_num ul li .t1 .timer {
  display: inline-block;
  font-size: 50px;
}
@media screen and (max-width: 1580px) {
  .data_num ul li .t1 .timer {
    font-size: clamp(24px, 0.5rem, 50px);
  }
}
@media screen and (max-width: 991px) {
  .data_num ul li .t1 .timer {
    font-size: 26px;
  }
}
.data_num ul li .t1 .sign {
  display: inline-block;
  font-size: 30px;
}
@media screen and (max-width: 1580px) {
  .data_num ul li .t1 .sign {
    font-size: clamp(21px, 0.3rem, 30px);
  }
}
@media screen and (max-width: 991px) {
  .data_num ul li .t1 .sign {
    font-size: 24px;
  }
}
.data_num ul li .t2 {
  color: #000000;
  font-size: 16px;
}
@media screen and (max-width: 1580px) {
  .data_num ul li .t2 {
    font-size: clamp(13px, 0.16rem, 16px);
  }
}
@media screen and (max-width: 991px) {
  .data_num ul li .t2 {
    font-size: 14px;
  }
}
.index_section4 .contain {
  background: #FFFFFF;
}
.index_section4 .contain .box {
  margin-top: 0.5rem;
}
.index_section4 .contain .box .wrap {
  gap: 10px;
}
.index_section4 .contain .box .wrap .proitem {
  width: calc((100% - 30px) / 4);
}
@media screen and (max-width: 1260px) {
  .index_section4 .contain .box .wrap .proitem {
    width: calc((100% - 20px) / 3);
  }
}
@media screen and (max-width: 767px) {
  .index_section4 .contain .box .wrap .proitem {
    width: calc((100% - 10px) / 2);
  }
}
@media screen and (max-width: 480px) {
  .index_section4 .contain .box .wrap .proitem {
    width: 100%;
  }
}
.proitem {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 0.25rem 0.2rem 0.3rem;
  border: #e9e9e9 solid 1px;
  box-sizing: border-box;
  background: #fcfcfc url(../images/img21.png) right bottom no-repeat;
  background-size: 69.1% auto;
  transition: all 0.4s ease;
}
@media screen and (max-width: 1260px) {
  .proitem {
    padding: 0.3rem 0.25rem 0.35rem;
  }
}
@media screen and (max-width: 991px) {
  .proitem {
    padding: 0.3rem;
  }
}
@media screen and (max-width: 480px) {
  .proitem {
    background: #fcfcfc url(../images/img21.png) right bottom no-repeat;
    background-size: 40% auto;
  }
}
.proitem:hover {
  box-shadow: 1px 1px 11px 0 rgba(126, 136, 144, 0.3);
}
.proitem:hover .arrow img {
  opacity: 1;
}
.proitem .tag {
  position: absolute;
  right: 0;
  top: 0;
  display: inline-block;
}
.proitem .tag span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0.28rem;
  height: 0.28rem;
  border-radius: 0 0 0 4px;
  background: #016d2f;
  font-size: 16px;
  color: #ffffff;
  overflow: hidden;
}
@media screen and (max-width: 1580px) {
  .proitem .tag span {
    font-size: clamp(13px, 0.16rem, 16px);
  }
}
@media screen and (max-width: 991px) {
  .proitem .tag span {
    font-size: 14px;
  }
}
@media screen and (max-width: 1260px) {
  .proitem .tag span {
    min-width: 24px;
    height: 24px;
  }
}
.proitem .subtitle {
  flex-shrink: 0;
  margin-bottom: 0.2rem;
  font-family: "SourceHanSansCN-Medium";
  color: #000000;
  font-size: 18px;
}
@media screen and (max-width: 1580px) {
  .proitem .subtitle {
    font-size: clamp(15px, 0.18rem, 18px);
  }
}
@media screen and (max-width: 991px) {
  .proitem .subtitle {
    font-size: 16px;
  }
}
.proitem .text {
  flex: 1;
  overflow: hidden;
  color: #333333;
  font-size: 16px;
  text-align: justify;
}
@media screen and (max-width: 1580px) {
  .proitem .text {
    font-size: clamp(13px, 0.16rem, 16px);
  }
}
@media screen and (max-width: 991px) {
  .proitem .text {
    font-size: 14px;
  }
}
.proitem .arrow {
  margin-top: 0.2rem;
  flex-shrink: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
@media screen and (max-width: 1260px) {
  .proitem .arrow {
    margin-top: 0.3rem;
  }
}
.proitem .arrow img {
  max-width: 0.4rem;
  opacity: 0;
  transition: all 0.4s ease;
}
@media screen and (max-width: 1260px) {
  .proitem .arrow img {
    max-width: 0.5rem;
  }
}
.index_section5 .contain {
  background: #FFFFFF;
}
.index_section5 .contain .box {
  margin-top: 0.35rem;
}
@media screen and (max-width: 991px) {
  .index_section5 .contain .box {
    margin-top: 0.45rem;
  }
}
.index_section5 .contain .box .wrap {
  gap: 10px;
}
.index_section5 .contain .box .wrap .item {
  position: relative;
  display: block;
  width: calc((100% - 30px) / 4);
}
@media screen and (max-width: 1260px) {
  .index_section5 .contain .box .wrap .item {
    width: calc((100% - 20px) / 3);
  }
}
@media screen and (max-width: 767px) {
  .index_section5 .contain .box .wrap .item {
    width: calc((100% - 10px) / 2);
  }
}
.index_section5 .contain .box .wrap .item:hover .imgbox::before {
  background: rgba(1, 109, 47, 0.86);
}
.index_section5 .contain .box .wrap .item:hover .imgbox img {
  transform: scale(1.06);
}
.index_section5 .contain .box .wrap .item:hover .textbox .arrow img {
  opacity: 1;
}
.index_section5 .contain .box .wrap .item .imgbox {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.index_section5 .contain .box .wrap .item .imgbox::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  transition: all 0.5s ease;
}
.index_section5 .contain .box .wrap .item .imgbox img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}
.index_section5 .contain .box .wrap .item .textbox {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 100%;
  text-align: center;
  padding: 0.25rem;
  box-sizing: border-box;
}
.index_section5 .contain .box .wrap .item .textbox .subtitle {
  font-family: "SourceHanSansCN-Medium";
  color: #ffffff;
  font-size: 26px;
}
@media screen and (max-width: 1580px) {
  .index_section5 .contain .box .wrap .item .textbox .subtitle {
    font-size: clamp(21px, 0.26rem, 26px);
  }
}
@media screen and (max-width: 991px) {
  .index_section5 .contain .box .wrap .item .textbox .subtitle {
    font-size: 22px;
  }
}
.index_section5 .contain .box .wrap .item .textbox .subtitle span {
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
}
.index_section5 .contain .box .wrap .item .textbox .subtitle span::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #ffffff;
}
.index_section5 .contain .box .wrap .item .textbox i {
  display: none;
  margin: auto;
  width: 0.5rem;
  height: 2px;
  background: #ffffff;
}
.index_section5 .contain .box .wrap .item .textbox .arrow {
  position: absolute;
  left: 0;
  bottom: -0.55rem;
  width: 100%;
  text-align: center;
}
.index_section5 .contain .box .wrap .item .textbox .arrow img {
  display: inline-block;
  width: 0.4rem;
  opacity: 0;
  transition: all 0.4s ease;
}
.index_section6 .contain {
  background: #FFFFFF;
}
.index_section6 .contain .box {
  margin-top: 0.35rem;
}
@media screen and (max-width: 991px) {
  .index_section6 .contain .box {
    margin-top: 0.45rem;
  }
}
.index_section6 .contain .box .wrap {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.index_section6 .contain .box .wrap .item {
  display: flex;
  align-items: center;
  width: 100%;
  background: #fcfcfc;
  border: #e9e9e9 solid 1px;
}
@media screen and (max-width: 767px) {
  .index_section6 .contain .box .wrap .item {
    flex-wrap: wrap;
  }
}
.index_section6 .contain .box .wrap .item .imgbox {
  width: 25%;
  box-sizing: border-box;
}
@media screen and (max-width: 991px) {
  .index_section6 .contain .box .wrap .item .imgbox {
    width: 30%;
  }
}
@media screen and (max-width: 767px) {
  .index_section6 .contain .box .wrap .item .imgbox {
    width: 100%;
    margin-bottom: 20px;
  }
}
.index_section6 .contain .box .wrap .item .imgbox img {
  display: block;
  width: 100%;
}
.index_section6 .contain .box .wrap .item .textbox {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 75%;
  padding: 0.3rem;
  box-sizing: border-box;
  font-family: "SourceHanSansCN-Regular";
}
@media screen and (max-width: 991px) {
  .index_section6 .contain .box .wrap .item .textbox {
    width: 70%;
  }
}
@media screen and (max-width: 767px) {
  .index_section6 .contain .box .wrap .item .textbox {
    width: 100%;
    padding: 25px 20px;
  }
}
.index_section6 .contain .box .wrap .item .textbox .info1 {
  width: 50%;
}
@media screen and (max-width: 991px) {
  .index_section6 .contain .box .wrap .item .textbox .info1 {
    width: 100%;
  }
}
.index_section6 .contain .box .wrap .item .textbox .info1 .data {
  color: #666666;
  font-size: 16px;
}
@media screen and (max-width: 1580px) {
  .index_section6 .contain .box .wrap .item .textbox .info1 .data {
    font-size: clamp(13px, 0.16rem, 16px);
  }
}
@media screen and (max-width: 991px) {
  .index_section6 .contain .box .wrap .item .textbox .info1 .data {
    font-size: 14px;
  }
}
.index_section6 .contain .box .wrap .item .textbox .info1 .subtitle {
  font-family: "SourceHanSansCN-Bold";
  color: #333333;
  font-size: 30px;
}
@media screen and (max-width: 1580px) {
  .index_section6 .contain .box .wrap .item .textbox .info1 .subtitle {
    font-size: clamp(21px, 0.3rem, 30px);
  }
}
@media screen and (max-width: 991px) {
  .index_section6 .contain .box .wrap .item .textbox .info1 .subtitle {
    font-size: 24px;
  }
}
.index_section6 .contain .box .wrap .item .textbox .info1 .txt {
  margin-top: 0.3rem;
  color: #666666;
  font-size: 16px;
}
@media screen and (max-width: 1580px) {
  .index_section6 .contain .box .wrap .item .textbox .info1 .txt {
    font-size: clamp(13px, 0.16rem, 16px);
  }
}
@media screen and (max-width: 991px) {
  .index_section6 .contain .box .wrap .item .textbox .info1 .txt {
    font-size: 14px;
  }
}
@media screen and (max-width: 991px) {
  .index_section6 .contain .box .wrap .item .textbox .info1 .txt {
    margin-top: 0.15rem;
  }
}
.index_section6 .contain .box .wrap .item .textbox .info2 {
  width: 45%;
  font-size: 22px;
}
@media screen and (max-width: 1580px) {
  .index_section6 .contain .box .wrap .item .textbox .info2 {
    font-size: clamp(19px, 0.22rem, 22px);
  }
}
@media screen and (max-width: 991px) {
  .index_section6 .contain .box .wrap .item .textbox .info2 {
    font-size: 20px;
  }
}
@media screen and (max-width: 991px) {
  .index_section6 .contain .box .wrap .item .textbox .info2 {
    width: 100%;
  }
}
.index_section6 .contain .box .wrap .item .textbox .info2 .sp1 {
  margin-top: 0.25rem;
  color: #333333;
}
.index_section6 .contain .box .wrap .item .textbox .info2 .sp2 {
  margin-top: 0.45rem;
  color: #13b65b;
}
@media screen and (max-width: 991px) {
  .index_section6 .contain .box .wrap .item .textbox .info2 .sp2 {
    margin-top: 0.15rem;
  }
}
.index_section6 .contain .box .wrap .item .textbox .viewbtn {
  margin-top: 0.15rem;
  width: 100%;
}
@media screen and (max-width: 991px) {
  .index_section6 .contain .box .wrap .item .textbox .viewbtn {
    margin-top: 0.25rem;
  }
}
.index_section6 .contain .box .wrap .item .textbox .viewbtn a {
  display: inline-block;
  text-decoration: underline;
  color: #349734;
  font-size: 16px;
}
@media screen and (max-width: 1580px) {
  .index_section6 .contain .box .wrap .item .textbox .viewbtn a {
    font-size: clamp(13px, 0.16rem, 16px);
  }
}
@media screen and (max-width: 991px) {
  .index_section6 .contain .box .wrap .item .textbox .viewbtn a {
    font-size: 14px;
  }
}
.public-crumbs .content {
  display: flex;
  align-items: center;
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
  box-sizing: border-box;
  color: #999999;
  font-size: 18px;
}
@media screen and (max-width: 1580px) {
  .public-crumbs .content {
    font-size: clamp(15px, 0.18rem, 18px);
  }
}
@media screen and (max-width: 991px) {
  .public-crumbs .content {
    font-size: 16px;
  }
}
@media screen and (max-width: 991px) {
  .public-crumbs .content {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
.public-crumbs .content span,
.public-crumbs .content a {
  display: inline-flex;
  align-items: baseline;
  flex-shrink: 0;
  color: #999999;
  transition: all 0.4s ease;
}
.public-crumbs .content span:hover,
.public-crumbs .content a:hover {
  color: #999999;
}
.public-crumbs .content span:hover img,
.public-crumbs .content a:hover img {
  -webkit-filter: none;
  filter: none;
  opacity: 1;
}
.public-crumbs .content span.on,
.public-crumbs .content a.on {
  display: inline-block;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #00652b;
  margin-left: 0;
}
.public-crumbs .content span {
  margin: 0 10px;
}
@media screen and (min-width: 992px) {
  .public-crumbs .content span {
    margin: 0 0.52083333vw;
  }
}
.public-crumbs .content span img {
  display: inline-block;
  width: 0.13rem;
}
.product .contain {
  background: #ffffff;
  padding-top: 4%;
  padding-bottom: 4%;
}
@media screen and (max-width: 1260px) {
  .product .contain {
    padding-top: 4%;
    padding-bottom: 6%;
  }
}
@media screen and (max-width: 1023px) {
  .product .contain {
    gap: 25px;
    padding-top: 0.5rem;
    padding-bottom: 0.7rem;
  }
}
.product .contain .box {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.product .contain .box .wrap {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media screen and (max-width: 991px) {
  .product .contain .box .wrap .product-introduction .substance {
    flex-wrap: wrap;
  }
}
.product .contain .box .wrap .product-introduction .substance .textbox {
  width: 50%;
  padding-top: 0.36rem;
  padding-bottom: 0.36rem;
  border-top: #e9e9e9 solid 1px;
  border-bottom: #e9e9e9 solid 1px;
  box-sizing: border-box;
}
@media screen and (max-width: 991px) {
  .product .contain .box .wrap .product-introduction .substance .textbox {
    width: 100%;
    border-bottom: none;
    margin-bottom: 0.2rem;
  }
}
.product .contain .box .wrap .product-introduction .substance .textbox .o-title .desc p {
  margin-bottom: 0;
}
.product .contain .box .wrap .product-introduction .substance .textbox .viewmore {
  margin-top: 0.35rem;
}
@media screen and (max-width: 991px) {
  .product .contain .box .wrap .product-introduction .substance .textbox .viewmore {
    display: none;
  }
}
.product .contain .box .wrap .product-introduction .substance .textbox .viewmore span,
.product .contain .box .wrap .product-introduction .substance .textbox .viewmore a {
  display: inline-block;
  color: #e67817;
  font-size: 16px;
  text-decoration: underline;
  cursor: pointer;
}
@media screen and (max-width: 1580px) {
  .product .contain .box .wrap .product-introduction .substance .textbox .viewmore span,
  .product .contain .box .wrap .product-introduction .substance .textbox .viewmore a {
    font-size: clamp(13px, 0.16rem, 16px);
  }
}
@media screen and (max-width: 991px) {
  .product .contain .box .wrap .product-introduction .substance .textbox .viewmore span,
  .product .contain .box .wrap .product-introduction .substance .textbox .viewmore a {
    font-size: 14px;
  }
}
.product .contain .box .wrap .product-introduction .substance .imgbox {
  width: 45.16949152542373%;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .product .contain .box .wrap .product-introduction .substance .imgbox {
    width: 100%;
  }
}
.product .contain .box .wrap .product-introduction .substance .imgbox img {
  display: block;
  width: 100%;
}
.product .contain .box .wrap .content {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.product .contain .box .wrap .content .product-group {
  gap: 10px;
}
.product .contain .box .wrap .content .product-group .product-item {
  width: calc((100% - 30px) / 4);
}
@media screen and (max-width: 1260px) {
  .product .contain .box .wrap .content .product-group .product-item {
    width: calc((100% - 20px) / 3);
  }
}
@media screen and (max-width: 767px) {
  .product .contain .box .wrap .content .product-group .product-item {
    width: calc((100% - 10px) / 2);
  }
}
@media screen and (max-width: 480px) {
  .product .contain .box .wrap .content .product-group .product-item {
    width: 100%;
  }
}
.application .universal-filter .product-selection .c-form .layui-form-item {
  position: relative;
  width: calc((100% - 0.8rem) / 5);
  margin-bottom: 0;
}
@media screen and (max-width: 1260px) {
  .application .universal-filter .product-selection .c-form .layui-form-item {
    width: calc((100% - 0.4rem) / 3);
  }
}
@media screen and (max-width: 991px) {
  .application .universal-filter .product-selection .c-form .layui-form-item {
    width: calc((100% - 0.3rem) / 2);
  }
}
@media screen and (max-width: 767px) {
  .application .universal-filter .product-selection .c-form .layui-form-item {
    width: 100%;
  }
}
.universal-filter .product-group {
  gap: 10px;
}
.universal-filter .product-group .product-item {
  width: calc((100% - 30px) / 4);
}
@media screen and (max-width: 1260px) {
  .universal-filter .product-group .product-item {
    width: calc((100% - 20px) / 3);
  }
}
@media screen and (max-width: 767px) {
  .universal-filter .product-group .product-item {
    width: calc((100% - 10px) / 2);
  }
}
@media screen and (max-width: 480px) {
  .universal-filter .product-group .product-item {
    width: 100%;
  }
}
.universal-filter .product-selection .c-form {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0.2rem;
  width: 100%;
}
@media screen and (max-width: 991px) {
  .universal-filter .product-selection .c-form {
    gap: 0.3rem;
  }
}
.universal-filter .product-selection .c-form .layui-form-item {
  position: relative;
  width: calc((100% - 0.6rem) / 4);
  margin-bottom: 0;
}
@media screen and (max-width: 991px) {
  .universal-filter .product-selection .c-form .layui-form-item {
    width: calc((100% - 0.3rem) / 2);
  }
}
@media screen and (max-width: 767px) {
  .universal-filter .product-selection .c-form .layui-form-item {
    width: 100%;
  }
}
.universal-filter .product-selection .c-form .layui-form-item .layui-form-select .layui-select-title .layui-input {
  width: 100%;
  height: 0.5rem;
  padding-left: 0.2rem;
  padding-right: 0.6rem;
  border-radius: 5px;
  border: #e9e9e9 solid 1px;
  box-sizing: border-box;
  background: #fbfbfb;
  font-family: "SourceHanSansCN-Medium";
  color: #000000;
  font-size: 16px;
}
@media screen and (max-width: 1580px) {
  .universal-filter .product-selection .c-form .layui-form-item .layui-form-select .layui-select-title .layui-input {
    font-size: clamp(13px, 0.16rem, 16px);
  }
}
@media screen and (max-width: 991px) {
  .universal-filter .product-selection .c-form .layui-form-item .layui-form-select .layui-select-title .layui-input {
    font-size: 14px;
  }
}
@media screen and (max-width: 1260px) {
  .universal-filter .product-selection .c-form .layui-form-item .layui-form-select .layui-select-title .layui-input {
    height: 0.5rem;
  }
}
@media screen and (max-width: 991px) {
  .universal-filter .product-selection .c-form .layui-form-item .layui-form-select .layui-select-title .layui-input {
    height: 0.6rem;
    padding-left: 0.3rem;
    padding-right: 0.8rem;
  }
}
@media screen and (max-width: 480px) {
  .universal-filter .product-selection .c-form .layui-form-item .layui-form-select .layui-select-title .layui-input {
    height: 0.68rem;
  }
}
.universal-filter .product-selection .c-form .layui-form-item .layui-form-select .layui-select-title .layui-input::-webkit-input-placeholder {
  font-family: "SourceHanSansCN-Medium";
  color: #000000;
}
.universal-filter .product-selection .c-form .layui-form-item .layui-form-select .layui-select-title .layui-input::-moz-placeholder {
  font-family: "SourceHanSansCN-Medium";
  color: #000000;
}
.universal-filter .product-selection .c-form .layui-form-item .layui-form-select .layui-select-title .layui-input:-moz-placeholder {
  font-family: "SourceHanSansCN-Medium";
  color: #000000;
}
.universal-filter .product-selection .c-form .layui-form-item .layui-form-select .layui-select-title .layui-input:-ms-input-placeholder {
  font-family: "SourceHanSansCN-Medium";
  color: #000000;
}
.universal-filter .product-selection .c-form .layui-form-item .layui-form-select .layui-select-title .layui-input::hover {
  border-color: #e9e9e9 !important;
}
.universal-filter .product-selection .c-form .layui-form-item .layui-form-select .layui-select-title .layui-input:focus {
  border-color: #e9e9e9 !important;
}
.universal-filter .product-selection .c-form .layui-form-item .layui-form-select .layui-select-title .layui-edge {
  top: 0;
  right: 0;
  margin-top: 0;
  border-width: 0;
  width: 0.45rem;
  height: 100%;
  background: url(../images/icon11.png) center no-repeat;
  background-size: 0.13rem auto;
}
@media screen and (max-width: 991px) {
  .universal-filter .product-selection .c-form .layui-form-item .layui-form-select .layui-select-title .layui-edge {
    width: 0.8rem;
    background: url(../images/icon11.png) center no-repeat;
    background-size: 11px auto;
  }
}
.universal-filter .product-selection .c-form .layui-form-item .layui-form-select dl {
  top: 100%;
  bottom: auto;
  max-width: 2.7rem;
  width: 100%;
  box-sizing: border-box;
  text-align: left;
}
.universal-filter .product-selection .c-form .layui-form-item .layui-form-select dl dd {
  font-size: 16px;
  color: #000000;
  line-height: 2.25;
  padding: 0 0.2rem;
}
@media screen and (max-width: 1580px) {
  .universal-filter .product-selection .c-form .layui-form-item .layui-form-select dl dd {
    font-size: clamp(13px, 0.16rem, 16px);
  }
}
@media screen and (max-width: 991px) {
  .universal-filter .product-selection .c-form .layui-form-item .layui-form-select dl dd {
    font-size: 14px;
  }
}
@media screen and (max-width: 991px) {
  .universal-filter .product-selection .c-form .layui-form-item .layui-form-select dl dd {
    padding: 0 0.3rem;
  }
}
.universal-filter .product-selection .c-form .layui-form-item .layui-form-select dl dd.layui-this {
  color: #FFFFFF;
  background-color: #016d2f;
}
.universal-filter .product-selection .c-form .layui-form-item .layui-form-select dl dd.layui-select-tips {
  padding-left: 0.2rem !important;
}
@media screen and (max-width: 991px) {
  .universal-filter .product-selection .c-form .layui-form-item .layui-form-select dl dd.layui-select-tips {
    padding-left: 0.3rem !important;
  }
}
.universal-filter .filter-section {
  border-top: #e9e9e9 solid 1px;
  padding-top: 0.4rem;
}
.universal-filter .filter-section .filters-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
@media screen and (max-width: 991px) {
  .universal-filter .filter-section .filters-wrapper {
    flex-wrap: wrap;
  }
}
.universal-filter .filter-section .filters-wrapper .filter-title {
  flex: 1;
  overflow: hidden;
  font-family: "SourceHanSansCN-Regular";
  color: #333333;
  font-size: 18px;
}
@media screen and (max-width: 1580px) {
  .universal-filter .filter-section .filters-wrapper .filter-title {
    font-size: clamp(15px, 0.18rem, 18px);
  }
}
@media screen and (max-width: 991px) {
  .universal-filter .filter-section .filters-wrapper .filter-title {
    font-size: 16px;
  }
}
@media screen and (max-width: 991px) {
  .universal-filter .filter-section .filters-wrapper .filter-title {
    flex: none;
  }
}
.universal-filter .filter-section .filters-wrapper .filter-title span {
  display: inline-block;
  font-family: "SourceHanSansCN-Medium";
  color: #ee9d11;
}
.universal-filter .filter-section .filters-wrapper .filter-group {
  flex-shrink: 0;
  margin-left: 0.3rem;
}
@media screen and (max-width: 991px) {
  .universal-filter .filter-section .filters-wrapper .filter-group {
    width: 100%;
    margin-left: 0;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .universal-filter .filter-section .filters-wrapper .filter-group {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 991px) {
  .universal-filter .filter-section .filters-wrapper .filter-group .custom-select {
    width: 200px;
  }
}
@media screen and (max-width: 767px) {
  .universal-filter .filter-section .filters-wrapper .filter-group .custom-select {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .universal-filter .filter-section .filters-wrapper .filter-group .filter-right {
    width: 100%;
    margin-left: 0;
    margin-top: 20px;
    justify-content: flex-end;
  }
}
.universal-filter .filter-section .filter-results {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-top: 0.36rem;
}
@media screen and (max-width: 1260px) {
  .universal-filter .filter-section .filter-results {
    margin-top: 30px;
  }
}
.universal-filter .filter-section .filter-results.list-mode .substance {
  gap: 0;
}
.universal-filter .filter-section .filter-results.list-mode .substance .proitem {
  flex-direction: row;
  align-items: center;
  width: 100%;
  padding-right: 0.6rem;
}
.universal-filter .filter-section .filter-results.list-mode .substance .proitem .subtitle {
  width: 18%;
  margin-right: 0.3rem;
  margin-bottom: 0;
}
.universal-filter .filter-section .filter-results.list-mode .substance .proitem .arrow {
  margin-top: 0;
  margin-left: 0.3rem;
  align-items: center;
}
.universal-filter .filter-section .filter-results .substance {
  gap: 10px;
}
.universal-filter .filter-section .filter-results .substance .proitem {
  width: calc((100% - 30px) / 4);
}
@media screen and (max-width: 1260px) {
  .universal-filter .filter-section .filter-results .substance .proitem {
    width: calc((100% - 20px) / 3);
  }
}
@media screen and (max-width: 767px) {
  .universal-filter .filter-section .filter-results .substance .proitem {
    width: calc((100% - 10px) / 2);
  }
}
@media screen and (max-width: 480px) {
  .universal-filter .filter-section .filter-results .substance .proitem {
    width: 100%;
  }
}
.filter-group {
  display: flex;
  align-items: center;
}
.filter-group .filter-right {
  display: flex;
  align-items: center;
  margin-left: 0.25rem;
}
@media screen and (max-width: 991px) {
  .filter-group .filter-right {
    display: none;
  }
}
.filter-group .filter-right .txt {
  color: #016D2F;
  font-size: 16px;
}
@media screen and (max-width: 1580px) {
  .filter-group .filter-right .txt {
    font-size: clamp(13px, 0.16rem, 16px);
  }
}
@media screen and (max-width: 991px) {
  .filter-group .filter-right .txt {
    font-size: 14px;
  }
}
.filter-group .filter-right .layout-switch ul {
  display: flex;
  align-items: center;
  gap: 10px;
}
.filter-group .filter-right .layout-switch ul li {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.filter-group .filter-right .layout-switch ul li.selected img {
  opacity: 1;
  -webkit-filter: none;
  filter: none;
}
.filter-group .filter-right .layout-switch ul li img {
  width: 0.23rem;
  opacity: 0.4;
  -webkit-filter: brightness(0);
  filter: brightness(0);
  transition: all 0.5s ease;
}
@media screen and (max-width: 991px) {
  .filter-group .filter-right .layout-switch ul li img {
    width: 20px;
  }
}
.product-item {
  display: flex;
  flex-direction: column;
  border: #e9e9e9 solid 1px;
  box-sizing: border-box;
}
.product-item:hover .imgbox img {
  transform: scale(1.06);
}
.product-item:hover .textbox .subtitle {
  color: #016d2f;
}
.product-item .imgbox {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.product-item .imgbox img {
  display: block;
  width: 100%;
  transition: all 0.5s ease;
}
.product-item .textbox {
  flex: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 0.2rem;
  box-sizing: border-box;
}
@media screen and (max-width: 1260px) {
  .product-item .textbox {
    padding: 0.25rem;
  }
}
@media screen and (max-width: 991px) {
  .product-item .textbox {
    padding: 20px;
  }
}
.product-item .textbox .cont {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}
.product-item .textbox .cont .subtitle {
  font-family: "SourceHanSansCN-Medium";
  color: #222222;
  font-size: 18px;
  margin-bottom: 0.12rem;
  transition: all 0.5s ease;
}
@media screen and (max-width: 1580px) {
  .product-item .textbox .cont .subtitle {
    font-size: clamp(15px, 0.18rem, 18px);
  }
}
@media screen and (max-width: 991px) {
  .product-item .textbox .cont .subtitle {
    font-size: 16px;
  }
}
.product-item .textbox .cont .text {
  color: #333333;
  font-size: 17px;
  line-height: 1.5;
}
@media screen and (max-width: 1580px) {
  .product-item .textbox .cont .text {
    font-size: clamp(14px, 0.17rem, 17px);
  }
}
@media screen and (max-width: 991px) {
  .product-item .textbox .cont .text {
    font-size: 14px;
  }
}
.product-item .textbox .more {
  margin-top: 0.2rem;
  border-top: #e9e9e9 solid 1px;
  padding-top: 0.15rem;
}
@media screen and (max-width: 1260px) {
  .product-item .textbox .more {
    margin-top: 15px;
    padding-top: 12px;
  }
}
.product-item .textbox .more span {
  display: inline-block;
  color: #E67817;
  font-size: 16px;
  text-decoration: underline;
}
@media screen and (max-width: 1580px) {
  .product-item .textbox .more span {
    font-size: clamp(13px, 0.16rem, 16px);
  }
}
@media screen and (max-width: 991px) {
  .product-item .textbox .more span {
    font-size: 14px;
  }
}
.custom-select {
  position: relative;
  width: 2.35rem;
  user-select: none;
}
.custom-select.open .select-arrow {
  transform: rotate(180deg);
}
.custom-select.open .select-options {
  display: block;
}
.custom-select .select-trigger {
  border: 1px solid #e9e9e9;
  border-radius: 5px;
  padding: 0 0.2rem;
  height: 0.42rem;
  background: #fbfbfb;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "SourceHanSansCN-Medium";
  color: #016D2F;
  font-size: 16px;
}
@media screen and (max-width: 1580px) {
  .custom-select .select-trigger {
    font-size: clamp(13px, 0.16rem, 16px);
  }
}
@media screen and (max-width: 991px) {
  .custom-select .select-trigger {
    font-size: 14px;
  }
}
@media screen and (max-width: 1260px) {
  .custom-select .select-trigger {
    height: 0.5rem;
  }
}
@media screen and (max-width: 991px) {
  .custom-select .select-trigger {
    height: 0.6rem;
    padding: 0 0.3rem;
  }
}
@media screen and (max-width: 480px) {
  .custom-select .select-trigger {
    height: 0.68rem;
  }
}
.custom-select .select-trigger .select-arrow {
  display: flex;
  align-items: center;
  transition: transform 0.3s;
}
.custom-select .select-trigger .select-arrow img {
  width: 0.13rem;
}
@media screen and (max-width: 991px) {
  .custom-select .select-trigger .select-arrow img {
    width: 11px;
  }
}
.custom-select .select-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin-top: 4px;
  padding: 0;
  list-style: none;
  max-height: 200px;
  overflow-y: auto;
  display: none;
  z-index: 100;
  padding-top: 5px;
  padding-bottom: 5px;
}
.custom-select .select-options li {
  color: #000000;
  font-size: 16px;
  line-height: 2.25;
  padding: 0 0.2rem;
  cursor: pointer;
  transition: background 0.2s;
}
@media screen and (max-width: 1580px) {
  .custom-select .select-options li {
    font-size: clamp(13px, 0.16rem, 16px);
  }
}
@media screen and (max-width: 991px) {
  .custom-select .select-options li {
    font-size: 14px;
  }
}
@media screen and (max-width: 991px) {
  .custom-select .select-options li {
    padding: 0 0.3rem;
  }
}
.custom-select .select-options li:hover {
  background: #f5f5f5;
}
.custom-select .select-options li.selected {
  background: #016d2f;
  color: #FFFFFF;
}
.custom-select .select-options li.selected a {
  color: #FFFFFF;
}
.custom-select .select-options li a {
  color: #000000;
}
.product-details .summary .contain {
  padding-top: 2%;
  padding-bottom: 3%;
  background: #016d2f url(../images/img22.png) right 4.5% bottom no-repeat;
  background-size: 20.8888888888888% auto;
  box-sizing: border-box;
}
@media screen and (max-width: 1260px) {
  .product-details .summary .contain {
    padding-top: 4%;
    padding-bottom: 6%;
  }
}
@media screen and (max-width: 1023px) {
  .product-details .summary .contain {
    padding-top: 0.5rem;
    padding-bottom: 0.7rem;
  }
}
.product-details .summary .contain .tag {
  margin-bottom: 0.1rem;
}
.product-details .summary .contain .tag span {
  display: inline-block;
  padding: 0 6px;
  background: #e67817;
  color: #ffffff;
  font-size: 16px;
  border-radius: 3px;
}
@media screen and (max-width: 1580px) {
  .product-details .summary .contain .tag span {
    font-size: clamp(13px, 0.16rem, 16px);
  }
}
@media screen and (max-width: 991px) {
  .product-details .summary .contain .tag span {
    font-size: 14px;
  }
}
.product-details .summary .contain .title {
  font-family: "SourceHanSansCN-Bold";
  color: #FFFFFF;
  font-size: 40px;
}
@media screen and (max-width: 1580px) {
  .product-details .summary .contain .title {
    font-size: clamp(24px, 0.4rem, 40px);
  }
}
@media screen and (max-width: 991px) {
  .product-details .summary .contain .title {
    font-size: 26px;
  }
}
.product-details .summary .contain .text {
  margin-top: 0.1rem;
  color: #ffffff;
  font-size: 20px;
}
@media screen and (max-width: 1580px) {
  .product-details .summary .contain .text {
    font-size: clamp(18px, 0.2rem, 20px);
  }
}
@media screen and (max-width: 991px) {
  .product-details .summary .contain .text {
    font-size: 19px;
  }
}
.product-details .summary .contain .public-btn {
  margin-top: 0.45rem;
}
.product-details .box .contain {
  background: #FFFFFF;
}
.product-details .box .contain .content {
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.product-details .box .contain .content .commonsection {
  padding-top: 0.7rem;
  margin-top: -0.7rem;
}
.product-details .box .contain .content .commonsection .section-p3 .substance {
  display: flex;
  flex-direction: column;
}
.product-details .box .contain .content .commonsection .section-p4 .substance {
  display: flex;
  flex-direction: column;
}
.product-details .box .contain .content .commonsection .substance {
  margin-top: 0.15rem;
}
.product-details .box .contain .content .commonsection .substance .editbox {
  color: #666666;
  font-size: 18px;
  line-height: 1.7;
}
@media screen and (max-width: 1580px) {
  .product-details .box .contain .content .commonsection .substance .editbox {
    font-size: clamp(15px, 0.18rem, 18px);
  }
}
@media screen and (max-width: 991px) {
  .product-details .box .contain .content .commonsection .substance .editbox {
    font-size: 16px;
  }
}
.product-details .box .contain .content .commonsection .substance .editbox ul,
.product-details .box .contain .content .commonsection .substance .editbox ol {
  padding-left: revert;
}
.product-details .box .contain .content .commonsection .substance .editbox ul li,
.product-details .box .contain .content .commonsection .substance .editbox ol li {
  list-style: inherit;
}
.product-details .box .contain .content .commonsection .substance .editbox strong {
  font-family: "SourceHanSansCN-Bold";
  color: #000000;
}
.product-details .box .contain .content .commonsection .substance .public-btn {
  margin-top: 0.2rem;
}
.panel-box .panel .panel-header {
  position: relative;
  padding: 0.25rem 0.7rem 0.25rem 0;
  box-sizing: border-box;
  border-bottom: #e9e9e9 solid 1px;
}
.panel-box .panel .panel-header .panel-title {
  font-family: "SourceHanSansCN-Regular";
  color: #e67817;
  font-size: 26px;
}
@media screen and (max-width: 1580px) {
  .panel-box .panel .panel-header .panel-title {
    font-size: clamp(21px, 0.26rem, 26px);
  }
}
@media screen and (max-width: 991px) {
  .panel-box .panel .panel-header .panel-title {
    font-size: 22px;
  }
}
.panel-box .panel .panel-header .panel-icon {
  position: absolute;
  right: 0;
  top: 0;
  width: 0.7rem;
  height: 100%;
  background: url(../images/icon19.png) center no-repeat;
  background-size: 0.13rem auto;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 1260px) {
  .panel-box .panel .panel-header .panel-icon {
    background: url(../images/icon19.png) center no-repeat;
    background-size: 12px auto;
  }
}
.panel-box .panel .panel-header .panel-icon.open {
  transform: rotate(180deg);
}
.panel-box .panel .panel-content {
  display: none;
}
.panel-box .panel .panel-content.open {
  display: block;
}
.panel-box .panel .panel-content .doc-item {
  display: flex;
  align-items: center;
  padding: 0.2rem 0.25rem;
  background-color: #fafafa;
}
@media screen and (max-width: 1260px) {
  .panel-box .panel .panel-content .doc-item {
    padding: 18px;
  }
}
@media screen and (max-width: 991px) {
  .panel-box .panel .panel-content .doc-item {
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
.panel-box .panel .panel-content .doc-item:nth-child(even) {
  background-color: #FFFFFF;
}
.panel-box .panel .panel-content .doc-item .checkbox-label {
  flex: 1;
  overflow: hidden;
  cursor: pointer;
}
@media screen and (max-width: 991px) {
  .panel-box .panel .panel-content .doc-item .checkbox-label {
    flex: none;
    width: 100%;
    margin-bottom: 6px;
  }
}
.panel-box .panel .panel-content .doc-item .checkbox-label .doc-checkbox {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.panel-box .panel .panel-content .doc-item .checkbox-label .doc-checkbox + span {
  position: relative;
  padding-left: 0.4rem;
  cursor: pointer;
  display: inline-block;
}
@media screen and (max-width: 1260px) {
  .panel-box .panel .panel-content .doc-item .checkbox-label .doc-checkbox + span {
    padding-left: 28px;
  }
}
.panel-box .panel .panel-content .doc-item .checkbox-label .doc-checkbox + span::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.04rem;
  width: 0.18rem;
  height: 0.18rem;
  border: 1px solid #e9e9e9;
  border-radius: 2px;
  background: #fafafa;
  transition: all 0.2s;
  box-sizing: border-box;
}
@media screen and (max-width: 1260px) {
  .panel-box .panel .panel-content .doc-item .checkbox-label .doc-checkbox + span::before {
    top: 3px;
    width: 16px;
    height: 16px;
  }
}
.panel-box .panel .panel-content .doc-item .checkbox-label .doc-checkbox:checked + span::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0.04rem;
  width: 0.18rem;
  height: 0.18rem;
  text-align: center;
  background: url(../images/tick_w.png) center no-repeat;
  background-size: 0.12rem auto;
}
@media screen and (max-width: 1260px) {
  .panel-box .panel .panel-content .doc-item .checkbox-label .doc-checkbox:checked + span::after {
    top: 3px;
    width: 16px;
    height: 16px;
    background: url(../images/tick_w.png) center no-repeat;
    background-size: 10px auto;
  }
}
.panel-box .panel .panel-content .doc-item .checkbox-label .doc-checkbox:checked + span::before {
  background: #e67817;
  border-color: #e67817;
}
.panel-box .panel .panel-content .doc-item .checkbox-label .doc-checkbox:hover::before {
  border-color: #e67817;
}
.panel-box .panel .panel-content .doc-item .checkbox-label .doc-name {
  font-size: 18px;
  color: #333333;
}
@media screen and (max-width: 1580px) {
  .panel-box .panel .panel-content .doc-item .checkbox-label .doc-name {
    font-size: clamp(15px, 0.18rem, 18px);
  }
}
@media screen and (max-width: 991px) {
  .panel-box .panel .panel-content .doc-item .checkbox-label .doc-name {
    font-size: 16px;
  }
}
@media screen and (max-width: 480px) {
  .panel-box .panel .panel-content .doc-item .checkbox-label .doc-name {
    font-size: 3.75vmin;
  }
}
.panel-box .panel .panel-content .doc-item .doc-text {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  margin-left: 0.3rem;
}
@media screen and (max-width: 1260px) {
  .panel-box .panel .panel-content .doc-item .doc-text {
    margin-left: 0.24rem;
  }
}
@media screen and (max-width: 991px) {
  .panel-box .panel .panel-content .doc-item .doc-text {
    margin-left: 28px;
  }
}
.panel-box .panel .panel-content .doc-item .doc-text .doc-type {
  margin-right: 1rem;
  font-size: 16px;
  color: #777777;
}
@media screen and (max-width: 1580px) {
  .panel-box .panel .panel-content .doc-item .doc-text .doc-type {
    font-size: clamp(13px, 0.16rem, 16px);
  }
}
@media screen and (max-width: 991px) {
  .panel-box .panel .panel-content .doc-item .doc-text .doc-type {
    font-size: 14px;
  }
}
@media screen and (max-width: 1260px) {
  .panel-box .panel .panel-content .doc-item .doc-text .doc-type {
    margin-right: 0.24rem;
  }
}
@media screen and (max-width: 480px) {
  .panel-box .panel .panel-content .doc-item .doc-text .doc-type {
    font-size: 3.4vmin;
  }
}
.panel-box .panel .panel-content .doc-item .doc-text .doc-info {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: #999999;
  font-size: 16px;
}
@media screen and (max-width: 1580px) {
  .panel-box .panel .panel-content .doc-item .doc-text .doc-info {
    font-size: clamp(13px, 0.16rem, 16px);
  }
}
@media screen and (max-width: 991px) {
  .panel-box .panel .panel-content .doc-item .doc-text .doc-info {
    font-size: 14px;
  }
}
@media screen and (max-width: 991px) {
  .panel-box .panel .panel-content .doc-item .doc-text .doc-info {
    flex: 1;
  }
}
.panel-box .panel .panel-content .doc-item .doc-text .doc-info span {
  margin-right: 0.24rem;
}
@media screen and (max-width: 480px) {
  .panel-box .panel .panel-content .doc-item .doc-text .doc-info {
    font-size: 3.4vmin;
  }
}
.panel-box .panel .panel-content .doc-item .doc-text .doc-info .lang-select {
  display: inline-block;
}
.panel-box .panel .panel-content .doc-item .doc-text .doc-info .lang-select .layui-form-select .layui-select-title .layui-input {
  width: 1rem;
  height: 0.45rem;
  padding: 0 0.3rem 0 0.12rem;
  border-radius: 5px;
  border: none;
  box-sizing: border-box;
  background: none;
  font-family: "SourceHanSansCN-Light";
  color: #999999;
  font-size: 16px;
}
@media screen and (max-width: 1580px) {
  .panel-box .panel .panel-content .doc-item .doc-text .doc-info .lang-select .layui-form-select .layui-select-title .layui-input {
    font-size: clamp(13px, 0.16rem, 16px);
  }
}
@media screen and (max-width: 991px) {
  .panel-box .panel .panel-content .doc-item .doc-text .doc-info .lang-select .layui-form-select .layui-select-title .layui-input {
    font-size: 14px;
  }
}
@media screen and (max-width: 1023px) {
  .panel-box .panel .panel-content .doc-item .doc-text .doc-info .lang-select .layui-form-select .layui-select-title .layui-input {
    width: 70px;
    height: 36px;
    padding-left: 0;
  }
}
@media screen and (max-width: 540px) {
  .panel-box .panel .panel-content .doc-item .doc-text .doc-info .lang-select .layui-form-select .layui-select-title .layui-input {
    height: 32px;
  }
}
.panel-box .panel .panel-content .doc-item .doc-text .doc-info .lang-select .layui-form-select .layui-select-title .layui-input::-webkit-input-placeholder {
  font-family: "SourceHanSansCN-Light";
  color: #999999;
}
.panel-box .panel .panel-content .doc-item .doc-text .doc-info .lang-select .layui-form-select .layui-select-title .layui-input::-moz-placeholder {
  font-family: "SourceHanSansCN-Light";
  color: #999999;
}
.panel-box .panel .panel-content .doc-item .doc-text .doc-info .lang-select .layui-form-select .layui-select-title .layui-input:-moz-placeholder {
  font-family: "SourceHanSansCN-Light";
  color: #999999;
}
.panel-box .panel .panel-content .doc-item .doc-text .doc-info .lang-select .layui-form-select .layui-select-title .layui-input:-ms-input-placeholder {
  font-family: "SourceHanSansCN-Light";
  color: #999999;
}
.panel-box .panel .panel-content .doc-item .doc-text .doc-info .lang-select .layui-form-select .layui-select-title .layui-input::hover {
  border-color: #e9e9e9 !important;
}
.panel-box .panel .panel-content .doc-item .doc-text .doc-info .lang-select .layui-form-select .layui-select-title .layui-input:focus {
  border-color: #e9e9e9 !important;
}
.panel-box .panel .panel-content .doc-item .doc-text .doc-info .lang-select .layui-form-select .layui-select-title .layui-edge {
  top: 0;
  right: 0;
  margin-top: 0;
  border-width: 0;
  width: 0.3rem;
  height: 100%;
  background: url(../images/icon11.png) center no-repeat;
  background-size: 33.33333333333% auto;
}
@media screen and (max-width: 991px) {
  .panel-box .panel .panel-content .doc-item .doc-text .doc-info .lang-select .layui-form-select .layui-select-title .layui-edge {
    width: 0.4rem;
  }
}
.panel-box .panel .panel-content .doc-item .doc-text .doc-info .lang-select .layui-form-select dl {
  top: 100%;
  bottom: auto;
  max-width: 2.7rem;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
}
.panel-box .panel .panel-content .doc-item .doc-text .doc-info .lang-select .layui-form-select dl dd {
  font-size: 14px;
  color: #999999;
  line-height: 2.25;
  padding: 0 0.12rem;
}
@media screen and (max-width: 1580px) {
  .panel-box .panel .panel-content .doc-item .doc-text .doc-info .lang-select .layui-form-select dl dd {
    font-size: clamp(12px, 0.14rem, 14px);
  }
}
@media screen and (max-width: 991px) {
  .panel-box .panel .panel-content .doc-item .doc-text .doc-info .lang-select .layui-form-select dl dd {
    font-size: 13px;
  }
}
@media screen and (max-width: 991px) {
  .panel-box .panel .panel-content .doc-item .doc-text .doc-info .lang-select .layui-form-select dl dd {
    padding: 0 0.3rem;
  }
}
.panel-box .panel .panel-content .doc-item .doc-text .doc-info .lang-select .layui-form-select dl dd.layui-this {
  color: #FFFFFF;
  background-color: #016d2f;
}
.panel-box .panel .panel-content .doc-item .doc-text .doc-info .lang-select .layui-form-select dl dd.layui-select-tips {
  padding-left: 0.12rem !important;
}
@media screen and (max-width: 991px) {
  .panel-box .panel .panel-content .doc-item .doc-text .doc-info .lang-select .layui-form-select dl dd.layui-select-tips {
    padding-left: 0.3rem !important;
  }
}
.panel-box .panel .panel-content .doc-item .doc-text .doc-info .lang-select select {
  width: 100%;
  color: #999;
  line-height: 3;
  font-size: 16px;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  outline: none;
  background: url(../images/icon11.png) no-repeat center right;
  background-size: 8px auto;
  padding-left: 0.12rem;
  padding-right: 0.3rem;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.panel-box .panel .panel-content .doc-item .download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0.8rem;
  height: 0.32rem;
  font-size: 16px;
  color: #e67817;
  border: 1px solid #e67817;
  padding: 0 0.15rem;
  border-radius: 0.16rem;
  box-sizing: border-box;
  cursor: pointer;
  transition: all 0.5s ease;
}
@media screen and (max-width: 1580px) {
  .panel-box .panel .panel-content .doc-item .download-btn {
    font-size: clamp(13px, 0.16rem, 16px);
  }
}
@media screen and (max-width: 991px) {
  .panel-box .panel .panel-content .doc-item .download-btn {
    font-size: 14px;
  }
}
@media screen and (max-width: 1260px) {
  .panel-box .panel .panel-content .doc-item .download-btn {
    min-width: 80px;
    height: 30px;
    border-radius: 15px;
    padding: 0 12px;
  }
}
@media screen and (max-width: 991px) {
  .panel-box .panel .panel-content .doc-item .download-btn {
    margin-left: 28px;
  }
}
@media screen and (max-width: 480px) {
  .panel-box .panel .panel-content .doc-item .download-btn {
    min-width: 16.67vmin;
    height: 6.25vmin;
    border-radius: 3.125vw;
    padding: 0 2.5vmin;
    font-size: 3.4vmin;
  }
}
.panel-box .panel .panel-content .doc-item .download-btn img {
  display: inline-block;
  margin-right: 2px;
  width: 0.19rem;
  transition: all 0.1s ease;
}
@media screen and (max-width: 1260px) {
  .panel-box .panel .panel-content .doc-item .download-btn img {
    width: 16px;
  }
}
@media screen and (max-width: 480px) {
  .panel-box .panel .panel-content .doc-item .download-btn img {
    width: 3.4vmin;
  }
}
.panel-box .panel .panel-content .doc-item .download-btn:hover {
  background: #e67817;
  color: #fff;
}
.panel-box .panel .panel-content .doc-item .download-btn:hover img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.panel-box .footer-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.2rem;
  padding-top: 0.42rem;
  border-top: #e9e9e9 solid 1px;
}
@media screen and (max-width: 1260px) {
  .panel-box .footer-actions {
    padding-top: 35px;
  }
}
.panel-box .footer-actions .footer-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 0.44rem;
  padding: 0 0.2rem;
  cursor: pointer;
  font-size: 16px;
  color: #e67817;
  border: #e67817 solid 1px;
  transition: all 0.5s ease;
}
@media screen and (max-width: 1580px) {
  .panel-box .footer-actions .footer-btn {
    font-size: clamp(13px, 0.16rem, 16px);
  }
}
@media screen and (max-width: 991px) {
  .panel-box .footer-actions .footer-btn {
    font-size: 14px;
  }
}
@media screen and (max-width: 1260px) {
  .panel-box .footer-actions .footer-btn {
    height: 38px;
    padding: 0 15px;
  }
}
@media screen and (max-width: 480px) {
  .panel-box .footer-actions .footer-btn {
    font-size: 3.4vmin;
    height: 8vmin;
    padding: 0 3.125vmin;
  }
}
.panel-box .footer-actions .footer-btn img {
  display: inline-block;
  margin-right: 2px;
  width: 0.19rem;
  transition: all 0.5s ease;
}
@media screen and (max-width: 1260px) {
  .panel-box .footer-actions .footer-btn img {
    width: 16px;
  }
}
@media screen and (max-width: 480px) {
  .panel-box .footer-actions .footer-btn img {
    width: 3.4vmin;
  }
}
.panel-box .footer-actions .footer-btn.all-btn:hover {
  background-color: #e67817;
  color: #FFFFFF;
}
.panel-box .footer-actions .footer-btn.btn-selected {
  background-color: #e67817;
  color: #FFFFFF;
}
.panel-box .footer-actions .footer-btn.btn-selected img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.currency-nav {
  border-bottom: #e9e9e9 solid 1px;
}
.currency-nav.sticky {
  position: sticky;
  top: 0;
  z-index: 13;
  width: 100%;
  background: #FFFFFF;
}
.currency-nav ul {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
@media screen and (max-width: 1260px) {
  .currency-nav ul {
    gap: 0.7rem;
  }
}
@media screen and (max-width: 991px) {
  .currency-nav ul {
    gap: 20px;
  }
}
@media screen and (max-width: 480px) {
  .currency-nav ul {
    gap: 3.6vmin;
  }
}
.currency-nav ul li {
  position: relative;
  display: flex;
  align-items: center;
  height: 0.7rem;
  padding: 0 0.1rem;
  font-family: "SourceHanSansCN-Regular";
  color: #888888;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.5s ease;
}
@media screen and (max-width: 1580px) {
  .currency-nav ul li {
    font-size: clamp(18px, 0.2rem, 20px);
  }
}
@media screen and (max-width: 991px) {
  .currency-nav ul li {
    font-size: 19px;
  }
}
@media screen and (max-width: 991px) {
  .currency-nav ul li {
    font-size: 18px;
  }
}
@media screen and (max-width: 991px) and screen and (max-width: 1580px) {
  .currency-nav ul li {
    font-size: clamp(15px, 0.18rem, 18px);
  }
}
@media screen and (max-width: 991px) and screen and (max-width: 991px) {
  .currency-nav ul li {
    font-size: 16px;
  }
}
@media screen and (max-width: 480px) {
  .currency-nav ul li {
    height: 11vmin;
    font-size: 3.75vmin;
  }
}
.currency-nav ul li::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 0;
  height: 0.04rem;
  background: #349734;
  transition: all 0.5s ease;
}
.currency-nav ul li:hover {
  color: #016d2f;
}
.currency-nav ul li:hover::before {
  width: 100%;
}
.currency-nav ul li.on {
  color: #016d2f;
}
.currency-nav ul li.on::before {
  width: 100%;
}
/* 隐藏原生 checkbox */
/* 自定义复选框容器 */
/* 未选中状态的框 */
/* 选中状态的勾 */
/* 选中时的背景色 */
/* hover 效果 */
/* 隐藏原生 checkbox */
.recommendation .contain {
  background: #ffffff;
  padding-top: 4%;
  padding-bottom: 4%;
}
@media screen and (max-width: 1260px) {
  .recommendation .contain {
    padding-bottom: 6%;
  }
}
@media screen and (max-width: 1023px) {
  .recommendation .contain {
    padding-top: 0.5rem;
    padding-bottom: 1rem;
  }
}
.recommendation .contain .box {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.recommendation .contain .box .wrap .recommendation-lsit {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 10px;
}
.recommendation .contain .box .wrap .recommendation-lsit .product-item {
  width: calc((100% - 30px) / 4);
}
@media screen and (max-width: 1260px) {
  .recommendation .contain .box .wrap .recommendation-lsit .product-item {
    width: calc((100% - 20px) / 3);
  }
}
@media screen and (max-width: 767px) {
  .recommendation .contain .box .wrap .recommendation-lsit .product-item {
    width: calc((100% - 10px) / 2);
  }
}
@media screen and (max-width: 480px) {
  .recommendation .contain .box .wrap .recommendation-lsit .product-item {
    width: 100%;
  }
}
.general-part {
  position: relative;
}
.general-part .imgbox {
  max-width: 1350px;
  width: 70.3125%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1580px) {
  .general-part .imgbox {
    max-width: 80%;
    width: 80%;
  }
}
@media screen and (max-width: 1260px) {
  .general-part .imgbox {
    max-width: 90%;
    width: 90%;
  }
}
.general-part .imgbox img {
  display: block;
  width: 100%;
}
.general-part .contain {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 991px) {
  .general-part .contain {
    position: static;
    transform: none;
    padding-left: 0;
    padding-right: 0;
  }
}
.general-part .contain .textbox {
  display: inline-block;
  padding: 0.4rem;
  background: rgba(49, 115, 182, 0.8);
}
@media screen and (max-width: 991px) {
  .general-part .contain .textbox {
    width: 100%;
    padding: 0.4rem 0.3rem 0.6rem;
  }
}
.general-part .contain .textbox .title {
  font-family: "SourceHanSansCN-Medium";
  color: #FFFFFF;
  font-size: 50px;
}
@media screen and (max-width: 1580px) {
  .general-part .contain .textbox .title {
    font-size: clamp(24px, 0.5rem, 50px);
  }
}
@media screen and (max-width: 991px) {
  .general-part .contain .textbox .title {
    font-size: 26px;
  }
}
.general-part .contain .textbox .text {
  font-family: "SourceHanSansCN-Regular";
  color: #FFFFFF;
  font-size: 27px;
}
@media screen and (max-width: 1580px) {
  .general-part .contain .textbox .text {
    font-size: clamp(21px, 0.27rem, 27px);
  }
}
@media screen and (max-width: 991px) {
  .general-part .contain .textbox .text {
    font-size: 22px;
  }
}
@media screen and (max-width: 1260px) {
  .general-part .contain .textbox .text {
    margin-top: 0.12rem;
  }
}
@media screen and (max-width: 991px) {
  .general-part .contain .textbox .text {
    font-size: 16px;
  }
}
.re-details .box .contain {
  padding-top: 2.5%;
  padding-bottom: 4%;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  background: #FFFFFF;
}
@media screen and (max-width: 1260px) {
  .re-details .box .contain {
    padding-top: 4%;
    padding-bottom: 6%;
  }
}
@media screen and (max-width: 1023px) {
  .re-details .box .contain {
    gap: 40px;
    padding-top: 0.5rem;
    padding-bottom: 1rem;
  }
}
.re-details .box .contain .wrap .editbox {
  color: #333333;
  font-size: 16px;
  line-height: 1.7;
}
@media screen and (max-width: 1580px) {
  .re-details .box .contain .wrap .editbox {
    font-size: clamp(13px, 0.16rem, 16px);
  }
}
@media screen and (max-width: 991px) {
  .re-details .box .contain .wrap .editbox {
    font-size: 14px;
  }
}
.re-details .box .contain .wrap .editbox ul,
.re-details .box .contain .wrap .editbox ol {
  padding-left: revert;
}
.re-details .box .contain .wrap .editbox ul li,
.re-details .box .contain .wrap .editbox ol li {
  list-style: inherit;
}
.re-details .box .contain .wrap .editbox strong {
  font-family: "SourceHanSansCN-Bold";
  color: #000000;
}
.re-details .box .contain .wrap .Key-additives .content {
  margin-top: 0.45rem;
  gap: 10px;
}
.re-details .box .contain .wrap .Key-additives .content .product-item {
  width: calc((100% - 30px) / 4);
}
@media screen and (max-width: 1260px) {
  .re-details .box .contain .wrap .Key-additives .content .product-item {
    width: calc((100% - 20px) / 3);
  }
}
@media screen and (max-width: 767px) {
  .re-details .box .contain .wrap .Key-additives .content .product-item {
    width: calc((100% - 10px) / 2);
  }
}
@media screen and (max-width: 480px) {
  .re-details .box .contain .wrap .Key-additives .content .product-item {
    width: 100%;
  }
}
.interested-part {
  padding-top: 0.3rem;
  border-top: #e9e9e9 solid 1px;
}
@media screen and (max-width: 991px) {
  .interested-part {
    padding-top: 0.4rem;
  }
}
.interested-part .title {
  font-family: "SourceHanSansCN-Regular";
  color: #016d2f;
  font-size: 30px;
}
@media screen and (max-width: 1580px) {
  .interested-part .title {
    font-size: clamp(21px, 0.3rem, 30px);
  }
}
@media screen and (max-width: 991px) {
  .interested-part .title {
    font-size: 24px;
  }
}
.interested-part .content {
  margin-top: 0.4rem;
  gap: 10px;
}
.interested-part .content .item {
  position: relative;
  display: block;
  width: calc((100% - 30px) / 4);
}
@media screen and (max-width: 1260px) {
  .interested-part .content .item {
    width: calc((100% - 20px) / 3);
  }
}
@media screen and (max-width: 991px) {
  .interested-part .content .item {
    width: calc((100% - 10px) / 2);
  }
}
@media screen and (max-width: 480px) {
  .interested-part .content .item {
    width: 100%;
  }
}
.interested-part .content .item:hover .imgbox img {
  transform: scale(1.1);
}
.interested-part .content .item:hover .textbox .text {
  max-height: 100px;
}
.interested-part .content .item .imgbox {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.interested-part .content .item .imgbox img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}
.interested-part .content .item .textbox {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 83.22%;
  height: 70%;
  background: rgba(1, 109, 47, 0.85);
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  gap: 0.05rem;
  padding: 0.2rem 0.3rem;
  box-sizing: border-box;
}
.interested-part .content .item .textbox .subtitle {
  font-family: "SourceHanSansCN-Medium";
  color: #ffffff;
  font-size: 26px;
}
@media screen and (max-width: 1580px) {
  .interested-part .content .item .textbox .subtitle {
    font-size: clamp(21px, 0.26rem, 26px);
  }
}
@media screen and (max-width: 991px) {
  .interested-part .content .item .textbox .subtitle {
    font-size: 22px;
  }
}
.interested-part .content .item .textbox .text {
  color: #ffffff;
  font-size: 17px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  max-height: 0;
  transition: all 0.5s ease;
}
@media screen and (max-width: 1580px) {
  .interested-part .content .item .textbox .text {
    font-size: clamp(14px, 0.17rem, 17px);
  }
}
@media screen and (max-width: 991px) {
  .interested-part .content .item .textbox .text {
    font-size: 14px;
  }
}
@media screen and (max-width: 991px) {
  .interested-part .content .item .textbox .text {
    max-height: 100px;
  }
}
.interested-part .content .item .textbox .arrow {
  padding-top: 0.05rem;
}
.interested-part .content .item .textbox .arrow img {
  width: 0.4rem;
}
.sample .box .contain {
  padding-top: 2.5%;
  padding-bottom: 3%;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  background: #FFFFFF;
}
@media screen and (max-width: 1260px) {
  .sample .box .contain {
    padding-top: 4%;
    padding-bottom: 6%;
  }
}
@media screen and (max-width: 1023px) {
  .sample .box .contain {
    gap: 25px;
    padding-top: 0.5rem;
    padding-bottom: 1rem;
  }
}
.sample .box .contain .wrap .sample-request {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  text-align: center;
  padding-bottom: 1rem;
}
.sample .box .contain .wrap .sample-request .textbox {
  color: #333333;
  font-size: 16px;
}
@media screen and (max-width: 1580px) {
  .sample .box .contain .wrap .sample-request .textbox {
    font-size: clamp(13px, 0.16rem, 16px);
  }
}
@media screen and (max-width: 991px) {
  .sample .box .contain .wrap .sample-request .textbox {
    font-size: 14px;
  }
}
.sample .box .contain .wrap .sample-request .imgbox {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
}
.sample .box .contain .wrap .sample-request .imgbox img {
  max-width: 2.14rem;
}
.service .content .contain {
  padding-top: 2.5%;
  padding-bottom: 4%;
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
@media screen and (max-width: 1260px) {
  .service .content .contain {
    padding-top: 4%;
    padding-bottom: 6%;
  }
}
@media screen and (max-width: 1023px) {
  .service .content .contain {
    gap: 25px;
    padding-top: 0.5rem;
    padding-bottom: 1rem;
  }
}
.product-data .product-data-header .title {
  font-family: "SourceHanSansCN-Bold";
  color: #000000;
  font-size: 18px;
  padding: 0.2rem 0.17rem;
  box-sizing: border-box;
}
@media screen and (max-width: 1580px) {
  .product-data .product-data-header .title {
    font-size: clamp(15px, 0.18rem, 18px);
  }
}
@media screen and (max-width: 991px) {
  .product-data .product-data-header .title {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .product-data .product-data-header .action-bar .a-form {
    flex-wrap: wrap;
  }
}
.product-data .product-data-header .action-bar .a-form .form-select {
  position: relative;
  width: 2.8rem;
}
@media screen and (max-width: 991px) {
  .product-data .product-data-header .action-bar .a-form .form-select {
    width: 40%;
  }
}
@media screen and (max-width: 767px) {
  .product-data .product-data-header .action-bar .a-form .form-select {
    width: 100%;
  }
}
.product-data .product-data-header .action-bar .a-form .form-select .layui-form-select .layui-select-title .layui-input {
  width: 100%;
  height: 0.5rem;
  padding: 0 0.7rem 0 0.2rem;
  border-radius: 5px;
  border: #e9e9e9 solid 1px;
  box-sizing: border-box;
  background: #fbfbfb;
  font-family: "SourceHanSansCN-Medium";
  color: #333333;
  font-size: 16px;
}
@media screen and (max-width: 1580px) {
  .product-data .product-data-header .action-bar .a-form .form-select .layui-form-select .layui-select-title .layui-input {
    font-size: clamp(13px, 0.16rem, 16px);
  }
}
@media screen and (max-width: 991px) {
  .product-data .product-data-header .action-bar .a-form .form-select .layui-form-select .layui-select-title .layui-input {
    font-size: 14px;
  }
}
@media screen and (max-width: 1023px) {
  .product-data .product-data-header .action-bar .a-form .form-select .layui-form-select .layui-select-title .layui-input {
    height: 44px;
    padding: 0 0.3rem;
  }
}
@media screen and (max-width: 540px) {
  .product-data .product-data-header .action-bar .a-form .form-select .layui-form-select .layui-select-title .layui-input {
    height: 40px;
  }
}
.product-data .product-data-header .action-bar .a-form .form-select .layui-form-select .layui-select-title .layui-input::-webkit-input-placeholder {
  font-family: "SourceHanSansCN-Light";
  color: #666666;
}
.product-data .product-data-header .action-bar .a-form .form-select .layui-form-select .layui-select-title .layui-input::-moz-placeholder {
  font-family: "SourceHanSansCN-Light";
  color: #666666;
}
.product-data .product-data-header .action-bar .a-form .form-select .layui-form-select .layui-select-title .layui-input:-moz-placeholder {
  font-family: "SourceHanSansCN-Light";
  color: #666666;
}
.product-data .product-data-header .action-bar .a-form .form-select .layui-form-select .layui-select-title .layui-input:-ms-input-placeholder {
  font-family: "SourceHanSansCN-Light";
  color: #666666;
}
.product-data .product-data-header .action-bar .a-form .form-select .layui-form-select .layui-select-title .layui-input::hover {
  border-color: #e9e9e9 !important;
}
.product-data .product-data-header .action-bar .a-form .form-select .layui-form-select .layui-select-title .layui-input:focus {
  border-color: #e9e9e9 !important;
}
.product-data .product-data-header .action-bar .a-form .form-select .layui-form-select .layui-select-title .layui-edge {
  top: 0;
  right: 0;
  margin-top: 0;
  border-width: 0;
  width: 0.45rem;
  height: 100%;
  background: url(../images/icon11.png) center no-repeat;
  background-size: 33.33333333333% auto;
}
@media screen and (max-width: 991px) {
  .product-data .product-data-header .action-bar .a-form .form-select .layui-form-select .layui-select-title .layui-edge {
    width: 0.7rem;
  }
}
.product-data .product-data-header .action-bar .a-form .form-select .layui-form-select dl {
  top: 100%;
  bottom: auto;
  max-width: 2.7rem;
  width: 100%;
  box-sizing: border-box;
  text-align: left;
}
.product-data .product-data-header .action-bar .a-form .form-select .layui-form-select dl dd {
  font-size: 16px;
  color: #333333;
  line-height: 2.25;
  padding: 0 0.2rem;
}
@media screen and (max-width: 1580px) {
  .product-data .product-data-header .action-bar .a-form .form-select .layui-form-select dl dd {
    font-size: clamp(13px, 0.16rem, 16px);
  }
}
@media screen and (max-width: 991px) {
  .product-data .product-data-header .action-bar .a-form .form-select .layui-form-select dl dd {
    font-size: 14px;
  }
}
@media screen and (max-width: 991px) {
  .product-data .product-data-header .action-bar .a-form .form-select .layui-form-select dl dd {
    padding: 0 0.3rem;
  }
}
.product-data .product-data-header .action-bar .a-form .form-select .layui-form-select dl dd.layui-this {
  color: #FFFFFF;
  background-color: #016d2f;
}
.product-data .product-data-header .action-bar .a-form .form-select .layui-form-select dl dd.layui-select-tips {
  padding-left: 0.2rem !important;
}
@media screen and (max-width: 991px) {
  .product-data .product-data-header .action-bar .a-form .form-select .layui-form-select dl dd.layui-select-tips {
    padding-left: 0.3rem !important;
  }
}
.product-data .product-data-header .action-bar .a-form .form-search {
  width: 2.6rem;
  display: flex;
  align-items: stretch;
  border-radius: 0.25rem;
  border: #e9e9e9 solid 1px;
  box-sizing: border-box;
}
@media screen and (max-width: 1023px) {
  .product-data .product-data-header .action-bar .a-form .form-search {
    border-radius: 25px;
  }
}
@media screen and (max-width: 991px) {
  .product-data .product-data-header .action-bar .a-form .form-search {
    width: 40%;
  }
}
@media screen and (max-width: 767px) {
  .product-data .product-data-header .action-bar .a-form .form-search {
    width: 100%;
    margin-top: 12px;
  }
}
.product-data .product-data-header .action-bar .a-form .form-search .s-input {
  width: calc(100% - 0.5rem);
  height: 0.48rem;
  font-size: 16px;
  color: #333333;
  text-align: left;
  padding-left: 0.28rem;
  padding-right: 0.15rem;
  box-sizing: border-box;
}
@media screen and (max-width: 1580px) {
  .product-data .product-data-header .action-bar .a-form .form-search .s-input {
    font-size: clamp(13px, 0.16rem, 16px);
  }
}
@media screen and (max-width: 991px) {
  .product-data .product-data-header .action-bar .a-form .form-search .s-input {
    font-size: 14px;
  }
}
.product-data .product-data-header .action-bar .a-form .form-search .s-input::-webkit-input-placeholder {
  font-family: "SourceHanSansCN-Light";
  color: #aaaaaa;
}
.product-data .product-data-header .action-bar .a-form .form-search .s-input::-moz-placeholder {
  font-family: "SourceHanSansCN-Light";
  color: #aaaaaa;
}
.product-data .product-data-header .action-bar .a-form .form-search .s-input:-moz-placeholder {
  font-family: "SourceHanSansCN-Light";
  color: #aaaaaa;
}
.product-data .product-data-header .action-bar .a-form .form-search .s-input:-ms-input-placeholder {
  font-family: "SourceHanSansCN-Light";
  color: #aaaaaa;
}
@media screen and (max-width: 1023px) {
  .product-data .product-data-header .action-bar .a-form .form-search .s-input {
    padding-left: 20px;
    padding-right: 0px;
    height: 44px;
  }
}
@media screen and (max-width: 540px) {
  .product-data .product-data-header .action-bar .a-form .form-search .s-input {
    height: 40px;
  }
}
.product-data .product-data-header .action-bar .a-form .form-search .s-icon {
  line-height: 1;
  flex-shrink: 0;
  width: 0.5rem;
}
@media screen and (max-width: 1023px) {
  .product-data .product-data-header .action-bar .a-form .form-search .s-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 44px;
  }
}
@media screen and (max-width: 540px) {
  .product-data .product-data-header .action-bar .a-form .form-search .s-icon {
    width: 50px;
    height: 40px;
  }
}
.product-data .product-data-header .action-bar .a-form .form-search .s-icon img {
  max-width: 34%;
}
.product-data .substance {
  margin-top: 0.35rem;
}
.product-data .substance .data-load .item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.2rem 0.27rem;
  box-sizing: border-box;
  background: #fafafa;
  color: #333333;
  font-size: 16px;
}
@media screen and (max-width: 1580px) {
  .product-data .substance .data-load .item {
    font-size: clamp(13px, 0.16rem, 16px);
  }
}
@media screen and (max-width: 991px) {
  .product-data .substance .data-load .item {
    font-size: 14px;
  }
}
.product-data .substance .data-load .item:nth-child(even) {
  background: #ffffff;
}
@media screen and (max-width: 1260px) {
  .product-data .substance .data-load .item {
    padding: 0.3rem;
  }
}
@media screen and (max-width: 991px) {
  .product-data .substance .data-load .item {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 480px) {
  .product-data .substance .data-load .item {
    font-size: 3.4vmin;
  }
}
.product-data .substance .data-load .item .subtitle {
  flex: 1;
  overflow: hidden;
  font-family: "SourceHanSansCN-Regular";
}
@media screen and (max-width: 991px) {
  .product-data .substance .data-load .item .subtitle {
    flex: none;
    width: 100%;
    margin-bottom: 6px;
  }
}
.product-data .substance .data-load .item .sp {
  min-width: 13%;
  flex-shrink: 0;
  margin-right: 0.3rem;
  margin-left: 0.3rem;
}
@media screen and (max-width: 991px) {
  .product-data .substance .data-load .item .sp {
    min-width: 1px;
    margin-left: 0;
  }
}
@media screen and (max-width: 991px) {
  .product-data .substance .data-load .item .btn {
    display: inline-block;
  }
}
.product-data .substance .data-load .item .btn a,
.product-data .substance .data-load .item .btn span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0.8rem;
  height: 0.32rem;
  font-size: 16px;
  color: #e67817;
  border: 1px solid #e67817;
  padding: 0 0.15rem;
  border-radius: 0.16rem;
  box-sizing: border-box;
  cursor: pointer;
  transition: all 0.5s ease;
}
@media screen and (max-width: 1580px) {
  .product-data .substance .data-load .item .btn a,
  .product-data .substance .data-load .item .btn span {
    font-size: clamp(13px, 0.16rem, 16px);
  }
}
@media screen and (max-width: 991px) {
  .product-data .substance .data-load .item .btn a,
  .product-data .substance .data-load .item .btn span {
    font-size: 14px;
  }
}
@media screen and (max-width: 1260px) {
  .product-data .substance .data-load .item .btn a,
  .product-data .substance .data-load .item .btn span {
    min-width: 80px;
    height: 30px;
    border-radius: 15px;
    padding: 0 12px;
  }
}
@media screen and (max-width: 480px) {
  .product-data .substance .data-load .item .btn a,
  .product-data .substance .data-load .item .btn span {
    min-width: 16.67vmin;
    height: 6.25vmin;
    border-radius: 3.125vw;
    padding: 0 2.5vmin;
    font-size: 3.4vmin;
  }
}
.product-data .substance .data-load .item .btn a img,
.product-data .substance .data-load .item .btn span img {
  display: inline-block;
  margin-right: 2px;
  width: 0.19rem;
  transition: all 0.1s ease;
}
@media screen and (max-width: 1260px) {
  .product-data .substance .data-load .item .btn a img,
  .product-data .substance .data-load .item .btn span img {
    width: 16px;
  }
}
@media screen and (max-width: 480px) {
  .product-data .substance .data-load .item .btn a img,
  .product-data .substance .data-load .item .btn span img {
    width: 3.4vmin;
  }
}
.product-data .substance .data-load .item .btn a:hover,
.product-data .substance .data-load .item .btn span:hover {
  background: #e67817;
  color: #fff;
}
.product-data .substance .data-load .item .btn a:hover img,
.product-data .substance .data-load .item .btn span:hover img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.data-book .data-book-header .action-bar {
  margin-top: 0.3rem;
}
.data-book .data-book-header .action-bar .b-form {
  gap: 0.2rem;
}
@media screen and (max-width: 991px) {
  .data-book .data-book-header .action-bar .b-form {
    gap: 0.25rem;
  }
}
@media screen and (max-width: 767px) {
  .data-book .data-book-header .action-bar .b-form {
    flex-wrap: wrap;
  }
}
.data-book .data-book-header .action-bar .b-form .layui-form-item {
  position: relative;
  width: 2.8rem;
  margin-bottom: 0;
}
@media screen and (max-width: 991px) {
  .data-book .data-book-header .action-bar .b-form .layui-form-item {
    width: calc((100% - 1.5rem) / 2);
  }
}
@media screen and (max-width: 767px) {
  .data-book .data-book-header .action-bar .b-form .layui-form-item {
    width: 100%;
  }
}
.data-book .data-book-header .action-bar .b-form .layui-form-item.btns {
  width: auto;
}
@media screen and (max-width: 991px) {
  .data-book .data-book-header .action-bar .b-form .layui-form-item.btns {
    width: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .data-book .data-book-header .action-bar .b-form .layui-form-item.btns {
    width: auto;
  }
}
.data-book .data-book-header .action-bar .b-form .layui-form-item .layui-form-select .layui-select-title .layui-input {
  padding-right: 0.7rem;
}
.data-book .data-book-header .action-bar .b-form .layui-form-item .layui-form-select .layui-select-title .layui-edge {
  top: 0;
  right: 0;
  margin-top: 0;
  border-width: 0;
  width: 0.45rem;
  height: 100%;
  background: url(../images/icon11.png) center no-repeat;
  background-size: 0.13rem auto;
}
@media screen and (max-width: 991px) {
  .data-book .data-book-header .action-bar .b-form .layui-form-item .layui-form-select .layui-select-title .layui-edge {
    width: 0.7rem;
    background: url(../images/icon11.png) center no-repeat;
    background-size: 11px auto;
  }
}
.data-book .data-book-header .action-bar .b-form .layui-form-item .layui-form-select dl {
  top: 100%;
  bottom: auto;
  max-width: 2.7rem;
  width: 100%;
  box-sizing: border-box;
  text-align: left;
}
.data-book .data-book-header .action-bar .b-form .layui-form-item .layui-form-select dl dd {
  font-size: 16px;
  color: #333333;
  line-height: 2.25;
  padding: 0 0.2rem;
}
@media screen and (max-width: 1580px) {
  .data-book .data-book-header .action-bar .b-form .layui-form-item .layui-form-select dl dd {
    font-size: clamp(13px, 0.16rem, 16px);
  }
}
@media screen and (max-width: 991px) {
  .data-book .data-book-header .action-bar .b-form .layui-form-item .layui-form-select dl dd {
    font-size: 14px;
  }
}
@media screen and (max-width: 991px) {
  .data-book .data-book-header .action-bar .b-form .layui-form-item .layui-form-select dl dd {
    padding: 0 0.3rem;
  }
}
.data-book .data-book-header .action-bar .b-form .layui-form-item .layui-form-select dl dd.layui-this {
  color: #FFFFFF;
  background-color: #016d2f;
}
.data-book .data-book-header .action-bar .b-form .layui-form-item .layui-form-select dl dd.layui-select-tips {
  padding-left: 0.2rem !important;
}
@media screen and (max-width: 991px) {
  .data-book .data-book-header .action-bar .b-form .layui-form-item .layui-form-select dl dd.layui-select-tips {
    padding-left: 0.3rem !important;
  }
}
.data-book .data-book-header .action-bar .b-form .layui-form-item .layui-input {
  width: 100%;
  height: 0.5rem;
  padding: 0 0.2rem;
  border-radius: 5px;
  border: #e9e9e9 solid 1px;
  box-sizing: border-box;
  background: #fbfbfb;
  font-family: "SourceHanSansCN-Medium";
  color: #333333;
  font-size: 16px;
}
@media screen and (max-width: 1580px) {
  .data-book .data-book-header .action-bar .b-form .layui-form-item .layui-input {
    font-size: clamp(13px, 0.16rem, 16px);
  }
}
@media screen and (max-width: 991px) {
  .data-book .data-book-header .action-bar .b-form .layui-form-item .layui-input {
    font-size: 14px;
  }
}
@media screen and (max-width: 991px) {
  .data-book .data-book-header .action-bar .b-form .layui-form-item .layui-input {
    height: 0.6rem;
    padding: 0 0.3rem;
  }
}
@media screen and (max-width: 480px) {
  .data-book .data-book-header .action-bar .b-form .layui-form-item .layui-input {
    height: 0.68rem;
  }
}
.data-book .data-book-header .action-bar .b-form .layui-form-item .layui-input::-webkit-input-placeholder {
  font-family: "SourceHanSansCN-Light";
  color: #666666;
}
.data-book .data-book-header .action-bar .b-form .layui-form-item .layui-input::-moz-placeholder {
  font-family: "SourceHanSansCN-Light";
  color: #666666;
}
.data-book .data-book-header .action-bar .b-form .layui-form-item .layui-input:-moz-placeholder {
  font-family: "SourceHanSansCN-Light";
  color: #666666;
}
.data-book .data-book-header .action-bar .b-form .layui-form-item .layui-input:-ms-input-placeholder {
  font-family: "SourceHanSansCN-Light";
  color: #666666;
}
.data-book .data-book-header .action-bar .b-form .layui-form-item .layui-input::hover {
  border-color: #e9e9e9 !important;
}
.data-book .data-book-header .action-bar .b-form .layui-form-item .layui-input:focus {
  border-color: #e9e9e9 !important;
}
.data-book .data-book-header .action-bar .b-form .layui-form-item .layui-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0.85rem;
  padding: 0 0.2rem;
  height: 0.5rem;
  background: #e67817;
  border: none;
  color: #FFFFFF;
  font-size: 16px;
  box-sizing: border-box;
  border-radius: 5px;
}
@media screen and (max-width: 1580px) {
  .data-book .data-book-header .action-bar .b-form .layui-form-item .layui-btn {
    font-size: clamp(13px, 0.16rem, 16px);
  }
}
@media screen and (max-width: 991px) {
  .data-book .data-book-header .action-bar .b-form .layui-form-item .layui-btn {
    font-size: 14px;
  }
}
@media screen and (max-width: 991px) {
  .data-book .data-book-header .action-bar .b-form .layui-form-item .layui-btn {
    min-width: 1.25rem;
    height: 0.6rem;
    padding: 0 0.3rem;
  }
}
@media screen and (max-width: 480px) {
  .data-book .data-book-header .action-bar .b-form .layui-form-item .layui-btn {
    height: 0.68rem;
  }
}
.data-book .substance {
  margin-top: 0.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
@media screen and (max-width: 991px) {
  .data-book .substance {
    gap: 0.5rem;
  }
}
.data-book .substance .panel-box .panel .panel-header .panel-title {
  color: #00652b;
}
.starting-formula .wrap {
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.starting-formula .wrap .list {
  gap: 10px;
}
.starting-formula .wrap .list .service-item {
  width: calc((100% - 30px) / 4);
}
@media screen and (max-width: 1260px) {
  .starting-formula .wrap .list .service-item {
    width: calc((100% - 20px) / 3);
  }
}
@media screen and (max-width: 767px) {
  .starting-formula .wrap .list .service-item {
    width: calc((100% - 10px) / 2);
  }
}
@media screen and (max-width: 480px) {
  .starting-formula .wrap .list .service-item {
    width: 100%;
  }
}
@media screen and (min-width: 992px) {
  .starting-formula .wrap .list .service-item .textbox .cont {
    min-height: 1.4rem;
  }
}
.service-contact {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.service-item {
  display: flex;
  flex-direction: column;
  border: #e9e9e9 solid 1px;
  box-sizing: border-box;
}
.service-item:hover .imgbox img {
  transform: scale(1.06);
}
.service-item:hover .textbox .subtitle {
  color: #016d2f;
}
.service-item .imgbox {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.service-item .imgbox img {
  display: block;
  width: 100%;
  transition: all 0.5s ease;
}
.service-item .textbox {
  flex: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 0.2rem;
  box-sizing: border-box;
}
@media screen and (max-width: 1260px) {
  .service-item .textbox {
    padding: 0.25rem;
  }
}
@media screen and (max-width: 991px) {
  .service-item .textbox {
    padding: 0.3rem;
  }
}
.service-item .textbox .cont {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}
.service-item .textbox .cont .subtitle {
  font-family: "SourceHanSansCN-Medium";
  color: #222222;
  font-size: 18px;
  margin-bottom: 0.12rem;
  transition: all 0.5s ease;
}
@media screen and (max-width: 1580px) {
  .service-item .textbox .cont .subtitle {
    font-size: clamp(15px, 0.18rem, 18px);
  }
}
@media screen and (max-width: 991px) {
  .service-item .textbox .cont .subtitle {
    font-size: 16px;
  }
}
.service-item .textbox .cont .text {
  color: #333333;
  font-size: 17px;
  line-height: 1.5;
}
@media screen and (max-width: 1580px) {
  .service-item .textbox .cont .text {
    font-size: clamp(14px, 0.17rem, 17px);
  }
}
@media screen and (max-width: 991px) {
  .service-item .textbox .cont .text {
    font-size: 14px;
  }
}
.service-item .textbox .more {
  margin-top: 0.2rem;
  border-top: #e9e9e9 solid 1px;
  padding-top: 0.15rem;
}
@media screen and (max-width: 1260px) {
  .service-item .textbox .more {
    margin-top: 15px;
    padding-top: 12px;
  }
}
.service-item .textbox .more span {
  display: inline-block;
  color: #E67817;
  font-size: 16px;
  text-decoration: underline;
}
@media screen and (max-width: 1580px) {
  .service-item .textbox .more span {
    font-size: clamp(13px, 0.16rem, 16px);
  }
}
@media screen and (max-width: 991px) {
  .service-item .textbox .more span {
    font-size: 14px;
  }
}
.asked-btn .o-title .public-btn {
  margin-top: 0.3rem;
}
.asked-questions {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
@media screen and (max-width: 991px) {
  .asked-questions {
    gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  .asked-questions .wrap {
    flex-wrap: wrap;
  }
}
.asked-questions .wrap .o-title {
  flex: 1;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .asked-questions .wrap .o-title {
    flex: none;
  }
}
.asked-questions .wrap .siftbox {
  flex-shrink: 0;
  margin-left: 0.3rem;
}
@media screen and (max-width: 767px) {
  .asked-questions .wrap .siftbox {
    width: 100%;
    margin-left: 0;
    margin-top: 15px;
  }
}
@media screen and (max-width: 767px) {
  .asked-questions .wrap .siftbox .filter-group {
    width: 100%;
  }
}
@media screen and (max-width: 991px) {
  .asked-questions .wrap .siftbox .filter-group .custom-select {
    width: 200px;
  }
}
@media screen and (max-width: 767px) {
  .asked-questions .wrap .siftbox .filter-group .custom-select {
    width: 100%;
  }
}
.asked-questions .wrap .siftbox .s-form .layui-form-item {
  position: relative;
  width: 2.35rem;
  margin-bottom: 0;
}
.asked-questions .wrap .siftbox .s-form .layui-form-item .layui-form-select .layui-select-title .layui-input {
  padding-right: 0.7rem;
}
.asked-questions .wrap .siftbox .s-form .layui-form-item .layui-form-select .layui-select-title .layui-edge {
  top: 0;
  right: 0;
  margin-top: 0;
  border-width: 0;
  width: 0.45rem;
  height: 100%;
  background: url(../images/icon11.png) center no-repeat;
  background-size: 33.33333333333% auto;
}
@media screen and (max-width: 991px) {
  .asked-questions .wrap .siftbox .s-form .layui-form-item .layui-form-select .layui-select-title .layui-edge {
    width: 0.7rem;
  }
}
.asked-questions .wrap .siftbox .s-form .layui-form-item .layui-form-select dl {
  top: 100%;
  bottom: auto;
  max-width: 2.7rem;
  width: 100%;
  box-sizing: border-box;
  text-align: left;
}
.asked-questions .wrap .siftbox .s-form .layui-form-item .layui-form-select dl dd {
  font-size: 16px;
  color: #333333;
  line-height: 2.25;
  padding: 0 0.2rem;
}
@media screen and (max-width: 1580px) {
  .asked-questions .wrap .siftbox .s-form .layui-form-item .layui-form-select dl dd {
    font-size: clamp(13px, 0.16rem, 16px);
  }
}
@media screen and (max-width: 991px) {
  .asked-questions .wrap .siftbox .s-form .layui-form-item .layui-form-select dl dd {
    font-size: 14px;
  }
}
@media screen and (max-width: 991px) {
  .asked-questions .wrap .siftbox .s-form .layui-form-item .layui-form-select dl dd {
    padding: 0 0.3rem;
  }
}
.asked-questions .wrap .siftbox .s-form .layui-form-item .layui-form-select dl dd.layui-this {
  color: #FFFFFF;
  background-color: #016d2f;
}
.asked-questions .wrap .siftbox .s-form .layui-form-item .layui-form-select dl dd.layui-select-tips {
  padding-left: 0.2rem !important;
}
@media screen and (max-width: 991px) {
  .asked-questions .wrap .siftbox .s-form .layui-form-item .layui-form-select dl dd.layui-select-tips {
    padding-left: 0.3rem !important;
  }
}
.asked-questions .wrap .siftbox .s-form .layui-form-item .layui-input {
  width: 100%;
  height: 0.42rem;
  padding: 0 0.2rem;
  border-radius: 5px;
  border: #e9e9e9 solid 1px;
  box-sizing: border-box;
  background: #fbfbfb;
  font-family: "SourceHanSansCN-Light";
  color: #016d2f;
  font-size: 16px;
}
@media screen and (max-width: 1580px) {
  .asked-questions .wrap .siftbox .s-form .layui-form-item .layui-input {
    font-size: clamp(13px, 0.16rem, 16px);
  }
}
@media screen and (max-width: 991px) {
  .asked-questions .wrap .siftbox .s-form .layui-form-item .layui-input {
    font-size: 14px;
  }
}
@media screen and (max-width: 1260px) {
  .asked-questions .wrap .siftbox .s-form .layui-form-item .layui-input {
    height: 0.5rem;
    padding: 0 0.25rem;
  }
}
@media screen and (max-width: 991px) {
  .asked-questions .wrap .siftbox .s-form .layui-form-item .layui-input {
    height: 0.6rem;
    padding: 0 0.3rem;
  }
}
@media screen and (max-width: 480px) {
  .asked-questions .wrap .siftbox .s-form .layui-form-item .layui-input {
    height: 0.68rem;
  }
}
.asked-questions .wrap .siftbox .s-form .layui-form-item .layui-input::-webkit-input-placeholder {
  font-family: "SourceHanSansCN-Light";
  color: #016d2f;
}
.asked-questions .wrap .siftbox .s-form .layui-form-item .layui-input::-moz-placeholder {
  font-family: "SourceHanSansCN-Light";
  color: #016d2f;
}
.asked-questions .wrap .siftbox .s-form .layui-form-item .layui-input:-moz-placeholder {
  font-family: "SourceHanSansCN-Light";
  color: #016d2f;
}
.asked-questions .wrap .siftbox .s-form .layui-form-item .layui-input:-ms-input-placeholder {
  font-family: "SourceHanSansCN-Light";
  color: #016d2f;
}
.asked-questions .wrap .siftbox .s-form .layui-form-item .layui-input::hover {
  border-color: #e9e9e9 !important;
}
.asked-questions .wrap .siftbox .s-form .layui-form-item .layui-input:focus {
  border-color: #e9e9e9 !important;
}
.asked-questions .asked-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.asked-questions .asked-list .wrapper .item {
  background: #fafafa;
}
.asked-questions .asked-list .wrapper .item:nth-child(even) {
  background: #ffffff;
}
.asked-questions .asked-list .wrapper .item .above {
  position: relative;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-right: 0.75rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  cursor: pointer;
}
@media screen and (max-width: 991px) {
  .asked-questions .asked-list .wrapper .item .above {
    flex-wrap: wrap;
    padding-right: calc(0.3rem + 20px);
  }
}
@media screen and (max-width: 767px) {
  .asked-questions .asked-list .wrapper .item .above {
    padding-top: 0.3rem;
    padding-bottom: 0.3rem;
  }
}
.asked-questions .asked-list .wrapper .item .above .title {
  position: relative;
  padding-left: 0.45rem;
  flex: 1;
  overflow: hidden;
  box-sizing: border-box;
  font-family: "SourceHanSansCN-Regular";
  color: #333333;
  font-size: 18px;
}
@media screen and (max-width: 1580px) {
  .asked-questions .asked-list .wrapper .item .above .title {
    font-size: clamp(15px, 0.18rem, 18px);
  }
}
@media screen and (max-width: 991px) {
  .asked-questions .asked-list .wrapper .item .above .title {
    font-size: 16px;
  }
}
@media screen and (max-width: 991px) {
  .asked-questions .asked-list .wrapper .item .above .title {
    flex: none;
    width: 100%;
  }
}
.asked-questions .asked-list .wrapper .item .above .title::before {
  content: '';
  position: absolute;
  left: 0.2rem;
  top: 0.07rem;
  width: 0.08rem;
  height: 0.08rem;
  border-radius: 50%;
  background: #e67817;
}
.asked-questions .asked-list .wrapper .item .above .sp {
  flex-shrink: 0;
  margin-left: 0.7rem;
  color: #888888;
  font-size: 16px;
}
@media screen and (max-width: 1580px) {
  .asked-questions .asked-list .wrapper .item .above .sp {
    font-size: clamp(13px, 0.16rem, 16px);
  }
}
@media screen and (max-width: 991px) {
  .asked-questions .asked-list .wrapper .item .above .sp {
    font-size: 14px;
  }
}
@media screen and (max-width: 991px) {
  .asked-questions .asked-list .wrapper .item .above .sp {
    width: 100%;
    margin-left: 0;
    padding-left: 0.45rem;
    box-sizing: border-box;
    margin-top: 0.12rem;
  }
}
.asked-questions .asked-list .wrapper .item .above .arrow {
  position: absolute;
  right: 0.2rem;
  top: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 0.45rem;
  height: 0.24rem;
}
@media screen and (max-width: 991px) {
  .asked-questions .asked-list .wrapper .item .above .arrow {
    right: 0.3rem;
    width: 11px;
  }
}
.asked-questions .asked-list .wrapper .item .above .arrow img {
  width: 0.13rem;
  transition: all 0.5s ease;
}
@media screen and (max-width: 991px) {
  .asked-questions .asked-list .wrapper .item .above .arrow img {
    width: 11px;
  }
}
.asked-questions .asked-list .wrapper .item .below {
  display: none;
  color: #333333;
  font-size: 18px;
  padding-left: 0.45rem;
  padding-right: 0.75rem;
  padding-bottom: 0.3rem;
  box-sizing: border-box;
}
@media screen and (max-width: 1580px) {
  .asked-questions .asked-list .wrapper .item .below {
    font-size: clamp(15px, 0.18rem, 18px);
  }
}
@media screen and (max-width: 991px) {
  .asked-questions .asked-list .wrapper .item .below {
    font-size: 16px;
  }
}
.comprehensive,
.e-book {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.comprehensive .list,
.e-book .list {
  gap: 10px;
}
.comprehensive .list .service-item,
.e-book .list .service-item {
  width: calc((100% - 30px) / 4);
}
@media screen and (max-width: 1260px) {
  .comprehensive .list .service-item,
  .e-book .list .service-item {
    width: calc((100% - 20px) / 3);
  }
}
@media screen and (max-width: 767px) {
  .comprehensive .list .service-item,
  .e-book .list .service-item {
    width: calc((100% - 10px) / 2);
  }
}
@media screen and (max-width: 480px) {
  .comprehensive .list .service-item,
  .e-book .list .service-item {
    width: 100%;
  }
}
.comprehensive .list .service-item .textbox .cont,
.e-book .list .service-item .textbox .cont {
  min-height: 1rem;
}
.service-video {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.service-video .substance {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.service-video .substance .list {
  gap: 10px;
}
.service-video .substance .list .video-item {
  width: calc((100% - 20px) / 3);
}
@media screen and (max-width: 991px) {
  .service-video .substance .list .video-item {
    width: calc((100% - 10px) / 2);
  }
}
@media screen and (max-width: 767px) {
  .service-video .substance .list .video-item {
    width: 100%;
  }
}
.video-item {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  border: #e9e9e9 solid 1px;
  box-sizing: border-box;
}
.video-item:hover .imgbox > img {
  transform: scale(1.06);
}
.video-item .imgbox {
  flex-shrink: 0;
  position: relative;
  width: 100%;
  padding-bottom: 57.92207792207792%;
  overflow: hidden;
}
.video-item .imgbox > img {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}
.video-item .imgbox .play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  width: 14.55%;
}
.video-item .imgbox .play-btn img {
  max-width: 100%;
}
.video-item .imgbox::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.17);
}
.video-item .textbox {
  flex: 1;
  overflow: hidden;
  padding: 0.2rem;
  box-sizing: border-box;
}
@media screen and (max-width: 991px) {
  .video-item .textbox {
    padding: 0.3rem;
  }
}
.video-item .textbox .subtitle {
  font-family: "SourceHanSansCN-Medium";
  color: #222222;
  font-size: 18px;
}
@media screen and (max-width: 1580px) {
  .video-item .textbox .subtitle {
    font-size: clamp(15px, 0.18rem, 18px);
  }
}
@media screen and (max-width: 991px) {
  .video-item .textbox .subtitle {
    font-size: 16px;
  }
}
.video-item .textbox .text {
  margin-top: 0.15rem;
  color: #333333;
  font-size: 17px;
}
@media screen and (max-width: 1580px) {
  .video-item .textbox .text {
    font-size: clamp(14px, 0.17rem, 17px);
  }
}
@media screen and (max-width: 991px) {
  .video-item .textbox .text {
    font-size: 14px;
  }
}
.additive-guide ul {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}
.additive-guide ul li {
  position: relative;
  flex: 1;
  overflow: hidden;
  display: flex;
  justify-content: center;
  max-width: 50%;
  min-width: 33.33%;
  padding: 0 0.3rem;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .additive-guide ul li {
    flex: none;
    width: 100%;
    max-width: 100%;
    justify-content: flex-start;
    padding: 0.4rem 0.3rem;
  }
}
.additive-guide ul li::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 1px;
  height: 100%;
  background: #e9e9e9;
}
@media screen and (max-width: 767px) {
  .additive-guide ul li::before {
    top: auto;
    left: 0;
    width: 100%;
    height: 1px;
  }
}
.additive-guide ul li:last-child::before {
  display: none;
}
.additive-guide ul li .item {
  display: inline-block;
}
.additive-guide ul li .item .title {
  font-family: "SourceHanSansCN-Regular";
  color: #000000;
  font-size: 30px;
}
@media screen and (max-width: 1580px) {
  .additive-guide ul li .item .title {
    font-size: clamp(21px, 0.3rem, 30px);
  }
}
@media screen and (max-width: 991px) {
  .additive-guide ul li .item .title {
    font-size: 24px;
  }
}
.additive-guide ul li .item .text {
  margin-top: 0.25rem;
  font-family: "SourceHanSansCN-Regular";
  color: #666666;
  font-size: 18px;
}
@media screen and (max-width: 1580px) {
  .additive-guide ul li .item .text {
    font-size: clamp(15px, 0.18rem, 18px);
  }
}
@media screen and (max-width: 991px) {
  .additive-guide ul li .item .text {
    font-size: 16px;
  }
}
.additive-guide ul li .item .sp {
  margin-top: 0.15rem;
  font-family: "SourceHanSansCN-Regular";
  color: #17a453;
  font-size: 18px;
}
@media screen and (max-width: 1580px) {
  .additive-guide ul li .item .sp {
    font-size: clamp(15px, 0.18rem, 18px);
  }
}
@media screen and (max-width: 991px) {
  .additive-guide ul li .item .sp {
    font-size: 16px;
  }
}
.additive-guide ul li .item .imgbox {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.3rem;
  margin-top: 0.25rem;
}
.additive-guide ul li .item .imgbox img {
  max-width: 1.33rem;
}
.company .content .contain {
  padding-top: 2.5%;
  padding-bottom: 4%;
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
@media screen and (max-width: 1260px) {
  .company .content .contain {
    padding-top: 4%;
    padding-bottom: 6%;
  }
}
@media screen and (max-width: 1023px) {
  .company .content .contain {
    gap: 25px;
    padding-top: 0.5rem;
    padding-bottom: 1rem;
  }
}
.company .content .contain.profile {
  background-position: bottom center;
  background-size: cover;
  background-repeat: no-repeat;
}
.company .content .contain.profile .substance .o-title .headline {
  color: #000000;
}
.company .content .contain.profile .substance .wrap {
  margin-top: 0.3rem;
}
@media screen and (max-width: 991px) {
  .company .content .contain.profile .substance .wrap {
    flex-direction: column;
    gap: 0.7rem;
  }
}
.company .content .contain.profile .substance .wrap .textbox {
  order: 1;
  width: 56.4%;
}
@media screen and (max-width: 991px) {
  .company .content .contain.profile .substance .wrap .textbox {
    width: 100%;
  }
}
.company .content .contain.profile .substance .wrap .textbox .c-text {
  line-height: 1.7;
}
.company .content .contain.profile .substance .wrap .data_num {
  order: 3;
  margin-top: 0.7rem;
  width: 100%;
}
@media screen and (max-width: 991px) {
  .company .content .contain.profile .substance .wrap .data_num {
    order: 2;
    margin-top: 0;
  }
}
.company .content .contain.profile .substance .wrap .imgbox {
  order: 2;
  width: 43%;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .company .content .contain.profile .substance .wrap .imgbox {
    width: 100%;
    order: 3;
    text-align: center;
  }
}
.company .content .contain.profile .substance .wrap .imgbox img {
  max-width: 100%;
}
@media screen and (max-width: 991px) {
  .company .content .contain.profile .substance .wrap .imgbox img {
    max-width: 400px;
    width: 100%;
  }
}
.official-media .wrap {
  margin-top: 0.9rem;
}
.official-media .wrap .substance {
  gap: 0.5rem;
}
@media screen and (max-width: 991px) {
  .official-media .wrap .substance {
    gap: 0.3rem;
  }
}
@media screen and (max-width: 767px) {
  .official-media .wrap .substance {
    gap: 0.4rem;
  }
}
.official-media .wrap .substance .item {
  cursor: pointer;
  position: relative;
  width: calc((100% - 0.5rem) / 2);
}
@media screen and (max-width: 991px) {
  .official-media .wrap .substance .item {
    width: calc((100% - 0.3rem) / 2);
  }
}
@media screen and (max-width: 767px) {
  .official-media .wrap .substance .item {
    width: 100%;
  }
}
.official-media .wrap .substance .item .imgbox {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.official-media .wrap .substance .item .imgbox::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  background: var(--item-bg);
  opacity: 0.42;
}
.official-media .wrap .substance .item .imgbox img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.official-media .wrap .substance .item .textbox {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 100%;
  padding: 0.3rem;
  box-sizing: border-box;
}
.official-media .wrap .substance .item .textbox .subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-family: "SourceHanSansCN-Regular";
  font-size: 75px;
}
@media screen and (max-width: 1580px) {
  .official-media .wrap .substance .item .textbox .subtitle {
    font-size: clamp(28px, 0.75rem, 75px);
  }
}
@media screen and (max-width: 991px) {
  .official-media .wrap .substance .item .textbox .subtitle {
    font-size: 32px;
  }
}
.official-media .wrap .substance .item .textbox .subtitle img {
  display: inline-block;
  margin-right: 0.18rem;
  width: 1.22rem;
}
@media screen and (max-width: 991px) {
  .official-media .wrap .substance .item .textbox .subtitle img {
    width: 1rem;
  }
}
.official-media .wrap .substance .item .textbox .subtitle span {
  display: inline-block;
}
.official-media .wrap .substance .item .arrow {
  position: absolute;
  left: 0;
  bottom: 0.3rem;
  z-index: 5;
  width: 100%;
  box-sizing: border-box;
  padding: 0 0.3rem;
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 991px) {
  .official-media .wrap .substance .item .arrow {
    bottom: 0.4rem;
    padding: 0 0.4rem;
  }
}
.official-media .wrap .substance .item .arrow img {
  max-width: 0.4rem;
}
@media screen and (max-width: 991px) {
  .official-media .wrap .substance .item .arrow img {
    max-width: 35px;
  }
}
.chat-pop-up {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 21;
  width: 100%;
  height: 100%;
  max-width: 100%;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -moz-align-items: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-justify-content: center;
  -webkit-justify-content: center;
  justify-content: center;
  overflow: auto;
  padding-top: 5%;
  padding-bottom: 5%;
}
.chat-pop-up.active {
  opacity: 1;
  visibility: visible;
}
.chat-pop-up.active .box {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.chat-pop-up .box {
  position: relative;
  opacity: 0;
  visibility: hidden;
  transition: visibility 0.6s, opacity 0.6s, transform 0.6s;
  transform: translateY(100%);
  max-width: 5rem;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  background: #ffffff;
  padding: 0.4rem 0.3rem 0.3rem;
  box-sizing: border-box;
}
@media screen and (max-width: 991px) {
  .chat-pop-up .box {
    max-width: 6.5rem;
    padding: 0.5rem 0.4rem;
  }
}
.chat-pop-up .box .closebtn {
  position: absolute;
  right: 0.3rem;
  top: 0.25rem;
  z-index: 5;
  cursor: pointer;
}
@media screen and (max-width: 1580px) {
  .chat-pop-up .box .closebtn {
    top: 0.3rem;
    right: 0.3rem;
  }
}
.chat-pop-up .box .closebtn img {
  max-width: 0.21rem;
}
@media screen and (max-width: 1580px) {
  .chat-pop-up .box .closebtn img {
    max-width: 0.25rem;
  }
}
@media screen and (max-width: 767px) {
  .chat-pop-up .box .closebtn img {
    max-width: 0.32rem;
  }
}
.chat-pop-up .box .wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.chat-pop-up .box .wrap .imgbox {
  width: 100%;
  overflow: hidden;
}
.chat-pop-up .box .wrap .imgbox img {
  display: block;
  width: 100%;
}
.chat-pop-up .box .wrap .text {
  margin-top: 0.18rem;
  width: 100%;
}
.chat-pop-up .box .wrap .text a {
  display: block;
  width: 100%;
  padding: 8px 20px;
  text-align: center;
  color: #FFFFFF;
  font-size: 16px;
  background: #00652b;
  transition: all 0.4s ease;
  box-sizing: border-box;
}
@media screen and (max-width: 1580px) {
  .chat-pop-up .box .wrap .text a {
    font-size: clamp(13px, 0.16rem, 16px);
  }
}
@media screen and (max-width: 991px) {
  .chat-pop-up .box .wrap .text a {
    font-size: 14px;
  }
}
.chat-pop-up .box .wrap .text a:hover {
  background: #349734;
}
.history .o-title .main-title {
  margin-bottom: 0.2rem;
}
.history .year {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 10px;
  margin-top: 0.4rem;
}
.history .year span,
.history .year a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc((100% - 50px) / 6);
  height: 0.45rem;
  border: #e9e9e9 solid 1px;
  box-sizing: border-box;
  border-radius: 5px;
  transition: all 0.5s ease;
}
@media screen and (max-width: 1260px) {
  .history .year span,
  .history .year a {
    height: 0.5rem;
  }
}
@media screen and (max-width: 991px) {
  .history .year span,
  .history .year a {
    height: 0.6rem;
  }
}
@media screen and (max-width: 767px) {
  .history .year span,
  .history .year a {
    width: calc((100% - 30px) / 4);
  }
}
.history .year span:hover,
.history .year a:hover {
  color: #ffffff;
  background: #016d2f;
  border-color: #016d2f;
}
.history .history-list {
  margin-top: 0.6rem;
}
.history .history-list ul {
  position: relative;
  padding-top: 1.6rem;
  padding-bottom: 0.9rem;
}
@media screen and (max-width: 991px) {
  .history .history-list ul {
    padding-top: 0.8rem;
    padding-bottom: 0.3rem;
  }
}
.history .history-list ul::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  width: 1px;
  height: 100%;
  background: #e9e9e9;
}
@media screen and (max-width: 991px) {
  .history .history-list ul::before {
    left: 0;
    transform: none;
  }
}
.history .history-list ul li {
  display: flex;
  justify-content: flex-start;
  margin-top: -0.9rem;
}
@media screen and (max-width: 991px) {
  .history .history-list ul li {
    margin-top: 0;
    margin-bottom: 0.5rem;
  }
}
@media screen and (min-width: 992px) {
  .history .history-list ul li:nth-child(odd) .item {
    padding-left: 0;
    padding-right: 7.5%;
    text-align: right;
  }
}
@media screen and (min-width: 992px) {
  .history .history-list ul li:nth-child(odd) .item::before {
    left: auto;
    right: -0.17rem;
  }
}
@media screen and (min-width: 992px) {
  .history .history-list ul li:nth-child(odd) .item::after {
    right: -0.06rem;
    left: auto;
  }
}
@media screen and (min-width: 992px) {
  .history .history-list ul li:nth-child(even) {
    justify-content: flex-end;
  }
}
@media screen and (min-width: 992px) {
  .history .history-list ul li:nth-child(even) .item {
    padding-right: 0;
    padding-left: 7.5%;
    text-align: left;
  }
}
.history .history-list ul li .item {
  position: relative;
  width: 50%;
  padding-left: 7.5%;
  box-sizing: border-box;
}
@media screen and (max-width: 991px) {
  .history .history-list ul li .item {
    width: 100%;
  }
}
.history .history-list ul li .item::before {
  content: '';
  position: absolute;
  top: 0.05rem;
  left: -0.17rem;
  width: 0.34rem;
  height: 0.34rem;
  border-radius: 50%;
  border: #bfbfbf solid 0.03rem;
  box-sizing: border-box;
}
.history .history-list ul li .item::after {
  content: '';
  position: absolute;
  top: 0.16rem;
  left: -0.06rem;
  width: 0.12rem;
  height: 0.12rem;
  border-radius: 50%;
  background: #bfbfbf;
}
.history .history-list ul li .item .t1 {
  font-family: "SourceHanSansCN-Bold";
  color: #00652b;
  font-size: 30px;
}
@media screen and (max-width: 1580px) {
  .history .history-list ul li .item .t1 {
    font-size: clamp(21px, 0.3rem, 30px);
  }
}
@media screen and (max-width: 991px) {
  .history .history-list ul li .item .t1 {
    font-size: 24px;
  }
}
.history .history-list ul li .item .t2 {
  margin-top: 0.2rem;
  font-family: "SourceHanSansCN-Bold";
  color: #000000;
  font-size: 24px;
}
@media screen and (max-width: 1580px) {
  .history .history-list ul li .item .t2 {
    font-size: clamp(20px, 0.24rem, 24px);
  }
}
@media screen and (max-width: 991px) {
  .history .history-list ul li .item .t2 {
    font-size: 22px;
  }
}
.history .history-list ul li .item .t3 {
  margin-top: 0.1rem;
  font-family: "SourceHanSansCN-Regular";
  color: #666666;
  font-size: 16px;
}
@media screen and (max-width: 1580px) {
  .history .history-list ul li .item .t3 {
    font-size: clamp(13px, 0.16rem, 16px);
  }
}
@media screen and (max-width: 991px) {
  .history .history-list ul li .item .t3 {
    font-size: 14px;
  }
}
.history .history-list ul li .item .img {
  margin-top: 0.3rem;
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
}
.history .history-list ul li .item .img img {
  display: block;
  width: 100%;
}
.exhibition {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.exhibition .wrap {
  display: flex;
  justify-content: flex-start;
}
.exhibition .wrap .action-bar .layui-form {
  gap: 0.3rem;
}
@media screen and (max-width: 767px) {
  .exhibition .wrap .action-bar .layui-form {
    flex-wrap: wrap;
  }
}
.exhibition .wrap .action-bar .layui-form .layui-form-item {
  position: relative;
  width: 2.35rem;
  margin-bottom: 0;
}
@media screen and (max-width: 991px) {
  .exhibition .wrap .action-bar .layui-form .layui-form-item {
    width: calc((100% - 1.5rem) / 2);
  }
}
@media screen and (max-width: 767px) {
  .exhibition .wrap .action-bar .layui-form .layui-form-item {
    width: 100%;
  }
}
.exhibition .wrap .action-bar .layui-form .layui-form-item.btns {
  width: auto;
}
@media screen and (max-width: 991px) {
  .exhibition .wrap .action-bar .layui-form .layui-form-item.btns {
    width: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .exhibition .wrap .action-bar .layui-form .layui-form-item.btns {
    width: auto;
  }
}
.exhibition .wrap .action-bar .layui-form .layui-form-item .layui-form-select .layui-select-title .layui-input {
  padding-right: 0.7rem;
}
.exhibition .wrap .action-bar .layui-form .layui-form-item .layui-form-select .layui-select-title .layui-edge {
  top: 0;
  right: 0;
  margin-top: 0;
  border-width: 0;
  width: 0.45rem;
  height: 100%;
  background: url(../images/icon11.png) center no-repeat;
  background-size: 0.13rem auto;
}
@media screen and (max-width: 991px) {
  .exhibition .wrap .action-bar .layui-form .layui-form-item .layui-form-select .layui-select-title .layui-edge {
    width: 0.7rem;
    background: url(../images/icon11.png) center no-repeat;
    background-size: 11px auto;
  }
}
.exhibition .wrap .action-bar .layui-form .layui-form-item .layui-form-select dl {
  top: 100%;
  bottom: auto;
  max-width: 2.7rem;
  width: 100%;
  box-sizing: border-box;
  text-align: left;
}
.exhibition .wrap .action-bar .layui-form .layui-form-item .layui-form-select dl dd {
  font-size: 16px;
  color: #333333;
  line-height: 2.25;
  padding: 0 0.2rem;
}
@media screen and (max-width: 1580px) {
  .exhibition .wrap .action-bar .layui-form .layui-form-item .layui-form-select dl dd {
    font-size: clamp(13px, 0.16rem, 16px);
  }
}
@media screen and (max-width: 991px) {
  .exhibition .wrap .action-bar .layui-form .layui-form-item .layui-form-select dl dd {
    font-size: 14px;
  }
}
@media screen and (max-width: 991px) {
  .exhibition .wrap .action-bar .layui-form .layui-form-item .layui-form-select dl dd {
    padding: 0 0.3rem;
  }
}
.exhibition .wrap .action-bar .layui-form .layui-form-item .layui-form-select dl dd.layui-this {
  color: #FFFFFF;
  background-color: #016d2f;
}
.exhibition .wrap .action-bar .layui-form .layui-form-item .layui-form-select dl dd.layui-select-tips {
  padding-left: 0.2rem !important;
}
@media screen and (max-width: 991px) {
  .exhibition .wrap .action-bar .layui-form .layui-form-item .layui-form-select dl dd.layui-select-tips {
    padding-left: 0.3rem !important;
  }
}
.exhibition .wrap .action-bar .layui-form .layui-form-item .layui-input {
  width: 100%;
  height: 0.42rem;
  padding: 0 0.2rem;
  border-radius: 5px;
  border: #e9e9e9 solid 1px;
  box-sizing: border-box;
  background: #fbfbfb;
  font-family: "SourceHanSansCN-Medium";
  color: #333333;
  font-size: 16px;
}
@media screen and (max-width: 1580px) {
  .exhibition .wrap .action-bar .layui-form .layui-form-item .layui-input {
    font-size: clamp(13px, 0.16rem, 16px);
  }
}
@media screen and (max-width: 991px) {
  .exhibition .wrap .action-bar .layui-form .layui-form-item .layui-input {
    font-size: 14px;
  }
}
@media screen and (max-width: 1260px) {
  .exhibition .wrap .action-bar .layui-form .layui-form-item .layui-input {
    height: 0.5rem;
    padding: 0 0.25rem;
  }
}
@media screen and (max-width: 991px) {
  .exhibition .wrap .action-bar .layui-form .layui-form-item .layui-input {
    height: 0.6rem;
    padding: 0 0.3rem;
  }
}
@media screen and (max-width: 480px) {
  .exhibition .wrap .action-bar .layui-form .layui-form-item .layui-input {
    height: 0.68rem;
  }
}
.exhibition .wrap .action-bar .layui-form .layui-form-item .layui-input::-webkit-input-placeholder {
  font-family: "SourceHanSansCN-Light";
  color: #016d2f;
}
.exhibition .wrap .action-bar .layui-form .layui-form-item .layui-input::-moz-placeholder {
  font-family: "SourceHanSansCN-Light";
  color: #016d2f;
}
.exhibition .wrap .action-bar .layui-form .layui-form-item .layui-input:-moz-placeholder {
  font-family: "SourceHanSansCN-Light";
  color: #016d2f;
}
.exhibition .wrap .action-bar .layui-form .layui-form-item .layui-input:-ms-input-placeholder {
  font-family: "SourceHanSansCN-Light";
  color: #016d2f;
}
.exhibition .wrap .action-bar .layui-form .layui-form-item .layui-input::hover {
  border-color: #e9e9e9 !important;
}
.exhibition .wrap .action-bar .layui-form .layui-form-item .layui-input:focus {
  border-color: #e9e9e9 !important;
}
.exhibition .wrap .action-bar .layui-form .layui-form-item .layui-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0.85rem;
  padding: 0 0.2rem;
  height: 0.42rem;
  background: #1c8e21;
  border: none;
  color: #FFFFFF;
  font-size: 16px;
  box-sizing: border-box;
  border-radius: 5px;
}
@media screen and (max-width: 1580px) {
  .exhibition .wrap .action-bar .layui-form .layui-form-item .layui-btn {
    font-size: clamp(13px, 0.16rem, 16px);
  }
}
@media screen and (max-width: 991px) {
  .exhibition .wrap .action-bar .layui-form .layui-form-item .layui-btn {
    font-size: 14px;
  }
}
@media screen and (max-width: 1260px) {
  .exhibition .wrap .action-bar .layui-form .layui-form-item .layui-btn {
    height: 0.5rem;
    padding: 0 0.25rem;
  }
}
@media screen and (max-width: 991px) {
  .exhibition .wrap .action-bar .layui-form .layui-form-item .layui-btn {
    min-width: 1.25rem;
    height: 0.6rem;
    padding: 0 0.3rem;
  }
}
@media screen and (max-width: 480px) {
  .exhibition .wrap .action-bar .layui-form .layui-form-item .layui-btn {
    height: 0.68rem;
  }
}
.exhibition .expo-results {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.expo-item {
  padding: 0.3rem 0;
  display: flex;
  align-items: center;
  width: 100%;
  border-bottom: 1px solid #bec4c7;
}
.expo-item:nth-child(1) {
  border-top: 1px solid #bec4c7;
}
@media screen and (max-width: 767px) {
  .expo-item {
    flex-wrap: wrap;
    padding: 20px 0;
  }
}
.expo-item .imgbox {
  width: 25%;
  padding-right: 0.3rem;
  box-sizing: border-box;
}
@media screen and (max-width: 991px) {
  .expo-item .imgbox {
    width: 30%;
  }
}
@media screen and (max-width: 767px) {
  .expo-item .imgbox {
    width: 100%;
    padding-right: 0;
    margin-bottom: 20px;
  }
}
.expo-item .imgbox img {
  display: block;
  width: 100%;
  transition: all 0.4s ease;
}
@media screen and (max-width: 767px) {
  .expo-item .imgbox img {
    display: inline-block;
    width: auto;
    max-width: 100%;
    max-height: 220px;
  }
}
.expo-item .textbox {
  width: calc(75% - 0.3rem);
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .expo-item .textbox {
    width: calc(70% - 0.3rem);
  }
}
@media screen and (max-width: 767px) {
  .expo-item .textbox {
    width: 100%;
  }
}
.expo-item .textbox .date {
  font-size: 14px;
  color: #333333;
}
@media screen and (max-width: 1580px) {
  .expo-item .textbox .date {
    font-size: clamp(12px, 0.14rem, 14px);
  }
}
@media screen and (max-width: 991px) {
  .expo-item .textbox .date {
    font-size: 13px;
  }
}
@media screen and (max-width: 767px) {
  .expo-item .textbox .date {
    font-size: 13px;
  }
}
.expo-item .textbox .subtitle {
  font-family: "SourceHanSansCN-Regular";
  font-size: 24px;
  color: #333333;
  padding-bottom: 0.2rem;
  transition: all 0.4s ease;
}
@media screen and (max-width: 1580px) {
  .expo-item .textbox .subtitle {
    font-size: clamp(20px, 0.24rem, 24px);
  }
}
@media screen and (max-width: 991px) {
  .expo-item .textbox .subtitle {
    font-size: 22px;
  }
}
@media screen and (max-width: 767px) {
  .expo-item .textbox .subtitle {
    font-size: 18px;
    padding-bottom: 15px;
  }
}
.expo-item .textbox .text {
  font-size: 14px;
  color: #333333;
  line-height: 1.5;
}
@media screen and (max-width: 1580px) {
  .expo-item .textbox .text {
    font-size: clamp(12px, 0.14rem, 14px);
  }
}
@media screen and (max-width: 991px) {
  .expo-item .textbox .text {
    font-size: 13px;
  }
}
@media screen and (max-width: 767px) {
  .expo-item .textbox .text {
    font-size: 14px;
  }
}
.expo-item .textbox .info {
  font-size: 14px;
  color: #333333;
  line-height: 1.5;
  margin-bottom: 0.2rem;
}
@media screen and (max-width: 1580px) {
  .expo-item .textbox .info {
    font-size: clamp(12px, 0.14rem, 14px);
  }
}
@media screen and (max-width: 991px) {
  .expo-item .textbox .info {
    font-size: 13px;
  }
}
@media screen and (max-width: 767px) {
  .expo-item .textbox .info {
    font-size: 14px;
    margin-bottom: 15px;
  }
}
.expo-item .textbox .info span {
  font-family: "SourceHanSansCN-Medium";
  color: #000000;
}
.expo-item .textbox .links a,
.expo-item .textbox .links span {
  display: inline-block;
  font-size: 14px;
  color: #1c8e21;
  line-height: 1.5;
  text-decoration: underline;
  transition: all 0.4s ease;
}
@media screen and (max-width: 1580px) {
  .expo-item .textbox .links a,
  .expo-item .textbox .links span {
    font-size: clamp(12px, 0.14rem, 14px);
  }
}
@media screen and (max-width: 991px) {
  .expo-item .textbox .links a,
  .expo-item .textbox .links span {
    font-size: 13px;
  }
}
.expo-item .textbox .links a:hover,
.expo-item .textbox .links span:hover {
  color: #00652B;
}
@media screen and (max-width: 767px) {
  .expo-item .textbox .links a,
  .expo-item .textbox .links span {
    font-size: 14px;
  }
}
.news {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.news .wrap {
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 991px) {
  .news .wrap .filter-group {
    width: 100%;
  }
}
@media screen and (max-width: 991px) {
  .news .wrap .filter-group .custom-select {
    width: 200px;
  }
}
@media screen and (max-width: 767px) {
  .news .wrap .filter-group .custom-select {
    width: 100%;
  }
}
.news .filter-results {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.news .filter-results.list-mode .substance .newitem {
  flex-direction: row;
  align-items: center;
  width: 100%;
  padding: 0.2rem;
  box-sizing: border-box;
}
.news .filter-results.list-mode .substance .newitem .imgbox {
  flex-shrink: 0;
  width: 25.08771929824561%;
}
.news .filter-results.list-mode .substance .newitem .textbox {
  position: relative;
  flex: 1;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0.3rem;
  padding-right: 0.15rem;
  box-sizing: border-box;
}
.news .filter-results.list-mode .substance .newitem .textbox .date {
  position: absolute;
  right: 0.15rem;
  top: 0;
}
.news .filter-results.list-mode .substance .newitem .textbox .content .subtitle {
  padding-right: 1rem;
}
.news .filter-results.list-mode .substance .newitem .textbox .more {
  border-top: none;
}
.news .filter-results .substance {
  gap: 10px;
}
.news .filter-results .substance .newitem {
  width: calc((100% - 30px) / 4);
}
@media screen and (max-width: 1260px) {
  .news .filter-results .substance .newitem {
    width: calc((100% - 20px) / 3);
  }
}
@media screen and (max-width: 767px) {
  .news .filter-results .substance .newitem {
    width: calc((100% - 10px) / 2);
  }
}
@media screen and (max-width: 480px) {
  .news .filter-results .substance .newitem {
    width: 100%;
  }
}
@media screen and (max-width: 991px) {
  .new-details .details-header {
    flex-wrap: wrap;
  }
}
.new-details .details-header .title {
  width: 67.8%;
  font-family: "SourceHanSansCN-Bold";
  color: #000000;
  font-size: 36px;
  padding-bottom: 0.4rem;
  border-bottom: #e9e9e9 solid 1px;
}
@media screen and (max-width: 1580px) {
  .new-details .details-header .title {
    font-size: clamp(22px, 0.36rem, 36px);
  }
}
@media screen and (max-width: 991px) {
  .new-details .details-header .title {
    font-size: 24px;
  }
}
@media screen and (max-width: 991px) {
  .new-details .details-header .title {
    width: 100%;
    padding-bottom: 0.2rem;
    margin-bottom: 0.25rem;
  }
}
.new-details .details-header .info {
  width: 28.814%;
  font-family: "SourceHanSansCN-Regular";
  color: #359969;
  font-size: 18px;
}
@media screen and (max-width: 1580px) {
  .new-details .details-header .info {
    font-size: clamp(15px, 0.18rem, 18px);
  }
}
@media screen and (max-width: 991px) {
  .new-details .details-header .info {
    font-size: 16px;
  }
}
@media screen and (max-width: 991px) {
  .new-details .details-header .info {
    width: 100%;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 6px 15px;
  }
}
@media screen and (max-width: 991px) {
  .new-details .substance {
    flex-wrap: wrap;
  }
}
.new-details .substance .left_w {
  width: 67.8%;
  padding-top: 0.35rem;
}
@media screen and (max-width: 991px) {
  .new-details .substance .left_w {
    width: 100%;
  }
}
.new-details .substance .left_w .c-text {
  color: #666666;
  padding-bottom: 0.8rem;
}
.new-details .substance .left_w .c-text img {
  width: auto;
  height: auto;
  max-width: 100%;
}
.new-details .substance .left_w .article-operate {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.4rem;
  border-top: #e9e9e9 solid 1px;
}
.new-details .substance .left_w .article-operate .prvenext {
  flex: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
}
.new-details .substance .left_w .article-operate .prvenext a {
  display: inline-flex;
  align-items: flex-start;
  max-width: 100%;
  color: #888888;
  font-size: 16px;
  transition: all 0.5s ease;
}
@media screen and (max-width: 1580px) {
  .new-details .substance .left_w .article-operate .prvenext a {
    font-size: clamp(13px, 0.16rem, 16px);
  }
}
@media screen and (max-width: 991px) {
  .new-details .substance .left_w .article-operate .prvenext a {
    font-size: 14px;
  }
}
.new-details .substance .left_w .article-operate .prvenext a:hover {
  color: #016d2f;
}
.new-details .substance .left_w .article-operate .prvenext a:hover .sp1 {
  color: #016d2f;
}
.new-details .substance .left_w .article-operate .prvenext a .sp1 {
  display: inline-block;
  flex-shrink: 0;
  color: #111111;
  transition: all 0.5s ease;
}
.new-details .substance .left_w .article-operate .prvenext a .sp2 {
  flex: 1;
  overflow: hidden;
}
.new-details .substance .left_w .article-operate .backbtn {
  flex-shrink: 0;
  margin-left: 0.3rem;
}
@media screen and (max-width: 991px) {
  .new-details .substance .left_w .article-operate .backbtn {
    display: none;
  }
}
.new-details .substance .left_w .article-operate .backbtn a {
  display: inline-flex;
  align-items: center;
  color: #de744d;
  font-size: 18px;
}
@media screen and (max-width: 1580px) {
  .new-details .substance .left_w .article-operate .backbtn a {
    font-size: clamp(15px, 0.18rem, 18px);
  }
}
@media screen and (max-width: 991px) {
  .new-details .substance .left_w .article-operate .backbtn a {
    font-size: 16px;
  }
}
.new-details .substance .left_w .article-operate .backbtn a:hover {
  text-decoration: underline;
}
.new-details .substance .left_w .article-operate .backbtn a img {
  display: inline-block;
  margin-right: 0.12rem;
  width: 0.26rem;
}
.new-details .substance .right_w {
  width: 28.814%;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
@media screen and (max-width: 991px) {
  .new-details .substance .right_w {
    width: 100%;
    margin-top: 0.7rem;
  }
}
.new-details .substance .right_w .title {
  font-family: "SourceHanSansCN-Medium";
  color: #000000;
  font-size: 26px;
}
@media screen and (max-width: 1580px) {
  .new-details .substance .right_w .title {
    font-size: clamp(21px, 0.26rem, 26px);
  }
}
@media screen and (max-width: 991px) {
  .new-details .substance .right_w .title {
    font-size: 22px;
  }
}
.new-details .substance .right_w .wrap {
  margin-top: 0.15rem;
}
@media screen and (max-width: 991px) {
  .new-details .substance .right_w .wrap {
    margin-top: 0.2rem;
  }
}
.new-details .substance .right_w .detail-side-contact .wrap {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}
@media screen and (max-width: 991px) {
  .new-details .substance .right_w .detail-side-contact .wrap {
    flex-direction: row;
    gap: 6px 15px;
  }
}
.new-details .substance .right_w .detail-side-contact .wrap a {
  display: inline-block;
  color: #359969;
  font-size: 18px;
}
@media screen and (max-width: 1580px) {
  .new-details .substance .right_w .detail-side-contact .wrap a {
    font-size: clamp(15px, 0.18rem, 18px);
  }
}
@media screen and (max-width: 991px) {
  .new-details .substance .right_w .detail-side-contact .wrap a {
    font-size: 16px;
  }
}
.new-details .substance .right_w .detail-side-news .wrap .swiper {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.new-details .substance .right_w .detail-side-news .wrap .swiper .swiper-wrapper {
  align-items: stretch;
}
.new-details .substance .right_w .detail-side-news .wrap .swiper .swiper-wrapper .swiper-slide {
  height: auto;
}
.new-details .substance .right_w .detail-side-news .wrap .swiper .swiper-wrapper .swiper-slide .newitem {
  width: 100%;
}
@media screen and (min-width: 992px) {
  .new-details .substance .right_w .detail-side-news .wrap .swiper .swiper-wrapper .swiper-slide .newitem .textbox {
    padding: 0.1rem;
  }
}
.new-details .substance .right_w .detail-side-news .wrap .swiper .swiper-wrapper .swiper-slide .newitem .textbox .content .subtitle {
  font-size: 16px;
  margin-bottom: 0;
}
@media screen and (max-width: 1580px) {
  .new-details .substance .right_w .detail-side-news .wrap .swiper .swiper-wrapper .swiper-slide .newitem .textbox .content .subtitle {
    font-size: clamp(13px, 0.16rem, 16px);
  }
}
@media screen and (max-width: 991px) {
  .new-details .substance .right_w .detail-side-news .wrap .swiper .swiper-wrapper .swiper-slide .newitem .textbox .content .subtitle {
    font-size: 14px;
  }
}
.new-details .substance .right_w .detail-side-news .wrap .swiper .button-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row-reverse;
  gap: 10px;
  margin-top: 0.2rem;
}
@media screen and (max-width: 991px) {
  .new-details .substance .right_w .detail-side-news .wrap .swiper .button-box {
    margin-top: 20px;
  }
}
.new-details .substance .right_w .detail-side-news .wrap .swiper .button-box .swiper-button-next,
.new-details .substance .right_w .detail-side-news .wrap .swiper .button-box .swiper-button-prev {
  position: static;
  margin-top: 0;
  width: 0.32rem;
  height: 0.32rem;
  box-sizing: border-box;
  border-radius: 50%;
  border: #e9e9e9 solid 1px;
}
@media screen and (max-width: 991px) {
  .new-details .substance .right_w .detail-side-news .wrap .swiper .button-box .swiper-button-next,
  .new-details .substance .right_w .detail-side-news .wrap .swiper .button-box .swiper-button-prev {
    width: 0.56rem;
    height: 0.56rem;
  }
}
.new-details .substance .right_w .detail-side-news .wrap .swiper .button-box .swiper-button-next::after,
.new-details .substance .right_w .detail-side-news .wrap .swiper .button-box .swiper-button-prev::after {
  display: none;
}
.new-details .substance .right_w .detail-side-news .wrap .swiper .button-box .swiper-button-next {
  border-color: #419450;
  background: #419450 url(../images/icon26a.png) center no-repeat;
  background-size: 23.333334% auto;
}
.new-details .substance .right_w .detail-side-news .wrap .swiper .button-box .swiper-button-next.swiper-button-disabled {
  opacity: 1;
  border-color: #e9e9e9;
  background: #ffffff url(../images/icon26.png) center no-repeat;
  background-size: 23.333334% auto;
}
.new-details .substance .right_w .detail-side-news .wrap .swiper .button-box .swiper-button-prev {
  border-color: #419450;
  background: #419450 url(../images/icon25a.png) center no-repeat;
  background-size: 23.333334% auto;
}
.new-details .substance .right_w .detail-side-news .wrap .swiper .button-box .swiper-button-prev.swiper-button-disabled {
  opacity: 1;
  border-color: #e9e9e9;
  background: #ffffff url(../images/icon25.png) center no-repeat;
  background-size: 23.333334% auto;
}
.contact .content .contain {
  padding-top: 2.5%;
  padding-bottom: 4%;
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
@media screen and (max-width: 1260px) {
  .contact .content .contain {
    padding-top: 4%;
    padding-bottom: 6%;
  }
}
@media screen and (max-width: 1023px) {
  .contact .content .contain {
    gap: 40px;
    padding-top: 0.5rem;
    padding-bottom: 1rem;
  }
}
.contact .content .contain .contact-info .contact-header .textbox {
  margin-top: 0.2rem;
  font-family: "SourceHanSansCN-Regular";
  color: #00652B;
  font-size: 22px;
}
@media screen and (max-width: 1580px) {
  .contact .content .contain .contact-info .contact-header .textbox {
    font-size: clamp(19px, 0.22rem, 22px);
  }
}
@media screen and (max-width: 991px) {
  .contact .content .contain .contact-info .contact-header .textbox {
    font-size: 20px;
  }
}
@media screen and (max-width: 1260px) {
  .contact .content .contain .contact-info .contact-header .textbox {
    font-size: 18px;
  }
}
@media screen and (max-width: 991px) {
  .contact .content .contain .contact-info .contact-header .textbox {
    font-size: 16px;
  }
}
.contact .content .contain .contact-info .contact-header .public-btn {
  display: flex;
  justify-content: flex-end;
  margin-top: 0.3rem;
}
.contact .content .contain .contact-info .contact-header .public-btn span,
.contact .content .contain .contact-info .contact-header .public-btn a {
  cursor: pointer;
  user-select: none;
}
.contact .content .contain .contact-info .substance {
  display: none;
  flex-direction: column;
  gap: 10px;
  margin-top: 0.45rem;
  border-top: #e9e9e9 solid 1px;
  padding-top: 0.6rem;
}
.contact .content .contain .contact-info .substance.active {
  display: flex;
}
.contact .content .contain .contact-info .substance .text {
  margin-top: 0.2rem;
  color: #00652B;
  line-height: 2;
}
.contact .content .contain .contact-info .substance .text ul {
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}
.contact .content .contain .contact-info .substance .text ul li {
  list-style: none;
  display: flex;
  align-items: baseline;
}
.contact .content .contain .contact-info .substance .text ul li img {
  flex-shrink: 0;
  margin-right: 0.15rem;
  width: 0.16rem;
}
@media screen and (max-width: 767px) {
  .contact .content .contain .contact-info .substance .text ul li img {
    width: 14px;
  }
}
.contact .content .contain .contact-info .substance .text ul li span {
  flex: 1;
  overflow: hidden;
}
.contact .content .contain .contact-info .substance .txt {
  margin-top: 0.2rem;
  color: #333333;
  font-size: 16px;
}
@media screen and (max-width: 1580px) {
  .contact .content .contain .contact-info .substance .txt {
    font-size: clamp(13px, 0.16rem, 16px);
  }
}
@media screen and (max-width: 991px) {
  .contact .content .contain .contact-info .substance .txt {
    font-size: 14px;
  }
}
.contact .content .contain .contact-info .substance .main-info {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .contact .content .contain .contact-info .substance .main-info {
    flex-wrap: wrap;
  }
}
.contact .content .contain .contact-info .substance .main-info .imgbox {
  width: 49.57627118644068%;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .contact .content .contain .contact-info .substance .main-info .imgbox {
    width: 100%;
  }
}
.contact .content .contain .contact-info .substance .main-info .imgbox img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact .content .contain .contact-info .substance .main-info .textbox {
  width: calc(50.42372881355932% - 10px);
  padding: 0.1rem 0.15rem;
  border-bottom: #e9e9e9 solid 1px;
  box-sizing: border-box;
}
@media screen and (max-width: 991px) {
  .contact .content .contain .contact-info .substance .main-info .textbox {
    padding: 10px 15px 20px;
  }
}
@media screen and (max-width: 767px) {
  .contact .content .contain .contact-info .substance .main-info .textbox {
    width: 100%;
    padding: 20px 0px;
  }
}
.contact .content .contain .contact-info .substance .main-info .textbox .subtitle {
  font-family: "SourceHanSansCN-Medium";
  color: #000000;
  font-size: 24px;
}
@media screen and (max-width: 1580px) {
  .contact .content .contain .contact-info .substance .main-info .textbox .subtitle {
    font-size: clamp(20px, 0.24rem, 24px);
  }
}
@media screen and (max-width: 991px) {
  .contact .content .contain .contact-info .substance .main-info .textbox .subtitle {
    font-size: 22px;
  }
}
.contact .content .contain .contact-info .substance .card-info {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
  gap: 10px;
}
.contact .content .contain .contact-info .substance .card-info .item {
  width: calc((100% - 10px) / 2);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0.2rem;
  border: #e9e9e9 solid 1px;
  box-sizing: border-box;
}
@media screen and (max-width: 991px) {
  .contact .content .contain .contact-info .substance .card-info .item {
    width: 100%;
    padding: 0.3rem;
  }
}
@media screen and (max-width: 767px) {
  .contact .content .contain .contact-info .substance .card-info .item {
    flex-wrap: wrap;
  }
}
.contact .content .contain .contact-info .substance .card-info .item .left_w {
  width: 55.6%;
}
@media screen and (max-width: 767px) {
  .contact .content .contain .contact-info .substance .card-info .item .left_w {
    width: 100%;
  }
}
.contact .content .contain .contact-info .substance .card-info .item .left_w .loca {
  font-family: "SourceHanSansCN-Medium";
  color: #000000;
  font-size: 18px;
}
@media screen and (max-width: 1580px) {
  .contact .content .contain .contact-info .substance .card-info .item .left_w .loca {
    font-size: clamp(15px, 0.18rem, 18px);
  }
}
@media screen and (max-width: 991px) {
  .contact .content .contain .contact-info .substance .card-info .item .left_w .loca {
    font-size: 16px;
  }
}
.contact .content .contain .contact-info .substance .card-info .item .left_w .subtitle {
  font-family: "SourceHanSansCN-Medium";
  color: #0b8e43;
  font-size: 22px;
}
@media screen and (max-width: 1580px) {
  .contact .content .contain .contact-info .substance .card-info .item .left_w .subtitle {
    font-size: clamp(19px, 0.22rem, 22px);
  }
}
@media screen and (max-width: 991px) {
  .contact .content .contain .contact-info .substance .card-info .item .left_w .subtitle {
    font-size: 20px;
  }
}
.contact .content .contain .contact-info .substance .card-info .item .left_w .txt {
  margin-top: 0.3rem;
}
.contact .content .contain .contact-info .substance .card-info .item .right_w {
  width: 40.37%;
}
@media screen and (max-width: 767px) {
  .contact .content .contain .contact-info .substance .card-info .item .right_w {
    width: 100%;
    margin-top: 0.4rem;
  }
}
.contact .content .contain .contact-info .substance .card-info .item .right_w .imgbox {
  width: 100%;
  overflow: hidden;
}
.contact .content .contain .contact-info .substance .card-info .item .right_w .imgbox img {
  display: block;
  width: 100%;
}
.contact .content .contain .formbox .contact-form .topicselect {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 10px;
}
.contact .content .contain .formbox .contact-form .topicselect .item {
  width: calc((100% - 20px) / 3);
  box-sizing: border-box;
  background: #fcfcfc;
  transition: all 0.5s ease;
  border: #e9e9e9 solid 1px;
  padding: 0.2rem 0.2rem 0.2rem 0.28rem;
}
@media screen and (max-width: 991px) {
  .contact .content .contain .formbox .contact-form .topicselect .item {
    width: calc((100% - 10px) / 2);
    padding: 0.3rem;
  }
}
@media screen and (max-width: 767px) {
  .contact .content .contain .formbox .contact-form .topicselect .item {
    width: 100%;
  }
}
.contact .content .contain .formbox .contact-form .topicselect .item.active {
  background: #00652b;
  border-color: #00652b;
}
.contact .content .contain .formbox .contact-form .topicselect .item.active .icon img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.contact .content .contain .formbox .contact-form .topicselect .item.active .text {
  color: #FFFFFF;
}
.contact .content .contain .formbox .contact-form .topicselect .item:hover {
  background: #00652b;
  border-color: #00652b;
}
.contact .content .contain .formbox .contact-form .topicselect .item:hover .icon img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.contact .content .contain .formbox .contact-form .topicselect .item:hover .text {
  color: #FFFFFF;
}
.contact .content .contain .formbox .contact-form .topicselect .item .icon {
  display: flex;
  justify-content: flex-end;
}
.contact .content .contain .formbox .contact-form .topicselect .item .icon img {
  width: 0.36rem;
  transition: all 0.5s ease;
}
@media screen and (max-width: 991px) {
  .contact .content .contain .formbox .contact-form .topicselect .item .icon img {
    width: 30px;
  }
}
.contact .content .contain .formbox .contact-form .topicselect .item .text {
  margin-top: 0.1rem;
  font-family: "SourceHanSansCN-Regular";
  color: #000000;
  font-size: 24px;
  transition: all 0.5s ease;
}
@media screen and (max-width: 1580px) {
  .contact .content .contain .formbox .contact-form .topicselect .item .text {
    font-size: clamp(20px, 0.24rem, 24px);
  }
}
@media screen and (max-width: 991px) {
  .contact .content .contain .formbox .contact-form .topicselect .item .text {
    font-size: 22px;
  }
}
.contact .content .contain .formbox .contact-form .form-container {
  margin-top: 0.45rem;
}
.contact .content .contain .formbox .contact-form .form-container .form-panle {
  display: none;
}
.contact .content .contain .formbox .contact-form .form-container .form-panle.active {
  display: block;
}
.contact .content .contain .formbox .contact-form .form-container .layui-form {
  max-width: 6.9rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.contact .content .contain .formbox .contact-form .form-container .layui-form .layui-row {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.contact .content .contain .formbox .contact-form .form-container .layui-form .layui-row::before {
  display: none;
}
.contact .content .contain .formbox .contact-form .form-container .layui-form .layui-row::after {
  display: none;
}
.contact .content .contain .formbox .contact-form .form-container .layui-form .layui-row .form-section-title {
  font-family: "SourceHanSansCN-Regular";
  color: #000000;
  font-size: 30px;
}
@media screen and (max-width: 1580px) {
  .contact .content .contain .formbox .contact-form .form-container .layui-form .layui-row .form-section-title {
    font-size: clamp(21px, 0.3rem, 30px);
  }
}
@media screen and (max-width: 991px) {
  .contact .content .contain .formbox .contact-form .form-container .layui-form .layui-row .form-section-title {
    font-size: 24px;
  }
}
.contact .content .contain .formbox .contact-form .form-container .layui-form .layui-row .layui-form-item {
  margin-bottom: 0;
}
.contact .content .contain .formbox .contact-form .form-container .layui-form .layui-row .layui-form-item .layui-form-label {
  float: none;
  width: 100%;
  color: #000000;
  font-size: 16px;
  padding: 0;
  text-align: left;
  margin-bottom: 10px;
  display: flex;
}
@media screen and (max-width: 1580px) {
  .contact .content .contain .formbox .contact-form .form-container .layui-form .layui-row .layui-form-item .layui-form-label {
    font-size: clamp(13px, 0.16rem, 16px);
  }
}
@media screen and (max-width: 991px) {
  .contact .content .contain .formbox .contact-form .form-container .layui-form .layui-row .layui-form-item .layui-form-label {
    font-size: 14px;
  }
}
.contact .content .contain .formbox .contact-form .form-container .layui-form .layui-row .layui-form-item .layui-form-label .label-sp {
  flex: 1;
  overflow: hidden;
  text-align: right;
}
.contact .content .contain .formbox .contact-form .form-container .layui-form .layui-row .layui-form-item .layui-input-block {
  margin-left: 0;
}
.contact .content .contain .formbox .contact-form .form-container .layui-form .layui-row .layui-form-item .layui-input-block.file-upload-area {
  position: relative;
}
.contact .content .contain .formbox .contact-form .form-container .layui-form .layui-row .layui-form-item .layui-input-block.file-upload-area .layui-upload-drag {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 100%;
  border: none;
  padding: 0;
  flex: 1;
}
.contact .content .contain .formbox .contact-form .form-container .layui-form .layui-row .layui-form-item .layui-input-block.file-upload-area .layui-upload-drag .icon img {
  width: 0.34rem;
}
@media screen and (max-width: 991px) {
  .contact .content .contain .formbox .contact-form .form-container .layui-form .layui-row .layui-form-item .layui-input-block.file-upload-area .layui-upload-drag .icon img {
    width: 30px;
  }
}
.contact .content .contain .formbox .contact-form .form-container .layui-form .layui-row .layui-form-item .layui-input-block.file-upload-area .layui-upload-drag .txt {
  margin-top: 0.15rem;
  color: #000000;
  font-size: 16px;
}
@media screen and (max-width: 1580px) {
  .contact .content .contain .formbox .contact-form .form-container .layui-form .layui-row .layui-form-item .layui-input-block.file-upload-area .layui-upload-drag .txt {
    font-size: clamp(13px, 0.16rem, 16px);
  }
}
@media screen and (max-width: 991px) {
  .contact .content .contain .formbox .contact-form .form-container .layui-form .layui-row .layui-form-item .layui-input-block.file-upload-area .layui-upload-drag .txt {
    font-size: 14px;
  }
}
.contact .content .contain .formbox .contact-form .form-container .layui-form .layui-row .layui-form-item .layui-input-block.file-upload-area .upload-btn-wrapper {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 10px;
  margin-top: 10px;
}
.contact .content .contain .formbox .contact-form .form-container .layui-form .layui-row .layui-form-item .layui-input-block.file-upload-area .upload-btn-wrapper .layui-btn {
  flex: 1;
  height: 0.54rem;
  margin-left: 0 !important;
}
@media screen and (max-width: 991px) {
  .contact .content .contain .formbox .contact-form .form-container .layui-form .layui-row .layui-form-item .layui-input-block.file-upload-area .upload-btn-wrapper .layui-btn {
    height: 0.6rem;
  }
}
@media screen and (max-width: 480px) {
  .contact .content .contain .formbox .contact-form .form-container .layui-form .layui-row .layui-form-item .layui-input-block.file-upload-area .upload-btn-wrapper .layui-btn {
    height: 0.68rem;
  }
}
.contact .content .contain .formbox .contact-form .form-container .layui-form .layui-row .layui-form-item .layui-input-block.file-upload-area .upload-btn-wrapper .layui-btn.layui-btn-normal {
  border: #00652b solid 1px;
  background: #00652b;
}
.contact .content .contain .formbox .contact-form .form-container .layui-form .layui-row .layui-form-item .layui-input-block.file-upload-area .upload-btn-wrapper .layui-btn.layui-btn-primary {
  border: #00652b solid 1px;
  background: none;
  color: #00652b;
  transition: all 0.5s ease;
}
.contact .content .contain .formbox .contact-form .form-container .layui-form .layui-row .layui-form-item .layui-input-block.file-upload-area .upload-btn-wrapper .layui-btn.layui-btn-primary:hover {
  color: #ffffff;
  background: #00652b;
}
.contact .content .contain .formbox .contact-form .form-container .layui-form .layui-row .layui-form-item .layui-input-block.file-upload-area .file-note {
  margin-top: 0.15rem;
  color: #666666;
  font-size: 16px;
  line-height: 1.7;
}
@media screen and (max-width: 1580px) {
  .contact .content .contain .formbox .contact-form .form-container .layui-form .layui-row .layui-form-item .layui-input-block.file-upload-area .file-note {
    font-size: clamp(13px, 0.16rem, 16px);
  }
}
@media screen and (max-width: 991px) {
  .contact .content .contain .formbox .contact-form .form-container .layui-form .layui-row .layui-form-item .layui-input-block.file-upload-area .file-note {
    font-size: 14px;
  }
}
.contact .content .contain .formbox .contact-form .form-container .layui-form .layui-row .layui-form-item .layui-input-block.file-upload-area .show-area {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 2.1rem;
  border: #e9e9e9 solid 1px;
  box-sizing: border-box;
}
@media screen and (max-width: 991px) {
  .contact .content .contain .formbox .contact-form .form-container .layui-form .layui-row .layui-form-item .layui-input-block.file-upload-area .show-area {
    min-height: 2.7rem;
  }
}
.contact .content .contain .formbox .contact-form .form-container .layui-form .layui-row .layui-form-item .layui-input-block.file-upload-area .show-area.uped .layui-upload-drag {
  display: none;
}
.contact .content .contain .formbox .contact-form .form-container .layui-form .layui-row .layui-form-item .layui-input-block.file-upload-area .file-list-container {
  position: relative;
  z-index: 5;
  width: 100%;
  background: #ffffff;
}
.contact .content .contain .formbox .contact-form .form-container .layui-form .layui-row .layui-form-item .layui-input-block.file-upload-area .file-list-container .file-item {
  display: flex;
  align-items: center;
  padding: 0.12rem;
  transition: all 0.5s ease;
}
@media screen and (max-width: 1260px) {
  .contact .content .contain .formbox .contact-form .form-container .layui-form .layui-row .layui-form-item .layui-input-block.file-upload-area .file-list-container .file-item {
    padding: 0.18rem;
  }
}
@media screen and (max-width: 991px) {
  .contact .content .contain .formbox .contact-form .form-container .layui-form .layui-row .layui-form-item .layui-input-block.file-upload-area .file-list-container .file-item {
    padding: 0.2rem 0.3rem;
  }
}
.contact .content .contain .formbox .contact-form .form-container .layui-form .layui-row .layui-form-item .layui-input-block.file-upload-area .file-list-container .file-item:hover {
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.15);
}
.contact .content .contain .formbox .contact-form .form-container .layui-form .layui-row .layui-form-item .layui-input-block.file-upload-area .file-list-container .file-item .file-info {
  flex: 1;
  overflow: hidden;
}
.contact .content .contain .formbox .contact-form .form-container .layui-form .layui-row .layui-form-item .layui-input-block.file-upload-area .file-list-container .file-item .file-info .file-name {
  display: block;
  width: 100%;
  color: #666666;
  font-size: 16px;
}
@media screen and (max-width: 1580px) {
  .contact .content .contain .formbox .contact-form .form-container .layui-form .layui-row .layui-form-item .layui-input-block.file-upload-area .file-list-container .file-item .file-info .file-name {
    font-size: clamp(13px, 0.16rem, 16px);
  }
}
@media screen and (max-width: 991px) {
  .contact .content .contain .formbox .contact-form .form-container .layui-form .layui-row .layui-form-item .layui-input-block.file-upload-area .file-list-container .file-item .file-info .file-name {
    font-size: 14px;
  }
}
.contact .content .contain .formbox .contact-form .form-container .layui-form .layui-row .layui-form-item .layui-input-block.file-upload-area .file-list-container .file-item .file-info .file-size {
  display: block;
  width: 100%;
  color: #666666;
  font-size: 16px;
}
@media screen and (max-width: 1580px) {
  .contact .content .contain .formbox .contact-form .form-container .layui-form .layui-row .layui-form-item .layui-input-block.file-upload-area .file-list-container .file-item .file-info .file-size {
    font-size: clamp(13px, 0.16rem, 16px);
  }
}
@media screen and (max-width: 991px) {
  .contact .content .contain .formbox .contact-form .form-container .layui-form .layui-row .layui-form-item .layui-input-block.file-upload-area .file-list-container .file-item .file-info .file-size {
    font-size: 14px;
  }
}
.contact .content .contain .formbox .contact-form .form-container .layui-form .layui-row .layui-form-item .layui-input-block.file-upload-area .file-list-container .file-item .file-actions {
  flex-shrink: 0;
  margin-left: 0.3rem;
}
.contact .content .contain .formbox .contact-form .form-container .layui-form .layui-row .layui-form-item .layui-input-block.file-upload-area .file-list-container .file-item .file-actions img {
  width: 0.3rem;
}
.contact .content .contain .formbox .contact-form .form-container .layui-form .layui-row .layui-form-item .layui-input-block .inputspe {
  position: relative;
  padding-left: 0.4rem;
  color: #888888;
  font-size: 16px;
}
@media screen and (max-width: 1580px) {
  .contact .content .contain .formbox .contact-form .form-container .layui-form .layui-row .layui-form-item .layui-input-block .inputspe {
    font-size: clamp(13px, 0.16rem, 16px);
  }
}
@media screen and (max-width: 991px) {
  .contact .content .contain .formbox .contact-form .form-container .layui-form .layui-row .layui-form-item .layui-input-block .inputspe {
    font-size: 14px;
  }
}
.contact .content .contain .formbox .contact-form .form-container .layui-form .layui-row .layui-form-item .layui-input-block .inputspe .layui-form-checkbox[lay-skin=primary] {
  position: absolute;
  left: 0;
  top: 0;
  min-height: 0.4rem;
  display: inline-flex;
  width: auto;
  margin-top: 0;
}
.contact .content .contain .formbox .contact-form .form-container .layui-form .layui-row .layui-form-item .layui-input-block .inputspe a {
  display: inline;
}
.contact .content .contain .formbox .contact-form .form-container .layui-form .layui-row .layui-form-item .layui-input-block .inputspe a#privacyLink {
  color: #f37b1d;
}
.contact .content .contain .formbox .contact-form .form-container .layui-form .layui-row .layui-form-item .layui-input-block .layui-form-select .layui-select-title .layui-input {
  padding-right: 0.7rem;
}
.contact .content .contain .formbox .contact-form .form-container .layui-form .layui-row .layui-form-item .layui-input-block .layui-form-select .layui-select-title .layui-edge {
  top: 0;
  right: 0;
  margin-top: 0;
  border-width: 0;
  width: 0.45rem;
  height: 100%;
  background: url(../images/icon11.png) center no-repeat;
  background-size: 25% auto;
}
@media screen and (max-width: 991px) {
  .contact .content .contain .formbox .contact-form .form-container .layui-form .layui-row .layui-form-item .layui-input-block .layui-form-select .layui-select-title .layui-edge {
    width: 0.7rem;
  }
}
.contact .content .contain .formbox .contact-form .form-container .layui-form .layui-row .layui-form-item .layui-input-block .layui-form-select dl {
  top: 100%;
  bottom: auto;
  max-width: 2.7rem;
  width: 100%;
  box-sizing: border-box;
  text-align: left;
}
.contact .content .contain .formbox .contact-form .form-container .layui-form .layui-row .layui-form-item .layui-input-block .layui-form-select dl dd {
  font-size: 16px;
  color: #333333;
  line-height: 2.25;
  padding: 0 0.2rem;
}
@media screen and (max-width: 1580px) {
  .contact .content .contain .formbox .contact-form .form-container .layui-form .layui-row .layui-form-item .layui-input-block .layui-form-select dl dd {
    font-size: clamp(13px, 0.16rem, 16px);
  }
}
@media screen and (max-width: 991px) {
  .contact .content .contain .formbox .contact-form .form-container .layui-form .layui-row .layui-form-item .layui-input-block .layui-form-select dl dd {
    font-size: 14px;
  }
}
@media screen and (max-width: 991px) {
  .contact .content .contain .formbox .contact-form .form-container .layui-form .layui-row .layui-form-item .layui-input-block .layui-form-select dl dd {
    padding: 0 0.3rem;
  }
}
.contact .content .contain .formbox .contact-form .form-container .layui-form .layui-row .layui-form-item .layui-input-block .layui-form-select dl dd.layui-this {
  color: #FFFFFF;
  background-color: #016d2f;
}
.contact .content .contain .formbox .contact-form .form-container .layui-form .layui-row .layui-form-item .layui-input-block .layui-form-select dl dd.layui-select-tips {
  padding-left: 0.2rem !important;
}
@media screen and (max-width: 991px) {
  .contact .content .contain .formbox .contact-form .form-container .layui-form .layui-row .layui-form-item .layui-input-block .layui-form-select dl dd.layui-select-tips {
    padding-left: 0.3rem !important;
  }
}
.contact .content .contain .formbox .contact-form .form-container .layui-form .layui-row .layui-form-item .layui-input-block .layui-form-checkbox[lay-skin=primary] {
  display: flex;
  align-items: baseline;
  width: 100%;
  overflow: hidden;
  padding-left: 0.4rem;
}
@media screen and (max-width: 991px) {
  .contact .content .contain .formbox .contact-form .form-container .layui-form .layui-row .layui-form-item .layui-input-block .layui-form-checkbox[lay-skin=primary] {
    padding-left: 24px;
  }
}
.contact .content .contain .formbox .contact-form .form-container .layui-form .layui-row .layui-form-item .layui-input-block .layui-form-checkbox[lay-skin=primary].layui-form-checked[lay-skin=primary] i {
  border-color: #e67817 !important;
  background-color: #e67817;
}
.contact .content .contain .formbox .contact-form .form-container .layui-form .layui-row .layui-form-item .layui-input-block .layui-form-checkbox[lay-skin=primary] span {
  flex: 1;
  overflow: hidden;
  white-space: pre-wrap;
  padding-right: 0;
  color: #888888;
  font-size: 16px;
  line-height: 1.5;
}
@media screen and (max-width: 1580px) {
  .contact .content .contain .formbox .contact-form .form-container .layui-form .layui-row .layui-form-item .layui-input-block .layui-form-checkbox[lay-skin=primary] span {
    font-size: clamp(13px, 0.16rem, 16px);
  }
}
@media screen and (max-width: 991px) {
  .contact .content .contain .formbox .contact-form .form-container .layui-form .layui-row .layui-form-item .layui-input-block .layui-form-checkbox[lay-skin=primary] span {
    font-size: 14px;
  }
}
@media screen and (max-width: 480px) {
  .contact .content .contain .formbox .contact-form .form-container .layui-form .layui-row .layui-form-item .layui-input-block .layui-form-checkbox[lay-skin=primary] span {
    font-size: 12px;
  }
}
.contact .content .contain .formbox .contact-form .form-container .layui-form .layui-row .layui-form-item .layui-input-block .layui-form-checkbox[lay-skin=primary] i {
  top: 0.02rem;
  width: 0.22rem;
  height: 0.22rem;
  line-height: 0.22rem;
  border: #e9e9e9 solid 1px;
  border-radius: 0;
  font-size: 0.12rem;
}
@media screen and (max-width: 1900px) {
  .contact .content .contain .formbox .contact-form .form-container .layui-form .layui-row .layui-form-item .layui-input-block .layui-form-checkbox[lay-skin=primary] i {
    font-size: 0.625vw;
  }
}
@media screen and (max-width: 1260px) {
  .contact .content .contain .formbox .contact-form .form-container .layui-form .layui-row .layui-form-item .layui-input-block .layui-form-checkbox[lay-skin=primary] i {
    top: 0;
    width: 16px;
    height: 16px;
    line-height: 16px;
    font-size: 12px;
  }
}
.contact .content .contain .formbox .contact-form .form-container .layui-form .layui-row .layui-form-item .layui-input-block .layui-input {
  width: 100%;
  height: 0.5rem;
  padding: 0 0.2rem;
  border-radius: 0;
  border: #e9e9e9 solid 1px;
  box-sizing: border-box;
  background: #ffffff;
  color: #333333;
  font-size: 16px;
}
@media screen and (max-width: 1580px) {
  .contact .content .contain .formbox .contact-form .form-container .layui-form .layui-row .layui-form-item .layui-input-block .layui-input {
    font-size: clamp(13px, 0.16rem, 16px);
  }
}
@media screen and (max-width: 991px) {
  .contact .content .contain .formbox .contact-form .form-container .layui-form .layui-row .layui-form-item .layui-input-block .layui-input {
    font-size: 14px;
  }
}
@media screen and (max-width: 991px) {
  .contact .content .contain .formbox .contact-form .form-container .layui-form .layui-row .layui-form-item .layui-input-block .layui-input {
    height: 0.6rem;
    padding: 0 0.3rem;
  }
}
@media screen and (max-width: 480px) {
  .contact .content .contain .formbox .contact-form .form-container .layui-form .layui-row .layui-form-item .layui-input-block .layui-input {
    height: 0.68rem;
  }
}
.contact .content .contain .formbox .contact-form .form-container .layui-form .layui-row .layui-form-item .layui-input-block .layui-input::-webkit-input-placeholder {
  font-family: "SourceHanSansCN-Light";
  color: #777777;
}
.contact .content .contain .formbox .contact-form .form-container .layui-form .layui-row .layui-form-item .layui-input-block .layui-input::-moz-placeholder {
  font-family: "SourceHanSansCN-Light";
  color: #777777;
}
.contact .content .contain .formbox .contact-form .form-container .layui-form .layui-row .layui-form-item .layui-input-block .layui-input:-moz-placeholder {
  font-family: "SourceHanSansCN-Light";
  color: #777777;
}
.contact .content .contain .formbox .contact-form .form-container .layui-form .layui-row .layui-form-item .layui-input-block .layui-input:-ms-input-placeholder {
  font-family: "SourceHanSansCN-Light";
  color: #777777;
}
.contact .content .contain .formbox .contact-form .form-container .layui-form .layui-row .layui-form-item .layui-input-block .layui-input::hover {
  border-color: #e9e9e9 !important;
}
.contact .content .contain .formbox .contact-form .form-container .layui-form .layui-row .layui-form-item .layui-input-block .layui-input:focus {
  border-color: #e9e9e9 !important;
}
.contact .content .contain .formbox .contact-form .form-container .layui-form .layui-row .layui-form-item .layui-input-block .layui-textarea {
  width: 100%;
  height: 2rem;
  padding: 0.2rem 0.2rem 0.4rem;
  border-radius: 0;
  border: #e9e9e9 solid 1px;
  box-sizing: border-box;
  background: #ffffff;
  resize: none;
  color: #333333;
  font-size: 16px;
}
@media screen and (max-width: 1580px) {
  .contact .content .contain .formbox .contact-form .form-container .layui-form .layui-row .layui-form-item .layui-input-block .layui-textarea {
    font-size: clamp(13px, 0.16rem, 16px);
  }
}
@media screen and (max-width: 991px) {
  .contact .content .contain .formbox .contact-form .form-container .layui-form .layui-row .layui-form-item .layui-input-block .layui-textarea {
    font-size: 14px;
  }
}
@media screen and (max-width: 991px) {
  .contact .content .contain .formbox .contact-form .form-container .layui-form .layui-row .layui-form-item .layui-input-block .layui-textarea {
    height: 2.7rem;
    padding: 0.25rem 0.3rem;
  }
}
.contact .content .contain .formbox .contact-form .form-container .layui-form .layui-row .layui-form-item .layui-input-block .layui-textarea::-webkit-input-placeholder {
  font-family: "SourceHanSansCN-Light";
  color: #777777;
}
.contact .content .contain .formbox .contact-form .form-container .layui-form .layui-row .layui-form-item .layui-input-block .layui-textarea::-moz-placeholder {
  font-family: "SourceHanSansCN-Light";
  color: #777777;
}
.contact .content .contain .formbox .contact-form .form-container .layui-form .layui-row .layui-form-item .layui-input-block .layui-textarea:-moz-placeholder {
  font-family: "SourceHanSansCN-Light";
  color: #777777;
}
.contact .content .contain .formbox .contact-form .form-container .layui-form .layui-row .layui-form-item .layui-input-block .layui-textarea:-ms-input-placeholder {
  font-family: "SourceHanSansCN-Light";
  color: #777777;
}
.contact .content .contain .formbox .contact-form .form-container .layui-form .layui-row .layui-form-item .layui-input-block .layui-textarea::hover {
  border-color: #e9e9e9 !important;
}
.contact .content .contain .formbox .contact-form .form-container .layui-form .layui-row .layui-form-item .layui-input-block .layui-textarea:focus {
  border-color: #e9e9e9 !important;
}
.contact .content .contain .formbox .contact-form .form-container .layui-form .layui-row .layui-form-item .layui-input-block .layui-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.1rem;
  height: 0.42rem;
  border-radius: 0;
  color: #ffffff;
  font-size: 16px;
  border: none;
  background: #e67817;
}
@media screen and (max-width: 1580px) {
  .contact .content .contain .formbox .contact-form .form-container .layui-form .layui-row .layui-form-item .layui-input-block .layui-btn {
    font-size: clamp(13px, 0.16rem, 16px);
  }
}
@media screen and (max-width: 991px) {
  .contact .content .contain .formbox .contact-form .form-container .layui-form .layui-row .layui-form-item .layui-input-block .layui-btn {
    font-size: 14px;
  }
}
@media screen and (max-width: 1260px) {
  .contact .content .contain .formbox .contact-form .form-container .layui-form .layui-row .layui-form-item .layui-input-block .layui-btn {
    width: 1.2rem;
    height: 0.5rem;
  }
}
@media screen and (max-width: 991px) {
  .contact .content .contain .formbox .contact-form .form-container .layui-form .layui-row .layui-form-item .layui-input-block .layui-btn {
    width: 1.4rem;
    height: 0.6rem;
  }
}
@media screen and (max-width: 480px) {
  .contact .content .contain .formbox .contact-form .form-container .layui-form .layui-row .layui-form-item .layui-input-block .layui-btn {
    width: 1.6rem;
    height: 0.68rem;
  }
}
.contact .content .contain .formbox .contact-form .form-container .layui-form .layui-row .layui-form-item .layui-input-block .layui-btn img {
  display: inline-block;
  margin-right: 0.1rem;
  width: 0.2rem;
}
@media screen and (max-width: 1260px) {
  .contact .content .contain .formbox .contact-form .form-container .layui-form .layui-row .layui-form-item .layui-input-block .layui-btn img {
    width: 16px;
    margin-right: 8px;
  }
}
.contact .content .contain .formbox .contact-form .form-container .layui-form .layui-row .layui-form-item .word-limit {
  position: absolute;
  right: 0.2rem;
  bottom: 0.1rem;
  color: #ccc6c6;
  font-size: 16px;
}
@media screen and (max-width: 1580px) {
  .contact .content .contain .formbox .contact-form .form-container .layui-form .layui-row .layui-form-item .word-limit {
    font-size: clamp(13px, 0.16rem, 16px);
  }
}
@media screen and (max-width: 991px) {
  .contact .content .contain .formbox .contact-form .form-container .layui-form .layui-row .layui-form-item .word-limit {
    font-size: 14px;
  }
}
.contact .content .contain .formbox .contact-form .form-container .layui-form .layui-row .layui-form-item .word-limit span {
  display: inline-block;
}
.application .content .contain {
  padding-top: 2.5%;
  padding-bottom: 4%;
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
@media screen and (max-width: 1260px) {
  .application .content .contain {
    padding-top: 4%;
    padding-bottom: 6%;
  }
}
@media screen and (max-width: 1023px) {
  .application .content .contain {
    gap: 25px;
    padding-top: 0.5rem;
    padding-bottom: 1rem;
  }
}
.application .content .contain .applist .action-bar {
  margin-top: 0.15rem;
  margin-bottom: 0.3rem;
  width: 100%;
}
@media screen and (max-width: 1260px) {
  .application .content .contain .applist .action-bar {
    margin-top: 15px;
    margin-bottom: 30px;
  }
}
.application .content .contain .applist .action-bar .layui-form {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.application .content .contain .applist .action-bar .form-select {
  position: relative;
  width: 2.8rem;
}
@media screen and (max-width: 1260px) {
  .application .content .contain .applist .action-bar .form-select {
    width: 200px;
  }
}
@media screen and (max-width: 767px) {
  .application .content .contain .applist .action-bar .form-select {
    width: 100%;
  }
}
.application .content .contain .applist .action-bar .form-select .layui-form-select .layui-select-title .layui-input {
  width: 100%;
  height: 0.5rem;
  padding: 0 0.7rem 0 0.2rem;
  border-radius: 5px;
  border: #e9e9e9 solid 1px;
  box-sizing: border-box;
  background: #fbfbfb;
  font-family: "SourceHanSansCN-Medium";
  color: #333333;
  font-size: 16px;
}
@media screen and (max-width: 1580px) {
  .application .content .contain .applist .action-bar .form-select .layui-form-select .layui-select-title .layui-input {
    font-size: clamp(13px, 0.16rem, 16px);
  }
}
@media screen and (max-width: 991px) {
  .application .content .contain .applist .action-bar .form-select .layui-form-select .layui-select-title .layui-input {
    font-size: 14px;
  }
}
@media screen and (max-width: 991px) {
  .application .content .contain .applist .action-bar .form-select .layui-form-select .layui-select-title .layui-input {
    height: 0.6rem;
    padding: 0 0.3rem;
  }
}
@media screen and (max-width: 480px) {
  .application .content .contain .applist .action-bar .form-select .layui-form-select .layui-select-title .layui-input {
    height: 0.68rem;
  }
}
.application .content .contain .applist .action-bar .form-select .layui-form-select .layui-select-title .layui-input::-webkit-input-placeholder {
  font-family: "SourceHanSansCN-Light";
  color: #666666;
}
.application .content .contain .applist .action-bar .form-select .layui-form-select .layui-select-title .layui-input::-moz-placeholder {
  font-family: "SourceHanSansCN-Light";
  color: #666666;
}
.application .content .contain .applist .action-bar .form-select .layui-form-select .layui-select-title .layui-input:-moz-placeholder {
  font-family: "SourceHanSansCN-Light";
  color: #666666;
}
.application .content .contain .applist .action-bar .form-select .layui-form-select .layui-select-title .layui-input:-ms-input-placeholder {
  font-family: "SourceHanSansCN-Light";
  color: #666666;
}
.application .content .contain .applist .action-bar .form-select .layui-form-select .layui-select-title .layui-input::hover {
  border-color: #e9e9e9 !important;
}
.application .content .contain .applist .action-bar .form-select .layui-form-select .layui-select-title .layui-input:focus {
  border-color: #e9e9e9 !important;
}
.application .content .contain .applist .action-bar .form-select .layui-form-select .layui-select-title .layui-edge {
  top: 0;
  right: 0;
  margin-top: 0;
  border-width: 0;
  width: 0.45rem;
  height: 100%;
  background: url(../images/icon11.png) center no-repeat;
  background-size: 33.33333333333% auto;
}
@media screen and (max-width: 991px) {
  .application .content .contain .applist .action-bar .form-select .layui-form-select .layui-select-title .layui-edge {
    width: 0.7rem;
  }
}
.application .content .contain .applist .action-bar .form-select .layui-form-select dl {
  top: 100%;
  bottom: auto;
  max-width: 2.7rem;
  width: 100%;
  box-sizing: border-box;
  text-align: left;
}
.application .content .contain .applist .action-bar .form-select .layui-form-select dl dd {
  font-size: 16px;
  color: #333333;
  line-height: 2.25;
  padding: 0 0.2rem;
}
@media screen and (max-width: 1580px) {
  .application .content .contain .applist .action-bar .form-select .layui-form-select dl dd {
    font-size: clamp(13px, 0.16rem, 16px);
  }
}
@media screen and (max-width: 991px) {
  .application .content .contain .applist .action-bar .form-select .layui-form-select dl dd {
    font-size: 14px;
  }
}
@media screen and (max-width: 991px) {
  .application .content .contain .applist .action-bar .form-select .layui-form-select dl dd {
    padding: 0 0.3rem;
  }
}
.application .content .contain .applist .action-bar .form-select .layui-form-select dl dd.layui-this {
  color: #FFFFFF;
  background-color: #016d2f;
}
.application .content .contain .applist .action-bar .form-select .layui-form-select dl dd.layui-select-tips {
  padding-left: 0.2rem !important;
}
@media screen and (max-width: 991px) {
  .application .content .contain .applist .action-bar .form-select .layui-form-select dl dd.layui-select-tips {
    padding-left: 0.3rem !important;
  }
}
.application .content .contain .applist .wrap {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.application .content .contain .applist .wrap .list {
  gap: 10px;
}
.application .content .contain .applist .wrap .list .appli-item {
  width: calc((100% - 30px) / 4);
}
@media screen and (max-width: 1260px) {
  .application .content .contain .applist .wrap .list .appli-item {
    width: calc((100% - 20px) / 3);
  }
}
@media screen and (max-width: 767px) {
  .application .content .contain .applist .wrap .list .appli-item {
    width: calc((100% - 10px) / 2);
  }
}
@media screen and (max-width: 480px) {
  .application .content .contain .applist .wrap .list .appli-item {
    width: 100%;
  }
}
.application .content .contain .applist .wrap .list .appli-item .textbox .cont {
  min-height: 1.4rem;
}
@media screen and (max-width: 991px) {
  .application .content .contain .application-introduction .substance {
    flex-wrap: wrap;
  }
}
.application .content .contain .application-introduction .substance .textbox {
  width: 50%;
  padding-top: 0.36rem;
  padding-bottom: 0.36rem;
  border-top: #e9e9e9 solid 1px;
  border-bottom: #e9e9e9 solid 1px;
  box-sizing: border-box;
}
@media screen and (max-width: 991px) {
  .application .content .contain .application-introduction .substance .textbox {
    width: 100%;
    border-bottom: none;
    margin-bottom: 0.2rem;
  }
}
.application .content .contain .application-introduction .substance .textbox .o-title .desc {
  margin-top: 0.3rem;
  text-align: justify;
}
.application .content .contain .application-introduction .substance .textbox .public-btn {
  margin-top: 0.5rem;
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 0.1rem;
}
.application .content .contain .application-introduction .substance .imgbox {
  width: 45.16949152542373%;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .application .content .contain .application-introduction .substance .imgbox {
    width: 100%;
  }
}
.application .content .contain .application-introduction .substance .imgbox img {
  display: block;
  width: 100%;
}
.application .content .contain .universal-filter .wrap {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-top: 0.2rem;
}
@media screen and (max-width: 991px) {
  .application .content .contain .universal-filter .wrap {
    margin-top: 20px;
    gap: 30px;
  }
}
@media screen and (max-width: 991px) {
  .application .content .contain .download-materials {
    margin-top: 20px;
  }
}
.application .content .contain .download-materials .o-title {
  padding: 0.2rem 0;
  border-top: #e9e9e9 solid 1px;
  border-bottom: #e9e9e9 solid 1px;
}
@media screen and (max-width: 1260px) {
  .application .content .contain .download-materials .o-title {
    padding: 15px 0;
  }
}
.application .content .contain .download-materials .wrap {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
@media screen and (max-width: 991px) {
  .application .content .contain .download-materials .wrap {
    gap: 0.5rem;
  }
}
.appli-item {
  display: flex;
  flex-direction: column;
  border: #e9e9e9 solid 1px;
  box-sizing: border-box;
}
.appli-item:hover .imgbox img {
  transform: scale(1.06);
}
.appli-item:hover .textbox .subtitle {
  color: #016d2f;
}
.appli-item .imgbox {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.appli-item .imgbox img {
  display: block;
  width: 100%;
  transition: all 0.5s ease;
}
.appli-item .textbox {
  flex: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 0.2rem;
  box-sizing: border-box;
}
@media screen and (max-width: 1260px) {
  .appli-item .textbox {
    padding: 0.25rem;
  }
}
@media screen and (max-width: 991px) {
  .appli-item .textbox {
    padding: 20px;
  }
}
.appli-item .textbox .cont {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}
.appli-item .textbox .cont .subtitle {
  font-family: "SourceHanSansCN-Medium";
  color: #222222;
  font-size: 18px;
  margin-bottom: 0.12rem;
  transition: all 0.5s ease;
}
@media screen and (max-width: 1580px) {
  .appli-item .textbox .cont .subtitle {
    font-size: clamp(15px, 0.18rem, 18px);
  }
}
@media screen and (max-width: 991px) {
  .appli-item .textbox .cont .subtitle {
    font-size: 16px;
  }
}
.appli-item .textbox .cont .text {
  color: #333333;
  font-size: 17px;
  line-height: 1.5;
}
@media screen and (max-width: 1580px) {
  .appli-item .textbox .cont .text {
    font-size: clamp(14px, 0.17rem, 17px);
  }
}
@media screen and (max-width: 991px) {
  .appli-item .textbox .cont .text {
    font-size: 14px;
  }
}
.appli-item .textbox .more {
  margin-top: 0.2rem;
  border-top: #e9e9e9 solid 1px;
  padding-top: 0.15rem;
}
@media screen and (max-width: 1260px) {
  .appli-item .textbox .more {
    margin-top: 15px;
    padding-top: 12px;
  }
}
.appli-item .textbox .more span {
  display: inline-block;
  color: #E67817;
  font-size: 16px;
  text-decoration: underline;
}
@media screen and (max-width: 1580px) {
  .appli-item .textbox .more span {
    font-size: clamp(13px, 0.16rem, 16px);
  }
}
@media screen and (max-width: 991px) {
  .appli-item .textbox .more span {
    font-size: 14px;
  }
}
.search-results .content .contain {
  padding-top: 2.5%;
  padding-bottom: 4%;
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
@media screen and (max-width: 1260px) {
  .search-results .content .contain {
    padding-top: 4%;
    padding-bottom: 6%;
  }
}
@media screen and (max-width: 1023px) {
  .search-results .content .contain {
    gap: 25px;
    padding-top: 0.5rem;
    padding-bottom: 1rem;
  }
}
.search-results .content .contain .form-search-box {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
@media screen and (max-width: 1023px) {
  .search-results .content .contain .form-search-box {
    gap: 20px;
  }
}
.search-results .content .contain .form-search-box .form-search {
  max-width: 6rem;
  width: 100%;
  display: flex;
  align-items: stretch;
  border-radius: 0.25rem;
  border: #e9e9e9 solid 1px;
  box-sizing: border-box;
}
@media screen and (max-width: 1023px) {
  .search-results .content .contain .form-search-box .form-search {
    max-width: 100%;
    border-radius: 25px;
  }
}
.search-results .content .contain .form-search-box .form-search .s-input {
  width: calc(100% - 0.5rem);
  height: 0.48rem;
  font-size: 16px;
  color: #333333;
  text-align: left;
  padding-left: 0.28rem;
  padding-right: 0.15rem;
  box-sizing: border-box;
}
@media screen and (max-width: 1580px) {
  .search-results .content .contain .form-search-box .form-search .s-input {
    font-size: clamp(13px, 0.16rem, 16px);
  }
}
@media screen and (max-width: 991px) {
  .search-results .content .contain .form-search-box .form-search .s-input {
    font-size: 14px;
  }
}
.search-results .content .contain .form-search-box .form-search .s-input::-webkit-input-placeholder {
  font-family: "SourceHanSansCN-Light";
  color: #aaaaaa;
}
.search-results .content .contain .form-search-box .form-search .s-input::-moz-placeholder {
  font-family: "SourceHanSansCN-Light";
  color: #aaaaaa;
}
.search-results .content .contain .form-search-box .form-search .s-input:-moz-placeholder {
  font-family: "SourceHanSansCN-Light";
  color: #aaaaaa;
}
.search-results .content .contain .form-search-box .form-search .s-input:-ms-input-placeholder {
  font-family: "SourceHanSansCN-Light";
  color: #aaaaaa;
}
@media screen and (max-width: 1023px) {
  .search-results .content .contain .form-search-box .form-search .s-input {
    padding-left: 0.3rem;
    padding-right: 0px;
    height: 44px;
  }
}
@media screen and (max-width: 540px) {
  .search-results .content .contain .form-search-box .form-search .s-input {
    height: 40px;
  }
}
.search-results .content .contain .form-search-box .form-search .s-icon {
  line-height: 1;
  flex-shrink: 0;
  width: 0.5rem;
}
@media screen and (max-width: 1023px) {
  .search-results .content .contain .form-search-box .form-search .s-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 44px;
  }
}
@media screen and (max-width: 540px) {
  .search-results .content .contain .form-search-box .form-search .s-icon {
    width: 50px;
    height: 40px;
  }
}
.search-results .content .contain .form-search-box .form-search .s-icon img {
  max-width: 34%;
}
.search-results .content .contain .form-search-box .text {
  font-family: "SourceHanSansCN-Regular";
  font-size: 30px;
  color: #333333;
}
@media screen and (max-width: 1580px) {
  .search-results .content .contain .form-search-box .text {
    font-size: clamp(21px, 0.3rem, 30px);
  }
}
@media screen and (max-width: 991px) {
  .search-results .content .contain .form-search-box .text {
    font-size: 24px;
  }
}
.search-results .content .contain .form-search-box .text span {
  display: inline-block;
  color: #349734;
}
.search-results .content .contain .search-results-tab {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 10px;
}
.search-results .content .contain .search-results-tab span,
.search-results .content .contain .search-results-tab a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.7rem;
  height: 0.45rem;
  border: #00652b solid 1px;
  padding: 0 0.2rem;
  box-sizing: border-box;
  color: #349734;
  font-size: 16px;
  border-radius: 5px;
  transition: all 0.5s ease;
}
@media screen and (max-width: 1580px) {
  .search-results .content .contain .search-results-tab span,
  .search-results .content .contain .search-results-tab a {
    font-size: clamp(13px, 0.16rem, 16px);
  }
}
@media screen and (max-width: 991px) {
  .search-results .content .contain .search-results-tab span,
  .search-results .content .contain .search-results-tab a {
    font-size: 14px;
  }
}
@media screen and (max-width: 1023px) {
  .search-results .content .contain .search-results-tab span,
  .search-results .content .contain .search-results-tab a {
    height: 36px;
  }
}
.search-results .content .contain .search-results-tab span:hover,
.search-results .content .contain .search-results-tab a:hover {
  color: #FFFFFF;
  background: #00652b;
}
.search-results .content .contain .search-results-tab span.active,
.search-results .content .contain .search-results-tab a.active {
  color: #FFFFFF;
  background: #00652b;
}
.search-results .content .contain .search-results-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.search-results .content .contain .search-results-list .item {
  display: block;
  width: 100%;
  box-sizing: border-box;
  border: #e9e9e9 solid 1px;
  padding: 0.2rem;
  background: #fcfcfc;
}
@media screen and (max-width: 1023px) {
  .search-results .content .contain .search-results-list .item {
    padding: 0.3rem;
  }
}
.search-results .content .contain .search-results-list .item:hover .subtitle {
  color: #00652b;
}
.search-results .content .contain .search-results-list .item .subtitle {
  font-family: "SourceHanSansCN-Regular";
  color: #000000;
  font-size: 20px;
  transition: all 0.5s ease;
}
@media screen and (max-width: 1580px) {
  .search-results .content .contain .search-results-list .item .subtitle {
    font-size: clamp(18px, 0.2rem, 20px);
  }
}
@media screen and (max-width: 991px) {
  .search-results .content .contain .search-results-list .item .subtitle {
    font-size: 19px;
  }
}
.search-results .content .contain .search-results-list .item .text {
  margin-top: 0.12rem;
  color: #333333;
  font-size: 18px;
}
@media screen and (max-width: 1580px) {
  .search-results .content .contain .search-results-list .item .text {
    font-size: clamp(15px, 0.18rem, 18px);
  }
}
@media screen and (max-width: 991px) {
  .search-results .content .contain .search-results-list .item .text {
    font-size: 16px;
  }
}


/*20260626*/
.product .contain .box .wrap .content .universal-filter{
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}
