/* =========================================
   梦途民宿旅居 - 移动端专用样式
   ========================================= */

:root {
    /* 主色调保持一致 */
    --primary: #E67E22;
    --primary-dark: #D35400;
    --primary-light: #F39C12;
    --secondary: #2C3E50;
    --secondary-light: #34495E;
    --bg-light: #F8F9FA;
    --bg-white: #FFFFFF;
    --text-dark: #2C3E50;
    --text-gray: #7F8C8D;
    --text-light: #BDC3C7;
    --success: #27AE60;
    --danger: #E74C3C;
    --info: #3498DB;
    --warning: #F1C40F;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    font-size: 14px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans SC', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    min-height: 100vh;
    overflow-x: hidden;
    padding-bottom: 70px;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    -webkit-touch-callout: none;
}

button {
    -webkit-appearance: none;
    outline: none;
    border: none;
    font-family: inherit;
}

/* 顶部导航 */
.mobile-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: var(--shadow-sm);
    z-index: 100;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-header .logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 16px;
    color: var(--primary);
}

.mobile-header .logo-icon {
    width: 32px;
    height: 32px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.mobile-header .nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 18px;
}

/* 侧边菜单 */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100vh;
    background: white;
    z-index: 200;
    transition: left 0.3s ease;
    box-shadow: var(--shadow-lg);
    overflow-y: auto;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 199;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-header {
    padding: 20px 16px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
}

.mobile-menu-header h3 {
    font-size: 20px;
    margin-bottom: 4px;
}

.mobile-menu-header p {
    font-size: 13px;
    opacity: 0.9;
}

.mobile-menu-nav {
    padding: 16px 0;
}

.mobile-menu-nav a {
    display: flex;
    align-items: center;
    padding: 14px 20px;
    gap: 12px;
    font-size: 15px;
    color: var(--text-dark);
    transition: all 0.2s;
}

.mobile-menu-nav a:hover,
.mobile-menu-nav a.active {
    background: var(--bg-light);
    color: var(--primary);
}

.mobile-menu-nav a i {
    width: 24px;
    font-size: 18px;
}

.mobile-menu-footer {
    padding: 20px 16px;
    border-top: 1px solid #eee;
    margin-top: auto;
}

.mobile-menu-footer .contact-info {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
}

.mobile-menu-footer .contact-info i {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.mobile-menu-footer .contact-info div h4 {
    font-size: 14px;
    font-weight: 600;
}

.mobile-menu-footer .contact-info div p {
    font-size: 12px;
    color: var(--text-gray);
}

/* 底部导航 */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.08);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 8px 0;
    padding-bottom: max(8px, env(safe-area-inset-bottom));
}

.mobile-bottom-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 6px 16px;
    color: var(--text-gray);
    font-size: 11px;
    transition: all 0.2s;
}

.mobile-bottom-nav a i {
    font-size: 22px;
}

.mobile-bottom-nav a.active {
    color: var(--primary);
}

.mobile-bottom-nav a.active i {
    transform: scale(1.1);
}

/* 轮播图 */
.mobile-slider {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.mobile-slider .slide-item {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.mobile-slider .slide-item.active {
    opacity: 1;
}

.mobile-slider .slide-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mobile-slider .slide-item .slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 16px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: white;
}

.mobile-slider .slide-item .slide-overlay h3 {
    font-size: 18px;
    margin-bottom: 4px;
}

.mobile-slider .slide-item .slide-overlay p {
    font-size: 13px;
    opacity: 0.9;
}

.mobile-slider .slider-dots {
    position: absolute;
    bottom: 16px;
    right: 16px;
    display: flex;
    gap: 6px;
}

.mobile-slider .slider-dots .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
}

.mobile-slider .slider-dots .dot.active {
    background: white;
    width: 18px;
    border-radius: 3px;
}

/* 页面内容区域 */
.mobile-container {
    padding: 16px;
}

.mobile-section-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    margin-top: 24px;
}

.mobile-section-title h2 {
    font-size: 18px;
    font-weight: 600;
}

.mobile-section-title a {
    font-size: 13px;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 4px;
}

/* 推荐的民宿标题醒目样式 */
.mobile-section-featured {
    position: relative;
    padding-top: 12px;
    margin-top: 20px;
}

.mobile-section-featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 2px;
}

.mobile-section-featured h2 {
    font-size: 22px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--text-dark), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.5px;
}

.mobile-section-featured .more-link {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(230, 126, 34, 0.3);
}

.mobile-section-featured .more-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 126, 34, 0.4);
}

.mobile-section-featured .more-link i {
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.mobile-section-featured .more-link:hover i {
    transform: translateX(4px);
}

.title-decoration {
    display: none;
}

/* 民宿卡片 */
.mobile-house-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
}

.mobile-house-card .house-image {
    position: relative;
    height: 160px;
}

.mobile-house-card .house-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mobile-house-card .house-image .house-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    color: white;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 12px;
}

.mobile-house-card .house-image .house-tag.featured {
    background: linear-gradient(135deg, #F59E0B, #D97706);
}

.mobile-house-card .house-image .house-tag.recommended {
    background: linear-gradient(135deg, #10B981, #059669);
    left: 70px;
}

/* 分享弹窗样式 */
.share-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: flex;
    align-items: flex-end;
    animation: fadeIn 0.3s;
}

.share-modal-content {
    width: 100%;
    background: white;
    border-radius: 16px 16px 0 0;
    padding: 20px;
}

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

.share-modal-header button {
    background: none;
    border: none;
    font-size: 20px;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.share-modal-body {
    display: flex;
    justify-content: space-around;
    padding: 10px 0 30px;
}

.share-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.share-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    margin-bottom: 8px;
}

.share-icon.weixin { background: #07C160; }
.share-icon.weibo { background: #E6162D; }
.share-icon.qq { background: #12B7F5; }
.share-icon.link { background: #666; }

.share-item span {
    font-size: 12px;
    color: #666;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.mobile-house-card .house-content {
    padding: 14px;
}

.mobile-house-card .house-content h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
}

.mobile-house-card .house-content .house-location {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: var(--text-gray);
    margin-bottom: 10px;
}

.mobile-house-card .house-content .house-price {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}

.mobile-house-card .house-content .house-price .price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
}

.mobile-house-card .house-content .house-price .price span {
    font-size: 13px;
    font-weight: 400;
    color: var(--text-gray);
}

/* 特色功能 */
.mobile-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.mobile-feature-item {
    text-align: center;
}

.mobile-feature-item .icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 8px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.mobile-feature-item span {
    font-size: 13px;
    color: var(--text-dark);
}

/* 关于我们页面 */
.mobile-about-hero {
    height: 180px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 0 20px;
}

.mobile-about-hero h1 {
    font-size: 24px;
    margin-bottom: 8px;
}

.mobile-about-hero p {
    font-size: 14px;
    opacity: 0.9;
}

.mobile-about-content {
    padding: 20px 16px;
}

.mobile-about-content .about-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 20px;
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
}

.mobile-about-content .about-card h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--primary);
}

.mobile-about-content .about-card p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.8;
}

/* 发展历程 */
.mobile-timeline {
    position: relative;
    padding-left: 24px;
    margin: 20px 0;
}

.mobile-timeline::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary);
    opacity: 0.3;
}

.mobile-timeline-item {
    position: relative;
    padding-bottom: 28px;
}

.mobile-timeline-item::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 4px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--primary);
    border: 3px solid white;
    box-shadow: 0 0 0 2px var(--primary);
}

.mobile-timeline-item .timeline-year {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 6px;
}

.mobile-timeline-item .timeline-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
}

.mobile-timeline-item .timeline-content {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* 团队成员 */
.mobile-team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 16px 0;
}

.mobile-team-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.mobile-team-card .avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin: 0 auto 12px;
    overflow: hidden;
}

.mobile-team-card .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mobile-team-card h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}

.mobile-team-card .position {
    font-size: 12px;
    color: var(--primary);
    margin-bottom: 6px;
}

.mobile-team-card .bio {
    font-size: 12px;
    color: var(--text-gray);
}

/* 联系我们页面 */
.mobile-contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.mobile-contact-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.mobile-contact-card .icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin: 0 auto 12px;
}

.mobile-contact-card h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
}

.mobile-contact-card p {
    font-size: 13px;
    color: var(--text-gray);
}

.mobile-contact-form {
    background: white;
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 20px;
}

.mobile-contact-form h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}

.mobile-form-group {
    margin-bottom: 16px;
}

.mobile-form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.mobile-form-group input,
.mobile-form-group textarea,
.mobile-form-group select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #e0e0e0;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.2s;
}

.mobile-form-group input:focus,
.mobile-form-group textarea:focus,
.mobile-form-group select:focus {
    outline: none;
    border-color: var(--primary);
}

.mobile-form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.mobile-btn {
    display: block;
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

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

.mobile-btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.mobile-btn-success {
    background: linear-gradient(135deg, var(--success), #219a52);
}

.mobile-map {
    height: 200px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 20px;
}

.mobile-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 成为代理页面 */
.mobile-join-hero {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.mobile-join-hero h1 {
    font-size: 26px;
    margin-bottom: 12px;
}

.mobile-join-hero p {
    font-size: 14px;
    opacity: 0.9;
}

.mobile-join-steps {
    padding: 24px 16px;
}

.mobile-step-item {
    background: white;
    border-radius: var(--radius-lg);
    padding: 20px;
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.mobile-step-item .step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
}

.mobile-step-item .step-content h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
}

.mobile-step-item .step-content p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
}

.mobile-join-form {
    padding: 0 16px 24px;
}

.mobile-join-cta {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 30px 20px;
    text-align: center;
    margin: 20px 16px;
    border-radius: var(--radius-lg);
}

.mobile-join-cta h3 {
    font-size: 19px;
    margin-bottom: 10px;
}

.mobile-join-cta p {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 16px;
}

.mobile-join-cta .phone-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: var(--primary);
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-size: 16px;
    font-weight: 600;
}

/* 新闻列表 */
.mobile-news-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
    display: flex;
}

.mobile-news-card .news-image {
    width: 120px;
    height: 100px;
    flex-shrink: 0;
}

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

.mobile-news-card .news-content {
    padding: 14px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mobile-news-card .news-content h3 {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mobile-news-card .news-content .news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--text-gray);
}

.mobile-news-card .news-content .news-meta .tag {
    background: var(--primary);
    color: white;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    font-size: 11px;
}

/* 新闻详情 */
.mobile-news-detail-header {
    padding: 20px 16px;
    background: white;
}

.mobile-news-detail-header h1 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
}

.mobile-news-detail-header .meta {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: var(--text-gray);
}

.mobile-news-detail-content {
    padding: 20px 16px;
    background: white;
    margin-top: 12px;
}

.mobile-news-detail-content p {
    font-size: 15px;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.mobile-news-detail-content img {
    width: 100%;
    border-radius: var(--radius-md);
    margin: 16px 0;
}

/* 房间详情 */
.mobile-room-gallery {
    height: 280px;
    background: #000;
}

.mobile-room-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mobile-room-info {
    padding: 20px 16px;
    background: white;
}

.mobile-room-info h1 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.mobile-room-info .location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 16px;
}

.mobile-room-info .price {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.mobile-room-info .price .value {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
}

.mobile-room-info .price .unit {
    font-size: 14px;
    color: var(--text-gray);
}

.mobile-room-section {
    margin-top: 12px;
    background: white;
    padding: 20px 16px;
}

.mobile-room-section h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 16px;
}

/* 房间卡片 */
.mobile-room-card {
    display: flex;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    padding: 12px;
    margin-bottom: 12px;
    border: 2px solid transparent;
    transition: all 0.2s;
    position: relative;
}

.mobile-room-card.selected {
    background: white;
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.mobile-room-card .room-card-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.mobile-room-card .room-card-content {
    flex: 1;
    padding-left: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mobile-room-card .room-card-content h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}

.mobile-room-card .room-card-info {
    font-size: 12px;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 4px;
}

.mobile-room-card .room-card-info i {
    font-size: 12px;
}

.mobile-room-card .room-card-price {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.mobile-room-card .room-card-price .price {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
}

.mobile-room-card .room-card-price .unit {
    font-size: 12px;
    color: var(--text-gray);
}

.mobile-room-card .room-card-check {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 24px;
    height: 24px;
    border: 2px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.2s;
}

.mobile-room-card.selected .room-card-check {
    opacity: 1;
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.mobile-room-card .room-card-check i {
    font-size: 12px;
}

.mobile-facilities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.mobile-facility-item {
    text-align: center;
}

.mobile-facility-item i {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 6px;
    display: block;
}

.mobile-facility-item span {
    font-size: 12px;
    color: var(--text-gray);
}

.mobile-book-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 12px 16px;
    padding-bottom: max(12px, env(safe-area-inset-bottom));
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 99;
}

.mobile-book-bar .price-info {
    flex: 1;
}

.mobile-book-bar .price-info .value {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

.mobile-book-bar .price-info .note {
    font-size: 12px;
    color: var(--text-gray);
}

.mobile-book-bar .book-btn {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-size: 15px;
    font-weight: 600;
}

/* 空状态 */
.mobile-empty {
    text-align: center;
    padding: 60px 20px;
}

.mobile-empty i {
    font-size: 64px;
    color: var(--text-light);
    margin-bottom: 16px;
}

.mobile-empty p {
    font-size: 14px;
    color: var(--text-gray);
}

/* 加载动画 */
.mobile-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.mobile-loading .spinner {
    width: 36px;
    height: 36px;
    border: 3px solid #f0f0f0;
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

/* 页面标题栏 */
.mobile-page-header {
    background: white;
    padding: 16px;
    box-shadow: var(--shadow-sm);
}

.mobile-page-header h1 {
    font-size: 20px;
    font-weight: 700;
}

.mobile-page-header p {
    font-size: 13px;
    color: var(--text-gray);
    margin-top: 4px;
}

/* 分页样式 */
.mobile-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding: 20px 0;
    flex-wrap: wrap;
}

.mobile-pagination .pagination-btn {
    padding: 8px 12px;
    border: 1px solid #e0e0e0;
    background: white;
    border-radius: 6px;
    color: var(--text-gray);
    cursor: pointer;
    transition: all 0.2s;
    font-size: 13px;
    min-width: 36px;
    text-align: center;
}

.mobile-pagination .pagination-btn:hover:not(:disabled) {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.mobile-pagination .pagination-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.mobile-pagination .pagination-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.mobile-pagination .pagination-ellipsis {
    color: var(--text-gray);
    padding: 0 4px;
}

/* 特色功能英雄卡片 */
.mobile-feature-card-hero {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mobile-feature-card-hero:active {
    transform: scale(0.98);
}

.feature-hero-image {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.feature-hero-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
}

.feature-hero-image i {
    font-size: 72px;
    color: white;
    opacity: 0.9;
    z-index: 1;
}

.feature-hero-content {
    padding: 20px;
}

.feature-hero-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.feature-hero-content p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.5;
    letter-spacing: 0.5px;
}

/* 特色功能卡片 */
.mobile-feature-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 20px;
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
}

.mobile-feature-card .feature-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.mobile-feature-card .feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    flex-shrink: 0;
}

.mobile-feature-card .feature-card-header h3 {
    font-size: 18px;
    font-weight: 600;
}

.mobile-feature-card .feature-card-content p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 12px;
}

.mobile-feature-card .feature-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-feature-card .feature-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.mobile-feature-card .feature-list li i {
    color: var(--primary);
    font-size: 16px;
}

/* 相册滑动样式 */
.mobile-gallery-wrapper {
    position: relative;
    overflow: hidden;
    margin: 0 -16px;
    padding: 0 16px;
}

.mobile-gallery-swiper {
    display: flex;
    transition: transform 0.3s ease;
    gap: 12px;
}

.mobile-gallery-swiper .gallery-slide {
    flex-shrink: 0;
    width: calc(100vw - 64px);
    height: 200px;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg-light);
}

.mobile-gallery-swiper .gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.mobile-gallery-swiper .gallery-slide img:active {
    transform: scale(1.05);
}

.mobile-gallery-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
}

.mobile-gallery-dots .gallery-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-gallery-dots .gallery-dot.active {
    width: 24px;
    border-radius: 4px;
    background: var(--primary);
}
