@charset "utf-8";

/* 这个css是初始化的css，在任何项目里面都可以使用 */
/* 禁用iPhone中Safari的字号自动调整 */
html {
  margin-top: 0 !important;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  /* 解决IOS默认滑动很卡的情况 */
  -webkit-overflow-scrolling: touch;
  overflow-x: hidden;
  overflow-y: scroll;
}

body {
  --header_h: 6.25rem;
  --container: 14.375rem;
  outline: none;
  font-weight: 500;
}

.p_top {
  position: absolute;
  top: -10rem;
}

.bg {
  background: #3B482C;
}

img {
  image-rendering: auto;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.c {
  color: #3B482C;
}

.phone_show_990,
.phone_show_767 {
  display: none;
}

.pagination {
  display: flex;
  padding-left: 0;
  margin: 4.0625rem 0 0;
  border-radius: 0.25rem;
  justify-content: center;
}

.pagination>li {
  margin: 0 0.3125rem;
  width: 3.125rem;
  height: 3.125rem;
  border-radius: unset;
  border: 1px solid #DBDBDB;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 600;
}

.pagination>li:hover {
  background: #3B482C;
  color: #fff;
  text-align: center;
}

.pagination>li:hover a {
  color: #fff;
  display: block;
  width: 100%;
  height: 100%;
  line-height: 3.125rem;
}

.pagination>li.active {
  background: #3B482C;
  color: #fff;
}

.pagination>li.active a {
  color: #fff;
}

.pagination>li.disabled:hover {
  color: #333;
  background: #FFF;
}

.grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.grid3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.grid4 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.gap15 {
  gap: 0.9375rem;
}

.gap20 {
  gap: 1.25rem;
}

.gap30 {
  gap: 1.875rem;
}

.gap40 {
  gap: 2.5rem;
}

.gap50 {
  gap: 3.125rem;
}

.foot-fot {
  background: #2D3333;
  display: none;
}

.foot-fot .foota2 {
  font-size: 1rem;
  color: #fff;
}

.foot-fot .foota2 a {
  font-size: 1rem;
  color: #fff;
}

/* 禁止缩放表单 */
input[type="submit"],
input[type="reset"],
input[type="button"],
input {
  resize: none;
  border: none;
}

img {
  max-width: 100%;
  height: auto;
  width: auto;
  /* ie8 */
  -ms-interpolation-mode: bicubic;
  /*为了照顾ie图片缩放失真*/
}

.search_more {
  margin-top: 1.25rem;
  font-size: 1rem;
  color: #444;
  position: relative;
  display: inline-block;
}

.search_more:hover {
  color: #3B482C;
}

.search_more:hover::before {
  background: #3B482C;
}

.search_more::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #E5E5E5;
}

.line1 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

.line2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.line3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.line4 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 4;
  overflow: hidden;
}

.trans {
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}

.sec_box {
  position: absolute;
  width: 100vw;
  left: 0%;
  box-shadow: 0 0 0.125rem rgba(0, 0, 0, 0.1);
  right: 0;
  top: 100%;
  z-index: 999;
  transition: 400ms ease-in-out;
  transform: scaleY(0) translateX(-50%);
  transform-origin: top center;
  opacity: 0;
}

.sec_box .sec_cont {
  background-color: #fff;
  display: flex;
  justify-content: space-between;
}

.sec_box .sec_cont .left {
  width: 17%;
  padding-top: 2.5rem;
}

.sec_box .sec_cont .left ul>li a {
  padding-left: 2.5rem;
  color: #3C3C3C;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 3.75rem;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}

.sec_box .sec_cont .left ul>li:hover a,
.sec_box .sec_cont .left ul>li.active a {
  background-color: #3B482C;
  color: #fff;
}

.sec_box .sec_cont .right {
  flex: 1;
  padding-left: 3.125rem;
  padding-right: 10.4375rem;
  padding-top: 2.6875rem;
  padding-bottom: 3.25rem;
  border-left: 1px solid #EAEAEA;
}

.sec_box .sec_cont .right .pro_cont {
  display: none;
}

.sec_box .sec_cont .right .pro_cont.active {
  display: block;
}

.sec_box .sec_cont .right .pro_box {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2.0625rem;
}

.sec_box .sec_cont .right .pro_box .pro_item .over {
  border: 1px solid #E8E8E8;
}

.sec_box .sec_cont .right .pro_box .pro_item .tt {
  margin-top: 1rem;
  color: #3C3C3C;
  text-align: center;
  font-family: Montserrat;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
}

.er-ul {
  position: absolute;
  width: 17rem;
  left: 50%;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
  right: 0;
  top: 100%;
  z-index: 999;
  background: #fff;
  transition: 400ms ease-in-out;
  transform: scaleY(0) translateX(-50%);
  transform-origin: top center;
  opacity: 0;
  padding: 0 1.25rem;
}

.er-ul li {
  text-align: left;
}

.er-ul li a {
  line-height: 2.25rem;
  font-size: 0.875rem;
  color: #3B482C;
}

.er-ul li a i {
  font-size: 0.75rem;
}

.er-ul li:nth-child(1) {
  padding-top: 0.625rem;
}

.er-ul li:last-child {
  padding-bottom: 0.625rem;
}

.er-ul li:hover a {
  color: #bac486;
}

.er-ul li:hover .three_ul {
  transform: scaleY(1);
  opacity: 1;
}

.three_ul {
  position: absolute;
  width: 17rem;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
  left: 110%;
  top: 0;
  z-index: 999;
  background: #fff;
  transition: 400ms ease-in-out;
  transform: scaleY(0);
  transform-origin: top center;
  opacity: 0;
  padding: 0 1.25rem;
}

.three_ul li {
  text-align: left;
}

.three_ul li a {
  line-height: 2.25rem;
  font-size: 0.875rem;
  color: #3B482C !important;
}

.three_ul li:nth-child(1) {
  padding-top: 0.625rem;
}

.three_ul li:last-child {
  padding-bottom: 0.625rem;
}

.three_ul li:hover>a {
  color: #bac486 !important;
}

header .center>ul>li:hover .er-ul {
  transform: scaleY(1) translateX(-50%);
  opacity: 1;
}

.logo_phone img {
  width: 7.5rem;
}

.cf {
  color: #fff !important;
}

.c0 {
  color: #000 !important;
}

.phone_weibu {
  background: #0A0A0A;
  display: none;
}

.phone_weibu .mobMenu>li>a {
  font-size: 14px;
  padding: 10px 0;
  color: #fff;
}

.phone_weibu .mobMenu>li {
  border-bottom: #424245 1px solid;
}

.phone_weibu .mobMenu>li>.subDepth>li>a {
  font-size: 1em;
  color: #9a9797;
  line-height: 28px;
}

.phone_weibu .mobMenu>li>a::before {
  background-color: #fff;
}

.phone_weibu .mobMenu>li>a::after {
  background-color: #fff;
}

.phone_weibu .mobMenu>li>.subDepth {
  display: none;
}

body {
  --container: 14.75rem;
}

@media (max-width: 1600px) {
  body {
    --container: 15.625rem;
  }
}

@media (max-width: 1440px) {
  body {
    --container: 13.75rem;
  }
}

@media (max-width: 1280px) {
  body {
    --container: 12.5rem;
  }
}

@media (max-width: 990px) {
  body {
    --container: 15px;
  }
}

.container {
  padding: 0 var(--container);
  width: 100%;
  max-width: 100%;
}

.container.container_l {
  padding: 0 0 0 var(--container);
}

.container.container_r {
  padding: 0 var(--container) 0 0;
}

/* 搜索 */
.search {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  /* background: #000; */
  background: rgba(0, 0, 0, 0.85);
  z-index: 9999;
  display: none;
}

.search-box {
  width: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 25%;
}

.inp {
  width: 100%;
  height: 6.25rem;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
}

.inp::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.bu {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  color: rgba(255, 255, 255, 0.7);
  background: none;
  border: none;
  z-index: 9999;
}

.bu .iconfont {
  font-size: 3.125rem;
}

.search-con {
  position: absolute;
  right: 7%;
  top: 7%;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
}

.search-con .iconfont {
  font-size: 2.125rem;
  font-weight: 100;
}

.ds {
  cursor: pointer;
}

.fenxiang .flex {
  justify-content: flex-start;
}

.fenxiang .social-share li {
  float: left;
  margin-right: 1.25rem;
  width: 2.5rem;
  height: 2.5rem;
  line-height: 2.375rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  text-align: center;
}

.fenxiang .social-share li a {
  margin: 0 !important;
  width: 100%;
  height: 100%;
  line-height: 2.375rem;
  color: rgba(0, 0, 0, 0.5) !important;
  border: none !important;
  font-size: 1rem;
}

.serbtn {
  background: #3B482C;
}

.searchbox {
  border-color: #3B482C;
}

@media (max-width: 990px) {
  body {
    padding-bottom: 0;
    overflow: hidden;
  }
}

@media (max-width: 990px) {
  .pc-hidden {
    display: none;
  }

  .pc_show_990 {
    display: none;
  }

  .phone_show_990 {
    display: block;
  }
}

.m-hidden {
  display: none;
}

@media (max-width: 990px) {
  .m-hidden {
    display: block;
  }
}

.foot1-m {
  display: none;
  width: 100%;
  position: relative;
  z-index: 1;
}

/*手机底部*/
@media (max-width: 990px) {
  .foot1-m {
    display: block;
  }
}

/*手机端头部*/
.m-bm-head {
  position: fixed;
  top: 0;
  z-index: 999999;
  left: 0;
  right: 0;
  background: #000;
}

.m-bm-head .m-bm-head-box {
  position: relative;
  height: 60px;
}

.m-bm-head .m-bm-head-box .m-bm-logo {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto 4%;
  max-width: 100%;
  height: 34px;
}

.m-bm-head .m-bm-head-box .m-bm-logo h1,
.m-bm-head .m-bm-head-box .m-bm-logo a {
  display: inline;
  font-size: 0;
}

.m-bm-head .m-bm-head-box .m-bm-logo img {
  height: 40px;
  width: 120px;
}

.m-bm-head .m-bm-head-box .m-bm-navbtn {
  position: absolute;
  z-index: 9;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto 4% auto 0;
  width: 20px;
  height: 15px;
}

.m-bm-head .m-bm-head-box .m-bm-navbtn span,
.m-bm-head .m-bm-head-box .m-bm-navbtn:after,
.m-bm-head .m-bm-head-box .m-bm-navbtn:before {
  display: block;
  height: 1.5px;
  width: 100%;
  background: #fff;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}

.m-bm-head .m-bm-head-box .m-bm-navbtn span {
  margin: 4.5px 0;
}

.m-bm-head .m-bm-head-box .m-bm-navbtn:after,
.m-bm-head .m-bm-head-box .m-bm-navbtn:before {
  content: '';
  -webkit-transform-origin: 7.5%;
  -moz-transform-origin: 7.5%;
  -ms-transform-origin: 7.5%;
  -o-transform-origin: 7.5%;
  transform-origin: 7.5%;
}

.m-bm-head .m-bm-head-box .m-bm-navbtn.clicked span {
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
  opacity: 0;
}

.m-bm-head .m-bm-head-box .m-bm-navbtn.clicked::after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.m-bm-head .m-bm-head-box .m-bm-navbtn.clicked:before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.m-bm-head .phone_lanu {
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  right: 65px;
}

.m-bm-head .m-bm-menu {
  display: none;
  position: absolute;
  z-index: 9999;
  left: 0;
  right: 0;
  height: 100vh;
  background: #050505;
}

.m-bm-head .m-bm-menu .m-bm-menu-box {
  height: -webkit-calc(40vh);
  height: -moz-calc(40vh);
  height: calc(100vh - 60px);
  overflow: auto;
  padding-bottom: 80px;
}

.m-bm-head .mrhgxt {
  color: #fff;
  font: 500 1.125rem/60px;
  margin-left: 63%;
  position: relative;
  z-index: 9;
}

.m-bm-head .mrhgxt i {
  font-size: 1.125rem;
  margin-right: 0.25em;
}

.m-bm-nav .aniut.aniut_son {
  height: 35px;
  line-height: 35px;
}

.m-bm-nav>li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.m-bm-nav>li>a {
  display: block;
  line-height: 50px;
  font-size: 14px;
  color: #fff;
  padding: 0 4%;
  font-weight: 600;
}

.m-bm-nav>li>a span {
  display: inline-block;
  min-width: 40%;
  max-width: 50%;
  font-weight: 500;
}

.m-bm-nav>li .sec {
  display: none;
  padding: 10px 15px 10px 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.m-bm-nav>li .sec a {
  display: block;
  font-size: 12px;
  color: #fff;
  line-height: 35px;
}

.m-bm-nav>li .sec a span {
  display: inline-block;
  min-width: 40%;
  max-width: 50%;
}

.m-bm-nav>li .aniut {
  position: absolute;
  width: 40px;
  height: 50px;
  line-height: 50px;
  right: 2%;
  top: 0;
  text-align: center;
  z-index: 9;
}

.m-bm-nav>li .aniut i {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 18px;
  color: #fff;
}

.m-bm-head.white {
  background: #fff;
}

.m-bm-head.white .m-bm-head-box .m-bm-navbtn span,
.m-bm-head.white .m-bm-head-box .m-bm-navbtn:after,
.m-bm-head.white .m-bm-head-box .m-bm-navbtn:before {
  background: #000;
}

.m-bm-head.white .m-bm-menu {
  background: #fff;
}

.m-bm-head.white .m-bm-nav>li,
.m-bm-head.white .m-bm-nav>li .sec {
  border-color: rgba(51, 51, 51, 0.1);
}

.m-bm-head.white .m-bm-nav>li>a,
.m-bm-head.white .m-bm-nav .aniut i,
.m-bm-head.white .m-bm-nav>li .sec a,
.m-bm-head.white .mrhgxt {
  color: #000;
}

.ajhhsd {
  padding: 1.375rem 0;
  color: rgba(255, 255, 255, 0.8);
  font-family: Montserrat;
  font-size: 1rem;
  font-weight: 400;
}

.ajhhsd a {
  color: rgba(255, 255, 255, 0.8);
  font-family: Montserrat;
  font-size: 1rem;
  font-weight: 400;
}

.ajhhsd a:hover {
  color: #3B482C;
}

.ajhhsd span {
  padding: 0 0.3em;
}

.ajhhsd span:last-child {
  display: none;
}

.xw_ny_banner {
  background: #404040;
  -o-background-size: cover;
  background-size: cover;
  padding: 13.5rem 0 7.25rem;
}

.xw_ny_banner h2 {
  color: #FFFFFF;
  font: 600 3.125rem/1.2em;
}

@media (max-width: 990px) {
  .xw_ny_banner {
    padding: 7.25rem 0;
  }
}

@media (max-width: 768px) {
  .xw_ny_banner {
    padding: 4rem 0;
  }

  .xw_ny_banner h2 {
    font-size: 1.8rem;
  }
}

.ssy-sskaa {
  margin-bottom: 2rem;
}

.ssy-sskaa .searchsa form {
  width: 50%;
  border: 1px solid #999;
  padding: 0 1.5em;
  border-radius: 2rem;
  margin: 0 auto;
}

.ssy-sskaa .searchsa form input {
  width: 70%;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 4rem;
  background: transparent;
  color: #999;
}

.ssy-sskaa .searchsa form button {
  width: auto;
  outline: none;
  border: none;
  background: transparent;
}

.ssy-sskaa .searchsa form button i {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 4rem;
  color: #333;
}

@media (max-width: 768px) {
  .ssy-sskaa {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 767px) {
  .ssy-sskaa .searchsa form {
    width: 90%;
  }

  .pc_show_767 {
    display: none;
  }

  .phone_show_767 {
    display: block;
  }
}

@media (max-width: 768px) {
  .ssy-sskaa .searchsa form input {
    font-size: 1.125rem;
    line-height: 3rem;
  }
}

@media (max-width: 768px) {
  .ssy-sskaa .searchsa form button i {
    font-size: 1.35rem;
    line-height: 3rem;
  }
}

.sssjga {
  color: #333;
  font-weight: 200;
  font-size: 1.25rem;
  line-height: 1.5em;
  margin-bottom: 1em;
}

.ss-list li+li {
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .ss-list li+li {
    margin-top: 1rem;
  }
}

.ss-list li div.img {
  width: 25%;
}

.ss-list li div.img a.img {
  border-radius: 0.625rem;
  display: block;
  border: 1px solid #f2f2f2;
}

.ss-list li .xw-nycont {
  width: 72%;
}

.ss-list li .xw-nycont h2 a {
  display: block;
  color: #656363;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.35em;
  overflow: hidden;
  margin-bottom: 0.2em;
}

.ss-list li .xw-nycont:hover h2 a {
  color: #bac486;
}

.ss-list li .xw-nycont.w100 {
  width: 100%;
}

@media (max-width: 768px) {
  .ss-list li div.img {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .ss-list li .xw-nycont {
    width: 100%;
    margin-top: 1.2em;
  }
}

@media (max-width: 768px) {
  .ss-list li .xw-nycont h2 a {
    font-size: 1.125rem;
  }
}

.ss-list li .xw-nycont span {
  color: #3B482C;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5em;
}

.ss-list li .xw-nycont .datea {
  color: #999999;
  font-weight: 500;
  font-size: 0.95rem;
  line-height: 1.5em;
}

.ss-list li .xw-nycont .p {
  color: #999999;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5em;
  margin-top: 0.5em;
}

.ss-list li .xw-nycont a.more-msl {
  margin-top: 1em;
}

/* end */
.list_website ul li {
  padding: 1.875rem 0;
  border-bottom: 1px solid #ddd;
}

.list_website ul li:first-child {
  padding-top: 0;
}

.list_website ul li .top {
  font-size: 1.375rem;
  line-height: 1.875rem;
  margin-bottom: 0.625rem;
  font-weight: 600;
}

.list_website ul li .bot {
  font-size: 1rem;
  line-height: 1.875rem;
  color: #717171;
  margin-right: 1.25rem;
}

@media (max-width: 1600px) {

  body,
  html {
    font-size: calc(100vw / 120);
  }

  .container {
    padding: 0 var(--container);
  }
}

@media (max-width: 1440px) {

  body,
  html {
    font-size: calc(100vw / 100);
  }

  .container {
    padding: 0 var(--container);
  }
}

@media (max-width: 1366px) {

  body,
  html {
    font-size: calc(100vw / 100);
  }
}

@media (max-width: 1280px) {

  body,
  html {
    font-size: calc(100vw / 115);
  }
}

@media (max-width: 990px) {

  body,
  html {
    font-size: 14px;
  }

  .container {
    padding: 0 var(--container);
  }
}

@media (max-width: 767px) {
  .container {
    padding: 0 var(--container);
  }
}

.phone {
  line-height: 60px;
  padding: 0 30px;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.1);
  background: #000;
}

.phone.white {
  background: #fff;
}

.phone.white .left img {
  filter: brightness(0);
}

@media (max-width: 767px) {
  .phone {
    padding: 0 15px;
  }
}

.phone>.clearfix {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.phone.noLanuage .center {
  width: 60%;
  text-align: left;
  order: 1;
}

.phone.noLanuage .left {
  width: 40%;
  text-align: right;
  order: 2;
}

.phone.noLanuage .right {
  display: none;
}

.phone .left {
  width: 10%;
  text-align: right;
}

.phone .left img {
  height: 22px;
}

.phone .right {
  width: 10%;
  text-align: left;
}

.phone .right span {
  width: 1px;
  height: 10px;
  background: #1D1D1F;
  display: inline-block;
  margin: 0 5px;
  position: relative;
  top: 1px;
}

.phone .right a {
  font-weight: bold;
  font-size: 12px;
  color: #A7A7A8;
}

.phone .right a.c {
  color: #1D1D1F;
}

.phone .center {
  width: 80%;
  margin: 0 auto;
}

.phone .center img {
  height: 40px;
  width: 120px;
}

.sjj_nav {
  position: fixed;
  z-index: 9999;
  background: #1D1D1F;
  width: 100%;
  height: 100%;
  font-size: 14px;
  line-height: 40px;
  top: 0;
  left: -100%;
  overflow: auto;
  overflow-x: hidden;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}

.nav_show {
  left: 0;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}

.sjj_nav>ul>li:first-child {
  overflow: hidden;
  border-top: 0;
}

.sjj_nav>ul>li:first-child>a {
  width: 60%;
}

.sjj_nav>ul>li:first-child .language {
  width: 100%;
  overflow: hidden;
  line-height: 30px;
  margin-top: 15px;
  padding-right: 15px;
  margin-bottom: 15px;
}

.sjj_nav>ul>li:first-child .language a {
  width: 25%;
  float: left;
  border-left: 1px #ddd solid;
  text-align: center;
  color: #999;
  display: inline-block;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.sjj_nav>ul>li:first-child .language a.active {
  background: #3B482C;
  color: #fff !important;
}

.sjj_nav>ul>li:first-child .language a:last-child {
  border-right: 1px #ddd solid;
}

.sjj_nav ul li .sjj_nav_i_se svg {
  transform: rotate(0deg);
}

.sjj_nav ul li {
  position: relative;
  line-height: 40px;
  font-size: 14px;
}

.sjj_nav>ul>li:last-child {
  border-bottom: 1px #ddd solid;
}

.sjj_nav ul li ul {
  display: none;
}

.sjj_nav ul li i svg {
  width: 20px;
  height: 20px;
  fill: #555;
}

.sjj_nav ul li .sjj_nav_i_se svg {
  fill: #3B482C;
}

.sjj_nav ul li ul li>ul {
  margin-left: 10px;
}

.sjj_nav .top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  line-height: 60px;
  background: #1D1D1F;
}

.sjj_nav .top .ta img {
  height: 40px;
  filter: brightness(0) invert(0.8);
  width: 120px;
}

.sjj_nav .top .fr img {
  height: 22px;
}

.sjj_nav .bot {
  padding: 25px 40px 0;
  margin-top: 60px;
  height: calc(100% - 60px);
  overflow: scroll;
}

.sjj_nav .bot>li:first-child {
  margin-bottom: 34px;
}

.sjj_nav .bot>li:first-child input {
  padding-left: 28px;
  width: 100%;
  font-size: 14px;
  color: #a7a7a7;
  line-height: 35px;
  border: 1px solid #A7A7A8;
  background: transparent;
}

.sjj_nav .bot>li:first-child button {
  background: transparent;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 28px;
  height: 100%;
  border: none;
}

.sjj_nav .bot>li:first-child button .iconfont {
  position: static;
  text-align: center;
  color: #a7a7a7;
  font-size: 16px;
  padding: 0;
  border: none;
}

.sjj_nav .bot>li {
  font-size: 18px;
  line-height: 20px;
  color: #a7a7a7;
  border-bottom: none !important;
  margin-bottom: 30px;
}

.sjj_nav .bot>li>ul {
  padding-left: 1.25rem;
}

.sjj_nav .bot>li>div>a {
  width: calc(100% - 3.75rem);
}

.sjj_nav .bot>li>a {
  display: inline-block;
}

.sjj_nav .bot>li img {
  height: 30px;
}

.sjj_nav .bot>li .list .left {
  width: 100%;
  font-weight: bold;
  font-size: 16px;
  line-height: 40px;
  letter-spacing: 0.9px;
  color: #EBEBEC;
  float: left;
}

.sjj_nav .bot>li .list .left a {
  color: #EBEBEC;
}

.sjj_nav .bot>li .list .right.w100 {
  width: 100%;
  float: none;
  padding-bottom: 20px;
}

.sjj_nav .bot>li .list .right {
  width: 80%;
  float: right;
  font-size: 14px;
  color: #EBEBEC;
  line-height: 20px;
}

.sjj_nav .bot>li .list .right a {
  color: #EBEBEC;
  margin-bottom: 18px;
}

.sjj_nav .bot>li ul {
  margin-top: 20px;
}

.sjj_nav .bot>li>div {
  color: #a7a7a7;
  position: relative;
  padding-bottom: 8px;
  line-height: 1.875rem;
  display: flex;
  align-items: center;
}

.sjj_nav .bot>li>div>a {
  color: #a7a7a7;
}

.sjj_nav .bot>li>div .iconfont {
  width: 3.75rem;
  text-align: right;
  display: block;
  font-size: 1rem;
}

.sjj_nav .bot>li>a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  background: #a7a7a7;
}

.sjj_nav .bot>li:hover>a::before,
.sjj_nav .bot>li.active>a::before {
  width: 100%;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}

.sjj_nav .top .container {
  padding: 0 40px;
}

@media (max-width: 767px) {
  .sjj_nav .top .container {
    padding: 0 15px;
  }
}

.right_div.img {
  padding: 0.625rem !important;
  background-color: #fff;
  min-width: 8.5rem !important;
}

.right_div.img img {
  height: 100% !important;
  object-fit: contain;
}

.rightfix {
  bottom: 20%;
  top: auto;
  transform: translateY(0);
  right: 1.25rem;
  width: auto;
  box-shadow: none;
  border: none;
  background: transparent;
}

.rightfix li {
  cursor: pointer;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 0;
  line-height: 3.25rem;
  padding: 0;
  border: none;
  background: transparent;
  margin-bottom: 0.875rem;
  position: relative;
  border: none !important;
}

.rightfix li .iconfont {
  width: 100%;
  height: 100%;
  background: #1aad19;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rightfix li svg {
  width: 1.5rem;
  height: 1.5rem;
  display: block;
}

.rightfix li:hover .iconfont {
  background: #3B482C;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}

.rightfix li::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 1px;
  background: #DEDDDD;
  width: 1.1875rem;
}

.rightfix li:last-child::before {
  display: none;
}

.rightfix li::before {
  display: none;
}

.fixright_li_last {
  display: none;
}

.right_div.right_tel {
  min-width: 11rem;
  height: 3.25rem;
  line-height: 1.5;
  right: 3.75rem;
  color: #fff;
  font-weight: 600;
  background-color: #3B482C;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fix_ul li:hover .right_div {
  right: 3.75rem;
}

@-webkit-keyframes sticky {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }

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

@-moz-keyframes sticky {
  0% {
    -moz-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  100% {
    -moz-transform: translateY(0%);
    transform: translateY(0%);
  }
}

@-o-keyframes sticky {
  0% {
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  100% {
    -o-transform: translateY(0%);
    transform: translateY(0%);
  }
}

@keyframes sticky {
  0% {
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  100% {
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -o-transform: translateY(0%);
    transform: translateY(0%);
  }
}

@-webkit-keyframes banscaleDraw {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  25% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }

  75% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@-moz-keyframes banscaleDraw {

  /*定义关键帧、scaleDrew是需要绑定到选择器的关键帧名称*/
  0% {
    -moz-transform: scale(1);
    transform: scale(1);
    /*开始为原始大小*/
  }

  25% {
    -moz-transform: scale(1.1);
    transform: scale(1.1);
    /*放大1.1倍*/
  }

  50% {
    -moz-transform: scale(1.2);
    transform: scale(1.2);
  }

  75% {
    -moz-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    -moz-transform: scale(1);
    transform: scale(1);
  }
}

@-o-keyframes banscaleDraw {

  /*定义关键帧、scaleDrew是需要绑定到选择器的关键帧名称*/
  0% {
    -o-transform: scale(1);
    transform: scale(1);
    /*开始为原始大小*/
  }

  25% {
    -o-transform: scale(1.1);
    transform: scale(1.1);
    /*放大1.1倍*/
  }

  50% {
    -o-transform: scale(1.2);
    transform: scale(1.2);
  }

  75% {
    -o-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    -o-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes banscaleDraw {

  /*定义关键帧、scaleDrew是需要绑定到选择器的关键帧名称*/
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    /*开始为原始大小*/
  }

  25% {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
    /*放大1.1倍*/
  }

  50% {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
  }

  75% {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
  }

  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}

.swiper-pagination {
  display: flex;
}

.swiper-button-next,
.swiper-button-prev {
  width: 3.125rem;
  height: 3.125rem;
  flex-shrink: 0;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #4C4C4C;
  line-height: 3.125rem;
  text-align: center;
}

.swiper-button-next i,
.swiper-button-prev i {
  color: #4C4C4C;
  font-size: 1.25rem;
}

.swiper-button-prev,
.swiper-button-next {
  width: 3.4375rem;
  height: 3.4375rem;
  line-height: 3.4375rem;
  background: #BAC486;
  border: none;
}

.swiper-button-prev i,
.swiper-button-next i {
  color: #fff;
  font-size: 1.25rem;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  left: -6.25rem;
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  right: -6.25rem;
}

.banner {
  position: relative;
}

.banner .img {
  position: relative;
}

.banner .hover {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 2;
}

.banner .hover .p1 {
  color: #FFF;
  text-shadow: 0 0.25rem 0.25rem rgba(0, 0, 0, 0.25);
  font-family: Montserrat;
  font-size: 2.5rem;
  font-weight: 600;
}

.banner .hover .p2 {
  margin-top: 1.5rem;
  color: #FFF;
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2.1875rem;
}

.banner .hover .p2 ul li {
  position: relative;
  padding-left: 1.875rem;
}

.banner .hover .p2 ul li::before {
  content: '';
  display: block;
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  left: 0.625rem;
  top: 1rem;
}

.banner .swiper-pagination {
  justify-content: center;
  bottom: 3.75rem;
}

.banner .swiper-pagination-bullet {
  width: 2.1875rem;
  height: 2.1875rem;
  opacity: 1;
  background: unset;
  position: relative;
}

.banner .swiper-pagination-bullet::before {
  content: '';
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.6);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.banner .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: unset;
  border: unset;
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.banner .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  background-color: #fff;
}

.banner .swiper-slide.swiper-slide-active .img img {
  -webkit-animation-name: banscaleDraw;
  -webkit-animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-duration: 20s;
}

.banner .swiper-pagination {
  display: flex;
}

.banner .scroll {
  position: absolute;
  left: 50%;
  bottom: 3.4375rem;
  transform: translateX(-50%);
  z-index: 9;
}

.banner .scroll .i {
  width: 0.125rem;
  height: 1.875rem;
  background-color: rgba(255, 255, 255, 0.3);
  margin: 0 auto;
}

.banner .scroll .i i {
  animation: xiangxia 2s infinite;
  width: 0.125rem;
  height: 0.4375rem;
  background-color: #fff;
  display: inline-block;
}

.banner .scroll span {
  margin-top: 1.125rem;
  color: #FFF;
  text-align: center;
  font-family: Montserrat;
  font-size: 0.875rem;
  font-weight: 600;
}

.banner .swiper-button-next {
  right: 6.25rem;
}

.banner .swiper-button-prev {
  left: 6.25rem;
}

.banner .swiper-button-next,
.banner .swiper-button-prev {
  border: none;
  background-color: unset;
}

.banner .swiper-button-next svg,
.banner .swiper-button-prev svg {
  width: 1.3954rem;
  height: 2.7908rem;
}

@keyframes xiangxia {
  0% {
    transform: translateY(-0.625rem);
  }

  50% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(0.625rem);
  }
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.neibanner {
  position: relative;
}

.neibanner .neibanner_txt {
  position: absolute;
  top: 50%;
  transform: translateX(-50%);
}

.neibanner .neibanner_txt h3 {
  color: #fff;
}

.neibanner .neibanner_txt p {
  color: #fff;
}

.neibanner .mbxdh {
  position: absolute;
  bottom: 1.875rem;
}

.search-container {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 99999999;
  top: 0;
  left: 0;
  display: none;
}

.search-box {
  display: none;
  width: 40%;
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 0.625rem;
  box-shadow: 0 0.125rem 0.625rem rgba(0, 0, 0, 0.1);
}

.search-box input[type="text"] {
  padding: 1.5625rem;
  border: unset;
  border-radius: 1.25rem;
  width: 100%;
  outline: none;
}

.search-box button {
  background: unset;
  color: #999;
  border: none;
  cursor: pointer;
  position: absolute;
  right: 1.875rem;
  top: 1.4375rem;
}

.search-box button i {
  font-size: 1.25rem;
  color: #000;
  font-weight: 700;
}

.show_header {
  padding-top: var(--header_h);
}

.show_header header {
  animation: none !important;
}

header.active.hide {
  top: -6.25rem;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}

.show_header header,
header.active,
header:hover,
header.white {
  background: #fff;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  --color1: #4B4B4B;
}

.show_header header .top_box .ds1,
header.active .top_box .ds1,
header:hover .top_box .ds1,
header.white .top_box .ds1 {
  cursor: pointer;
}

.show_header header .top_box .ds1>img,
header.active .top_box .ds1>img,
header:hover .top_box .ds1>img,
header.white .top_box .ds1>img {
  filter: brightness(1) invert(0);
}

.show_header header .center>ul>li:hover>a,
header.active .center>ul>li:hover>a,
header:hover .center>ul>li:hover>a,
header.white .center>ul>li:hover>a,
.show_header header .center>ul>li.active>a,
header.active .center>ul>li.active>a,
header:hover .center>ul>li.active>a,
header.white .center>ul>li.active>a {
  color: #3B482C;
}

.show_header header .center>ul>li:hover>a::before,
header.active .center>ul>li:hover>a::before,
header:hover .center>ul>li:hover>a::before,
header.white .center>ul>li:hover>a::before,
.show_header header .center>ul>li.active>a::before,
header.active .center>ul>li.active>a::before,
header:hover .center>ul>li.active>a::before,
header.white .center>ul>li.active>a::before {
  background: #3B482C;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 1000;
  --color1: #fff;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}

header:hover,
header.active {
  box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.04);
}

@media (max-width: 990px) {
  header {
    display: none;
  }
}

header .flex_start {
  align-items: auto;
}

header .logo {
  padding: 0.5rem 0 0.5625rem;
}

header .logo img {
  height: 8.9375rem;
}

header .pc_menu {
  margin-right: 0 !important;
}

header .left {
  width: 65%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

header .top_box {
  line-height: 2.625rem;
  position: relative;
}

header .top_box::before {
  content: '';
  width: 60vw;
  height: 1px;
  background: #D7D7D7;
  position: absolute;
  bottom: 0;
  left: 0;
}

header .top_box .email {
  color: #4B4B4B;
  font-family: Montserrat;
  font-size: 1rem;
  font-weight: 500;
}

header .top_box .email img {
  width: 1.375rem;
  height: 1.375rem;
  margin-right: 0.5625rem;
}

header .top_box .ds1:not(:last-child) {
  margin-right: 1.5rem;
}

header .top_box .ds1>img {
  height: 1.375rem;
  cursor: pointer;
}

header .top_box .lanuage {
  position: relative;
  margin: 0 2.5rem 0 1.5625rem;
}

header .top_box .lanuage::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -1.5625rem;
  width: 1.5px;
  height: 0.75rem;
  background: rgba(75, 75, 75, 0.5);
}

header .top_box .lanuage>div {
  display: flex;
  align-items: center;
  color: #4B4B4B;
  font-family: Montserrat;
  font-size: 1rem;
  font-weight: 500;
}

header .top_box .lanuage>div img {
  margin-right: 0.4375rem;
}

header .top_box .lanuage:hover ul {
  transform: scaleY(1);
  opacity: 1;
}

header .top_box .lanuage ul {
  position: absolute;
  top: 100%;
  left: 0;
  width: 5rem;
  text-align: center;
  padding: 0.75rem 0;
  background: #fff;
  transition: 400ms ease-in-out;
  transform: scaleY(0);
  transform-origin: top center;
  opacity: 0;
}

header .top_box .lanuage ul li {
  line-height: 1.5rem;
}

header .top_box .lanuage ul li a {
  color: #3c3c3c;
}

header .top_box .lanuage ul li:hover a {
  color: #3B482C;
}

header .center {
  flex: 1;
}

header .center>ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header .center>ul>li {
  padding: 0 1.5625rem;
}

header .center>ul>li>a {
  color: #3B482C;
  text-align: center;
  font-family: Montserrat;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 7.375rem;
  position: relative;
}

header .center>ul>li:not(:nth-last-child(1)) a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #3B482C;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}

header .center>ul>li:hover>a,
header .center>ul>li.active>a {
  color: #3B482C;
}

header .center>ul>li:hover>a::before,
header .center>ul>li.active>a::before {
  width: 100%;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}

header .center>ul>li:nth-last-child(1)>a {
  border-radius: 3.75rem;
  background: #3A482A;
  min-width: 8.75rem;
  height: 2.8125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF !important;
  text-align: center;
  font-family: Montserrat;
  font-size: 1rem;
  font-weight: 600;
  padding: 0 0.625rem;
}

.neibanner {
  margin-top: 10rem;
  position: relative;
}

.neibanner .neibanner_txt {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.neibanner .neibanner_txt h3 {
  color: #FFF;
  font-family: Montserrat;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.5;
  /* 75% */
  text-transform: uppercase;
}

.neibanner .neibanner_txt p {
  color: #fff;
}

.neibanner .bimg {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  font-size: 0;
}

.neibanner .mbx {
  color: #FFF;
  font-family: Montserrat;
  font-size: 1rem;
  font-weight: 400;
}

.neibanner .mbx a {
  color: #FFF;
  font-family: Montserrat;
  font-size: 1rem;
  font-weight: 400;
}

footer {
  background: #404040;
  padding-top: 5.9375rem;
}

footer .foot_top {
  display: flex;
  justify-content: space-between;
  padding-bottom: 5.625rem;
}

footer .foot_top .left {
  width: 55%;
  display: flex;
  justify-content: space-between;
  padding-right: 3.125rem;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

footer .foot_top .left .foot_box .tit {
  color: #BAC486;
  font-family: Montserrat;
  font-size: 1.25rem;
  font-weight: 600;
}

footer .foot_top .left .foot_box .footnav {
  margin-top: 0.4375rem;
}

footer .foot_top .left .foot_box .footnav>li {
  width: 11.875rem;
  margin-bottom: 0.5rem;
}

footer .foot_top .left .foot_box .footnav>li a {
  color: rgba(255, 255, 255, 0.8);
  font-family: Montserrat;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  /* 187.5% */
}

footer .foot_top .left .foot_box .footnav>li:hover a {
  color: #bac486;
}

footer .foot_top .left .foot_box .contact_box {
  margin-top: 0.625rem;
}

footer .foot_top .left .foot_box .contact_box .contact_item {
  display: flex;
  align-items: center;
}

footer .foot_top .left .foot_box .contact_box .contact_item .icon {
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0.375rem;
}

footer .foot_top .left .foot_box .contact_box .contact_item .icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

footer .foot_top .left .foot_box .contact_box .contact_item .tt {
  color: rgba(255, 255, 255, 0.8);
  font-family: Montserrat;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875rem;
}

footer .foot_top .right {
  width: 45%;
  padding-left: 3rem;
  position: relative;
}

footer .foot_top .right .tit {
  color: #BAC486;
  font-family: Montserrat;
  font-size: 1.625rem;
  font-weight: 600;
  line-height: 2.1875rem;
}

footer .foot_top .right ul {
  margin-bottom: 1.25rem;
}

footer .foot_top .right ul li {
  color: #FFF;
  font-family: Montserrat;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875rem;
}

footer .foot_top .right ul li:hover {
  color: #bac486;
}

footer .foot_top .right #threeContainer {
  width: min(22.25rem, 100%);
  aspect-ratio: 1 / 1;
  height: auto;
  position: absolute;
  top: 0;
  right: 0;
}

footer .foot_top .right #threeContainer canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

footer .foot_top .right #threeContainer .globe-marker {
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #c6d877;
  box-shadow: 0 0 0 0.25rem rgba(198, 216, 119, 0.3), 0 0 0.75rem 0.3rem rgba(198, 216, 119, 0.3);
}

footer .copyright {
  padding: 1.3125rem 0 1.875rem;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  color: #FFF;
  text-align: center;
  font-family: Montserrat;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 2.1875rem;
}

footer .copyright a {
  color: #FFF;
  text-align: center;
  font-family: Montserrat;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 2.1875rem;
}

footer .copyright .left a {
  color: #FFF;
  font-family: Montserrat;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 2.1875rem;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

footer .copyright .right .social-share {
  margin-left: 1.375rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

footer .copyright .right .social-share .social-share-icon {
  width: 1rem;
  height: 1rem;
  line-height: 1rem;
  border: none;
  color: #fff;
  font-size: 1rem;
  background: unset;
}

.bgimg {
  background-image: url(https://cloud-1251007531.bcdn8.com/kusagj0807/uploads/2026/08/20260811034321757.jpg);
  background-size: 100% auto;
}

.all_title h3 {
  color: #363636;
  font-family: Montserrat;
  font-size: 2.5rem;
  font-weight: 600;
}

.ptb {
  padding: 7.5rem 0;
}

.pt0 {
  padding-top: 0;
}

.pb0 {
  padding-bottom: 0;
}

.list_contact_one .left {
  padding-right: 3.125rem;
}

.list_contact_one .left ul li {
  display: flex;
  align-items: center;
}

.list_contact_one .left ul li:not(:nth-last-child(1)) {
  margin-bottom: 1.0625rem;
}

.list_contact_one .left ul li .icon {
  width: 3.4375rem;
  height: 3.4375rem;
  border-radius: 50%;
  background-color: #3B482C;
  box-shadow: 0 0.3125rem 1.875rem rgba(25, 72, 160, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}

.list_contact_one .left ul li .icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.list_contact_one .left ul li .tt {
  flex: 1;
  padding-left: 1.25rem;
  color: #6D6D6D;
  font-family: Montserrat;
  font-size: 1.125rem;
  font-weight: 400;
}

.list_contact_one .left .desc {
  color: #6D6D6D;
  font-family: Montserrat;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.875rem;
}

.list_contact_one .right {
  padding-left: 1.25rem;
}

.list_contact_one .right .desc {
  margin-top: 0.75rem;
  color: #6D6D6D;
  font-family: Montserrat;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.875rem;
}

.list_contact_one .right .contact {
  margin-top: 0.75rem;
}

.list_contact_one .right .contact .msg-a1 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem 1.5rem;
}

.list_contact_one .right .contact .msg-a1 .inpt p {
  color: #6B6B6B;
  font-family: Montserrat;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875rem;
}

.list_contact_one .right .contact .msg-a1 .inpt p span {
  color: #F00;
}

.list_contact_one .right .contact .msg-a1 .inpt input {
  margin-top: 0.75rem;
  width: 100%;
  height: 3.4375rem;
  border-radius: 0.3125rem;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: #FFF;
  padding: 0 1.5rem;
  color: #6B6B6B;
  font-family: Montserrat;
  font-size: 1rem;
  font-weight: 500;
}

.list_contact_one .right .contact .msg-a1 .inpt input::placeholder {
  color: #C2C2C2;
  font-family: Montserrat;
  font-size: 1rem;
  font-weight: 500;
}

.list_contact_one .right .contact .msg-a3 {
  margin-top: 1.5rem;
}

.list_contact_one .right .contact .msg-a3 .inpt p {
  color: #6B6B6B;
  font-family: Montserrat;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875rem;
}

.list_contact_one .right .contact .msg-a3 .inpt p span {
  color: #F00;
}

.list_contact_one .right .contact .msg-a3 .inpt textarea {
  margin-top: 0.75rem;
  width: 100%;
  border-radius: 0.3125rem;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: #FFF;
  padding: 1.0625rem 1.5rem;
  color: #6B6B6B;
  font-family: Montserrat;
  font-size: 1rem;
  font-weight: 500;
  height: 9.375rem;
  overflow: hidden;
}

.list_contact_one .right .contact .msg-a3 .inpt textarea::placeholder {
  color: #C2C2C2;
  font-family: Montserrat;
  font-size: 1rem;
  font-weight: 500;
  height: 9.375rem;
}

.list_contact_one .right .contact .wpcf7-list-item-label {
  color: #6B6B6B;
  font-family: Montserrat;
  font-size: 1rem;
  font-weight: 500;
}

.list_contact_one .right .contact .div_aghgha {
  margin-top: 1.875rem !important;
  color: #FFF;
  text-align: center;
  font-family: Montserrat;
  font-size: 1rem;
  font-weight: 500;
  display: flex;
  justify-content: end;
}

.list_contact_one .right .contact .div_aghgha .wpcf7-spinner {
  display: none;
}

.list_contact_one .right .contact .div_aghgha input {
  width: 11.25rem;
  height: 3.4375rem;
  border-radius: 0.1875rem;
  background: #3B482C;
  color: #FFF;
  text-align: center;
  font-family: Montserrat;
  font-size: 1rem;
  font-weight: 500;
}

.list_contact_two {
  padding-bottom: 7.0625rem;
}

.list_contact_two #map {
  height: 37.5rem;
}

.list_news {
  position: relative;
}

.list_news .left {
  padding-right: 2.5rem;
}

.list_news .left .grid_box .grid_item a {
  display: flex;
  align-items: center;
  padding: 2rem 0 2.0625rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.list_news .left .grid_box .grid_item a .over {
  width: 15.8125rem;
}

.list_news .left .grid_box .grid_item a .over img {
  aspect-ratio: 253/198;
  object-fit: cover;
}

.list_news .left .grid_box .grid_item a .text {
  flex: 1;
  padding-left: 2.25rem;
}

.list_news .left .grid_box .grid_item a .text .tt {
  color: #282828;
  font-family: Montserrat;
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 2.1875rem;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}

.list_news .left .grid_box .grid_item a .text .dd {
  margin-top: 1.1875rem;
  color: #4C4C4C;
  font-family: Montserrat;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875rem;
}

.list_news .left .grid_box .grid_item a .text .more {
  margin-top: 1.25rem;
  color: #323232;
  font-family: Montserrat;
  font-size: 1rem;
  font-weight: 500;
}

.list_news .left .grid_box .grid_item a .text .more span {
  border-bottom: 1px solid #323232;
}

.list_news .left .grid_box .grid_item a .text .more i {
  color: #323232;
  font-size: 0.75rem;
  font-weight: 600;
}

.list_news .left .grid_box .grid_item:hover a .text .tt {
  color: #bac486;
}

.list_news .right {
  position: sticky;
  top: 10rem;
  height: 100%;
  padding-left: 0;
}

.list_news .right .title {
  color: #363636;
  font-family: Montserrat;
  font-size: 1.875rem;
  font-weight: 500;
}

.list_news .right ul li {
  margin-bottom: 1.125rem;
}

.list_news .right ul li a {
  padding: 0.375rem 0.4375rem;
  background-color: #fff;
  display: flex;
  align-items: center;
}

.list_news .right ul li a .over {
  width: 8.125rem;
  border: 1px solid #E3E3E3;
}

.list_news .right ul li a .over img {
  object-fit: contain;
  aspect-ratio: 130/84;
}

.list_news .right ul li a .tt {
  flex: 1;
  padding-left: 1.25rem;
  color: #282828;
  font-family: Montserrat;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.625rem;
}

.list_news .right .grid_box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.125rem;
}

.list_news .right .grid_box .grid_item .over {
  border-radius: 0.3125rem;
}

.list_news.show_news .left .news_top .title {
  color: #282828;
  font-family: Montserrat;
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 2.1875rem;
}

.list_news.show_news .left .news_top .flex_box {
  justify-content: unset;
  gap: 1.625rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.list_news.show_news .left .news_top .flex_box .sub_box {
  color: #7C7C7C;
  font-family: Montserrat;
  font-size: 1rem;
  font-weight: 400;
}

.list_news.show_news .left .news_top .flex_box .sub_box svg {
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0.6875rem;
}

.list_news.show_news .left .news_content {
  color: #4C4C4C;
  font-family: Montserrat;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  /* 确保父容器相对定位 */
  /* 侧边放大预览框 */
  /* 给主图增加十字准星鼠标样式 */
  /* 移动端 (屏幕小于 768px) 自动隐藏侧边放大镜，因为移动端没有 hover 事件 */
}

.list_news.show_news .left .news_content .swiper_moreimg {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  padding-bottom: 2.5rem;
}

.list_news.show_news .left .news_content .swiper_moreimg .swiper-pagination {
  justify-content: center;
}

.list_news.show_news .left .news_content .swiper-zoom-container {
  position: relative;
  width: 60%;
  /* 根据你的实际容器宽度调整 */
}

.list_news.show_news .left .news_content .zoom-preview-box {
  position: absolute;
  top: 0;
  left: 105%;
  /* 出现在主图的右侧 */
  width: 22rem;
  /* 放大镜框的宽度 */
  height: 22rem;
  /* 放大镜框的高度 */
  background-color: #fff;
  background-repeat: no-repeat;
  border: 1px solid #ddd;
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
  z-index: 999;
  display: none;
  /* 默认隐藏 */
  pointer-events: none;
  /* 防止鼠标移入预览框导致闪烁 */
}

.list_news.show_news .left .news_content .zoom-img {
  cursor: crosshair;
}

@media (max-width: 768px) {
  .list_news.show_news .left .news_content .zoom-preview-box {
    display: none !important;
  }
}

.list_news.show_news .left .gotoback {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #6D6D6D;
  font-family: Montserrat;
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 2.1875rem;
}

.list_news.show_news .left .gotoback .i {
  width: 2.9375rem;
  height: 2.9375rem;
  border-radius: 50%;
  background-color: #3B482C;
  margin-right: 1.4375rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.list_news.show_news .left .gotoback .i i {
  font-size: 1.125rem;
  color: #fff;
}

.list_news.show_product {
  color: #4C4C4C;
  font-family: Montserrat;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875rem;
}

.list_news.show_product .title {
  color: #282828;
  font-family: Montserrat;
  font-size: 1.625rem;
  font-weight: 600;
  line-height: 2.1875rem;
}

.list_news.show_product .table_box {
  margin-top: 2.1875rem;
  overflow-x: auto;
}

.list_news.show_product .table_box table {
  width: 100%;
}

.list_news.show_product .table_box table thead tr {
  background: #3B482C;
}

.list_news.show_product .table_box table thead tr th {
  border: 1px solid #fff;
  color: #FFF;
  text-align: center;
  font-family: Montserrat;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
  padding: 0.75rem;
  white-space: nowrap;
}

.list_news.show_product .table_box table tbody tr td {
  background-color: #fff;
  border: 1px solid #c8c8c8;
  text-align: center;
  padding: 0.75rem !important;
  color: #4C4C4C;
  font-family: Montserrat;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
}

.list_project .grid_box .grid_item a {
  display: flex;
  align-items: center;
  padding: 1.875rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.list_project .grid_box .grid_item a .over {
  width: 20.25rem;
  border-radius: 0.625rem;
}

.list_project .grid_box .grid_item a .over img {
  aspect-ratio: 324/190;
  object-fit: cover;
}

.list_project .grid_box .grid_item a .text {
  flex: 1;
  padding-left: 2.5rem;
}

.list_project .grid_box .grid_item a .text .time {
  display: flex;
  align-items: center;
  color: #6B6B6B;
  font-family: Montserrat;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875rem;
}

.list_project .grid_box .grid_item a .text .time svg {
  width: 1.75rem;
  height: 1.6875rem;
  margin-right: 0.625rem;
}

.list_project .grid_box .grid_item a .text .tt {
  margin-top: 0.8125rem;
  color: #282828;
  font-family: Montserrat;
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 2.1875rem;
}

.list_project .grid_box .grid_item a .text .dd {
  margin-top: 0.5625rem;
  color: #4C4C4C;
  font-family: Montserrat;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875rem;
}

.list_project .grid_box .grid_item a .text .more {
  margin-top: 1.0625rem;
  color: #323232;
  font-family: Montserrat;
  font-size: 1rem;
  font-weight: 500;
}

.list_project .grid_box .grid_item a .text .more span {
  border-bottom: 1px solid #323232;
}

.list_project .grid_box .grid_item a .text .more i {
  color: #323232;
  font-size: 0.75rem;
  font-weight: 600;
}

.list_project .grid_box .grid_item a:hover .text .tt {
  color: #bac486;
}

.list_product {
  padding: 7.5rem 0 9.375rem;
}

.list_product .left ul {
  position: relative;
}

.list_product .left ul::before {
  content: '';
  display: block;
  width: 0.375rem;
  height: 100%;
  background: #D2D2D2;
  position: absolute;
  left: 0;
  top: 0;
}

.list_product .left ul>li>a {
  color: #3C3C3C;
  font-family: Montserrat;
  font-size: 1rem;
  font-weight: 600;
  line-height: 3.4375rem;
  padding-left: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  position: relative;
}

.list_product .left ul>li>a::before {
  content: '';
  display: block;
  width: 0.375rem;
  height: 0%;
  background-color: #3B482C;
  position: absolute;
  left: 0;
  top: 0;
}

.list_product .left ul>li.one:nth-child(1)>a {
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}

.list_product .left ul>li .product-subcategories {
  display: none;
}

.list_product .left ul>li .product-subcategories li a {
  position: relative;
  padding-left: 2.5rem;
  color: #3C3C3C;
  font-family: Montserrat;
  font-size: 1rem;
  font-weight: 400;
  line-height: 3.4375rem;
}

.list_product .left ul>li .product-subcategories li a::before {
  content: '';
  display: block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: #3C3C3C;
  position: absolute;
  top: 1.625rem;
  left: 1.625rem;
}

.list_product .left ul>li .product-subcategories li:hover>a,
.list_product .left ul>li .product-subcategories li.active>a {
  color: #bac486;
  background-color: unset;
}

.list_product .left ul>li .product-subcategories li:hover>a::before,
.list_product .left ul>li .product-subcategories li.active>a::before {
  background-color: #bac486;
}

.list_product .left ul>li .product-subcategories li.active>a i {
  transform: rotate(90deg);
}

.list_product .left ul>li .product-subcategories li.active .product-third-categories {
  display: block;
}

.list_product .left ul>li .product-third-categories {
  display: none;
}

.list_product .left ul>li .product-third-categories li a {
  padding-left: 4.875rem;
}

.list_product .left ul>li .product-third-categories li a::before {
  left: 4rem;
}

.list_product .left ul>li.active>a {
  background-color: #fff;
}

.list_product .left ul>li.active>a::before {
  height: 100%;
}

.list_product .left ul>li.active .product-subcategories {
  display: block;
}

.list_product .right {
  padding-left: 3.125rem;
}

.list_product .right .grid_box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.875rem;
}

.list_product .right .grid_box .grid_item {
  overflow: hidden;
  border-radius: 0.625rem;
  background: #FFF;
  box-shadow: 0 0.3125rem 1.875rem 0.3125rem rgba(25, 72, 160, 0.05);
}

.list_product .right .grid_box .grid_item a {
  padding: 0.75rem 1.875rem 2.5rem;
}

.list_product .right .grid_box .grid_item a .over img {
  aspect-ratio: 292/190;
  object-fit: contain;
}

.list_product .right .grid_box .grid_item a .text {
  margin-top: 1.875rem;
}

.list_product .right .grid_box .grid_item a .text .tit {
  color: #282828;
  text-align: center;
  font-family: Montserrat;
  font-size: 1.125rem;
  font-weight: 500;
  min-height: 3.25rem;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}

.list_product .right .grid_box .grid_item a .text .desc {
  margin-top: 0.75rem;
  color: #6B6B6B;
  text-align: center;
  font-family: Montserrat;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.375rem;
}

.list_product .right .grid_box .grid_item a .text .more {
  margin-top: 1.125rem;
  color: #323232;
  font-family: Montserrat;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
}

.list_product .right .grid_box .grid_item a .text .more span {
  border-bottom: 1px solid #323232;
}

.list_product .right .grid_box .grid_item a .text .more i {
  color: #323232;
  font-size: 0.75rem;
  font-weight: 600;
}

.list_product .right .grid_box .grid_item a:hover .text .tit {
  color: #bac486;
}

.list_xgpro {
  padding-top: 7.5rem;
}

.list_xgpro .swiper_xgpro {
  position: relative;
  overflow: hidden;
  margin: -0.875rem;
}

.list_xgpro .swiper_xgpro .swiper-slide {
  padding: 0.875rem;
}

.list_xgpro .swiper_xgpro .xgpro_box {
  overflow: hidden;
  border-radius: 0.625rem;
  background: #FFF;
  box-shadow: 0 0.3125rem 0.9375rem 0.3125rem rgba(25, 72, 160, 0.05);
}

.list_xgpro .swiper_xgpro .xgpro_box a {
  padding: 0.75rem 1rem 2.5rem;
}

.list_xgpro .swiper_xgpro .xgpro_box a .over img {
  aspect-ratio: 292/190;
  object-fit: contain;
}

.list_xgpro .swiper_xgpro .xgpro_box a .text {
  margin-top: 1.875rem;
}

.list_xgpro .swiper_xgpro .xgpro_box a .text .tit {
  color: #282828;
  text-align: center;
  font-family: Montserrat;
  font-size: 1.125rem;
  font-weight: 500;
}

.list_xgpro .swiper_xgpro .xgpro_box a .text .desc {
  margin-top: 0.75rem;
  color: #6B6B6B;
  text-align: center;
  font-family: Montserrat;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.375rem;
  min-height: 3rem;
}

.list_xgpro .swiper_xgpro .xgpro_box a .text .more {
  margin-top: 1.125rem;
  color: #323232;
  font-family: Montserrat;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
}

.list_xgpro .swiper_xgpro .xgpro_box a .text .more span {
  border-bottom: 1px solid #323232;
}

.list_xgpro .swiper_xgpro .xgpro_box a .text .more i {
  color: #323232;
  font-size: 0.75rem;
  font-weight: 600;
}

.list_about_one {
  padding: 6.25rem 0;
}

.list_about_one .left .desc {
  color: #6D6D6D;
  font-family: Montserrat;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875rem;
}

.list_about_one .right .over {
  border-radius: 0.625rem;
}

.list_about_two {
  padding: 5.9375rem 0 3.875rem;
}

.list_about_two .desc {
  color: #6D6D6D;
  font-family: Montserrat;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875rem;
}

.list_about_two .content {
  position: relative;
}

.list_about_two .content .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20.3125rem;
  height: 20.3125rem;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2.1875rem solid #3B482C;
}

.list_about_two .content .icon img {
  width: 35%;
}

.list_about_two .content .grid_box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4.25rem 6.0625rem;
}

.list_about_two .content .grid_box .grid_item {
  padding-top: 2.5rem;
  padding-bottom: 2.75rem;
}

.list_about_two .content .grid_box .grid_item .tt {
  color: #FFF;
  font-family: Montserrat;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.875rem;
  /* 166.667% */
}

.list_about_two .content .grid_box .grid_item .dd {
  color: #FFF;
  font-family: Montserrat;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875rem;
}

.list_about_two .content .grid_box .grid_item:nth-child(1) {
  border-radius: 0 1.875rem;
  background: rgba(79, 90, 66, 0.7);
  padding-left: 2.6875rem;
  padding-right: 9.1875rem;
}

.list_about_two .content .grid_box .grid_item:nth-child(2) {
  border-radius: 1.875rem 0;
  background: #BAC486;
  padding-left: 9.1875rem;
  padding-right: 2.6875rem;
}

.list_about_two .content .grid_box .grid_item:nth-child(3) {
  border-radius: 1.875rem 0;
  background: #BAC486;
  padding-left: 2.6875rem;
  padding-right: 9.1875rem;
}

.list_about_two .content .grid_box .grid_item:nth-child(4) {
  border-radius: 0 1.875rem;
  background: rgba(79, 90, 66, 0.7);
  padding-left: 9.1875rem;
  padding-right: 2.6875rem;
}

.list_about_four {
  padding: 6.25rem 0;
}

.list_about_four .grid_box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 2.375rem;
}

.list_about_four .grid_box .grid_item .icon {
  width: 5.375rem;
  height: 5.375rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.list_about_four .grid_box .grid_item .icon img {
  width: 100%;
}

.list_about_four .grid_box .grid_item .tt {
  flex: 1;
  padding-left: 1.25rem;
  color: #282828;
  font-family: Montserrat;
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 2.1875rem;
}

.list_about_four .grid_box .grid_item .dd {
  margin-top: 0.9375rem;
  color: #6B6B6B;
  font-family: Montserrat;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875rem;
}

/* 发展历程效果-start */
.about-history h2 {
  margin-bottom: 3.125rem;
}

.ys-event2-cry {
  width: 100%;
  position: relative;
}

.ys-event2-cont .ys-cont1400 {
  position: relative;
}

.ys-event2-cont-list {
  position: initial;
  height: 37.8125rem;
  margin-left: 20.625rem;
}

.ys-event2-cont-list .slick-list {
  overflow: visible;
}

.yecl-li,
.ys-event2-cont-list .slick-list,
.ys-event2-cont-list .slick-track {
  height: 100%;
}

.yecl-li {
  width: 10.625rem;
  transition: all 0.5s;
  position: relative;
}

.yecl-li,
.ys-event2-cont-list .slick-list,
.ys-event2-cont-list .slick-track {
  height: 100%;
}

.yecl-li.slick-slide.prev1 {
  transform: translateX(-10rem);
}

.yecl-li.slick-slide.next1 {
  transform: translateX(25.75rem);
}

.yecl-li-cry {
  display: flex;
  height: 100%;
}

.yecl-li-cry-left {
  width: 0;
  position: absolute;
  right: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding-bottom: 6.875rem;
}

.yecl-li.slick-active .ylcl-circle {
  background: #3B482C;
}

.yecl-li.slick-active .yecl-li-cry-left::after {
  background: #3A482A;
}

.ylcl-circle {
  position: absolute;
  width: 1.125rem;
  height: 1.125rem;
  border-radius: 50%;
  border: 0.125rem solid #3B482C;
  background: #fff;
  transition: all 0.36s;
  left: -0.5rem;
  top: 0.1875rem;
  z-index: 5;
  cursor: pointer;
}

.yecl-li-cry-left::after {
  content: "";
  width: 1px;
  position: absolute;
  height: calc(100% - 0.875rem);
  background: #9E9E9E;
  transition: all 0.36s;
  left: 0rem;
  top: 0.875rem;
}

.ylcl-year {
  color: #10154e;
  font-size: 6.875rem;
  position: absolute;
  right: 100%;
  width: 16.25rem;
  opacity: 0;
  pointer-events: none;
}

.yecl-li-cry-right {
  width: 100%;
  padding-left: 2.375rem;
  padding-right: 3.125rem;
  position: relative;
}

.ylcr-tim {
  color: #333;
}

.ylcr-text {
  width: 31.875rem;
  margin-top: 0;
  top: 10%;
  position: absolute;
  height: 20rem;
  color: #6D6D6D;
  font-family: Montserrat;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875rem;
}

.ylcr-text .mCS-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background: #3B482C;
  opacity: 0.5;
  width: 0.125rem;
}

.ylcr-text p {
  font-size: 1rem;
  line-height: 1.75;
  color: #666;
}

.yecl-li-cry .ylcl-year,
.yecl-li-cry-right .ylcr-text {
  opacity: 0;
  pointer-events: none;
}

.yecl-li.slick-active .ylcl-year,
.yecl-li.slick-active .ylcr-text {
  opacity: 1;
  pointer-events: all;
  transition: all 0.5s;
}

.ahly-li-stage {
  width: 16.0625rem;
  margin-bottom: 3.625rem;
  color: #3A3A3A;
  font-family: Montserrat;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875rem;
}

.ahly-li-year {
  color: #363636;
  font-family: Montserrat;
  font-size: 5.625rem;
  font-style: italic;
  font-weight: 700;
}

.ahly-li-year span {
  color: #3B482C;
}

.about-history-list {
  position: relative;
}

.about-history-list-year {
  position: absolute;
  bottom: 9.375rem;
  left: 0;
  pointer-events: none;
}

.yecl-li.slick-active .ylcl-year,
.yecl-li.slick-active .ylcr-text {
  opacity: 1;
  pointer-events: all;
  transition: all 0.5s;
}

.about-history .desc {
  color: #6D6D6D;
  font-family: Montserrat;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875rem;
}

.index_one {
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
}

.index_one .left {
  width: 45%;
}

.index_one .left .desc {
  color: #6D6D6D;
  font-family: Montserrat;
  font-size: 1rem;
  font-weight: 500;
  line-height: 2.1875rem;
}

.index_one .right {
  width: 45%;
}

.index_one .right .aboutnum {
  display: flex;
  justify-content: space-between;
  gap: 5rem;
}

.index_one .right .aboutnum .aboutitem {
  min-width: 6.25rem;
}

.index_one .right .aboutnum .aboutitem .t {
  color: #3B482C;
  font-family: Montserrat;
  font-size: 3.125rem;
  font-weight: 600;
  padding-bottom: 0.5rem;
  position: relative;
}

.index_one .right .aboutnum .aboutitem .t::before {
  content: '';
  display: block;
  width: 4rem;
  height: 1px;
  background-color: #B7C283;
  position: absolute;
  bottom: 0;
  left: 0;
}

.index_one .right .aboutnum .aboutitem .t::after {
  content: '';
  display: block;
  width: 2rem;
  height: 1px;
  background: #3B482C;
  position: absolute;
  bottom: 0;
  left: 0;
}

.index_one .right .aboutnum .aboutitem .p {
  padding-top: 1rem;
  color: #6B6B6B;
  font-family: Montserrat;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.875rem;
}

.index_one .over {
  border-radius: 0.625rem;
}

.all_more {
  width: auto;
  height: 3.4375rem;
  border-radius: 0.1875rem;
  background: #3B482C;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0 1rem;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}

.all_more span {
  color: #FFF;
  font-family: Montserrat;
  font-size: 1rem;
  font-weight: 400;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}

.all_more img {
  width: 1.5rem;
  height: 1.5rem;
  aspect-ratio: 1/1;
  margin-left: 0.25rem;
}

.all_more:hover {
  background-color: #bac486;
}

.all_more2 {
  width: 11.25rem;
  height: 3.4375rem;
  border-radius: 0.1875rem;
  background: #BAC486;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}

.all_more2 span {
  color: #FFF;
  font-family: Montserrat;
  font-size: 1rem;
  font-weight: 400;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}

.all_more2 img {
  width: 1.5rem;
  height: 1.5rem;
  aspect-ratio: 1/1;
  margin-left: 0.25rem;
}

.all_more2:hover {
  background-color: #351d0e;
}

.index_two {
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
  background: #EAEAEA;
}

.index_two .swiper_indexpro {
  position: relative;
  margin: -0.875rem;
  padding-bottom: 3rem;
}

.index_two .swiper_indexpro .swiper-pagination {
  justify-content: center;
}

.index_two .swiper_indexpro .swiper-slide {
  padding: 0.875rem;
  opacity: 0.5;
}

.index_two .swiper_indexpro .swiper-slide-active {
  opacity: 1;
}

.index_two .swiper_indexpro .swiper-slide-active+.swiper-slide {
  opacity: 1;
}

.index_two .swiper_indexpro .swiper-slide-active+.swiper-slide+.swiper-slide {
  opacity: 1;
}

.index_two .swiper_indexpro .xgpro_box {
  overflow: hidden;
  border-radius: 0.625rem;
  background: #FFF;
  box-shadow: 0 0.3125rem 0.9375rem 0.3125rem rgba(25, 72, 160, 0.05);
}

.index_two .swiper_indexpro .xgpro_box a {
  padding: 1.6875rem 2.5rem 3.125rem;
}

.index_two .swiper_indexpro .xgpro_box a .over img {
  aspect-ratio: 3/2;
  object-fit: contain;
}

.index_two .swiper_indexpro .xgpro_box a .text {
  margin-top: 2.1875rem;
}

.index_two .swiper_indexpro .xgpro_box a .text .tit {
  color: #282828;
  text-align: center;
  font-family: Montserrat;
  font-size: 1.125rem;
  font-weight: 500;
}

.index_two .swiper_indexpro .xgpro_box a .text .desc {
  margin-top: 0.5rem;
  color: #6B6B6B;
  text-align: center;
  font-family: Montserrat;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.375rem;
  min-height: 3rem;
}

.index_two .swiper_indexpro .xgpro_box a .text .more {
  margin-top: 1.5625rem;
  color: #323232;
  font-family: Montserrat;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
}

.index_two .swiper_indexpro .xgpro_box a .text .more span {
  border-bottom: 1px solid #323232;
}

.index_two .swiper_indexpro .xgpro_box a .text .more i {
  color: #323232;
  font-size: 0.75rem;
  font-weight: 600;
}

.index_three {
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
  position: relative;
}

.index_three::before {
  content: '';
  display: block;
  width: 32.5rem;
  height: 16.3125rem;
  aspect-ratio: 259/130;
  background-image: url('https://cloud-1251007531.bcdn8.com/kusagj0807/uploads/2026/08/20260813062438504.png');
  background-size: 100% 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}

.index_three .left .desc {
  color: #6D6D6D;
  font-family: Montserrat;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875rem;
}

.index_three .right {
  padding-left: 2.5rem;
}

.index_three .right .grid_box .grid_item a {
  display: flex;
  align-items: center;
  padding: 1.875rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.index_three .right .grid_box .grid_item a .over {
  width: 20.25rem;
  border-radius: 0.625rem;
}

.index_three .right .grid_box .grid_item a .over img {
  aspect-ratio: 324/190;
  object-fit: cover;
}

.index_three .right .grid_box .grid_item a .text {
  flex: 1;
  padding-left: 2.5rem;
}

.index_three .right .grid_box .grid_item a .text .time {
  display: flex;
  align-items: center;
  color: #6B6B6B;
  font-family: Montserrat;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875rem;
}

.index_three .right .grid_box .grid_item a .text .time svg {
  width: 1.75rem;
  height: 1.6875rem;
  margin-right: 0.625rem;
}

.index_three .right .grid_box .grid_item a .text .tt {
  margin-top: 0.8125rem;
  color: #282828;
  font-family: Montserrat;
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 2.1875rem;
}

.index_three .right .grid_box .grid_item a .text .dd {
  margin-top: 0.5625rem;
  color: #4C4C4C;
  font-family: Montserrat;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875rem;
}

.index_three .right .grid_box .grid_item a .text .more {
  margin-top: 1.0625rem;
  color: #323232;
  font-family: Montserrat;
  font-size: 1rem;
  font-weight: 500;
}

.index_three .right .grid_box .grid_item a .text .more span {
  border-bottom: 1px solid #323232;
}

.index_three .right .grid_box .grid_item a .text .more i {
  color: #323232;
  font-size: 0.75rem;
  font-weight: 600;
}

.index_four {
  position: relative;
}

.index_four .content {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
}

.index_four .content .left h3 {
  color: #FFF;
  font-family: Montserrat;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 3.4375rem;
}

.index_four .content .left h4 {
  color: #FFF;
  font-family: Montserrat;
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 3.4375rem;
}

.index_five {
  padding: 6.25rem 0 7.5rem;
  background: #EAEAEA;
}

.index_five .grid_box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 2.5rem;
}

.index_five .grid_box .grid_item .icon {
  width: 5.375rem;
  height: 5.375rem;
}

.index_five .grid_box .grid_item .tt {
  flex: 1;
  padding-left: 1.25rem;
  color: #282828;
  font-family: Montserrat;
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 2.1875rem;
}

.index_five .grid_box .grid_item .dd {
  margin-top: 0.9375rem;
  color: #6B6B6B;
  font-family: Montserrat;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875rem;
}

.index_six {
  padding: 6.25rem 0 8.375rem;
  position: relative;
  background-image: url(https://cloud-1251007531.bcdn8.com/kusagj0807/uploads/2026/08/20260813071307745.png);
  background-position: bottom;
  background-size: 100% auto;
  background-repeat: no-repeat;
}

.index_six .ri {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.index_six .ri .swiper-button-prev,
.index_six .ri .swiper-button-next {
  position: relative;
  top: unset;
  left: unset;
  right: unset;
  margin-top: 0;
  width: 3.4375rem;
  height: 3.4375rem;
  line-height: 3.4375rem;
  background: #BAC486;
  border: none;
}

.index_six .ri .swiper-button-prev i,
.index_six .ri .swiper-button-next i {
  color: #fff;
  font-size: 1.25rem;
}

.index_six .swiper-button-prev,
.index_six .swiper-button-next {
  margin-top: 0;
  width: 3.4375rem;
  height: 3.4375rem;
  line-height: 3.4375rem;
  background: #BAC486;
  border: none;
}

.index_six .swiper-button-prev i,
.index_six .swiper-button-next i {
  color: #fff;
  font-size: 1.25rem;
}

.index_six .content {
  overflow: hidden;
}

.index_six .content .swiper_indexblog {
  position: relative;
  width: 80%;
}

.index_six .content .swiper_indexblog .swiper-slide {
  padding: 0 1.1875rem;
}

.index_six .content .swiper_indexblog .swiper-slide .indexblog_box a {
  display: grid;
  grid-template-columns: 45% 55%;
  overflow: hidden;
  border-radius: 0.625rem;
  background: #BAC486;
}

.index_six .content .swiper_indexblog .swiper-slide .indexblog_box a .text {
  position: relative;
  padding: 2.6875rem 2.1875rem 3.125rem 2.75rem;
}

.index_six .content .swiper_indexblog .swiper-slide .indexblog_box a .text .num {
  margin-top: 2.5rem;
  color: rgba(255, 255, 255, 0.15);
  font-family: Montserrat;
  font-size: 11.25rem;
  font-weight: 600;
  line-height: 1;
}

.index_six .content .swiper_indexblog .swiper-slide .indexblog_box a .text .time {
  color: #000;
  font-family: Montserrat;
  font-size: 1rem;
  font-weight: 400;
  padding: 0.4375rem 1.125rem 0.5625rem;
  border-radius: 4.0625rem;
  border: 1px solid rgba(0, 0, 0, 0.5);
  display: inline-block;
}

.index_six .content .swiper_indexblog .swiper-slide .indexblog_box a .text .tt {
  color: #282828;
  font-family: Montserrat;
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 2.1875rem;
  position: absolute;
  bottom: 0;
  /* 159.091% */
}

.index_six .content .swiper_indexblog .swiper-slide .indexblog_box a .text .dd {
  color: #4C4C4C;
  font-family: Montserrat;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875rem;
}

.index_six .content .swiper_indexblog .swiper-slide .indexblog_box a .text .more {
  margin-top: 1.25rem;
  color: #323232;
  font-family: Montserrat;
  font-size: 1rem;
  font-weight: 500;
}

.index_six .content .swiper_indexblog .swiper-slide .indexblog_box a .text .more span {
  border-bottom: 1px solid #323232;
}

.index_six .content .swiper_indexblog .swiper-slide .indexblog_box a .text .more i {
  color: #323232;
  font-size: 0.75rem;
  font-weight: 600;
}

.index_six .content .swiper_indexblog .swiper-slide .indexblog_box a .over {
  height: 100%;
  border-radius: 0 0.625rem;
}

.index_six .content .swiper_indexblog .swiper-slide .indexblog_box a .over img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.list_message .desc {
  color: #6D6D6D;
  font-family: Montserrat;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875rem;
}

.list_message .contact .msg-a1 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5625rem;
}

.list_message .contact .msg-a1 .inpt p {
  color: #6B6B6B;
  font-family: Montserrat;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875rem;
}

.list_message .contact .msg-a1 .inpt p span {
  color: #F00;
}

.list_message .contact .msg-a1 .inpt input {
  margin-top: 0.75rem;
  width: 100%;
  height: 3.4375rem;
  border-radius: 0.3125rem;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: #FFF;
  padding: 0 1.5rem;
  color: #6B6B6B;
  font-family: Montserrat;
  font-size: 1rem;
  font-weight: 500;
}

.list_message .contact .msg-a1 .inpt input::placeholder {
  color: #C2C2C2;
  font-family: Montserrat;
  font-size: 1rem;
  font-weight: 500;
}

.list_message .contact .msg-a3 {
  margin-top: 1.5rem;
}

.list_message .contact .msg-a3 .inpt p {
  color: #6B6B6B;
  font-family: Montserrat;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875rem;
}

.list_message .contact .msg-a3 .inpt p span {
  color: #F00;
}

.list_message .contact .msg-a3 .inpt textarea {
  margin-top: 0.75rem;
  width: 100%;
  border-radius: 0.3125rem;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: #FFF;
  padding: 1.0625rem 1.5rem;
  color: #6B6B6B;
  font-family: Montserrat;
  font-size: 1rem;
  font-weight: 500;
  height: 9.375rem;
  overflow: hidden;
}

.list_message .contact .msg-a3 .inpt textarea::placeholder {
  color: #C2C2C2;
  font-family: Montserrat;
  font-size: 1rem;
  font-weight: 500;
  height: 9.375rem;
}

.list_message .contact .wpcf7-list-item-label {
  color: #6B6B6B;
  font-family: Montserrat;
  font-size: 1rem;
  font-weight: 500;
}

.list_message .contact .div_aghgha {
  color: #FFF;
  text-align: center;
  font-family: Montserrat;
  font-size: 1rem;
  font-weight: 500;
  display: flex;
  justify-content: end;
}

.list_message .contact .div_aghgha .wpcf7-spinner {
  display: none;
}

.list_message .contact .div_aghgha input {
  width: 11.25rem;
  height: 3.4375rem;
  border-radius: 0.1875rem;
  background: #3B482C;
  color: #FFF;
  text-align: center;
  font-family: Montserrat;
  font-size: 1rem;
  font-weight: 500;
}

.trp-shortcode-overlay {
  display: flex !important;
}

.trp-shortcode-overlay {
  position: relative !important;
}

.trp-switcher-dropdown-list {
  max-height: unset !important;
}

[hidden] {
  display: flex !important;
}

.trp-shortcode-switcher .trp-switcher-dropdown-list {
  flex-direction: unset !important;
}

.trp-shortcode-arrow,
.trp-shortcode-anchor:not(.trp-opposite-button) {
  display: none;
}
.lanuage2{
  margin-right: 1rem;
}
.lanuage .trp-shortcode-overlay {
  display: block !important;
}

.lanuage [hidden] {
  display: block !important;
}

.trp-language-item {
  gap: 1rem !important;
  padding: .4375rem 0 !important;
}
.trp-switcher-dropdown-list{
   gap: 1rem !important;
}

.trp-language-item-name{
  font-size: .875rem !important;
  display: none !important;
}