.news {
    margin-top: 20px;
    padding: 20px 20px;
    background-color: #fff;
    min-height: 1000px;
}

.news .tit {
    font-size: 18px;
    margin-bottom: 15px;
}

.news .link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.news .link a {
    flex: 1;
    color: #666666;
    background-color: #f9f9f9;
    height: 35px;
    line-height: 35px;
    text-align: center;
    margin-right: 10px;
    border: 1px solid #dddddd;
}

.news .link a.active {
    border-color: #d7d7d7;
    background-color: #d7d7d7;
}

.news .link a:last-child {
    margin-right: 0;
}

.news ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.news li {
    width: 46%;
    white-space: nowrap;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-overflow: ellipsis;
    padding: 6px 0;
}

.news li span {
    color: #999999;
}

.news li a {
    color: #444444;
    padding-right: 50px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.news li a:hover {
    color: #f77b78;
}

.newsview {
    background: #fff;
    min-height: 1400px;
    padding: 20px 20px;
    margin-top: 20px;
}

.newsview h1 {
    text-align: center;
    font-size: 24px;
    color: #333;
    margin: 40px 0 10px 0;
}

.newsview .time {
    color: #999;
    font-size: 13px;
    text-align: center;
    padding-bottom: 10px;
    border-bottom: solid 1px #eee;
}

.newsview .content {
    padding: 40px;
    overflow: hidden;
    font-size: 15px;
    color: #666;
    line-height: 30px;
    text-indent: 30px;
}

.newsview .content img {
    max-width: 100%;
    display: block;
    margin: 30px auto;
}

.newsview .next {
    margin: 20px 40px;
    line-height: 25px;
    color: #999;
}

.newsview .next a {
    color: #666;
}

.newsview .next a:hover {
    color: #c52d2a;
}

.show-large {
    display: none;
}

.show-large .fixed {
    position: fixed;
    padding: 50px;
    width: 90%;
    height: 90%;
    z-index: 1024;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #666666;
    background-color: #111111;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 12px;
    box-shadow: 0 12px 2px 1px rgba(200, 200, 200, .2);
    overflow: hidden;
}

.show-large .bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1023;
    background-color: rgba(255, 255, 255, 0.9);
}

.show-large .button {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 100%;
    display: block;
    cursor: pointer;
}

.show-large .prev-btn {
    background: url("/static/icon/icon_arrow.png") no-repeat 14px center;
    background-size: 26px;
}

.show-large .next-btn {
    left: initial;
    right: 0;
    background: url("/static/icon/icon_arrow.png") no-repeat 14px center;
    background-size: 26px;
    transform: rotate(180deg);
}

.show-large .button:hover {
    background-color: #333333;
}

.show-large .close {
    position: absolute;
    right: 50px;
    top: 10px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: url("/static/icon/icon_close2.png") no-repeat center;
    background-size: 10px;
    cursor: pointer;
    z-index: 2;
    border: 2px solid #dddddd;
}

.show-large .close:hover {
    background-color: #999999;
}

.show-large img {
    display: block;
    -o-object-fit: scale-down;
    object-fit: scale-down;
    max-width: 100%;
    max-height: 100%;
}
