.youquanyi-news-list {
    margin: 0;
    width: 100%;
    padding: 30px 0 50px;
}
.youquanyi-news-list .news-box{
    margin: 0 auto;
    max-width: 1400px;
    width: 95%;
    display: flex;
    gap: 20px;
    border-radius: 12px;
    background-color: #fff;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    overflow: hidden;
}

/* 左侧分类菜单 */
.youquanyi-news-list .news-box .news-left{
    width: 240px;
    min-width: 240px;
    background: linear-gradient(135deg, #f8f9fa 0%, #f0f2f5 100%);
    position: relative;
    overflow: hidden;
}

.youquanyi-news-list .news-box .news-left .news-category-title {
    padding: 20px 0;
    text-align: center;
    font-size: 17px;
    font-weight: 600;
    color: #2c3e50;
    background: linear-gradient(135deg, #ffffff 0%, #e1e9eb 100%);

    position: relative;
    z-index: 1;
}

.youquanyi-news-list .news-box .news-left .news-category-title i {
    margin-right: 8px;
    font-size: 16px;
}

.youquanyi-news-list .news-box .news-left li {
    height: 46px;
    display: flex;
    align-items: center;
    font-size: 15px;
    justify-content: center;
    font-weight: 500;
    cursor: pointer;
    color: #4a5568;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    margin: 8px 12px;
    border-radius: 8px;
}

.youquanyi-news-list .news-box .news-left li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: linear-gradient(135deg, #667eea 0%, #4e9afc 100%);
    border-radius: 0 3px 3px 0;
    transition: height 0.25s ease;
}

.youquanyi-news-list .news-box .news-left li:hover {

    background-color: rgb(102 211 234 / 8%);
    transform: translateX(4px);
}

.youquanyi-news-list .news-box .news-left li:hover::before {
    height: 60%;
}

.youquanyi-news-list .news-box .news-left .hover-effect {
    color: #fff;
    background: linear-gradient(135deg, #66bcea 0%, #6bc2ff 100%);
    box-shadow: 0 4px 12px rgb(102 216 234 / 30%)
    transform: translateX(4px);
}

.youquanyi-news-list .news-box .news-left .hover-effect::before {
    height: 0;
}

/* 右侧文章列表 */
.youquanyi-news-list .news-box .news-right{
    flex: 1;
    min-width: 0;
    padding: 25px 30px;
}

.youquanyi-news-list .news-box .news-right .news-list-header {
    padding-bottom: 18px;
    border-bottom: 2px solid #f0f2f5;
    margin-bottom: 25px;
    position: relative;
}

.youquanyi-news-list .news-box .news-right .news-list-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, #66bdea 0%, #66bdea 100%);
    border-radius: 2px;
}

.youquanyi-news-list .news-box .news-right .news-list-header h2 {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    display: flex;
    align-items: center;
}

.youquanyi-news-list .news-box .news-right .news-list-header h2 i {
    margin-right: 10px;
    color: #66bdea;
    font-size: 18px;
}

.youquanyi-news-list .news-box .news-right .box {
    margin-bottom: 20px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e8eaed;
}

.youquanyi-news-list .news-box .news-right .box:hover {
    border-color: #66bdea;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.12);
    transform: translateY(-2px);
}

.youquanyi-news-list .news-box .news-right .box_content {
    display: flex;
    gap: 20px;
    padding: 18px;
}

.youquanyi-news-list .news-box .news-right .box_content .image {
    position: relative;
    width: 240px;
    min-width: 240px;
    height: 160px;
    overflow: hidden;
    border-radius: 8px;
    background: #f5f7fa;
}

.youquanyi-news-list .news-box .news-right .box_content .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.youquanyi-news-list .news-box .news-right .box:hover .image img {
    transform: scale(1.08);
}

.youquanyi-news-list .news-box .news-right .box_content .matter {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.youquanyi-news-list .news-box .news-right .box_content .matter .matter_title {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 12px;
    color: #1a202c;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-weight: 600;
    transition: color 0.25s ease;
}

.youquanyi-news-list .news-box .news-right .box:hover .matter .matter_title {
    color: #667eea;
}

.youquanyi-news-list .news-box .news-right .box_content .matter .matter_title .sale-tag-my{
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    border-radius: 4px;
    margin-right: 8px;
    vertical-align: middle;
}

.youquanyi-news-list .news-box .news-right .box_content .matter .matter_title .sale-tag-my i {
    margin-right: 4px;
    font-size: 11px;
}

.youquanyi-news-list .news-box .news-right .box_content .matter_article {
    flex: 1;
    font-size: 14px;
    line-height: 1.8;
    color: #718096;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 12px;
}

.youquanyi-news-list .news-box .news-right .box_content .matter_tag {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: #a0aec0;
}

.youquanyi-news-list .news-box .news-right .box_content .matter_tag i {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    background-color: rgba(102, 126, 234, 0.1);
    color: #66afea;
    border-radius: 6px;
    font-style: normal;
    font-weight: 500;
    transition: all 0.25s ease;
}

.youquanyi-news-list .news-box .news-right .box_content .matter_tag i i {
    margin-right: 4px;
    font-size: 12px;
}

.youquanyi-news-list .news-box .news-right .box:hover .matter_tag i {
    background-color: #66afea;
    color: #fff;
}

.youquanyi-news-list .news-box .news-right .box_content .matter_tag .news-date {
    display: inline-flex;
    align-items: center;
    color: #a0aec0;
}

.youquanyi-news-list .news-box .news-right .box_content .matter_tag .news-date i {
    margin-right: 4px;
    padding: 0;
    background: none;
    color: inherit;
    font-size: 12px;
}

.nonews{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0 20px;
}

.nonews img {
    max-width: 200px;
    opacity: 0.6;
}

.nonews-msg{
    text-align: center;
    padding-bottom: 60px;
    font-size: 16px;
    color: #a0aec0;
    font-weight: 500;
}

/*
文章浏览*/
.youquanyi-news-detail {
    margin: 0;
    width: 100%;
    padding: 30px 0 50px;
    overflow: hidden;
}
.youquanyi-news-detail .detail-box{
    margin: 0 auto;
    max-width: 1360px;

    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    overflow: hidden;
}
.youquanyi-news-detail .detail-box .title{
    font-size: 28px;
    line-height: 1.5;
    padding: 40px 50px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #1a202c;
    text-align: center;
    position: relative;
}
.youquanyi-news-detail .detail-box .title i {
    margin-right: 12px;
    color: #66a4ea;
    font-size: 26px;
    flex-shrink: 0;
}
.youquanyi-news-detail .detail-box .detail-box-head{
    font-size: 14px;
    padding: 0 50px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    border-bottom: 2px solid #f0f2f5;
    color: #718096;
    flex-wrap: wrap;
}
.youquanyi-news-detail .detail-box .detail-box-head a{
    color: #718096;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background-color: rgba(102, 126, 234, 0.1);
    border-radius: 6px;
    transition: all 0.25s ease;
    text-decoration: none;
}
.youquanyi-news-detail .detail-box .detail-box-head a:hover{
    background-color: #66a4ea;
    color: #fff;
    transform: translateY(-2px);
}
.youquanyi-news-detail .detail-box .detail-box-head a:hover i {
    color: #fff;
}
.youquanyi-news-detail .detail-box .detail-box-head a i {
    color: #66a8ea;
    transition: color 0.25s ease;
}
.youquanyi-news-detail .detail-box .detail-box-head .news-date {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background-color: #f7fafc;
    border-radius: 6px;
}
.youquanyi-news-detail .detail-box .detail-box-head .news-date i {
    color: #a0aec0;
}
.youquanyi-news-detail .detail-box .content{
    padding: 30px 50px;
    line-height: 1.8;
    color: #2d3748;
    font-size: 16px;
}
.youquanyi-news-detail .detail-box .content p {
    color: #4a5568;
    font-size: 16px;
    line-height: 2;
    text-indent: 2em;
    margin-bottom: 20px;
}
.youquanyi-news-detail .detail-box .content img{
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    margin: 25px auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}
.youquanyi-news-detail .detail-box .content img.lazy-detail {
    opacity: 0;
}
.youquanyi-news-detail .detail-box .content img.loaded {
    opacity: 1;
}
.youquanyi-news-detail .detail-box .content img:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

/* 文章底部区域 */
.youquanyi-news-detail .detail-box .detail-box-footer {
    padding: 25px 50px 40px;
    border-top: 2px solid #f0f2f5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    color: #718096;
    font-size: 14px;
}

.youquanyi-news-detail .detail-box .detail-box-footer .article-tags,
.youquanyi-news-detail .detail-box .detail-box-footer .article-share {
    display: flex;
    align-items: center;
    gap: 10px;
}

.youquanyi-news-detail .detail-box .detail-box-footer > i {
    color: #667eea;
    font-size: 16px;
}

.youquanyi-news-detail .detail-box .detail-box-footer .tag-item {
    background-color: rgba(102, 126, 234, 0.1);
    padding: 6px 14px;
    border-radius: 6px;
    color: #667eea;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    transition: all 0.25s ease;
    cursor: pointer;
}

.youquanyi-news-detail .detail-box .detail-box-footer .tag-item i {
    color: #667eea;
    font-size: 12px;
}

.youquanyi-news-detail .detail-box .detail-box-footer .tag-item:hover {
    background-color: #667eea;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.youquanyi-news-detail .detail-box .detail-box-footer .tag-item:hover i {
    color: #fff;
}

.youquanyi-news-detail .detail-box .detail-box-footer .share-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 18px;
    transition: all 0.25s ease;
    text-decoration: none;
}

.youquanyi-news-detail .detail-box .detail-box-footer .share-item:hover {
    transform: translateY(-3px) scale(1.1);
}

.youquanyi-news-detail .detail-box .detail-box-footer .share-item:nth-child(2) {
    color: #07C160;
    background-color: rgba(7, 193, 96, 0.1);
}

.youquanyi-news-detail .detail-box .detail-box-footer .share-item:nth-child(2):hover {
    background-color: #07C160;
    color: #fff;
    box-shadow: 0 4px 12px rgba(7, 193, 96, 0.3);
}

.youquanyi-news-detail .detail-box .detail-box-footer .share-item:nth-child(3) {
    color: #E6162D;
    background-color: rgba(230, 22, 45, 0.1);
}

.youquanyi-news-detail .detail-box .detail-box-footer .share-item:nth-child(3):hover {
    background-color: #E6162D;
    color: #fff;
    box-shadow: 0 4px 12px rgba(230, 22, 45, 0.3);
}

.youquanyi-news-detail .detail-box .detail-box-footer .share-item:nth-child(4) {
    color: #12B7F5;
    background-color: rgba(18, 183, 245, 0.1);
}

.youquanyi-news-detail .detail-box .detail-box-footer .share-item:nth-child(4):hover {
    background-color: #12B7F5;
    color: #fff;
    box-shadow: 0 4px 12px rgba(18, 183, 245, 0.3);
}

/* 骨架屏样式 */
.skeleton-menu {
    padding: 10px;
}

.skeleton-menu .skeleton-item {
    height: 46px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s ease-in-out infinite;
    border-radius: 8px;
    margin: 8px 12px;
}

.skeleton-news {
    padding: 0;
}

.skeleton-news-item {
    display: flex;
    gap: 20px;
    padding: 18px;
    margin-bottom: 20px;
    border-radius: 10px;
    border: 1px solid #e8eaed;
    background: #fff;
}

.skeleton-news-item .skeleton-image {
    width: 240px;
    min-width: 240px;
    height: 160px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s ease-in-out infinite;
    border-radius: 8px;
}

.skeleton-news-item .skeleton-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.skeleton-news-item .skeleton-title {
    height: 24px;
    width: 70%;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s ease-in-out infinite;
    border-radius: 4px;
}

.skeleton-news-item .skeleton-text {
    height: 16px;
    width: 100%;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s ease-in-out infinite;
    border-radius: 4px;
}

.skeleton-news-item .skeleton-text:last-of-type {
    width: 85%;
}

.skeleton-news-item .skeleton-footer {
    height: 20px;
    width: 40%;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s ease-in-out infinite;
    border-radius: 4px;
    margin-top: auto;
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* 图片加载动画 */
img.lazy {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

img.loaded {
    opacity: 1;
}

/* 响应式设计 */
@media screen and (max-width: 1200px) {
    .youquanyi-news-list .news-box {
        width: 95%;
    }
    .youquanyi-news-detail .detail-box {
        width: 95%;
    }
}

@media screen and (max-width: 768px) {
    .youquanyi-news-list .news-box {
        flex-direction: column;
    }
    .youquanyi-news-list .news-box .news-left {
        width: 100%;
        min-width: 100%;
    }
    .youquanyi-news-list .news-box .news-right {
        width: 100%;
        padding: 20px 15px;
    }
    .youquanyi-news-list .news-box .news-right .box_content {
        flex-direction: column;
        gap: 15px;
    }
    .youquanyi-news-list .news-box .news-right .box_content .image {
        width: 100%;
        min-width: 100%;
        height: 200px;
    }
    .youquanyi-news-list .news-box .news-right .box_content .matter {
        padding: 0;
    }
    
    /* 移动端骨架屏优化 */
    .skeleton-news-item {
        flex-direction: column;
        gap: 15px;
    }
    .skeleton-news-item .skeleton-image {
        width: 100%;
        min-width: 100%;
        height: 200px;
    }
    
    .youquanyi-news-detail .detail-box .title {
        font-size: 22px;
        padding: 30px 20px 15px;
    }
    .youquanyi-news-detail .detail-box .detail-box-head {
        padding: 0 20px 15px;
        font-size: 13px;
    }
    .youquanyi-news-detail .detail-box .content {
        padding: 20px;
        font-size: 15px;
    }
    .youquanyi-news-detail .detail-box .content p {
        font-size: 15px;
        line-height: 1.8;
    }
    .youquanyi-news-detail .detail-box .detail-box-footer {
        padding: 20px;
        flex-direction: column;
        align-items: flex-start;
    }
    .youquanyi-news-detail .detail-box .detail-box-footer .article-tags,
    .youquanyi-news-detail .detail-box .detail-box-footer .article-share {
        width: 100%;
    }
    
    .skeleton-detail-content {
        padding: 20px;
    }
}

/* 微信二维码样式 */
.weixin-qrcode-container {
    padding: 30px;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}
.qrcode-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #2c3e50;
}
.qrcode-img {
    display: inline-block;
    margin: 0 auto;
    padding: 15px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.qrcode-img img {
    display: block;
    width: 200px;
    height: 200px;
    border-radius: 8px;
}
.qrcode-tips {
    margin-top: 20px;
    font-size: 14px;
    color: #718096;
}

/* 详情页骨架屏 */
.skeleton-detail-title {
    height: 40px;
    width: 70%;
    margin: 40px auto 20px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s ease-in-out infinite;
    border-radius: 8px;
}

.skeleton-detail-meta {
    height: 30px;
    width: 40%;
    margin: 0 auto 20px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s ease-in-out infinite;
    border-radius: 6px;
    border-bottom: 2px solid #f0f2f5;
    padding-bottom: 20px;
}

.skeleton-detail-content {
    padding: 30px 50px;
}

.skeleton-detail-text {
    height: 20px;
    width: 100%;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s ease-in-out infinite;
    border-radius: 4px;
}

.skeleton-detail-text:nth-child(3n) {
    width: 85%;
}

.skeleton-detail-text:nth-child(5n) {
    width: 90%;
}