@import "../common/hide_navbar.css";

.page {
    background-color: #F7F7F7;
}
.page-banner img {
    width: 100%;
}
.news-list {
    padding-top: 5rem;
}
.top-news-title {
    font-size: 16px;
    color: #333;
    font-weight: bold;
    padding-bottom: 1rem;
    padding-top: 2px;
}
.news-title {
    font-size: 16px;
    color: #333;
    font-weight: bold;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.top-news ul li a:hover .news-title,
.top-news ul li a:hover .news-date,
.news-item:hover .news-title,
.news-item:hover .news-date {
    color: #006BFF;
}
.top-news ul li {
    padding: 1.5rem 0;
    border-top: 1px solid #E5E5E5;
}
.top-news a {
    text-decoration: none;
}
.news-date {
    color: #666;
    font-size: 14px;
}
.type-news .news-menu {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    border-bottom: 1px solid #E5E5E5;
}
.type-news .news-menu-item {
    display: inline-block;
    font-size: 16px;
    font-weight: bold;
    color: #999999;
    text-decoration: none;
    padding-bottom: 0.8rem;
    margin-right: 3rem;
    border-bottom: 3px solid transparent;
    overflow: hidden;
    position: relative;
    left: 0;
    top: 2px;
}
.type-news .news-menu-item.active {
    color: #006BFF;
    border-bottom: 3px solid #006BFF;
}
.type-news .news-item {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid #E5E5E5;
    text-decoration: none;
}
.type-news .news-info {
    width: 65%;
}
.type-news .news-item:last-child {
    border-bottom: none;
}
.type-news .news-item .news-image {
    width: 30%;
    border-radius: 10px;
    margin-right: 3%;
}
.type-news .news-item .news-title {
    -webkit-line-clamp: 3;
    margin-bottom: 1rem;
    height: 72px;
}
.type-news .news-detail {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.type-news .pagination {
    justify-content: center;
}
.matchs {
    padding-top: 5rem;
}
.matchs .swiper-container {
    padding-bottom: 3rem;
}
.matchs .swiper-slide {
    width: auto;
}
.matchs .match-item {
    width: 200px;
    height: 300px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    background-color: #006BFF;
    border-radius: 10px;
    overflow: hidden;
    -webkit-transition: width 0.3s;
    -moz-transition: width 0.3s;
    -ms-transition: width 0.3s;
    -o-transition: width 0.3s;
    transition: width 0.3s;
}
.matchs .match-item:hover {
    width: 650px;
}
.matchs .match-image {
    width: 200px;
}
.matchs .match-info {
    width: 450px;
    padding: 1rem;
}
.matchs .match-head {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.3rem;
}
.matchs .match-date {
    font-size: 24px;
    font-weight: bold;
    color: #f1f1f1;
}
.matchs .match-head a {
    color: #f1f1f1;
    font-size: 16px;
}
.matchs .match-head .badge {
    color: #006BFF;
    font-weight: normal;
}
.matchs .match-type {
    color: #f1f1f1;
    margin-bottom: 1rem;
}
.matchs .match-desc {
    color: #f1f1f1;
    line-height: 30px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;

}
@media (max-width: 1000px) {
    .news-list {
        padding-top: 0;
    }
    .type-news {
        padding-top: 1rem;
        background-color: #fff;
    }
    .type-news .news-menu-item {
        margin-right: 0;
        margin-bottom: 10px;
    }
    .type-news .news-menu {
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .type-news .news-item .news-image {
        width: 45%;
    }
    .type-news .news-info {
        width: 50%;
    }
    .type-news .news-item .news-title {
        -webkit-line-clamp: 2;
        height: 48px;
    }
    .type-news .news-detail {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }
    .news-date {
        font-size: 12px;
    }
    .top-news {
        background-color: #fff;
        margin-top: 3rem;
        padding-top: 1rem;
    }
    .matchs .match-item {
        width: 400px;
    }
    .matchs .match-item:hover {
        width: 400px;
    }
    .matchs .match-head {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        margin-bottom: 1.5rem;
    }
    .matchs .match-date {
        font-size: 16px;
    }
    .matchs .match-head .badge,
    .matchs .match-head a {
        font-size: 12px;
    }
    .matchs .match-desc {
        font-size: 12px;
        line-height: 24px;
    }
}