* {
    padding: 0;
    margin: 0;
}

a {
    color: inherit;
}

a:hover {
    color: inherit;
}

.common-banner {
    position: relative;
    width: 100%;
    padding-top: .1px;
    overflow: hidden;
}

.common-banner .banner-swiper {
    height: 480px;
    margin-top: 80px;
}

.common-banner .banner-swiper .swiper-slide {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 60px;
    color: #fff;
    background-repeat: no-repeat;
    background-position: 70% center;
    background-size: cover;
}

.common-banner .banner-swiper .title {
    font-size: clamp(28px, calc((100vw / 1920) * 54), 54px);
    line-height: 1.2;
}

.common-banner .banner-swiper .description {
    margin-top: 20px;
    line-height: 1.5;
}

.common-banner .banner-swiper .more-btn a {
    display: block;
    width: 160px;
    padding: 8px;
    margin-top: 32px;
    font-size: 16px;
    border: 1px solid #fff;
    border-radius: 6px;
    text-align: center;
    transition: all .5s;
}

.common-banner .banner-swiper .more-btn a:hover {
    background-color: #92F0A1;
    border-color: transparent;
}

/* .common-banner .banner-swiper .pic {
    max-height: 100%;
}

.common-banner .banner-swiper .pic img {
    max-height: 100%;
} */

.common-banner .swiper-pagination {
    /* bottom: 40px; */
    bottom: calc((100vw / 1920) * 40);
    display: flex;
    align-items: center;
    justify-content: center;
}

.common-banner .swiper-pagination .banner-bullet {
    display: block;
    /* width: 30px; */
    width: calc((100vw / 1920) * 30);
    /* height: 6px; */
    height: calc((100vw / 1920) * 6);
    margin: 0 10px;
    margin-top: 0 calc((100vw / 1920) * 10);
    border-radius: 1000px;
    background-color: rgba(255, 255, 255, .5);
    cursor: pointer;
    transition: all .5s;
}

.common-banner .swiper-pagination .banner-bullet-active {
    /* width: 60px; */
    width: calc((100vw / 1920) * 60);
    background-color: #fff;
}

.second-section {
    width: 100%;
    height: 100%;
    background: url('../images/new-product-description-bg.svg') no-repeat center/cover;
    padding-bottom: 70px;
}

.second-section .container-main {
    width: 1340px;
    margin: 0 auto;
}

.second-section .product-area {
    padding-top: 75px;
}

.b-title {
    font-size: clamp(28px, calc((100vw / 1920) * 44), 44px);
    line-height: 1.2;
}

.second-section .product-area .product-list {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 30px;
}

.second-section .product-area .product-list .left {
    display: flex;
    flex-wrap: wrap;
    width: calc(100% - (100% - 60px) / 4);
}

.second-section .product-area .product-list .left .item {
    width: calc((100% - 60px) / 3);
    margin-right: 20px;
    margin-bottom: 20px;
    border-radius: 6px;
    overflow: hidden;
    transition: all .5s;
}

.second-section .product-area .product-list .left a {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 6px;
    height: 100%;
}

.second-section .product-area .product-list .left .item .top {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    background-color: rgba(243, 244, 248);
    line-height: 1;
    transition: all .5s;
}

.second-section .product-area .product-list .left .item .top p {
    font-size: 20px;
}

.second-section .product-area .product-list .left .item .top .arrow {
    opacity: 0;
    transition: all .5s;
}

.second-section .product-area .product-list .left a .content {
    flex: 1;
    position: relative;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    border: 1px solid #E6E8EE;
    border-top: none;
    overflow: hidden;
    transition: all .5s;
}

.second-section .product-area .product-list .left a .content .image {
    position: absolute;
    top: 0;
    z-index: 3;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .5s;
    background-color: #fff;
}

.second-section .product-area .product-list .left a .content .image img {
    display: block;
    max-height: 80px;
    max-width: 120px;
    width: 100%;
}

.second-section .product-area .product-list .left a .content .text {
    padding: 0 20px;
    padding-bottom: 20px;
    font-size: 20px;
    line-height: 1.8;
}

.second-section .product-area .product-list .left a .content .text p {
    font-size: 20px;
    line-height: 1.8;
}

.second-section .product-area .product-list .left .item:hover {
    box-shadow: 0 0 12px #0A2D7212;
}

.second-section .product-area .product-list .left .item:hover .top {
    background-color: #fff;
    color: #2FA4E7;
}

.second-section .product-area .product-list .left .item:hover .top .arrow {
    opacity: 1;
}

.second-section .product-area .product-list .left .item:hover .content .image {
    transform: translateY(-100%);
}

.second-section .product-area .product-list .left .item:hover .content {
    border-color: transparent;
}

.second-section .product-area .product-list .left .item:hover .text {
    color: #000;
}



.second-section .product-area .product-list .big {
    width: calc((100% - 60px) / 4);
    margin-bottom: 20px;
    box-shadow: 0 0 12px #0A2D7212;
    background-color: #fff;
    border-radius: 6px;
    text-align: center;
}

.second-section .product-area .product-list .big a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 40px 45px;
}

.second-section .product-area .product-list .big .image {
    width: 60%;
    max-width: 180px;
}

.second-section .product-area .product-list .big .image img {
    width: 100%;
}

.second-section .product-area .product-list .big .middle {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    transition: all .5s;
}

.second-section .product-area .product-list .big .middle .title {
    margin-right: 8px;
    font-size: 20px;
}

.second-section .product-area .product-list .big .text {
    margin-top: 12px;
    line-height: 1.8;
    font-size: 20px;
    text-align: justify;
}

.second-section .product-area .product-list .big .text p {
    font-size: 20px;
    line-height: 1.8;
}

.second-section .product-area .product-list .big:hover .middle {
    color: #2FA4E7;
}

.second-section .product-area .product-list .big:hover .text {
    color: #000;
}

.second-section .scheme {
    padding-top: calc((100vw / 1920) * 137);
    text-align: center;
}

.second-section .scheme .description {
    width: 790px;
    margin: 0 auto;
    margin-top: 27px;
}

.second-section .scheme .description p {
    font-size: 20px;
    line-height: 1.8;
}

.scheme-list {
    display: flex;
    flex-wrap: wrap;
}

.scheme-list .item {
    position: relative;
    width: 50%;
    overflow: hidden;
}

.scheme-list .item a {
    position: relative;
    z-index: 3;
    display: block;
    width: 100%;
    height: 100%;
}

.scheme-list .item a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, .5) 10%, rgba(0, 0, 0, 1));
    opacity: 0;
    transition: all .5s;
}

.scheme-list .item:hover a::after {
    opacity: 1;
}

.scheme-list .item a>img {
    width: 100%;
    position: relative;
    z-index: 1;
    transition: all .5s;
}

.scheme-list .item:hover a>img {
    transform: scale(1.1);
}

.scheme-list .item .bottom {
    position: absolute;
    bottom: 10%;
    z-index: 3;
    display: flex;
    padding-left: 5%;
    padding-right: 10%;
    color: #fff;
}

.scheme-list .item .bottom .icon {
    margin-right: 20px;
}

.scheme-list .item .bottom .icon img {
    transform: translateY(-25%);
}

.scheme-list .item .bottom .icon p {
    font-size: 24px;
}

.scheme-list .item .bottom .description {
    flex: 1;
}

.scheme-list .item .bottom .description .name {
    font-size: 24px;
}

.scheme-list .item .bottom .description .description-content {
    display: none;
}

.scheme-list .item .bottom .description .text-more {
    margin-top: 15px;
    font-size: 16px;
}

.scheme-list .item .bottom .description .btn {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.scheme-list .item .bottom .description .btn p {
    font-size: 18px;
}

.scheme-list .item .bottom .description .btn img {
    width: 40px;
    height: 40px;
    margin-left: 10px;
}

.source {
    width: 100%;
    height: 100%;
    padding-top: 90px;
    padding-bottom: 160px;
    background: url('../images/new-index-form-bg.svg') no-repeat center/cover;
    background-color: #0A2D72;
    color: #fff;
    text-align: center;
}

.source .description {
    /* width: 95%; */
    width: 100%;
    margin: 0 auto;
    margin-top: 20px;
    font-size: 20px;
    line-height: 1.8;
}

.source .description p {
    font-size: 20px;
}

.source .list {
    display: flex;
    justify-content: center;
    margin-top: 70px;
}

.source .list .item {
    margin: 0 30px;
    transition: all .5s;
}

.source .list a {
    display: block;
    width: 200px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, .1);
    overflow: hidden;
    transition: all .5s;
}

.source .list a .top {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 200px;
    padding: 20px;
}

.source .list a .top .text {
    display: none;
    /* margin-top: 17px; */
    font-size: 16px;
    text-align: justify;
}

.source .list a .bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background-color: rgba(255, 255, 255, .1);
    transition: all .5s;
}

.source .list a .bottom p {
    margin-right: 5px;
    font-size: 18px;
    color: #fff;
    transition: all .5s;
}

.source .list a .bottom img {
    display: none;
    opacity: 0;
}

.source .list .item:hover {
    background-color: rgba(0, 0, 0, .2);
}

.source .list .item:hover a {
    border-color: #92F0A1;
}

.source .list .item:hover a .bottom {
    background-color: #92F0A1;
}

.source .list .item:hover a .bottom p {
    color: #000;
}

.source .list .item:hover a .bottom img {
    display: block;
    opacity: 1;
}

.advance-notice {
    padding: 90px 60px;
    padding-bottom: 105px;
    background-color: #fff;
}

.advance-notice .top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.advance-notice .top .year-select {
    position: relative;
    width: 160px;
    height: auto;
    border: 1px solid #0A2D72;
    border-radius: 6px;
    cursor: pointer;
}

.advance-notice .top .year-select .selected {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 20px;
}

.advance-notice .top .year-select .selected p {
    font-size: 16px;
    color: #0A2D72;
}


.advance-notice .top .year-select ul {
    display: none;
    position: absolute;
    bottom: 0;
    transform: translateY(100%);
    z-index: 3;
    width: 100%;
    padding-left: 0;
    margin-bottom: 0;
    border: 1px solid #0A2D72;
    border-radius: 6px;
    overflow: hidden;
}

.advance-notice .top .year-select ul li {
    width: 100%;
    padding: 5px 0;
    padding-left: 20px;
    border-bottom: 1px solid #cccccc;
    background-color: #fff;
    transition: all .5s;
}

.advance-notice .top .year-select ul li:hover {
    background-color: #92F0A1;
    color: #fff;
}

.advance-notice .top .year-select ul li:last-child {
    border: none;
}

.advance-notice .notice-list {
    display: none;
    margin-top: 30px;
    overflow: hidden;
}

.advance-notice .notice-list.active {
    display: flex;
}

.advance-notice .notice-list .item {
    flex: 1;
    background-color: #F3F4F8;
    border-radius: 6px;
    transition: all .5s;
    max-width: 50%;
}

/* .advance-notice .notice-list .item:hover {
    flex: 2;
}

.advance-notice .notice-list .item.active {
    flex: 2;
} */

.advance-notice .notice-list .item:not(:last-child) {
    margin-right: 30px;
}

.advance-notice .notice-list .item a {
    display: flex;
    justify-content: space-between;
    padding: calc((100vw / 1920) * 60);
}

.advance-notice .notice-list .item a .text {
    flex: 1;
    /* width: calc((100vw / 1920) * 300); */
    /* width: 290px; */
}

.advance-notice .notice-list .item .title {
    font-size: 24px;
    color: #000;
}

.advance-notice .notice-list .item .s-list {
    margin-top: 30px;
}

.advance-notice .notice-list .item .s-item {
    display: flex;
    align-items: center;
}

.advance-notice .notice-list .item .s-item:not(:first-child) {
    margin-top: 10px;
}

.advance-notice .notice-list .item .s-item .icon {
    display: flex;
    width: 22px;
    height: 24px;
    margin-right: 10px;
}

.advance-notice .notice-list .item .s-item .icon img {
    max-width: 100%;
    max-height: 100%;
    margin: auto;
}

.advance-notice .notice-list .item .s-item p {
    flex: 1;
}

.advance-notice .notice-list .item .image {
    width: calc((100vw / 1920) * 350);
    padding-left: 10px;
    overflow: hidden;
}

.advance-notice .notice-list .item .image>div {
    display: inline-block;
    overflow: hidden;
    border-radius: 5px;
}

/* .advance-notice .notice-list .item.active .image {
    display: block;
} */

.advance-notice .notice-list .item .image img {
    transform: translateX(calc(-100% - 10px));
    transition: all .5s;
    border-radius: 5px;
}

.advance-notice .notice-list .item .image.active img {
    transform: translateX(0);
}

.advance-notice .notice-list .item .bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: 80px;
}

.advance-notice .notice-list .item .bottom .type {
    padding: 7px 17px;
    background-color: #fff;
    border-radius: 5000px;
    color: #2FA4E7;
}

.s-type:hover {
    background-color: #000;
}

.advance-notice .notice-list .item .bottom .s-image {
    /* width: 28%; */
    display: none;
    width: calc((100vw / 1920) * 120);
    transition: all .5s;
}

.stio {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.huizhan {
    margin-left: 15px;
}

.recent-news {
    padding: 105px 60px;
    padding-bottom: 90px;
    background-color: #F3F4F8;
}

.recent-news .new-top {
    width: 100%;
    margin-top: 33px;
    background-color: #fff;
    border-radius: 6px;
    overflow: hidden;
}

.recent-news .new-top a {
    display: flex;
    max-height: 520px;
}

.recent-news .new-top .left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 50%;
    padding: calc((100vw / 1920) * 60);
}

.recent-news .new-top .left .title {
    font-size: 34px;
    line-height: 1.5;
}

.recent-news .new-top .left .text {
    margin-top: 10px;
    font-size: 20px;
    line-height: 1.5;
}

.recent-news .new-top .left .bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: calc((100vw / 1920) / 30);
}

.recent-news .new-top .left .bottom .learn-btn {
    display: flex;
    align-items: center;
}

.recent-news .new-top .left .bottom .learn-btn img {
    margin-left: 10px;
}

.recent-news .new-top .left .bottom .learn-btn p {
    font-size: 18px;
}

.recent-news .new-top .left .bottom .time {
    font-size: 14px;
}

.recent-news .new-top .left .bottom .time span {
    position: relative;
    padding: 0 10px;
}

.recent-news .new-top .left .bottom .time span:not(:first-child)::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 1px;
    background-color: rgba(0, 0, 0, .2);
}

.recent-news .new-top .image {
    width: 50%;
    overflow: hidden;
}

.recent-news .new-top .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .5s;
}

.recent-news .new-top:hover .left .title {
    color: #92F0A1;
}

.recent-news .new-top:hover .image img {
    transform: scale(1.1);
}

.recent-news .new-list {
    display: flex;
    margin-top: 30px;
}

.recent-news .new-list .item {
    width: calc((100% - 60px) / 3);
    border-radius: 6px;
    overflow: hidden;
    background-color: #fff;
    transition: all .5s;
}

.recent-news .new-list .item:hover {
    background-color: #92F0A1;
}

.recent-news .new-list .item:not(:last-child) {
    margin-right: 30px;
}

.recent-news .new-list .item a {
    display: flex;
    justify-content: space-between;
    height: 100%;
    padding: calc((100vw / 1920) * 30);
}

.recent-news .new-list .item .left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-right: calc((100vw / 1920) * 30);
}

.recent-news .new-list .item .title {
    font-size: 20px;
    line-height: 1.1;

    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    /* 作为弹性盒子模型显示 */
    -webkit-box-orient: vertical;
    /* 设置伸缩盒子的子元素排列方式，从上到下垂直排序 */
    -webkit-line-clamp: 5;
    /* 显示的行数 */
}

.recent-news .new-list .item .time {
    margin-top: 10px;
}

.recent-news .new-list .item .time p {
    font-size: 14px;
}

.recent-news .new-list .item .time span {
    position: relative;
    padding: 0 10px;
}

.recent-news .new-list .item .time span:first-child {
    padding-left: 0;
}

.recent-news .new-list .item .time span:not(:first-child)::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 1px;
    background-color: rgba(0, 0, 0, .2);
}

.recent-news .new-list .item .image {
    width: calc((100vw / 1920) * 180);
    border-radius: 6px;
    overflow: hidden;
}

.recent-news .new-list .item .image img {
    width: 100%;
    height: 100%;
    transition: all .5s;
    object-fit: cover;
}

.recent-news .new-list .item:hover .image img {
    transform: scale(1.1);
}

.recent-news .all-news {
    display: flex;
    justify-content: flex-end;
    margin-top: 30px;
}

.recent-news .all-news a {
    display: flex;
    align-items: center;
    transition: all .5s;
}

.recent-news .all-news a:hover {
    color: #92F0A1;
}

.recent-news .all-news a p {
    margin-right: 10px;
}