.jiayou-news-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #065f46 0%, #059669 100%);
    overflow: hidden;
}

.jiayou-news-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/57459214.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
}

.jiayou-news-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(6, 95, 70, 0.8);
}

.jiayou-news-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #ffffff;
    padding: 0 20px;
}

.jiayou-news-hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.jiayou-news-hero-description {
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

.jiayou-news-breadcrumb-section {
    padding: 15px 0;
    background: #f8fafc;
    border-bottom: 1px solid #e5e7eb;
}

.jiayou-news-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #6b7280;
}

.jiayou-news-breadcrumb a {
    color: #065f46;
    text-decoration: none;
    transition: color 0.3s ease;
}

.jiayou-news-breadcrumb a:hover {
    color: #10b981;
    text-decoration: underline;
}

.jiayou-news-breadcrumb i {
    font-size: 0.8rem;
    color: #d1d5db;
}

.jiayou-news-breadcrumb span:last-child {
    color: #1f2937;
    font-weight: 500;
}

.jiayou-news-content {
    padding: 60px 0;
    background: #ffffff;
}

.jiayou-news-content .jiayou-container {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 50px;
}

.jiayou-news-left {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.jiayou-news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.jiayou-news-card-link {
    display: contents;
    text-decoration: none;
}

.jiayou-news-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.jiayou-news-card-link:hover .jiayou-news-card {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.jiayou-news-card.featured {
    grid-column: span 2;
    display: flex;
}

.jiayou-news-card.featured .jiayou-news-image {
    flex: 1;
    min-width: 50%;
}

.jiayou-news-card.featured .jiayou-news-info {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.jiayou-news-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.jiayou-news-card-link:hover .jiayou-news-image img {
    transform: scale(1.1);
}

.jiayou-news-category {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 16px;
    background: #065f46;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 20px;
    z-index: 2;
}

.jiayou-news-date {
    position: absolute;
    bottom: 15px;
    left: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 15px;
    background: rgba(255, 255, 255, 0.95);
    color: #065f46;
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 25px;
    z-index: 2;
}

.jiayou-news-info {
    padding: 25px;
}

.jiayou-news-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.jiayou-news-card-link:hover .jiayou-news-title {
    color: #065f46;
}

.jiayou-news-card.featured .jiayou-news-title {
    font-size: 1.8rem;
}

.jiayou-news-excerpt {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.jiayou-news-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.jiayou-news-author,
.jiayou-news-comments {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: #9ca3af;
}

.jiayou-news-author i,
.jiayou-news-comments i {
    font-size: 0.8rem;
}

.jiayou-news-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #065f46;
    text-decoration: none;
    transition: all 0.3s ease;
}

.jiayou-news-read-more:hover {
    gap: 12px;
}

.jiayou-news-pagination {
    text-align: center;
}

.jiayou-news-pagination-list {
    display: inline-flex;
    list-style: none;
    gap: 8px;
}

.jiayou-news-pagination-item {
    padding: 12px 18px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.jiayou-news-pagination-item a {
    text-decoration: none;
    color: #6b7280;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.jiayou-news-pagination-item.active {
    background: #065f46;
}

.jiayou-news-pagination-item.active a {
    color: #ffffff;
}

.jiayou-news-pagination-item:hover:not(.active) {
    background: #ecfdf5;
}

.jiayou-news-pagination-item:hover:not(.active) a {
    color: #065f46;
}

.jiayou-news-pagination-item.disabled {
    opacity: 0.5;
    pointer-events: none;
}

.jiayou-news-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.jiayou-news-sidebar-widget {
    background: #ffffff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.jiayou-news-sidebar-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #d1fae5;
}

.jiayou-news-category-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.jiayou-news-category-item a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    text-decoration: none;
    color: #4b5563;
    border-radius: 8px;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.jiayou-news-category-name {
    flex: 1;
    text-align: left;
}

.jiayou-news-category-item.active a {
    background: #d1fae5;
    color: #065f46;
}

.jiayou-news-category-item a:hover:not(.active) {
    background: #f3f4f6;
    color: #065f46;
}

.jiayou-news-category-count {
    padding: 3px 10px;
    background: #e5e7eb;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 500;
}

.jiayou-news-category-item.active .jiayou-news-category-count {
    background: #065f46;
    color: #ffffff;
}

.jiayou-news-latest-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.jiayou-news-latest-item a {
    display: flex;
    gap: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.jiayou-news-latest-item a:hover {
    gap: 20px;
}

.jiayou-news-latest-image {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.jiayou-news-latest-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.jiayou-news-latest-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}

.jiayou-news-latest-date {
    font-size: 0.8rem;
    color: #9ca3af;
}

.jiayou-news-latest-title {
    font-size: 0.9rem;
    font-weight: 500;
    color: #1f2937;
    line-height: 1.4;
}

.jiayou-news-latest-item a:hover .jiayou-news-latest-title {
    color: #065f46;
}

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

.jiayou-news-tag {
    display: inline-block;
    padding: 8px 15px;
    background: #f3f4f6;
    color: #4b5563;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.jiayou-news-tag:hover {
    background: #d1fae5;
    color: #065f46;
}

.jiayou-news-newsletter-text {
    font-size: 0.95rem;
    color: #6b7280;
    margin-bottom: 20px;
    line-height: 1.5;
}

.jiayou-news-newsletter-form {
    display: flex;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.jiayou-news-newsletter-form:focus-within {
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.jiayou-news-newsletter-input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    color: #1f2937;
    background: transparent;
    outline: none;
}

.jiayou-news-newsletter-input::placeholder {
    color: #9ca3af;
}

.jiayou-news-newsletter-btn {
    width: 48px;
    height: 48px;
    background: #065f46;
    border: none;
    color: #ffffff;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.jiayou-news-newsletter-btn:hover {
    background: #10b981;
}

@media (max-width: 1024px) {
    .jiayou-news-content .jiayou-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .jiayou-news-card.featured {
        flex-direction: column;
    }

    .jiayou-news-card.featured .jiayou-news-image {
        min-width: 100%;
        height: 300px;
    }

    .jiayou-news-card.featured .jiayou-news-info {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .jiayou-news-hero {
        min-height: 350px;
    }

    .jiayou-news-hero-title {
        font-size: 2.2rem;
    }

    .jiayou-news-grid {
        grid-template-columns: 1fr;
    }

    .jiayou-news-card.featured .jiayou-news-title {
        font-size: 1.5rem;
    }

    .jiayou-news-image {
        height: 220px;
    }
}

@media (max-width: 480px) {
    .jiayou-news-hero-title {
        font-size: 1.8rem;
    }

    .jiayou-news-info {
        padding: 20px;
    }

    .jiayou-news-card.featured .jiayou-news-info {
        padding: 20px;
    }
}

.jiayou-show-content {
    padding: 60px 0;
    background: #ffffff;
}

.jiayou-show-content .jiayou-container {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 50px;
}

.jiayou-show-left {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.jiayou-show-article {
    background: #ffffff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.jiayou-show-header {
    margin-bottom: 30px;
}

.jiayou-show-category {
    margin-bottom: 15px;
}

.jiayou-show-category-tag {
    display: inline-block;
    padding: 8px 20px;
    background: #065f46;
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.jiayou-show-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.4;
    margin-bottom: 20px;
}

.jiayou-show-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    align-items: center;
}

.jiayou-show-author,
.jiayou-show-date,
.jiayou-show-comments,
.jiayou-show-views {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #6b7280;
}

.jiayou-show-author i,
.jiayou-show-date i,
.jiayou-show-comments i,
.jiayou-show-views i {
    font-size: 0.85rem;
    color: #10b981;
}

.jiayou-show-social {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 0;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 30px;
}

.jiayou-show-social-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1f2937;
}

.jiayou-show-social-links {
    display: flex;
    gap: 10px;
}

.jiayou-show-social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
    border-radius: 50%;
    color: #4b5563;
    text-decoration: none;
    transition: all 0.3s ease;
}

.jiayou-show-social-link:hover {
    background: #065f46;
    color: #ffffff;
    transform: translateY(-3px);
}

.jiayou-show-image {
    margin-bottom: 30px;
    border-radius: 15px;
    overflow: hidden;
}

.jiayou-show-image img {
    width: 100%;
    height: auto;
    display: block;
}

.jiayou-show-image-caption {
    padding: 15px 20px;
    background: #f8fafc;
    font-size: 0.9rem;
    color: #6b7280;
    font-style: italic;
}

.jiayou-show-body {
    margin-bottom: 30px;
}

.jiayou-show-paragraph {
    font-size: 1.05rem;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.jiayou-show-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin: 35px 0 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid #d1fae5;
}

.jiayou-show-quote {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    padding: 30px;
    border-radius: 15px;
    margin: 25px 0;
    border-left: 5px solid #065f46;
}

.jiayou-show-quote i {
    font-size: 2.5rem;
    color: #10b981;
    margin-bottom: 15px;
    display: block;
}

.jiayou-show-quote p {
    font-size: 1.1rem;
    font-style: italic;
    color: #065f46;
    line-height: 1.7;
    font-weight: 500;
}

.jiayou-show-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.jiayou-show-list li {
    padding: 12px 0 12px 35px;
    position: relative;
    font-size: 1.05rem;
    color: #4b5563;
    line-height: 1.6;
    border-bottom: 1px solid #f3f4f6;
}

.jiayou-show-list li:last-child {
    border-bottom: none;
}

.jiayou-show-list li i {
    position: absolute;
    left: 0;
    color: #10b981;
    font-size: 1.1rem;
}

.jiayou-show-highlight {
    background: #f8fafc;
    border-radius: 15px;
    padding: 30px;
    margin: 25px 0;
}

.jiayou-show-highlight-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 20px;
}

.jiayou-show-highlight-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.jiayou-show-highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: #ffffff;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.jiayou-show-highlight-item:hover {
    background: #ecfdf5;
    transform: translateY(-2px);
}

.jiayou-show-highlight-item i {
    color: #fbbf24;
    font-size: 1.1rem;
}

.jiayou-show-highlight-item span {
    font-size: 0.95rem;
    font-weight: 500;
    color: #1f2937;
}

.jiayou-show-tags {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px 0;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 30px;
}

.jiayou-show-tags-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1f2937;
}

.jiayou-show-tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.jiayou-show-tag {
    display: inline-block;
    padding: 8px 18px;
    background: #f3f4f6;
    color: #4b5563;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.jiayou-show-tag:hover {
    background: #d1fae5;
    color: #065f46;
}

.jiayou-show-navigation {
    display: flex;
    justify-content: space-between;
    padding: 25px 0;
    border-top: 1px solid #e5e7eb;
    margin-bottom: 40px;
}

.jiayou-show-nav-prev,
.jiayou-show-nav-next {
    flex: 1;
}

.jiayou-show-nav-prev a,
.jiayou-show-nav-next a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #4b5563;
    transition: all 0.3s ease;
}

.jiayou-show-nav-prev a:hover,
.jiayou-show-nav-next a:hover {
    color: #065f46;
}

.jiayou-show-nav-prev a:hover i,
.jiayou-show-nav-next a:hover i {
    transform: translateX(-5px);
}

.jiayou-show-nav-next a:hover i {
    transform: translateX(5px);
}

.jiayou-show-nav-prev {
    padding-right: 20px;
}

.jiayou-show-nav-next {
    padding-left: 20px;
    justify-content: flex-end;
}

.jiayou-show-nav-next a {
    flex-direction: row-reverse;
}

.jiayou-show-nav-label {
    font-size: 0.85rem;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.jiayou-show-nav-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1f2937;
    line-height: 1.4;
}

.jiayou-show-nav-prev a:hover .jiayou-show-nav-title,
.jiayou-show-nav-next a:hover .jiayou-show-nav-title {
    color: #065f46;
}

.jiayou-show-comments-section {
    padding-top: 30px;
    border-top: 1px solid #e5e7eb;
}

.jiayou-show-comments-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 30px;
}

.jiayou-show-comments-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.jiayou-show-comment-item {
    display: flex;
    gap: 15px;
    padding: 25px;
    background: #f8fafc;
    border-radius: 15px;
}

.jiayou-show-comment-avatar {
    flex-shrink: 0;
}

.jiayou-show-comment-avatar i {
    font-size: 45px;
    color: #9ca3af;
}

.jiayou-show-comment-content {
    flex: 1;
}

.jiayou-show-comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.jiayou-show-comment-author {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
}

.jiayou-show-comment-date {
    font-size: 0.85rem;
    color: #9ca3af;
}

.jiayou-show-comment-text {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 15px;
}

.jiayou-show-comment-reply {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 15px;
    background: transparent;
    border: 1px solid #d1d5db;
    border-radius: 20px;
    color: #6b7280;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.jiayou-show-comment-reply:hover {
    background: #065f46;
    border-color: #065f46;
    color: #ffffff;
}

.jiayou-show-comment-form {
    background: #f8fafc;
    border-radius: 15px;
    padding: 30px;
}

.jiayou-show-comment-form-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 25px;
}

.jiayou-show-comment-form-group {
    margin-bottom: 20px;
}

.jiayou-show-comment-form-group label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

.jiayou-show-comment-form-group input,
.jiayou-show-comment-form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    color: #1f2937;
    background: #ffffff;
    outline: none;
    transition: all 0.3s ease;
}

.jiayou-show-comment-form-group input:focus,
.jiayou-show-comment-form-group textarea:focus {
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.jiayou-show-comment-form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.jiayou-show-comment-submit {
    width: 100%;
    padding: 15px;
    background: #065f46;
    border: none;
    border-radius: 10px;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.jiayou-show-comment-submit:hover {
    background: #10b981;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(16, 185, 129, 0.3);
}

.jiayou-show-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.jiayou-show-sidebar-widget {
    background: #ffffff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.jiayou-show-sidebar-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #d1fae5;
}

.jiayou-show-category-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.jiayou-show-category-item a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    text-decoration: none;
    color: #4b5563;
    border-radius: 8px;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.jiayou-show-category-name {
    flex: 1;
    text-align: left;
}

.jiayou-show-category-item.active a {
    background: #d1fae5;
    color: #065f46;
}

.jiayou-show-category-item a:hover:not(.active) {
    background: #f3f4f6;
    color: #065f46;
}

.jiayou-show-category-count {
    padding: 3px 10px;
    background: #e5e7eb;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 500;
}

.jiayou-show-category-item.active .jiayou-show-category-count {
    background: #065f46;
    color: #ffffff;
}

.jiayou-show-latest-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.jiayou-show-latest-item a {
    display: flex;
    gap: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.jiayou-show-latest-item a:hover {
    gap: 20px;
}

.jiayou-show-latest-image {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.jiayou-show-latest-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.jiayou-show-latest-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}

.jiayou-show-latest-date {
    font-size: 0.8rem;
    color: #9ca3af;
}

.jiayou-show-latest-title {
    font-size: 0.9rem;
    font-weight: 500;
    color: #1f2937;
    line-height: 1.4;
}

.jiayou-show-latest-item a:hover .jiayou-show-latest-title {
    color: #065f46;
}

.jiayou-show-tags-sidebar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.jiayou-show-tag-sidebar {
    display: inline-block;
    padding: 8px 15px;
    background: #f3f4f6;
    color: #4b5563;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.jiayou-show-tag-sidebar:hover {
    background: #d1fae5;
    color: #065f46;
}

.jiayou-show-related-products {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.jiayou-show-related-product {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: #f8fafc;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.jiayou-show-related-product:hover {
    background: #ecfdf5;
    transform: translateY(-2px);
}

.jiayou-show-related-product-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.jiayou-show-related-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.jiayou-show-related-product-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}

.jiayou-show-related-product-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1f2937;
}

.jiayou-show-related-product-price {
    font-size: 0.85rem;
    color: #10b981;
    font-weight: 500;
}

.jiayou-show-newsletter-text {
    font-size: 0.95rem;
    color: #6b7280;
    margin-bottom: 20px;
    line-height: 1.5;
}

.jiayou-show-newsletter-form {
    display: flex;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.jiayou-show-newsletter-form:focus-within {
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.jiayou-show-newsletter-input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    color: #1f2937;
    background: transparent;
    outline: none;
}

.jiayou-show-newsletter-input::placeholder {
    color: #9ca3af;
}

.jiayou-show-newsletter-btn {
    width: 48px;
    height: 48px;
    background: #065f46;
    border: none;
    color: #ffffff;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.jiayou-show-newsletter-btn:hover {
    background: #10b981;
}

@media (max-width: 1024px) {
    .jiayou-show-content .jiayou-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .jiayou-show-article {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .jiayou-show-title {
        font-size: 1.8rem;
    }

    .jiayou-show-meta {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .jiayou-show-highlight-grid {
        grid-template-columns: 1fr;
    }

    .jiayou-show-navigation {
        flex-direction: column;
        gap: 20px;
    }

    .jiayou-show-nav-prev,
    .jiayou-show-nav-next {
        padding: 0;
    }

    .jiayou-show-comment-item {
        flex-direction: column;
    }

    .jiayou-show-comment-avatar {
        align-self: flex-start;
    }
}

@media (max-width: 480px) {
    .jiayou-show-article {
        padding: 20px;
    }

    .jiayou-show-title {
        font-size: 1.5rem;
    }

    .jiayou-show-subtitle {
        font-size: 1.3rem;
    }

    .jiayou-show-social {
        flex-direction: column;
        align-items: flex-start;
    }
}
