main {
    background: #f7f7f7;
}

/* 轮播图样式 */
.carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    width: 100%;
    flex-shrink: 0;
}

.carousel-slide img {
    width: 100%;
    /* height: 515px; */
}

.carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    box-sizing: border-box;
}

.carousel-btn {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.carousel-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}

.carousel-indicators {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.indicator {
    width: 25px;
    height: 5px;
    /* border-radius: 50%; */
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s ease;
}

.indicator.active {
    background: rgb(97,191,46);
}

.banner img {
    width: 100%;
}

.banner-d-flex{
    display: flex;
    justify-content: space-between;
}

.banner-d-flex .banner-item{
    overflow: hidden;
    flex: 1;
    position: relative;
    height: 410px;
    cursor: pointer;
}



.banner-d-flex .banner-item .mask-before{
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 1;
    left: 0;
    top: 0;
    background-color: #ffff;
    opacity: .7;
    
}

.banner-d-flex .banner-item h2{
    font-size: 42px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    color: rgb(24,91,59);
    z-index: 3;
    letter-spacing: 8px;
}

.banner-d-flex .active h2{
    color: white !important;
}

.banner-d-flex .banner-item .mask-hidden{
    z-index: -1 !important;
}

.banner-d-flex .banner-item .mask-show{
    z-index: 2 !important;
}

.banner-d-flex .banner-item .mask-after{
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: -1;
    left: 0;
    top: 0;
    background-color: rgb(24,91,59);
    opacity: .8;
  
}

.banner-d-flex .active .mask-after{
    z-index: 2 !important;
}

.banner-d-flex .active  h2{
   color: white !important;
}

.banner-d-flex .active  .mask-before{
    z-index: -1 !important;
}

.banner-d-flex img{
    transition: all .7s;
    height: 410px;
}


main .getting-box {
    text-align: center;
    margin-top: 110px;
    margin-bottom: 210px;
}

main .getting-box .title p {
    color: rgb(97,191,46);
    letter-spacing: 5px;
}

main .getting-box .big-title {
    font-size: 70px;
    letter-spacing: 10px;
    margin-top: 35px;
    color: #333333;
    font-weight: normal;
    position: relative;
    padding-bottom: 55px;
}

main .getting-box .big-title::after {
    position: absolute;
    content: '';
    width: 10%;
    height: 6px;
    background-color: rgb(97,191,46);
    border-radius: 4px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

main .getting-box .big-title i {
    color: #666666;
    font-weight: 500;
}

main .getting-box .sm-title {
    margin-top: 25px;
    margin-bottom: 85px;
}

main .getting-box .sm-title p {
    font-size: 36px;
    letter-spacing: 6px;
    color: #333333;
}

main .getting-box .sm-title p:nth-of-type(1) {
    color: rgb(97,191,46);
    margin-bottom: 8px;
}

main .getting-box .getting-wapper {
    display: flex;
    justify-content: space-between;
}

main .getting-box .getting-wapper .getting-wapper-item {
    width: 30%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding-top: 35px;
    padding-bottom: 45px;
    box-sizing: border-box;
}

main .getting-box .getting-wapper .getting-wapper-item img {
    margin-bottom: 15px;
}

main .getting-box .getting-wapper .getting-wapper-item h2 {
    margin-bottom: 15px;
    font-size: 28px;
    color: #333333;
}

main .getting-box .getting-wapper .getting-wapper-item p {
    color: #999999;
    font-size: 18px;
}

main .getting-box .getting-wapper .getting-wapper-item button {
    border: 1px solid rgb(97,191,46);
    color: rgb(97,191,46);
    width: 50%;
    background: transparent;
    height: 40px;
    margin-top: 35px;
    cursor: pointer;
}

main .getting-box .getting-footer {
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

main .getting-box .getting-footer .getting-footer-title {
    width: 300px;
    height: 50px;
    background: rgb(97,191,46);
    color: white;
    line-height: 50px;
    border-radius: 6px;
    font-size: 26px;
}

main .getting-box .getting-footer h2 {
    color: #333333;
    margin-top: 20px;
}

main .getting-box .getting-footer p {
    color: rgb(97,191,46);
    margin-top: 20px;
    letter-spacing: 3px;
}

main .getting-box .getting-footer p i {
    font-size: 22px;

}

.IATSE-box {
    text-align: center;
    margin-bottom: 40px;
}

.IATSE-box .title img {
    width: 800px;
    margin-bottom: 20px;
}

.IATSE-box p {
    color: #333333;
    font-size: 26px;
    line-height: 50px;
}

.IATSE-box p i {
    color: rgb(24,91,59);
}

main .INNOVATION-box {
    margin-top: 80px;
}

main .INNOVATION-box .title {
    text-align: center;
}

main .INNOVATION-box .title img {
    width: 450px;
}

main .INNOVATION-box-wapper {
    margin-top: 40px;
}

main .INNOVATION-box-wapper .INNOVATION-box-wapper-item {
    display: flex;
    align-items: center;
    width: 83%;
    justify-content: flex-end;
    margin-bottom: 40px;
}

main .INNOVATION-box .INNOVATION-box-img-list{
    position: relative;
}

main .INNOVATION-box .INNOVATION-box-img-list .center-img{
    position: absolute;
    width: 25%;
    height: 272px;
    left: 57%;
    top: 17%;
    transform: translateX(-50%);
    z-index: 999;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

main .INNOVATION-box .INNOVATION-box-img-list .center-img img{
    width: 90%;
    border-radius: 50%;
    height: 90%;
}

/* main .INNOVATION-box .INNOVATION-box-img-list .img-list-top{
    justify-content: space-between;
} */

main .INNOVATION-box .INNOVATION-box-img-list{
    border: 2px solid rgb(97,191,46);
    padding: 20px;
    /* box-sizing: border-box; */
}



main .INNOVATION-box .INNOVATION-box-img-list .img-list-top img:nth-of-type(1){
    width: 63%;
    margin-right: 15px;
}

main .INNOVATION-box .INNOVATION-box-img-list .img-list-top img:nth-of-type(2){
    width: 35.5%;
}

main .INNOVATION-box .INNOVATION-box-img-list .img-list-info .img-list-info-l{
    background: rgb(94 182 47);
    justify-content: center;
    display: flex;
    font-size: 28px;
    color: white;
    width: 15%;
    letter-spacing: 10px;
    writing-mode: vertical-rl; /* 从右到左垂直排列 */
    text-orientation: upright;
    align-items: center;
}

main .INNOVATION-box .INNOVATION-box-img-list .img-list-info .img-list-info-l h1{
    letter-spacing: 40px;
    margin-bottom: 20px;
}

main .INNOVATION-box-wapper .INNOVATION-box-wapper-item .INNOVATION-box-wapper-item-text h1 {
    color: rgb(24,91,59);
    letter-spacing: 6px;
    font-size: 26px;
    font-weight: normal;
    text-align: right;
    margin-bottom: 10px;
}

main .INNOVATION-box-wapper .INNOVATION-box-wapper-item .INNOVATION-box-wapper-item-text p {
    color: #333333;
    letter-spacing: 6px;
    font-size: 26px;
    text-align: right;
}

main .INNOVATION-box-wapper .INNOVATION-box-wapper-item .INNOVATION-box-wapper-item-img-box img {
    width: 280px;
}

main .INNOVATION-box .banner {
    border: 2px solid rgb(97,191,46);
    box-sizing: border-box;
    padding: 10px;
    margin-top: 160px;
}

main .news-center {

    margin-top: 170px;
}

main .news-center .title {
    text-align: center;
}

main .news-center .title img {
    width: 450px;
}

main .news-center .news-list {
    margin-top: 30px;
}

main .news-center .news-list .news-item {
    display: flex;
    justify-content: space-between;
}

main .news-center .news-list .news-item .news-info {
    width: 470px;
    margin-right: 70px;
}

main .news-center .news-list .news-item .news-info img {
    width: 100%;
}

main .news-center .news-list .news-item .news-info .news-list-item-title {
    color: rgb(24,91,59);
    margin: 10px 0;
}

main .news-center .news-list .news-item .news-info p {
    color: #333333;
    text-align: left;
    font-size: 24px;
}

main .news-center .news-list .news-item .news-readmore {
    width: 150px;
    margin-top: 40px;
    height: 35px;
    line-height: 45px;
    display: flex;
    color: rgb(24,91,59);
    border: 1px solid rgb(24,91,59);
    text-align: center;
    align-items: center;
    justify-content: center;
}

main .news-center .news-list .news-item .news-readmore img {
    width: 20px;
    margin-left: 8px;
}

main .news-center .news-list .news-item .news-slide {
    border-top: 1px solid #888;
    padding-top: 15px;

}

main .news-center .news-list .news-item .news-slide .news-slide-item {
    display: flex;
    border-bottom: 1px solid #888;
    padding-bottom: 25px;
    margin-top: 30px;
}

main .news-center .news-list .news-item .news-slide .news-slide-item .date {
    display: flex;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    width: 110px;
    text-align: center;
    border: 1px solid #888;
    color: #888;
    margin-right: 25px;
    height: 70px;
    padding-bottom: 8px;
}

main .news-center .news-list .news-item .news-slide .news-slide-item .date .day {
    font-size: 26px;
    position: relative;
}

main .news-center .news-list .news-item .news-slide .news-slide-item .date .day::after {
    position: absolute;
    content: '';
    height: 1px;
    background: rgb(97,191,46);
    bottom: 0px;
    left: 50%;
    width: 31px;
    transform: translateX(-50%);

}

main .news-center .news-list .news-item .news-slide .news-slide-item .news-slide-info p:nth-of-type(1) {
    color: #333333;
    font-size: 22px;
    font-weight: 700;
}

main .news-center .news-list .news-item .news-slide .news-slide-item .news-slide-info p:nth-of-type(2) {
    color: #888;
    margin-top: 8px;
}

main .about-box {
    margin: 150px auto;
    margin-bottom: 0;
    padding-bottom: 150px;
    width: 1150px;
}

main .about-box .about-compnay {
    position: relative;
    width: 90%;
    margin: 0 auto;
    border: 1px solid rgb(24,91,59);
    border-radius: 10px;
    box-sizing: border-box;
    padding: 90px 70px 50px 70px;
}

main .about-box .about-compnay .title {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 30%;
}

main .about-box .about-compnay .title img {
    width: 100%;
}

main .about-box .about-compnay p {
    text-indent: 2em;
    line-height: 55px;
    color: #333333;
    font-size: 22px;
}

main .about-box .about-img-list {
    margin-top: 70px;
    text-align: center;
    
}

main .about-box .about-img-list h2 {
    color: rgb(24,91,59);
    font-size: 32px;
}

main .about-box .about-img-list .about-img-list-title p {
    color: #888;
    margin-top: 10px;
    font-size: 20px;
    letter-spacing: 3px;
}

main .about-box .about-img-list .about-info-imgList {
    position: relative;
    margin-top: 70px;
    
}

.carousel-about-info{
    overflow: hidden;
}


main .about-box .about-img-list .about-info-imgList .about-info-arr-l,
main .about-box .about-img-list .about-info-imgList .about-info-arr-r {
    position: absolute;
    width: 30px;
    height: 30px;
    cursor: pointer;
    background: url(../images/f772c574-076e-4a05-8381-31a570bc98ab_07324234.png);
    background-size: 100% 100%;
    top: 50%;
    transform: translateY(-50%);
}

main .about-box .about-img-list .about-info-imgList .about-info-arr-l{
    left: -50px;

}

main .about-box .about-img-list .about-info-imgList .about-info-arr-r{
   right: -50px;
    transform: rotate(180deg);
}

main .about-box .about-img-list .about-info-imgList .about-info-imgList-box {
    display: flex;
    width: 200%;
    transition: transform 0.5s ease;
    will-change: transform;
}

main .about-box .about-img-list .about-info-imgList .about-info-imgList-box .about-info-imgList-box-item{
    flex: 1;
}

main .about-box .about-img-list .about-info-imgList .about-info-imgList-box .about-info-imgList-box-item img {
    width: 100%;
    height: 100%;
}


main .about-box .about-map-box{
    margin-top: 100px;
}

main .about-box .about-map-box .title{
    text-align: center;
}

main .about-box .about-map-box .title h1{
    color: rgb(24,91,59);
    padding-bottom: 20px;
    letter-spacing: 2px;
    font-size: 22px;
    font-weight: normal;
    position: relative;
}

main .about-box .about-map-box .title h1::after{
    content: '';
    width: 80px;
    height: 2px;
    background: rgb(24,91,59);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

main .about-box .about-map-box .title p{
    font-size: 24px;
    color: #333333;
}

main .about-box .about-map-box .title p:nth-of-type(1){
    margin-top: 20px;
    margin-bottom: 5px;
}

main .about-box .about-map-box .title p i{
    color: rgb(24,91,59);
    font-weight: 600;
}

main .about-box .about-map-box .title .date{
    font-size: 16px;
    color: rgb(97,191,46);
}

main .about-box .about-map-box .about-map-tab{

    border: 1px solid rgb(24,91,59);
    display: flex;
    width: 360px;
    margin: 20px auto
}

main .about-box .about-map-box .about-map-tab .tab-item{
    width: 180px;
    height: 40px;
    line-height: 40px;
    font-size: 26px;
    text-align: center;    
    cursor: pointer;
}

main .about-box .about-map-box .about-map-tab .active{
    color: #fff;
    background: rgb(24,91,59);
}

main .about-box .about-map-box .banner{
    margin-top: 50px;
}


/* 照片墙 */
main .INNOVATION-box-img-list .img-list-info{
    margin-top: 13px;
}

main .INNOVATION-box-img-list .img-list-info .img-list-info-r{
    margin-left: 15px;
 
}

main .INNOVATION-box-img-list .img-list-info .img-list-info-r img{
    width: 100%;
}

main .INNOVATION-box-img-list .img-list-info .img-list-info-r .top .img-box{
    width: 50%;
    height: auto;
}

main .INNOVATION-box-img-list .img-list-info .img-list-info-r .top .img-box:nth-of-type(1){
   margin-right: 15px;
}


