@charset "utf-8";
/* 默认英文字体（所有语言兜底） */
@font-face {
  font-family: 'Montserrat-Light';
  src: url('../fonts/Montserrat-Light-6.otf');
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat-Regular';
  src: url('../fonts/Montserrat-Regular-8.otf');
  font-display: swap;
}
/* 中文字体（仅对中文生效） */
* {
  margin: 0;
  padding: 0;
  list-style: none;
}
body,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
p,
blockquote,
dl,
dt,
dd,
ul,
ol,
li,
pre,
form,
fieldset,
legend,
button,
input,
textarea,
th,
td {
  margin: 0;
  padding: 0;
}
/** 设置默认字体 **/
html {
  font-size: 62.5%;
}
/* 应用字体 */
body {
  font: 1.6rem/1.5;
  color: #828282;
  overflow-x: hidden;
  font-family: 'Montserrat-Light', sans-serif;
  margin: 0 auto;
}
/* 当lang为中文时 */
/* 当lang为中文时 */
body,
button,
input,
select,
textarea {
  font-size: 1.6rem;
  line-height: 1.5;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  margin: 0;
}
address,
cite,
dfn,
em,
var {
  font-style: normal;
}
/* 将斜体扶正 */
code,
kbd,
pre,
samp {
  font-family: courier new, courier, monospace;
}
/* 统一等宽字体 */
small {
  font-size: 16px;
}
ul,
ol {
  list-style: none;
}
*:focus {
  outline: none;
}
a {
  color: #000;
}
a,
a:hover,
a:active,
a:focus {
  text-decoration: none;
  cursor: pointer;
  color: #828282;
}
legend {
  color: #000;
}
fieldset,
img {
  border: 0;
}
button,
input,
select,
textarea {
  font-size: 100%;
}
/* 使得表单元素在 ie 下能继承字体大小 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/** 重置表格元素 **/
/* 清除浮动 */
.clear:after {
  content: '\20';
  display: block;
  height: 0;
  clear: both;
}
.clear {
  *zoom: 1;
}
/* 省咯号 */
.line1 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.line3 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
/*--------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.overflowh {
  overflow: hidden !important;
  height: 100%;
}
.no-margin {
  margin: 0;
}
.no-padding {
  padding: 0;
}
.h1,
.Headlines,
.subtitle {
  font-family: Montserrat-Medium;
  line-height: 1.5;
}
h1.p1 {
  font-family: 'Montserrat-Regular';
  font-size: 6rem;
  color: #4f4f4f;
  text-align: center;
  margin-bottom: 45px;
}
h1.p1.index {
  color: #338d71;
}
h1.p2 {
  font-family: 'Montserrat-Regular';
  font-size: 6rem;
  color: #4f4f4f;
  text-align: left;
  margin-bottom: 60px;
}
h1.p2.index {
  color: #338d71;
}
.more {
  width: 180px;
  height: 60px;
  border-radius: 30px;
  line-height: 60px;
  border: 1px solid #338d71;
  text-align: center;
  overflow: hidden;
  font-size: 18px;
  color: #338d71;
  margin: 50px auto 0;
  cursor: pointer;
  display: block;
  transition: all 0.3s;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
    .more::before {
        content: "";
        width: 40px;
        height: 40px;
        background: url(../image/abotmys/contact/next.png) #338d71 center center no-repeat;
        background-size: 15px 12px;
        border-radius: 50%;
        margin-right: 8px;
    }
.more::after {
  background: #338d71;
  position: absolute;
  left: -7px;
  top: 0;
  height: 100%;
  width: 0%;
  transition: all 0.5s;
  content: "";
  z-index: -1;
  transform: skewX(-34deg);
}
.more:hover {
  border-color: #338d71;
  color: #fff;
}
.more:hover:after {
  width: 110%;
}
.container-fluid.width9 {
  width: 90%;
  margin: 0 auto;
}
/*--------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/*****************************
 *   01. header
 ***************************** */
.index.fixed-top header .nav-header.nav-header {
  background: transparent;
}
.index.fixed-top header .nav-header.nav-header #menu > ul > li > a {
  color: #fff;
}
.index.fixed-top header .nav-header.nav-header:hover {
  background: #ededed;
}
.index.fixed-top header .nav-header.nav-header:hover #menu > ul > li > a {
  color: #686868;
}
header .nav-header {
  width: 100%;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 110;
  background: #ededed;
  padding: 18px 0;
  transition: all 0.3s;
}
header .nav-column {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .language-switcher {
  display: inline-block;
  min-width: 103px;
  padding: 5px 10px;
  background: linear-gradient(135deg, #74cbad 30%, #74cbad6e);
  border: none;
  font-weight: 500;
  cursor: pointer;
  color: #fff;
  border-radius: 25px;
  text-align: center;
}
header .language-switcher a {
  font-size: 2rem;
  color: #fff;
  margin: 0 5px;
}
header #menu > ul {
  margin: 0;
}
header #menu > ul > li {
  display: inline-block;
  position: relative;
}
header #menu > ul > li:hover > ul {
  opacity: 1;
  visibility: visible;
}
header #menu > ul > li.current-menu-item > a {
  color: #338d71;
}
header #menu > ul > li > a {
  padding: 20px;
  line-height: 25px;
  font-size: 2.2rem;
  font-family: 'Montserrat-Regular';
  color: #686868;
}
header #menu > ul > li > a:hover {
  color: #338d71;
}
header #menu > ul ul.sub-menu {
  position: absolute;
  background-color: #fff;
  left: 20px;
  top: calc(100% + 23px);
  z-index: 2;
  width: 180px;
  text-align: left;
  opacity: 0;
  visibility: hidden;
  box-shadow: 1px 1px 13px rgba(0, 0, 0, 0.15);
  border-top: 2px solid #338d71;
  transition: all 0.3s;
}
header #menu > ul ul.sub-menu::after {
  content: "";
  border: 8px solid transparent;
  border-bottom-color: #338d71;
  left: 30px;
  top: -16px;
  position: absolute;
}
header #menu > ul ul.sub-menu .three-menu {
  flex-direction: column;
  display: none;
  min-width: 100%;
  position: absolute;
  top: 0;
  left: 178px;
  background: #fff;
  border: 1px solid #eee;
}
header #menu > ul ul.sub-menu .three-menu > a {
  font-size: 1.5rem;
  padding: 15px;
  border-bottom: 1px solid #eee;
}
header #menu > ul ul.sub-menu .three-menu > a:hover {
  color: #338d71;
}
header #menu > ul ul.sub-menu .three-menu > a:last-child {
  border: none;
}
header #menu > ul ul.sub-menu li {
  display: block;
  border-bottom: 1px solid #eee;
  padding: 0 10px;
  position: relative;
}
header #menu > ul ul.sub-menu li:hover > .three-menu {
  display: flex;
}
header #menu > ul ul.sub-menu li > a {
  display: block;
  font-weight: 300;
  color: #686868;
  font-size: 1.5rem;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header #menu > ul ul.sub-menu li > a:hover {
  color: #338d71;
}
header #menu > ul ul.sub-menu li > a .top-jiantou {
  width: 6px;
}
.mt-top {
  margin-top: 94px;
}
.index-main .ct-1 {
  text-align: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.index-main .ct-1 .indexBannerTitle {
  font-family: 'Montserrat-Regular';
  width: 100%;
  position: absolute;
  bottom: 20%;
  left: 10%;
  z-index: 1;
  font-size: 6rem;
  font-weight: bold;
  color: #fff;
  text-align: left;
}
.index-main .ct-1 .indexBannerTitle.cn {
  font-size: 8rem;
  bottom: 23%;
}
.index-main .ct-1 img {
  width: 100%;
}
.index-main .ct-2 {
  padding: 80px 0;
  width: 100%;
}
.index-main .ct-2 .dec {
  color: #828282;
  font-size: 2.6rem;
  margin-bottom: 100px;
}
.index-main .ct-2 .ct-card {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.index-main .ct-2 .ct-card img {
  max-width: 100%;
  width: 125px;
  margin-bottom: 15px;
}
.index-main .ct-2 .ct-card .item {
  width: 25%;
}
.index-main .ct-2 .ct-card .item .num {
  color: #4a977f;
  font-size: 5rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}
.index-main .ct-2 .ct-card .item .num b {
  display: flex;
  margin-right: 5px;
}
.index-main .ct-2 .ct-card .item .name {
  font-size: 2rem;
  color: #484848;
}
.index-main .ct-2 .ct-card .mt-number-animate {
  font-family: "Montserrat-Regular";
  font-weight: bold;
  line-height: 60px;
  height: 60px;
  overflow: hidden;
  display: inline-block;
  position: relative;
}
.index-main .ct-2 .ct-card .mt-number-animate .mt-number-animate-dot {
  width: 15px;
  line-height: 30px;
  float: left;
  text-align: center;
}
.index-main .ct-2 .ct-card .mt-number-animate .mt-number-animate-dom {
  width: 35px;
  text-align: center;
  float: left;
  position: relative;
  top: 0;
}
.index-main .ct-2 .ct-card .mt-number-animate .mt-number-animate-dom .mt-number-animate-span {
  width: 100%;
  float: left;
}
.index-main .ct-3 {
    position: relative;
    display: flex;
    align-items: center;
    background: #f1f1f1 url(../image/ct3-bg.jpg) no-repeat center / cover;
    margin: 0 auto;
    padding: 100px 0 50px;
}
.index-main .ct-3 .p1 {
  margin-bottom: 145px !important;
}
.index-main .ct-3 .ct-card {
  text-align: center;
  transition: all 0.3s;
  background: #fff;
  max-width: 290px;
  height: 200px;
  border-radius: 12px;
  border-top-left-radius: 0;
  margin: 0 auto;
  color: #fff;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 80px;
  cursor: pointer;
  box-shadow: 2px 4px 10px #18936682;
}
.index-main .ct-3 .ct-card:hover {
  transform: scale(1.05);
  border: 2px solid #3a8f76;
  box-shadow: 2px 4px 10px #18936682;
}
.index-main .ct-3 .ct-card:hover img {
  top: -75px;
}
.index-main .ct-3 .ct-card .text {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: 30px;
}
.index-main .ct-3 .ct-card img {
  max-width: 100%;
  width: 120px;
  position: absolute;
  top: -65px;
  transition: all 0.3s;
}
.index-main .ct-3 .ct-card .num {
  font-family: "Montserrat-Regular";
  color: #338d71;
  font-weight: bold;
  font-size: 5.6rem;
}
.index-main .ct-3 .ct-card .name {
  font-size: 2.2rem;
  color: #484848;
  font-family: 'Montserrat-Light';
}
.index-main .ct-3 .ct-card .mt-number-animate {
  font-family: "Montserrat-Regular";
  font-weight: bold;
  line-height: 50px;
  height: 50px;
  overflow: hidden;
  display: inline-block;
  position: relative;
}
.index-main .ct-3 .ct-card .mt-number-animate .mt-number-animate-dot {
  width: 15px;
  line-height: 30px;
  float: left;
  text-align: center;
}
.index-main .ct-3 .ct-card .mt-number-animate .mt-number-animate-dom {
  width: 35px;
  text-align: center;
  float: left;
  position: relative;
  top: 0;
}
.index-main .ct-3 .ct-card .mt-number-animate .mt-number-animate-dom .mt-number-animate-span {
  width: 100%;
  float: left;
}
.index-main .ct-4 {
    position: relative;
    display: flex;
    align-items: center;
    background: #f0f0f036 url(../image/ct4-bg.png) no-repeat 200px center / cover;
    margin: auto;
    padding: 90px 0 20px;
    border-bottom: 1px solid #fff;
}
.index-main .ct-4 .imgBg {
  position: absolute;
  right: 0;
  top: 0;
  max-width: 100%;
  left: 0;
  bottom: 0;
  margin: 0 auto;
  min-height: 100%;
  object-fit: cover;
}
.index-main .ct-4 .p2 {
  text-align: center;
}
.index-main .ct-4 .about_two {
  margin-top: 50px;
  margin-bottom: 100px;
}
.index-main .ct-4 .about_two .swiper-container {
  overflow: hidden;
  padding: 70px 0 20px;
}
.index-main .ct-4 .about_two .boxs {
  background: #ffffff;
  overflow: hidden;
  border-radius: 10px;
  transition: all 0.3s;
  box-shadow: 0 3px 10px rgba(70, 69, 69, 0.2);
  position: relative;
}
.index-main .ct-4 .about_two .boxs::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background: url(../image/left-top-icon.png) no-repeat center center / cover;
  width: 90px;
  height: 87px;
}
.index-main .ct-4 .about_two .swiper-slide:hover .boxs {
  background: linear-gradient(0deg, #aed0c4 0%, rgba(138, 231, 202, 0.12) 100%);
}
.index-main .ct-4 .about_two .swiper-slide:hover .boxs .cons .p {
  color: #585858;
}
.index-main .ct-4 .about_two .swiper-slide.swiper-slide-active .boxs {
  margin-top: -60px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.4);
  background: linear-gradient(0deg, #aed0c4 0%, rgba(138, 231, 202, 0.12) 100%);
}
.index-main .ct-4 .about_two .swiper-slide.swiper-slide-active .boxs .cons .h3 {
  color: #51a88b;
}
.index-main .ct-4 .about_two .swiper-slide.swiper-slide-active .boxs .cons .p {
  color: #51a88b;
}
.index-main .ct-4 .about_two .img {
  overflow: hidden;
  position: relative;
  padding-top: 198px;
  border-radius: 50%;
  width: 198px;
  margin: 0 auto;
  margin-top: 65px;
}
.index-main .ct-4 .about_two .img img {
  display: block;
  width: 100%;
  object-fit: cover;
  position: absolute;
  height: 100%;
  left: 0;
  top: 0;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.index-main .ct-4 .about_two .swiper-slide:hover .img img {
  -webkit-transform: scale(1.1, 1.1);
  -moz-transform: scale(1.1, 1.1);
  -o-transform: scale(1.1, 1.1);
  -ms-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
}
.index-main .ct-4 .about_two .cons {
  width: 90%;
  margin: 0 auto;
  max-width: 292px;
  text-align: center;
}
.index-main .ct-4 .about_two .cons .h3 {
  font-weight: bold;
  overflow: hidden;
  color: #585858;
  transition: all 0.3s;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin-top: 40px;
  font-size: 4rem;
}
.index-main .ct-4 .about_two .cons .p {
  line-height: 26px;
  height: 104px;
  overflow: hidden;
  color: #999999;
  font-size: 2rem;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  margin-top: 12px;
  margin-bottom: 63px;
}
.index-main .ct-5 {
  background: linear-gradient(135deg, #ffffff 30%, #74cbad6e);
  position: relative;
  display: flex;
  align-items: center;
  margin: 0 auto;
  overflow: hidden;
}
.index-main .ct-5 .row {
  display: flex;
  align-items: center;
}
.index-main .ct-5 .timeline-item {
  padding: 34px 15px;
  width: 90%;
  position: relative;
  cursor: pointer;
}
.index-main .ct-5 .timeline-item:first-child::after {
  display: none;
}
.index-main .ct-5 .timeline-item::after {
  content: "";
  position: absolute;
  left: 15px;
  right: 0;
  top: -2px;
  height: 2px;
  /* 线高 */
  width: 75%;
  background: linear-gradient(93deg, #74cbad 48%, #baffdf6b);
}
.index-main .ct-5 .timeline-item.active {
  background: linear-gradient(93deg, #74cbad 48%, #baffdf6b);
}
.index-main .ct-5 .timeline-item.active .timeline-description {
  color: #fff;
}
.index-main .ct-5 .timeline-item.active::after {
  display: none;
}
.index-main .ct-5 .ptb-90 {
  padding: 90px 0;
}
.index-main .ct-5 .block-modern-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -100vw;
  right: 70px;
  height: 100%;
  background: linear-gradient(0deg, #aed0c4 0%, rgba(138, 231, 202, 0.12) 100%);
}
.index-main .ct-5 .timeline-description {
  color: #51a88b;
  font-size: 2.6rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.index-main .ct-5 .about-thumb {
  min-height: 500px;
  height: 500px;
  display: none;
  opacity: 0;
  transition: all 0.3s;
}
.index-main .ct-5 .about-thumb > img {
  box-shadow: 1px 3px 16px #343b38;
  border-radius: 10px;
  position: relative;
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.index-main .ct-5 .about-thumb.active {
  display: block;
  opacity: 1;
}
.index-main .ct-5 .about-thumb .bottom-text {
  margin-top: 50px;
  line-height: 1.2;
  color: #686868;
  font-size: 2.6rem;
  text-align: center;
}
.index-main .ct-6 {
  margin: 0 auto;
  overflow: hidden;
  padding: 0 0 40px;
  /* 添加匀速滚动动画 */
}
.index-main .ct-6 .swiper-container1 {
  width: 100%;
}
.index-main .ct-6 .swiper-container1 .swiper-slide {
  width: 500px;
  height: 420px;
}
.index-main .ct-6 .swiper-container1 .swiper-slide img {
  width: 100%;
  height: 100%;
}
.index-main .ct-6 .swiper-container2 {
  width: 100%;
}
.index-main .ct-6 .swiper-container2 .swiper-slide {
  width: 500px;
  height: 420px;
  overflow: hidden;
}
.index-main .ct-6 .swiper-container2 .swiper-slide img {
  width: 100%;
  height: 100%;
}
.index-main .ct-6 .swiper-wrapper {
  transition-timing-function: linear !important;
}
.index-main .ct-6 .swiper-slide {
  position: relative;
  cursor: pointer;
}
.index-main .ct-6 .swiper-slide:hover .img-default {
  opacity: 0;
}
.index-main .ct-6 .swiper-slide:hover .img-hover {
  opacity: 1;
}
.index-main .ct-6 .swiper-slide:hover .img-hover .dec {
  bottom: 0;
}
.index-main .ct-6 .swiper-slide .img-default {
  opacity: 1;
  transition: all 0.3s;
  width: 100%;
  height: 100%;
}
.index-main .ct-6 .swiper-slide .img-hover {
  opacity: 0;
  transition: all 0.3s;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.index-main .ct-6 .swiper-slide .img-hover img {
  width: 100%;
  height: 100%;
}
.index-main .ct-6 .swiper-slide .img-hover .dec {
  width: 100%;
  text-align: center;
  background: l / inear-gradient(to right, #72e3bc 48%, #b4e7d6);
  background: url(../image/contact-banner-bottom.jpg) no-repeat center -80px / cover;
  position: absolute;
  bottom: -80px;
  padding: 20px 20px;
  color: #000;
  font-size: 2.6rem;
  transition: all 0.3s;
  border: 1px solid #eee;
}
.index-main .ct-6 .ct6bg-title {
  width: 100%;
  margin: 0 auto;
  height: 200px;
  background: url(../image/ct6-bg.jpg) no-repeat center / cover;
}
.index-main .ct-6 .ct6bg-title .p2 {
  text-align: center;
  padding-top: 60px;
  margin-bottom: 0;
}
.index-main .ct-7 {
  max-width: 1920px;
  margin: 0 auto;
  padding: 80px 0 40px;
  position: relative;
}
.index-main .ct-7 .title {
  font-size: 5rem;
  font-family: 'Montserrat-Regular';
  color: #338d71;
  margin-bottom: 60px;
}
.index-main .ct-7 .dec {
  color: #828282;
  font-size: 2.6rem;
  text-align: center;
  width: 70%;
  margin: 0 auto 80px;
}
.index-main .ct-7 .dec span {
  display: block;
}
.index-main .ct-7 .more {
  padding: 0 20px;
  min-width: 350px;
  margin-bottom: 100px;
}
.index-main .ct-7 .middle-pic {
  margin-left: 46px;
  width: 179px;
  margin-top: 80px;
}
.index-main .ct-7 .bottom-title {
  font-family: 'Montserrat-Regular';
  font-size: 3rem;
  color: #669989;
  margin-top: 60px;
}
.index-main .ct-7 .bottom-title b {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 5px;
  color: #fff;
  background: linear-gradient(to bottom, #32ae86, #8cdfa2);
}
.index-main .ct-7 .circle-container {
  position: relative;
  text-align: center;
  height: 400px;
}
.index-main .ct-7 .circle-container .circle {
  position: absolute;
  left: 50%;
}
.index-main .ct-7 .circle-container .circle .item {
  position: relative;
  width: 200px;
}
.index-main .ct-7 .circle-container .circle .item img {
  width: 100%;
}
.index-main .ct-7 .circle-container .circle .item p {
  position: absolute;
  height: 60px;
}
.index-main .ct-7 .circle-container .circle.active {
  z-index: 2 !important;
}
.index-main .ct-7 .circle-container .circle.circle-1 {
  top: 0;
  margin-left: -100px;
  z-index: 2;
}
.index-main .ct-7 .circle-container .circle.circle-1.cn p {
  right: -70px;
}
.index-main .ct-7 .circle-container .circle.circle-1 p {
  top: 70px;
  right: -180px;
}
.index-main .ct-7 .circle-container .circle.circle-2 {
  top: 150px;
  margin-left: -180px;
  z-index: 1;
}
.index-main .ct-7 .circle-container .circle.circle-2.cn p {
  right: 15px;
}
.index-main .ct-7 .circle-container .circle.circle-2 p {
  bottom: -80px;
  left: -90px;
}
.index-main .ct-7 .circle-container .circle.circle-3 {
  top: 150px;
  margin-left: 0;
  z-index: 1;
}
.index-main .ct-7 .circle-container .circle.circle-3.cn p {
  right: 25px;
}
.index-main .ct-7 .circle-container .circle.circle-3 p {
  bottom: -80px;
  right: -90px;
}
.index-main .ct-7 .card-strategies {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.index-main .ct-7 .card-strategies .item {
  width: 33%;
  text-align: center;
  margin-bottom: 30px;
}
.index-main .ct-7 .card-strategies .item .icon-num {
  position: relative;
  display: inline-block;
}
.index-main .ct-7 .card-strategies .item .icon-num b {
  position: absolute;
  top: 0;
  left: -10px;
  display: inline-block;
  background: #e8e8e8;
  color: #338d71;
  width: 28px;
  height: 28px;
  text-align: center;
  line-height: 28px;
  border-radius: 50%;
}
.index-main .ct-7 .card-strategies .item .icon-num img {
  width: 90px;
  margin-bottom: 10px;
}
.index-main .ct-7 .card-strategies .item .info {
  font-size: 1.3rem;
  height: 33px;
}
.index-main .ct-7 .bg-img-footer {
  content: '';
  width: 400px;
  position: absolute;
  bottom: 0;
  right: 0;
}
.index-main .ct-8 {
  padding: 80px 0;
  margin: 0 auto;
}
.index-main .ct-8 .swiper {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}
.index-main .ct-8 .swiper:hover .swiper-button-prev,
.index-main .ct-8 .swiper:hover .swiper-button-next {
  opacity: 1;
}
.index-main .ct-8 .swiper .swiper-wrapper .swiper-slide {
  border-radius: 10px;
  overflow: hidden;
  padding: 20px 0;
}
.index-main .ct-8 .swiper .swiper-wrapper .swiper-slide .ct-card {
  display: inline-block;
  transition: all 0.3s;
}
.index-main .ct-8 .swiper .swiper-wrapper .swiper-slide .ct-card:hover {
  margin-top: -20px;
}
.index-main .ct-8 .swiper .swiper-wrapper .swiper-slide .ct-card .imgWrap {
  height: 220px;
  width: 100%;
  border-radius: 10px;
  border: 1px solid #eee;
  overflow: hidden;
  margin-bottom: 20px;
}
.index-main .ct-8 .swiper .swiper-wrapper .swiper-slide .ct-card .imgWrap img {
  width: 100%;
  height: 100%;
}
.index-main .ct-8 .swiper .swiper-wrapper .swiper-slide .ct-card .time {
  font-size: 1.8rem;
  color: #828282;
  margin-bottom: 5px;
}
.index-main .ct-8 .swiper .swiper-wrapper .swiper-slide .ct-card .dec {
  font-size: 2rem;
  color: #4F4F4F;
  font-family: 'Montserrat-Light';
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* 显示行数 */
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.index-main .ct-8 .swiper .pn {
  top: 50%;
  transform: translateY(-50%);
  background-color: #fff;
  z-index: 5;
  width: 72px;
  height: 72px;
  line-height: 72px;
  text-align: center;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0px 0px 10px 0px rgba(41, 44, 51, 0.1);
  display: block !important;
  position: absolute;
  top: 35%;
  transition: all 0.3s;
}
.index-main .ct-8 .swiper .pn:hover {
  background: #45ba73;
}
.index-main .ct-8 .swiper .pn:hover img.pic {
  display: none;
}
.index-main .ct-8 .swiper .pn:hover img.hide {
  display: inline-block;
}
.index-main .ct-8 .swiper .pn img {
  max-width: 100%;
  max-height: 100%;
  vertical-align: middle;
}
.index-main .ct-8 .swiper .pn .hide {
  display: none;
}
.index-main .ct-8 .swiper .pn.prev {
  left: 10px;
}
.index-main .ct-8 .swiper .pn.next {
  right: 10px;
}
.about .ct-1 {
  text-align: center;
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background: #fff;
}
.about .ct-1 img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}
.about .ct-2 {
  padding: 90px 0;
  width: 100%;
}
.about .ct-2 .dec {
  color: #828282;
  font-size: 2.6rem;
  font-family: Montserrat-Light;
  margin-bottom: 100px;
}
.about .ct-2 .ct-card {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about .ct-2 .ct-card img {
  max-width: 100%;
  width: 125px;
  margin-bottom: 20px;
}
.about .ct-2 .ct-card .item {
  width: 25%;
}
.about .ct-2 .ct-card .item .num {
  color: #4a977f;
  font-size: 5rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about .ct-2 .ct-card .item .num b {
  display: flex;
  margin-right: 5px;
}
.about .ct-2 .ct-card .item .name {
  font-size: 2rem;
  color: #484848;
  font-family: 'Montserrat-Light';
}
.about .ct-2 .ct-card .mt-number-animate {
  font-family: "Montserrat-Regular";
  font-weight: bold;
  line-height: 60px;
  height: 60px;
  overflow: hidden;
  display: inline-block;
  position: relative;
}
.about .ct-2 .ct-card .mt-number-animate .mt-number-animate-dot {
  width: 15px;
  line-height: 30px;
  float: left;
  text-align: center;
}
.about .ct-2 .ct-card .mt-number-animate .mt-number-animate-dom {
  width: 35px;
  text-align: center;
  float: left;
  position: relative;
  top: 0;
}
.about .ct-2 .ct-card .mt-number-animate .mt-number-animate-dom .mt-number-animate-span {
  width: 100%;
  float: left;
}
.about .vision-values .p1 {
  margin-bottom: 60px;
}
.about .vision-values .vision-values-section {
  padding: 0;
}
.about .vision-values .section-title {
  font-family: 'Montserrat-Regular';
  font-size: 5rem;
  font-weight: bold;
  margin-bottom: 50px;
  color: #338d71;
}
.about .vision-values .vision-statement,
.about .vision-values .values-statement {
  font-size: 3rem;
  line-height: 1.1;
  font-family: 'Montserrat-Regular';
  margin-bottom: 30px;
}
.about .vision-values .vision-dec,
.about .vision-values .values-dec {
  font-size: 2rem;
}
.about .vision-values .content-box {
  height: 100%;
  padding: 65px;
}
.about .vision-values .values-content {
  text-align: right;
  /* 右对齐底部文字 */
}
.about .vision-values .image-container {
  height: 100%;
  min-height: 300px;
}
.about .vision-values .image-container img {
  max-width: 100%;
  max-height: 750px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about .ct-4 {
  position: relative;
  display: flex;
  align-items: center;
  background: #f0f0f036 url(../image/ct4-bg.png) no-repeat 200px center / cover;
  margin: auto;
  padding: 80px 0;
  border-bottom: 1px solid #fff;
}
.about .ct-4 .imgBg {
  position: absolute;
  right: 0;
  top: 0;
  max-width: 100%;
  left: 0;
  bottom: 0;
  margin: 0 auto;
  min-height: 100%;
  object-fit: cover;
}
.about .ct-4 .p2 {
  text-align: center;
}
.about .ct-4 .about_two {
  margin-top: 50px;
  margin-bottom: 100px;
}
.about .ct-4 .about_two .swiper-container {
  padding: 70px 0 20px;
  overflow: hidden;
}
.about .ct-4 .about_two .boxs {
  background: #ffffff;
  overflow: hidden;
  border-radius: 10px;
  transition: all 0.3s;
  box-shadow: 0 3px 10px rgba(70, 69, 69, 0.2);
  position: relative;
}
.about .ct-4 .about_two .boxs::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background: url(../image/left-top-icon.png) no-repeat center center / cover;
  width: 90px;
  height: 87px;
}
.about .ct-4 .about_two .swiper-slide:hover .boxs {
  background: linear-gradient(0deg, #aed0c4 0%, rgba(138, 231, 202, 0.12) 100%);
}
.about .ct-4 .about_two .swiper-slide:hover .boxs .cons .p {
  color: #585858;
}
.about .ct-4 .about_two .swiper-slide.swiper-slide-active .boxs {
  margin-top: -60px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.4);
  background: linear-gradient(0deg, #aed0c4 0%, rgba(138, 231, 202, 0.12) 100%);
}
.about .ct-4 .about_two .swiper-slide.swiper-slide-active .boxs .cons .h3 {
  color: #51a88b;
}
.about .ct-4 .about_two .swiper-slide.swiper-slide-active .boxs .cons .p {
  color: #51a88b;
}
.about .ct-4 .about_two .img {
  overflow: hidden;
  position: relative;
  padding-top: 198px;
  border-radius: 50%;
  width: 198px;
  margin: 0 auto;
  margin-top: 65px;
}
.about .ct-4 .about_two .img img {
  display: block;
  width: 100%;
  object-fit: cover;
  position: absolute;
  height: 100%;
  left: 0;
  top: 0;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.about .ct-4 .about_two .swiper-slide:hover .img img {
  -webkit-transform: scale(1.1, 1.1);
  -moz-transform: scale(1.1, 1.1);
  -o-transform: scale(1.1, 1.1);
  -ms-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
}
.about .ct-4 .about_two .cons {
  width: 90%;
  margin: 0 auto;
  max-width: 292px;
  text-align: center;
}
.about .ct-4 .about_two .cons .h3 {
  font-weight: bold;
  overflow: hidden;
  color: #585858;
  transition: all 0.3s;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin-top: 40px;
  font-size: 4rem;
}
.about .ct-4 .about_two .cons .p {
  line-height: 26px;
  height: 104px;
  overflow: hidden;
  color: #999999;
  font-size: 2rem;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  margin-top: 12px;
  margin-bottom: 63px;
}
.ct-breadcrumb {
  padding: 40px 0;
}
.ct-breadcrumb .breadcrumb {
  width: 90%;
  margin: 0 auto;
  background: none;
  font-size: 2.4rem;
  color: #4F4F4F;
}
.ct-breadcrumb .breadcrumb a {
  color: #969696;
}
.ct-breadcrumb .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  display: inline-block;
  padding-right: 0.5rem;
  color: #6c757d;
  content: "";
  width: 8px;
  height: 15px;
  background: url(../image/jiantou.png) no-repeat center / cover;
  margin: 10px 15px;
}
.ct-btn {
  text-align: right;
  margin: 0 10px;
}
.ct-btn .btn {
  width: 35%;
  font-size: 2.4rem;
  padding: 15px 20px;
  border: 1px solid #338d71;
  font-weight: 500;
  cursor: pointer;
  color: #338d71;
  border-radius: 5px;
  font-family: 'Montserrat-Light';
  text-align: center;
  position: relative;
  transition: all 0.3s;
  z-index: 1;
  overflow: hidden;
}
.ct-btn .btn i {
  display: inline-block;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #338d71;
  margin-left: 30px;
  text-align: center;
}
.ct-btn .btn i img {
  width: 15px;
  margin-top: -2px;
}
.ct-btn .btn::after {
  background: #338d71;
  position: absolute;
  left: -17px;
  top: 0;
  height: 100%;
  width: 0%;
  transition: all 0.5s;
  content: "";
  z-index: -1;
  transform: skewX(-27deg);
}
.ct-btn .btn:hover {
  color: #fff;
}
.ct-btn .btn:hover::after {
  width: 110%;
}
.join .title {
  font-size: 5rem;
  font-family: 'Montserrat-Regular';
  color: #4F4F4F;
  margin-bottom: 100px;
}
.join .wrap {
  padding: 80px 0;
}
.join .wrap .dec {
  font-size: 2.6rem;
  color: #828282;
  margin-bottom: 60px;
}
.join .wrap .ct-card {
  display: inline-block;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  width: 90%;
  margin: 15px auto 0;
}
.join .wrap .ct-card:hover .pic img {
  transform: scale(1.1);
}
.join .wrap .ct-card:hover .name-wrap {
  background: linear-gradient(to right, #74cbad 48%, #74cbada6);
  color: #fff;
}
.join .wrap .ct-card:hover .name-wrap .icon.icon1 {
  background: url(../image/join-icon1-hover.png) no-repeat center / cover;
}
.join .wrap .ct-card:hover .name-wrap .icon.icon2 {
  background: url(../image/join-icon2-hover.png) no-repeat center / cover;
}
.join .wrap .ct-card:hover .name-wrap .jiantou {
  background: url(../image/c-jiantou-w.png) no-repeat center / cover;
}
.join .wrap .ct-card .pic {
  width: 100%;
  height: 359px;
  overflow: hidden;
}
.join .wrap .ct-card .pic img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
}
.join .wrap .ct-card .name-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-size: 2.6rem;
  font-family: 'Montserrat-Regular';
  padding: 30px 35px;
  background: linear-gradient(to right, #eeeae8 48%, #d0d2d3);
}
.join .wrap .ct-card .name-wrap > span {
  display: flex;
  align-items: center;
  white-space: nowrap;
  /* 禁止换行 */
  overflow: hidden;
  /* 隐藏溢出内容 */
  text-overflow: ellipsis;
  /* 显示省略号 */
}
.join .wrap .ct-card .name-wrap > span .icon {
  display: inline-block;
  width: 37px;
  height: 37px;
  margin-right: 8px;
}
.join .wrap .ct-card .name-wrap > span .icon.icon1 {
  background: url(../image/join-icon1.png) no-repeat center / cover;
}
.join .wrap .ct-card .name-wrap > span .icon.icon2 {
  background: url(../image/join-icon2.png) no-repeat center / cover;
}
.join .wrap .ct-card .name-wrap .jiantou {
  display: inline-block;
  width: 25px;
  height: 25px;
  background: url(../image/c-jiantou-b.png) no-repeat center / cover;
  margin-top: 2px;
}
.join.join-social .ct-1 {
  text-align: center;
}
.join.join-social .ct-1 img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}
.join.join-social .ct-2 {
  padding: 40px 0 80px;
}
.join.join-social .ct-2 .title {
  margin-bottom: 40px;
}
.join.join-social .ct-2 .dec {
  font-size: 3rem;
  margin-bottom: 40px;
}
.join.join-social .ct-2 .postItem {
  padding: 30px 40px;
  border-radius: 10px;
  overflow: hidden;
  background: #f9f9f9;
  width: 90%;
  margin: 0 auto 50px;
}
.join.join-social .ct-2 .postItem .position {
  font-family: 'Montserrat-Regular';
  font-size: 3.8rem;
  margin-bottom: 30px;
  color: #4f4f4f;
}
.join.join-social .ct-2 .postItem .require-info {
  display: flex;
  align-items: center;
  font-size: 2.4rem;
  margin-bottom: 35px;
  color: #4f4f4f;
}
.join.join-social .ct-2 .postItem .require-info .address-icon {
  display: inline-block;
  width: 25px;
  height: 25px;
/*  background: url(../images/address-icon.jpg) no-repeat center / cover;*/
}
.join.join-social .ct-2 .postItem .require-info span {
  padding: 0 25px;
  border-right: 2px solid #bebebe;
  display: flex;
  align-items: center;
  line-height: 1;
}
.join.join-social .ct-2 .postItem .require-info span:last-child {
  border-right: 0;
}
.join.join-social .ct-2 .postItem .require-details {
  font-size: 2rem;
  line-height: 2;
  margin-bottom: 30px;
  color: #828282;
  margin-bottom: 35px;
}
.join.join-social .ct-2 .postItem .require-details .require-dec {
  font-size: 2rem;
  margin-bottom: 25px;
}
.join.join-social .ct-2 .postItem .ct-btn .btn {
  width: 260px;
}
.join.job-apply .ct-2 {
  padding: 30px 0 80px;
}
.join.job-apply .ct-2 .postItem {
  padding: 30px 40px;
  border-radius: 10px;
  overflow: hidden;
  background: #f9f9f9;
  width: 90%;
  margin: 0 auto 50px;
  color: #4f4f4f;
}
.join.job-apply .ct-2 .postItem .title {
  font-size: 3.8rem;
  text-align: center;
  font-family: 'Montserrat-Regular';
  margin-bottom: 40px;
}
.join.job-apply .ct-2 .postItem .position {
  text-align: center;
  font-size: 2.4rem;
  border-bottom: 2px dashed #7b7b7b;
  padding-bottom: 50px;
  margin-bottom: 50px;
}
.join.job-apply .ct-2 .postItem .form {
  width: 85%;
  margin: 0 auto;
  /* 所有浏览器通用 */
  /* 浏览器兼容处理 */
}
.join.job-apply .ct-2 .postItem .form label {
  font-size: 2.4rem;
  color: #4F4F4F;
  margin-left: 15px;
}
.join.job-apply .ct-2 .postItem .form .ct-upload {
  position: relative;
}
.join.job-apply .ct-2 .postItem .form .ct-upload .ctfile {
  border-radius: 5px;
  font-size: 2rem;
  position: absolute;
  top: 0;
  left: 0;
  background: #efefef;
  color: #969696;
  padding: 18px;
  width: 100%;
}
.join.job-apply .ct-2 .postItem .form .form-control {
  font-size: 2rem;
  border-radius: 8px;
  border: 1px solid transparent;
  margin-top: 10px;
  background: #EFEFEF;
  padding: 15px;
  height: 62px;
  color: #969696;
}
.join.job-apply .ct-2 .postItem .form .form-control:focus {
  box-shadow: none;
}
.join.job-apply .ct-2 .postItem .form .form-select {
  font-size: 2rem;
  border-radius: 8px;
  border: 1px solid transparent;
  margin-top: 10px;
  background: #EFEFEF;
  padding: 15px;
  height: 62px;
  color: #969696;
  -webkit-appearance: none;
  /* 去除默认样式 */
  -moz-appearance: none;
  appearance: none;
  background: #EFEFEF url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='%23333' d='M8 11L3 6h10z'/%3e%3c/svg%3e") no-repeat right 1rem center / 15px 15px;
  /* 自定义箭头 */
  padding-right: 2.5rem;
  /* 留出箭头空间 */
}
.join.job-apply .ct-2 .postItem .form .form-select:focus {
  box-shadow: none;
}
.join.job-apply .ct-2 .postItem .form textarea.form-control {
  line-height: inherit;
  height: inherit;
}
.join.job-apply .ct-2 .postItem .form ::placeholder {
  /* 现代浏览器 */
  color: #969696;
  /* 主颜色 */
  opacity: 1;
  /* Firefox 默认会降低透明度 */
}
.join.job-apply .ct-2 .postItem .form ::-webkit-input-placeholder {
  /* Chrome/Safari/Edge */
  color: #969696;
}
.join.job-apply .ct-2 .postItem .form ::-moz-placeholder {
  /* Firefox 18- */
  color: #969696;
  opacity: 1;
}
.join.job-apply .ct-2 .postItem .form :-ms-input-placeholder {
  /* IE10-11 */
  color: #969696;
}
.join.job-apply .ct-2 .postItem .form .ct-btn {
  margin-top: 50px;
}
.join.join-campus .ct-1 {
  text-align: center;
}
.join.join-campus .ct-1 img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}
.join.join-campus .ct-2 {
  padding: 30px 0 80px;
}
.join.join-campus .ct-2 .pic {
  box-shadow: 1px 3px 16px #343b38;
  max-width: 607px;
  border-radius: 12px;
  overflow: hidden;
}
.join.join-campus .ct-2 .pic .left-img {
  max-width: 100%;
  transition: all 0.3s;
}
.join.join-campus .ct-2 .pic .left-img:hover {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  transform: scale(1.1);
}
.join.join-campus .ct-2 .right-dec {
  color: #828282;
}
.join.join-campus .ct-2 .right-dec .p1 {
  font-size: 2.6rem;
  margin-bottom: 25px;
  font-family: 'Montserrat-Regular';
  color: #4F4F4F;
}
.join.join-campus .ct-2 .right-dec .scroll-container {
  height: 350px;
  overflow: auto;
  /* Firefox */
  /* WebKit浏览器定制 */
  /* Firefox浏览器定制 */
  scrollbar-color: transparent transparent;
  /* 滑块颜色 轨道颜色 */
  scrollbar-width: thin;
  transition: scrollbar-color 0.3s;
}
.join.join-campus .ct-2 .right-dec .scroll-container .text {
  font-size: 2.2rem;
  height: 100%;
}
.join.join-campus .ct-2 .right-dec .scroll-container::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
.join.join-campus .ct-2 .right-dec .scroll-container::-webkit-scrollbar-track {
  background: transparent;
}
.join.join-campus .ct-2 .right-dec .scroll-container::-webkit-scrollbar-thumb {
  background: transparent;
  border-radius: 4px;
  transition: background 0.3s;
}
.join.join-campus .ct-2 .right-dec .scroll-container:hover::-webkit-scrollbar-thumb {
  background: #888;
}
.join.join-campus .ct-2 .right-dec .scroll-container:hover::-webkit-scrollbar-thumb:hover {
  background: #666;
}
.join.join-campus .ct-2 .right-dec .scroll-container:hover {
  scrollbar-color: #888 transparent;
}
.join.join-campus .ct-2 .newtext {
  margin-top: 80px;
  font-size: 2.2rem;
}
.join.join-campus .ct-4 {
  padding: 60px 0;
}
.join.join-campus .ct-4 .title {
  margin-bottom: 35px;
}
.join.join-campus .ct-4 .dec {
  font-size: 2.2rem;
  margin-bottom: 80px;
  line-height: 2;
}
.join.join-campus .ct-4 .plan li {
  align-content: center;
  justify-content: center;
  border-bottom: 1px solid #ddd;
  display: flex;
}
.join.join-campus .ct-4 .plan li:hover {
  background: #eee;
}
.join.join-campus .ct-4 .plan li:last-child {
  border-bottom: 0;
}
.join.join-campus .ct-4 .plan li:first-child span {
  font-size: 1.6rem;
  font-weight: bold;
  color: #4F4F4F;
}
.join.join-campus .ct-4 .plan li:nth-child(odd) {
  background: #F9F9F9;
}
.join.join-campus .ct-4 .plan li:nth-child(even) {
  background: #F0F0F0;
}
.join.join-campus .ct-4 .plan li span {
  display: flex;
  align-items: center;
  padding: 25px;
  font-size: 1.4rem;
  text-align: left;
  border-right: 1px solid #ddd;
}
.join.join-campus .ct-4 .plan li span:nth-child(1) {
  width: 8%;
}
.join.join-campus .ct-4 .plan li span:nth-child(2) {
  width: 20%;
}
.join.join-campus .ct-4 .plan li span:nth-child(3) {
  width: 14%;
}
.join.join-campus .ct-4 .plan li span:nth-child(4) {
  width: 38%;
}
.join.join-campus .ct-4 .plan li span:nth-child(5) {
  width: 20%;
  border-right: 0;
}
.join.join-campus .ct-5 {
  padding: 60px 0;
}
.join.join-campus .ct-5 .title {
  margin-bottom: 50px;
}
.join.join-campus .ct-5 .postItem {
  padding: 40px;
  border-radius: 10px;
  overflow: hidden;
  background: #f9f9f9;
  margin: 0 auto 50px;
  color: #4f4f4f;
}
.join.join-campus .ct-5 .postItem .title {
  font-size: 3.8rem;
  text-align: center;
  font-family: 'Montserrat-Regular';
  margin-bottom: 35px;
}
.join.join-campus .ct-5 .postItem .position {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  margin-bottom: 15px;
  text-decoration: underline;
}
.join.join-campus .ct-5 .postItem .form {
  width: 85%;
  margin: 0 auto;
  /* 所有浏览器通用 */
  /* 浏览器兼容处理 */
}
.join.join-campus .ct-5 .postItem .form label {
  font-size: 2.4rem;
  color: #4F4F4F;
  margin-left: 15px;
}
.join.join-campus .ct-5 .postItem .form .ct-upload {
  position: relative;
}
.join.join-campus .ct-5 .postItem .form .ct-upload .ctfile {
  border-radius: 5px;
  font-size: 2rem;
  position: absolute;
  top: 0;
  left: 0;
  background: #efefef;
  color: #969696;
  padding: 18px;
  width: 100%;
}
.join.join-campus .ct-5 .postItem .form .form-control {
  font-size: 2rem;
  border-radius: 8px;
  border: 1px solid transparent;
  margin-top: 10px;
  background: #EFEFEF;
  padding: 15px;
  height: 62px;
  color: #969696;
}
.join.join-campus .ct-5 .postItem .form .form-control:focus {
  box-shadow: none;
}
.join.join-campus .ct-5 .postItem .form .form-select {
  font-size: 2rem;
  border-radius: 8px;
  border: 1px solid transparent;
  margin-top: 10px;
  background: #EFEFEF;
  padding: 15px;
  height: 62px;
  color: #969696;
  -webkit-appearance: none;
  /* 去除默认样式 */
  -moz-appearance: none;
  appearance: none;
  background: #EFEFEF url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='%23333' d='M8 11L3 6h10z'/%3e%3c/svg%3e") no-repeat right 1rem center / 15px 15px;
  /* 自定义箭头 */
  padding-right: 2.5rem;
  /* 留出箭头空间 */
}
.join.join-campus .ct-5 .postItem .form textarea.form-control {
  line-height: inherit;
  height: inherit;
}
.join.join-campus .ct-5 .postItem .form ::placeholder {
  /* 现代浏览器 */
  color: #969696;
  /* 主颜色 */
  opacity: 1;
  /* Firefox 默认会降低透明度 */
}
.join.join-campus .ct-5 .postItem .form ::-webkit-input-placeholder {
  /* Chrome/Safari/Edge */
  color: #969696;
}
.join.join-campus .ct-5 .postItem .form ::-moz-placeholder {
  /* Firefox 18- */
  color: #969696;
  opacity: 1;
}
.join.join-campus .ct-5 .postItem .form :-ms-input-placeholder {
  /* IE10-11 */
  color: #969696;
}
.join.join-campus .ct-5 .postItem .form .ct-btn {
  margin-top: 50px;
}
.contact {
    background: url(../image/abotmys/contact/contact-banner.jpg) no-repeat center / cover;
}
.contact .ct-2 {
  padding: 90px 0;
}
.contact .ct-2 .postItem {
  width: 100%;
  background: #f9f9f9 url(../image/contact-banner-bottom.jpg) no-repeat bottom center / 100%;
}
.contact .ct-2 .postItem .form {
  margin: 0 auto;
  padding: 60px 60px 240px;
  /* 所有浏览器通用 */
  /* 浏览器兼容处理 */
}
.contact .ct-2 .postItem .form .title {
  font-size: 3.8rem;
  text-align: center;
  font-family: 'Montserrat-Regular';
  border-bottom: 2px dashed #EBEBEB;
  padding-bottom: 50px;
  color: #4F4F4F;
}
.contact .ct-2 .postItem .form label {
  font-size: 2.4rem;
  color: #4F4F4F;
  margin-left: 10px;
}
.contact .ct-2 .postItem .form .form-control {
  font-size: 2rem;
  border-radius: 8px;
  border: 1px solid transparent;
  margin-top: 10px;
  background: #EFEFEF;
  padding: 15px;
  height: 62px;
  color: #969696;
}
.contact .ct-2 .postItem .form .form-control:focus {
  box-shadow: none;
}
.contact .ct-2 .postItem .form .form-select {
  font-size: 2rem;
  border-radius: 8px;
  border: 1px solid transparent;
  margin-top: 10px;
  background: #EFEFEF;
  padding: 15px;
  height: 62px;
  color: #969696;
  -webkit-appearance: none;
  /* 去除默认样式 */
  -moz-appearance: none;
  appearance: none;
  background: #EFEFEF url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='%23333' d='M8 11L3 6h10z'/%3e%3c/svg%3e") no-repeat right 1rem center / 15px 15px;
  /* 自定义箭头 */
  padding-right: 2.5rem;
  /* 留出箭头空间 */
}
.contact .ct-2 .postItem .form textarea.form-control {
  line-height: inherit;
  height: inherit;
}
.contact .ct-2 .postItem .form ::placeholder {
  /* 现代浏览器 */
  color: #969696;
  /* 主颜色 */
  opacity: 1;
  /* Firefox 默认会降低透明度 */
}
.contact .ct-2 .postItem .form ::-webkit-input-placeholder {
  /* Chrome/Safari/Edge */
  color: #969696;
}
.contact .ct-2 .postItem .form ::-moz-placeholder {
  /* Firefox 18- */
  color: #969696;
  opacity: 1;
}
.contact .ct-2 .postItem .form :-ms-input-placeholder {
  /* IE10-11 */
  color: #969696;
}
.product .title {
  font-size: 5rem;
  font-family: 'Montserrat-Regular';
  color: #4F4F4F;
  margin-bottom: 60px;
}
.product .ct-2 {
  padding: 80px 0 30px;
}
.product .ct-2 .dec {
  color: #828282;
  font-size: 2.6rem;
  font-family: Montserrat-Light;
}
.product .ct-3 {
  padding: 30px 0;
}
.product .ct-3 .swiper1 .swiper-wrapper .swiper-slide {
  width: 100%;
}
.product .ct-3 .swiper1 .swiper-wrapper .swiper-slide img {
  width: 100%;
  max-width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 10px;
  overflow: hidden;
}
.product .ct-4 {
  padding: 60px 0;
}
.product .ct-4 .title {
  margin-bottom: 40px;
}
.product .ct-4 .swiper2 {
  padding: 0 45px;
  position: relative;
  overflow: hidden;
}
.product .ct-4 .swiper2 .swiper-wrapper .swiper-slide {
  width: 100%;
  padding: 10px;
}
.product .ct-4 .swiper2 .swiper-wrapper .swiper-slide .ct-card {
  display: inline-block;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0px 1px 5px #e5e5e5;
  position: relative;
  cursor: pointer;
  width: 100%;
}
.product .ct-4 .swiper2 .swiper-wrapper .swiper-slide .ct-card img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
  height: 483px;
  transition: all 0.3s;
}
.product .ct-4 .swiper2 .swiper-wrapper .swiper-slide .ct-card p {
  font-family: 'Montserrat-Regular';
  width: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 15px;
  color: #696969;
  font-size: 1.8rem;
  background: #fff;
  white-space: nowrap;
  /* 禁止换行 */
  overflow: hidden;
  /* 隐藏溢出内容 */
  text-overflow: ellipsis;
  /* 显示省略号 */
  transition: all 0.3s;
  text-align: center;
  background: url(../image/contact-banner-bottom.jpg) no-repeat center center / cover;
}
.product .ct-4 .swiper2 .swiper-wrapper .swiper-slide .ct-card:hover img {
  transform: scale(1.05);
}
.product .ct-4 .swiper2 .swiper-wrapper .swiper-slide .ct-card:hover p {
  color: #fff;
  background: linear-gradient(-90deg, #91E0BA, #4AA286);
}
.product .ct-4 .swiper2 .pn {
  top: 50%;
  transform: translateY(-50%);
  background-color: #fff;
  z-index: 5;
  width: 72px;
  height: 72px;
  line-height: 72px;
  text-align: center;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0px 0px 10px 0px rgba(41, 44, 51, 0.1);
  display: block !important;
  position: absolute;
  top: 40%;
  transition: all 0.3s;
}
.product .ct-4 .swiper2 .pn:hover {
  background: #45ba73;
}
.product .ct-4 .swiper2 .pn:hover img.pic {
  display: none;
}
.product .ct-4 .swiper2 .pn:hover img.hide {
  display: inline-block;
}
.product .ct-4 .swiper2 .pn img {
  max-width: 100%;
  max-height: 100%;
  vertical-align: middle;
}
.product .ct-4 .swiper2 .pn .hide {
  display: none;
}
.product .ct-4 .swiper2 .pn.prev {
  left: 5px;
}
.product .ct-4 .swiper2 .pn.next {
  right: 5px;
}
.abilities .title {
  font-size: 5rem;
  font-family: 'Montserrat-Regular';
  color: #4F4F4F;
  margin-bottom: 50px;
}
.abilities .ct-1 {
  text-align: center;
}
.abilities .ct-1 img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}
.abilities .mapbj {
  padding: 80px 0 80px;
  background: linear-gradient(18deg, #ddedff, transparent);
}
.abilities .mapbj .new-card {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
.abilities .mapbj .new-card .item {
  font-size: 2.6rem;
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  height: 70px;
}
.abilities .mapbj .new-card .item:hover b {
  margin-top: -5px;
  text-shadow: 1px 1px 5px #757575;
}
.abilities .mapbj .new-card .item b {
  font-family: 'Montserrat-Regular';
  display: inline-block;
  font-weight: bold;
  font-size: 4rem;
  text-align: center;
  margin: 0 15px;
  color: #338d71;
  transition: all 0.3s;
}
.abilities .mapbj .new-card img {
  width: 50px;
}
.abilities .mapbj .pushMap {
  position: relative;
}
.abilities .mapbj .pushMap .dec {
  position: absolute;
  bottom: 0;
  left: 50px;
  font-size: 1.8rem;
  text-shadow: -1px -1px 0 white, 1px -1px 0 white, -1px 1px 0 white, 1px 1px 0 white;
  color: #686868;
}
.abilities .mapbj .map-container {
  position: relative;
  margin: 0 auto;
  overflow: hidden;
  /* 弹跳动画 */
  /* 连接线动画 */
  /* 国家图标定位 */
}
.abilities .mapbj .map-container .country-marker {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  left: 50%;
  top: 50%;
}
.abilities .mapbj .map-container .country-icon {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s;
  animation: pulse 1.5s infinite ease-in-out;
  z-index: 2;
}
.abilities .mapbj .map-container .country-icon:hover {
  transform: scale(1.1);
}
.abilities .mapbj .map-container .country-shadow {
  width: 35px;
  height: 12px;
  background: #36aaff;
  border-radius: 50%;
  /* margin-top: 5px; */
  filter: blur(2px);
}
.abilities .mapbj .map-container .country-flag {
  width: 40px;
  height: 47px;
  /* border: 2px solid white; */
  /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); */
  background-size: cover;
  background-position: center;
  border-radius: 3px;
/*  background: url(../images/mapIconbg.png) no-repeat center / cover;*/
  text-align: center;
  /* width: 40px;
                height: 25px;
                border: 2px solid white;
                box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
                background-size: cover;
                background-position: center;
                border-radius: 3px;
                background: url(images/mapIconbg.png)no-repeat center/cover; */
}
.abilities .mapbj .map-container .country-flag > img {
  width: 28px;
  border-radius: 50%;
  height: 28px;
  object-fit: cover;
  margin-top: 4px;
}
.abilities .mapbj .map-container .country-label {
  margin-top: 5px;
  padding: 2px 6px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  font-size: 10px;
  font-weight: bold;
  color: #333;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.abilities .mapbj .map-container #china {
  margin-top: -11%;
  margin-left: 25%;
}
.abilities .mapbj .map-container #usa {
  top: 11%;
  left: 18%;
}
.abilities .mapbj .map-container #mexico {
  margin-top: -14%;
  margin-left: -36%;
}
.abilities .mapbj .map-container #india {
  margin-top: -8%;
  margin-left: 16%;
}
.abilities .mapbj .map-container #vietnam {
  margin-top: -6%;
  margin-left: 21%;
}
.abilities .mapbj .map-container #thailand {
  margin-top: -5%;
  margin-left: 25%;
}
.abilities .mapbj .map-container #malaysia {
  margin-top: -3%;
  margin-left: 23%;
}
.abilities .mapbj .map-container #singapore {
  margin-top: 0;
  margin-left: 23%;
}
.abilities .ct-2 {
  padding: 80px 0 50px;
}
.abilities .ct-2 .dec {
  color: #828282;
  font-size: 2.4rem;
  font-family: Montserrat-Light;
  margin-bottom: 60px;
}
.abilities .ct-2 .dec b {
  font-family: Montserrat-Regular;
  color: #338d71;
}
.abilities .ct-2 .item {
  text-align: center;
  transition: all 0.3s;
  padding: 25px 15px 15px;
  border-radius: 8px;
  max-height: 415px;
}
.abilities .ct-2 .item:hover {
  background: #f4f4f436;
}
.abilities .ct-2 .item > img {
  max-width: 200px;
  border-radius: 50%;
  margin-bottom: 5px;
}
.abilities .ct-2 .item .num {
  font-family: 'Montserrat-Regular';
  font-weight: bold;
  color: #4B9880;
  font-size: 3.8rem;
  margin-bottom: 10px;
}
.abilities .ct-2 .item .dec {
  font-size: 2.6rem;
}
.abilities .ct-2 .item .mt-number-animate {
  font-family: "Montserrat-Regular";
  font-weight: bold;
  line-height: 60px;
  height: 60px;
  overflow: hidden;
  display: inline-block;
  position: relative;
}
.abilities .ct-2 .item .mt-number-animate .mt-number-animate-dot {
  width: 15px;
  line-height: 30px;
  float: left;
  text-align: center;
}
.abilities .ct-2 .item .mt-number-animate .mt-number-animate-dom {
  width: 30px;
  text-align: center;
  float: left;
  position: relative;
  top: 0;
}
.abilities .ct-2 .item .mt-number-animate .mt-number-animate-dom .mt-number-animate-span {
  width: 100%;
  float: left;
}
.abilities .ct-3 {
  padding: 50px 0;
}
.abilities .ct-3 .dec {
  color: #828282;
  font-size: 2.6rem;
  font-family: Montserrat-Light;
  margin-bottom: 70px;
}
.abilities .ct-3 .dec b {
  color: #4B9880;
}
.abilities .ct-3 .item {
  text-align: center;
  transition: all 0.3s;
  overflow: hidden;
  border-radius: 10px;
}
.abilities .ct-3 .item:hover {
  margin-top: -5px;
}
.abilities .ct-3 .item img {
  max-width: 100%;
  margin-bottom: 20px;
  border-radius: 10px;
  transition: all 0.3s;
}
.abilities .ct-3 .item .num {
  font-family: 'Montserrat-Regular';
  font-weight: bold;
  color: #4B9880;
  font-size: 6.8rem;
  margin-bottom: 10px;
}
.abilities .ct-3 .item .dec {
  font-family: 'Montserrat-Regular';
  font-size: 2.6rem;
  color: #4F4F4F;
}
.abilities .ct-4 {
  padding: 50px 0;
}
.abilities .ct-4 .pic {
  text-align: center;
}
.abilities .ct-4 .pic img {
  max-width: 100%;
  margin-bottom: 5px;
  border-radius: 10px;
}
.abilities .ct-4 .item .p1 {
  font-family: 'Montserrat-Regular';
  font-size: 2.4rem;
  color: #4F4F4F;
  margin-bottom: 15px;
}
.abilities .ct-4 .item .dec {
  font-size: 2rem;
  line-height: 1.8;
}
.abilities .ct-4 .swiper1 {
  margin-top: 20px;
  overflow: hidden;
}
.abilities .ct-4 .swiper1 .swiper-wrapper .swiper-slide {
  width: 100%;
}
.abilities .ct-4 .swiper1 .swiper-wrapper .swiper-slide:hover img {
  transform: scale(1.02);
}
.abilities .ct-4 .swiper1 .swiper-wrapper .swiper-slide img {
  width: 100%;
  max-width: 100%;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s;
}
.abilities .ct-5 {
  padding: 50px 0;
}
.abilities .ct-5 .dec {
  color: #828282;
  font-size: 2.6rem;
  margin-bottom: 100px;
}
.abilities .ct-5 .dec b {
  color: #4B9880;
}
.abilities .ct-5 .item {
  text-align: center;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.abilities .ct-5 .item img {
  max-width: 100%;
  margin-bottom: 5px;
  border-radius: 10px;
}
.abilities .ct-5 .item .dec {
  font-size: 2.6rem;
  color: #828282;
  margin-top: 40px;
}
.new .title {
  font-size: 5rem;
  font-family: 'Montserrat-Regular';
  color: #4F4F4F;
  margin-bottom: 50px;
}
.new .ct-1 {
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(../image/news/news-banner.jpg) center center / cover;
}
.new .ct-2 {
  padding: 80px 0;
  background: #f7f7f7;
}
.new .ct-2 .ct-card {
  display: inline-block;
}
.new .ct-2 .ct-card:hover .imgWrap img {
  transform: scale(1.1);
}
.new .ct-2 .ct-card:hover .time,
.new .ct-2 .ct-card:hover .dec {
  color: #4B9880;
}
.new .ct-2 .ct-card .imgWrap {
  height: 100%;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 15px;
}
.new .ct-2 .ct-card .imgWrap img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: all 0.3s;
}
.new .ct-2 .ct-card .time {
  font-size: 4rem;
  color: #4F4F4F;
}
.new .ct-2 .ct-card .dec {
  font-size: 2.4rem;
  color: #828282;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.new .ct-2 .item-group {
  background: #f7f7f7;
  padding: 25px;
}
.new .ct-2 .item-group li {
  background: #fff;
  border-radius: 11px;
  padding: 15px 25px;
  display: flex;
  align-items: center;
  justify-content: start;
  position: relative;
  margin-bottom: 25px;
  border: 1px solid #eee;
}
.new .ct-2 .item-group li:hover {
  box-shadow: 0px 4px 15px 0 #00cb2326;
}
.new .ct-2 .item-group li:hover .item-img img {
  transform: scale(1.1);
}
.new .ct-2 .item-group li:hover .title {
  color: #338d71 !important;
}
.new .ct-2 .item-group li a {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: start;
}
.new .ct-2 .item-group li .item-img {
  width: 250px;
  height: 200px;
  border-radius: 8px;
  overflow: hidden;
  margin-right: 50px;
}
.new .ct-2 .item-group li .item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s;
}
.new .ct-2 .item-group li .item-content {
  width: 50%;
  flex: 1;
}
.new .ct-2 .item-group li .item-content .title {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin-top: 10px;
  margin-bottom: 20px;
  color: #4F4F4F;
  font-weight: bold;
  font-size: 2.2rem;
}
.new .ct-2 .item-group li .item-content .time {
  font-size: 1.6rem;
  text-align: right;
}
.new .ct-2 .item-group li .item-content .dec {
  font-size: 1.8rem;
  margin-bottom: 15px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.new .ct-2 .ct-pagination {
  margin-top: 50px;
}
.new .ct-2 .ct-pagination .page-item.active .page-link {
  background: linear-gradient(-90deg, #91E0BA, #4AA286);
  border-radius: 6px;
  color: #fff;
}
.new .ct-2 .ct-pagination .page-item .page-link {
  width: 35px;
  height: 35px;
  line-height: 35px;
  border: none;
  font-size: 2rem;
  text-align: center;
  color: #6d6d6f;
  margin: 0 15px;
  padding: 0;
}
.new .ct-2 .ct-pagination .page-item .page-link .jiantou {
  display: inline-block;
  width: 15px;
  height: 15px;
  background: url(../image/c-jiantou-b.png) no-repeat center / cover;
  margin-top: 10px;
}
.new .ct-2 .ct-pagination .page-item .page-link .jiantou.left-jiantou {
  transform: scaleX(-1);
}
.newsdetail .info {
  padding: 80px 0;
}
.newsdetail .info .title {
  font-family: 'Montserrat-Regular';
  font-size: 4rem;
  color: #4F4F4F;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 20px;
}
.newsdetail .info .time {
  text-align: center;
  margin-bottom: 35px;
  font-size: 3rem;
  color: #4F4F4F;
}
.newsdetail .info .editor img {
  max-width: 100%;
}
.infonation .title {
  font-size: 5rem;
  font-family: 'Montserrat-Regular';
  color: #4F4F4F;
  margin-bottom: 60px;
}
.infonation .ct-2 {
  padding: 80px 0;
}
.infonation .ct-2 .chart2_img img {
  border: 1px solid #86D7B2;
  width: 100%;
  border-radius: 10px;
  padding: 10px;
}
.infonation .ct-2 .abtn {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
}
.infonation .ct-2 .abtn a {
  display: inline-block;
  background: #F9F9F9;
  width: 22%;
  font-size: 1.4rem;
  border-radius: 5px;
  text-align: center;
  padding: 15px 0;
}
.infonation .ct-2 .abtn a.active {
  color: #fff;
  background: linear-gradient(-90deg, #91E0BA, #4AA286);
}
.infonation .ct-2 .chart2_text p {
  margin-bottom: 10px;
}
.infonation .ct-2 .chart2_text span {
  font-size: 2rem;
}
.infonation .ct-2 .chart2_text span:first-child {
  font-weight: bold;
  color: #4F4F4F;
}
.infonation .ct-2 .contact-title {
  font-size: 2.6rem;
  color: #4F4F4F;
  font-family: 'Montserrat-Regular';
  margin-bottom: 20px;
  text-align: center;
}
.infonation .ct-2 .contact-dec {
  font-size: 1.8rem;
  color: #4F4F4F;
  font-family: 'Montserrat-Regular';
  background: #f3f9f7;
  padding: 30px 35px 20px;
  border-radius: 10px;
  line-height: 2;
}
.infonation .ct-2 .contact-dec p {
  margin-bottom: 6px;
}
.infonation .ct-2 .contact-dec p img {
  margin-right: 10px;
  margin-top: -5px;
  width: 22px;
}
.sustainability {
  position: relative;
  padding-bottom: 250px;
}
.sustainability .bg-img-header {
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  position: absolute;
  top: -170px;
  left: 0;
}
.sustainability .bg-img-footer {
  content: '';
  width: 400px;
  position: absolute;
  bottom: 0;
  right: 0;
}
.sustainability .title {
  font-size: 5rem;
  font-family: 'Montserrat-Regular';
  color: #4F4F4F;
  margin-bottom: 60px;
}
.sustainability .dec {
  color: #828282;
  font-size: 2.6rem;
  text-align: center;
  width: 70%;
  margin: 0 auto 30px;
}
.sustainability .dec span {
  display: block;
}
.sustainability .more {
  padding: 0 20px;
  min-width: 350px;
  margin-bottom: 120px;
}
.sustainability .samllTitle {
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 70px;
  text-align: center;
  color: #338d71;
  margin-top: 50px;
}
.sustainability .ct-1 {
  text-align: center;
}
.sustainability .ct-1 img {
  max-width: 100%;
}
.sustainability .ct-2 {
  max-width: 1920px;
  margin: 0 auto;
  padding: 170px 0 0;
  position: relative;
}
.sustainability .ct-2 .card-focus {
  display: flex;
  align-items: start;
  justify-content: center;
  position: relative;
  margin-bottom: 110px;
}
.sustainability .ct-2 .card-focus .progress-container {
  width: 150px;
  height: 6px;
  background: #f0f0f0;
  border-radius: 5px;
  overflow: hidden;
  margin: 80px auto;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}
.sustainability .ct-2 .card-focus .progress-bar {
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #63c995 20%, /* 绿色起始 */ #e2f165 35%, /* 黄绿色过渡 */ #FFEB3B 50%, /* 主黄色区域 */ #8BC34A 65%, /* 黄绿色过渡 */ #63c995 80% /* 绿色结束 */);
  background-size: 200% 100%;
  animation: flow 2s linear infinite;
  border-radius: 5px;
}
@keyframes flow {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: -100% 0;
  }
}
.sustainability .ct-2 .card-focus .item {
  width: 20%;
  text-align: center;
}
.sustainability .ct-2 .card-focus .item .pic {
  width: 200px;
  height: 200px;
  margin-bottom: 20px;
  border-radius: 50%;
  border: 1px solid #4abb8d;
  overflow: hidden;
}
.sustainability .ct-2 .card-focus .item .info {
  font-size: 2rem;
}
.sustainability .ct-2 .card-focus .line {
  margin-top: 90px;
  width: 120px;
  height: 2px;
  background: #4abb8d;
}
.sustainability .ct-2 .card-strategies {
  display: flex;
  align-items: start;
  justify-content: space-around;
  position: relative;
  margin-bottom: 90px;
  flex-wrap: wrap;
}
.sustainability .ct-2 .card-strategies .item {
  width: 25%;
  text-align: center;
  margin-bottom: 90px;
  cursor: pointer;
}
.sustainability .ct-2 .card-strategies .item .icon-num {
  position: relative;
  display: inline-block;
}
.sustainability .ct-2 .card-strategies .item .icon-num b {
  position: absolute;
  top: 0;
  left: -10px;
  display: inline-block;
  background: #e8e8e8;
  width: 28px;
  height: 28px;
  text-align: center;
  line-height: 28px;
  border-radius: 50%;
}
@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
    /* 起始和结束位置 */
  }
  50% {
    transform: translateY(-15px);
    /* 向上弹跳 */
  }
}
.sustainability .ct-2 .card-strategies .item:hover .icon-num {
  animation: bounce 0.8s linear;
}
.sustainability .ct-2 .card-strategies .item:hover .info {
  color: #63c995;
}
.sustainability .ct-2 .card-strategies .item .pic {
  width: 110px;
  margin-bottom: 20px;
}
.sustainability .ct-2 .card-strategies .item .info {
  font-size: 2rem;
}
.sustainability .ct-3 .p1 {
  margin-bottom: 30px;
}
.sustainability .ct-3 .introduce1 {
  font-family: 'Montserrat-Regular';
  font-size: 2.6rem;
  margin-bottom: 30px;
}
.sustainability .ct-3 .introduce2 {
  font-size: 2rem;
  margin-bottom: 40px;
}
.sustainability .ct-3 .grey-bg {
  padding: 80px 0;
  margin-bottom: 120px;
  background: -webkit-linear-gradient(left, #f1f1f1, #ffffff00);
  background: -moz-linear-gradient(left, #f1f1f1, #ffffff00);
  background: -o-linear-gradient(left, #f1f1f1, #ffffff00);
  background: linear-gradient(to right, #f1f1f1, #ffffff00);
}
.sustainability .ct-3 .ct-card-target {
  max-width: 1100px;
  margin: 0 auto;
}
.sustainability .ct-3 .ct-card-target img {
  max-width: 100%;
}
.sustainability .ct-4 .grey-bg {
  padding: 100px 0;
  background: -webkit-linear-gradient(left, #f1f1f1, #ffffff00);
  background: -moz-linear-gradient(left, #f1f1f1, #ffffff00);
  background: -o-linear-gradient(left, #f1f1f1, #ffffff00);
  background: linear-gradient(to right, #f1f1f1, #ffffff00);
}
.sustainability .ct-4 .ct-card-actions {
  max-width: 1100px;
  margin: 0 auto;
}
.sustainability .ct-4 .ct-card-actions .item {
  display: flex;
  align-items: center;
  margin-bottom: 50px;
}
.sustainability .ct-4 .ct-card-actions .item .pic {
  min-width: 160px;
  border-radius: 50%;
  border: 1px solid #4abb8d;
  overflow: hidden;
  margin-right: 60px;
}
.sustainability .ct-4 .ct-card-actions .item .info {
  font-size: 2.2rem;
  text-align: left;
  line-height: 2;
}
.sustainability .ct-4 .ct-card-actions .item .info b {
  font-weight: bold;
  color: #338d71;
}
.footer {
    margin: 0 auto;
    padding: 40px 0 20px;
    background: url(../image/investor/footer-bj.png) no-repeat center / cover;
}
.footer .links {
  display: flex;
  justify-content: space-between;
  margin-bottom: 35px;
}
.footer .links ul li {
  margin-bottom: 10px;
}
.footer .links ul li:first-child a {
  font-size: 2.2rem;
  font-weight: bold;
}
.footer .links ul li a {
  font-size: 1.6rem;
  color: #686868;
  text-decoration: none;
}
.footer .links ul li a:hover {
  color: #338d71;
}
.footer .item > p {
  font-size: 1.9rem;
  color: #686868;
  margin-bottom: 25px;
}
.footer .item > p img {
  margin-right: 10px;
  margin-top: -5px;
}
.footer .item > p.title {
  font-family: 'Montserrat-Regular';
  font-weight: bold;
  font-size: 3rem;
  margin-bottom: 30px;
}
.footer .qrcenter {
  display: flex;
  justify-content: right;
}
.footer .qrcenter img {
  max-width: 100%;
  margin-top: -30px;
}
.footer .recordNumber {
  border-top: 1px solid #20644e;
  padding-top: 30px;
  margin-top: 30px;
  text-align: center;
  color: #20644e;
}
.footer .recordNumber a {
  color: #20644e;
}
.footer #return-top {
  cursor: pointer;
  position: fixed;
  right: 15px;
  bottom: 15px;
  z-index: 10000;
  width: 48px;
  height: 48px;
  line-height: 45px;
  border-radius: 6px;
  color: #fff;
  background: #338d71;
  overflow: hidden;
  text-align: center;
  text-decoration: none;
  transition: transform 0.45s ease-in-out, background 0.3s cubic-bezier(0.2, 1, 0.3, 1);
}
.footer #return-top img {
  max-width: 15px;
}
.footer #return-top:hover {
  color: #fff;
  background: #ffe976;
  text-decoration: none;
}
.slicknav {
  position: relative;
  /* 汉堡菜单按钮样式 */
}
.slicknav .slicknav_menu {
  position: fixed;
  z-index: 111;
  top: 0;
  left: 0;
  width: 100%;
}
.slicknav .slicknav_menu .nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  z-index: 11000;
  width: 100%;
  height: 60px;
  background: #ededed;
  top: 0;
  left: 0;
  padding: 10px;
}
.slicknav .navbar-mobile {
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: #ededed;
  border-bottom: 1px solid #ddd;
  max-height: 500px;
  overflow: hidden;
  transform: translateY(-100%);
  transition: max-height 0.4s ease, transform 0.4s ease;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 110;
  transition: all 0.5s;
  overflow: auto;
}
.slicknav .navbar-mobile.show {
  transform: translateY(60px);
  /* 回到正常位置 */
}
.slicknav .navbar-mobile .nav-item {
  display: inline-block;
  width: 100%;
  padding: 15px;
  cursor: pointer;
  border-bottom: 1px solid #eee;
  background-color: #fff;
}
.slicknav .navbar-mobile .nav-item span {
  font-size: 1rem;
}
.slicknav .navbar-mobile .nav-item:hover,
.slicknav .navbar-mobile .nav-item:active {
  background-color: #f2f2f2;
}
.slicknav .sub-menu,
.slicknav .sub-sub-menu {
  display: none;
  /* 默认隐藏子菜单 */
  padding-left: 20px;
  background-color: #fff;
}
.slicknav .icon {
  float: right;
  transition: transform 0.3s ease;
}
.slicknav .sub-sub-menu .icon {
  font-size: 12px;
}
.slicknav .icon.rotate {
  transform: rotate(90deg);
}
.slicknav .hamburger-menu {
  width: 50px;
  font-size: 20px;
  cursor: pointer;
  background-color: #338d71;
  color: white;
  padding: 2px 15px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
