@charset "utf-8";

.widget-board-list-review {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: 0px 0px 8px 0px #16335B14;
    height: 344px;
    padding: 30px 30px 0;
}
.widget-board-list-review .title {
    margin: 0 0 20px;
    font-size: 20px;
    font-weight: 600;
    position: relative;
}
.widget-board-list-review .title .more {
    font-size: 15px;
    font-weight: 500;
    color: #6b7684;
    position: absolute;
    right: 0;
    top: 2px;
    padding: 2px 36px 0 0;
    text-decoration: none;
}
.widget-board-list-review .title .more:before {
    content: '';
    display: block;
    width: 26px;
    height: 26px;
    border-radius: 26px;
    -webkit-border-radius: 26px;
    background: var(--main-color);
    position: absolute;
    right: 0;
    top: 0;
}
.widget-board-list-review .title .more:after {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    background: url('../imgs/more@2x.png') no-repeat 50% 50% / contain;
    position: absolute;
    right: 8px;
    top: 8px;
}
.widget-board-list-review ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.widget-board-list-review li {
    height: 78px;
    padding: 14px 0;
    border-bottom: 1px dashed var(--line-color);
}
.widget-board-list-review li:last-child {
    border-bottom: none;
}
.widget-board-list-review li a {
    color: #222;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
}
.widget-board-list-review li .info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}
.widget-board-list-review li .name {
    font-size: 14px;
    font-weight: 400;
    color: #b0b0b0;
}
.widget-board-list-review li .rate {
    position: relative;
    height: 9px;
    width: 53px;
    display: block;
    vertical-align: middle;
}
.widget-board-list-review li .rate:before {
    content: "";
    display: block;
    width: 53px;
    height: 9px;
    position: absolute;
    left: 0;
    top: 0;
    background: url("../imgs/star-bg.png") no-repeat 0 0;
}
.widget-board-list-review li .rate:after {
    content: "";
    display: block;
    height: 9px;
    position: absolute;
    left: -1px;
    top: 0;
    background-image: url("../imgs/star-on.png");
    background-repeat: repeat-x;
    background-size: 11px 9px;
    background-position: left top;
}
.widget-board-list-review li .rate1:after {
    width: 11px;
}
.widget-board-list-review li .rate2:after {
    width: 22px;
}
.widget-board-list-review li .rate3:after {
    width: 33px;
}
.widget-board-list-review li .rate4:after {
    width: 44px;
}
.widget-board-list-review li .rate5:after {
    width: 55px;
}

/* -- mobile */
.widget-board-list-review.mobile {
    margin-bottom: 10px;
    padding: 20px;
    height: auto;
}
.widget-board-list-review.mobile .title {
    font-size: 17px;
    margin-bottom: 10px;
}
.widget-board-list-review.mobile .title .more {
    font-size: 13px;
    font-weight: normal;
    padding-right: 28px;
}
.widget-board-list-review.mobile .title .more:before {
    width: 22px;
    height: 22px;
    top: -1px;
}
.widget-board-list-review.mobile .title .more:after {
    right: 6px;
    top: 5px;
    background-image: url('../imgs/more@2x.png');
}

.widget-board-list-review.mobile li a {
    font-size: 14px;
}
.widget-board-list-review.mobile li .name {
    font-size: 13px;
}

/* notice */
.widget-board-list-notice {
    padding: 140px 0;
}
.widget-board-list-notice h3 {
    margin: 0 0 50px;
}
.widget-board-list-notice ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.widget-board-list-notice li {
    border-radius: var(--radius);
    overflow: hidden;
}
.widget-board-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-list-notice li .subject {
    font-size: 20px;
    font-weight: 600;
    color: #222;
    line-height: 150%;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    height: 60px;
}
.widget-board-list-notice li .content {
    font-size: 16px;
    color: var(--font-color);
    margin-top: 20px;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    height: 44px;
}
.widget-board-list-notice li .content p {
    margin: 0;
}
.widget-board-list-notice li .content br {
    display: none;
}
.widget-board-list-notice li .date {
    font-size: 14px;
    color: #949faf;
    margin-top: 30px;
}
.widget-board-list-notice li .subject,
.widget-board-list-notice li .content,
.widget-board-list-notice li .date {
    transition: color 1s;
}
.widget-board-list-notice li:hover a {
    background: var(--main-color);
}
.widget-board-list-notice li:hover a .subject {
    color: #fff;
}
.widget-board-list-notice li:hover a .content {
    color: #949faf;
}
.widget-board-list-notice li:hover a .date {
    color: var(--font-color);
}
.widget-board-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-list-notice .more:hover {
    background: var(--second-color);
}
.widget-board-list-notice .more:before {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    background: url('../imgs/more@2x.png') no-repeat 0 0 / contain;
    position: absolute;
    right: 18px;
    top: 20px;
}
/* -- mobile */
.widget-board-list-notice.mobile {
    padding: 50px 0;
}
.widget-board-list-notice.mobile h3 {
    margin-bottom: 25px;
}
.widget-board-list-notice.mobile ul {
    grid-template-columns: repeat(1, 3fr);
    gap: 10px;
}
.widget-board-list-notice.mobile li a {
    padding: 30px 20px;
    height: auto;
}
.widget-board-list-notice.mobile li a .subject {
    font-size: 16px;
    height: 50px;
}
.widget-board-list-notice.mobile li .content {
    font-size: 14px;
    margin-top: 10px;
    height: 42px;
}
.widget-board-list-notice.mobile li .date {
    font-size: 13px;
}
.widget-board-list-notice.mobile .more {
    margin-top: 25px;
    font-size: 15px;
}





