.banner .desc{
    top: 30%;
    color: #1E1E1E
}

.section1 {
    margin-top: 44px;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 24px;
    color: #fff;
}

.section1 .left{
    width: 282px;
}
.section1 .left .item {
    padding: 32px;
    width: 282px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #327C25;
    
    font-weight: 600;
    font-size: 16px;
}
.section1 .left .item1{
    background: #045FB2;
}
.section1 .left .item2{
    position: relative;
}
.section1 .left .item2::after{
    content: ' ';
    position: absolute;
    bottom: 0;
    width: 258px;
    border-bottom: 1px solid #fff;
}
.section1 .left .item img{
    width: 88px;
    height: 88px;
}
.section1 .right{
    padding: 44px;
    background-image: 
        linear-gradient(114.01deg, #0D1B27 0%, rgba(13, 27, 39, 0.2) 89.72%),
        url('../images/index/index_item3.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.section1 .right h6{
    font-size: 26px;
    font-weight: 600;
}
.section1 .right p{
    margin-top: 24px;
    font-size: 14px;
    line-height: 30px;
    text-align: justify;
}

.section2{
    /* margin-top: ; */
}
.section2 .item{
    margin-top: 32px;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 32px;
}
.section2 .item .left{
    width: 240px;
    height: 150px;
}
.section2 .item .right{
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    justify-content: space-between;
}
.section2 .item .right h6{
    font-weight: 600;
    font-size: 26px;
    color: #333;
}
.section2 .item .right .txt{
    font-size: 16px;
    line-height: 22px;
    color: #666;
    text-align: justify;
}
.section2 .item .right .time{
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #666;
    font-size: 14px;
}
.section2 .item .right .time .more{
    width: 20px;
    height: 20px;
    background: url('../images/icon_arrow.svg') no-repeat center center;
    background-size: 100%;
}

/* 小于等于768px 的设备使用 rem 缩放布局 */
@media screen and (max-width: 768px) {
    .section1{
        margin-top: 1rem;
        flex-direction: column;
        gap: 1.2rem;
    }
    .section1 .left{
        width: 100%;
        display: flex;
        gap: 0.3rem;
        justify-content: space-between;
    }
     .section1 .left .item{
        flex: 1;
        padding: 1.2rem 0.7rem;
        border-radius: 0.9rem;
     }
     .section1 .left .item img{
        width: 5rem;
        height: 5rem;
     }
     .section1 .left .item p{
        font-size: 1.1rem;
     }
     .section1 .left .item2::after{
        display: none;
     }
     .section1 .right{
        border-radius: 0.8rem;
        background: linear-gradient(290.69deg, #BAE7FF -26%, #F0F5FF 116.19%);
        color: #1e1e1e;
        padding: 2rem 1rem;
     }
     .section1 .right h6{
        font-size: 1.4rem;
        font-weight: bold;
        
     }
     .section1 .right p{
        font-size: 1.2rem;
        line-height: 2.4rem;
        margin-top: 1rem;
     }
     .section2{
        /* background: #fff; */
        margin-top: 2rem;
     }
     .section2 .item{
        flex-direction: row-reverse;
        gap: 1rem;
        padding-bottom: 0.6rem;
        border-bottom: 0.1rem solid #ECFDF7;
     }
     .section2 .item:last-child{
        border: 0;
     }
     .section2 .item .left{
        width: 10rem;
        height: 7rem;
        border-radius: 0.4rem;
     }
     .section2 .item .right{
        padding-bottom: 0.8rem;
        min-width: 0;
        flex: 1;
     }
     .section2 .item .right h6{
        font-size: 1.4rem;
        font-weight: bold;
     }
     .section2 .item .right .txt{
        font-size: 1.2rem;
        color: #999999;

     }
     .section2 .item .right .time{
        font-size: 1.2rem;
        color: #999999;
     }
}