@charset "utf-8";

.list-wrap {
    position: relative;
    width: 1200px;
    margin: 0 auto;
    padding-top: 80px;
    z-index: 10;
}
.list-wrap .news-item {
    position: relative;
    height: 180px;
    width: 100%;
    margin-bottom: 40px;
    display: table;
    align-items: center;
}
.list-wrap .news-item .news-thumb {
    display: table-cell;
    vertical-align: middle;
    height: 180px;
    width: 320px;
    border-radius: 10px;
    background-color: #f2f2f2;
    overflow: hidden;
    opacity: .88;
    transition: opacity .3s ease;
}
.list-wrap .news-item:hover {
    animation-name: updownNormal;
    animation-duration: 1s;
}
.list-wrap .news-item:hover .news-thumb {
    opacity: 1;
}
.list-wrap .news-item .hole {
    position: absolute;
    left: 316px;
    top: 7px;
    width: 8px;
    height: 172px;
    background: url(../images/hole.png) no-repeat;
    z-index: 5;
}
.list-wrap .news-item .news-details {
    position: relative;
    display: table-cell;
    vertical-align: middle;
    height: 180px;
    box-sizing: border-box;
    padding: 20px 36px;
    border-radius: 10px;
    transition: background-color .3s ease;
    background-color: #fafafa;
}
.list-wrap .news-item .news-details .news-title {
    font-weight: bold;
    font-size: 18px;
    line-height: 2;
    color: #414141;
}
.list-wrap .news-item .news-details .news-summary {
    font-size: 12px;
    color: #686868;
    line-height: 2;
}
.list-wrap .news-item .news-details .date {
    position: absolute;
    right: 36px;
    top: 30px;
    font-size: 12px;
    color: #a1a0a0;
}
.list-wrap .news-item:hover .news-details {
    background-color: #1bab82;
}
.list-wrap .news-item:hover .hovercolor{
    color: #fff;
}
.list-wrap .news-item:hover .scale {
    transform: scale(1.15);
}

/* tree */
.list-wrap .nav-link {
    position: relative;
    display: inline-block;
    margin: 0 10px;
    width: 186px;
    margin-top: 10px;
    margin-bottom: 10px;
    line-height: 50px;
    font-size: 16px;
    font-weight: bold;
    color: #1bab82;
    border-radius: 8px;
    background-color: #fff;
    border: 1px dashed #ccc;
    overflow: hidden;
    z-index: 10;
    transition: all .3s ease;
}
.list-wrap .nav-link:hover {
    font-weight: bold;
    color: #fff;
    background-color: #1bab82;
    border-color: #1bab82;
}
.list-wrap .nav-link-active{
    font-weight: bold;
    color: #fff;
    background-color: #1bab82;
    border-color: #1bab82;
}
.list-wrap .nav-level-1 {
    text-align: center;
    position: relative;
    margin: 30px 0;
}
.list-wrap .nav-level-1::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    border-top: dashed 1px #ccc;
}