/*index CSS */
/* 全局样式（无类名，无需修改） */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "MiSans",system-ui, -apple-system, sans-serif;
}
@font-face {
    font-family: 'MiSans';
    src: url('https://byte.8i5.net/font/misans/MiSans-Semibold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* 所有类选择器添加 love- 前缀 */
body {
    background: linear-gradient(135deg, #fff0f3, #ffccd5, #ffe5ec);
    background-size: 400% 400%;
    animation: bgGradient 15s ease infinite;
    min-height: 100vh;
    padding: 20px;
}

@keyframes bgGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* 头部：头像+爱心 */
.love-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 50px 0;
}

/* 头像容器样式（左右通用） */
.love-avatar-container {
    position: relative;
    display: inline-block;
}

/* 左侧装饰图片：独立样式 */
.love-avatar-decoration-left {
    position: absolute;
    top: -35px;
    left: 39%;
    transform: translateX(-50%);
    height: 90px;
    width: auto;
    z-index: 10;
}

/* 右侧装饰图片：独立样式 */
.love-avatar-decoration-right {
    position: absolute;
    top: -35px;
    left: 63%;
    transform: translateX(-50%);
    height: 90px;
    width: auto;
    z-index: 10;
}

.love-avatar {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 6px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 20px rgba(255, 100, 130, 0.5);
    object-fit: cover;
    transition: transform 0.3s ease;
    margin-top: 30px; /* 为上方装饰图片留出空间 */
}

.love-avatar:hover {
    transform: scale(1.08);
}

.love-avatar-left {
    margin-right: 40px;
}

.love-avatar-right {
    margin-left: 40px;
}

.love-heart {
    font-size: 60px;
    color: #ff4d6d;
    animation: heartBeat 1.5s infinite;
}

@keyframes heartBeat {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.8; }
}

/* 内容区 */
.love-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
}

.love-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(255, 100, 130, 0.15);
    transition: all 0.3s ease;
}

.love-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(255, 100, 130, 0.25);
}

/* 左侧：点点滴滴 */
.love-drops-card .love-title {
    text-align: center;
    margin-bottom: 25px;
    color: #ff4d6d;
    font-size: 26px;
    position: relative;
}

.love-drops-card .love-title::before,
.love-drops-card .love-title::after {
    content: "❤";
    display: inline-block;
    margin: 0 15px;
    font-size: 20px;
}

.love-drops-content {
    color: #555;
    line-height: 1.8;
    font-size: 16px;
    white-space: pre-line; /* 保留换行 */
    background: rgba(255, 240, 243, 0.5);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 25px;
}

.love-album-button {
    display: block;
    width: 100%;
    background-color: #ff4d6d;
    color: white;
    border: none;
    padding: 12px 0;
    border-radius: 10px;
    font-size: 18px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.love-album-button:hover {
    background-color: #ff3361;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 100, 130, 0.3);
}

.love-album-button i {
    margin-right: 8px;
}

/* 右侧：时间统计 */
.love-time-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.love-time-card .love-meet-date {
    font-size: 22px;
    color: #555;
    margin-bottom: 15px;
}

.love-time-counter {
    margin: 20px 0;
}

.love-counter-value {
    font-size: 32px;
    font-weight: bold;
    color: #ff4d6d;
    text-shadow: 0 2px 10px rgba(255, 100, 130, 0.3);
    margin: 10px 0;
}

.love-counter-label {
    font-size: 18px;
    color: #777;
    margin-bottom: 5px;
}

.love-time-units {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.love-time-unit {
    background: rgba(255, 240, 243, 0.8);
    padding: 10px 15px;
    border-radius: 8px;
    min-width: 80px;
}

.love-unit-value {
    font-size: 24px;
    font-weight: bold;
    color: #ff4d6d;
}

.love-unit-name {
    font-size: 14px;
    color: #666;
}

.love-time-card .love-together-since {
    color: #666;
    font-size: 18px;
    margin-bottom: 20px;
    padding-top: 15px;
    border-top: 1px dashed #ffccd5;
}

.love-time-card .love-wish {
    color: #666;
    font-size: 17px;
    line-height: 1.6;
    margin-top: 20px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .love-content {
        flex-direction: column;
    }

    .love-avatar {
        width: 100px;
        height: 100px;
        margin-top: 25px;
    }

    /* 移动端：左侧装饰图片独立调整 */
    .love-avatar-decoration-left {
        height: 59px;
        top: -20px;
    }

    /* 移动端：右侧装饰图片独立调整 */
    .love-avatar-decoration-right {
        height: 59px;
        top: -20px;
    }

    .love-heart {
        font-size: 40px;
    }

    .love-counter-value {
        font-size: 26px;
    }

    .love-time-unit {
        min-width: 60px;
        padding: 8px 10px;
    }

    .love-unit-value {
        font-size: 20px;
    }
}
/* 烟花背景样式 */
.firework-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* 确保可以点击画布下方的元素 */
    z-index: -1; /* 放置在所有内容后面 */
}

/* 调整现有背景，使其稍微透明，更好地展示烟花效果 */
body {
    background: linear-gradient(135deg, rgba(255, 240, 243, 0.9), rgba(255, 204, 213, 0.9), rgba(255, 229, 236, 0.9));
    background-size: 400% 400%;
    animation: bgGradient 15s ease infinite;
    min-height: 100vh;
    padding: 20px;
}
 

/*album  CSS*/

                /* 页面标题（类名加album-前缀） */
        .album-page-title {
            text-align: center;
            color: #ff4d6d;
            font-size: 32px;
            position: relative;
            display: inline-block;
            left: 50%;
            transform: translateX(-50%);
        }

        .album-page-title::before,
        .album-page-title::after {
            content: "❤";
            display: inline-block;
            margin: 0 15px;
            animation: heartBeat 1.5s infinite;
        }

        @keyframes heartBeat {
            0%, 100% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.3); opacity: 0.8; }
        }

        /* 返回按钮（类名加album-前缀） */
        .album-back-button {
            display: inline-block;
            background-color: rgba(255, 255, 255, 0.8);
            color: #ff4d6d;
            text-decoration: none;
            padding: 8px 15px;
            border-radius: 20px;
            margin-bottom: 20px;
            font-size: 16px;
            transition: all 0.3s ease;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .album-back-button:hover {
            background-color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
        }

        /* 相册容器（类名加album-前缀） */
        .album-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        /* 照片网格（类名加album-前缀） */
        .album-photo-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 25px;
            margin-bottom: 50px;
        }

        .album-photo-item {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .album-photo-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 20px rgba(0,0,0,0.15);
        }

        /* 照片宫格布局 */
        .album-photo-grid-inner {
            display: grid;
            gap: 2px;
            background: #f8f9fa;
        }

        /* 单张照片布局 */
        .album-single-photo {
            width: 100%;
            height: 220px;
            object-fit: cover;
        }

        /* 两张照片布局 */
        .album-two-photos {
            grid-template-columns: 1fr 1fr;
        }

        .album-two-photos img {
            height: 200px;
            object-fit: cover;
        }

        /* 三张照片布局 */
        .album-three-photos {
            grid-template-columns: 1fr 1fr;
            grid-template-rows: 1fr 1fr;
        }

        .album-three-photos img:nth-child(1) {
            grid-column: 1 / 3;
            height: 150px;
        }

        .album-three-photos img:nth-child(2),
        .album-three-photos img:nth-child(3) {
            height: 150px;
        }

        /* 四张及以上照片布局 */
        .album-multiple-photos {
            grid-template-columns: 1fr 1fr;
            grid-template-rows: 1fr 1fr;
        }

        .album-multiple-photos img {
            height: 120px;
            object-fit: cover;
        }

        /* 更多照片遮罩 */
        .album-more-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            font-weight: bold;
        }

        .album-photo-info {
            padding: 15px;
        }

        .album-photo-description {
            color: #555;
            font-size: 16px;
            margin-bottom: 5px;
            line-height: 1.4;
        }

        .album-photo-date {
            color: #999;
            font-size: 14px;
        }

        /* 无照片提示（类名加album-前缀） */
        .album-no-photos {
            text-align: center;
            padding: 50px 20px;
            color: #777;
            font-size: 18px;
        }

        .album-no-photos i {
            font-size: 50px;
            margin-bottom: 20px;
            color: #ffccd5;
            display: block;
        }

        /* 照片查看器（弹窗）（类名加album-前缀） */
        .album-photo-viewer {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.9);
            z-index: 1000;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .album-photo-viewer.active {
            display: flex;
        }

        .album-viewer-content {
            max-width: 90%;
            max-height: 90%;
            position: relative;
        }

        .album-viewer-image {
            max-width: 100%;
            max-height: 80vh;
            display: block;
            margin: 0 auto;
            border: 5px solid white;
            border-radius: 5px;
        }

        .album-viewer-description {
            color: white;
            text-align: center;
            margin-top: 15px;
            font-size: 18px;
        }

        .album-close-viewer {
            position: absolute;
            top: -40px;
            right: 0;
            color: white;
            background: none;
            border: none;
            font-size: 30px;
            cursor: pointer;
        }

        .album-prev-photo, .album-next-photo {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            color: white;
            background: none;
            border: none;
            font-size: 40px;
            cursor: pointer;
            padding: 20px;
            opacity: 0.7;
            transition: opacity 0.3s;
        }

        .album-prev-photo:hover, .album-next-photo:hover {
            opacity: 1;
        }

        .album-prev-photo {
            left: -60px;
        }

        .album-next-photo {
            right: -60px;
        }

        /* 照片位置指示器 */
        .album-photo-position {
            position: absolute;
            bottom: 10px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(0,0,0,0.7);
            color: white;
            padding: 5px 10px;
            border-radius: 15px;
            font-size: 14px;
        }

        .album-grid-container {
            position: relative;
        }

        /* 响应式设计（类名加album-前缀） */
        @media (max-width: 768px) {
            .album-photo-grid {
                grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
                gap: 15px;
            }

            .album-single-photo {
                height: 180px;
            }

            .album-two-photos img {
                height: 160px;
            }

            .album-three-photos img:nth-child(1) {
                height: 120px;
            }

            .album-three-photos img:nth-child(2),
            .album-three-photos img:nth-child(3) {
                height: 120px;
            }

            .album-multiple-photos img {
                height: 100px;
            }

            .album-page-title {
                font-size: 24px;
            }
            
            .album-prev-photo, .album-next-photo {
                font-size: 30px;
                padding: 10px;
            }
            
            .album-prev-photo {
                left: 0;
            }
            
            .album-next-photo {
                right: 0;
            }
        }
        
/*comments  CSS*/

        /* 容器（类名加comments-前缀） */
        .comments-container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 15px; /* 增加内边距防止内容贴边 */
        }

        /* 页面标题容器（类名加comments-前缀） */
        .comments-title-container {
            text-align: center; /* 让标题居中 */
            overflow: hidden; /* 防止内容溢出 */
        }

        /* 页面标题（类名加comments-前缀） */
        .comments-page-title {
            color: #ff4d6d;
            font-size: 32px;
            position: relative;
            display: inline-block; /* 保持inline-block特性但不使用绝对定位 */
            white-space: nowrap; /* 防止标题换行 */
        }

        .comments-page-title::before,
        .comments-page-title::after {
            content: "❤";
            display: inline-block;
            margin: 0 8px; /* 减小间距，在手机上更适配 */
            animation: heartBeat 1.5s infinite;
        }

        @keyframes heartBeat {
            0%, 100% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.3); opacity: 0.8; }
        }

        /* 返回按钮（类名加comments-前缀） */
        .comments-back-button {
            display: inline-block;
            background-color: rgba(255, 255, 255, 0.8);
            color: #ff4d6d;
            text-decoration: none;
            padding: 8px 15px;
            border-radius: 20px;
            margin-bottom: 20px;
            font-size: 16px;
            transition: all 0.3s ease;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .comments-back-button:hover {
            background-color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
        }

        /* 内容区（类名加comments-前缀） */
        .comments-content {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
        }

        /* 表单区域（类名加comments-前缀） */
        .comments-form-section {
            flex: 1;
            min-width: 300px;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(255, 100, 130, 0.15);
        }

        .comments-form-title {
            color: #ff4d6d;
            margin-bottom: 20px;
            font-size: 22px;
            text-align: center;
        }

        .comments-form-group {
            margin-bottom: 20px;
        }

        /* label为标签选择器，无修改 */
        label {
            display: block;
            margin-bottom: 8px;
            font-weight: bold;
            color: #555;
        }

        /* input、textarea为标签选择器，无修改 */
        input, textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #ffccd5;
            border-radius: 8px;
            font-size: 16px;
            transition: border-color 0.3s ease;
        }

        input:focus, textarea:focus {
            outline: none;
            border-color: #ff4d6d;
            box-shadow: 0 0 0 3px rgba(255, 77, 109, 0.1);
        }

        textarea {
            min-height: 150px;
            resize: vertical;
        }

        /* 提交按钮（类名加comments-前缀） */
        .comments-submit-btn {
            background-color: #ff4d6d;
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 8px;
            font-size: 16px;
            cursor: pointer;
            width: 100%;
            transition: all 0.3s ease;
        }

        .comments-submit-btn:hover {
            background-color: #ff3361;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 100, 130, 0.3);
        }

        /* 祝福列表区域（类名加comments-前缀） */
        .comments-blessings-section {
            flex: 1.5;
            min-width: 300px;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(255, 100, 130, 0.15);
        }

        .comments-blessings-title {
            color: #ff4d6d;
            margin-bottom: 20px;
            font-size: 22px;
            text-align: center;
        }

        .comments-blessings-list {
            max-height: 600px;
            overflow-y: auto;
            padding-right: 10px;
        }

        .comments-blessing-item {
            background: rgba(255, 240, 243, 0.5);
            border-radius: 12px;
            padding: 15px;
            margin-bottom: 15px;
            position: relative;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .comments-blessing-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 100, 130, 0.1);
        }

        .comments-blessing-nickname {
            font-weight: bold;
            color: #ff4d6d;
            margin-bottom: 8px;
            font-size: 16px;
        }

        .comments-blessing-message {
            color: #555;
            line-height: 1.6;
            margin-bottom: 10px;
        }

        .comments-blessing-time {
            font-size: 12px;
            color: #999;
            text-align: right;
        }

        /* 无祝福提示（类名加comments-前缀） */
        .comments-no-blessings {
            text-align: center;
            padding: 40px 20px;
            color: #777;
        }

        .comments-no-blessings i {
            font-size: 40px;
            margin-bottom: 15px;
            color: #ffccd5;
            display: block;
        }

        /* 提示信息（类名加comments-前缀） */
        .comments-alert {
            padding: 12px 15px;
            border-radius: 8px;
            margin-bottom: 20px;
            text-align: center;
        }

        .comments-success {
            background-color: rgba(143, 227, 151, 0.5);
            color: #2d7d32;
        }

        .comments-error {
            background-color: rgba(255, 171, 171, 0.5);
            color: #c62828;
        }

        /* 滚动条样式（无自定义类，无需修改） */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: #f9f0f2;
            border-radius: 10px;
        }

        ::-webkit-scrollbar-thumb {
            background: #ffccd5;
            border-radius: 10px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: #ffb3c1;
        }

        /* 响应式设计（类名加comments-前缀） */
        @media (max-width: 768px) {
            .comments-page-title {
                font-size: 24px; /* 减小标题字体 */
            }

            .comments-page-title::before,
            .comments-page-title::after {
                margin: 0 5px; /* 进一步减小爱心间距 */
                font-size: 20px;
            }

            .comments-content {
                flex-direction: column;
            }

            .comments-form-section, .comments-blessings-section {
                min-width: auto;
                padding: 20px; /* 减小内边距 */
            }

            .comments-blessings-list {
                max-height: 400px;
            }
        }

        /* 针对超小屏幕的额外适配（类名加comments-前缀） */
        @media (max-width: 360px) {
            .comments-page-title {
                font-size: 20px;
            }
            
            .comments-title-container {
                padding: 0 10px; /* 增加容器内边距 */
            }
        }
        
        /* 漂浮评论容器：固定全屏，不影响交互 */
.floating-comments-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* 点击穿透，不遮挡按钮/表单 */
    z-index: 10; /* 高于背景，低于核心内容 */
    overflow: hidden;
}

/* 单个漂浮评论样式：轻盈卡片感 */
.floating-comment {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    padding: 10px 14px;
    box-shadow: 0 4px 12px rgba(255, 100, 130, 0.25);
    max-width: 220px;
    transition: top 0.5s ease, opacity 0.5s ease;
}

/* 评论昵称样式：粉色强调 */
.floating-comment-nickname {
    font-weight: 600;
    color: #ff4d6d;
    font-size: 13px;
    margin-bottom: 4px;
}

/* 评论内容样式：简洁清晰 */
.floating-comment-message {
    color: #555;
    font-size: 12px;
    line-height: 1.5;
    white-space: normal; /* 自动换行，避免内容溢出 */
}

/* 左→右穿梭动画：带上下浮动轨迹 */
@keyframes floatLeftToRight {
    0% {
        transform: translateX(0) translateY(0) scale(var(--scale, 1));
        left: -300px;
    }
    25% {
        transform: translateX(calc(25vw)) translateY(var(--y1, -20px)) scale(var(--scale, 1));
    }
    50% {
        transform: translateX(calc(50vw)) translateY(var(--y2, 20px)) scale(var(--scale, 1));
    }
    75% {
        transform: translateX(calc(75vw)) translateY(var(--y1, -10px)) scale(var(--scale, 1));
    }
    100% {
        transform: translateX(0) translateY(0) scale(var(--scale, 1));
        left: calc(100% + 300px);
    }
}

/* 右→左穿梭动画：对称轨迹，增强随机性 */
@keyframes floatRightToLeft {
    0% {
        transform: translateX(0) translateY(0) scale(var(--scale, 1));
        left: calc(100% + 300px);
    }
    25% {
        transform: translateX(calc(-25vw)) translateY(var(--y1, 20px)) scale(var(--scale, 1));
    }
    50% {
        transform: translateX(calc(-50vw)) translateY(var(--y2, -20px)) scale(var(--scale, 1));
    }
    75% {
        transform: translateX(calc(-75vw)) translateY(var(--y1, 10px)) scale(var(--scale, 1));
    }
    100% {
        transform: translateX(0) translateY(0) scale(var(--scale, 1));
        left: -300px;
    }
}

/* 移动端适配：缩小评论尺寸，避免遮挡 */
@media (max-width: 768px) {
    .floating-comment {
        max-width: 180px;
        padding: 8px 12px;
    }
    .floating-comment-nickname {
        font-size: 12px;
    }
    .floating-comment-message {
        font-size: 11px;
    }
}
        /* 新增：爱心背景容器 - 层级最低（z-index:5），不影响任何交互 */
        .heart-bg-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none; /* 点击穿透，不遮挡按钮/表单/评论 */
            z-index: 5; /* 低于评论飘屏（z-index:10），确保评论在上方显示 */
            overflow: hidden;
        }

        /* 新增：单个飘动爱心样式 */
        .floating-heart {
            position: absolute;
            color: #ff4d6d; /* 主题粉色 */
            font-size: 16px;
            opacity: 0; /* 初始透明，通过动画控制显示 */
            animation: floatHeart linear infinite;
        }

        /* 新增：爱心飘动动画 - 从上往下+左右摇摆 */
        @keyframes floatHeart {
            0% {
                transform: translateY(-20px) rotate(0deg);
                opacity: 0.3;
                left: calc(var(--random-left) * 100%); /* 随机初始水平位置 */
            }
            50% {
                transform: translateY(calc(var(--random-middle-y) * 100vh)) rotate(180deg);
                opacity: 0.8;
            }
            100% {
                transform: translateY(120vh) rotate(360deg);
                opacity: 0;
                left: calc(var(--random-end-left) * 100%); /* 随机结束水平位置 */
            }
        }

/* 页脚样式 */
.love-footer {
    padding: 20px 0; /* 上下内边距，避免文字贴边 */
    margin-top: 30px; /* 与内容区保持合理间距 */
    border-top: 1px solid #ffccd5; /* 淡粉细边框，轻微分隔内容与页脚（可选，不想要可删除） */
}

.love-footer-content {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto; /* 水平居中 */
    text-align: center; /* 文字内容居中 */
}

/* 温馨文案样式 */
.love-footer-wish {
    color: #e63946; 
    font-size: 14px;
    margin: 0 0 6px 0;
    line-height: 1.5;
}

/* 版权信息样式 */
.love-footer-copyright {
    color: #6c757d;
    font-size: 12px;
    margin: 0;
    line-height: 1.5;
}
.footer-link {
    color: #e63946; 
    text-decoration: none; 
    font-weight: 500; 
}

.footer-link:hover {
    text-decoration: underline; 
    text-underline-offset: 2px; 
}

/* 响应式适配（手机端文字稍小，保持居中） */
@media (max-width: 768px) {
    .love-footer-wish {
        font-size: 13px;
    }
    .love-footer-copyright {
        font-size: 11px;
    }
}