.notice {
    box-shadow: 0px 1px 2px rgba(242, 242, 242, 0.25);
    background: url(../images/sec_bg.png) no-repeat;
    background-size: cover;
}


.notice-container {
    position: relative;
    padding: 2.5rem 0;
    display: flex;
}

.notice-item-wrapper {
    margin-top: 3.125rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.notice-wrapper-left {
    width: 46.875rem;
}

.notice-item {
    background: #FFFFFF !important;
    border-bottom: 0.3125rem solid rgba(255, 163, 64, 1);
    box-shadow: 0rem 0.125rem 0.625rem rgba(212, 212, 212, 0.25);
    border-radius: 0.3125rem;
    padding: 1.5rem;
    width: 22rem;
    overflow: visible;
    transition: all .3s ease;
    margin-bottom: 2.5rem;
}

.notice-item-date {
    display: flex;
    color: #F29838;
    font-size: 1rem;
    font-weight: bold;
}

.notice-item-date .day {
    color: #FFFFFF;
}

.notice-item-icon {
    height: 0.75rem;
    margin: 1.5rem 0 0.625rem 1.25rem;
}

.notice-item:hover {
    background: url(../new/t_z_g_g_1.jpg) bottom no-repeat !important;
    background-size: 100% auto !important;
    transform: translateY(-1rem);

}

.notice-item:hover .notice-item-article {
    color: #FF860B;
    transition: all .3s linear;
}

.notice-item:hover .notice-item-title {
    color: #FFFFFF;
    background-color: #FF860B;
    transition: all .3s linear;
}


.notice-item-title {
    font-weight: 500;
    font-size: 1rem;
    color: #333333;
    line-height: 1.3125rem;
    padding: 0.6rem;
    background-color: #F3F3F3;
}

.notice-item-title-text {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.notice-item-article {
    margin-top: 1.2rem;
    height: 3.125rem;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: rgba(51, 51, 51, 1);
    text-align: left;
    vertical-align: top;
    text-overflow: ellipsis;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    color: #666666;
}

.notice-wrapper-right {
    flex: 1;
    margin-left: 3.125rem;
}

.notice-wrapper-right-container {
    margin-top: 3.125rem;
}

.notice-wrapper-right-item {
    height: 2.8125rem;
    width: 100%;
    background-color: #FFFFFF;
    box-shadow: rgba(57, 32, 109, 0.6);
    margin-bottom: 0.625rem;
    transition: all .3s linear;
    overflow: hidden;
    border-left: 3px solid #FF860B;

}

.notice-wrapper-right-item-normal-text {
    font-size: 1rem;
    line-height: 2.8125rem;
    padding: 0rem 1.25rem;
}

.notice-wrapper-right-item-active {
    height: 18.75rem !important;
    width: 100%;
    background-color: #FFFFFF;
    box-shadow: rgba(57, 32, 109, 0.6);
    margin-bottom: 0.625rem;
    transition: all .3s linear;
    border-left: 0px !important;
}

.notice-wrapper-item-active-content {
    position: relative;
    height: 18.75rem;
    overflow: hidden;
}

.notice-wrapper-right-item-img {
    height: 18.75rem;
    width: 100%;
    object-fit: cover;
    transition: all .6s linear;
}

.notice-wrapper-right-item-img:hover {
    transform: scale(1.1);
    transition: all .6s linear;
}


.notice-wrapper-item-active-content-text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    color: #FFFFFF;
    z-index: 999;
    font-size: 1rem;
    line-height: 2.8125rem;
    padding: 0rem 1.25rem;
}

@media screen and (max-width: 1330px) {
.notice-item {
    width: 20rem; 
}
}

@media screen and (max-width: 1280px) {
.notice-item {
    width: 18rem; 
}
}

@media screen and (max-width: 1024px) {
    .notice {
        background: url(../images/sec_bg.png) no-repeat;
        background-size: cover;
    }
    .notice-container {
        display: flex;
        flex-direction: column;
        width: 100%;
    }


    .notice-wrapper-left {
        width: 100%;
    }
    .notice-item-wrapper {
        width: 100%;
        margin-top: 2rem;
    }
    .notice-item-wrapper  a:nth-child(n+4) {
        display: none;
    }

    .notice-item {
        width: 100%;
        height: 12.8125rem;
        background: #FFFFFF !important;
        box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.06) !important;
        margin-bottom: 0.9375rem;
    }

    .notice-container {
        padding-top: 1rem !important;
    }

    .notice-item-date .day {
        font-size: 1.5rem;
    }

    .notice-item-date .year {
        font-size: 0.75rem !important;
    }
    .notice-wrapper-right-item {
        width: 100% !important;
    }

    .notice-wrapper-right {
        margin-left: 0;
    }

    .notice-wrapper-right-container {
         margin-top: 1.25rem;
    }
}

