/* 专题专栏CSS */
.slick-ztzl {}

.slick-ztzl {
    text-decoration: none;
    flex: 1;
    width: 100%;
    border-radius: 10px;
    transition: all 0.3s;}

.news-card {
    margin: 0 10px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);}

.news-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);}

.image-container {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.5s;}

.news-card:hover .image-container img {
    transform: scale(1.05);}

.news-content {
    padding: 12px;}

.news-title {
    font-size: 0.18rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    margin-bottom: 10px;
    line-height: 1.4;
    /* 标题一行显示，超出部分显示省略号 */
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    transition: all 0.5s;}

.news-card:hover .news-title {
    color: #0057c7;}

.news-date {
    font-size: 15px;
    color: #718096;
    margin-bottom: 0;
    display: flex;
    align-items: center;}

.news-date i {
    margin-right: 8px;
    background: url(images/rili.png) no-repeat center;
    width: 25px;
    height: 25px;}

.news-description {
    display: none;
    color: #4a5568;
    font-size: 16px;
    line-height: 1.5;
    /* 描述两行显示，超出部分显示省略号 */
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    min-height: 3em;
    /* 确保两行的高度 */
    display: none;}
