.youquanyi-news-list {
    margin: 0;
    width: 100%;
    padding-bottom: 35px;
    padding-top: 40px;
}
.youquanyi-news-list .news-box{
    margin: auto;
    width: 1420px;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    /* box-shadow: 0 0 15px rgba(0,0,0,0.05); */
    border-radius: 8px;
    background-color: #fff;
}

/* 左侧分类菜单 */
.youquanyi-news-list .news-box .news-left{
    width: 252px;
    background-color: #f7f7f7;
    border-radius: 8px 0 0 8px;
    box-shadow: 2px 0 10px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.youquanyi-news-list .news-box .news-left::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(74, 144, 226, 0.05), rgba(74, 144, 226, 0));
    z-index: 0;
    pointer-events: none;
}

.youquanyi-news-list .news-box .news-left .news-category-title {
    padding: 15px 0;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    border-bottom: 1px solid #eee;
    background: linear-gradient(to right, #f7f7f7, #f0f0f0);
    border-radius: 8px 0 0 0;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.youquanyi-news-list .news-box .news-left .news-category-title:hover {
    background: linear-gradient(to right, #e6f0fa, #f0f0f0);
}

.youquanyi-news-list .news-box .news-left .news-category-title i {
    margin-right: 5px;
    color: #171717;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.youquanyi-news-list .news-box .news-left li {
    height: 48px;
    display: flex;
    align-items: center;
    font-size: 16px;
    justify-content: center;
    font-weight: bold;
    cursor: pointer;
    color: #595959;
    transition: all 0.3s ease;

    position: relative;
    z-index: 1;
    overflow: hidden;
    margin: 10px;
}

.youquanyi-news-list .news-box .news-left li::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.5s ease;
}

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

.youquanyi-news-list .news-box .news-left li i{
    font-weight: bold;
    font-size: 16px;
    padding-right: 5px;
    color: #4A90E2;
    transition: all 0.3s ease;
}

.youquanyi-news-list .news-box .news-left li:hover i {
    transform: rotate(15deg);
}

.youquanyi-news-list .news-box .news-left li:hover {
    color: #ffffff;
    background: linear-gradient(to right, #4acce2, #79bcff);
    box-shadow: 0 2px 8px rgba(74, 144, 226, 0.3);
    animation: selectedItem 0.5s ease;
    border-radius: 5px;
    margin: 10px;
}

.youquanyi-news-list .news-box .news-left .hover-effect {
    color: #ffffff;
    background: linear-gradient(to right, #4acce2, #79bcff);
    box-shadow: 0 2px 8px rgba(74, 144, 226, 0.3);
    animation: selectedItem 0.5s ease;
    border-radius: 5px;
    margin: 10px;
}

@keyframes selectedItem {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(10px);
    }
    100% {
        transform: translateX(5px);
    }
}

.youquanyi-news-list .news-box .news-left li:first-child {
    border-top: 0;
}

.youquanyi-news-list .news-box .news-left li:last-child {
    border-bottom: 0;
}

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

.youquanyi-news-list .news-box .news-right .news-list-header {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
    position: relative;
}

.youquanyi-news-list .news-box .news-right .news-list-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 123px;
    height: 2px;
    background: linear-gradient(to right, #4A90E2, #7ed0ff, #deadff);
    border-radius: 3px;
}

.youquanyi-news-list .news-box .news-right .news-list-header h2 {
    font-size: 22px;
    color: #333;
    margin: 0;
    display: flex;
    align-items: center;
}

.youquanyi-news-list .news-box .news-right .news-list-header h2 i {
    margin-right: 10px;
    color: #4A90E2;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}

.youquanyi-news-list .news-box .news-right .box {
    height: auto;
    box-sizing: border-box;
    margin-bottom: 25px;
    /* border-bottom: 1px solid #ebebeb; */
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.youquanyi-news-list .news-box .news-right .box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.youquanyi-news-list .news-box .news-right .box_content {
    display: flex;
    height: auto;
    box-sizing: border-box;
    padding: 15px;
}

.youquanyi-news-list .news-box .news-right .box_content .image {
    position: relative;
    width: 220px;
    height: 150px;
    overflow: hidden;
    border-radius: 5px;
}

.youquanyi-news-list .news-box .news-right .box_content .image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 70%, rgba(0,0,0,0.1) 100%);
    z-index: 1;
}

.youquanyi-news-list .news-box .news-right .box_content .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    transition: transform 0.5s ease;
}

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

.youquanyi-news-list .news-box .news-right .box_content .matter {
    padding: 0 20px;
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
}

.youquanyi-news-list .news-box .news-right .box_content .matter .matter_title {
    font-size: 20px;
    padding-top: 5px;
    margin-bottom: 15px;
    text-align: left;
    color: #333;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    font-weight: bold;
    transition: color 0.3s ease;
}

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

.youquanyi-news-list .news-box .news-right .box_content .matter .matter_title .sale-tag-my{
    color: #ff4d4f;
    font-size: 14px;
    margin-right: 5px;
    animation: blink 1.5s infinite;
    display: inline-flex;
    align-items: center;
}

.youquanyi-news-list .news-box .news-right .box_content .matter .matter_title .sale-tag-my i {
    margin-right: 3px;
    color: #ff4d4f;
    animation: none;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.youquanyi-news-list .news-box .news-right .box_content .matter_article {
    text-align: left;
    height: 77px;
    color: #666;
    overflow: hidden;
    line-height: 24px;
    text-indent: 30px;
    /* margin-bottom: -7px; */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.youquanyi-news-list .news-box .news-right .box_content .matter_tag {
    position: relative;
    left: 0;
    bottom: 0;
    color: #999;
    font-size: 14px;
    display: flex;
    align-items: center;
    margin-top: auto;
}

.youquanyi-news-list .news-box .news-right .box_content .matter_tag i {
    background-color: #e2e6ff;
    padding: 4px 8px;
    border-radius: 4px;
    margin-right: 15px;
    color: #4A90E2;
    font-style: normal;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.youquanyi-news-list .news-box .news-right .box_content .matter_tag i i {
    margin-right: 5px;
    background: none;
    padding: 0;
    color: #4A90E2;
    animation: none;
}

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

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

.youquanyi-news-list .news-box .news-right .box_content .matter_tag .news-date {
    color: #999;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.youquanyi-news-list .news-box .news-right .box_content .matter_tag .news-date i {
    margin-right: 5px;
    background: none;
    padding: 0;
    color: #999;
    animation: none;
}

.youquanyi-news-list .news-box .news-right .box:hover .matter_tag .news-date {
    color: #666;
}

.youquanyi-news-list .news-box .news-right .box:hover .matter_tag .news-date i {
    color: #666;
}

.youquanyi-news-list .news-box .news-right .box .box:nth-child(2) {
    padding-bottom: 0;
}

.youquanyi-news-list .news-box .title{
    margin: auto 0;
    overflow: hidden;
    font-size: 32px;
    color: #4d4d4d;
    margin-bottom: 9px;
    padding: 20px;
    border-bottom: 1px solid #dbdbdb;
}

.youquanyi-news-list .news-box .title i{
    font-size: 32px;
    color: #4d4d4d;
    padding-right: 10px;
}

.nonews{
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top:80px;
    padding-bottom:20px;
    animation: fadeIn 0.8s ease;
}

.nonews-msg{
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom:50px;
    font-size: 18px;
    color: #6a6a6a;
    animation: fadeIn 1s ease;
}

/*
文章浏览*/
.youquanyi-news-detail {
    margin: 0;
    width: 100%;
    padding-top: 30px;
    overflow: hidden;
}
.youquanyi-news-detail .detail-box{
    margin: auto;
    width: 1420px;
    overflow: hidden;
    background-color: #fff;
    border-radius: 8px;
    /* box-shadow: 0 0 15px rgba(0,0,0,0.05); */
}
.youquanyi-news-detail .detail-box .title{
    margin: auto 0;
    overflow: hidden;
    font-size: 32px;
    padding: 40px 20px 20px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: PingFang SC;
    font-weight: 900;
    color: #333;
    text-align: center;
    position: relative;
}
.youquanyi-news-detail .detail-box .title i {
    margin-right: 10px;
    color: #4A90E2;
    font-size: 28px;
    animation: pulse 2s infinite;
}
.youquanyi-news-detail .detail-box .detail-box-head{
    margin: auto 0;
    overflow: hidden;
    font-size: 14px;
    padding-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #efeded;
    color: #a8a8a8;
    flex-wrap: wrap;
}
.youquanyi-news-detail .detail-box .detail-box-head a:link{
    color: #a8a8a8;
    padding-right: 5px;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}
.youquanyi-news-detail .detail-box .detail-box-head a:hover{
    color: #4A90E2;
}
.youquanyi-news-detail .detail-box .detail-box-head a i {
    margin-right: 5px;
    color: #4A90E2;
}
.youquanyi-news-detail .detail-box .detail-box-head .news-date {
    display: inline-flex;
    align-items: center;
    margin-left: 15px;
}
.youquanyi-news-detail .detail-box .detail-box-head .news-date i {
    margin-right: 5px;
    color: #999;
}
.youquanyi-news-detail .detail-box .content{
    margin: auto 0;
    overflow: hidden;
    padding: 20px 50px;
    line-height: 1.8;
    color: #333;
}
.youquanyi-news-detail .detail-box .content p {
    color: rgb(111, 111, 111);
    font-size: 18px;
    line-height: 44px;
    text-indent: 42px;
    margin-bottom: 15px;
}
.youquanyi-news-detail .detail-box .content img{
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    border-radius: 5px;
    margin: 10px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}
.youquanyi-news-detail .detail-box .content img:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

/* 文章底部区域 */
.youquanyi-news-detail .detail-box .detail-box-footer {
    padding: 20px 50px 40px;
    border-top: 1px solid #efeded;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    color: #666;
    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;
    margin: 10px 0;
}

.youquanyi-news-detail .detail-box .detail-box-footer i {
    margin-right: 8px;
    color: #4A90E2;
}

.youquanyi-news-detail .detail-box .detail-box-footer .tag-item {
    background-color: #e2e6ff;
    padding: 4px 10px;
    border-radius: 4px;
    margin-left: 10px;
    color: #4A90E2;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.youquanyi-news-detail .detail-box .detail-box-footer .tag-item i {
    margin-right: 5px;
    color: #4A90E2;
}

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

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

.youquanyi-news-detail .detail-box .detail-box-footer .share-item {
    margin-left: 15px;
    color: #666;
    font-size: 18px;
    transition: all 0.3s ease;
}

.youquanyi-news-detail .detail-box .detail-box-footer .share-item:hover {
    transform: scale(1.2);
}

.youquanyi-news-detail .detail-box .detail-box-footer .share-item:nth-child(1) {
    color: #07C160;
}

.youquanyi-news-detail .detail-box .detail-box-footer .share-item:nth-child(2) {
    color: #E6162D;
}

.youquanyi-news-detail .detail-box .detail-box-footer .share-item:nth-child(3) {
    color: #12B7F5;
}

/* 响应式设计 */
@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%;
        border-radius: 8px 8px 0 0;
    }
    .youquanyi-news-list .news-box .news-right {
        width: 100%;
    }
    .youquanyi-news-list .news-box .news-right .box_content {
        flex-direction: column;
    }
    .youquanyi-news-list .news-box .news-right .box_content .image {
        width: 100%;
        height: 200px;
        margin-bottom: 15px;
    }
    .youquanyi-news-list .news-box .news-right .box_content .matter {
        padding: 0;
    }
    .youquanyi-news-detail .detail-box .title {
        font-size: 24px;
    }
    .youquanyi-news-detail .detail-box .content {
        padding: 20px;
    }
    .youquanyi-news-detail .detail-box .detail-box-footer {
        padding: 20px;
        flex-direction: column;
    }
    .youquanyi-news-detail .detail-box .detail-box-footer .article-tags,
    .youquanyi-news-detail .detail-box .detail-box-footer .article-share {
        margin-bottom: 15px;
    }
}

/* 微信二维码样式 */
.weixin-qrcode-container {
    padding: 20px;
    text-align: center;
}
.qrcode-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}
.qrcode-img {
    display: inline-block;
    margin: 0 auto;
    padding: 10px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.qrcode-img img {
    display: block;
    width: 200px;
    height: 200px;
}
.qrcode-tips {
    margin-top: 15px;
    font-size: 14px;
    color: #666;
}