.news {
    border-radius: 4px;
    background-color: #fff;
    min-height: 800px;
    overflow: hidden;
}

.news .title {
    display: flex;
    justify-content: center;
    border-bottom: 1px solid #eeeeee;
    margin-bottom: 10px;
}

.news .link {
    font-size: 16px;
    margin: 15px 15px;
}

.news .title a {
    color: #666666;
    padding-bottom: 15px;
    border-bottom: 2px solid transparent;
}

.news .title a.curr {
    color: #007aff;
    border-color: #007aff;
}

.news .list {
    display: flex;
    justify-content: space-between;
    padding: 10px 10px;
    flex-wrap: wrap;
}

.news .item {
    width: 49.5%;
    margin: 5px 0;
    font-size: 13px;
    border-radius: 4px;
    border: 1px solid #eee;
    transition: .3s;
}

.news .item a {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 6px 10px;
    box-sizing: border-box;
    justify-content: space-between;
}

.news .text {
    color: #666666;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    padding-right: 30px;
}

.news .time {
    color: #999999;
    white-space: nowrap;
}

.news .item:hover {
    background-color: #f0f0f0;
}

.news-detail {
    padding: 20px 10px 40px 10px;
    background-color: #fff;
    border-radius: 4px;
    font-size: 15px;
    color: #444444;
    /*position: relative;*/
    user-select: none;
}

.news-detail .news-title {
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.news-detail .title {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #333333;
    font-weight: bold;
    margin-top: 10px;
}

.news-detail .time {
    display: flex;
    justify-content: center;
    color: #999999;
    font-size: 14px;
}

.news-detail .news-box {
    margin: 0 auto;
    min-height: 600px;
    padding: 10px 20px 40px 10px;
    overflow: hidden;
}

.news-detail .news-box img {
    border-radius: 10px;
    margin: 30px auto;
    max-width: 100%;
    max-height: 100%;
    display: flex;
}

.news-detail .news-btn {
    /*position: absolute;*/
    /*left: 20px;*/
    /*bottom: 20px;*/
    font-size: 15px;
    color: #444444;
    transition: .3s;
}

.news-detail .news-btn div {
    margin-bottom: 5px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.news-detail .news-btn div span {
    min-width: 50px;
}

.news-detail .news-btn div a {
}

.news-detail .news-btn div a:hover {
    color: #007aff;
}

.news-title .button {
    color: #999;
    font-size: 12px;
    border-radius: 4px;
    border: 1px solid #ddd;
    padding: 4px 10px;
    cursor: pointer;
    transition: .3s;
}

.news-title .button:hover {

}

@media (max-width: 972px) {
    .news .title {
        overflow: hidden;
        white-space: nowrap;
        justify-content: normal;
        overflow-x: auto;
        width: calc(100vw - 30px);
    }
}

@media (max-width: 480px) {
    .news .item {
        width: 100%;
    }

    .news-detail .news-btn div{
        border: 1px solid #dddddd;
        padding: 4px 10px;
        border-radius: 4px;
        text-align: center;
        margin: 10px 0;
    }
}