.sunny-article-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.sunny-article-header {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.sunny-article-title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.4;
}

.sunny-article-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    color: #666;
    font-size: 14px;
}

.sunny-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #f8f9fa;
    padding: 6px 12px;
    border-radius: 6px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.sunny-category-tag {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
    padding: 6px 12px;
    border-radius: 6px;
    text-decoration: none;
    border: 1px solid rgba(255, 193, 7, 0.2);
    transition: all 0.3s ease;
    font-size: 13px;
}

.sunny-category-tag:hover {
    background: #ffc107;
    color: #333;
    border-color: #ffc107;
}

.sunny-article-content {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    color: #333;
    line-height: 1.8;
    font-size: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.sunny-article-content h1,
.sunny-article-content h2,
.sunny-article-content h3,
.sunny-article-content h4,
.sunny-article-content h5,
.sunny-article-content h6 {
    color: #333;
    margin: 25px 0 15px 0;
}

.sunny-article-content h2 {
    font-size: 22px;
    border-left: 4px solid #ffc107;
    padding-left: 15px;
}

.sunny-article-content h3 {
    font-size: 20px;
}

.sunny-article-content p {
    margin-bottom: 16px;
}

.sunny-article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.sunny-article-content blockquote {
    background: rgba(255, 193, 7, 0.05);
    border-left: 4px solid #ffc107;
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #666;
    border: 1px solid rgba(255, 193, 7, 0.1);
}

.sunny-article-content code {
    background: #f8f9fa;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    color: #e83e8c;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.sunny-article-content pre {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 20px 0;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.sunny-article-content pre code {
    background: none;
    padding: 0;
    border: none;
    color: #333;
}

.sunny-article-content ul,
.sunny-article-content ol {
    padding-left: 25px;
    margin-bottom: 16px;
}

.sunny-article-content li {
    margin-bottom: 8px;
}

.sunny-article-content a {
    color: #ffc107;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 193, 7, 0.3);
    transition: all 0.3s ease;
}

.sunny-article-content a:hover {
    color: #e0a800;
    border-bottom-color: #ffc107;
}

.sunny-article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.sunny-article-content table th,
.sunny-article-content table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.sunny-article-content table th {
    background: rgba(255, 193, 7, 0.1);
    color: #333;
    font-weight: 600;
    border-bottom: 2px solid #ffc107;
}

.sunny-article-actions {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.sunny-action-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 25px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #f8f9fa;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 14px;
}

.sunny-action-btn:hover {
    background: rgba(255, 193, 7, 0.1);
    border-color: #ffc107;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.15);
}

.sunny-like-btn {
    background: rgba(255, 193, 7, 0.1);
    border-color: #ffc107;
    color: #ffc107;
}

.sunny-like-btn:hover,
.sunny-like-btn.sunny-liked {
    background: #ffc107;
    color: #333;
    border-color: #ffc107;
}

.sunny-share-btn {
    background: rgba(255, 193, 7, 0.1);
    border-color: #ffc107;
    color: #ffc107;
}

.sunny-share-btn:hover {
    background: #ffc107;
    color: #333;
    border-color: #ffc107;
}

.sunny-collect-btn {
    background: rgba(255, 193, 7, 0.1);
    border-color: #ffc107;
    color: #ffc107;
}

.sunny-collect-btn:hover,
.sunny-collect-btn.sunny-collected {
    background: #ffc107;
    color: #333;
    border-color: #ffc107;
}

.sunny-article-navigation {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    gap: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.sunny-nav-item {
    flex: 1;
    text-align: center;
}

.sunny-nav-item a {
    display: block;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.sunny-nav-item a:hover {
    background: rgba(255, 193, 7, 0.1);
    border-color: #ffc107;
    color: #333;
    box-shadow: 0 2px 8px rgba(255, 193, 7, 0.1);
}

.sunny-nav-label {
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
}

.sunny-nav-title {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.sunny-nav-empty {
    color: #999;
    padding: 15px;
    display: block;
    font-size: 14px;
}

.sunny-related-articles {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 12px;
    padding: 25px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.sunny-related-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sunny-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}

.sunny-related-item {
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.sunny-related-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.sunny-related-link {
    display: flex;
    gap: 15px;
    padding: 15px;
    text-decoration: none;
    color: #333;
}

.sunny-related-image {
    flex: 0 0 80px;
    height: 60px;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.sunny-related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sunny-related-placeholder {
    color: #999;
    font-size: 20px;
}

.sunny-related-info {
    flex: 1;
}

.sunny-related-name {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 5px;
    line-height: 1.3;
}

.sunny-related-desc {
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sunny-related-meta {
    font-size: 12px;
    color: #999;
    display: flex;
    gap: 15px;
}

.sunny-share-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: all 0.3s ease;
}

.sunny-share-modal.sunny-show {
    display: flex;
    opacity: 1;
    align-items: center;
    justify-content: center;
}

.sunny-share-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.sunny-share-modal-content {
    position: relative;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.sunny-share-modal.sunny-show .sunny-share-modal-content {
    transform: scale(1);
}

.sunny-share-modal-header {
    padding: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
}

.sunny-share-modal-header h3 {
    color: #333;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.sunny-close-btn {
    background: none;
    border: none;
    color: #666;
    font-size: 18px;
    cursor: pointer;
    padding: 5px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.sunny-close-btn:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #333;
}

.sunny-share-modal-body {
    padding: 25px;
}

.sunny-share-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 25px;
}

.sunny-share-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px;
    border-radius: 8px;
    background: #f8f9fa;
    border: 1px solid rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.sunny-share-option:hover {
    background: rgba(255, 193, 7, 0.1);
    border-color: #ffc107;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(255, 193, 7, 0.1);
}

.sunny-share-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    transition: all 0.3s ease;
}

.sunny-share-icon.sunny-weibo {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
}

.sunny-share-icon.sunny-qq {
    background: linear-gradient(135deg, #12b7f5, #0e9fe5);
}

.sunny-share-icon.sunny-qzone {
    background: linear-gradient(135deg, #ffd93d, #ff9500);
}

.sunny-share-icon.sunny-copy {
    background: linear-gradient(135deg, #a8e6cf, #7fcdcd);
}

.sunny-share-option span {
    color: #333;
    font-size: 13px;
    font-weight: 500;
}

.sunny-share-link-box {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 20px;
}

.sunny-share-link-box label {
    display: block;
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}

.sunny-link-input-group {
    display: flex;
    gap: 10px;
}

.sunny-link-input-group input {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    background: #fff;
    color: #333;
    font-size: 13px;
    outline: none;
    transition: all 0.3s ease;
}

.sunny-link-input-group input:focus {
    border-color: #ffc107;
    box-shadow: 0 0 0 2px rgba(255, 193, 7, 0.1);
}

.sunny-link-input-group button {
    padding: 10px 16px;
    border: 1px solid #ffc107;
    border-radius: 6px;
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3```css s ease;
    white-space: nowrap;
}

.sunny-link-input-group button:hover {
    background: #ffc107;
    color: #333;
    border-color: #ffc107;
}

.sunny-share-toast {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 12px 20px;
    border-radius: 6px;
    z-index: 9999;
    display: none;
}

@media (max-width: 768px) {
    .sunny-article-container {
        padding: 0 15px;
    }

    .sunny-article-header {
        padding: 20px;
    }

    .sunny-article-title {
        font-size: 24px;
    }

    .sunny-article-meta {
        gap: 10px;
    }

    .sunny-article-content {
        padding: 25px;
        font-size: 15px;
    }

    .sunny-article-actions {
        padding: 20px;
        gap: 15px;
    }

    .sunny-action-btn {
        padding: 10px 16px;
        font-size: 13px;
    }

    .sunny-article-navigation {
        flex-direction: column;
        gap: 10px;
    }

    .sunny-related-articles {
        padding: 20px;
    }

    .sunny-share-modal-content {
        width: 95%;
        margin: 20px;
    }

    .sunny-share-options {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .sunny-share-modal-header,
    .sunny-share-modal-body {
        padding: 15px;
    }

    .sunny-link-input-group {
        flex-direction: column;
    }

    .sunny-link-input-group button {
        align-self: flex-start;
    }
}

.sunny-fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes likeAnimation {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.sunny-like-btn.animate {
    animation: likeAnimation 0.3s ease;
}


.sunny-breadcrumb {
    padding: 20px 0 12px 0;
    margin-bottom: 20px;
    position: relative;
}

.sunny-breadcrumb-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 20px;
    font-size: 14px;
    color: #333;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.sunny-breadcrumb a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sunny-breadcrumb a:hover {
    color: #ffc107;
}

.sunny-breadcrumb span {
    color: #ffc107;
    font-weight: 500;
}

.sunny-breadcrumb i {
    color: #ffc107;
    margin-right: 5px;
}


.sunny-article-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}


.sunny-article-header {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.sunny-article-title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.4;
}

.sunny-article-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    color: #666;
    font-size: 14px;
}

.sunny-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #f8f9fa;
    padding: 6px 12px;
    border-radius: 6px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.sunny-meta-item i {
    color: #ffc107;
}

.sunny-category-tag {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
    padding: 6px 12px;
    border-radius: 6px;
    text-decoration: none;
    border: 1px solid rgba(255, 193, 7, 0.2);
    transition: all 0.3s ease;
    font-size: 13px;
}

.sunny-category-tag:hover {
    background: #ffc107;
    color: #333;
    border-color: #ffc107;
}


.sunny-article-content {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    color: #333;
    line-height: 1.8;
    font-size: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.sunny-article-content h1,
.sunny-article-content h2,
.sunny-article-content h3,
.sunny-article-content h4,
.sunny-article-content h5,
.sunny-article-content h6 {
    color: #333;
    margin: 25px 0 15px 0;
}

.sunny-article-content h2 {
    font-size: 22px;
    border-left: 4px solid #ffc107;
    padding-left: 15px;
}

.sunny-article-content h3 {
    font-size: 20px;
}

.sunny-article-content p {
    margin-bottom: 16px;
}

.sunny-article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.sunny-article-content blockquote {
    background: rgba(255, 193, 7, 0.05);
    border-left: 4px solid #ffc107;
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #666;
    border: 1px solid rgba(255, 193, 7, 0.1);
}

.sunny-article-content code {
    background: #f8f9fa;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    color: #e83e8c;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.sunny-article-content pre {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 20px 0;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.sunny-article-content pre code {
    background: none;
    padding: 0;
    border: none;
    color: #333;
}

.sunny-article-content ul,
.sunny-article-content ol {
    padding-left: 25px;
    margin-bottom: 16px;
}

.sunny-article-content li {
    margin-bottom: 8px;
}

.sunny-article-content a {
    color: #ffc107;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 193, 7, 0.3);
    transition: all 0.3s ease;
}

.sunny-article-content a:hover {
    color: #e0a800;
    border-bottom-color: #ffc107;
}

.sunny-article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.sunny-article-content table th,
.sunny-article-content table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.sunny-article-content table th {
    background: rgba(255, 193, 7, 0.1);
    color: #333;
    font-weight: 600;
    border-bottom: 2px solid #ffc107;
}


.sunny-article-actions {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.sunny-action-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 25px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #f8f9fa;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 14px;
}

.sunny-action-btn:hover {
    background: rgba(255, 193, 7, 0.1);
    border-color: #ffc107;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.15);
}

.sunny-like-btn {
    background: rgba(255, 193, 7, 0.1);
    border-color: #ffc107;
    color: #ffc107;
}

.sunny-like-btn:hover,
.sunny-like-btn.sunny-liked {
    background: #ffc107;
    color: #333;
    border-color: #ffc107;
}

.sunny-share-btn {
    background: rgba(255, 193, 7, 0.1);
    border-color: #ffc107;
    color: #ffc107;
}

.sunny-share-btn:hover {
    background: #ffc107;
    color: #333;
    border-color: #ffc107;
}

.sunny-collect-btn {
    background: rgba(255, 193, 7, 0.1);
    border-color: #ffc107;
    color: #ffc107;
}

.sunny-collect-btn:hover,
.sunny-collect-btn.sunny-collected {
    background: #ffc107;
    color: #333;
    border-color: #ffc107;
}


.sunny-article-navigation {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    gap: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.sunny-nav-item {
    flex: 1;
    text-align: center;
}

.sunny-nav-item a {
    display: block;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.sunny-nav-item a:hover {
    background: rgba(255, 193, 7, 0.1);
    border-color: #ffc107;
    color: #333;
    box-shadow: 0 2px 8px rgba(255, 193, 7, 0.1);
}

.sunny-nav-label {
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
}

.sunny-nav-title {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.sunny-nav-empty {
    color: #999;
    padding: 15px;
    display: block;
    font-size: 14px;
}


.sunny-related-articles {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 12px;
    padding: 25px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.sunny-related-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sunny-related-title i {
    color: #ffc107;
}

.sunny-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}

.sunny-related-item {
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.sunny-related-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.sunny-related-link {
    display: flex;
    gap: 15px;
    padding: 15px;
    text-decoration: none;
    color: #333;
}

.sunny-related-image {
    flex: 0 0 80px;
    height: 60px;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.sunny-related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sunny-related-placeholder {
    color: #999;
    font-size: 20px;
}

.sunny-related-info {
    flex: 1;
}

.sunny-related-name {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 5px;
    line-height: 1.3;
}

.sunny-related-desc {
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sunny-related-meta {
    font-size: 12px;
    color: #999;
    display: flex;
    gap: 15px;
}


.sunny-share-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: all 0.3s ease;
}

.sunny-share-modal.sunny-show {
    display: flex;
    opacity: 1;
    align-items: center;
    justify-content: center;
}

.sunny-share-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.sunny-share-modal-content {
    position: relative;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.sunny-share-modal.sunny-show .sunny-share-modal-content {
    transform: scale(1);
}

.sunny-share-modal-header {
    padding: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
}

.sunny-share-modal-header h3 {
    color: #333;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.sunny-close-btn {
    background: none;
    border: none;
    color: #666;
    font-size: 18px;
    cursor: pointer;
    padding: 5px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.sunny-close-btn:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #333;
}

.sunny-share-modal-body {
    padding: 25px;
}

.sunny-share-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 25px;
}

.sunny-share-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px;
    border-radius: 8px;
    background: #f8f9fa;
    border: 1px solid rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.sunny-share-option:hover {
    background: rgba(255, 193, 7, 0.1);
    border-color: #ffc107;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(255, 193, 7, 0.1);
}

.sunny-share-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    transition: all 0.3s ease;
}

.sunny-share-icon.sunny-weibo {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
}

.sunny-share-icon.sunny-qq {
    background: linear-gradient(135deg, #12b7f5, #0e9fe5);
}

.sunny-share-icon.sunny-qzone {
    background: linear-gradient(135deg, #ffd93d, #ff9500);
}

.sunny-share-icon.sunny-copy {
    background: linear-gradient(135deg, #a8e6cf, #7fcdcd);
}

.sunny-share-option span {
    color: #333;
    font-size: 13px;
    font-weight: 500;
}

.sunny-share-link-box {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 20px;
}

.sunny-share-link-box label {
    display: block;
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}

.sunny-link-input-group {
    display: flex;
    gap: 10px;
}

.sunny-link-input-group input {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    background: #fff;
    color: #333;
    font-size: 13px;
    outline: none;
    transition: all 0.3s ease;
}

.sunny-link-input-group input:focus {
    border-color: #ffc107;
    box-shadow: 0 0 0 2px rgba(255, 193, 7, 0.1);
}

.sunny-link-input-group button {
    padding: 10px 16px;
    border: 1px solid #ffc107;
    border-radius: 6px;
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.sunny-link-input-group button:hover {
    background: #ffc107;
    color: #333;
    border-color: #ffc107;
}

.sunny-share-toast {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 12px 20px;
    border-radius: 6px;
    z-index: 9999;
    display: none;
}


.sunny-fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: sunny-fadeInUp 0.6s ease forwards;
}

@keyframes sunny-fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes sunny-likeAnimation {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.sunny-like-btn.sunny-animate {
    animation: sunny-likeAnimation 0.3s ease;
}


@media (max-width: 768px) {
    .sunny-breadcrumb-inner {
        margin: 0 15px;
        padding: 12px 15px;
    }

    .sunny-article-container {
        padding: 0 15px;
    }

    .sunny-article-header {
        padding: 20px;
    }

    .sunny-article-title {
        font-size: 24px;
    }

    .sunny-article-meta {
        gap: 10px;
    }

    .sunny-article-content {
        padding: 25px;
        font-size: 15px;
    }

    .sunny-article-actions {
        padding: 20px;
        gap: 15px;
    }

    .sunny-action-btn {
        padding: 10px 16px;
        font-size: 13px;
    }

    .sunny-article-navigation {
        flex-direction: column;
        gap: 10px;
    }

    .sunny-related-articles {
        padding: 20px;
    }

    .sunny-related-grid {
        grid-template-columns: 1fr;
    }

    .sunny-share-modal-content {
        width: 95%;
        margin: 20px;
    }

    .sunny-share-options {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .sunny-share-modal-header,
    .sunny-share-modal-body {
        padding: 15px;
    }

    .sunny-link-input-group {
        flex-direction: column;
    }

    .sunny-link-input-group button {
        align-self: flex-start;
    }
}