@charset "utf-8";
@import "css.css";

.news {
    width: 100%;
    max-width: 880px;
    margin: 0 auto;
}

.news li {
    padding: 10px;
    margin-top: 10px;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all .25s linear;
    cursor: pointer;
}

.news li:hover {
    background-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 5px 13px rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.news li:last-child {
    margin-bottom: 10px;
}

.link {
    display: block;
    margin-bottom: 8px;
}

.one-pic .link {
    width: calc(100% - 188px);
    float: right;
    margin-left: 8px;
}

.one-pic .description {
    height: 75px;
}

.title {
    font-size: 15px;
    height: 32px;
    line-height: 32px;
    overflow: hidden;
    margin-bottom: 8px;
    color: #eee;
}

li:hover .title {
    color: #fff;
}

.description {
    display: block;
    line-height: 25px;
    color: #999;
    height: 50px;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #bbb;
}

li:hover .description {
    color: #ddd;
}

.btn {
    height: 24px;
    line-height: 24px;
    text-align: right;
    color: #aaa;
}

li:hover .btn {
    color: #ddd;
}

.date {
    float: left;
}

.info {
    margin-right: 10px;
    display: inline-block;
}

.btn .info:nth-child(4) {
    margin-right: 0;
}

.pic {
    float: left;
    width: 180px;
    height: 115px;
    margin-bottom: 8px;
    position: relative;
}

.pics .pic {
    width: calc(25% - 6.4px);
    height: auto;
    margin-right: 8px;
}

.pics .pic:nth-child(5) {
    margin-right: 0;
}

.pic img {
    display: block;
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 800px) {
    .news li {
        padding: 8px;
    }

    .pic {
        width: 130px;
        height: 90px;
    }

    .one-pic .link {
        width: calc(100% - 138px);
    }

    .one-pic .description {
        height: 50px;
    }

    .video .link {
        width: 100%;
        float: left;
        margin-left: 0;
        margin-bottom: 0;
    }

    .video .description {
        display: none;
    }

    .v {
        width: 100%;
        height: auto;
    }
}