/* 文章点赞按钮样式 */
.article-like-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    margin: 0px 0;
}

.article-like-btn {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 164px;
    height: 32px;
    background: #FFFFFF;
    border-radius: 8px;
    border: 1px solid #E2E2E2;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: visible;
}

.article-like-btn:hover {
    border-color: #E2E2E2;
    background: #F9F9F9;
}

.article-like-btn:active {
    transform: scale(0.98);
}

.article-like-btn.liked {
    background: none;
    border: 1px solid #E2E2E2;
}

.article-like-btn.liked:hover {
    background: none;
    border-color: #E2E2E2;
}

.like-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
}

.heart-icon {
    width: 20px;
    height: 20px;
    color: #999999;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.article-like-btn.liked .heart-icon {
    color: #FF4D7F;
}

.heart-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.article-like-btn.animating .heart-icon {
    animation: heartBeat 0.6s ease-in-out;
}

@keyframes heartBeat {
    0% {
        transform: scale(1);
    }
    15% {
        transform: scale(1.3);
    }
    30% {
        transform: scale(1.1);
    }
    45% {
        transform: scale(1.35);
    }
    60% {
        transform: scale(1.15);
    }
    100% {
        transform: scale(1);
    }
}

.like-count-text {
    font-family: HarmonyOS Sans SC, HarmonyOS Sans SC;
    font-weight: 500;
    font-size: 13px;
    color: #666666;
    letter-spacing: 0.3px;
}

.article-like-btn.liked .like-count-text {
    color: #FF4D7F;
    font-weight: 600;
}

/* 点赞粒子动画 */
.like-particles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #FF4D7F;
    opacity: 0;
}

.article-like-btn.animating .particle {
    animation: particleExplosion 0.6s ease-out;
}

@keyframes particleExplosion {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(0);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1);
    }
}

.article-like-btn.animating .particle-1 {
    animation: particle1 0.6s ease-out;
}

.article-like-btn.animating .particle-2 {
    animation: particle2 0.6s ease-out;
}

.article-like-btn.animating .particle-3 {
    animation: particle3 0.6s ease-out;
}

.article-like-btn.animating .particle-4 {
    animation: particle4 0.6s ease-out;
}

.article-like-btn.animating .particle-5 {
    animation: particle5 0.6s ease-out;
}

.article-like-btn.animating .particle-6 {
    animation: particle6 0.6s ease-out;
}

@keyframes particle1 {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(0);
    }
    100% {
        opacity: 0;
        transform: translate(20px, -30px) scale(1);
    }
}

@keyframes particle2 {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(0);
    }
    100% {
        opacity: 0;
        transform: translate(30px, 10px) scale(1);
    }
}

@keyframes particle3 {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(0);
    }
    100% {
        opacity: 0;
        transform: translate(10px, 30px) scale(1);
    }
}

@keyframes particle4 {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(0);
    }
    100% {
        opacity: 0;
        transform: translate(-20px, -30px) scale(1);
    }
}

@keyframes particle5 {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(0);
    }
    100% {
        opacity: 0;
        transform: translate(-30px, 10px) scale(1);
    }
}

@keyframes particle6 {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(0);
    }
    100% {
        opacity: 0;
        transform: translate(-10px, 30px) scale(1);
    }
}

/* 评论模块样式 */
.comment-container {
    padding: 0 var(--content-padding);
}

/* 查看全部评论按钮 */
.view-all-comments-container {
    text-align: center;
    margin-top: 20px;
    padding: 15px 0;
}

.view-all-comments-btn {
    background: linear-gradient(307deg, #7986FF 24.83%, #FF71C7 100%);
    border: none;
    border-radius: 25px;
    color: white;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(230, 0, 92, 0.2);
    transition: all 0.3s;
    position: relative;
}

.view-all-comments-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 0, 92, 0.3);
}

.view-all-comments-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(230, 0, 92, 0.2);
}
.comment-container .comment-title {
    font-family: HarmonyOS Sans SC, HarmonyOS Sans SC;
    font-weight: 700;
    font-size: 18px;
    color: #333333;
    line-height: 24px;
    text-align: left;
    margin: 0;
}

/* 底部评论工具栏 */
.comment-toolbar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #FFFFFF;
    border-top: 1px solid #E5E6EB;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1000;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.05);
}

.comment-toolbar .toolbar-input {
    flex: 1;
}

.comment-toolbar .toolbar-input-field {
    width: 100%;
    height: 36px;
    padding: 0 16px;
    background-color: #F5F6F7;
    border: none;
    border-radius: 18px;
    font-family: HarmonyOS Sans SC, HarmonyOS Sans SC;
    font-weight: 400;
    font-size: 14px;
    color: #999999;
    outline: none;
    cursor: pointer;
    display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
	align-content: stretch;
}

.comment-toolbar .toolbar-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.comment-toolbar .toolbar-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    color: #666666;
    transition: all 0.3s;
}

.comment-toolbar .toolbar-btn:active {
    transform: scale(0.95);
}

.comment-toolbar .toolbar-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    display: inline-block;
}

.comment-toolbar .toolbar-icon.icon-comment {
    background: url('https://www.sztv.com.cn/ysz//upload/Image/mrtp/2026/04/20/135932a102b44f808eeee4e68c109e2f.png') no-repeat center center;
    background-size: cover;
}

.comment-toolbar .toolbar-icon.icon-favorite {
    background: url('https://www.sztv.com.cn/ysz/upload/Image/mrtp/2026/04/20/25dde97d53dc482bae51a61f9595f329.png') no-repeat center center;
    background-size: cover;
    transform-origin: center center;
    transition: transform 0.2s ease, filter 0.25s ease;
}

/* 已点赞：与评论区点赞图标风格一致 */
.comment-toolbar .favorite-btn.active .toolbar-icon.icon-favorite {
    background-image: url('https://www.sztv.com.cn/ysz/upload/Image/mrtp/2026/04/20/81737711486c45358258ba4dcd94030f.png');
}

.comment-toolbar .favorite-btn.active .toolbar-count {
    color: #FF4D7F;
    font-weight: 500;
}

/* 点击点赞动效 */
.comment-toolbar .favorite-btn.animating .toolbar-icon.icon-favorite {
    animation: toolbarFavoritePulse 0.55s cubic-bezier(0.34, 1.2, 0.64, 1);
}

@keyframes toolbarFavoritePulse {
    0% {
        transform: scale(1);
    }
    28% {
        transform: scale(1.28);
    }
    52% {
        transform: scale(0.9);
    }
    76% {
        transform: scale(1.08);
    }
    100% {
        transform: scale(1);
    }
}

.comment-toolbar .toolbar-icon.icon-share {
    background: url('https://www.sztv.com.cn/ysz/upload/Image/mrtp/2026/04/20/d27c3246d98f4ec1b6091d82840a9e3f.png') no-repeat center center;
    background-size: cover;
}

.comment-toolbar .toolbar-count {
    font-family: HarmonyOS Sans SC, HarmonyOS Sans SC;
    font-weight: 400;
    font-size: 14px;
    color: #333333;
}

.comment-toolbar .favorite-btn {
    color: #CCCCCC;
}

.comment-toolbar .favorite-btn.active {
    color: #FF4D7F;
}

/* 评论输入弹窗 */
.comment-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
}

.comment-modal .modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.comment-modal .modal-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #FFFFFF;
    border-radius: 16px 16px 0 0;
    padding: 20px;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

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

.comment-modal .modal-header h3 {
    font-family: HarmonyOS Sans SC, HarmonyOS Sans SC;
    font-weight: 600;
    font-size: 16px;
    color: #333333;
    margin: 0;
}

.comment-modal .modal-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.comment-modal .modal-body {
    display: flex;
    flex-direction: column;
}

.comment-modal .modal-input {
    width: 100%;
    min-height: 120px;
    max-height: 200px;
    padding: 12px;
    border: 1px solid #E5E6EB;
    border-radius: 8px;
    font-family: HarmonyOS Sans SC, HarmonyOS Sans SC;
    font-weight: 400;
    font-size: 15px;
    color: #333333;
    line-height: 22px;
    resize: none;
    outline: none;
    background-color: #F5F6F7;
}

.comment-modal .modal-input::placeholder {
    color: #BBBBBB;
}

.comment-modal .modal-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
}

.comment-modal .modal-char-count {
    font-family: HarmonyOS Sans SC, HarmonyOS Sans SC;
    font-weight: 400;
    font-size: 13px;
    color: #999999;
}

.comment-modal .modal-submit-btn {
    padding: 8px 32px;
    background: linear-gradient(307deg, #7986FF 25%, #FF71C7 100%), #FFFFFF;
    border: none;
    border-radius: 20px;
    font-family: HarmonyOS Sans SC, HarmonyOS Sans SC;
    font-weight: 500;
    font-size: 14px;
    color: #FFFFFF;
    cursor: pointer;
    transition: all 0.3s;
}

.comment-modal .modal-submit-btn:hover:not(:disabled) {
    background: linear-gradient(307deg, #7986FF 25%, #FF71C7 100%), #FFFFFF;
}

.comment-modal .modal-submit-btn:disabled {
    background: #E5E6EB;
    color: #C4C6CC;
    cursor: not-allowed;
}

/* 为页面内容添加底部padding，防止被工具栏遮挡 */
.page-content {
    padding-bottom: 70px;
}

.comment-container .comment-list {
    padding: 0;
}
/* 暂无评论 */
.comment-container .empty-comment-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
}
.comment-container .empty-comment-container .empty-comment-icon {
    width: 100px;
    height: 100px;
    background-color: #fff;
    border-radius: 50%;
    margin-bottom: 20px;
}
.comment-container .empty-comment-container .empty-comment-icon-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.comment-container .empty-comment-container .empty-comment-title {
    font-family: HarmonyOS Sans SC, HarmonyOS Sans SC;
    font-weight: 700;
    font-size: 18px;
    color: #333333;
    line-height: 24px;
    text-align: center;
    margin-bottom: 10px;
}
.comment-container .empty-comment-container .empty-comment-desc {
    font-family: HarmonyOS Sans SC, HarmonyOS Sans SC;
    font-weight: 400;
    font-size: 14px;
    color: #8A9199;
    line-height: 16px;
    text-align: center;
    margin-bottom: 20px;
}
/* 暂无评论 */

.comment-container .comment-list .comment-item {
    padding: 0;
    margin-bottom: 10px;
}

.comment-container .comment-list .comment-item:last-child {
    border-bottom: none;
    margin-bottom: 20px;
}

.comment-container .comment-list .comment-item .comment-header {
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

.comment-container .comment-list .comment-item .comment-header .comment-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 8px;
    flex-shrink: 0;
}

.comment-container .comment-list .comment-item .comment-header .comment-info {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.comment-container .comment-list .comment-item .comment-header .comment-info .comment-user {
    font-family: HarmonyOS Sans SC, HarmonyOS Sans SC;
    font-weight: 400;
    font-size: 14px;
    color: #666666;
    line-height: 16px;
    text-align: left;
    font-style: normal;
    text-transform: none;
}

/* .comment-container .comment-list .comment-item .comment-header .comment-info .comment-time {
    font-family: HarmonyOS Sans SC, HarmonyOS Sans SC;
    font-weight: 400;
    font-size: 12px;
    color: #999999;
    line-height: 16px;
} */

.comment-container .comment-list .comment-item .comment-content {
    font-family: HarmonyOS Sans SC, HarmonyOS Sans SC;
    font-weight: 500;
    font-size: 15px;
    color: #333333;
    line-height: 22px;
    margin-bottom: 8px;
    padding-left: 41px;
}

.comment-container .comment-list .comment-item .comment-actions {
    display: flex;
    align-items: center;
    padding-left: 41px;
    gap: 16px;
}

.comment-container .comment-list .comment-item .comment-actions .comment-time {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.comment-container .comment-list .comment-item .comment-actions .comment-time .time-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.comment-container .comment-list .comment-item .comment-actions .comment-time .time-count {
    font-family: HarmonyOS Sans SC, HarmonyOS Sans SC;
    font-weight: 400;
    font-size: 13px;
    color: #666666;
    line-height: 18px;
}

.comment-container .comment-list .comment-item .comment-actions .comment-reply-btn {
    font-family: HarmonyOS Sans SC, HarmonyOS Sans SC;
    font-weight: 400;
    font-size: 13px;
    color: #666666;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    line-height: 18px;
}

.comment-container .comment-list .comment-item .comment-actions .comment-like-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    gap: 4px;
}

.comment-container .comment-list .comment-item .comment-actions .comment-like-btn .like-icon {
    display: inline-block;
    width: 18px;
    height: 18px;
}
.comment-container .comment-list .comment-item .comment-actions .comment-like-btn.unlike .like-icon{
    background: url('https://www.sztv.com.cn/ysz/upload/Image/mrtp/2025/12/23/16ce7a710f1d4dd5a48d7b873bda5387.png') no-repeat center center;
    background-size: 100% 100%;
}
.comment-container .comment-list .comment-item .comment-actions .comment-like-btn.like .like-icon {
    background: url('https://www.sztv.com.cn/ysz/upload/Image/mrtp/2025/12/23/26722c5149a64e1c90e7a524a621f074.png') no-repeat center center;
    background-size: 100% 100%;
}

/* 回复样式 */
.comment-container .comment-list .comment-item .comment-replies {
    margin-top: 10px;
    padding-left: 41px;
}

.comment-container .comment-list .comment-item .comment-replies .comment-reply {
    padding: 2px 0;
    border-bottom: none;
}
.comment-container .comment-list .comment-item .comment-replies .comment-reply .comment-header{
    position: relative;
}
.comment-container .comment-list .comment-item .comment-replies .comment-reply .comment-header .comment-avatar{
    width: 20px;
    height: 20px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 8px;
    flex-shrink: 0;
}

.comment-container .comment-list .comment-item .comment-replies .comment-reply .comment-content {
    padding-left: 28px;
    padding-top: 5px;
}

.comment-container .comment-list .comment-item .comment-replies .comment-reply .comment-actions {
    padding-left: 28px;
}

/* 展开/收起样式 */
.comment-container .comment-list .comment-item .comment-expand,
.comment-container .comment-list .comment-item .comment-collapse {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 0;
    position: relative;
}

.comment-container .comment-list .comment-item .comment-expand .expand-line {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background-color: #e0e0e0;
}

.comment-container .comment-list .comment-item .comment-expand .expand-btn,
.comment-container .comment-list .comment-item .comment-expand .collapse-btn {
    background: #fff;
    border: none;
    padding: 8px 16px;
    font-family: HarmonyOS Sans SC, HarmonyOS Sans SC;
    font-weight: 400;
    font-size: 13px;
    color: #999999;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    position: relative;
    z-index: 1;
}

.comment-container .comment-list .comment-item .comment-expand .expand-icon,
.comment-container .comment-list .comment-item .comment-expand .collapse-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/* 举报按钮 */
.comment-report-btn {
    background: none;
    border: none;
    font-family: HarmonyOS Sans SC, HarmonyOS Sans SC;
    font-size: 11px;
    color: #BBBBBB;
    cursor: pointer;
    line-height: 16px;
    white-space: nowrap;
    flex-shrink: 0;
    transition: color 0.2s, border-color 0.2s;
}
.comment-report-btn:active {
    color: #999999;
    border-color: #CCCCCC;
}

/* 举报成功 toast */
.report-toast {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    font-family: HarmonyOS Sans SC, HarmonyOS Sans SC;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 20px;
    z-index: 9999;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
    max-width: min(90vw, 320px);
    white-space: pre-wrap;
    word-break: break-word;
    line-height: 1.4;
    text-align: center;
}
.report-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* 响应式调整 */
@media (max-width: 375px) {
    .comment-container .comment-list .comment-item .comment-content {
        padding-left: 48px;
    }
    
    .comment-container .comment-list .comment-item .comment-actions {
        padding-left: 41px;
    }
    
    .comment-container .comment-list .comment-item .comment-replies {
        padding-left: 41px;
    }
}

/* 海报生成加载提示 */
.poster-loading {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 3000;
}

.poster-loading .loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.poster-loading p {
    color: #ffffff;
    font-size: 16px;
    font-family: HarmonyOS Sans SC, HarmonyOS Sans SC;
    margin: 0;
}

/* 海报扫码提示区域 */
.poster-scan-tip {
    border-bottom: 1px solid #E5E6EB;
}

.poster-scan-tip .arrow-down {
    animation: arrowBounce 1.5s ease-in-out infinite;
}

@keyframes arrowBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(5px);
    }
}

/* 海报弹窗样式 */
.poster-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2500;
    display: flex;
    align-items: center;
    justify-content: center;
}

.poster-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.85);
}

.poster-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
    animation: posterFadeIn 0.3s ease-out;
}

@keyframes posterFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.poster-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 36px;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    z-index: 2;
}

.poster-image {
    max-width: 100%;
    max-height: calc(90vh - 80px);
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    display: block;
}

.poster-save-tip {
    margin-top: 20px;
    padding: 12px 24px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    font-family: HarmonyOS Sans SC, HarmonyOS Sans SC;
    font-size: 14px;
    color: #333333;
    text-align: center;
    animation: tipPulse 2s ease-in-out infinite;
}

@keyframes tipPulse {
    0%, 100% {
        opacity: 0.9;
    }
    50% {
        opacity: 1;
    }
}

/* 分享弹窗样式 */
.share-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
}

.share-modal .modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.share-modal .share-modal-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #FFFFFF;
    border-radius: 16px 16px 0 0;
    padding: 20px;
    animation: slideUp 0.3s ease-out;
}

.share-modal .share-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.share-modal .share-modal-header h3 {
    font-family: HarmonyOS Sans SC, HarmonyOS Sans SC;
    font-weight: 600;
    font-size: 16px;
    color: #333333;
    margin: 0;
}

.share-modal .modal-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.share-options {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    padding: 10px 0 20px;
}

.share-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.2s;
    flex: 1;
}

.share-option:active {
    background-color: #F5F6F7;
    transform: scale(0.95);
}

.share-option-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.share-option-icon i {
    display: block;
    width: 24px;
    height: 24px;
}

.share-option-icon .icon-poster {
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE5IDNoLTR2LTFjMC0uNTUtLjQ1LTEtMS0xcy0xIC40NS0xIDF2MWgtNHYtMWMwLS41NS0uNDUtMS0xLTFzLTEgLjQ1LTEgMXYxaC00YTIgMiAwIDAgMC0yIDJ2MTRhMiAyIDAgMCAwIDIgMmgxNmEyIDIgMCAwIDAgMi0ydi0xNGEyIDIgMCAwIDAtMi0yem0wIDE2aC0xNnYtMTJoMTZ6IiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=') no-repeat center;
    background-size: contain;
}

.share-option-icon .icon-link {
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTMuOSAxMmMwLTEuNzEgMS4zOS0zLjEgMy4xLTMuMWg0djJoLTRjLS42NiAwLTEuMi41NC0xLjIgMS4yczUuNCAxLjIgMS4yIDEuMmg0djJoLTRjLTEuNzEgMC0zLjEtMS4zOS0zLjEtMy4xem04IDJoLTR2LTJoNHptNy0yYzAgMS43MS0xLjM5IDMuMS0zLjEgMy4xaC00di0yaDRjLjY2IDAgMS4yLS41NCAxLjItMS4ycy0uNTQtMS4yLTEuMi0xLjJoLTR2LTJoNGMxLjcxIDAgMy4xIDEuMzkgMy4xIDMuMXoiIGZpbGw9IndoaXRlIi8+Cjwvc3ZnPg==') no-repeat center;
    background-size: contain;
}

.share-option-icon .icon-forward {
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE4IDE2LjA4Yy0uNzYgMC0xLjQ0LjMtMS45Ni43N2wtNy4xMy00LjE1Yy4wNS0uMjMuMDktLjQ2LjA5LS43cy0uMDQtLjQ3LS4wOS0uN2w3LjA1LTQuMTFjLjU0LjUgMS4yNS44MSAyLjA0LjgxIDEuNjYgMCAzLTEuMzQgMy0zcy0xLjM0LTMtMy0zLTMgMS4zNC0zIDNjMCAuMjQuMDQuNDcuMDkuN2wtNy4wNSA0LjExYy0uNTQtLjUtMS4yNS44MS0yLjA0LjgxLTEuNjYgMC0zIDEuMzQtMyAzczEuMzQgMyAzIDMgMi4xNi0uNzggMi42NS0xLjkxbDcuMjkgNC4yNmMtLjA0LjE5LS4wNi4zOS0uMDYuNTkgMCAxLjYxIDEuMzEgMi45MiAyLjkyIDIuOTJzMi45Mi0xLjMxIDIuOTItMi45Mi0xLjMxLTIuOTItMi45Mi0yLjkyeiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+') no-repeat center;
    background-size: contain;
}

.share-option-text {
    font-family: HarmonyOS Sans SC, HarmonyOS Sans SC;
    font-weight: 400;
    font-size: 13px;
    color: #333333;
    text-align: center;
}

