.notice-header {
    background-image: url("../img/notice_bg.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 150px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notice-header h1 {
    font-size: 24px;
    letter-spacing: 3px;
}

.notice-list-content {
    width: 1280px;
    margin: 0 auto;
    padding: 20px 0;
}

.notice-type-tab {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    padding: 10px 0;
    user-select: none;
}

.notice-type-tab span {
    padding: 0 15px;
    font-size: 16px;
    height: 36px;
    line-height: 36px;
    border-radius: 50px;
    color: #333;
    background: transparent;
    cursor: pointer;
}

.notice-type-tab span.active {
    color: #fff;
    background-image: linear-gradient(140deg, #2e7eee, #4448ff);
}

.notice-list-box {
    padding: 1px 0;
    min-height: 540px;
}

.notice-list {
    display: block;
    cursor: pointer;
    padding: 15px 30px;
    margin: 15px 0;
    background: #ffffff;
    color: #333;
    box-shadow: 0 0 20px rgba(46, 126, 238, 0.05);
    border-radius: 8px;
    overflow: hidden;
}

.notice-list:hover {
    background-image: url("../img/news_list_bg.png");
    background-position: right bottom;
    background-repeat: no-repeat;
}

.notice-list h1 {
    font-size: 16px;
    line-height: 24px;
}

.notice-list p {
    font-size: 16px;
    line-height: 24px;
    color: #808080;
    padding: 10px 0;
}

.notice-explain-info {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    gap: 20px;
}

.notice-explain-info span {
    position: relative;
    font-size: 14px;
    line-height: 20px;
    color: #666;
    padding-left: 15px;
}

.notice-explain-info span:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    z-index: 1;
    transform: translateY(-50%) rotate(45deg);
    width: 6px;
    height: 6px;
    border-radius: 1px;
    background-image: linear-gradient(140deg, #2e7eee, #4448ff);
}

.notice-detail-content {
    background: #fff;
    padding: 30px 50px;
    border-radius: 6px;
    width: 1280px;
    margin: 20px auto;
    box-shadow: 0 0 20px rgba(46, 126, 238, 0.05);
}

.notice-detail-content .content-hd {
    padding-bottom: 30px;
}

.notice-detail-content .title {
    font-size: 22px;
    line-height: 30px;
    padding: 10px 0;
}

.notice-detail-content .content-bd {
    font-size: 15px;
    line-height: 24px;
    padding: 30px 0 10px;
    border-top: 1px solid #e6e6e6;
}

.notice-detail-content .content-bd p {
    padding: 10px 0;
}

.notice-detail-content .content-bd img {
    max-width: 100% !important;
}

.notice-detail-content .annex-wrapper {
    padding: 10px 0;
}

.notice-detail-content .annex-wrapper h5 {
    padding-bottom: 10px;
}

.notice-detail-content .annex-wrapper a {
    font-size: 13px;
    color: #2e7eee;
    display: inline-block;
    border: 1px solid #e1eaf6;
    padding-left: 24px;
    padding-right: 8px;
    border-radius: 4px;
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAMAAABEpIrGAAAAn1BMVEUAAACoqeGoqeGoqeGoqeGoqeGoqeGoqeGoqeGoqeGoqeGoqeGoqeGoqeGoqeGoqeGoqeGoqeGoqeGoqeGoqeGoqeGoqeGoqeGoqeGoqeGoqeGoqeGoqeGoqeGoqeGoqeGoqeGoqeGoqeGoqeGoqeGoqeGoqeGoqeGoqeGoqeGoqeGoqeGoqeGoqeGoqeGoqeGoqeGoqeGoqeGoqeGoqeHZgYUfAAAANXRSTlMA/3+/OSCcVerUZmDKsIwO9hT0F2qJi7JMS0nt317R2OXb55XomZ8kI0jPzMgyNLY9uTuPGY4wSPMAAADKSURBVHjazY9j2gNhEASnYtu2pftf7RM6muT31qr36XplQaNYO04G9Wr0VX9o80Mp7fdpqKfm0XQGDl4fLRH6TSHaRUeokfmPdaqOsEdLp8g6whDtfk7/sd1O12ACerPdbb8cwb0Ak6aJRYLYye6IhEks9DcmbE/EGCv3iPxH+E8nkhIKKHITC4obf4aVhBzhZyHGWcKlo1OATjEsm2gkAa4CQLJlN+RD4XthH8rbM924gcUr9oIQxH/u0BsD1LuG+jeGep+Q+gDxCeKuCPVs86S3AAAAAElFTkSuQmCC");
    background-repeat: no-repeat;
    background-size: 16px;
    background-position: 6px center;
    margin-bottom: 8px;
    margin-right: 8px;
}

@media screen and (max-width: 600px) {
    .notice-header {
        background-position: center;
        background-size: auto 100%;
        height: 90px;
    }

    .notice-header h1 {
        font-size: 18px;
    }

    .notice-list-content {
        width: auto;
        margin: 0;
        padding: 0;
    }

    .notice-type-tab {
        padding: 15px;
        background-color: #fff;
        display: block;
        width: 100%;
        overflow-x: auto;
        white-space: nowrap;
        box-sizing: border-box;
    }

    .notice-type-tab span {
        display: inline-block;
        padding: 0 12px;
        font-size: 15px;
        cursor: auto;
    }

    .notice-list-box {
        padding: 1px 0 20px;
        min-height: auto;
    }

    .notice-list {
        cursor: auto;
        padding: 12px 15px;
        margin: 10px 0;
        border-radius: 0;
        box-shadow: 0 0 20px rgba(46, 126, 238, 0.1);
    }

    .notice-list:hover {
        background: transparent;
    }

    .notice-list:active {
        background-color: rgba(46, 126, 238, 0.03);
    }

    .notice-list h1 {
        font-size: 16px;
        line-height: 22px;
    }

    .notice-list p {
        font-size: 14px;
        line-height: 20px;
        padding: 8px 0;
    }

    .notice-explain-info {
        gap: 12px;
    }

    .notice-explain-info span {
        font-size: 13px;
        line-height: 18px;
        padding-left: 12px;
    }

    .notice-detail-content {
        padding: 15px;
        border-radius: 0;
        width: auto;
        margin: 0;
        box-shadow: none;
    }

    .notice-detail-content .content-hd {
        padding-bottom: 20px;
    }

    .notice-detail-content .title {
        font-size: 18px;
        line-height: 24px;
        padding: 10px 0;
    }

    .notice-detail-content .content-bd {
        padding: 10px 0;
    }

    .notice-detail-content .content-bd p {
        padding: 5px 0;
    }

    .notice-detail-content .annex-wrapper a{
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        word-break: break-all;
        max-width: 100%;
        box-sizing: border-box;
    }
}
