@charset "utf-8";

/* notice */
.widget-board-cache-list-notice {
    padding: 140px 0;
}
.widget-board-cache-list-notice h3 {
    margin: 0 0 50px;
}
.widget-board-cache-list-notice ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.widget-board-cache-list-notice li {
    border-radius: var(--radius);
    overflow: hidden;
}
.widget-board-cache-list-notice li a {
    background: #f7f7f7;
    display: block;
    text-decoration: none;
    font-weight: normal;
    padding: 50px 40px 20px;
    height: 246px;
    transition: all 1s;
}
.widget-board-cache-list-notice li .subject {
    font-size: 20px;
    font-weight: 600;
    color: #222;
    margin-bottom: 10px;
    line-height: 150%;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.widget-board-cache-list-notice li .content {
    font-size: 16px;
    color: var(--font-color);
    margin-top: 30px;
}
.widget-board-cache-list-notice li .date {
    font-size: 14px;
    color: #949faf;
    margin-top: 30px;
}
.widget-board-cache-list-notice li .subject,
.widget-board-cache-list-notice li .content,
.widget-board-cache-list-notice li .date {
    transition: color 1s;
}
.widget-board-cache-list-notice li:hover a {
    background: var(--main-color);
}
.widget-board-cache-list-notice li:hover a .subject {
    color: #fff;
}
.widget-board-cache-list-notice li:hover a .content {
    color: #949faf;
}
.widget-board-cache-list-notice li:hover a .date {
    color: var(--font-color);
}
.widget-board-cache-list-notice .more {
    margin: 50px auto 0;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background: var(--main-color);
    border-radius: var(--radius);
    padding: 15px 14px 13px;
    position: relative;
    width: 190px;
    text-decoration: none;
    display: block;
    transition: all 0.5s;
}
.widget-board-cache-list-notice .more:hover {
    background: var(--second-color);
}
.widget-board-cache-list-notice .more:before {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    background: url('../imgs/more.png') no-repeat 0 0 / contain;
    position: absolute;
    right: 18px;
    top: 20px;
}
/* -- mobile */
.widget-board-cache-list-notice.mobile {
    padding: 50px 0;
}
.widget-board-cache-list-notice.mobile h3 {
    margin-bottom: 25px;
}
.widget-board-cache-list-notice.mobile ul {
    grid-template-columns: repeat(1, 3fr);
    gap: 10px;
}
.widget-board-cache-list-notice.mobile li a {
    padding: 30px 20px;
    height: auto;
}
.widget-board-cache-list-notice.mobile li a .subject {
    font-size: 16px;
}
.widget-board-cache-list-notice.mobile li .content {
    font-size: 14px;
    margin-top: 0;
}
.widget-board-cache-list-notice.mobile li .date {
    font-size: 13px;
}
.widget-board-cache-list-notice.mobile .more {
    margin-top: 25px;
    font-size: 15px;
}
.widget-board-cache-list-notice.mobile .more:before {
    background-image: url('../imgs/more@2x.png');
}

/* top-rolling */
.widget-board-cache-list-top-rolling {
    height: 18px;
    overflow: hidden;
    padding-left: 100px;
    position: relative;
}
.widget-board-cache-list-top-rolling:before {
    font-size: 14px;
    font-weight: 600;
    content: 'Notice';
    color: var(--second-color);
    position: absolute;
    left: 0;
    top: 0;
}
.widget-board-cache-list-top-rolling:after {
    content: '';
    display: block;
    width: 1px;
    height: 10px;
    background: var(--line-color);
    position: absolute;
    left: 70px;
    top: 5px;
}
.widget-board-cache-list-top-rolling h3 {
    font-size: 14px;
    font-weight: 600;
    color: var(--second-color);
    margin: 0;
}
.widget-board-cache-list-top-rolling ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.widget-board-cache-list-top-rolling li {
}
.widget-board-cache-list-top-rolling li a {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.widget-board-cache-list-top-rolling li .subject {
    color: #222;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.5px;
}
.widget-board-cache-list-top-rolling li .date {
    font-size: 12px;
    font-weight: normal;
    color: #444;
    flex: 0 0 150px;
    text-align: right;
}
/* -- mobile */
.widget-board-cache-list-top-rolling.mobile {
    margin: 15px 0;
    padding-left: 60px;
}
.widget-board-cache-list-top-rolling.mobile:after {
    left: 50px;
}
.widget-board-cache-list-top-rolling.mobile .date {
    display: none;
}
.widget-board-cache-list-top-rolling.mobile:before,
.widget-board-cache-list-top-rolling.mobile li .subject {
    font-size: 13px;
}
.widget-board-cache-list-top-rolling.mobile li a {
    padding-right: 30px;
}
.widget-board-cache-list-top-rolling.mobile li a:before {
    content: '';
    display: block;
    background: url('../imgs/rolling-more.png') no-repeat 0 0/contain;
    width: 4px;
    height: 7px;
    position: absolute;
    right: 0;
    top: 5px;
}




