.box-a {
    background-image: url('../images/index/bg1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-bottom: 77px;
}

.box-title h3 {
    font-family: SourceHanSansSC-Heavy, SourceHanSansSC-Heavy;
    font-weight: normal;
    font-size: 40px;
    color: #30803A;

}

/* .box-content p {
    font-family: SourceHanSansSC-Medium, SourceHanSansSC-Medium;
    font-weight: normal;
    font-size: 36px;
    color: #114881;
    line-height: 65px;
    text-indent: 2em;
} */

.box-l {
    width: 50%;
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

}

.box-r img {
    margin-top: 8px;
}

.more-btn {
    width: 248px;
    height: 79px;
    background: #30803A;
    border-radius: 40px 40px 40px 40px;
    font-size: 30px;
    color: #FEFEFE;
    display: flex;
    justify-content: center;
    align-items: center;
}

.more-btn:hover {
    background: #236B2C;
}

.box-b {
    background-image: url('../images/index/bg2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 130px 0;
    position: relative;
    overflow: hidden;
}

.box-b-content {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.box-b-tabs {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
    justify-content: space-between;
    height: 320px;
    /* padding: 160px 0; */
    margin-right: 5vw;
}

.tab-item {}

.tab-item span {
    font-family: SourceHanSansSC-Bold, SourceHanSansSC-Bold;
    font-weight: normal;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;

}

.tab-item span:hover {
    color: #9CBD2F;
}

.tab-item.active span {
    color: #9CBD2F;
    border-bottom: 9px solid #9CBD2F;
}



.box-b-slider-wrap {
    /* overflow: hidden; */
    position: relative;
    flex: 1;
    /* padding: 20px 0; */
}

.box-b-slider {
    width: 100%;
    overflow: visible;
    position: relative;
    height: 630px;
}

.slider-wrapper {
    position: relative;
    height: 630px;
    width: 100%;
}

.slider-item {
    width: calc(100% - 380px);
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: #fff;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    border-radius: 36px;
    /* border: 1px solid #F5F5F5; */
    padding: 33px;
    transition: all 0.5s ease;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
}

.slider-item.active {
    height: 630px;
    z-index: 10;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

.slider-item.next {
    background: rgba(30, 90, 153, 0.6);
    /* border-color: rgba(255, 255, 255, 0.15); */
    z-index: 5;
    opacity: 1;
    height: 560px;
    visibility: visible;
    transform: translateY(-50%) translateX(75%);
}

.slider-item.next .slider-info h4 {
    color: #fff;
    border-bottom: 1px solid #fff;
    padding-bottom: 18px;
}

.slider-item.next .slider-info p {
    color: #fff;
}

.slider-item.next .slider-btn {
    background: #fff;
    border-color: #99BFAF;
    color: #99BFAF;
    pointer-events: none;
}

.slider-img {
    width: 31.5%;
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
    overflow: hidden;
    border-radius: 24px;
    max-height: 560px;
}

.slider-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-info {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;

}

.slider-info h4 {
    font-family: SourceHanSansSC-Bold, SourceHanSansSC-Bold;
    font-weight: normal;
    font-size: 48px;
    color: #30803A;
    margin: 0 0 20px 0;
    border-bottom: 1px solid #30803A;
    padding-bottom: 18px;
}

.slider-info p {
    font-family: SourceHanSansSC-Regular, SourceHanSansSC-Regular;
    font-weight: normal;
    font-size: 20px;
    color: #404244;
    line-height: 36px;
    margin: 0;
    flex: 1;
    overflow-y: auto;
    /* display: -webkit-box;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-line-clamp: 7;
  line-clamp: 7;
  -webkit-box-orient: vertical; */
}

.slider-btn {
    display: inline-block;
    width: 187px;
    height: 56px;
    background: #30803A;
    color: #fff;
    font-size: 22px;
    text-align: center;
    line-height: 56px;
    border-radius: 28px;
    margin-top: 36px;
    align-self: flex-start;
    transition: background 0.3s ease;
}

.slider-btn:hover {
    background: #236B2C;
}

.box-b-pagination {
    position: absolute;
    /* bottom: 0; */
    top: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 124px;
    height: 66px;
    /* background: #30803A; */
    /* border-radius: 50%; */
    display: flex;
    justify-content: space-around;
    z-index: 20;
    padding: 0 10px;
}

.box-b-pagination img {
    width: 32px;
}

.pagination-prev,
.pagination-next {

    cursor: pointer;
    transition: opacity 0.3s ease;
}

.pagination-prev:hover,
.pagination-next:hover {
    opacity: 0.8;
}

.indicator.active {
    background: #fff;
    transform: scale(1.3);
}

.box-c {
    padding: 78px 0;
    background-image: url('../images/index/bg3.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.circle-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.circle-item {
    width: 74px;
    height: 74px;
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
    margin-bottom: 12px;
    cursor: pointer;
}

.circle-item img {
    width: 100%;
    height: auto;
}

.circle-item .white-icon {
    display: block;
}

.circle-item .green-icon {
    display: none;
}

/* .circle-item.active {
    background: #30803A;
} */

.circle-item.active .white-icon {
    display: none;
}

.circle-item.active .green-icon {
    display: block;
}

.circle-item:hover .white-icon {
    display: none;
}

.circle-item:hover .green-icon {
    display: block;
}

.brand-line {
    width: 100%;
    height: 1px;
    background-color: #30803A;
    margin: 0 16px;
    margin-top: -15px;
}

.brand-r {
    width: 50%;
}

.circle-box span {
    font-family: SourceHanSansSC-Bold, SourceHanSansSC-Bold;
    font-weight: normal;
    font-size: 20px;
    color: #30803A;
    white-space: nowrap;

}

.brand-pro-wrapper {
    display: flex;
    align-items: center;
    position: relative;
}

.brand-pro-prev,
.brand-pro-next {
    width: 55px;
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    flex-shrink: 0;
    position: absolute;
}

.brand-pro-prev {
    left: -60px;
    top: 53%;
}

.brand-pro-next {
    right: -60px;
    top: 53%;
}

.brand-pro-prev.block_sj,
.brand-pro-next.block_sj {
    display: none;
}

.brand-pro-prev.block_pc,
.brand-pro-next.block_pc {
    display: none;
}

.brand-pro-prev img,
.brand-pro-next img {
    width: 55px;
    height: 55px;
}

.brand-pro {
    /* background-image: url('../images/index/brand.jpg');
    background-size: 100%;
    background-repeat: no-repeat; */
    padding: 0 27px;
    /* padding-top: 8%; */

    margin-top: 87px;
    flex: 1;
    overflow: hidden;
    position: relative;
    box-sizing: border-box;
}

.brand-pro-group {
    display: none;
}

.brand-pro-group.active {
    display: block;
}

/* Swiper 内部容器 */
.brand-swiper {
    overflow: hidden;
}

.brand-swiper .swiper-slide {
    display: flex;
    justify-content: center;
}

.brand-item {
    width: 100%;
}

.brand-item img {
    width: 100%;
    height: auto;
}
.more-box {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 45px;
}

.more-en {
    width: 165px;
    height: 46px;
    background: #30803A;
    border-radius: 23px 23px 23px 23px;
    font-family: SourceHanSansSC-Normal, SourceHanSansSC-Normal;
    font-weight: normal;
    font-size: 20px;
    color: #FEFEFE;
    display: flex;
    justify-content: center;
    align-items: center;
}

.more-en img {
    margin-left: 7px;
    margin-top: 3px;
}

.more-en:hover {
    background: #236B2C;
}

.box-d {
    padding-top: 60px;
    padding-bottom: 35px;
}

.news-item {
    margin-top: 50px;
    display: flex;
    align-items: stretch;

}

.news-l {
    width: 22%;
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
    margin-right: 3vw;
    border-radius: 12px;
    overflow: hidden;
}

.news-l .img-box {
    position: relative;
    width: 100%;
    padding-top: 73.214%;
    overflow: hidden;
}

.news-l .img-box img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-r {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 8px 0;
    flex: 1;
    min-width: 0;
}

.news-r h5 {
    font-weight: bold;
    font-size: 34px;
    color: #073682;
    display: -webkit-box;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 8px;
}

.news-r p {
    font-size: 18px;
    color: #787878;
    line-height: 25px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.news-r span {
    font-size: 20px;
    color: #535353;

}

.box-e {
    padding-bottom: 87px;
}