@charset "UTF-8";

.wjs-news-banner {
    background: linear-gradient(135deg, #1a237e 0%, #3949ab 100%);
    padding: 120px 0 60px;
    color: #ffffff;
    text-align: center;
}

.wjs-news-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 14px;
}

.wjs-news-breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.wjs-news-breadcrumb a:hover {
    color: #ff9800;
}

.wjs-news-breadcrumb i {
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.5);
}

.wjs-news-breadcrumb span {
    color: #ff9800;
}

.wjs-news-banner-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.wjs-news-banner-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
}

.wjs-news-content {
    padding: 60px 0;
    background: #f8f9fa;
}

.wjs-news-content .wjs-container {
    display: flex;
    gap: 40px;
}

.wjs-news-sidebar {
    width: 280px;
    flex-shrink: 0;
}

.wjs-news-category,
.wjs-news-hot,
.wjs-news-tags {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.wjs-news-category h3,
.wjs-news-hot h3,
.wjs-news-tags h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a237e;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #ff9800;
    position: relative;
}

.wjs-news-category h3::after,
.wjs-news-hot h3::after,
.wjs-news-tags h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 30px;
    height: 2px;
    background: #1a237e;
}

.wjs-news-category ul {
    list-style: none;
}

.wjs-news-category li {
    margin-bottom: 12px;
}

.wjs-news-category li:last-child {
    margin-bottom: 0;
}

.wjs-news-category li a {
    display: flex;
    align-items: center;
    color: #333;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 15px;
}

.wjs-news-category li a:hover {
    background: #f5f5f5;
    color: #1a237e;
}

.wjs-news-category li.active a {
    background: linear-gradient(135deg, #1a237e, #3949ab);
    color: #ffffff;
}

.wjs-news-category li a i {
    margin-right: 10px;
    font-size: 16px;
}

.wjs-news-category li.active a i {
    color: #ff9800;
}

.wjs-news-hot ul {
    list-style: none;
}

.wjs-news-hot li {
    margin-bottom: 15px;
}

.wjs-news-hot li:last-child {
    margin-bottom: 0;
}

.wjs-news-hot li a {
    display: flex;
    align-items: flex-start;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.wjs-news-hot li a:hover {
    color: #1a237e;
}

.wjs-news-hot-num {
    width: 30px;
    height: 30px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    margin-right: 12px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.wjs-news-hot li:nth-child(1) .wjs-news-hot-num {
    background: #ff9800;
    color: #ffffff;
}

.wjs-news-hot li:nth-child(2) .wjs-news-hot-num {
    background: #ffb74d;
    color: #ffffff;
}

.wjs-news-hot li:nth-child(3) .wjs-news-hot-num {
    background: #ffca28;
    color: #333;
}

.wjs-news-hot-content h4 {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
    line-height: 1.5;
}

.wjs-news-hot-content span {
    font-size: 12px;
    color: #999;
}

.wjs-news-tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.wjs-news-tag {
    padding: 8px 16px;
    background: #f5f5f5;
    border-radius: 20px;
    color: #666;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s ease;
}

.wjs-news-tag:hover {
    background: linear-gradient(135deg, #1a237e, #3949ab);
    color: #ffffff;
}

.wjs-news-main {
    flex: 1;
}

.wjs-news-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.wjs-news-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.wjs-news-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.wjs-news-card-image {
    width: 350px;
    height: 220px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.wjs-news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.wjs-news-card-category {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 15px;
    background: linear-gradient(135deg, #ff9800, #f57c00);
    color: #ffffff;
    font-size: 12px;
    font-weight: 500;
    border-radius: 20px;
}

.wjs-news-card-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.wjs-news-card-content h2 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
}

.wjs-news-card-content h2 a {
    color: #1a237e;
    text-decoration: none;
    transition: color 0.3s ease;
}

.wjs-news-card-content h2 a:hover {
    color: #ff9800;
}

.wjs-news-card-content p {
    color: #666;
    font-size: 15px;
    line-height: 1.8;
    flex: 1;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.wjs-news-card-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 13px;
    color: #999;
}

.wjs-news-card-meta span {
    display: flex;
    align-items: center;
}

.wjs-news-card-meta i {
    margin-right: 6px;
}

.wjs-news-pagination {
    margin-top: 40px;
    text-align: center;
}

.wjs-news-pagination ul {
    display: inline-flex;
    list-style: none;
    gap: 5px;
}

.wjs-news-pagination li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    color: #666;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
}

.wjs-news-pagination li a:hover {
    border-color: #1a237e;
    color: #1a237e;
}

.wjs-news-pagination li.active a {
    background: linear-gradient(135deg, #1a237e, #3949ab);
    border-color: #1a237e;
    color: #ffffff;
}

.wjs-news-pagination li.disabled a {
    opacity: 0.5;
    pointer-events: none;
    cursor: not-allowed;
}

@media (max-width: 1024px) {
    .wjs-news-content .wjs-container {
        flex-direction: column;
    }
    
    .wjs-news-sidebar {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .wjs-news-category,
    .wjs-news-hot,
    .wjs-news-tags {
        flex: 1;
        min-width: 250px;
    }
    
    .wjs-news-card {
        flex-direction: column;
    }
    
    .wjs-news-card-image {
        width: 100%;
        height: 250px;
    }
}

@media (max-width: 768px) {
    .wjs-news-banner-content h1 {
        font-size: 32px;
    }
    
    .wjs-news-banner-content p {
        font-size: 16px;
    }
    
    .wjs-news-content {
        padding: 40px 0;
    }
    
    .wjs-news-sidebar {
        flex-direction: column;
    }
    
    .wjs-news-category,
    .wjs-news-hot,
    .wjs-news-tags {
        min-width: 100%;
    }
    
    .wjs-news-card-content {
        padding: 20px;
    }
    
    .wjs-news-card-content h2 {
        font-size: 18px;
    }
    
    .wjs-news-card-content p {
        font-size: 14px;
    }
    
    .wjs-news-pagination li a {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }
}

.wjs-news-detail {
    padding: 60px 0;
    background: #f8f9fa;
}

.wjs-news-detail .wjs-container {
    display: flex;
    gap: 40px;
}

.wjs-news-detail-main {
    flex: 1;
    background: #ffffff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.wjs-news-detail-header h1 {
    font-size: 32px;
    font-weight: 700;
    color: #1a237e;
    line-height: 1.4;
    margin-bottom: 20px;
}

.wjs-news-detail-meta {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
    font-size: 14px;
    color: #999;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.wjs-news-detail-meta span {
    display: flex;
    align-items: center;
}

.wjs-news-detail-meta i {
    margin-right: 6px;
}

.wjs-news-detail-category {
    padding: 6px 16px;
    background: linear-gradient(135deg, #ff9800, #f57c00);
    color: #ffffff !important;
    border-radius: 20px;
    font-weight: 500;
}

.wjs-news-detail-content {
    padding: 30px 0;
}

.wjs-news-detail-image {
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
}

.wjs-news-detail-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.wjs-news-detail-content p {
    font-size: 16px;
    line-height: 2;
    color: #333;
    margin-bottom: 20px;
    text-indent: 2em;
}

.wjs-news-detail-content h2 {
    font-size: 22px;
    font-weight: 600;
    color: #1a237e;
    margin: 30px 0 15px;
    padding-left: 15px;
    border-left: 4px solid #ff9800;
}

.wjs-news-detail-content ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.wjs-news-detail-content ul li {
    font-size: 16px;
    line-height: 2;
    color: #333;
    margin-bottom: 10px;
}

.wjs-news-detail-content ul li strong {
    color: #1a237e;
}

.wjs-news-detail-content a {
    color: #ff9800;
    text-decoration: none;
    font-weight: 600;
}

.wjs-news-detail-content a:hover {
    text-decoration: underline;
}

.wjs-news-detail-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 20px 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.wjs-news-detail-tags-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.wjs-news-detail-share {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 0;
}

.wjs-news-detail-share-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.wjs-news-detail-share-buttons {
    display: flex;
    gap: 10px;
}

.wjs-share-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f5f5f5;
    color: #666;
    transition: all 0.3s ease;
    font-size: 18px;
}

.wjs-share-btn:hover {
    background: linear-gradient(135deg, #1a237e, #3949ab);
    color: #ffffff;
}

.wjs-news-detail-nav {
    display: flex;
    justify-content: space-between;
    padding: 25px 0;
    border-top: 1px solid #f0f0f0;
    gap: 20px;
}

.wjs-news-detail-nav-prev,
.wjs-news-detail-nav-next {
    flex: 1;
}

.wjs-news-detail-nav a {
    display: flex;
    align-items: center;
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.wjs-news-detail-nav a:hover {
    color: #ff9800;
}

.wjs-news-detail-nav-prev a {
    flex-direction: row;
}

.wjs-news-detail-nav-next a {
    flex-direction: row-reverse;
}

.wjs-news-detail-nav i {
    margin: 0 15px;
    color: #ccc;
    font-size: 20px;
}

.wjs-news-detail-nav span {
    font-size: 12px;
    color: #999;
    display: block;
}

.wjs-news-detail-nav-title {
    font-size: 14px !important;
    color: #333 !important;
    margin-top: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.wjs-news-detail-sidebar {
    width: 280px;
    flex-shrink: 0;
}

.wjs-news-related {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.wjs-news-related h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a237e;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #ff9800;
    position: relative;
}

.wjs-news-related h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 30px;
    height: 2px;
    background: #1a237e;
}

.wjs-news-related ul {
    list-style: none;
}

.wjs-news-related li {
    margin-bottom: 15px;
}

.wjs-news-related li:last-child {
    margin-bottom: 0;
}

.wjs-news-related li a {
    display: flex;
    align-items: center;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.wjs-news-related li a:hover {
    color: #ff9800;
}

.wjs-news-related li a i {
    margin-right: 10px;
    color: #ff9800;
    font-size: 12px;
}

.wjs-news-service {
    background: linear-gradient(135deg, #1a237e, #3949ab);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(26, 35, 126, 0.3);
}

.wjs-news-service h3 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.wjs-news-service-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.wjs-news-service-item:last-child {
    border-bottom: none;
}

.wjs-news-service-item i {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff9800;
    font-size: 20px;
}

.wjs-news-service-item div {
    display: flex;
    flex-direction: column;
}

.wjs-news-service-item div span:first-child {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.wjs-news-service-item div span:last-child,
.wjs-news-service-item div a {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
}

.wjs-news-service-item div a:hover {
    color: #ff9800;
}

@media (max-width: 1024px) {
    .wjs-news-detail .wjs-container {
        flex-direction: column;
    }
    
    .wjs-news-detail-sidebar {
        width: 100%;
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
    }
    
    .wjs-news-detail-sidebar > div {
        flex: 1;
        min-width: 250px;
    }
}

@media (max-width: 768px) {
    .wjs-news-detail {
        padding: 40px 0;
    }
    
    .wjs-news-detail-main {
        padding: 25px;
    }
    
    .wjs-news-detail-header h1 {
        font-size: 24px;
    }
    
    .wjs-news-detail-meta {
        gap: 15px;
    }
    
    .wjs-news-detail-image img {
        height: 250px;
    }
    
    .wjs-news-detail-content p {
        font-size: 15px;
    }
    
    .wjs-news-detail-content h2 {
        font-size: 20px;
    }
    
    .wjs-news-detail-nav {
        flex-direction: column;
        gap: 15px;
    }
    
    .wjs-news-detail-sidebar {
        flex-direction: column;
    }
    
    .wjs-news-detail-sidebar > div {
        min-width: 100%;
    }
}