/* 全局样式 - 純白の恋歌主题 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Microsoft YaHei', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
    background-attachment: fixed;
    min-height: 100vh;
}

/* CSS变量定义 - 统一色彩管理 */
:root {
    --primary-color: #2c3e50;
    --primary-dark: #34495e;
    --accent-color: #6c757d;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --border-color: #e9ecef;
    --shadow-light: rgba(0, 0, 0, 0.06);
    --shadow-medium: rgba(0, 0, 0, 0.08);
    --shadow-heavy: rgba(0, 0, 0, 0.12);
}

/* 头部样式 - 純白の恋歌风格 */
.site-header {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #e9ecef 100%);
    color: #2c3e50;
    text-align: center;
    padding: 4rem 0;
    margin-bottom: 3rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.site-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.site-title {
    font-size: 3.5rem;
    font-weight: 300;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    letter-spacing: 4px;
    color: #2c3e50;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* 主要内容区域 */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

section {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    padding: 2rem;
    margin-bottom: 2.5rem;
    box-shadow: 0 12px 40px var(--shadow-light);
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

section:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 50px var(--shadow-medium);
}

h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 2.2rem;
    font-weight: 300;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 1rem;
    text-align: center;
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    border-radius: 1px;
}

/* 公告样式 */
.announcement-content {
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.02);
}

.announcement-content p {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    color: var(--primary-color);
    text-align: center;
    line-height: 1.8;
}

.announcement-content p:last-child {
    margin-bottom: 0;
}

/* 公告头部样式 */
.announcement-header {
    position: relative;
    margin-bottom: 2rem;
}

.announcement-header h2 {
    margin-bottom: 0;
    text-align: center;
}

/* 推荐酒店按钮样式 - 純白の恋歌风格 */
.hotel-btn {
    position: absolute;
    top: -90px;
    right: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-bg) 100%);
    color: var(--primary-color);
    border-radius: 30px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
    box-shadow: 0 4px 20px var(--shadow-medium);
    white-space: nowrap;
    z-index: 10;
    min-width: 130px;
}

.hotel-btn:hover {
    transform: translateY(-2px) scale(1.02);
    background: linear-gradient(135deg, var(--white) 0%, #e9ecef 100%);
    box-shadow: 0 8px 30px var(--shadow-heavy);
    color: var(--primary-color);
    text-decoration: none;
    border-color: #dee2e6;
}

.hotel-btn:active {
    transform: translateY(0) scale(0.98);
}

.hotel-btn i {
    font-size: 1.2rem;
    color: var(--accent-color);
}

/* 玩法介绍按钮样式 */
.game-intro-btn {
    position: absolute;
    top: -90px;
    left: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-bg) 100%);
    color: var(--primary-color);
    border-radius: 30px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
    box-shadow: 0 4px 20px var(--shadow-medium);
    white-space: nowrap;
    z-index: 10;
    min-width: 130px;
}

.game-intro-btn:hover {
    transform: translateY(-2px) scale(1.02);
    background: linear-gradient(135deg, var(--white) 0%, #e9ecef 100%);
    box-shadow: 0 8px 30px var(--shadow-heavy);
    color: var(--primary-color);
    text-decoration: none;
    border-color: #dee2e6;
}

.game-intro-btn:active {
    transform: translateY(0) scale(0.98);
}

.game-intro-btn i {
    font-size: 1.2rem;
    color: var(--accent-color);
}

/* 女孩卡片样式 - 純白の恋歌风格 */
.model_link {
    width: calc((100% - 60px) / 4);
    margin: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px var(--shadow-medium);
    transition: all 0.4s ease;
    position: relative;
    background: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.model_link:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 50px var(--shadow-heavy);
}

.model_card {
    position: relative;
    width: 100%;
    padding-bottom: 133.33%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
}

/* 状态标签样式 */
.status-label {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: white;
    z-index: 2;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.status-active {
    background: linear-gradient(135deg, #28a745, #20c997);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.status-resting {
    background: linear-gradient(135deg, #6c757d, #495057);
    box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3);
}

.status-other {
    background: linear-gradient(135deg, #ffc107, #fd7e14);
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.girl-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 15px;
    color: white;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.8));
    border-radius: 0 0 20px 20px;
}

.girl-info .model_name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
    text-align: center;
    line-height: 1.3;
}

.girl-info .stats {
    display: flex;
    flex-wrap: nowrap;
    gap: 6px;
    justify-content: center;
    margin-bottom: 8px;
    padding: 0 6px;
    width: 100%;
}

.girl-info .stat-item {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 14px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    line-height: 1.2;
    flex-shrink: 0;
    white-space: nowrap;
    font-weight: 600;
}

.girl-info .price {
    font-size: 16px;
    font-weight: 700;
    color: #FFD700;
    display: inline-block;
    padding: 4px 12px;
    border-radius: 16px;
    background: rgba(255, 215, 0, 0.25);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.4);
    margin-top: 4px;
    white-space: nowrap;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* 卡片容器样式 */
.models {
    padding: 30px;
}

.models h2 {
    text-align: center;
    margin-bottom: 40px;
}

.models-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin: 0 auto;
    width: 100%;
    max-width: 1200px;
    justify-content: flex-start;
}

/* 个人主页样式 */
.girl-profile {
    padding: 2.5rem;
}

.profile-images {
    margin-bottom: 2.5rem;
    text-align: center;
}

.profile-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.profile-info, .service-info {
    margin-bottom: 2.5rem;
}

.info-content {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid #e9ecef;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.info-content p {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    padding: 0.8rem;
    transition: all 0.3s ease;
    border-radius: 12px;
    color: #2c3e50;
}

.info-content p:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* 联系方式样式 */
.qr-codes {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 2.5rem;
}

.qr-code {
    text-align: center;
    transition: transform 0.3s ease;
}

.qr-code:hover {
    transform: scale(1.05);
}

.qr-image {
    width: 200px;
    height: 200px;
    border-radius: 20px;
    margin-bottom: 1.2rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    border: 3px solid #ffffff;
    padding: 15px;
    background: #ffffff;
    transition: all 0.3s ease;
}

.qr-image:hover {
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.qr-code p {
    color: #2c3e50;
    font-size: 1.2rem;
    font-weight: 600;
}

/* 统一页眉和页脚样式 */

/* ===== 主页特殊页眉样式 ===== */
.site-header {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #e9ecef 100%);
    color: #2c3e50;
    text-align: center;
    padding: 4rem 0;
    margin-bottom: 3rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.site-title {
    font-size: 3.5rem;
    font-weight: 300;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    letter-spacing: 4px;
    color: #2c3e50;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== 其他页面页眉模板样式 ===== */
.page-header {
    position: relative;
    height: 120px;
    text-align: center;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.page-header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: blur(8px) brightness(0.8);
    border-radius: 20px;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1;
    border-radius: 20px;
}

.page-header-logo {
    height: 100px;
    width: auto;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.back-home {
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: #2c3e50;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid #e9ecef;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.back-home:hover {
    background: linear-gradient(135deg, #ffffff 0%, #e9ecef 100%);
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    color: #2c3e50;
    text-decoration: none;
    border-color: #dee2e6;
}

/* ===== 统一页脚样式 ===== */
footer {
    position: relative;
    text-align: right !important;
    padding-right: 25px;
    min-height: 120px;
    padding: 2.5rem;
    margin-top: 4rem;
    height: 120px;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-bottom: none;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/233.jpg');
    background-size: cover;
    background-position: center;
    filter: blur(10px) brightness(0.7);
    z-index: -1;
    border-radius: 20px 20px 0 0;
}

footer p {
    font-size: 1.1rem;
    color: #2c3e50;
    position: relative;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.footer-image {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    height: 100px;
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.business-hours {
    line-height: 1.6;
    display: inline-block;
    background: rgba(255, 255, 255, 0.9);
    padding: 12px 18px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    top: -25px;
    font-weight: 600;
    color: #2c3e50;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

/* ===== 悬浮按钮统一样式 ===== */
.floating-buttons {
    position: fixed;
    right: 25px;
    bottom: 160px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1000;
}

.floating-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-bg) 100%);
    color: var(--primary-color);
    border-radius: 30px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
    box-shadow: 0 8px 30px var(--shadow-medium);
}

.floating-button i {
    font-size: 1.2rem;
    color: var(--accent-color);
}

.floating-button:hover {
    transform: translateY(-3px) scale(1.05);
    background: linear-gradient(135deg, var(--white) 0%, #e9ecef 100%);
    box-shadow: 0 12px 40px var(--shadow-heavy);
    color: var(--primary-color);
    text-decoration: none;
    border-color: #dee2e6;
}

/* ===== 响应式设计 ===== */

/* 平板端样式 (650px-913px) */
@media (max-width: 913px) and (min-width: 651px) {
    .site-title {
        font-size: 2.8rem;
    }

    section {
        padding: 1.5rem;
    }

    /* 平板端三列布局 */
    .model_link {
        width: calc((100% - 50px) / 3);
    }

    .models-grid {
        gap: 25px;
        padding: 0;
    }

    /* 调整卡片内容样式 */
    .girl-info {
        padding: 15px 12px;
        gap: 6px;
    }

    .girl-info .model_name {
        font-size: 18px;
        margin-bottom: 4px;
    }

    .girl-info .stats {
        gap: 5px;
        padding: 0 5px;
        margin-bottom: 5px;
    }

    .girl-info .stat-item {
        font-size: 13px;
        padding: 3px 7px;
        border-radius: 10px;
    }

    .girl-info .price {
        font-size: 14px;
        padding: 3px 10px;
        margin-top: 3px;
    }

    /* 公告样式调整 */
    .announcement-content {
        padding: 1.5rem;
    }

    .announcement-content p {
        font-size: 1rem;
    }

    /* 头部样式调整 */
    .site-header {
        padding: 3rem 0;
    }

    /* 主要内容区域调整 */
    main {
        padding: 0 1.5rem;
    }

    section {
        padding: 2rem;
        margin-bottom: 2rem;
        border-radius: 20px;
    }

    /* 联系方式调整 */
    .qr-codes {
        gap: 3rem;
    }
    
    /* 页眉响应式 */
    .page-header {
        height: 100px;
    }
    
    .page-header-logo {
        height: 80px;
    }
    
    .back-home {
        font-size: 0.9rem;
        padding: 8px 16px;
    }
    
    /* 页脚响应式 */
    .footer-image {
        height: 80px;
    }

    .business-hours {
        font-size: 0.9rem;
        padding: 10px 15px;
        font-weight: 600;
    }

    /* 悬浮按钮响应式 */
    .floating-buttons {
        right: 25px;
        bottom: 160px;
        flex-direction: column;
    }
}

/* 手机端样式 (≤650px) */
@media (max-width: 650px) {
    .site-title {
        font-size: 2.2rem;
        letter-spacing: 2px;
    }

    /* 调整各个section的标题大小 */
    h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
        padding-bottom: 0.8rem;
    }

    section {
        padding: 1.5rem;
        border-radius: 20px;
    }

    /* 手机端两列布局 */
    .model_link {
        width: calc((100% - 15px) / 2);
    }

    .models-grid {
        gap: 15px;
        padding: 0;
    }

    /* 调整卡片内容样式 */
    .girl-info {
        padding: 15px 10px;
        gap: 5px;
    }

    .girl-info .model_name {
        font-size: 16px;
        margin-bottom: 3px;
    }

    .girl-info .stats {
        gap: 4px;
        padding: 0 4px;
        margin-bottom: 4px;
    }

    .girl-info .stat-item {
        font-size: 12px;
        padding: 2px 6px;
        border-radius: 8px;
    }

    .girl-info .price {
        font-size: 13px;
        padding: 2px 8px;
        margin-top: 2px;
    }

    /* 公告样式调整 */
    .announcement-content {
        padding: 1.5rem;
    }

    .announcement-content p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    /* 头部样式调整 */
    .site-header {
        padding: 2.5rem 0;
    }

    /* 主要内容区域调整 */
    main {
        padding: 0 1rem;
    }

    section {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
        border-radius: 20px;
    }

    /* 联系方式调整 */
    .qr-codes {
        flex-direction: column;
        align-items: center;
        gap: 2.5rem;
    }

    /* Banner调整 */
    .banner-pc { display: none; }
    .banner-mobile { 
        display: block;
        width: 100%;
        height: auto;
        max-height: 120%;
        object-fit: contain;
        object-position: center 20%;
        position: relative;
        margin-top: -20%;
    }
    .banner-wrapper {
        height: auto !important;
        overflow: visible !important;
        position: relative;
    }
    .gradient-overlay {
        position: absolute;
        bottom: 20%;
        left: 0;
        width: 100%;
        height: 35%;
        background: linear-gradient(to bottom, transparent 0%, #f8f9fa 100%);
    }
    main {
        position: relative;
        margin-top: -20%;
    }

    .model_desc {
        white-space: pre-line;
    }

    .model_tags {
        display: inline-block;
        background: rgba(255, 255, 255, 0.8);
        color: #2c3e50;
        padding: 5px 15px;
        border-radius: 20px;
        font-size: 0.9rem;
        margin: 3px 8px 3px 0;
        line-height: 1.2;
        font-weight: 500;
        vertical-align: middle;
        border: 1px solid #e9ecef;
    }
    
    /* 页眉响应式 */
    .page-header {
        height: 100px;
    }
    
    .page-header-logo {
        height: 80px;
    }
    
    .back-home {
        font-size: 0.9rem;
        padding: 8px 16px;
    }
    
    /* 页脚响应式 */
    .footer-image {
        height: 80px;
    }

    .business-hours {
        font-size: 0.9rem;
        padding: 10px 15px;
        font-weight: 600;
    }

    /* 悬浮按钮响应式 */
    .floating-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 15px;
        right: 0;
        left: 0;
        bottom: 15px;
        padding: 0 15px;
    }
    
    .floating-button {
        flex: 1;
        max-width: 160px;
        padding: 12px 18px;
        font-size: 0.9rem;
        justify-content: center;
    }

    .floating-button i {
        font-size: 1.1rem;
    }

    /* 为了避免按钮遮挡内容，给页面底部添加内边距 */
    body {
        padding-bottom: 80px;
    }
}

/* 横屏模式优化 */
@media screen and (orientation: landscape) and (max-height: 500px) {
    .site-header {
        padding: 2rem 0;
    }

    .site-title {
        font-size: 2.5rem;
    }

    .models-grid {
        gap: 15px;
    }

    .model_link {
        width: calc((100% - 30px) / 4);
    }
}

/* 预定义文本大小类 - 桌面端 */
.text-xs {
    font-size: 0.75rem !important;
}

.text-sm {
    font-size: 0.875rem !important;
}

.text-small {
    font-size: 1rem !important;
}

.text-medium {
    font-size: 1.25rem !important;
}

.text-large {
    font-size: 1.5rem !important;
}

.text-xl {
    font-size: 2rem !important;
}

.text-xxl {
    font-size: 2.5rem !important;
}

/* 移动端响应式字体大小 */
@media screen and (max-width: 768px) {
    .text-xs {
        font-size: 0.5rem !important;
    }

    .text-sm {
        font-size: 0.6rem !important;
    }

    .text-small {
        font-size: 0.7rem !important;
    }

    .text-medium {
        font-size: 0.85rem !important;
    }

    .text-large {
        font-size: 1rem !important;
    }

    .text-xl {
        font-size: 1.25rem !important;
    }

    .text-xxl {
        font-size: 1.5rem !important;
    }
}

.model_tags {
    display: inline-block;
    background: rgba(255, 255, 255, 0.8);
    color: #2c3e50;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin: 3px 8px 3px 0;
    line-height: 1.2;
    font-weight: 500;
    vertical-align: middle;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.model_tags:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.model_desc {
    white-space: pre-line;
    color: #2c3e50;
    line-height: 1.8;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .announcement-header {
        position: relative;
        padding-top: 0;
    }
    
    .announcement-header h2 {
        margin-bottom: 1.5rem;
    }
    
    .hotel-btn {
        top: -85px;
        right: 0;
        padding: 12px 20px;
        font-size: 0.9rem;
        transform: scale(0.95);
        min-width: 110px;
    }
    
    .hotel-btn:hover {
        transform: scale(0.98);
    }
    
    .hotel-btn:active {
        transform: scale(0.92);
    }
    
    .game-intro-btn {
        top: -85px;
        left: 0;
        padding: 12px 20px;
        font-size: 0.9rem;
        transform: scale(0.95);
        min-width: 110px;
    }
    
    .game-intro-btn:hover {
        transform: scale(0.98);
    }
    
    .game-intro-btn:active {
        transform: scale(0.92);
    }
}

@media (max-width: 480px) {
    .announcement-header {
        padding-top: 0;
    }
    
    .hotel-btn {
        top: -80px;
        right: 0;
        padding: 10px 16px;
        font-size: 0.85rem;
        transform: scale(0.9);
        min-width: 100px;
    }
    
    .hotel-btn:hover {
        transform: scale(0.93);
    }
    
    .hotel-btn:active {
        transform: scale(0.87);
    }
    
    .game-intro-btn {
        top: -80px;
        left: 0;
        padding: 10px 16px;
        font-size: 0.85rem;
        transform: scale(0.9);
        min-width: 100px;
    }
    
    .game-intro-btn:hover {
        transform: scale(0.93);
    }
    
    .game-intro-btn:active {
        transform: scale(0.87);
    }
    
    /* 页眉响应式 */
    .page-header {
        height: 90px;
    }
    
    .page-header-logo {
        height: 70px;
    }
    
    .back-home {
        font-size: 0.85rem;
        padding: 6px 12px;
    }
    
    /* 页脚响应式 */
    .footer-image {
        height: 70px;
    }

    .business-hours {
        font-size: 0.85rem;
        padding: 8px 12px;
        font-weight: 600;
    }

    /* 悬浮按钮响应式 */
    .floating-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 12px;
        right: 0;
        left: 0;
        bottom: 12px;
        padding: 0 12px;
    }
    
    .floating-button {
        flex: 1;
        max-width: 150px;
        padding: 10px 14px;
        font-size: 0.85rem;
        justify-content: center;
    }

    .floating-button i {
        font-size: 1rem;
    }

    /* 为了避免按钮遮挡内容，给页面底部添加内边距 */
    body {
        padding-bottom: 70px;
    }
} 