.article-main-wrap {
    margin: 0 auto;
    padding: 0 12px 36px 12px;
    width: 100%;
    padding-top: 65px;
}

.article-main-wrap .swiper {
    width: 100%;
    height: 650px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
}

.mySwiper .swiper-button-next,
.mySwiper .swiper-button-prev {
    width: 40px;
    height: 40px;
    background-color: #fff;
    color: #000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 40px;
}

.mySwiper .swiper-button-next::after,
.mySwiper .swiper-button-prev::after {
    font-size: 20px;
    font-weight: bold;
    color: #000;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-content-wrap {
    max-width: 1366px;
    display: flex;
    gap: 32px;
    margin: 0 auto;
    margin-bottom: 32px;
}

.article-list-wrap {
    flex: 2;
}

.article-list-title {
    font-weight: bold;
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.article-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.article-card {
    display: flex;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px #eee;
    min-height: 80px;
    align-items: stretch;
    overflow: hidden;
}

.article-card .img {
    width: 120px;
    min-width: 90px;
    background: #ccc;
    border-radius: 12px 0 0 12px;
}

.article-card .info {
    flex: 1;
    padding: 18px 18px 18px 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.article-side {
    flex: 1;
    min-width: 220px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.article-side-block {
    background: none;
}

.article-side-title {
    font-weight: bold;
    font-size: 1.1rem;
    color: #b700ff;
    margin-bottom: 10px;
}

.article-side-cate {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px #eee;
    padding: 18px 18px 12px 18px;
    margin-bottom: 18px;
}

.article-side-cate-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.article-side-cate-list li {
    margin-bottom: 8px;
    font-size: 1rem;
}

.article-side-cate-list a {
    color: #333;
    text-decoration: none;
    transition: color 0.2s;
}

.article-side-cate-list a:hover {
    color: #b700ff;
}

.article-side-cate-list .count {
    color: #b700ff;
    margin-left: 4px;
}

.article-side-mini-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.article-mini-card {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px #eee;
    min-height: 40px;
    overflow: hidden;
}

.article-mini-card .img {
    width: 48px;
    min-width: 40px;
    height: 40px;
    background: #ccc;
    border-radius: 8px 0 0 8px;
}

.article-mini-card .info {
    flex: 1;
    padding: 0 10px;
    font-size: 0.98rem;
}

.article-more-bar {
    text-align: center;
    margin: 32px 0 0 0;
}

.article-more-btn {
    background: #b700ff;
    color: #fff;
    border: none;
    border-radius: 24px;
    padding: 10px 38px;
    font-size: 1.08rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
}

.article-more-btn:hover {
    background: #a100e6;
}

@media (max-width: 900px) {
    .article-main-wrap {
        padding: 80px 0px 24px 0px;
    }

    .article-main-wrap .mySwiper {
        height: 220px !important;
        padding-top: 0;
    }

    .article-main-wrap .swiper-button-next,
    .article-main-wrap .swiper-button-prev {
        width: 32px;
        height: 32px;
        margin: 0 12px;
        background: rgba(255, 255, 255, 0.92);
        color: #505050;
    }

    .article-main-wrap .swiper-button-next::after,
    .article-main-wrap .swiper-button-prev::after {
        font-size: 16px;
    }

    .article-main-wrap .swiper-pagination {
        bottom: 8px;
    }

    .article-main-wrap .swiper-slide {
        height: 100%;
    }

    .article-carousel {
        height: 120px;
    }

    .article-content-wrap {
        flex-direction: column;
        gap: 18px;
    }

    .article-side {
        flex-direction: column;
        gap: 18px;
        min-width: 0;
    }

    .article-card {
        flex-direction: column;
    }

    .article-card .img {
        width: 100%;
        min-width: 0;
        border-radius: 12px 12px 0 0;
        height: 80px;
    }

    .article-card .info {
        padding: 12px;
    }

    .article-mini-card {
        flex-direction: row;
    }

    .article-mini-card .img {
        border-radius: 8px 0 0 8px;
    }
}