
.notice_body{
    position: relative;

}

.gallery {
    position: relative;
    width: 100%;
    margin: 13.833vw 0 32.708vw;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.cards {
    position: absolute;
    width: 15.625vw;
    height: 20.833vw;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.actions {
    position: absolute;
    bottom: 1.302vw;
    left: 50%;
    transform: translateX(-50%);
}


.card {
    background-color: #fff;
    border-radius: 0;
    box-sizing: border-box;
    width: 15.625vw;
    height: 20.833vw;
    /*margin: 0 1.042vw 1.25vw;*/
    transition: border-radius 1.5s linear;
    cursor: pointer;
    overflow: hidden;
    list-style: none;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10 !important;
}

.card:nth-child(2) {
    top: 1.042vw;
    z-index: 6 !important;
}


.card:nth-child(3) {
    top: 1.042vw;
    z-index: 5 !important;
}

.card:nth-child(4) {
    top: 2.083vw;
    z-index: 4 !important;
}
.card:nth-child(5) {
    top: 2.083vw;
    z-index: 3 !important;
}

.card .titleBg {
    width: 100%;
    height: 2.34375vw;
    margin-bottom: 0.521vw;
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rebeccapurple;
    border-radius: 2.552vw 0 0 0;
    transition: all  1.5s linear;
    opacity: 0;
}

.card .titleBg .hct {
    height: 2.5vw;
    width: 3.75vw;
    display: flex;
    z-index: 2;
}

.card .top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.521vw 1.042vw;
    color: #2a82e4;
    position: relative;
    border-right-width: 0.26vw;
    border-right-color: #2a82e4;
    border-right-style: solid;
}

.card .top .calendar {
    width: 1.40625vw;
    height: 1.40625vw;
    transition: all 0.5s linear;
}

.card .top .time {
    font-size: 1.042vw;
    font-weight: 500;
    letter-spacing: 0vw;
    line-height: 1.354vw;
    position: relative;
    z-index: 2;
}

.card .content {
    margin-top: 2.083vw;
    padding: 0 1.354vw 1.25vw;
}

.card .content .content_title {
    font-size: 0.9375vw;
    font-weight: 600;
    letter-spacing: 0vw;
    line-height: 1.458vw;
    color: #333333;
}

.card .content .content_content {
    margin-top: 1.042vw;
    font-size: 0.729vw;
    font-weight: 400;
    line-height:1.5625vw;
    color: rgba(51, 51, 51, 0.8);
}

.card:hover {
    border-radius: 2.135vw 0 0 0;
    transition: border-radius  1.5s ease;
}

.card:hover .titleBg {
    opacity: 1;
    transition: all 1.5s linear;
}

.card:hover .calendar {
    opacity: 0;
}

.card:hover .top {
    color: #ffffff !important;
}

.card:hover .time {
    color: #ffffff !important;
}
