.app-news {
    padding: 40px 0 60px;
}

.app-news .app-news-column .title {
    font-size: 20px;
    line-height: 30px;
    color: #1b82fb;
    font-weight: 500;
    position: relative;
    border-bottom: 2px solid #f3f3f3;
}

.app-news .app-news-column .title::after {
    content: '';
    width: 80px;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: -2px;
    background: #1b82fb;
}

.app-news .app-news-column .list {
    padding: 23px 0 20px;
    display: flex;
    flex-wrap: wrap;
}

.app-news .app-news-column .list a {
    background: #eaf3fd;
    line-height: 32px;
    color: #858585;
    padding: 0 13px;
    border-radius: 4px;
    margin-right: 10px;
    margin: 0 10px 10px 0;
    border: 1px solid #1686fb;
}

.app-news .app-news-column .list a.active,
.app-news .app-news-column .list a:hover {
    color: #1b82fb;
}

.app-news .app-pagination {
    padding: 20px 0 0;
}

.app-news .app-news-list .list {
    width: 100%;
}

.app-news .app-news-list dl {
    margin: 0 0 20px;
}

.app-news .app-news-list dl dt {
    width: 100%;
    overflow: hidden;
    border-radius: 6px;
}

.app-news .app-news-list dl dt img {
    width: 100%;
    object-fit: cover;
    transition: all 0.3s;
    display: block;
}

.app-news .app-news-list dl dt a:hover img {
    transform: scale(1.2);
}

.app-news .app-news-list dl dd {
    padding: 12px 0 0;
}

.app-news .app-news-list dl dd h3 {
    font-size: 16px;
    font-weight: bold;
    height: 28px;
    overflow: hidden;
    line-height: 28px;
}

.app-news .app-news-list dl dd h3 a:hover {
    color: #1b82fb;
}

.app-news .app-news-list dl dd p {
    font-size: 12px;
    line-height: 24px;
    opacity: 0.5;
    height: 48px;
    overflow: hidden;
    margin: 7px 0 14px;
}

.app-news .app-news-list dl dd .d-bottom {
    display: flex;
    line-height: 24px;
    font-size: 12px;
    align-items: flex-start;
}

.app-news .app-news-list dl dd .d-bottom .date {
    margin-left: auto;
    opacity: 0.5;
    margin-right: 20px;
    padding-left: 16px;
    background: url(../images/date-icon.png) no-repeat center left;
}

.app-news .app-news-list dl dd .d-bottom .view {
    opacity: 0.5;
    padding-left: 15px;
    background: url(../images/view-icon.png) no-repeat center left;
}

.app-news .app-news-list dl dd .d-bottom .tags {
    display: flex;
    flex-wrap: wrap;
}

.app-news .app-news-list dl dd .d-bottom .tags a {
    background: #fcf2e8;
    border: 1px solid #ffaa5b;
    border-radius: 4px;
    line-height: 22px;
    color: #ffa24b;
    padding: 0 6px;
    margin-right: 10px;
    margin-bottom: 5px;
}

.app-news .app-news-list .hot-tags {
    padding: 25px 20px;
    border: 2px solid #ffffff;
    border-radius: 6px;
    margin: 40px 0 0;
    box-shadow: 0 0 10px 4px rgba(0, 0, 0, 0.05);
    background: linear-gradient(to bottom, #f6f9ff, #ffffff);
}

.app-news .app-news-list .hot-tags .tags-title {
    display: flex;
    align-items: center;
    line-height: 36px;
}

.app-news .app-news-list .hot-tags .tags-title h3 {
    font-size: 20px;
    font-weight: bold;
}

.app-news .app-news-list .hot-tags .tags-title a {
    color: #1b82fb;
    margin-left: auto;
}

.app-news .app-news-list .hot-tags .tags-list {
    padding: 20px 5px 0;
}

.app-news .app-news-list .hot-tags .tags-list .row {
    margin: 0 -5px;
}

.app-news .app-news-list .hot-tags .tags-list .row .col {
    padding: 0 5px;
    margin: 0 0 10px;
}

.app-news .app-news-list .hot-tags .tags-list .row .col a {
    background: #e1eeff;
    border-radius: 2px;
    line-height: 30px;
    width: 100%;
    overflow: hidden;
    height: 30px;
    font-size: 12px;
    padding: 0 8px;
    display: block;
    text-align: center;
}

@media (min-width: 768px) {
    .app-news .app-news-list dl {
        display: flex;
        margin: 0 0 30px;
    }

    .app-news .app-news-list dl dt {
        width: 200px;
        flex: 0 0 auto;
    }

    .app-news .app-news-list dl dd {
        padding: 0;
        margin-left: 20px;
        flex: 1;
    }

    .app-news .app-pagination {
        padding: 30px 0 0;
    }

    .app-news .app-news-list .hot-tags {
        margin: 60px 0 0;
    }
}

@media (min-width: 992px) {
    .app-news .app-news-list {
        display: flex;
        align-items: flex-start;
    }

    .app-news .app-news-list .list {
        flex: 1;
    }

    .app-news .app-news-list .hot-tags {
        margin: 0 0 0 40px;
        width: 320px;
        flex: 0 0 auto;
    }

    .app-news .app-news-list dl dt img {
        height: 130px;
    }
}


.com-news {
    width: 100%;
    padding: 40px 0;
    background: url(../images/news-bg.jpg) no-repeat center;
    background-size: cover;
}

.com-news .app-container .item {
    width: 100%;
    border-radius: 6px;
    margin: 0 0 30px;
    overflow: hidden;
    padding: 0 0 26px;
    background: #ffffff;
    transition: all .5s ease-in-out;
}

.com-news .app-container .item:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 10px 5px rgba(0,0,0,0.1);
}

.com-news .app-container .item:last-child {
    margin: 0;
}

.com-news .app-container .item .title {
    width: 100%;
    height: 188px;
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
    display: flex;
    align-items: center;
    padding: 0 25px;
    background: url(../images/hot-news-bg.png) no-repeat center;
    background-size: cover;
}

.com-news .app-container .item:nth-child(2) .title {
    background-image: url(../images/com-news-bg.png);
}

.com-news .app-container .item:nth-child(3) .title {
    background-image: url(../images/new-news-bg.png);
}

.com-news .app-container .item ul {
    padding: 30px 30px 0;
}

.com-news .app-container .item ul li {
    line-height: 30px;
    margin: 0 0 12px;
    height: 30px;
    overflow: hidden;
}

.com-news .app-container .item ul li span {
    opacity: 0.5;
    display: inline-block;
    margin-right: 10px;
}

.com-news .app-container .item ul li:last-child {
    margin: 0;
}

.com-news .app-container .item ul li a:hover,
.com-news .app-container .item .more:hover a {
    color: #1b82fb;
}

.com-news .app-container .item .more {
    text-align: center;
    line-height: 22px;
    margin: 20px 0 0;
}

@media (min-width: 768px) {
    .com-news {
        padding: 50px 0;
    }

    .com-news .app-container {
        display: flex;
        justify-content: space-between;
    }

    .com-news .app-container .item {
        margin: 0 20px 0 0;
    }

    .com-news .app-container .item:last-child {
        margin: 0;
    }

    .com-news .app-container .item ul {
        padding: 30px 15px 0;
    }
}

@media (min-width: 992px) {
    .com-news .app-container .item .title {
        font-size: 34px;
    }

    .com-news .app-container .item ul {
        padding: 30px 30px 0;
    }
}

@media (min-width: 1280px) {
    .com-news {
        padding: 70px 0;
    }
}
@media (min-width: 1280px) {
    .app-header {
        position: relative;
    }
}