.main_cont {
    /* max-width: 1920px; */
    width: 100%;
    margin: 0 auto;
}

.banner_sect .banner {
    aspect-ratio: 1/0.28125;
}

.banner_sect dl {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.banner_sect dt {
    flex-shrink: 0;
}

.banner_sect dd {
    max-width: 526px;
    width: 50%;
}

.more_btn {
    display: flex;
    position: relative;
    align-items: center;
    font-size: 18px;
    font-weight: 400;
    color: #5E5E5E;
    margin-top: 32px;
    width: fit-content;
    gap: 6px;
}

.more_btn::after {
    content: '';
    display: block;
    width: 14px;
    height: 14px;
    background: url(/static/app_www/base/img/icon_arrow_left_gray.png) no-repeat center/contain;
    transform: rotate(180deg) translateY(-2px);
}

.more_btn::before {
    content: '';
    display: block;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: #F2F9FF;
    position: absolute;
    right: -12px;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
}

.bsn_sect {
    background-color: #F8F8F8;
    position: relative;
}

.bsn_sect .mark_txt {
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    width: clamp(300px, 40dvw, 1057px);
}

.shd_list {
    margin-top: 60px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.shd_item {
    display: flex;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    border: 1px solid #BBBBBB;
}

.shd_item.w-50 {
    width: calc((100% - 20px) / 2);
    aspect-ratio: 1/0.5215;
}

.shd_item.w-30 {
    width: calc((100% - 40px) / 3);
    aspect-ratio: 1/1.0851;
}


.shd_item img {
    object-fit: cover;
    object-position: center;
}

.shd_item.gis img {
    object-position: center 80%;
}

.shd_item .dim {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    backdrop-filter: blur(2px);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8));
}

.shd_item .item_title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

.shd_item .item_desc {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    margin-top: 8px;
}

.shd_item .item_more {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    margin-top: 8px;
    text-align: right;
}


.noti_sect {
    background: url(/static/app_www/base/img/bg_notice.png) no-repeat center/cover;
}

.noti_sect .sect_sub_title {
    color: #12C5F0;
}

.noti_sect .sect_title {
    color: #fff;
}

.notice_wrap {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.notice_wrap>a {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
}

.noti_list {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
}

.noti_item {
    display: flex;
    align-items: flex-start;
    gap: 10px 22px;
    padding: 24px;
    border-radius: 8px;
    background-color: var(--main-color);
    width: calc((100% - 20px)/2);
    min-height: 150px;
}

.noti_item .icon {
    display: flex;
    width: 32px;
    flex-shrink: 0;
}

.noti_item .item_content {
    flex: 1 auto;
}

.noti_item .item_title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

.noti_item .item_desc {
    font-size: 14px;
    font-weight: 400;
    color: #F8F8F8;
    margin-top: 16px;
}

@media screen and (max-width:1023px) {
    .shd_item .item_more {
        font-size: 14px;
    }

    .shd_list {
        margin-top: 30px;
        gap: 14px;
    }


    .notice_wrap {
        margin-top: 30px;
    }

    .noti_list {
        gap: 14px;
        margin-top: 18px;
    }

    .notice_wrap>a {
        font-size: 14px;
    }
}

@media screen and (max-width:767px) {
    .banner_sect dt {
        width: 100%;
    }

    .banner_sect dd {
        max-width: 100%;
        width: 100%;
    }

    .shd_item.w-50,
    .shd_item.w-30 {
        width: 100%;
        /* aspect-ratio: 1 / 0.5215; */
        aspect-ratio: initial;
        height: 300px;
    }

    .shd_item.gis img {
        object-position: center bottom;
    }


    .noti_item {
        width: 100%;
    }
}