img {
    width: 100%;
}

.main-header {
    background-color: #FFF;
    color: var(--text-dark);
}

.header-actions .hotline-box span {
    color: #999;
}

.btn-lang {
    color: var(--text-dark);
}

.pinned:hover {
    box-shadow: 0 0 15px rgba(229, 42, 56, 0.23);
}

.pinned .pinned-swiper {
    overflow: hidden;
}

.pinned .item {
    padding: 40px;
    border-radius: 10px;
    background-color: #FFF;
    display: flex;
    justify-content: space-between;
    transition: all .3s;
}

.pinned .item > div {
    width: 48%;
} 

.pinned .item .left {
    display: flex;
    flex-direction: column;
}

.pinned .item .left .cate-name {
    font-size: 18px;
}

.pinned .item .left .title {
    font-size: 30px;
    margin-top: 20px;
}

.pinned .item .left .description {
    color: #a5a5a5;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5;
    margin-top: 10px;
}

.pinned .item .left .other {
    display: flex;
    gap: 20px;
    color: #999;
    margin-top: 30px;
}

.pinned .item .left .navigation {
    margin-top: auto;
    display: flex;
    gap: 20px;
}

.navigation .swiper-button {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 1px solid var(--primary-color);
    background-color: var(--primary-color);
    cursor: pointer;
    color: #FFF;
}

.swiper-button.swiper-button-disabled {
    color: #666666;
    border: 1px solid #666666;
    background-color: transparent;
}


.pinned .item .right img {
    border-radius: 20px;
    max-height: 436px;
}

.article-list {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.article-list .item {
    border-radius: 10px;
    background-color: #FFF;
    overflow: hidden;
    transition: all .3s;
    display: flex;
    flex-direction: column;
}

.article-list .item:hover {
    background-color: var(--primary-color);
    color: #FFF;
    transform: translateY(-5px);
    box-shadow: 0 0 15px rgba(229, 42, 56, 0.23);
}

.article-list .item .bottom {
    padding: 20px;
}

.article-list .item .bottom .date {
    font-size: 14px;
}

.article-list .item .bottom .title {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.3;
    margin-top: 5px;
}

.article-list .item .bottom .description {
    color: #a5a5a5;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5;
    margin-top: 10px;
}

.article-list .item:hover .description {
    color: #FFF;
}

.article-list .item .view-more {
    margin-top: auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.article-list .item .view-more .arrow-right {
    width: 40px;
    height: 40px;
    border: 1px solid #eee;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    
}

.article-list .item .view-more .arrow-right i {
    font-size: 18px;
}

.card {
    border-radius: 10px;
    background-color: #FFF;
}

.card .head {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: 1px dashed var(--base-border-color);
}

.card .head .title {
    font-size: 32px;
    line-height: 1.5;
    font-weight: bold;
}

.card .head .other {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.card .body {
    padding: 50px;
}

.card .body img {
    width: unset;
    display: inline-block;
}

.card .footer {
    display: flex;
    justify-content: space-between;
    border-top: 1px dashed var(--base-border-color);
    padding: 20px;
}

.card .footer a {
    display: auto;
}

@media screen and (max-width: 1440px) {
    .main-content {
        padding-left: 80px;
        padding-right: 80px;
    }
}

@media screen and (max-width: 1280px) {
    .pinned .item .left .title {
        font-size: 24px;
        margin-top: 10px;
    }
    
    .pinned .item .left .other {
        margin-top: 10px
    }
    
    .navigation .swiper-button {
        width: 40px;
        height: 40px;
    }
    
    .article-list {
        gap: 20px;
    }
    
    .article-list .item .bottom .title {
        font-size: 18px;
    }
    
    .article-list .item .bottom .description {
        font-size: 14px;
    }
}

@media screen and (max-width: 768px) {
    .main-content {
        padding-left: 0;
        padding-right: 0;
    }
    
    .pinned .item {
        padding: 20px;
        flex-direction: column;
    }
    
    .pinned .item > div {
        width: 100%;
    }
    
    .pinned .item .left .navigation {
        display: none;
    }
    
    .pinned .item .right {
        margin-top: 10px;
    }
    
    .article-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .article-list .item .bottom {
        padding: 10px;
    }
    
    .article-list .item .bottom .title {
        font-size: 16px;
    }
    
    .article-list .item .view-more .arrow-right {
        width: 35px;
        height: 35px;
    }
    
    .article-list .item .view-more {
        padding: 10px;
        font-size: 14px;
    }
    
    .card .head {
        padding: 10px;
    }
    
    .card .head .title {
        font-size: 20px;
    }
    
    .card .body {
        padding: 20px;
    }
    
    .card .footer {
        flex-direction: column;
    }
     
    .card .footer .next {
        margin-top: 5px;
    }
}
