.section-1 {
    background: #000;
    margin-top: 99px;
}

.section-1 .study-header {
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-1 .study-header .left {
    display: flex;
    flex-direction: column;
}

.section-1 .study-header .left h1 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 16px;
}

.section-1 .study-header .left p {
    color: rgba(255, 255, 255, 1);
    font-size: 16px;
}

.section-1 .study-header .right {
    max-width: 765px;
}

.section-2 {
    padding: 40px 0 80px;
}

.section-2 .list-container ul {
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    margin: 40px 0;
    gap: 24px;
    justify-content: center;
}

.section-2 .list-container ul>li {
    list-style: none;
    max-width: 330px;

}

.section-2 .list-container img {
    max-height: 192px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.section-2 .list-container .title {
    font-size: 26px;
    font-weight: 700;
}
.mouid-conten{
    display: flex;
    justify-content: space-between;
}
.list-img{
   display: flex;
   flex-direction: row;
   cursor: pointer;
   align-items: center;
   font-size: 14px;
}
.list-img:hover{
    color: rgba(0, 86, 255, 1);
}
.list-img img{
    width: 24px;
    height: 24px;
    margin-right: 5px;
}
.section-2 .more {
    border: 1px solid #000;
    padding: 8px 24px;
    border-radius: 4px;
    display: inline-block;
    font-weight: 700;
}

.section-2 .more:hover {
    background: rgba(0, 86, 255, 1);
    color: #fff;
    border-color: rgba(0, 86, 255, 1);
}

.section-2 .dblock {
    border: 1px solid #eee;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.section-2 .dblock:hover {
    background: #eee;
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(238, 238, 238, 0.5);
}

.section-2 .dblock .bottom {
    padding: 24px;
}

.section-2 .dblock .bottom .study-title {
    color: rgba(51, 51, 51, 1);
    font-size: 16px;
    margin-bottom: 16px;
}

.section-2 .dblock .bottom .study-date {
    color: rgba(102, 102, 102, 1);
    font-size: 12px;
}

@media screen and (max-width: 1400px) {
    .section-2 .list-container ul>li {
        max-width: 270px;
    }

    .section-2 .list-container img {
        max-height: 160px;
    }

    section .container {
        margin: 0 15px !important;
    }
}

@media screen and (max-width: 996px) {
    .section-1 {
        background-image: url('../img/homeimg/right-banner.png');
        background-size: cover;
        margin-top: 59px;
        padding: 60px 0;
        text-align: center;
    }
    .section-1 .right{
        display: none;
    }
    .section-2 .list-container ul {
        gap: 10px;
        margin: 20px 0;
    }
}
@media screen and (max-width: 768px) {
    .section-2 .list-container ul>li {
        max-width: 170px;
    }
    .section-2 .list-container img {
        max-height: 120px;
    }
    .section-2 .dblock .bottom {
        padding: 10px;
    }
    .section-2 .dblock .bottom .study-title {
        font-size: 14px;
    }
}