@charset "UTF-8";
/* CSS HACKS FOR OLDER BROWSERS - IGNORE THESE LINES */
/*
 * @Author       : MengYu
 * @Version      : V1.0
 * @Date         : 2025-10-13 11:08:33
 * @LastEditTime : 2025-11-25 16:13:47
 * @Description  : 主文件
*/
.w1200 {
  width: 75rem;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.w1420 {
  width: 100%;
  padding: 0 5vw;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.w1650 {
  width: 103.125rem;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.w1600 {
  width: 100rem;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.container {
  width: 100%;
  padding: 0 5%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.indexmain {
  width: 100%;
  padding: 0 5vw;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.overhidden {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}

.swiper-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 5rem;
  height: 5rem;
  color: #090000;
  line-height: 5rem;
  z-index: 1;
  outline: none;
  cursor: pointer;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.swiper-btn span {
  color: #090000;
  font-size: 1.875rem;
  line-height: 5rem;
}
.swiper-btn:hover {
  background: #12445c;
}

.space-over {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

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

.img-contain {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -o-object-fit: contain;
     object-fit: contain;
}

.bgimg {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.block-link {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 19;
}

.icon {
  width: 1em;
  height: 1em;
  vertical-align: -0.15em;
  fill: currentColor;
  overflow: hidden;
}

/* For modern browsers */
.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}

.clearfix:after {
  clear: both;
}

/* For IE 6/7 (trigger hasLayout) */
.clearfix {
  zoom: 1;
}

.AddFadeInUp {
  -webkit-animation: AddFadeInUp 1.2s forwards cubic-bezier(0.31, 0.61, 0.25, 0.99);
  animation: AddFadeInUp 1.2s forwards cubic-bezier(0.31, 0.61, 0.25, 0.99);
}

@-webkit-keyframes AddFadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100px, 0);
    transform: translate3d(0, 100px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes AddFadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100px, 0);
    transform: translate3d(0, 100px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.AddFadeInDown {
  -webkit-animation: AddFadeInDown 1.2s forwards cubic-bezier(0.31, 0.61, 0.25, 0.99);
  animation: AddFadeInDown 1.2s forwards cubic-bezier(0.31, 0.61, 0.25, 0.99);
}

@-webkit-keyframes AddFadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100px, 0);
    transform: translate3d(0, -100px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

@keyframes AddFadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100px, 0);
    transform: translate3d(0, -100px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
.AddFadeInRight {
  -webkit-animation: AddFadeInRight 1.2s forwards cubic-bezier(0.31, 0.61, 0.25, 0.99);
  animation: AddFadeInRight 1.2s forwards cubic-bezier(0.31, 0.61, 0.25, 0.99);
}

@-webkit-keyframes AddFadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100px, 0, 0);
    transform: translate3d(100px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

@keyframes AddFadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100px, 0, 0);
    transform: translate3d(100px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
/* CSS HACKS FOR OLDER BROWSERS - IGNORE THESE LINES */
/*
 * @Author       : MengYu
 * @Version      : V1.0
 * @Date         : 2025-10-13 11:08:33
 * @LastEditTime : 2025-11-25 16:13:47
 * @Description  : 主文件
*/
:root {
  overflow-y: auto;
  overflow-x: hidden;
}

:root body {
  position: absolute;
}

:root::-webkit-scrollbar {
  width: 0.375rem;
  height: 0.375rem;
  background-color: #000;
}

:root::-webkit-scrollbar-thumb {
  background-color: #12445c;
}

.padding-module {
  padding: 6.25rem 0;
}

.Pcbox {
  display: block !important;
}

.Mbox {
  display: none !important;
}

.innertop {
  padding-top: 9.3vh;
}

.zhanwei {
  display: block;
  height: 0;
}

.import-color {
  color: #12445c !important;
}

p {
  text-align: justify;
}

.common-banner {
  position: relative;
  width: 100%;
  height: auto;
}
.common-banner img {
  width: 100%;
  height: auto;
}
.common-banner-textbx {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  height: 100%;
}
.common-banner-textbx .container {
  position: relative;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.common-banner-textbx-content {
  width: 100%;
}
.common-banner-textbx-content h2 {
  font-size: 6.125rem;
  color: #fff;
  line-height: 1em;
  font-weight: 700;
  font-family: "Cambria";
  text-align: center;
}
.common-banner-textbx-content .cbtc-intro {
  width: 46%;
  margin: 2rem auto 2.5rem;
}
.common-banner-textbx-content .cbtc-intro p {
  font-size: 1.125rem;
  color: #fff;
  line-height: 1.6em;
  font-weight: 400;
  font-family: "Cambria";
  text-align: center;
}
.common-banner-textbx-content .cbtc-btnbx {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.common-banner-textbx-content .cbtc-btnbx a {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 2.75rem;
  border-radius: 1.5625rem;
  background-color: #fff;
  padding: 0 1.5rem;
  border: 1px solid #fff;
  border-radius: 1.375rem;
  letter-spacing: 1px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  font-size: 1.125rem;
  color: #12445c;
  line-height: 2.75rem;
  font-weight: 700;
  font-family: "Cambria";
}
.common-banner-textbx-content .cbtc-btnbx a i {
  font-size: 1.125rem;
  color: #12445c;
  margin-left: 0.625rem;
}
.common-banner-textbx-content .cbtc-btnbx a:hover {
  border-color: #12445c;
  background-color: #12445c;
  color: #fff;
}
.common-banner-textbx-content .cbtc-btnbx a:hover .iconfont {
  color: #fff;
}
.common-crumb {
  margin: 1.25rem 0;
}
.common-crumb p {
  font-size: 1.125rem;
  color: #141414;
  line-height: 2.5rem;
  font-weight: 400;
  font-family: "Cambria";
}
.common-crumb p a {
  font-size: 1.125rem;
  color: #bfbfbf;
  line-height: 2.5rem;
  font-weight: 400;
  font-family: "Cambria";
  margin: 0 0.25rem;
}
.common-crumb p a:first-child {
  color: #141414;
  margin-left: 0;
}
.common-title p {
  font-size: 1.875rem;
  color: #666;
  line-height: 1.4em;
  font-weight: 400;
  font-family: "Cambria";
}
.common-title h2 {
  font-size: 3.125rem;
  color: #090000;
  line-height: 4.375rem;
  font-weight: 700;
  font-family: "Cambria";
}
.common-navbox {
  padding: 0.25rem 0;
  background-color: #f3f3f3;
}
.common-navbox .w1600 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.common-navbox-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.common-navbox-left li.active a {
  background-color: #12445c;
  color: #fff;
}
.common-navbox-left li:hover a {
  text-decoration: underline;
}
.common-navbox-left li a {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 1.25rem;
  border-radius: 0.3125rem;
  font-size: 1rem;
  color: #090000;
  line-height: 3.125rem;
  font-weight: 400;
  font-family: "Cambria";
}
.common-navbox-crumb p {
  width: 100%;
  height: 2.5rem;
  font-size: 0.75rem;
  color: #2b2b2b;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.common-navbox-crumb p i {
  font-size: 1.25rem;
  color: #666666;
}
.common-navbox-crumb p a {
  font-size: 0.75rem;
  color: #666666;
  margin: 0 0.25rem;
}
.common-navbox-crumb p a:hover {
  color: #12445c;
}
.common-pagination {
  width: 100%;
}
.common-pagination ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
}
.common-pagination a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 1.875rem;
  font-size: 1rem;
  color: #090000;
  margin: 0 0.5rem;
  padding: 0.625rem;
  border: 0;
  border-radius: 0.1875rem;
  background-color: #e9e9e9;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}
.common-pagination a:hover {
  color: #fff;
  background-color: #12445c;
  border-color: #12445c;
}
.common-pagination a.page-num-current {
  color: #ffffff;
  background-color: #12445c;
  border-color: #12445c;
}
.common-pagination li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.common-pagination li:last-child > a {
  margin-right: 0;
}
.common-pagination li:first-child a, .common-pagination li:last-child a {
  font-size: 0.875rem;
  background-color: #e9e9e9;
}
.common-pagination li:first-child a:hover, .common-pagination li:last-child a:hover {
  background-color: #12445c;
}
.common-pagebtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
}
.common-pagebtn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 80%;
  font-size: 1rem;
  line-height: 2rem;
  color: #090000;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  word-break: break-all;
}
.common-pagebtn a:hover {
  color: #12445c;
}

.index-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 9.3vh;
  background-color: rgba(19, 68, 92, 0.7803921569);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: background 0.5s;
  transition: background 0.5s;
  z-index: 9999999;
}
.index-header-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  position: relative;
  height: 100%;
  z-index: 0;
}
.index-header-leftbx a {
  font-size: 0.875rem;
  color: #fff;
  line-height: 1em;
  font-weight: 500;
  font-family: "Cambria";
  text-transform: uppercase;
  font-style: italic;
  letter-spacing: 1px;
}
.index-header-leftbx a:hover {
  text-decoration: underline;
}
.index-header-center {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 90%;
}
.index-header-center .logobx {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 100%;
}
.index-header-center .logobx img {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 100%;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.index-header-rightbx {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  height: 100%;
}
.index-header-rightbx .contactbtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 100%;
  margin-right: 1.25rem;
}
.index-header-rightbx .contactbtn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  font-size: 1rem;
  color: #fff;
  line-height: 1em;
  font-weight: 400;
  font-family: "Cambria";
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 3.125rem;
  padding: 0 1.5rem;
  text-transform: uppercase;
  border: 0.125rem solid #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.index-header-rightbx .contactbtn a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
.index-header-rightbx .language {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  margin-right: 1.25rem;
}
.index-header-rightbx .language:hover {
  cursor: pointer;
}
.index-header-rightbx .language:hover .language-down {
  -webkit-transform: rotateX(0);
          transform: rotateX(0);
  visibility: visible;
  opacity: 1;
}
.index-header-rightbx .language-now {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  font-size: 1rem;
  color: #fff;
  line-height: 1em;
  font-weight: 400;
  font-family: "Cambria";
  width: 3.125rem;
  height: 3.125rem;
  background-color: #7893a3;
  border-radius: 50%;
}
.index-header-rightbx .language-down {
  position: absolute;
  top: 9.3vh;
  right: 0;
  width: 12.5rem;
  background-color: #7893a3;
  z-index: 9999;
  opacity: 0;
  -webkit-transform: rotateX("90deg");
          transform: rotateX("90deg");
  -webkit-transform-origin: 50% 0;
      -ms-transform-origin: 50% 0;
          transform-origin: 50% 0;
  -webkit-transform-origin: 0 0 0;
      -ms-transform-origin: 0 0 0;
          transform-origin: 0 0 0;
  visibility: hidden;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.index-header-rightbx .language-down ul {
  width: 100%;
}
.index-header-rightbx .language-down ul li a {
  font-size: 1rem;
  color: #fff;
  line-height: 3.125rem;
  font-weight: 400;
  font-family: "Cambria";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 1.25rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.index-header-rightbx .language-down ul li a em {
  width: 0;
  height: 1px;
  background-color: #fff;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.index-header-rightbx .language-down ul li a:hover em {
  width: 1.25rem;
  margin-right: 0.625rem;
}
.index-header-rightbx .inner-header-icon {
  display: none;
  color: #2b2b2b;
  height: 3.625rem;
  font-size: 1.563rem;
  text-align: center;
  float: right;
  width: 3.125rem;
  position: relative;
  -webkit-transition: background 0.5s;
  transition: background 0.5s;
  z-index: 3;
  -webkit-transform: scale(1.3);
      -ms-transform: scale(1.3);
          transform: scale(1.3);
  /*第一条线旋转动画*/
  /*第二条线淡入淡出动画动画*/
  /*第三条线旋转动画*/
}
.index-header-rightbx .inner-header-icon:hover {
  background-color: rgba(255, 255, 255, 0);
  cursor: pointer;
}
.index-header-rightbx .inner-header-icon span {
  position: absolute;
  left: 50%;
  top: calc((100% - 1px) / 2);
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 1.563rem;
  height: 0.125rem;
  background-color: #090000;
}
.index-header-rightbx .inner-header-icon span:nth-child(1) {
  -webkit-transform: translate(-50%, 0.5rem) rotate(0deg);
      -ms-transform: translate(-50%, 0.5rem) rotate(0deg);
          transform: translate(-50%, 0.5rem) rotate(0deg);
}
.index-header-rightbx .inner-header-icon span:nth-child(2) {
  opacity: 0;
}
.index-header-rightbx .inner-header-icon span:nth-child(3) {
  -webkit-transform: translate(-50%, -0.5rem) rotate(0deg);
      -ms-transform: translate(-50%, -0.5rem) rotate(0deg);
          transform: translate(-50%, -0.5rem) rotate(0deg);
}
.index-header-rightbx .inner-header-icon-click span {
  background: #2b2b2b;
}
.index-header-rightbx .inner-header-icon-click span:nth-child(1) {
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: clickfirst;
          animation-name: clickfirst;
}
.index-header-rightbx .inner-header-icon-click span:nth-child(2) {
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: clicksecond;
          animation-name: clicksecond;
}
.index-header-rightbx .inner-header-icon-click span:nth-child(3) {
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: clickthird;
          animation-name: clickthird;
}
@-webkit-keyframes clickfirst {
  0% {
    -webkit-transform: translate(-50%, 0.5rem) rotate(0deg);
            transform: translate(-50%, 0.5rem) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(-50%, 0) rotate(45deg);
            transform: translate(-50%, 0) rotate(45deg);
  }
}
@keyframes clickfirst {
  0% {
    -webkit-transform: translate(-50%, 0.5rem) rotate(0deg);
            transform: translate(-50%, 0.5rem) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(-50%, 0) rotate(45deg);
            transform: translate(-50%, 0) rotate(45deg);
  }
}
@-webkit-keyframes clicksecond {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes clicksecond {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes clickthird {
  0% {
    -webkit-transform: translate(-50%, -0.5rem) rotate(0deg);
            transform: translate(-50%, -0.5rem) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(-50%, 0) rotate(-45deg);
            transform: translate(-50%, 0) rotate(-45deg);
  }
}
@keyframes clickthird {
  0% {
    -webkit-transform: translate(-50%, -0.5rem) rotate(0deg);
            transform: translate(-50%, -0.5rem) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(-50%, 0) rotate(-45deg);
            transform: translate(-50%, 0) rotate(-45deg);
  }
}
.index-header-rightbx .inner-header-icon-out span {
  background: #2b2b2b;
}
.index-header-rightbx .inner-header-icon-out span:nth-child(1) {
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: outfirst;
          animation-name: outfirst;
}
.index-header-rightbx .inner-header-icon-out span:nth-child(2) {
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: outsecond;
          animation-name: outsecond;
}
.index-header-rightbx .inner-header-icon-out span:nth-child(3) {
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: outthird;
          animation-name: outthird;
}
@-webkit-keyframes outfirst {
  0% {
    -webkit-transform: translate(-50%, 0) rotate(-45deg);
            transform: translate(-50%, 0) rotate(-45deg);
  }
  100% {
    -webkit-transform: translate(-50%, -0.5rem) rotate(0deg);
            transform: translate(-50%, -0.5rem) rotate(0deg);
  }
}
@keyframes outfirst {
  0% {
    -webkit-transform: translate(-50%, 0) rotate(-45deg);
            transform: translate(-50%, 0) rotate(-45deg);
  }
  100% {
    -webkit-transform: translate(-50%, -0.5rem) rotate(0deg);
            transform: translate(-50%, -0.5rem) rotate(0deg);
  }
}
@-webkit-keyframes outsecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes outsecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes outthird {
  0% {
    -webkit-transform: translate(-50%, 0) rotate(45deg);
            transform: translate(-50%, 0) rotate(45deg);
  }
  100% {
    -webkit-transform: translate(-50%, 0.5rem) rotate(0deg);
            transform: translate(-50%, 0.5rem) rotate(0deg);
  }
}
@keyframes outthird {
  0% {
    -webkit-transform: translate(-50%, 0) rotate(45deg);
            transform: translate(-50%, 0) rotate(45deg);
  }
  100% {
    -webkit-transform: translate(-50%, 0.5rem) rotate(0deg);
            transform: translate(-50%, 0.5rem) rotate(0deg);
  }
}
.index-header-rightbx .inner-header-icon {
  display: block;
  height: 3.125rem;
  background-color: #7893a3;
  border-radius: 50%;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  z-index: 99;
}
.index-header-rightbx .inner-header-icon:hover {
  background-color: #7893a3;
}
.index-header-rightbx .inner-header-icon span {
  width: 1.35rem;
  background-color: #fff;
}
.index-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 30vw;
  height: 100vh;
  -webkit-transform: translateX(101%);
      -ms-transform: translateX(101%);
          transform: translateX(101%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 9999;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.index-nav.show {
  opacity: 1;
  visibility: inherit;
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}
.index-nav-content {
  width: 100%;
  margin-left: auto;
  height: 100%;
  background-color: #efe7d6;
  -webkit-box-shadow: 0 6px 100px 10px rgba(18, 18, 18, 0.5);
          box-shadow: 0 6px 100px 10px rgba(18, 18, 18, 0.5);
  overflow: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.index-nav-content .navbox {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}
.index-nav-content .navbox .inner-header-icon {
  display: none;
  color: #2b2b2b;
  height: 3.625rem;
  font-size: 1.563rem;
  text-align: center;
  float: right;
  width: 3.125rem;
  position: relative;
  -webkit-transition: background 0.5s;
  transition: background 0.5s;
  z-index: 3;
  -webkit-transform: scale(1.3);
      -ms-transform: scale(1.3);
          transform: scale(1.3);
  /*第一条线旋转动画*/
  /*第二条线淡入淡出动画动画*/
  /*第三条线旋转动画*/
}
.index-nav-content .navbox .inner-header-icon:hover {
  background-color: rgba(255, 255, 255, 0);
  cursor: pointer;
}
.index-nav-content .navbox .inner-header-icon span {
  position: absolute;
  left: 50%;
  top: calc((100% - 1px) / 2);
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 1.563rem;
  height: 0.125rem;
  background-color: #090000;
}
.index-nav-content .navbox .inner-header-icon span:nth-child(1) {
  -webkit-transform: translate(-50%, 0.5rem) rotate(0deg);
      -ms-transform: translate(-50%, 0.5rem) rotate(0deg);
          transform: translate(-50%, 0.5rem) rotate(0deg);
}
.index-nav-content .navbox .inner-header-icon span:nth-child(2) {
  opacity: 0;
}
.index-nav-content .navbox .inner-header-icon span:nth-child(3) {
  -webkit-transform: translate(-50%, -0.5rem) rotate(0deg);
      -ms-transform: translate(-50%, -0.5rem) rotate(0deg);
          transform: translate(-50%, -0.5rem) rotate(0deg);
}
.index-nav-content .navbox .inner-header-icon-click span {
  background: #2b2b2b;
}
.index-nav-content .navbox .inner-header-icon-click span:nth-child(1) {
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: clickfirst;
          animation-name: clickfirst;
}
.index-nav-content .navbox .inner-header-icon-click span:nth-child(2) {
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: clicksecond;
          animation-name: clicksecond;
}
.index-nav-content .navbox .inner-header-icon-click span:nth-child(3) {
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: clickthird;
          animation-name: clickthird;
}
@keyframes clickfirst {
  0% {
    -webkit-transform: translate(-50%, 0.5rem) rotate(0deg);
            transform: translate(-50%, 0.5rem) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(-50%, 0) rotate(45deg);
            transform: translate(-50%, 0) rotate(45deg);
  }
}
@keyframes clicksecond {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes clickthird {
  0% {
    -webkit-transform: translate(-50%, -0.5rem) rotate(0deg);
            transform: translate(-50%, -0.5rem) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(-50%, 0) rotate(-45deg);
            transform: translate(-50%, 0) rotate(-45deg);
  }
}
.index-nav-content .navbox .inner-header-icon-out span {
  background: #2b2b2b;
}
.index-nav-content .navbox .inner-header-icon-out span:nth-child(1) {
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: outfirst;
          animation-name: outfirst;
}
.index-nav-content .navbox .inner-header-icon-out span:nth-child(2) {
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: outsecond;
          animation-name: outsecond;
}
.index-nav-content .navbox .inner-header-icon-out span:nth-child(3) {
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: outthird;
          animation-name: outthird;
}
@keyframes outfirst {
  0% {
    -webkit-transform: translate(-50%, 0) rotate(-45deg);
            transform: translate(-50%, 0) rotate(-45deg);
  }
  100% {
    -webkit-transform: translate(-50%, -0.5rem) rotate(0deg);
            transform: translate(-50%, -0.5rem) rotate(0deg);
  }
}
@keyframes outsecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes outthird {
  0% {
    -webkit-transform: translate(-50%, 0) rotate(45deg);
            transform: translate(-50%, 0) rotate(45deg);
  }
  100% {
    -webkit-transform: translate(-50%, 0.5rem) rotate(0deg);
            transform: translate(-50%, 0.5rem) rotate(0deg);
  }
}
.index-nav-content .navbox .inner-header-icon {
  position: absolute;
  right: 10%;
  top: 0;
  display: block;
  height: 3.125rem;
  background-color: transparent;
  border-radius: 50%;
  -webkit-transform: scale(1.2);
      -ms-transform: scale(1.2);
          transform: scale(1.2);
  z-index: 99;
}
.index-nav-content .navbox .inner-header-icon:hover {
  cursor: pointer;
}
.index-nav-content .navbox .inner-header-icon span {
  width: 1.35rem;
}
.index-nav-content .navbox-menu {
  margin: 2.5rem 10%;
  margin-top: 12vh;
}
.index-nav-content .navbox-menu-item:not(:last-child) {
  margin-bottom: 0.75rem;
}
.index-nav-content .navbox-menu-item a {
  font-size: 1.75rem;
  color: #090000;
  line-height: 1.8em;
  font-weight: 400;
  font-family: "Cambria";
  text-transform: capitalize;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.index-nav-content .navbox-menu-item a:hover {
  color: #12445c;
  text-decoration: underline;
}
.index-nav-content .navbox-bottom {
  position: relative;
  width: 100%;
  padding: 7.5rem 10% 3.125rem;
}
.index-nav-content .navbox-bottom-logobx {
  height: 6rem;
  margin-bottom: 1.25rem;
}
.index-nav-content .navbox-bottom-logobx img {
  height: 100%;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.index-nav-content .navbox-bottom-intro {
  padding-top: 0.625rem;
  border-top: 1px solid #d5d5d5;
}
.index-nav-content .navbox-bottom-intro p {
  font-size: 0.875rem;
  color: #666;
  line-height: 1.7em;
  font-weight: 400;
  font-family: "Cambria";
}
.index-footer {
  background-image: url(../images/footerbg.webp);
  padding-bottom: 5rem;
}
.index-footer-topbx {
  padding: 5rem 0;
}
.index-footer-topbx h2 {
  font-size: 11rem;
  color: #fff;
  line-height: 0.8em;
  font-weight: 700;
  font-family: "Cambria";
  letter-spacing: 3.5rem;
  text-transform: uppercase;
  text-align: center;
}
.index-footer-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  padding: 5rem 1.875rem;
  background-color: rgba(19, 68, 92, 0.7803921569);
}
.index-footer-content-leftbx img {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 7rem;
}
.index-footer-content-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 0;
  margin-left: 1.75rem;
  padding-left: 1.75rem;
  padding-right: 0.625rem;
  border-left: 1px solid rgba(255, 255, 255, 0.8);
}
.index-footer-content-center .ifcc-infobx {
  width: 21%;
}
.index-footer-content-center .ifcc-infobx h4 {
  font-size: 1.25rem;
  color: #fff;
  line-height: 1em;
  font-weight: 400;
  font-family: "Cambria";
  text-transform: uppercase;
  padding-bottom: 1.25rem;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid #fff;
}
.index-footer-content-center .ifcc-infobx p,
.index-footer-content-center .ifcc-infobx a {
  font-size: 1rem;
  color: #fff;
  line-height: 1.875rem;
  font-weight: 400;
  font-family: "Cambria";
}
.index-footer-content-center .ifcc-infobx a:hover {
  text-decoration: underline;
}
.index-footer-content-center .ifcc-navbx {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.index-footer-content-center .ifcc-navbx dl {
  min-width: 12.5rem;
}
.index-footer-content-center .ifcc-navbx dl:not(:last-child) {
  margin-right: 3.125rem;
}
.index-footer-content-center .ifcc-navbx dl dt {
  font-size: 1.25rem;
  color: #fff;
  line-height: 1em;
  font-weight: 400;
  font-family: "Cambria";
  text-transform: uppercase;
  padding-bottom: 1.25rem;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid #fff;
}
.index-footer-content-center .ifcc-navbx dl dd a {
  font-size: 1rem;
  color: #fff;
  line-height: 1.875rem;
  font-weight: 400;
  font-family: "Cambria";
  text-transform: capitalize;
}
.index-footer-content-center .ifcc-navbx dl dd a:hover {
  text-decoration: underline;
}

@media (min-width: 320px) and (max-width: 1023px) {
  :root {
    font-size: 12px !important;
  }
  .w1420,
  .w1600,
  .indexmain {
    width: 100%;
    padding: 0 1rem;
  }
  .padding-module {
    padding: 3rem 0;
  }
  .showvideo-content .videobx {
    width: 96%;
    height: 28%;
  }
  .Pcbox {
    display: none !important;
  }
  .Mbox {
    display: block !important;
  }
  .module-padding {
    padding: 3rem 0;
  }
  .common-banner {
    width: 100%;
    height: 40vh;
  }
  .common-banner > img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .common-banner-textbx {
    top: 50%;
  }
  .common-banner-textbx .text {
    max-width: 100%;
  }
  .common-banner-textbx h2 {
    font-size: 2.5rem;
  }
  .common-title h2 {
    font-size: 2.5rem;
    line-height: 3.75rem;
  }
  .common-navbox ul {
    overflow-x: auto;
  }
  .common-navbox ul li a {
    white-space: nowrap;
  }
  .common-pagebtn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .common-pagebtn a {
    max-width: 100%;
  }
  .index-header {
    position: fixed;
    width: 100%;
    height: 5rem;
    z-index: 99999;
  }
  .index-header-leftbx {
    display: none;
  }
  .index-header-center {
    position: static;
    -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
            transform: translate(0, 0);
    height: 80%;
  }
  .index-header-rightbx {
    position: static;
  }
  .index-header-rightbx .contactbtn {
    margin-right: 0.625rem;
  }
  .index-header-rightbx .language {
    margin-right: 0.625rem;
  }
  .index-header-rightbx .language-down {
    top: 5rem;
  }
  .index-header .inner-header-icon {
    display: none;
    color: #fff;
    height: 3.625rem;
    font-size: 1.563rem;
    text-align: center;
    float: right;
    width: 3.125rem;
    position: relative;
    -webkit-transition: background 0.5s;
    transition: background 0.5s;
    z-index: 3;
    -webkit-transform: scale(1.3);
        -ms-transform: scale(1.3);
            transform: scale(1.3);
    /*第一条线旋转动画*/
    /*第二条线淡入淡出动画动画*/
    /*第三条线旋转动画*/
  }
  .index-header .inner-header-icon:hover {
    background-color: rgba(255, 255, 255, 0);
    cursor: pointer;
  }
  .index-header .inner-header-icon span {
    position: absolute;
    left: 50%;
    top: calc((100% - 1px) / 2);
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 1.563rem;
    height: 0.125rem;
    background-color: #090000;
  }
  .index-header .inner-header-icon span:nth-child(1) {
    -webkit-transform: translate(-50%, 0.5rem) rotate(0deg);
        -ms-transform: translate(-50%, 0.5rem) rotate(0deg);
            transform: translate(-50%, 0.5rem) rotate(0deg);
  }
  .index-header .inner-header-icon span:nth-child(2) {
    opacity: 0;
  }
  .index-header .inner-header-icon span:nth-child(3) {
    -webkit-transform: translate(-50%, -0.5rem) rotate(0deg);
        -ms-transform: translate(-50%, -0.5rem) rotate(0deg);
            transform: translate(-50%, -0.5rem) rotate(0deg);
  }
  .index-header .inner-header-icon-click span {
    background: #fff;
  }
  .index-header .inner-header-icon-click span:nth-child(1) {
    -webkit-animation-duration: 0.5s;
            animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
    -webkit-animation-name: clickfirst;
            animation-name: clickfirst;
  }
  .index-header .inner-header-icon-click span:nth-child(2) {
    -webkit-animation-duration: 0.5s;
            animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
    -webkit-animation-name: clicksecond;
            animation-name: clicksecond;
  }
  .index-header .inner-header-icon-click span:nth-child(3) {
    -webkit-animation-duration: 0.5s;
            animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
    -webkit-animation-name: clickthird;
            animation-name: clickthird;
  }
  @-webkit-keyframes clickfirst {
    0% {
      -webkit-transform: translate(-50%, 0.5rem) rotate(0deg);
              transform: translate(-50%, 0.5rem) rotate(0deg);
    }
    100% {
      -webkit-transform: translate(-50%, 0) rotate(45deg);
              transform: translate(-50%, 0) rotate(45deg);
    }
  }
  @keyframes clickfirst {
    0% {
      -webkit-transform: translate(-50%, 0.5rem) rotate(0deg);
              transform: translate(-50%, 0.5rem) rotate(0deg);
    }
    100% {
      -webkit-transform: translate(-50%, 0) rotate(45deg);
              transform: translate(-50%, 0) rotate(45deg);
    }
  }
  @-webkit-keyframes clicksecond {
    0% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }
  @keyframes clicksecond {
    0% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }
  @-webkit-keyframes clickthird {
    0% {
      -webkit-transform: translate(-50%, -0.5rem) rotate(0deg);
              transform: translate(-50%, -0.5rem) rotate(0deg);
    }
    100% {
      -webkit-transform: translate(-50%, 0) rotate(-45deg);
              transform: translate(-50%, 0) rotate(-45deg);
    }
  }
  @keyframes clickthird {
    0% {
      -webkit-transform: translate(-50%, -0.5rem) rotate(0deg);
              transform: translate(-50%, -0.5rem) rotate(0deg);
    }
    100% {
      -webkit-transform: translate(-50%, 0) rotate(-45deg);
              transform: translate(-50%, 0) rotate(-45deg);
    }
  }
  .index-header .inner-header-icon-out span {
    background: #fff;
  }
  .index-header .inner-header-icon-out span:nth-child(1) {
    -webkit-animation-duration: 0.5s;
            animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
    -webkit-animation-name: outfirst;
            animation-name: outfirst;
  }
  .index-header .inner-header-icon-out span:nth-child(2) {
    -webkit-animation-duration: 0.5s;
            animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
    -webkit-animation-name: outsecond;
            animation-name: outsecond;
  }
  .index-header .inner-header-icon-out span:nth-child(3) {
    -webkit-animation-duration: 0.5s;
            animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
    -webkit-animation-name: outthird;
            animation-name: outthird;
  }
  @-webkit-keyframes outfirst {
    0% {
      -webkit-transform: translate(-50%, 0) rotate(-45deg);
              transform: translate(-50%, 0) rotate(-45deg);
    }
    100% {
      -webkit-transform: translate(-50%, -0.5rem) rotate(0deg);
              transform: translate(-50%, -0.5rem) rotate(0deg);
    }
  }
  @keyframes outfirst {
    0% {
      -webkit-transform: translate(-50%, 0) rotate(-45deg);
              transform: translate(-50%, 0) rotate(-45deg);
    }
    100% {
      -webkit-transform: translate(-50%, -0.5rem) rotate(0deg);
              transform: translate(-50%, -0.5rem) rotate(0deg);
    }
  }
  @-webkit-keyframes outsecond {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  @keyframes outsecond {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  @-webkit-keyframes outthird {
    0% {
      -webkit-transform: translate(-50%, 0) rotate(45deg);
              transform: translate(-50%, 0) rotate(45deg);
    }
    100% {
      -webkit-transform: translate(-50%, 0.5rem) rotate(0deg);
              transform: translate(-50%, 0.5rem) rotate(0deg);
    }
  }
  @keyframes outthird {
    0% {
      -webkit-transform: translate(-50%, 0) rotate(45deg);
              transform: translate(-50%, 0) rotate(45deg);
    }
    100% {
      -webkit-transform: translate(-50%, 0.5rem) rotate(0deg);
              transform: translate(-50%, 0.5rem) rotate(0deg);
    }
  }
  .index-header .inner-header-icon {
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
    display: block;
    height: 3.125rem;
    z-index: 99;
  }
  .index-header .inner-header-icon:hover {
    background-color: rgba(120, 147, 163, 0.99);
  }
  .index-header .inner-header-icon span {
    width: 1.5rem;
  }
  .index-header .inner-header-icon-click span {
    background-color: #fff;
  }
  .index-nav {
    width: 100vw;
  }
  .index-footer-topbx {
    padding: 3.5rem 0;
  }
  .index-footer-topbx h2 {
    font-size: 3.5rem;
    letter-spacing: 1.25rem;
    line-height: 1.2em;
  }
  .index-footer-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 2.5rem 1.875rem;
  }
  .index-footer-content-leftbx {
    margin-bottom: 3rem;
  }
  .index-footer-content-center {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 100%;
    margin-left: 0;
    padding-left: 0;
    border-left: 0;
    padding-right: 0;
  }
  .index-footer-content-center .ifcc-infobx {
    width: 100%;
    margin-bottom: 2rem;
  }
  .index-footer-content-center .ifcc-navbx {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
  }
  .index-footer-content-center .ifcc-navbx dl {
    min-width: 48%;
  }
  .index-footer-content-center .ifcc-navbx dl:not(:last-child) {
    margin-right: 0;
  }
}
/* CSS HACKS FOR OLDER BROWSERS - IGNORE THESE LINES */
/*
 * @Author       : MengYu
 * @Version      : V1.0
 * @Date         : 2025-10-13 11:08:33
 * @LastEditTime : 2025-11-25 16:13:47
 * @Description  : 主文件
*/
.about-profile {
  padding-bottom: 3.75rem;
}
.about-profile-title {
  padding: 5rem 0;
}
.about-profile-title h3 {
  font-size: 5.625rem;
  color: #12445c;
  line-height: 1em;
  font-weight: 400;
  font-family: "Cambria";
  text-align: center;
  text-transform: uppercase;
}
.about-profile-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.about-profile-content-textbx {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  width: 65%;
  padding: 4rem 2.5rem;
  background-color: #f1f1ee;
}
.about-profile-content-textbx p {
  font-size: 1.125rem;
  color: #000;
  line-height: 2.5rem;
  font-weight: 400;
  font-family: "Cambria";
}
.about-profile-content-imgbx {
  width: 32%;
}
.about-profile-num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin-top: 3.75rem;
  padding: 1.875rem 0;
  border-top: 1px solid #dadada;
  border-bottom: 1px solid #dadada;
}
.about-profile-num-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.about-profile-num-item .numbx {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 5.625rem;
  color: #12445c;
}
.about-profile-num-item .txtbx {
  font-size: 1.125rem;
  color: #000;
  line-height: 1.5em;
  font-weight: 400;
  font-family: "Cambria";
  text-transform: capitalize;
  letter-spacing: 0.1875rem;
  margin-left: 1.25rem;
}
.about-profile-num .xian {
  display: block;
  width: 1px;
  background-color: #dadada;
}
.about-step {
  background-color: #f1f1ee;
  padding: 5rem 0;
  margin-bottom: 3.75rem;
}
.about-step-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin-bottom: 3.75rem;
}
.about-step-title h3 {
  font-size: 3.75rem;
  color: #12445c;
  line-height: 1em;
  font-weight: 400;
  font-family: "Cambria";
  max-width: 44.3%;
}
.about-step-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.about-step-content-nav {
  width: 21%;
}
.about-step-content-nav li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  width: 100%;
  height: 4.375rem;
  background-color: #13445c;
}
.about-step-content-nav li:not(:last-child) {
  margin-bottom: 0.625rem;
}
.about-step-content-nav li:hover {
  cursor: pointer;
}
.about-step-content-nav li.active {
  background-color: #1a5a7a;
}
.about-step-content-nav li p {
  font-size: 1.25rem;
  color: #fff;
  line-height: 1em;
  font-weight: 400;
  font-family: "Cambria-Bold";
  text-align: center;
  text-transform: uppercase;
}
.about-step-content-intro {
  position: relative;
  width: 38.4%;
}
.about-step-content-intro .asci-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 2.5rem;
  background-color: #446a7c;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  opacity: 0;
  pointer-events: none;
}
.about-step-content-intro .asci-item.active {
  opacity: 1;
  pointer-events: auto;
}
.about-step-content-intro .asci-item-title {
  width: 100%;
  padding-bottom: 1.25rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid #fff;
}
.about-step-content-intro .asci-item-title h4 {
  font-size: 2.25rem;
  color: #fff;
  line-height: 1em;
  font-weight: 400;
  font-family: "Cambria";
}
.about-step-content-intro .asci-item-text p {
  font-size: 1rem;
  color: #fff;
  line-height: 1.6em;
  font-weight: 400;
  font-family: "Cambria";
}
.about-step-content-imgbx {
  position: relative;
  width: 36.34%;
}
.about-step-content-imgbx img {
  position: absolute;
  inset: 0;
  opacity: 0;
}
.about-step-content-imgbx img.active {
  opacity: 1;
}
.about-team {
  padding: 3.75rem 0;
}
.about-team-content {
  padding: 5rem 0;
  background-color: #f1f1ee;
}
.about-team-content-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin-bottom: 3.75rem;
}
.about-team-content-title h3 {
  font-size: 3.75rem;
  color: #12445c;
  line-height: 1em;
  font-weight: 400;
  font-family: "Cambria";
  max-width: 44.3%;
}
.about-team-content-center .teamlist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}
.about-team-content-center .teamlist .zhanwei {
  width: 30%;
}
.about-team-content-center .teamlist .teamlist-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  position: relative;
  width: 30%;
  padding: 1rem 0;
  border-bottom: 1px solid #999;
  overflow: hidden;
}
.about-team-content-center .teamlist .teamlist-item:hover {
  cursor: pointer;
}
.about-team-content-center .teamlist .teamlist-item:hover .teamlist-item-imgbx {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}
.about-team-content-center .teamlist .teamlist-item:first-child, .about-team-content-center .teamlist .teamlist-item:nth-child(2), .about-team-content-center .teamlist .teamlist-item:nth-child(3) {
  border-top: 1px solid #999;
}
.about-team-content-center .teamlist .teamlist-item-textbx {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 0;
}
.about-team-content-center .teamlist .teamlist-item-textbx h5 {
  font-size: 1.25rem;
  color: #446a7c;
  line-height: 1.8em;
  font-weight: 700;
  font-family: "Cambria";
  text-transform: capitalize;
}
.about-team-content-center .teamlist .teamlist-item-textbx p {
  font-size: 1rem;
  color: #2b2b2b;
  line-height: 1.6em;
  font-weight: 400;
  font-family: "Cambria";
}
.about-team-content-center .teamlist .teamlist-item-intro {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translate(0, -110%);
      -ms-transform: translate(0, -110%);
          transform: translate(0, -110%);
  pointer-events: none;
}
.about-team-content-center .morelist h4 {
  margin-bottom: 1.625rem;
}
.about-team-content-center .morelist .allbtn,
.about-team-content-center .morelist .careeingbtn {
  width: 100%;
  height: 3.375rem;
}
.about-team-content-center .morelist .allbtn a,
.about-team-content-center .morelist .careeingbtn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  width: 100%;
  height: 100%;
  background-color: #446a7c;
}
.about-team-content-center .morelist .allbtn a p,
.about-team-content-center .morelist .careeingbtn a p {
  font-size: 1rem;
  color: #fff;
  line-height: 1em;
  font-weight: 400;
  font-family: "Cambria";
}
.about-team-content-center .morelist .allbtn a i,
.about-team-content-center .morelist .careeingbtn a i {
  font-size: 1rem;
  color: #fff;
  margin-left: 0.875rem;
}
.about-team-content-center .morelist .allbtn a:hover,
.about-team-content-center .morelist .careeingbtn a:hover {
  cursor: pointer;
}
.about-team-content-center .morelist .allbtn a:hover p,
.about-team-content-center .morelist .careeingbtn a:hover p {
  text-decoration: underline;
}
.about-team-content-center .morelist .careeingbtn {
  margin-top: 1.25rem;
}
.about-team-content-center .morelist .careeingbtn a {
  background-color: transparent;
  border: 1px solid #446a7c;
}
.about-team-content-center .morelist .careeingbtn a p {
  color: #446a7c;
}
.about-team-content-center .morelist .careeingbtn a i {
  color: #446a7c;
}
.about-contact {
  margin-bottom: 3.75rem;
  background-color: #f1f1ee;
}
.about-contact-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.about-contact-imgbx {
  width: 50%;
  height: 31.25rem;
}
.about-contact-rightbx {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 50%;
  padding-left: 5%;
}
.about-contact-rightbx .formbx {
  width: 100%;
}
.about-contact-rightbx .formbx h3 {
  font-size: 2rem;
  color: #12445c;
  line-height: 1.1em;
  font-weight: 400;
  font-family: "Cambria";
  margin-bottom: 1.25rem;
}
.about-contact-rightbx .formbx-item {
  width: 100%;
  height: auto;
  margin-bottom: 1.375rem;
}
.about-contact-rightbx .formbx-item input::-webkit-input-placeholder,
.about-contact-rightbx .formbx-item textarea::-webkit-input-placeholder {
  font-size: 1.125rem;
  letter-spacing: 1px;
  color: #8b8b8b;
  font-family: "Cambria";
}
.about-contact-rightbx .formbx-item input:-moz-placeholder,
.about-contact-rightbx .formbx-item textarea:-moz-placeholder {
  font-size: 1.125rem;
  letter-spacing: 1px;
  color: #8b8b8b;
  font-family: "Cambria";
}
.about-contact-rightbx .formbx-item input::-moz-placeholder,
.about-contact-rightbx .formbx-item textarea::-moz-placeholder {
  font-size: 1.125rem;
  letter-spacing: 1px;
  color: #8b8b8b;
  font-family: "Cambria";
}
.about-contact-rightbx .formbx-item input:-ms-input-placeholder,
.about-contact-rightbx .formbx-item textarea:-ms-input-placeholder {
  font-size: 1.125rem;
  letter-spacing: 1px;
  color: #8b8b8b;
  font-family: "Cambria";
}
.about-contact-rightbx .formbx-item label {
  font-size: 1rem;
  color: #141414;
  line-height: 1.5em;
  font-weight: 500;
  font-family: "Cambria";
  display: block;
  width: 100%;
  margin-bottom: 0.625rem;
}
.about-contact-rightbx .formbx-item label sup {
  color: #ff1127;
}
.about-contact-rightbx .formbx-item input {
  display: block;
  width: 100%;
  height: 2.5rem;
  padding: 0 1.25rem;
  background-color: transparent;
  border: 1px solid #9a9a9a;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 1.125rem;
  color: #141414;
}
.about-contact-rightbx .formbx-item-name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.about-contact-rightbx .formbx-item-name input {
  width: 48.4%;
}
.about-contact-rightbx .formbx-codebx {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  height: auto;
  margin-bottom: 1.375rem;
}
.about-contact-rightbx .formbx-codebx input::-webkit-input-placeholder,
.about-contact-rightbx .formbx-codebx textarea::-webkit-input-placeholder {
  font-size: 1.125rem;
  letter-spacing: 1px;
  color: #8b8b8b;
  font-family: "Cambria";
}
.about-contact-rightbx .formbx-codebx input:-moz-placeholder,
.about-contact-rightbx .formbx-codebx textarea:-moz-placeholder {
  font-size: 1.125rem;
  letter-spacing: 1px;
  color: #8b8b8b;
  font-family: "Cambria";
}
.about-contact-rightbx .formbx-codebx input::-moz-placeholder,
.about-contact-rightbx .formbx-codebx textarea::-moz-placeholder {
  font-size: 1.125rem;
  letter-spacing: 1px;
  color: #8b8b8b;
  font-family: "Cambria";
}
.about-contact-rightbx .formbx-codebx input:-ms-input-placeholder,
.about-contact-rightbx .formbx-codebx textarea:-ms-input-placeholder {
  font-size: 1.125rem;
  letter-spacing: 1px;
  color: #8b8b8b;
  font-family: "Cambria";
}
.about-contact-rightbx .formbx-codebx label {
  font-size: 1rem;
  color: #141414;
  line-height: 1.5em;
  font-weight: 500;
  font-family: "Cambria";
  display: block;
  width: 100%;
  margin-bottom: 0.625rem;
}
.about-contact-rightbx .formbx-codebx label sup {
  color: #ff1127;
}
.about-contact-rightbx .formbx-codebx input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 0;
  height: 2.5rem;
  padding: 0 1.25rem;
  background-color: transparent;
  border: 1px solid #9a9a9a;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 1.125rem;
  color: #141414;
}
.about-contact-rightbx .formbx-codebx .codeimg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 2.5rem;
  margin-left: 1.25rem;
  border: 1px solid #9a9a9a;
}
.about-contact-rightbx .formbx-codebx .codeimg img {
  display: block;
  width: auto;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.about-contact-rightbx .formbx-policy h4 {
  font-size: 1rem;
  color: #2b2b2b;
  line-height: 1em;
  font-weight: 400;
  font-family: "Cambria-Bold";
  margin-bottom: 0.625rem;
}
.about-contact-rightbx .formbx-policy-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.about-contact-rightbx .formbx-policy-item label > p {
  font-size: 1rem;
  line-height: 1.375rem;
  color: #454547;
}
.about-contact-rightbx .formbx-policy-item input {
  position: relative;
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.5rem;
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid #454547;
  border-radius: 0.25rem;
  backdrop-filter: blur(6px);
}
.about-contact-rightbx .formbx-policy-item input::before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  background: url("../images/icons/currenticon.png") no-repeat center center;
  background-size: contain;
  opacity: 0;
}
.about-contact-rightbx .formbx-policy-item input.statistics:checked::before {
  opacity: 1;
}
.about-contact-rightbx .formbx-btnbx {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 100%;
}
.about-contact-rightbx .formbx-btnbx button {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 2.5rem;
  margin-top: 1rem;
  border: 0;
  margin-right: auto;
  padding: 0 2rem;
  background: #12445c;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 1.125rem;
  color: #fff;
  text-transform: uppercase;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.about-contact-rightbx .formbx-btnbx button:hover {
  cursor: pointer;
  text-decoration: underline;
}

.teampopup {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  z-index: 999;
}
.teampopup.active {
  display: block;
}
.teampopup-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 70%;
  height: 40%;
  background-color: #fff;
  -webkit-box-shadow: 0 0 1.5rem 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 1.5rem 0 rgba(0, 0, 0, 0.2);
  padding: 3rem;
  border-radius: 0.25rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.teampopup-content .closebtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 2.5rem;
  height: 2.5rem;
}
.teampopup-content .closebtn:hover {
  cursor: pointer;
}
.teampopup-content .closebtn i {
  font-size: 1.5rem;
  color: #333;
}
.teampopup-content-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  width: 50%;
  height: 100%;
}
.teampopup-content-left .team-name {
  font-size: 2rem;
  color: #2b2b2b;
  line-height: 1.3em;
  font-weight: 400;
  font-family: "Cambria";
  text-align: center;
  margin-bottom: 1.25rem;
}
.teampopup-content-left .team-job {
  font-size: 1.125rem;
  color: #2b2b2b;
  line-height: 1em;
  font-weight: 400;
  font-family: "Cambria";
  margin-bottom: 1.25rem;
}
.teampopup-content-intro {
  width: 50%;
}
.teampopup-content-intro p {
  font-size: 1.125rem;
  color: #2b2b2b;
  line-height: 1.875rem;
  font-weight: 400;
  font-family: "Cambria";
  color: #454547;
}

@media (min-width: 320px) and (max-width: 1023px) {
  .about-profile {
    padding-bottom: 0;
  }
  .about-profile-title {
    padding: 3rem 0;
  }
  .about-profile-title h3 {
    font-size: 3.5rem;
  }
  .about-profile-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .about-profile-content-textbx {
    width: 100%;
    padding: 2rem 1.5rem;
    margin-bottom: 2rem;
  }
  .about-profile-content-imgbx {
    width: 100%;
  }
  .about-profile-num-item {
    width: 32%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .about-profile-num-item .numbx {
    font-size: 3.5rem;
  }
  .about-profile-num-item .txtbx {
    margin-left: 0;
    margin-top: 0.625rem;
    font-size: 0.75rem;
    line-height: 1.7em;
    text-align: center;
  }
  .about-team-content-title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .about-team-content-title h3 {
    font-size: 3.5rem;
    max-width: 100%;
  }
  .about-team-content-center .teamlist .teamlist-item {
    width: 49%;
  }
  .about-team-content-center .teamlist .teamlist-item:nth-child(1) {
    border-bottom: 0;
  }
  .about-step {
    padding: 3rem 0;
  }
  .about-step-title {
    margin-bottom: 2.5rem;
  }
  .about-step-title h3 {
    font-size: 3.5rem;
    max-width: 100%;
  }
  .about-step-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .about-step-content-nav {
    width: 100%;
  }
  .about-step-content-intro {
    width: 100%;
    height: 25rem;
    margin: 1.875rem 0;
  }
  .about-step-content-intro .asci-item {
    padding: 1.5rem;
  }
  .about-step-content-imgbx {
    width: 100%;
    height: 25rem;
  }
  .about-contact {
    padding: 2rem 0;
  }
  .about-contact-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .about-contact-imgbx {
    width: 100%;
    height: 20rem;
    margin-bottom: 2rem;
  }
  .about-contact-rightbx {
    width: 100%;
    padding-left: 0;
  }
  .teampopup-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 96%;
    height: auto;
  }
  .teampopup-content-left {
    width: 100%;
    margin-bottom: 1.25rem;
  }
  .teampopup-content-intro {
    width: 100%;
  }
}
/* CSS HACKS FOR OLDER BROWSERS - IGNORE THESE LINES */
/*
 * @Author       : MengYu
 * @Version      : V1.0
 * @Date         : 2025-10-13 11:08:33
 * @LastEditTime : 2025-11-25 16:13:47
 * @Description  : 主文件
*/
.case-content {
  padding-bottom: 3.75rem;
}
.case-content-title {
  padding: 5rem 0;
}
.case-content-title h3 {
  font-size: 5.625rem;
  color: #12445c;
  line-height: 1em;
  font-weight: 400;
  font-family: "Cambria";
  text-align: center;
  text-transform: uppercase;
}
.case-content-listbx {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.case-content-listbx .zhanwei {
  width: 24%;
}
.case-content-listbx-item {
  position: relative;
  width: 24%;
  margin-bottom: 2.5rem;
}
.case-content-listbx-item:hover .ccli-imgbx img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
.case-content-listbx-item:hover .ccli-imgbx .detailbtn {
  opacity: 1;
}
.case-content-listbx-item .ccli-imgbx {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
}
.case-content-listbx-item .ccli-imgbx img {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.case-content-listbx-item .ccli-imgbx .detailbtn {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  font-size: 1rem;
  color: #fff;
  line-height: 1em;
  font-weight: 400;
  font-family: "Cambria";
  text-transform: uppercase;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background-color: #12445c;
  opacity: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.case-content-listbx-item .ccli-textbx {
  padding: 0.75rem 0;
}
.case-content-listbx-item .ccli-textbx p {
  font-size: 1rem;
  color: #999;
  line-height: 1.5rem;
  font-weight: 400;
  font-family: "Cambria";
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  min-height: 3rem;
}
.case-content-listbx-item .ccli-textbx h4 {
  margin-top: 0.5rem;
  font-size: 1.5rem;
  color: #12445c;
  line-height: 1em;
  font-weight: 400;
  font-family: "Cambria";
  text-transform: capitalize;
}

.casedetail {
  background-color: #f1f1ee;
}
.casedetail-topbx {
  padding: 0 2%;
  background-color: #f1f1ee;
}
.casedetail-topbx-title {
  padding: 5rem 0;
}
.casedetail-topbx-title h3 {
  font-size: 3.75rem;
  color: #12445c;
  line-height: 1em;
  font-weight: 400;
  font-family: "Cambria";
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.casedetail-topbx-title p {
  font-size: 1.125rem;
  color: #666;
  line-height: 2em;
  font-weight: 400;
  font-family: "Cambria";
  text-align: center;
}
.casedetail-content {
  position: relative;
  background-color: #f1f1ee;
}
.casedetail-content-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  padding-bottom: 5rem;
}
.casedetail-content-left {
  position: sticky;
  top: 12vh;
  left: 0;
  width: 26%;
  padding-top: 2rem;
  border-top: 1px solid #333;
}
.casedetail-content-left h3 {
  font-size: 2.25rem;
  color: #12445c;
  line-height: 1em;
  font-weight: 400;
  font-family: "Cambria";
  text-transform: uppercase;
}
.casedetail-content-left-center {
  margin-top: 6rem;
  width: 100%;
}
.casedetail-content-left-center .info {
  margin-bottom: 3.125rem;
}
.casedetail-content-left-center .info li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  padding: 0.5rem 0;
  border-bottom: 1px solid #333;
}
.casedetail-content-left-center .info li span {
  font-size: 1.125rem;
  color: #999;
  line-height: 1.875rem;
  font-weight: 400;
  font-family: "Cambria";
}
.casedetail-content-left-center .info li-txt p {
  font-size: 1.125rem;
  color: #333;
  line-height: 1.875rem;
  font-weight: 400;
  font-family: "Cambria";
  text-align: right;
}
.casedetail-content-left-center .info li p {
  font-size: 1.125rem;
  color: #333;
  line-height: 1.875rem;
  font-weight: 400;
  font-family: "Cambria";
  text-align: right;
}
.casedetail-content-left-center .downloadbtn {
  width: 100%;
  height: 3.375rem;
  margin-bottom: 1.875rem;
}
.casedetail-content-left-center .downloadbtn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  width: 100%;
  height: 100%;
  background-color: #12445c;
}
.casedetail-content-left-center .downloadbtn a p {
  font-size: 1rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.casedetail-content-left-center .downloadbtn a .iconfont {
  font-size: 1.125rem;
  color: #ccc;
  margin-left: 0.75rem;
}
.casedetail-content-left-center .downloadbtn a:hover p {
  text-decoration: underline;
}
.casedetail-content-left-center .sharebx {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  width: 100%;
  height: 3.125rem;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
}
.casedetail-content-left-center .sharebx p {
  font-size: 1.125rem;
  color: #666;
  line-height: 1em;
  font-weight: 400;
  font-family: "Cambria";
}
.casedetail-content-left-center .sharebx ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.casedetail-content-left-center .sharebx ul li:not(:last-child) {
  margin-right: 1.25rem;
}
.casedetail-content-left-center .sharebx ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  font-size: 1.125rem;
  color: #666;
  line-height: 1.4em;
  font-weight: 400;
  font-family: "Cambria";
  width: 3.125rem;
  height: 3.125rem;
  border: 1px solid #333;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.casedetail-content-left-center .sharebx ul li a:hover {
  background-color: #12445c;
  border-color: #12445c;
  color: #fff;
}
.casedetail-content-right {
  width: 68%;
  margin-left: auto;
}
.casedetail-content-right .ccr-md {
  padding: 2rem 0;
  border-bottom: 1px solid #999;
}
.casedetail-content-right .ccr-md:first-child {
  border-top: 1px solid #999;
}
.casedetail-content-right .ccr-md h4 {
  font-size: 2.25rem;
  color: #12445c;
  line-height: 1em;
  font-weight: 400;
  font-family: "Cambria";
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.casedetail-content-right .ccr-md p {
  font-size: 1rem;
  color: #666;
  line-height: 2rem;
  font-weight: 400;
  font-family: "Cambria";
}
.casedetail-content-right .ccr-md-intro p {
  font-size: 1rem;
  color: #666;
  line-height: 2rem;
  font-weight: 400;
  font-family: "Cambria";
}
.casedetail-content-right .ccr-md .beforedian p {
  position: relative;
  padding-left: 1rem;
}
.casedetail-content-right .ccr-md .beforedian p::before {
  position: absolute;
  top: 0.75rem;
  left: 0;
  content: "";
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  background-color: #12445c;
  border-radius: 50%;
}
.casedetail-project {
  padding: 0 0 5rem;
  background-color: #f1f1ee;
}
.casedetail-project-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  border-top: 1px solid #999;
  padding-top: 5rem;
  margin-bottom: 2.5rem;
}
.casedetail-project-title h2 {
  font-size: 2.25rem;
  color: #12445c;
  line-height: 1em;
  font-weight: 400;
  font-family: "Cambria";
  text-transform: uppercase;
}
.casedetail-project-title .morebtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.casedetail-project-title .morebtn p {
  font-size: 1rem;
  color: #12445c;
  line-height: 1em;
  font-weight: 400;
  font-family: "Cambria";
  text-transform: uppercase;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.casedetail-project-title .morebtn i {
  margin-left: 0.25rem;
  font-size: 1.25rem;
  color: #12445c;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.casedetail-project-title .morebtn:hover p {
  text-decoration: underline;
}
.casedetail-project-title .morebtn:hover i {
  margin-left: 0.5rem;
}
.casedetail-project-list {
  position: relative;
  padding-bottom: 5rem;
  border-bottom: 1px solid #999;
}
.casedetail-project-list .scrb-plan-center-list {
  overflow: hidden;
}
.casedetail-project-list .scrb-plan-center-list .swiper-slide {
  position: relative;
}
.casedetail-project-list .scrb-plan-center-list .swiper-slide:hover .item-imgbx img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
.casedetail-project-list .scrb-plan-center-list .swiper-slide:hover .item-imgbx .detailbtn {
  opacity: 1;
}
.casedetail-project-list .scrb-plan-center-list .swiper-slide .item-imgbx {
  position: relative;
  width: 100%;
  aspect-ratio: 453/300;
  overflow: hidden;
}
.casedetail-project-list .scrb-plan-center-list .swiper-slide .item-imgbx img {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.casedetail-project-list .scrb-plan-center-list .swiper-slide .item-imgbx .detailbtn {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  font-size: 1rem;
  color: #fff;
  line-height: 1em;
  font-weight: 400;
  font-family: "Cambria";
  text-transform: uppercase;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background-color: #12445c;
  opacity: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.casedetail-project-list .scrb-plan-center-list .swiper-slide .item-textbx {
  padding: 0.75rem 0;
}
.casedetail-project-list .scrb-plan-center-list .swiper-slide .item-textbx p {
  font-size: 1rem;
  color: #999;
  line-height: 1.5rem;
  font-weight: 400;
  font-family: "Cambria";
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  min-height: 3rem;
}
.casedetail-project-list .scrb-plan-center-list .swiper-slide .item-textbx h4 {
  margin-top: 0.5rem;
  font-size: 1.5rem;
  color: #12445c;
  line-height: 1em;
  font-weight: 400;
  font-family: "Cambria";
  text-transform: capitalize;
}
.casedetail-project-list .swiper-btn {
  position: absolute;
  top: 35%;
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 50%;
  background-color: #fff;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.casedetail-project-list .swiper-btn:hover {
  background-color: #12445c;
}
.casedetail-project-list .swiper-btn:hover span {
  color: #fff;
}
.casedetail-project-list .swiper-btn.swiper-button-disabled {
  opacity: 0;
}
.casedetail-project-list .swiper-btn span {
  font-size: 1.5rem;
  color: #12445c;
}
.casedetail-project-list .swiper-btn-prev {
  left: 0;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.casedetail-project-list .swiper-btn-next {
  right: 0;
  -webkit-transform: translate(50%, -50%);
      -ms-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
}
.casedetail-project-list .zhanwei {
  width: 31.9%;
}
.casedetail-project-list-item {
  position: relative;
  width: 31.9%;
}
.casedetail-project-list-item:hover .cpli-imgbx img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
.casedetail-project-list-item:hover .cpli-imgbx .detailbtn {
  opacity: 1;
}
.casedetail-project-list-item .cpli-imgbx {
  position: relative;
  width: 100%;
  aspect-ratio: 453/300;
  overflow: hidden;
}
.casedetail-project-list-item .cpli-imgbx img {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.casedetail-project-list-item .cpli-imgbx .detailbtn {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  font-size: 1rem;
  color: #fff;
  line-height: 1em;
  font-weight: 400;
  font-family: "Cambria";
  text-transform: uppercase;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background-color: #12445c;
  opacity: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.casedetail-project-list-item .cpli-txt {
  padding: 0.75rem 0;
}
.casedetail-project-list-item .cpli-txt p {
  font-size: 1rem;
  color: #999;
  line-height: 1.5rem;
  font-weight: 400;
  font-family: "Cambria";
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.casedetail-project-list-item .cpli-txt h4 {
  margin-top: 0.5rem;
  font-size: 1.5rem;
  color: #12445c;
  line-height: 1em;
  font-weight: 400;
  font-family: "Cambria";
  text-transform: capitalize;
}

@media (min-width: 320px) and (max-width: 1023px) {
  .case-content {
    padding-bottom: 0;
  }
  .case-content-title {
    padding: 3rem 0;
  }
  .case-content-title h3 {
    font-size: 3.5rem;
  }
  .case-content-listbx-item {
    width: 100%;
  }
  .case-content-listbx-item:not(:last-child) {
    margin-bottom: 1.25rem;
  }
  .casedetail-topbx {
    padding-bottom: 0;
  }
  .casedetail-topbx-title {
    padding: 3rem 0;
  }
  .casedetail-topbx-title h3 {
    font-size: 3.5rem;
  }
  .casedetail-topbx-title p {
    font-size: 1.5rem;
  }
  .casedetail-content-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .casedetail-content-left {
    position: static;
    width: 100%;
  }
  .casedetail-content-left-center {
    margin-top: 2rem;
  }
  .casedetail-content-right {
    width: 100%;
  }
  .casedetail-content-right .ccr-md:first-child {
    border-top: 0;
  }
  .casedetail-project-list .swiper-btn-prev {
    -webkit-transform: translate(-1rem, -50%);
        -ms-transform: translate(-1rem, -50%);
            transform: translate(-1rem, -50%);
  }
  .casedetail-project-list .swiper-btn-next {
    -webkit-transform: translate(1rem, -50%);
        -ms-transform: translate(1rem, -50%);
            transform: translate(1rem, -50%);
  }
}
/* CSS HACKS FOR OLDER BROWSERS - IGNORE THESE LINES */
/*
 * @Author       : MengYu
 * @Version      : V1.0
 * @Date         : 2025-10-13 11:08:33
 * @LastEditTime : 2025-11-25 16:13:47
 * @Description  : 主文件
*/
.service-topbx {
  padding-bottom: 3.75rem;
}
.service-topbx-title {
  padding: 5rem 0;
}
.service-topbx-title h3 {
  font-size: 5.625rem;
  color: #12445c;
  line-height: 1em;
  font-weight: 400;
  font-family: "Cambria";
  text-align: center;
  text-transform: uppercase;
}
.service-topbx-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  width: 100%;
}
.service-topbx-content-left {
  width: 60%;
  padding-right: 5%;
}
.service-topbx-content-left p {
  font-size: 1.125rem;
  color: #666;
  line-height: 1.5em;
  font-weight: 400;
  font-family: "Cambria";
}
.service-topbx-content-left .btnbx {
  margin-top: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.service-topbx-content-left .btnbx-iconbx {
  width: 2.5rem;
  aspect-ratio: 1;
  margin-right: 1rem;
  background-color: #12445c;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.service-topbx-content-left .btnbx-iconbx .iconfont {
  font-size: 1rem;
  color: #fff;
}
.service-topbx-content-left .btnbx p {
  font-size: 1.125rem;
  color: #666;
  line-height: 1em;
  font-weight: 400;
  font-family: "Cambria";
  text-transform: uppercase;
}
.service-topbx-content-imgbx {
  width: 40%;
  height: auto;
}
.service-topbx-content-imgbx img {
  width: 100%;
  height: auto;
}
.service-content {
  margin-bottom: 3.75rem;
  background-color: #f1f1ee;
  padding: 2.5rem 0;
}
.service-content-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  padding: 3.125rem 0;
  border-bottom: 1px solid #b9b9b9;
}
.service-content-list-item:first-child {
  border-top: 1px solid #b9b9b9;
}
.service-content-list-item .scli-num {
  font-size: 2rem;
  color: #2b2b2b;
  line-height: 1.1em;
  font-weight: 400;
  font-family: "Cambria";
}
.service-content-list-item .scli-head {
  width: 22%;
  font-size: 2rem;
  color: #2b2b2b;
  line-height: 1.2em;
  font-weight: 400;
  font-family: "Cambria";
}
.service-content-list-item .scli-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 56%;
}
.service-content-list-item .scli-center-textbx {
  width: 100%;
  padding-right: 3%;
  padding-top: 0.5rem;
}
.service-content-list-item .scli-center-textbx-intro {
  margin-bottom: 3.125rem;
  min-height: 3.75rem;
}
.service-content-list-item .scli-center-textbx-intro p {
  font-size: 1.125rem;
  color: #040404;
  line-height: 1.875rem;
  font-weight: 400;
  font-family: "Cambria";
}
.service-content-list-item .scli-center-textbx-detailbtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.service-content-list-item .scli-center-textbx-detailbtn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.service-content-list-item .scli-center-textbx-detailbtn a p {
  font-size: 1rem;
  color: #0f0f0f;
  line-height: 1em;
  font-weight: 400;
  font-family: "Cambria";
  text-transform: uppercase;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.service-content-list-item .scli-center-textbx-detailbtn a .iconfont {
  font-size: 1.125rem;
  color: #000;
  margin-left: 0.625rem;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.service-content-list-item .scli-center-textbx-detailbtn a:hover p {
  text-decoration: underline;
}
.service-content-list-item .scli-center-textbx-detailbtn a:hover .iconfont {
  margin-left: 1.25rem;
}

.servicedetail-content {
  background-color: #f1f1ee;
  margin-bottom: 3.75rem;
}
.servicedetail-content-container {
  position: relative;
}
.servicedetail-content .prevbtn {
  position: sticky;
  top: 17.5vh;
  left: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 2.5rem;
}
.servicedetail-content .prevbtn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 100%;
  padding: 0 1.25rem;
  background-color: #12445c;
}
.servicedetail-content .prevbtn a:hover span {
  text-decoration: underline;
}
.servicedetail-content .prevbtn a .iconfont {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  font-size: 1.125rem;
  color: #fff;
  margin-right: 0.75rem;
}
.servicedetail-content .prevbtn a span {
  font-size: 1rem;
  color: #fff;
  line-height: 1em;
  font-weight: 400;
  font-family: "Cambria";
  text-transform: uppercase;
}
.servicedetail-content-right {
  width: 70%;
  margin: -2.5rem auto 0;
  padding-bottom: 3.75rem;
}
.servicedetail-content-right-title {
  padding: 5rem 0;
}
.servicedetail-content-right-title h3 {
  font-size: 3.75rem;
  color: #12445c;
  line-height: 1em;
  font-weight: 400;
  font-family: "Cambria";
  text-align: center;
  text-transform: uppercase;
}
.servicedetail-content-right-body .scrb-intro {
  padding-bottom: 1rem;
  border-bottom: 1px solid #999;
}
.servicedetail-content-right-body .scrb-intro p {
  font-size: 1.125rem;
  color: #666;
  line-height: 2em;
  font-weight: 400;
  font-family: "Cambria";
}
.servicedetail-content-right-body .scrb-intro a {
  font-size: 1.125rem;
  color: #12445c;
  line-height: 2em;
  font-weight: 400;
  font-family: "Cambria";
  text-decoration: underline;
}
.servicedetail-content-right-body .scrb-md {
  border-bottom: 1px solid #999;
}
.servicedetail-content-right-body .scrb-md-title h4 {
  font-size: 2.25rem;
  color: #12445c;
  line-height: 1em;
  font-weight: 400;
  font-family: "Cambria";
  text-transform: uppercase;
  margin-bottom: 0.625rem;
}
.servicedetail-content-right-body .scrb-md-title p {
  font-size: 1rem;
  color: #666;
  line-height: 2em;
  font-weight: 400;
  font-family: "Cambria";
}
.servicedetail-content-right-body .scrb-md .beforedian p {
  position: relative;
  padding-left: 1rem;
}
.servicedetail-content-right-body .scrb-md .beforedian p::before {
  position: absolute;
  top: 0.75rem;
  left: 0;
  content: "";
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  background-color: #12445c;
  border-radius: 50%;
}
.servicedetail-content-right-body .scrb-md .aboutbtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.servicedetail-content-right-body .scrb-md .aboutbtn span {
  font-size: 1rem;
  color: #12445c;
  line-height: 1em;
  font-weight: 400;
  font-family: "Cambria";
  text-transform: uppercase;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.servicedetail-content-right-body .scrb-md .aboutbtn .iconfont {
  font-size: 1.125rem;
  color: #12445c;
  margin-left: 0.625rem;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.servicedetail-content-right-body .scrb-md .aboutbtn:hover span {
  text-decoration: underline;
}
.servicedetail-content-right-body .scrb-md .aboutbtn:hover .iconfont {
  margin-left: 1.25rem;
}
.servicedetail-content-right-body .scrb-services {
  padding: 2rem 0 5rem;
}
.servicedetail-content-right-body .scrb-services-center {
  margin-top: 3.75rem;
}
.servicedetail-content-right-body .scrb-services-center .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.servicedetail-content-right-body .scrb-services-center .row:not(:last-child) {
  margin-bottom: 6.25rem;
}
.servicedetail-content-right-body .scrb-services-center .row .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  position: relative;
  width: 18.6%;
  aspect-ratio: 1;
  border-radius: 50%;
}
.servicedetail-content-right-body .scrb-services-center .row .item::after {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid #555;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.servicedetail-content-right-body .scrb-services-center .row .item:hover {
  background-color: #12445c;
}
.servicedetail-content-right-body .scrb-services-center .row .item:hover::after {
  width: 90%;
  height: 90%;
}
.servicedetail-content-right-body .scrb-services-center .row .item img {
  height: 4.5rem;
  width: auto;
}
.servicedetail-content-right-body .scrb-services-center .row .item i {
  font-size: 4.5rem;
  color: #9b9b9b;
}
.servicedetail-content-right-body .scrb-services-center .row .item h5 {
  position: absolute;
  bottom: -2rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  text-align: center;
  font-size: 1rem;
  color: #245168;
  line-height: 1em;
  font-weight: 700;
  font-family: "Cambria";
}
.servicedetail-content-right-body .scrb-services-center .row .xian {
  display: block;
  width: 1px;
  background-color: #d5d5d5;
}
.servicedetail-content-right-body .scrb-office {
  padding: 2rem 0 3.125rem;
}
.servicedetail-content-right-body .scrb-office-center h5 {
  font-size: 1.5rem;
  color: #12445c;
  line-height: 1em;
  font-weight: 400;
  font-family: "Cambria";
  text-transform: uppercase;
  margin-bottom: 0.625rem;
}
.servicedetail-content-right-body .scrb-office-center p {
  font-size: 1rem;
  color: #666;
  line-height: 2em;
  font-weight: 400;
  font-family: "Cambria";
}
.servicedetail-content-right-body .scrb-office-center .listbx {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}
.servicedetail-content-right-body .scrb-office-center .listbx .scrb-office-center-item {
  width: 47%;
  position: relative;
  padding: 1.875rem 1.5rem;
  margin-top: 4rem;
  border-radius: 0.125rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-top: 1px solid #555;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.servicedetail-content-right-body .scrb-office-center .listbx .scrb-office-center-item span,
.servicedetail-content-right-body .scrb-office-center .listbx .scrb-office-center-item .num {
  position: absolute;
  top: 0;
  left: 1.5rem;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  width: 1.875rem;
  height: 1.875rem;
  background-color: #979797;
  border-radius: 50%;
  font-size: 1rem;
  font-style: none;
  color: #fff;
}
.servicedetail-content-right-body .scrb-office-center .listbx .scrb-office-center-item .iconbx {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 2rem;
  height: 2rem;
}
.servicedetail-content-right-body .scrb-office-center .listbx .scrb-office-center-item .iconbx img {
  width: 100%;
  height: 100%;
}
.servicedetail-content-right-body .scrb-office-center .listbx .scrb-office-center-item .iconbx .fas,
.servicedetail-content-right-body .scrb-office-center .listbx .scrb-office-center-item .iconbx i {
  font-size: 1.75rem;
  color: #13445c;
}
.servicedetail-content-right-body .scrb-office-center .listbx .scrb-office-center-item .textbx {
  margin-top: 1.25rem;
}
.servicedetail-content-right-body .scrb-office-center .listbx .scrb-office-center-item .textbx h5 {
  font-size: 1.25rem;
  color: #12445c;
  line-height: 1em;
  font-weight: 700;
  font-family: "Cambria";
  margin-bottom: 1.25rem;
}
.servicedetail-content-right-body .scrb-office-center .listbx .scrb-office-center-item .textbx-intro p {
  font-size: 1rem;
  color: #666;
  line-height: 2em;
  font-weight: 400;
  font-family: "Cambria";
}
.servicedetail-content-right-body .scrb-office2 {
  padding: 2rem 0 3.125rem;
}
.servicedetail-content-right-body .scrb-office2-center h5 {
  font-size: 1.5rem;
  color: #12445c;
  line-height: 1em;
  font-weight: 400;
  font-family: "Cambria";
  text-transform: uppercase;
  margin-bottom: 0.625rem;
}
.servicedetail-content-right-body .scrb-office2-center p {
  font-size: 1rem;
  color: #666;
  line-height: 2em;
  font-weight: 400;
  font-family: "Cambria";
}
.servicedetail-content-right-body .scrb-office2-center img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.servicedetail-content-right-body .scrb-office2-center .listbx {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}
.servicedetail-content-right-body .scrb-office2-center .listbx .scrb-office2-center-item {
  width: 30%;
  position: relative;
  padding: 1.875rem 1.5rem;
  margin-top: 4rem;
  border-radius: 0.125rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-top: 1px solid #555;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.servicedetail-content-right-body .scrb-office2-center .listbx .scrb-office2-center-item span {
  position: absolute;
  top: 0;
  left: 1.5rem;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  width: 1.875rem;
  height: 1.875rem;
  background-color: #979797;
  border-radius: 50%;
  font-size: 1rem;
  color: #fff;
}
.servicedetail-content-right-body .scrb-office2-center .listbx .scrb-office2-center-item .iconbx {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 2rem;
  height: 2rem;
}
.servicedetail-content-right-body .scrb-office2-center .listbx .scrb-office2-center-item .iconbx img {
  width: 100%;
  height: 100%;
}
.servicedetail-content-right-body .scrb-office2-center .listbx .scrb-office2-center-item .textbx {
  margin-top: 1.25rem;
}
.servicedetail-content-right-body .scrb-office2-center .listbx .scrb-office2-center-item .textbx h5 {
  font-size: 1.25rem;
  color: #12445c;
  line-height: 1em;
  font-weight: 700;
  font-family: "Cambria";
  margin-bottom: 1.25rem;
}
.servicedetail-content-right-body .scrb-office2-center .listbx .scrb-office2-center-item .textbx-intro p {
  font-size: 1rem;
  color: #666;
  line-height: 2em;
  font-weight: 400;
  font-family: "Cambria";
}
.servicedetail-content-right-body .scrb-office2-center .listbx .scrb-office2-center-item:nth-child(2) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 0;
  padding: 0 5%;
  border: none;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0);
}
.servicedetail-content-right-body .scrb-office2-center .listbx .scrb-office2-center-item:nth-child(2) img {
  width: 100%;
  height: auto;
}
.servicedetail-content-right-body .scrb-office {
  padding: 2rem 0 3.125rem;
}
.servicedetail-content-right-body .scrb-office-center h5 {
  font-size: 1.5rem;
  color: #12445c;
  line-height: 1em;
  font-weight: 400;
  font-family: "Cambria";
  text-transform: uppercase;
  margin-bottom: 0.625rem;
}
.servicedetail-content-right-body .scrb-office-center p {
  font-size: 1rem;
  color: #666;
  line-height: 2em;
  font-weight: 400;
  font-family: "Cambria";
}
.servicedetail-content-right-body .scrb-office-center .listbx {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}
.servicedetail-content-right-body .scrb-office-center .listbx .scrb-office-center-item {
  width: 47%;
  position: relative;
  padding: 1.875rem 1.5rem;
  margin-top: 4rem;
  border-radius: 0.125rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-top: 1px solid #555;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.servicedetail-content-right-body .scrb-office-center .listbx .scrb-office-center-item span {
  position: absolute;
  top: 0;
  left: 1.5rem;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  width: 1.875rem;
  height: 1.875rem;
  background-color: #979797;
  border-radius: 50%;
  font-size: 1rem;
  color: #fff;
}
.servicedetail-content-right-body .scrb-office-center .listbx .scrb-office-center-item .iconbx {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 2rem;
  height: 2rem;
}
.servicedetail-content-right-body .scrb-office-center .listbx .scrb-office-center-item .iconbx img {
  width: 100%;
  height: 100%;
}
.servicedetail-content-right-body .scrb-office-center .listbx .scrb-office-center-item .textbx {
  margin-top: 1.25rem;
}
.servicedetail-content-right-body .scrb-office-center .listbx .scrb-office-center-item .textbx h5 {
  font-size: 1.25rem;
  color: #12445c;
  line-height: 1em;
  font-weight: 700;
  font-family: "Cambria";
  margin-bottom: 1.25rem;
}
.servicedetail-content-right-body .scrb-office-center .listbx .scrb-office-center-item .textbx-intro p {
  font-size: 1rem;
  color: #666;
  line-height: 2em;
  font-weight: 400;
  font-family: "Cambria";
}
.servicedetail-content-right-body .scrb-fund {
  padding: 2rem 0 0;
}
.servicedetail-content-right-body .scrb-fund-center h5 {
  font-size: 1.5rem;
  color: #12445c;
  line-height: 1em;
  font-weight: 400;
  font-family: "Cambria";
  text-transform: uppercase;
  margin-bottom: 0.625rem;
}
.servicedetail-content-right-body .scrb-fund-center p {
  font-size: 1rem;
  color: #666;
  line-height: 2em;
  font-weight: 400;
  font-family: "Cambria";
}
.servicedetail-content-right-body .scrb-fund-center .ringlist {
  width: 100%;
}
.servicedetail-content-right-body .scrb-fund-center .ringlist-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.servicedetail-content-right-body .scrb-fund-center .ringlist-row:first-child .ringlist-row-item {
  top: 2.5rem;
  background: linear-gradient(135deg, rgba(181, 151, 95, 0.9), rgba(160, 130, 75, 0.8));
  z-index: 2;
}
.servicedetail-content-right-body .scrb-fund-center .ringlist-row:nth-child(2) .ringlist-row-item {
  bottom: 2.5rem;
  background: linear-gradient(135deg, rgba(19, 68, 92, 0.9), rgba(15, 55, 75, 0.8));
  z-index: 1;
}
.servicedetail-content-right-body .scrb-fund-center .ringlist-row-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  position: relative;
  width: 12.5rem;
  aspect-ratio: 1;
  margin-left: 1.875rem;
  margin-right: 1.875rem;
  border-radius: 50%;
  cursor: pointer;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.servicedetail-content-right-body .scrb-fund-center .ringlist-row-item:hover {
  z-index: 3 !important;
  -webkit-transform: scale(1.06);
      -ms-transform: scale(1.06);
          transform: scale(1.06);
}
.servicedetail-content-right-body .scrb-fund-center .ringlist-row-item .fas,
.servicedetail-content-right-body .scrb-fund-center .ringlist-row-item i {
  font-size: 3rem;
  color: #fff;
  margin-bottom: 0.625rem;
}
.servicedetail-content-right-body .scrb-fund-center .ringlist-row-item p {
  max-width: 80%;
  font-size: 1rem;
  color: #fff;
  font-weight: 600;
  line-height: 1.4em;
  text-align: center;
}
.servicedetail-content-right-body .scrb-plan {
  padding: 2rem 0;
}
.servicedetail-content-right-body .scrb-plan-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.servicedetail-content-right-body .scrb-plan-title .morebtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.servicedetail-content-right-body .scrb-plan-title .morebtn p {
  font-size: 1rem;
  color: #12445c;
  line-height: 1em;
  font-weight: 400;
  font-family: "Cambria";
  text-transform: uppercase;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.servicedetail-content-right-body .scrb-plan-title .morebtn i {
  margin-left: 0.25rem;
  font-size: 1.25rem;
  color: #12445c;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.servicedetail-content-right-body .scrb-plan-title .morebtn:hover p {
  text-decoration: underline;
}
.servicedetail-content-right-body .scrb-plan-title .morebtn:hover i {
  margin-left: 0.5rem;
}
.servicedetail-content-right-body .scrb-plan-center {
  position: relative;
  margin-top: 2.5rem;
}
.servicedetail-content-right-body .scrb-plan-center-list {
  overflow: hidden;
}
.servicedetail-content-right-body .scrb-plan-center-list .swiper-slide {
  position: relative;
}
.servicedetail-content-right-body .scrb-plan-center-list .swiper-slide:hover .item-imgbx img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
.servicedetail-content-right-body .scrb-plan-center-list .swiper-slide:hover .item-imgbx .detailbtn {
  opacity: 1;
}
.servicedetail-content-right-body .scrb-plan-center-list .swiper-slide .item-imgbx {
  position: relative;
  width: 100%;
  aspect-ratio: 453/300;
  overflow: hidden;
}
.servicedetail-content-right-body .scrb-plan-center-list .swiper-slide .item-imgbx img {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.servicedetail-content-right-body .scrb-plan-center-list .swiper-slide .item-imgbx .detailbtn {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  font-size: 1rem;
  color: #fff;
  line-height: 1em;
  font-weight: 400;
  font-family: "Cambria";
  text-transform: uppercase;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background-color: #12445c;
  opacity: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.servicedetail-content-right-body .scrb-plan-center-list .swiper-slide .item-textbx {
  padding: 0.75rem 0;
}
.servicedetail-content-right-body .scrb-plan-center-list .swiper-slide .item-textbx p {
  font-size: 1rem;
  color: #999;
  line-height: 1.5rem;
  font-weight: 400;
  font-family: "Cambria";
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  min-height: 3rem;
}
.servicedetail-content-right-body .scrb-plan-center-list .swiper-slide .item-textbx h4 {
  margin-top: 0.5rem;
  font-size: 1.5rem;
  color: #12445c;
  line-height: 1em;
  font-weight: 400;
  font-family: "Cambria";
  text-transform: capitalize;
}
.servicedetail-content-right-body .scrb-plan-center .swiper-btn {
  position: absolute;
  top: 38%;
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 50%;
  background-color: #fff;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.servicedetail-content-right-body .scrb-plan-center .swiper-btn:hover {
  background-color: #12445c;
}
.servicedetail-content-right-body .scrb-plan-center .swiper-btn:hover span {
  color: #fff;
}
.servicedetail-content-right-body .scrb-plan-center .swiper-btn.swiper-button-disabled {
  opacity: 0;
}
.servicedetail-content-right-body .scrb-plan-center .swiper-btn span {
  font-size: 1.5rem;
  color: #12445c;
}
.servicedetail-content-right-body .scrb-plan-center .swiper-btn-prev {
  left: 0;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.servicedetail-content-right-body .scrb-plan-center .swiper-btn-next {
  right: 0;
  -webkit-transform: translate(50%, -50%);
      -ms-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
}
.servicedetail-content-right-body .scrb-plan-center-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.servicedetail-content-right-body .scrb-plan-center-list .zhanwei {
  width: 31.9%;
}
.servicedetail-content-right-body .scrb-plan-center-list .item {
  position: relative;
  width: 31.9%;
}
.servicedetail-content-right-body .scrb-plan-center-list .item:hover .item-imgbx img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
.servicedetail-content-right-body .scrb-plan-center-list .item:hover .item-imgbx .detailbtn {
  opacity: 1;
}
.servicedetail-content-right-body .scrb-plan-center-list .item-imgbx {
  position: relative;
  width: 100%;
  aspect-ratio: 453/300;
  overflow: hidden;
}
.servicedetail-content-right-body .scrb-plan-center-list .item-imgbx img {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.servicedetail-content-right-body .scrb-plan-center-list .item-imgbx .detailbtn {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  font-size: 1rem;
  color: #fff;
  line-height: 1em;
  font-weight: 400;
  font-family: "Cambria";
  text-transform: uppercase;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background-color: #12445c;
  opacity: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.servicedetail-content-right-body .scrb-plan-center-list .item-txt {
  padding: 0.75rem 0;
}
.servicedetail-content-right-body .scrb-plan-center-list .item-txt p {
  font-size: 1rem;
  color: #999;
  line-height: 1.5rem;
  font-weight: 400;
  font-family: "Cambria";
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  min-height: 3rem;
}
.servicedetail-content-right-body .scrb-plan-center-list .item-txt h4 {
  margin-top: 0.5rem;
  font-size: 1.5rem;
  color: #12445c;
  line-height: 1em;
  font-weight: 400;
  font-family: "Cambria";
  text-transform: capitalize;
}
.servicedetail-content-right-body .scrb-choose {
  padding: 2rem 0;
}
.servicedetail-content-right-body .scrb-choose-center .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 2.5rem 0 0;
  border-top: 1px solid #818181;
  border-bottom: 1px solid #818181;
}
.servicedetail-content-right-body .scrb-choose-center .list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  width: 30%;
  margin-bottom: 2rem;
}
.servicedetail-content-right-body .scrb-choose-center .list li .iconbx {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  width: 1rem;
  height: 1rem;
  margin-right: 0.625rem;
}
.servicedetail-content-right-body .scrb-choose-center .list li .iconbx img {
  max-width: 100%;
  max-height: 100%;
}
.servicedetail-content-right-body .scrb-choose-center .list li p {
  font-size: 1.125rem;
  color: #2b2b2b;
  line-height: 1em;
  font-weight: 400;
  font-family: "Cambria";
  text-transform: uppercase;
}
.servicedetail-content-right-body .scrb-choose-center p {
  font-size: 1rem;
  color: #666;
  line-height: 2em;
  font-weight: 400;
  font-family: "Cambria";
}

@media (min-width: 320px) and (max-width: 1023px) {
  .service-topbx {
    padding-bottom: 0;
  }
  .service-topbx-title {
    padding: 3rem 0;
  }
  .service-topbx-title h3 {
    font-size: 3.5rem;
  }
  .service-topbx-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 2.5rem;
  }
  .service-topbx-content-left {
    width: 100%;
    padding-right: 0;
    margin-bottom: 2rem;
  }
  .service-topbx-content-imgbx {
    width: 100%;
  }
  .service-content-list-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 2rem 0;
  }
  .service-content-list-item .scli-head {
    width: 100%;
    margin: 1rem 0;
  }
  .service-content-list-item .scli-center {
    width: 100%;
  }
  .servicedetail-content .prevbtn {
    display: none;
  }
  .servicedetail-content-right {
    width: 100%;
    margin: 0;
  }
  .servicedetail-content-right-title {
    padding: 3rem 0;
  }
  .servicedetail-content-right-title h3 {
    font-size: 3.5rem;
  }
  .servicedetail-content-right-body .scrb-md-title h4 {
    font-size: 2rem;
    line-height: 1.4em;
  }
  .servicedetail-content-right-body .scrb-services-center .row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .servicedetail-content-right-body .scrb-services-center .row:not(:last-child) {
    margin-bottom: 0;
  }
  .servicedetail-content-right-body .scrb-services-center .row .item {
    width: 45%;
    margin-bottom: 4rem;
  }
  .servicedetail-content-right-body .scrb-services-center .row .xian:nth-child(4) {
    display: none;
  }
  .servicedetail-content-right-body .scrb-office-center .listbx .scrb-office-center-item {
    width: 100%;
    margin-top: 2rem;
  }
  .servicedetail-content-right-body .scrb-office2-center .listbx .scrb-office2-center-item {
    width: 100%;
    margin-top: 2rem;
  }
  .servicedetail-content-right-body .scrb-fund-center .ringlist-row:first-child .ringlist-row-item {
    top: 1rem;
  }
  .servicedetail-content-right-body .scrb-fund-center .ringlist-row-item {
    width: 10rem;
    margin-left: 0;
    margin-right: 0;
  }
  .servicedetail-content-right-body .scrb-fund-center .ringlist-row-item i {
    font-size: 2rem;
  }
  .servicedetail-content-right-body .scrb-fund-center .ringlist-row-item p {
    font-size: 0.875rem;
  }
  .servicedetail-content-right-body .scrb-plan-center .swiper-btn-prev {
    -webkit-transform: translate(-1rem, -50%);
        -ms-transform: translate(-1rem, -50%);
            transform: translate(-1rem, -50%);
  }
  .servicedetail-content-right-body .scrb-plan-center .swiper-btn-next {
    -webkit-transform: translate(1rem, -50%);
        -ms-transform: translate(1rem, -50%);
            transform: translate(1rem, -50%);
  }
}
/* CSS HACKS FOR OLDER BROWSERS - IGNORE THESE LINES */
/*
 * @Author       : MengYu
 * @Version      : V1.0
 * @Date         : 2025-10-13 11:08:33
 * @LastEditTime : 2025-11-25 16:13:47
 * @Description  : 主文件
*/
.contact-content {
  background-color: #f1f1ee;
  padding-bottom: 6.25rem;
}
.contact-content-title {
  padding: 5rem 0;
}
.contact-content-title h3 {
  font-size: 5.625rem;
  color: #12445c;
  line-height: 1em;
  font-weight: 400;
  font-family: "Cambria";
  text-align: center;
  text-transform: uppercase;
}
.contact-content-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.contact-content-center-leftbx {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  width: 48%;
  padding: 0 4%;
  border: 1px solid #8b8b8b;
}
.contact-content-center-leftbx .head {
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.contact-content-center-leftbx .head h4 {
  font-size: 3.75rem;
  color: #12445c;
  line-height: 1em;
  font-weight: 400;
  font-family: "Cambria";
}
.contact-content-center-leftbx .formbx {
  width: 100%;
  height: 27rem;
}
.contact-content-center-leftbx .formbx p {
  font-size: 1.125rem;
  color: #666;
  line-height: 1.1em;
  font-weight: 400;
  font-family: "Cambria";
  margin-bottom: 1.25rem;
}
.contact-content-center-leftbx .formbx-item {
  width: 100%;
  height: auto;
  margin-bottom: 1.375rem;
}
.contact-content-center-leftbx .formbx-item input::-webkit-input-placeholder,
.contact-content-center-leftbx .formbx-item textarea::-webkit-input-placeholder {
  font-size: 1.125rem;
  letter-spacing: 1px;
  color: #8b8b8b;
  font-family: "Cambria";
}
.contact-content-center-leftbx .formbx-item input:-moz-placeholder,
.contact-content-center-leftbx .formbx-item textarea:-moz-placeholder {
  font-size: 1.125rem;
  letter-spacing: 1px;
  color: #8b8b8b;
  font-family: "Cambria";
}
.contact-content-center-leftbx .formbx-item input::-moz-placeholder,
.contact-content-center-leftbx .formbx-item textarea::-moz-placeholder {
  font-size: 1.125rem;
  letter-spacing: 1px;
  color: #8b8b8b;
  font-family: "Cambria";
}
.contact-content-center-leftbx .formbx-item input:-ms-input-placeholder,
.contact-content-center-leftbx .formbx-item textarea:-ms-input-placeholder {
  font-size: 1.125rem;
  letter-spacing: 1px;
  color: #8b8b8b;
  font-family: "Cambria";
}
.contact-content-center-leftbx .formbx-item label {
  font-size: 1.125rem;
  color: #141414;
  line-height: 1.5em;
  font-weight: 500;
  font-family: "Cambria";
  display: block;
  width: 100%;
  margin-bottom: 0.625rem;
}
.contact-content-center-leftbx .formbx-item label sup {
  color: #ff1127;
}
.contact-content-center-leftbx .formbx-item input {
  display: block;
  width: 100%;
  height: 2.5rem;
  padding: 0 1.25rem;
  background-color: transparent;
  border: 1px solid #9a9a9a;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 1.125rem;
  color: #141414;
}
.contact-content-center-leftbx .formbx-item-name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.contact-content-center-leftbx .formbx-item-name input {
  width: 48.4%;
}
.contact-content-center-leftbx .formbx-codebx {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  height: auto;
  margin-bottom: 1.375rem;
}
.contact-content-center-leftbx .formbx-codebx input::-webkit-input-placeholder,
.contact-content-center-leftbx .formbx-codebx textarea::-webkit-input-placeholder {
  font-size: 1.125rem;
  letter-spacing: 1px;
  color: #8b8b8b;
  font-family: "Cambria";
}
.contact-content-center-leftbx .formbx-codebx input:-moz-placeholder,
.contact-content-center-leftbx .formbx-codebx textarea:-moz-placeholder {
  font-size: 1.125rem;
  letter-spacing: 1px;
  color: #8b8b8b;
  font-family: "Cambria";
}
.contact-content-center-leftbx .formbx-codebx input::-moz-placeholder,
.contact-content-center-leftbx .formbx-codebx textarea::-moz-placeholder {
  font-size: 1.125rem;
  letter-spacing: 1px;
  color: #8b8b8b;
  font-family: "Cambria";
}
.contact-content-center-leftbx .formbx-codebx input:-ms-input-placeholder,
.contact-content-center-leftbx .formbx-codebx textarea:-ms-input-placeholder {
  font-size: 1.125rem;
  letter-spacing: 1px;
  color: #8b8b8b;
  font-family: "Cambria";
}
.contact-content-center-leftbx .formbx-codebx label {
  font-size: 1.125rem;
  color: #141414;
  line-height: 1.5em;
  font-weight: 500;
  font-family: "Cambria";
  display: block;
  width: 100%;
  margin-bottom: 0.625rem;
}
.contact-content-center-leftbx .formbx-codebx label sup {
  color: #ff1127;
}
.contact-content-center-leftbx .formbx-codebx input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 0;
  height: 2.5rem;
  padding: 0 1.25rem;
  background-color: transparent;
  border: 1px solid #9a9a9a;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 1.125rem;
  color: #141414;
}
.contact-content-center-leftbx .formbx-codebx .codeimg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 2.5rem;
  margin-left: 1.25rem;
  border: 1px solid #9a9a9a;
}
.contact-content-center-leftbx .formbx-codebx .codeimg img {
  display: block;
  width: auto;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.contact-content-center-leftbx .formbx-btnbx {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 100%;
}
.contact-content-center-leftbx .formbx-btnbx button {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 2.5rem;
  margin-top: 1rem;
  border: 0;
  margin-right: auto;
  padding: 0 2rem;
  background: #12445c;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 1.125rem;
  color: #fff;
  text-transform: uppercase;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.contact-content-center-leftbx .formbx-btnbx button:hover {
  cursor: pointer;
  text-decoration: underline;
}
.contact-content-center-rightbx {
  width: 48%;
}
.contact-content-center-rightbx .cccr-infobx {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.contact-content-center-rightbx .cccr-infobx-left {
  width: 40%;
}
.contact-content-center-rightbx .cccr-infobx-left h4,
.contact-content-center-rightbx .cccr-infobx-left p,
.contact-content-center-rightbx .cccr-infobx-left a {
  font-size: 1.125rem;
  color: #666;
  line-height: 1.8em;
  font-weight: 400;
  font-family: "Cambria";
}
.contact-content-center-rightbx .cccr-infobx-left a:hover {
  text-decoration: underline;
  color: #12445c;
}
.contact-content-center-rightbx .cccr-infobx-left h4 {
  color: #141414;
}
.contact-content-center-rightbx .cccr-infobx-right {
  width: 36%;
}
.contact-content-center-rightbx .cccr-infobx-right p {
  font-size: 1.125rem;
  color: #141414;
  line-height: 1.8em;
  font-weight: 400;
  font-family: "Cambria";
  margin-bottom: 0.25rem;
}
.contact-content-center-rightbx .cccr-infobx-right ul {
  width: 100%;
  border-top: 1px solid #d5d5d5;
  border-bottom: 1px solid #d5d5d5;
}
.contact-content-center-rightbx .cccr-infobx-right ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 50%;
  border: 1px solid #d5d5d5;
  font-size: 1.25rem;
  color: #b9b9b9;
}
.contact-content-center-rightbx .cccr-infobx-right ul li a:hover {
  background-color: #12445c;
  border-color: #12445c;
}
.contact-content-center-rightbx .cccr-mapbx {
  width: 100%;
  height: 23.75rem;
}
.contact-content-center-rightbx .cccr-mapbx iframe {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (min-width: 320px) and (max-width: 1023px) {
  .contact-content {
    padding-bottom: 0;
  }
  .contact-content-title {
    padding: 3rem 0;
  }
  .contact-content-title h3 {
    font-size: 3.5rem;
  }
  .contact-content-center {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .contact-content-center-leftbx {
    width: 100%;
    margin-bottom: 2rem;
  }
  .contact-content-center-leftbx .head {
    padding: 3rem 0;
  }
  .contact-content-center-rightbx {
    width: 100%;
    padding-bottom: 5rem;
  }
  .contact-content-center-rightbx .cccr-infobx {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .contact-content-center-rightbx .cccr-infobx-left {
    width: 100%;
    margin-bottom: 2.5rem;
  }
  .contact-content-center-rightbx .cccr-infobx-right {
    width: 60%;
  }
}
/* CSS HACKS FOR OLDER BROWSERS - IGNORE THESE LINES */
/*
 * @Author       : MengYu
 * @Version      : V1.0
 * @Date         : 2025-10-13 11:08:33
 * @LastEditTime : 2025-11-25 16:13:47
 * @Description  : 主文件
*/
.disclosures-content {
  background-color: #f1f1ee;
  padding-bottom: 6.25rem;
}
.disclosures-content-title {
  padding: 5rem 0;
}
.disclosures-content-title h3 {
  font-size: 5.625rem;
  color: #12445c;
  line-height: 1em;
  font-weight: 400;
  font-family: "Cambria";
  text-align: center;
  text-transform: uppercase;
}
.disclosures-content-center {
  padding: 0 10%;
}
.disclosures-content-center .md:not(:last-child) {
  margin-bottom: 2.5rem;
}
.disclosures-content-center .md h4 {
  font-size: 2.25rem;
  color: #12445c;
  line-height: 1em;
  font-weight: 600;
  font-family: "Cambria";
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 0.625rem;
}
.disclosures-content-center .md p {
  font-size: 1rem;
  color: #666;
  line-height: 2rem;
  font-weight: 400;
  font-family: "Cambria";
  text-align: center;
}
.disclosures-content-center .md a {
  color: #12445c;
  text-decoration: underline;
}
.disclosures-content-center .returnbtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 3.125rem auto 0;
}
.disclosures-content-center .returnbtn a {
  font-size: 1.125rem;
  color: #12445c;
  line-height: 1.875rem;
  font-weight: 600;
  font-family: "Cambria";
}
.disclosures-content-center .returnbtn a:hover {
  text-decoration: underline;
}

@media (min-width: 320px) and (max-width: 1023px) {
  .disclosures-content {
    padding-bottom: 0;
  }
  .disclosures-content-title {
    padding: 3rem 0;
  }
  .disclosures-content-title h3 {
    font-size: 3.5rem;
  }
  .disclosures-content-center {
    padding: 0 0 5rem;
  }
  .disclosures-content-center .md h4 {
    font-size: 1.875rem;
    line-height: 1.3em;
  }
}
.index-banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  z-index: 2;
}
.index-banner-swiper {
  position: relative;
  width: 50%;
  overflow: hidden;
  height: auto;
}
.index-banner-swiper .swiper-slide {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding: 10% 5vw;
  background-color: #fff;
}
.index-banner-swiper .swiper-slide .swiper-animation {
  opacity: 0;
}
.index-banner-swiper .swiper-slide-text h3 {
  font-size: 6.25rem;
  color: #12445c;
  line-height: 1em;
  font-weight: 500;
  font-family: "Cambria";
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.index-banner-swiper .swiper-slide-text h4 {
  font-size: 2.125rem;
  color: #090000;
  line-height: 1em;
  font-weight: 700;
  font-family: "xiangyang";
  margin-bottom: 1.5rem;
}
.index-banner-swiper .swiper-slide-text p {
  font-size: 1.5rem;
  color: #090000;
  line-height: 1.5em;
  font-weight: 400;
  font-family: "Cambria";
  margin-bottom: 1.75rem;
}
.index-banner-swiper .swiper-slide-text .btnbx {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 2.75rem;
}
.index-banner-swiper .swiper-slide-text .btnbx a {
  font-size: 1rem;
  color: #090000;
  line-height: 2.75rem;
  font-weight: 400;
  font-family: "Cambria";
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 100%;
  padding: 0 4rem;
  background-color: #12445c;
  letter-spacing: 1px;
  color: #fff;
  text-transform: uppercase;
}
.index-banner-rightbx {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 50%;
  height: 100%;
  padding-right: 0.25rem;
}
.index-banner-rightbx-item {
  position: relative;
  width: 16.67%;
  height: 100%;
  padding: 0 0.25rem;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.index-banner-rightbx-item.index-banner-rightbx-item__active {
  width: 66.66%;
}
.index-banner-rightbx-item.index-banner-rightbx-item__active .ibri-imgbx a {
  pointer-events: auto;
}
.index-banner-rightbx-item.index-banner-rightbx-item__active .ibri-imgbx::after {
  opacity: 0;
}
.index-banner-rightbx-item:hover {
  cursor: pointer;
}
.index-banner-rightbx-item:hover .ibri-imgbx img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
.index-banner-rightbx-item .itemicon {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  background-color: #fff;
  border-radius: 50%;
  pointer-events: none;
  z-index: 3;
}
.index-banner-rightbx-item .itemicon.scroll i {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.index-banner-rightbx-item .itemicon i {
  font-size: 1.25rem;
  font-weight: 700;
  color: #333;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.index-banner-rightbx-item .ibri-imgbx {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}
.index-banner-rightbx-item .ibri-imgbx a {
  pointer-events: none;
}
.index-banner-rightbx-item .ibri-imgbx img {
  position: absolute;
  inset: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 100%;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.index-banner-M {
  display: none;
}

@media (min-width: 320px) and (max-width: 1023px) {
  :root {
    font-size: 12px !important;
  }
  .w1200,
  .w1400,
  .w1600 {
    width: 100%;
    padding: 0 1rem;
  }
  .Pcbox {
    display: none !important;
  }
  .Mbox {
    display: block !important;
  }
  .innertop {
    padding-top: 5rem;
  }
  .module-padding {
    padding: 3rem 0;
  }
  .index-banner {
    display: none;
  }
  .index-mbanner {
    position: fixed;
    top: 8rem;
    left: 0;
    width: 100%;
    height: calc(100vh - 8rem);
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .index-mbanner-content {
    width: 100%;
    height: 100%;
  }
  .index-mbanner-content-page {
    position: absolute;
    top: 0;
    left: 0;
    padding: 1rem 1rem 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    -webkit-box-shadow: 0px -8.5px 8.5px 0px rgba(0, 0, 0, 0.1);
            box-shadow: 0px -8.5px 8.5px 0px rgba(0, 0, 0, 0.1);
    z-index: 1;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  .index-mbanner-content-page .closebtn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, -30%);
        -ms-transform: translate(-50%, -30%);
            transform: translate(-50%, -30%);
    width: 2.5rem;
    height: 2.5rem;
    background-color: #fff;
    border-radius: 50%;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
            box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    z-index: 3;
    pointer-events: none;
    opacity: 0;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  .index-mbanner-content-page .closebtn .iconfont {
    font-size: 1.25rem;
    color: #333;
  }
  .index-mbanner-content-page.index-mbanner-content-page__active {
    top: 0 !important;
    height: 100% !important;
  }
  .index-mbanner-content-page.index-mbanner-content-page__active .closebtn {
    pointer-events: auto;
    opacity: 1;
  }
  .index-mbanner-content-page.index-mbanner-content-page__active .pagecenter {
    overflow-y: scroll;
  }
  .index-mbanner-content-page.hidebx {
    top: 100% !important;
  }
  .index-mbanner-content-page .pagecenter {
    overflow-y: none;
    width: 100%;
    height: 100%;
    scrollbar-width: none;
  }
  .index-mbanner-content-page .imcp-imgbx {
    width: 100%;
    height: auto;
    margin-bottom: 2.5rem;
  }
  .index-mbanner-content-page .imcp-imgbx img {
    display: block;
    width: 100%;
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .index-mbanner-content-page .imcp-textbx {
    padding-bottom: 5rem;
  }
  .index-mbanner-content-page .imcp-textbx h3 {
    font-size: 5rem;
    color: #12445c;
    line-height: 1em;
    font-weight: 500;
    font-family: "Cambria";
    text-transform: uppercase;
    margin-bottom: 1.5rem;
  }
  .index-mbanner-content-page .imcp-textbx h4 {
    font-size: 2.125rem;
    color: #090000;
    line-height: 1em;
    font-weight: 700;
    font-family: "xiangyang";
    margin-bottom: 1.5rem;
  }
  .index-mbanner-content-page .imcp-textbx p {
    font-size: 1.5rem;
    color: #090000;
    line-height: 1.5em;
    font-weight: 400;
    font-family: "Cambria";
    margin-bottom: 1.75rem;
  }
  .index-mbanner-content-page .imcp-textbx .btnbx {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: 2.75rem;
  }
  .index-mbanner-content-page .imcp-textbx .btnbx a {
    font-size: 1rem;
    color: #090000;
    line-height: 2.75rem;
    font-weight: 400;
    font-family: "Cambria";
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: 100%;
    padding: 0 4rem;
    background-color: #12445c;
    letter-spacing: 1px;
    color: #fff;
    text-transform: uppercase;
  }
  .index-mbanner-content-page:nth-child(2) {
    top: 5rem;
    height: calc(100% - 10rem);
    z-index: 2;
  }
  .index-mbanner-content-page:nth-child(3) {
    top: 10rem;
    height: calc(100% - 10rem);
    z-index: 4;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  :root {
    font-size: 12px !important;
  }
  .w1400,
  .w1600 {
    width: 100%;
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
@media (min-width: 1001px) and (max-width: 1200px) {
  :root {
    font-size: 12px !important;
  }
  .w1600 {
    width: 100%;
    padding-left: 3rem;
    padding-right: 3rem;
  }
  .index-header .navmain {
    padding: 0 2%;
  }
  .index-header-navbox .logobox p {
    display: none;
    font-size: 0.875rem;
  }
  .index-header-nav-item .nav-level > a {
    font-size: 1rem;
    padding: 0 1rem;
  }
}
@media (min-width: 1201px) and (max-width: 1350px) {
  :root {
    font-size: 14px !important;
  }
  .w1400,
  .w1600 {
    width: 100%;
    padding-left: 8%;
    padding-right: 8%;
  }
  .index-works-content-nav .iwcn-item-left h4 {
    max-width: 55%;
  }
}
@media (min-width: 1351px) and (max-width: 1450px) {
  :root {
    font-size: 16px !important;
  }
  .w1400,
  .w1600 {
    width: 100%;
    padding-left: 6rem;
    padding-right: 6rem;
  }
}
@media (min-width: 1451px) and (max-width: 1600px) {
  :root {
    font-size: 16px !important;
  }
  .w1400,
  .w1600 {
    width: 100%;
    padding-left: 5rem;
    padding-right: 5rem;
  }
}
@media (min-width: 1351px) and (max-width: 1600px) {
  :root {
    font-size: 16px !important;
  }
}
@media (min-width: 1601px) and (max-width: 1800px) {
  :root {
    font-size: 16px !important;
  }
  .w1400,
  .w1600 {
    width: 100%;
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
@media screen and (min-width: 1601px) {
  :root {
    font-size: 16px !important;
  }
}
@media screen and (min-width: 2301px) {
  :root {
    font-size: 18px !important;
  }
}