/* 艺龙网风格 - 友机会展平台样式 */
/* 参考艺龙网设计，采用蓝色系主色调，简洁现代的设计风格 */

:root {
    /* 艺龙网风格颜色变量 */
    --color-primary: #003580;        /* 艺龙深蓝 */
    --color-primary-light: #0077cc;   /* 艺龙亮蓝 */
    --color-primary-hover: #0056a3;   /* 深蓝hover */
    --color-secondary: #ff6b35;       /* 橙色辅助 */
    --color-bg: #f8f9fa;              /* 浅灰背景 */
    --color-bg-alt: #ffffff;          /* 白色背景 */
    --color-text: #333333;            /* 深灰文字 */
    --color-text-light: #666666;      /* 浅灰文字 */
    --color-border: #e0e0e0;          /* 边框色 */
    --color-border-light: #f0f0f0;    /* 浅边框 */
    --color-success: #28a745;         /* 成功绿 */
    --color-warning: #ffc107;         /* 警告黄 */
    --color-danger: #dc3545;          /* 危险红 */

    /* 尺寸变量 */
    --header-height: 70px;
    --container-max-width: 1200px;
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --border-radius-sm: 4px;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

/* 提示弹窗 qihooai-assistant-root：全屏容器 + 内容居中 */
#qihooai-assistant-root {
    position: fixed !important;
    left: 0 !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 2147483647 !important;
    pointer-events: none;
}
#qihooai-assistant-root > * {
    pointer-events: auto;
}

/* 基础重置 */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 14px;
    line-height: 1.6;
    overflow-x: hidden;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: var(--color-text);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    /* 为固定头部预留占位，兼容所有页面主体布局 */
    padding-top: var(--header-height);
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--color-primary-hover);
}

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

/* 工具类 */
.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    border: 1px solid transparent;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--color-primary);
    color: white!important;
    border-color: var(--color-primary);
}

.btn-primary:hover {
    background-color: var(--color-primary-hover);
    border-color: var(--color-primary-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
    color: #ece7e7;
}

.btn-secondary {
    background-color: white;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-secondary:hover {
    background-color: var(--color-primary);
    color: white;
}

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

.btn-outline:hover {
    background-color: var(--color-primary);
    color: white;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 13px;
}

.btn-lg {
    padding: 12px 24px;
    font-size: 16px;
}
.btn-100 {
    width: 100%;
}
/* 网格系统 */
.grid {
    display: grid;
    gap: 20px;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* 表单样式 */
.form-group {
    margin-bottom: 16px;
}

.form-row {
    margin-bottom: 12px;
}

.form-row-inline {
    display: flex;
    gap: 12px;
}

.form-row-inline .form-group {
    flex: 1;
    margin-bottom: 0;
}

label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 6px;
}

input, select, textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    font-size: 14px;
    background-color: white;
    transition: var(--transition);
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--color-primary-light);
    box-shadow: 0 0 0 3px rgba(0, 119, 204, 0.1);
}

/* 卡片组件 */
.card {
    background-color: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
}

.card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.card-header {
    padding: 20px;
    border-bottom: 1px solid var(--color-border-light);
}

.card-body {
    padding: 20px;
}

.card-footer {
    padding: 5px;
    background-color: var(--color-bg);
    border-top: 1px solid var(--color-border-light);
    margin-bottom: 8px;
}

/* 英雄区 */
.hero {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: white;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.05"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
}

.hero-inner {
    position: relative;
    overflow: hidden;
    z-index: 3; /* 保证内容在背景轮播之上 */
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    align-items: center;
}

/* 英雄区背景 Swiper（图片作为整块 hero 的背景层） */
.hero-bg-swiper {
    position: absolute!important;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
}

.hero-bg-swiper .swiper-wrapper,
.hero-bg-swiper .swiper-slide {
    width: 100%;
    height: 100%;
}

.hero-bg-swiper .swiper-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.6; /* 略微压暗背景，提升前景文字可读性 */
}

/* 叠加一层柔和渐变遮罩 */
.hero-bg-swiper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.10) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-bg-pagination {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 12px;
    z-index: 2;
    text-align: center;
}

.hero-content h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.3;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 24px;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.8;
}

.hero-panel {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-lg);
}

.hero-panel h2 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--color-text);
}

.search-form .form-row {
    margin-bottom: 16px;
}

.search-form .btn {
    width: 100%;
    padding: 12px;
    font-size: 16px;
}

/* 主要内容区 */
.page-main {
    padding: 35px 0;
}

/* 区块样式 */
.section {
    padding: 40px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--color-text);
}

.section-header p {
    font-size: 16px;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* 特色卡片 */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.feature-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--color-border-light);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

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

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--color-text);
}

.feature-card p {
    color: var(--color-text-light);
    line-height: 1.6;
}

/* 列表卡片 */
.list-card {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--color-border-light);
}

.list-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.list-card-image {
    height: 180px;
    background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
    position: relative;
    overflow: hidden;
}

.list-card-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
}

.list-card-body {
    padding: 20px;
}

.list-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-text);
}

.list-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 14px;
    color: var(--color-text-light);
    margin-bottom: 12px;
}

.list-card-desc {
    color: var(--color-text-light);
    line-height: 1.6;
}

/* 推荐会议酒店模块 - Swiper 3 */
.hotel-swiper-wrapper {
    /* margin-bottom: 40px;
    padding-bottom: 50px; */
    position: relative;
}

.hotel-swiper {
    overflow: hidden;
    padding-bottom: 50px;
    width: 100%;
    position: relative;
}

.hotel-swiper .swiper-wrapper {
    align-items: stretch;
}

.hotel-swiper .swiper-slide {
    height: auto;
    display: flex;
    width: auto;
}

.hotel-swiper .swiper-slide .hotel-card {
    width: 100%;
    display: flex;
    flex-direction: column;
}

/* 推荐会议酒店 - 手动切换按钮（默认隐藏，仅在小屏展示） */
.hotel-swiper-prev,
.hotel-swiper-next {
    display: none;
}
 

/* Swiper 3 分页器样式 */
.hotel-swiper-pagination {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    text-align: center;
}

.hotel-swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background-color: var(--color-border);
    opacity: 1;
    transition: var(--transition);
    margin: 0 4px;
    display: inline-block;
    border-radius: 50%;
    cursor: pointer;
}

.hotel-swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--color-primary);
    width: 24px;
    border-radius: 4px;
}

.hotel-card {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--color-border-light);
    display: flex;
    flex-direction: column;
}

.hotel-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary-light);
}

.hotel-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
}

.hotel-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.hotel-card:hover .hotel-card-image img {
    transform: scale(1.05);
}

.hotel-card-body {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.hotel-card-body h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-text);
    line-height: 1.4;
}

.hotel-card-body h3 a {
    color: var(--color-text);
    transition: var(--transition);
}

.hotel-card-body h3 a:hover {
    color: var(--color-primary);
}

.hotel-card-location {
    font-size: 13px;
    color: var(--color-text-light);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.hotel-card-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 13px;
    color: var(--color-text-light);
    margin-bottom: 12px;
    flex: 1;
}

.hotel-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: auto;
}

.tag.tag-facility {
    background-color: rgba(0, 119, 204, 0.08);
    color: var(--color-primary);
    font-size: 11px;
    padding: 4px 8px;
    border-radius: var(--border-radius-sm);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-weight: 500;
}

.section-footer {
    text-align: center;
    margin-top: 10px;
}

/* 平台公告与资讯模块 */
.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.news-card {
    display: flex;
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--color-border-light);
}

.news-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.news-card-number {
    margin-top: 5px;
    width: 100px;
    min-width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    color: white;
    text-align: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.news-card-number:hover {
    background: linear-gradient(135deg, #6c757d, #868e96);
}
 
.news-number {
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 4px;
}

.news-date {
    font-size: 12px;
    font-weight: 500;
    opacity: 0.9;
}

.news-card-content {
    flex: 1;
    padding: 6px 10px 6px 20px;
    display: flex;
    flex-direction: column;
}

.news-card-content h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
    color: var(--color-text);
}

.news-card-content h3 a {
    color: var(--color-text);
    transition: var(--transition);
}

.news-card-content h3 a:hover {
    color: var(--color-primary);
}

.news-card-content p {
    font-size: 13px;
    color: var(--color-text-light);
    line-height: 1.5;
    margin-bottom: 4px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-more {
    font-size: 14px;
    color: var(--color-primary);
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    align-self: flex-end;
}

.news-more:hover {
    color: var(--color-primary-hover);
    text-decoration: underline;
}

/* 标签 */
.tag {
    display: inline-flex;
    align-items: center;
    padding: 4px 8px;
    border-radius: var(--border-radius-sm);
    font-size: 12px;
    font-weight: 500;
    background-color: rgba(0, 119, 204, 0.1);
    color: var(--color-primary);
}

.tag-success {
    background-color: rgba(40, 167, 69, 0.1);
    color: var(--color-success);
}

.tag-warning {
    background-color: rgba(251, 230, 166, 0.1);
    color: #fff;
}

.tag-fail {
    background-color: rgba(251, 230, 166, 0.3);
    color: var(--color-danger);
}
/* 列表增强样式 */
.category-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.category-list li {
    margin-bottom: 4px;
}

.category-list a {
    display: block;
    padding: 8px 0;
    color: var(--color-text);
    text-decoration: none;
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
}

.category-list a:hover,
.category-list li.active a {
    background-color: rgba(0, 53, 128, 0.05);
    color: var(--color-primary);
}

/* 设施相关样式 */
.facility-list {
    margin: 0;
    padding: 0;
}

.facility-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    cursor: pointer;
}

.facility-item input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--color-primary);
}

/* 酒店特定样式 */
.hotel-card {
    position: relative;
}

.hotel-rating {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.95);
    padding: 6px 10px;
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    box-shadow: var(--shadow);
}

.hotel-rating .stars {
    color: #ffc107;
}

.hotel-rating .score {
    font-weight: 600;
    color: var(--color-text);
}

.hotel-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.hotel-info h3 {
    margin: 0 0 6px 0;
    font-size: 18px;
}

.hotel-location {
    font-size: 14px;
    color: var(--color-text-light);
}

.hotel-price {
    text-align: right;
}

.hotel-price .price {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-primary);
}

.hotel-price .price-unit {
    font-size: 12px;
    color: var(--color-text-light);
}

.hotel-facilities {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 8px;
}

.facility-tag {
    background: rgba(0, 119, 204, 0.08);
    color: var(--color-primary);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 11px;
    border: 1px solid rgba(0, 119, 204, 0.15);
}

.hotel-meeting-info {
    margin-bottom: 12px;
    padding: 8px 12px;
    background: rgba(0, 53, 128, 0.03);
    border-radius: var(--border-radius-sm);
    border-left: 3px solid var(--color-primary);
}

.meeting-spec {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    color: var(--color-text-light);
}

.hotel-features {
    display: flex;
    gap: 6px;
}

/* 活动列表样式 */
.activity-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.activity-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border-light);
}

.activity-list li:last-child {
    border-bottom: none;
}

.activity-item h4 {
    margin: 0 0 6px 0;
    font-size: 15px;
    font-weight: 600;
}

.activity-item h4 a {
    color: var(--color-text);
    text-decoration: none;
}

.activity-item h4 a:hover {
    color: var(--color-primary);
}

.activity-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: var(--color-text-light);
}

/* 资讯列表样式 */
.news-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.news-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border-light);
}

.news-list li:last-child {
    border-bottom: none;
}

.news-item h4 {
    margin: 0 0 4px 0;
    font-size: 14px;
    font-weight: 500;
}

.news-item h4 a {
    color: var(--color-text);
    text-decoration: none;
}

.news-item h4 a:hover {
    color: var(--color-primary);
}

.news-item time {
    font-size: 12px;
    color: var(--color-text-light);
}

/* 报名状态样式 */
.enrollment {
    font-size: 12px;
    color: var(--color-text-light);
    margin-right: 12px;
}

/* 价格样式增强 */
.card-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

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

.card-price .price.free {
    color: var(--color-success);
}

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

/* 卡片操作区域 */
.card-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

/* 合作伙伴样式增强 */
.partner-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 12px;
    margin-top: 8px;
}

.partner-item {
    background: white;
    border: 1px solid var(--color-border-light);
    border-radius: var(--border-radius);
    padding: 5px;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text-light);
    transition: var(--transition);
    overflow: hidden;
}

.partner-item:hover {
    border-color: var(--color-primary-light);
    color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* 活动特定样式 */
.activity-card {
    position: relative;
}

.activity-status {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
}

.activity-format {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
}

.format-tag {
    background: rgba(255, 255, 255, 0.95);
    padding: 4px 8px;
    border-radius: var(--border-radius-sm);
    font-size: 11px;
    font-weight: 500;
    box-shadow: var(--shadow);
}

.format-tag.offline {
    color: var(--color-primary);
    background: rgba(255, 255, 255, 0.95);
}

.format-tag.online {
    color: var(--color-success);
    background: rgba(255, 255, 255, 0.95);
}

.format-tag.hybrid {
    color: #856404;
    background: rgba(255, 255, 255, 0.95);
}

.activity-info {
    margin-bottom: 12px;
}

.activity-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 14px;
    color: var(--color-text-light);
    margin-bottom: 8px;
}

.activity-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    flex-wrap: wrap;
    gap: 8px;
}

.activity-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.activity-stats {
    display: flex;
    gap: 12px;
    font-size: 12px;
    color: var(--color-text-light);
}

.duration {
    color: var(--color-text);
    font-weight: 500;
}

.activity-features {
    display: flex;
    gap: 6px;
}

/* 标签云样式 */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-cloud .tag {
    cursor: pointer;
    transition: var(--transition);
}

.tag-cloud .tag:hover {
    background-color: var(--color-primary);
    color: white;
    transform: scale(1.05);
}
.tag-cloud .tag:hover a{ 
    color: white !important; 
}

/* 资讯页面样式 */
.news-list {
    display: grid;
    gap: 24px;
}

.news-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 13px;
    box-shadow: var(--shadow);
    border: 1px solid var(--color-border-light);
    transition: var(--transition);
}

.news-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}
.newsmain {
    display: flex;
    flex-direction: row;
    width: 100%;
    align-items: stretch;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-border-light);
}
.news-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    width: 87px;
    height: 87px;
    padding: 6px;
    color: var(--color-bg);
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    border-radius: 5px;
}

.news-content {
    flex: 1;
    min-width: 0;
    padding: 0 20px;
}
.news-category {
    display: flex;
    gap: 8px;
}

.news-date time {
    font-size: 14px;
    color: var(--color-text-light);
}

.news-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--color-text);
}

.news-content h3 a {
    color: var(--color-text);
    text-decoration: none;
    transition: var(--transition);
}

.news-content h3 a:hover {
    color: var(--color-primary);
}

.news-summary {
    color: var(--color-text-light);
    line-height: 1.6;
    margin: 0;
}

.news-footer {
    flex: 0 0 auto;
    min-width: 160px;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
}

.news-stats {
    display: flex;
    gap: 16px;
    font-size: 14px;
    color: var(--color-text-light);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* 置顶公告样式 */
.pinned-announcements {
    background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
    border-radius: var(--border-radius-lg);
    padding: 24px;
    margin-bottom: 32px;
    color: white;
}

.pinned-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}

.pinned-icon {
    font-size: 20px;
}

.pinned-list {
    display: grid;
    gap: 16px;
}

.pinned-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 16px;
    backdrop-filter: blur(10px);
    width: 100%;
}

.pinned-content h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.pinned-content h3 a {
    color: white;
    text-decoration: none;
}

.pinned-content p {
    font-size: 14px;
    margin: 0;
    opacity: 0.9;
}
.pinned-content {
    flex:8;
}
.pinned-meta {
    flex:1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.pinned-meta time {
    font-size: 14px;
    opacity: 0.9;
}

/* 最新资讯侧边栏样式 */
.latest-news {
    display: grid;
    gap: 16px;
}

.latest-item {
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border-light);
}

.latest-item:last-child {
    border-bottom: none;
}

.latest-item h4 {
    font-size: 14px;
    margin-bottom: 4px;
}

.latest-item h4 a {
    color: var(--color-text);
    text-decoration: none;
    transition: var(--transition);
}

.latest-item h4 a:hover {
    color: var(--color-primary);
}

.latest-item time {
    font-size: 12px;
    color: var(--color-text-light);
}

/* 资讯详情页样式 */
.news-detail {
    display: grid;
    gap: 40px;
}

/* 资讯头部 */
.news-detail-header {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 32px;
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: flex-start;
}

.news-title-section {
    position: relative;
}

.news-category-tag {
    margin-bottom: 16px;
}

.news-title-section h1 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--color-text);
    line-height: 1.4;
}

.news-subtitle {
    font-size: 16px;
    color: var(--color-text-light);
    margin-bottom: 24px;
    line-height: 1.5;
}

.news-meta-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}

.news-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 200px;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.action-buttons .btn {
    width: 100%;
    justify-content: center;
}

/* 资讯内容布局 */
.news-detail-content {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
}

.content-main {
    display: grid;
    gap: 32px;
}

/* 文章样式 */
.news-article {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 32px;
    box-shadow: var(--shadow);
}

.article-section {
    margin-bottom: 32px;
}

.article-section:last-child {
    margin-bottom: 0;
}

.article-section h2 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--color-text);
    border-bottom: 2px solid var(--color-primary-light);
    padding-bottom: 8px;
}

.article-section h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 24px 0 12px 0;
    color: var(--color-text);
}

.article-section p {
    margin-bottom: 16px;
    line-height: 1.7;
    color: var(--color-text);
}

.article-section ul, .article-section ol {
    margin: 16px 0;
    padding-left: 24px;
}

.article-section li {
    margin-bottom: 8px;
    line-height: 1.6;
    color: var(--color-text);
}

.article-section strong {
    font-weight: 600;
    color: var(--color-text);
}

/* 使用场景样式 */
.usage-scenarios {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 24px;
}

.scenario-item {
    background: var(--color-bg);
    border-radius: var(--border-radius);
    padding: 20px;
    text-align: center;
    border: 1px solid var(--color-border-light);
}

.scenario-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.scenario-item h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-text);
}

.scenario-item p {
    font-size: 14px;
    color: var(--color-text-light);
    margin: 0;
    line-height: 1.5;
}

/* 通知区块样式 */
.notice-block {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: var(--border-radius);
    padding: 20px;
    margin: 20px 0;
}

.notice-block h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #856404;
}

.notice-block ul {
    margin: 0;
    padding-left: 0;
}

.notice-block li {
    margin-bottom: 8px;
    color: #856404;
    list-style: none;
    position: relative;
    padding-left: 16px;
}

.notice-block li::before {
    content: "⚠️";
    position: absolute;
    left: 0;
    top: 0;
}

/* FAQ样式 */
.faq-section {
    margin-top: 24px;
}

.faq-item {
    margin-bottom: 24px;
    padding: 20px;
    background: var(--color-bg);
    border-radius: var(--border-radius);
    border: 1px solid var(--color-border-light);
}

.faq-item h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-text);
}

.faq-item p {
    margin: 0;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* 文章底部 */
.article-footer {
    /* 底部信息区域改为紧凑布局，避免出现大块空白 */
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 16px 18px;
    box-shadow: var(--shadow);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px 16px;
    align-items: center;
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.article-share {
    display: flex;
    align-items: center;
    gap: 12px;
}

.share-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.share-btn {
    padding: 6px 12px;
    background: var(--color-bg);
    color: var(--color-text);
    border: 1px solid var(--color-border-light);
    border-radius: var(--border-radius-sm);
    font-size: 12px;
    cursor: pointer;
    transition: var(--transition);
}

.share-btn:hover {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

@media (min-width: 1024px) {
    /* 大屏进一步压缩留白，随内容自动撑开 */
    .article-footer {
        padding: 14px 16px;
        gap: 10px 14px;
        max-height: 80px;
    }
}
 
 
/* 相关资讯侧边栏 */
.related-news {
    display: grid;
    gap: 16px;
}

.related-item {
    padding: 16px 0;
    border-bottom: 1px solid var(--color-border-light);
}

.related-item:last-child {
    border-bottom: none;
}

.related-item h4 {
    font-size: 14px;
    margin-bottom: 6px;
}

.related-item h4 a {
    color: var(--color-text);
    text-decoration: none;
    transition: var(--transition);
}

.related-item h4 a:hover {
    color: var(--color-primary);
}

.related-item time {
    font-size: 12px;
    color: var(--color-text-light);
}

/* 联系选项样式 */
.contact-options {
    display: grid;
    gap: 8px;
    margin-top: 16px;
}

.contact-options .btn {
    width: 100%;
}

/* 登录页面样式 */
.login-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
    margin: 40px 0;
}

.login-form-container {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 20px 40px;
    box-shadow: var(--shadow);
    max-width: 500px;
    width: 100%;
}

.login-header {
    text-align: center;
    margin-bottom: 32px;
}

.login-header h1 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-text);
}

.login-header p {
    color: var(--color-text-light);
    font-size: 14px;
}

.login-form {
    display: grid;
    gap: 14px;
}

.form-section {
    display: grid;
    gap: 10px;
}

/* 输入框组样式 */
.input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 12px;
    top: 5px;
    font-size: 16px;
    color: var(--color-text-light);
    z-index: 2;
}

.input-group input {
    padding-left: 40px;
    width: 100%;
}

.password-toggle {
    position: absolute;
    right: 12px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: var(--color-text-light);
    transition: var(--transition);
}

.password-toggle:hover {
    color: var(--color-primary);
}

/* 表单选项样式 */
.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    cursor: pointer;
    color: var(--color-text);
}

.checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--color-primary);
}

.forgot-password {
    color: var(--color-primary);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.forgot-password:hover {
    color: var(--color-primary-hover);
    text-decoration: underline;
}

/* 表单操作区域 */
.form-actions {
    display: grid;
    gap: 20px;
}

.divider {
    position: relative;
    text-align: center;
    color: var(--color-text-light);
    font-size: 14px;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--color-border-light);
}

.divider span {
    background: white;
    padding: 0 16px;
    position: relative;
    z-index: 1;
}

/* 社交登录样式 */
.social-login {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border: 1px solid var(--color-border-light);
    background: white;
    color: var(--color-text);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-social:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}

.btn-wechat:hover {
    border-color: #07c160;
    color: #07c160;
}

.btn-alipay:hover {
    border-color: #1677ff;
    color: #1677ff;
}

.social-icon {
    font-size: 16px;
}

/* 登录页脚 */
.login-footer {
    text-align: center;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--color-border-light);
}

.register-link {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.register-link:hover {
    color: var(--color-primary-hover);
    text-decoration: underline;
}

/* 登录页特色展示 */
.login-features {
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-content h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 32px;
    color: var(--color-text);
    text-align: center;
}

.feature-list {
    display: grid;
    gap: 24px;
}

.feature-item {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    gap: 16px;
    padding: 10px 20px;
    background: var(--color-bg);
    border-radius: var(--border-radius);
    border: 1px solid var(--color-border-light);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.feature-icon {
    font-size: 32px;
    flex-shrink: 0;
}
.feature-text {
    flex: 3;
}
.feature-text h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--color-text);
}

.feature-text p {
    font-size: 14px;
    color: var(--color-text-light);
    margin: 0;
    line-height: 1.5;
}

/* 注册页面样式 */
.register-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
    margin: 40px 0;
}

.register-form-container {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 20px 40px;
    box-shadow: var(--shadow);
    max-width: 500px;
    width: 100%;
}

.register-header {
    text-align: center;
    margin-bottom: 32px;
}

.register-header h1 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-text);
}

.register-header p {
    color: var(--color-text-light);
    font-size: 14px;
}

.register-form {
    display: grid;
    gap: 12px;
}

.form-section h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--color-text);
    padding-bottom: 8px;
    border-bottom: 2px solid var(--color-primary-light);
}

/* 密码强度样式 */
.password-strength {
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.strength-meter {
    flex: 1;
    height: 4px;
    background: var(--color-border-light);
    border-radius: 2px;
    overflow: hidden;
}

.strength-bar {
    height: 100%;
    width: 0;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.strength-text {
    font-size: 12px;
    font-weight: 500;
}

/* 输入状态样式 */
.input-status {
    position: absolute;
    right: 12px;
    font-size: 12px;
    font-weight: 500;
}

/* 发送验证码按钮样式 */
.send-code-btn {
    position: absolute;
    right: 8px;
    padding: 6px 12px;
    font-size: 12px;
    white-space: nowrap;
}

/* 单选框样式 */
.radio-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    cursor: pointer;
    color: var(--color-text);
}

.radio-label input[type="radio"] {
    width: 16px;
    height: 16px;
    accent-color: var(--color-primary);
}

/* 协议同意样式 */
.agreement-section {
    background: rgba(0, 53, 128, 0.03);
    border: 1px solid rgba(0, 53, 128, 0.1);
    border-radius: var(--border-radius);
    padding: 16px;
}

.agreement-link {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
}

.agreement-link:hover {
    text-decoration: underline;
}

/* 社交注册样式 */
.social-register {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

/* 注册页脚 */
.register-footer {
    text-align: center;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--color-border-light);
}

.login-link {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.login-link:hover {
    color: var(--color-primary-hover);
    text-decoration: underline;
}

/* 注册页特色展示 */
.register-features {
    display: flex;
    align-items: center;
    justify-content: center;
    position: sticky;
    top: 100px;
}

 

/* 个人中心样式 */
.user-profile-card {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    color: white;
    border-radius: var(--border-radius-lg);
    padding: 24px;
    text-align: center;
    margin-bottom: 20px;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 600;
    margin: 0 auto 16px;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.user-profile-card .user-info h3 {
    margin-bottom: 4px;
    font-size: 18px;
    color: var(--color-bg);
}

.user-profile-card .user-info p {
    margin-bottom: 16px;
    opacity: 0.9;
    color: var(--color-bg);
}

.user-stats {
    display: flex;
    justify-content: space-around;
    gap: 16px;
}

.user-stats .stat {
    text-align: center;
}

.user-stats .stat-number {
    display: block;
    font-size: 20px;
    font-weight: 600;
}

.user-stats .stat-label {
    font-size: 12px;
    opacity: 0.8;
}

/* 用户导航样式 */
.user-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.user-nav li {
    margin-bottom: 2px;
}

.user-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: var(--color-text);
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.user-nav li.active a {
    background: rgba(0, 53, 128, 0.08);
    color: var(--color-primary);
    font-weight: 500;
}

.user-nav a:hover {
    background: rgba(0, 53, 128, 0.05);
}

.nav-icon {
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.nav-badge {
    margin-left: auto;
    background: var(--color-primary);
    color: white;
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 600;
}

/* 会员信息卡片样式 */
.membership-card {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border: 1px solid var(--color-border-light);
}

.membership-level {
    text-align: center;
    margin-bottom: 20px;
}

.level-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #333;
}

.membership-progress {
    margin-bottom: 20px;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-bottom: 8px;
    color: var(--color-text-light);
}

.membership-progress .progress-bar {
    height: 8px;
    background: var(--color-border-light);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 8px;
}

.membership-progress .progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light));
    border-radius: 4px;
}

.progress-tip {
    font-size: 12px;
    color: var(--color-text-light);
    text-align: center;
}

.membership-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.membership-benefits .benefit-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--color-text);
    padding: 8px;
    background: white;
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--color-border-light);
}

.membership-benefits .benefit-icon {
    font-size: 14px;
}

/* 统计卡片样式 */
.stats-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

.stat-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 24px;
    box-shadow: var(--shadow);
    border: 1px solid var(--color-border-light);
    display: flex;
    align-items: center;
    gap: 16px;
}

.stat-icon {
    font-size: 32px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 53, 128, 0.1);
    border-radius: var(--border-radius);
}

.stat-info {
    flex: 1;
}

.stat-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-bg-alt);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: var(--color-border);
}

/* 内容标签页样式 */
.tabcontent {
    display: flex;
    flex-direction: column;
}
.content-tabs {
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.tabs-header {
    display: flex;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border-light);
}

.tab-btn {
    flex: 1;
    padding: 16px 20px;
    background: none;
    border: none;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-light);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.tab-btn.active {
    color: var(--color-primary);
    background: white;
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--color-primary);
}

.tabs-content {
    padding: 0;
}

.tab-pane {
    display: none;
    padding: 32px;
}

.tab-pane.active {
    display: block;
}

/* 会议列表样式 */
.meetings-list {
    display: grid;
    gap: 24px;
}

.meeting-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 24px;
    box-shadow: var(--shadow);
    border: 1px solid var(--color-border-light);
    transition: var(--transition);
}

.meeting-card:hover {
    box-shadow: var(--shadow-lg);
}

.meeting-card.completed {
    opacity: 0.8;
    background: var(--color-bg);
}

.meeting-info {
    margin-bottom: 20px;
}

.meeting-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.meeting-header h3 {
    font-size: 18px;
    margin-bottom: 0;
    flex: 1;
}

.meeting-header h3 a {
    color: var(--color-text);
    text-decoration: none;
}

.meeting-header h3 a:hover {
    color: var(--color-primary);
}

.meeting-status {
    flex-shrink: 0;
    margin-left: 16px;
}

.meeting-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 14px;
    color: var(--color-text-light);
    margin-bottom: 12px;
}

.meeting-desc {
    color: var(--color-text-light);
    line-height: 1.6;
    margin: 0;
}

.meeting-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

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

.empty-icon {
    font-size: 64px;
    margin-bottom: 20px;
    opacity: 0.5;
}

.empty-state h3 {
    font-size: 18px;
    color: var(--color-text);
    margin-bottom: 8px;
}

.empty-state p {
    color: var(--color-text-light);
    margin-bottom: 24px;
}

/* 头部用户信息样式 */
.user-info {
    font-size: 14px;
    color: var(--color-text);
    margin-right: 16px;
}

.user-info strong {
    color: var(--color-primary);
}

/* 订单列表样式 */
.orders-list {
    display: grid;
    gap: 20px;
}

.order-card {
    background: #fff;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--color-border-light);
    box-shadow: var(--shadow);
}

.order-header,
.order-footer {
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.order-header {
    border-bottom: 1px solid var(--color-border-light);
    font-size: 13px;
}

.order-body {
    padding: 12px 16px;
    border-bottom: 1px solid var(--color-border-light);
}

/* 带图片的订单内容布局（文字在左，图片在右） */
.order-body.with-image {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.order-body-main {
    flex: 1;
    min-width: 0;
}
.order-title {
    margin-top: 20px;
}
.order-body-media {
    width: 140px;
    flex-shrink: 0;
}

.order-body-media img {
    width: 100%;
    display: block;
    border-radius: var(--border-radius-sm);
    object-fit: cover;
}

 
.order-meta-left {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: var(--color-text-light);
}

.order-no {
    font-weight: 500;
}

.order-type {
    font-size: 12px;
    color: var(--color-text-light);
    margin-bottom: 4px;
}

.order-title a {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text);
    text-decoration: none;
}

.order-title a:hover {
    color: var(--color-primary);
}

.order-info {
    margin-top: 6px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    color: var(--color-text-light);
}

.order-amount {
    font-size: 13px;
    color: var(--color-text-light);
}

.order-amount strong {
    font-size: 16px;
    color: var(--color-primary);
}

.order-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* 安全设置样式 */
.security-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border-light);
}

.security-item:last-child {
    border-bottom: none;
}

.security-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
}

.security-desc {
    font-size: 13px;
    color: var(--color-text-light);
}

.security-actions .btn {
    white-space: nowrap;
}

.security-level {
    margin-bottom: 16px;
}

.security-level .level-bar {
    height: 8px;
    background: var(--color-border-light);
    border-radius: 4px;
    overflow: hidden;
}

.security-level .level-fill {
    height: 100%;
    background: linear-gradient(90deg, #ffc107, #28a745);
}

.security-level .level-text {
    margin-top: 6px;
    font-size: 13px;
    color: var(--color-text-light);
}

.level-tips {
    margin: 0;
    padding-left: 18px;
    font-size: 13px;
    color: var(--color-text-light);
}

.level-tips li {
    margin-bottom: 4px;
}

/* 个人信息页面（Profile）样式 */
.profile-layout {
    display: grid;
    gap: 24px;
}

.profile-card {
    background: #fff;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--color-border-light);
    overflow: hidden;
}

.profile-card-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--color-border-light);
    background: linear-gradient(180deg, rgba(0, 53, 128, 0.04), rgba(0, 53, 128, 0.00));
}

.profile-card-header h2 {
    margin: 0 0 6px 0;
    font-size: 18px;
    color: var(--color-text);
}

.profile-card-header p {
    margin: 0;
    font-size: 13px;
    color: var(--color-text-light);
}

.profile-avatar-block {
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 16px;
    align-items: center;
    padding: 18px 24px;
    border-bottom: 1px solid var(--color-border-light);
}

.avatar-preview {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: 700;
    margin-left: 8px;
    box-shadow: var(--shadow);
}

.avatar-actions .avatar-title {
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 4px;
}

.avatar-actions .avatar-desc {
    font-size: 12px;
    color: var(--color-text-light);
    margin-bottom: 10px;
    line-height: 1.4;
}

.avatar-btns {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.profile-form {
    padding: 22px 24px 24px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 18px;
}

.form-row-full {
    grid-column: 1 / -1;
}

.field-inline {
    display: flex;
    gap: 10px;
    align-items: center;
}

.field-inline input {
    flex: 1;
}

.profile-actions {
    margin-top: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.profile-tip {
    font-size: 12px;
    color: var(--color-text-light);
}


/* 详情页面样式 */
.meeting-detail {
    display: grid;
    gap: 32px;
}

/* 会议头部 */
.meeting-header {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 32px;
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: flex-start;
}

.meeting-title-section {
    position: relative;
}

/* 酒店详情页：酒店头部背景图（作用在整个 meeting-header，但只影响酒店详情页） */
.hotel-detail .meeting-header {
    position: relative;
    overflow: hidden;
    background: none;
}

.hotel-detail .meeting-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../images/hotel-header-bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.02); /* 略微放大避免边缘留白 */
    z-index: 0;
}

.hotel-detail .meeting-header::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.8); /* 白色 60% 透明蒙版 */
    z-index: 1;
}

.hotel-detail .meeting-header > * {
    position: relative;
    z-index: 2; /* 确保原有内容在背景和蒙版之上 */
}

.meeting-status {
    margin-bottom: 12px;
}

.meeting-title-section h1 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-text);
    line-height: 1.3;
}

.meeting-subtitle {
    font-size: 16px;
    color: var(--color-text-light);
    margin-bottom: 20px;
    line-height: 1.5;
}

.meeting-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--color-text);
}

.meta-icon {
    font-size: 16px;
}

.meeting-actions {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 280px;
}

.enrollment-info {
    background: var(--color-bg);
    border-radius: var(--border-radius);
    padding: 20px;
}

.enrollment-count {
    font-size: 14px;
    margin-bottom: 12px;
    color: var(--color-text);
}

.enrollment-count strong {
    font-size: 24px;
    color: var(--color-primary);
}

.progress-bar {
    height: 6px;
    background: var(--color-border-light);
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light));
    border-radius: 3px;
    transition: width 0.3s ease;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* 会议内容布局 */
.meeting-content {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 32px;
}

.content-main {
    display: grid;
    gap: 22px;
}

/* 详情区块 */
.detail-section {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 32px;
    box-shadow: var(--shadow);
}

.detail-section h2 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--color-text);
    border-bottom: 2px solid var(--color-primary-light);
    padding-bottom: 8px;
}

.section-content {
    color: var(--color-text);
    line-height: 1.7;
}

.section-content p {
    margin-bottom: 16px;
}

/* 酒店详情页：内容 tab 切换 */
.hotel-detail .detail-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 26px 0px;
    align-items: center;
}

.hotel-detail .detail-tab {
    background: transparent;
    padding: 10px 20px;
    height: 40px;
    line-height: 18px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-light);
    cursor: pointer;
    border-radius: 9px;
    transition: var(--transition);
    border: 1px solid var(--color-border-light)
}

.hotel-detail .detail-tab:hover {
    background: rgba(0, 53, 128, 0.05);
    color: var(--color-primary);
}

.hotel-detail .detail-tab.active {
    background: var(--color-primary);
    color: #fff;
}

.hotel-detail .tab-section {
    display: none;
}

.hotel-detail .tab-section.active {
    display: block;
}

 
/* 酒店详情页：客房预订模块 */
.room-booking-section .room-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.room-item {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 16px;
    align-items: center;
    padding: 16px 12px;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--color-border-light);
    background: var(--color-bg);
}

.room-left {
    min-width: 0;
}

.room-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-width: 0;
}

.room-thumb {
    width: 100%;
    height: 150px;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    background: #f1f3f5;
}

.room-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.room-middle {
    min-width: 0;
    flex: 1;
}

.room-name {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: var(--color-text);
}

.room-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 16px;
    font-size: 14px;
    color: var(--color-text-light);
    margin-bottom: 8px;
}

.room-meta .meta-icon {
    margin-right: 4px;
}

.room-link {
    font-size: 14px;
    color: var(--color-primary);
    text-decoration: none;
}

.room-link:hover {
    text-decoration: underline;
}

.room-right {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
    width: 210px;
    flex-shrink: 0;
}

.room-stock {
    font-size: 13px;
    color: var(--color-secondary);
}

.room-stock-disabled {
    color: var(--color-text-light);
}

.room-price .price-main {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
}

.room-price .price-num {
    font-size: 22px;
    font-weight: 700;
    margin-right: 4px;
}

.room-price .price-unit {
    font-size: 13px;
}

.room-actions .btn[aria-disabled="true"] {
    cursor: not-allowed;
    opacity: 0.6;
    pointer-events: none;
}


 
/* 议程时间线 */
.agenda-timeline {
    position: relative;
}

.agenda-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--color-border-light);
}

.agenda-item {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    position: relative;
}

.agenda-item::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 8px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--color-primary);
    border: 3px solid white;
    box-shadow: var(--shadow);
}

.agenda-time {
    width: 120px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
    background: var(--color-bg);
    padding: 8px 12px;
    border-radius: var(--border-radius);
    text-align: center;
    flex-shrink: 0;
}

.agenda-content h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--color-text);
}

.agenda-content p {
    font-size: 14px;
    color: var(--color-text-light);
    margin: 0;
}

/* 演讲嘉宾 */
.speakers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.speaker-card {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--color-bg);
    border-radius: var(--border-radius);
    border: 1px solid var(--color-border-light);
}

.speaker-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    font-weight: 600;
    flex-shrink: 0;
}

.speaker-info h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--color-text);
}

.speaker-title {
    font-size: 14px;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.speaker-desc {
    font-size: 14px;
    color: var(--color-text-light);
    margin: 0;
    line-height: 1.5;
}

/* 参会指南 */
.guide-section {
    margin-bottom: 24px;
}

.guide-section h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--color-text);
}

.guide-section p {
    margin-bottom: 8px;
    color: var(--color-text-light);
}

.guide-section ul {
    padding-left: 20px;
    color: var(--color-text-light);
}

.guide-section li {
    margin-bottom: 4px;
}

/* 侧边栏 */
.content-sidebar {
    display: grid;
    gap: 24px;
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--color-text);
}

.meeting-info-list {
    display: grid;
    gap: 12px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid var(--color-border-light);
}

.info-item:last-child {
    border-bottom: none;
}

.info-label {
    font-size: 14px;
    color: var(--color-text-light);
}

.info-value {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text);
}

.organizer-info h4 {
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--color-text);
}

.organizer-info p {
    font-size: 14px;
    color: var(--color-text-light);
    margin-bottom: 12px;
    line-height: 1.5;
}

.organizer-contact p {
    font-size: 13px;
    color: var(--color-text-light);
    margin-bottom: 4px;
}

.related-meetings {
    display: grid;
    gap: 16px;
}

.related-item {
    padding: 12px;
    background: var(--color-bg);
    border-radius: var(--border-radius);
    border: 1px solid var(--color-border-light);
    transition: var(--transition);
}

.related-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.related-item h4 {
    font-size: 14px;
    margin-bottom: 6px;
}

.related-item h4 a {
    color: var(--color-text);
    text-decoration: none;
}

.related-item h4 a:hover {
    color: var(--color-primary);
}

.related-date {
    font-size: 12px;
    color: var(--color-text-light);
    margin-bottom: 4px;
}

.related-price {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
}

/* 详情页右侧推荐酒店卡片布局 */
.related-meetings .related-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.related-meetings .related-main {
    flex: 1;
    min-width: 0;
}

.related-meetings .related-thumb {
    flex-shrink: 0;
    width: 120px;
    height: 90px;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    background: #f1f3f5;
}

.related-meetings .related-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 576px) {
    .related-meetings .related-item {
        gap: 8px;
    }
    .related-meetings .related-thumb {
        width: 96px;
        height: 72px;
    }
}

.related-meetings .related-date {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 6px;
    margin: 4px 0 6px;
}

.related-meetings .related-date .facility-tag {
    font-size: 11px;
    padding: 2px 6px;
}

/* 联系我们页面样式 */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.contact-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--color-border-light);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.contact-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-text);
}

.contact-card p {
    font-size: 16px;
    color: var(--color-primary);
    margin-bottom: 4px;
    font-weight: 500;
}

.contact-desc {
    font-size: 14px;
    color: var(--color-text-light);
    margin-bottom: 20px;
}

/* 联系表单样式 */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    margin-top: 40px;
}

.contact-form-section {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 32px;
    box-shadow: var(--shadow);
}

.form-section {
    margin-bottom: 12px;
}

.form-section:last-child {
    margin-bottom: 0;
}

.form-section h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--color-text);
    padding-bottom: 8px;
    border-bottom: 2px solid var(--color-primary-light);
}

.contact-form textarea {
    resize: vertical;
    min-height: 40px;
}

.form-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px; 
    padding-top: 20px;
    border-top: 1px solid var(--color-border-light);
}

.form-note {
    font-size: 13px;
    color: var(--color-text-light);
    margin: 0;
}

/* 联系信息侧边栏 */
.contact-info-section {
    display: grid;
    gap: 24px;
}

.info-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 24px;
    box-shadow: var(--shadow);
}

.info-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--color-text);
}

.service-hours {
    display: grid;
    gap: 12px;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid var(--color-border-light);
}

.hour-item:last-child {
    border-bottom: none;
}

.day {
    font-weight: 500;
    color: var(--color-text);
}

.time {
    color: var(--color-text-light);
}

.faq-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.faq-list li {
    margin-bottom: 8px;
}

.faq-list a {
    display: block;
    padding: 8px 0;
    color: var(--color-text);
    text-decoration: none;
    border-bottom: 1px solid var(--color-border-light);
    transition: var(--transition);
}

.faq-list a:hover {
    color: var(--color-primary);
}

.social-links {
    display: grid;
    gap: 8px;
}

.social-link {
    display: block;
    padding: 8px 12px;
    background: var(--color-bg);
    color: var(--color-text);
    text-decoration: none;
    border-radius: var(--border-radius);
    border: 1px solid var(--color-border-light);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

/* 地址地图样式 */
.location-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.address-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 32px;
    box-shadow: var(--shadow);
}

.address-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--color-text);
}

.address-details {
    margin-bottom: 24px;
}

.address {
    font-size: 16px;
    color: var(--color-text);
    margin-bottom: 8px;
    line-height: 1.5;
}

.postal {
    font-size: 14px;
    color: var(--color-text-light);
}

.transport-info h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--color-text);
}

.transport-item {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--color-text-light);
}

.transport-type {
    font-weight: 500;
    color: var(--color-text);
    min-width: 60px;
}

.map-placeholder {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    min-height: 300px;
}

.map-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 40px;
    text-align: center;
}

.map-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.map-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-text);
}

.map-content p {
    color: var(--color-text-light);
    margin-bottom: 24px;
}

/* 关于我们页面样式 */
.about-intro {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    align-items: center;
}

.intro-content h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--color-text);
}

.intro-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: var(--color-text-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-card {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-bg-alt);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--color-border);
    font-weight: 500;
}
.stat-numbera {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.stat-labela {
    font-size: 14px;
    color: var(--color-text-light);
    font-weight: 500;
}

.intro-image {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center; 
    overflow: hidden;
    border-radius: var(--border-radius-lg);
}

.intro-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius-lg);
    transition: transform 0.3s ease;
    object-fit: cover;
}

.intro-image:hover .intro-img {
    transform: scale(1.1);
}

.image-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
    border-radius: var(--border-radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.image-icon {
    font-size: 64px;
    margin-bottom: 16px;
}

.image-placeholder p {
    font-size: 16px;
    opacity: 0.9;
}

/* 服务优势 */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.advantage-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 32px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--color-border-light);
    transition: var(--transition);
}

.advantage-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.advantage-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.advantage-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--color-text);
}

.advantage-card p {
    color: var(--color-text-light);
    line-height: 1.6;
}

/* 时间线 */
.timeline {
    position: relative;
    margin-top: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--color-primary), var(--color-primary-light));
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
    position: relative;
}

.timeline-marker {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 14px;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow);
}

.timeline-content {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 24px;
    box-shadow: var(--shadow);
    border: 1px solid var(--color-border-light);
    flex: 1;
}

.timeline-year {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.timeline-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--color-text);
}

.timeline-content p {
    color: var(--color-text-light);
    line-height: 1.6;
    margin: 0;
}

/* 企业文化 */
.culture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.culture-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--color-border-light);
    transition: var(--transition);
}

.culture-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.culture-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.culture-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--color-text);
}

.culture-card p {
    color: var(--color-text-light);
    font-size: 16px;
    line-height: 1.5;
}

/* 合作伙伴展示 */
.partners-showcase {
    margin-top: 40px;
    display: grid;
    gap: 40px;
}

.partner-tier h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--color-text);
}

.partner-tier .partner-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

/* 加入我们 */
.join-us-section {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    align-items: center;
}

.join-content h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--color-text);
}

.join-content p {
    font-size: 16px;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 16px;
}

.join-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 24px 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--color-text);
}

.benefit-icon {
    font-size: 20px;
}

.join-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.join-image .image-placeholder {
    width: 100%;
    height: 250px;
}

/* 子页面样式 */
.subpage-header {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: white;
    padding: 40px 0;
}

.subpage-header h1 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 8px;
}

.subpage-header p {
    font-size: 16px;
    opacity: 0.9;
}

/* 布局 */
.layout-sidebar {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
}

.sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: var(--shadow);
    border: 1px solid var(--color-border-light);
}

.sidebar-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--color-text);
}

.content-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--color-border-light);
}

.breadcrumb {
    font-size: 14px;
    color: var(--color-text-light);
}

.breadcrumb a {
    color: var(--color-text-light);
}

.breadcrumb a:hover {
    color: var(--color-primary);
}


/* 分页样式 */
.pagination {
    margin-top: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    flex-wrap: wrap;
}

.page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 8px 12px;
    border-radius: var(--border-radius);
    border: 1px solid var(--color-border);
    background-color: white;
    color: var(--color-text);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
    cursor: pointer;
}

.page-link:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}

.page-link.active {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    border-color: var(--color-primary);
    color: white;
    font-weight: 600;
    box-shadow: var(--shadow);
    transform: translateY(-1px);
}

.page-link.active:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.page-link.disabled {
    opacity: 0.5;
    pointer-events: none;
    cursor: not-allowed;
}

.page-ellipsis {
    padding: 0 8px;
    color: var(--color-text-light);
    font-weight: 600;
}

.need {
    color: var(--color-danger);
}
.img-fluid{
    border-radius: 50%;
}
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-content h1 {
        font-size: 24px;
    }

    .hero-panel {
        padding: 20px;
    }

    .stat-number {
        font-size: 20px;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .news-card {
        flex-direction: column;
    }

    .news-card {
        flex-direction: row;
        align-items: center;
    }

    .news-card-number {
        width: 70px;
        min-width: 70px;
        height: 70px;
        flex-direction: column;
        justify-content: center;
        padding: 8px;
        margin-right: 16px;
    }

    .news-number {
        font-size: 24px;
        margin-bottom: 4px;
    }

    .news-date {
        font-size: 10px;
    }

    .news-card-content {
        padding: 16px;
    }

    .hotel-card-image {
        height: 180px;
    }

    .hotel-swiper-pagination {
        bottom: -10px;
    }

    .hotel-swiper-wrapper {
        padding-bottom: 20px;
    }

    .hotel-swiper {
        padding-bottom: 50px;
    }

    .btn {
        padding: 12px 16px;
        font-size: 14px;
    }

    /* 移动端特别优化 */
    .meeting-title-section h1 {
        font-size: 24px;
    }

    .meeting-header {
        padding: 24px;
    }

    .detail-section {
        padding: 24px;
    }

    .speakers-grid {
        grid-template-columns: 1fr;
    }

    .speaker-card {
        flex-direction: column;
        text-align: center;
    }

    .speaker-avatar {
        margin-bottom: 12px;
    }

    .address-card {
        padding: 24px;
    }

    .map-content {
        padding: 24px;
    }

    .intro-content h2 {
        font-size: 24px;
    }

    .join-content h2 {
        font-size: 24px;
    }

    .timeline-year {
        font-size: 20px;
    }

    .timeline-content h3 {
        font-size: 16px;
    }

    /* 表单响应式 */
    .form-row-inline {
        flex-direction: column;
    }

    .form-row-inline .form-group {
        margin-bottom: 0;
    }

    /* 按钮响应式 */
    .btn-lg {
        padding: 14px 20px;
        font-size: 16px;
    }

    /* 分页响应式 */
    .pagination {
        gap: 4px;
        font-size: 13px;
    }

    .page-link {
        min-width: 36px;
        height: 36px;
        padding: 6px 10px;
        font-size: 13px;
    }

    /* 卡片响应式 */
    .contact-card,
    .feature-card,
    .advantage-card,
    .culture-card {
        padding: 20px;
    }

    /* 网格响应式 */
    .grid,
    .grid-2,
    .grid-3,
    .grid-4 {
        gap: 16px;
    }

    /* 关于我们页面超小屏幕优化 */
    .about-intro {
        gap: 20px;
    }

    .intro-content h2 {
        font-size: 20px;
    }

    .intro-image {
        min-height: 200px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .stat-numbera {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
        .newsmain {
        flex-direction: column;
        align-items: flex-start;
        position: relative;
    }

    .news-header {
        width: 80px;
        height: 80px;
        margin-bottom: 0;
        position: absolute;
        left: 15px;
        bottom: 16px; /* 与 news-footer 底部对齐，大致并排 */
    }

    .news-content h3 {
        font-size: 16px;
    }

    .news-summary {
        font-size: 13px;
    }

    .news-footer {
        flex: 1 1 auto;
        min-width: 0;
        width: 100%;
        justify-content: flex-end;
        flex-wrap: wrap;
        padding-right: 0;
        padding-top: 8px;
    }

    .news-footer .btn {
        flex-shrink: 0;
    }
    .sidebar {
    top: 0px!important;
    }

    .login-form-container,
    .register-form-container {
        padding: 18px;
    }

    .login-header,
    .register-header {
        margin-bottom: 20px;
    }

    /* 注册页：手机号 + 发送验证码按钮避免遮挡（改为换行显示） */
    .input-group {
        flex-wrap: wrap;
    }

    .send-code-btn {
        position: static;
        margin-top: 10px;
        width: 100%;
        justify-content: center;
    }

    .input-group input {
        padding-right: 12px;
    }

    /* 登录/注册页右侧特色内容在小屏下更紧凑 */
    .feature-list {
        gap: 14px;
        grid-template-columns: auto;
    }

    .feature-item {
        padding: 16px;
    }

        .news-detail-header {
        padding: 24px 16px;
    }

    .news-title-section h1 {
        font-size: 22px;
    }

    .news-subtitle {
        font-size: 14px;
    }

    .article-footer {
        padding: 20px 16px;
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .article-share {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

        .order-body.with-image {
        flex-direction: column;
    }

    .order-body-media {
        width: 100%;
    }
    .order-actions{
        justify-content: end;
    }

        .hotel-detail .detail-tabs {
        gap: 6px;
    }

    .hotel-detail .detail-tab {
        flex: 1 1 calc(50% - 6px);
        text-align: center;
        padding: 8px 10px;
        font-size: 13px;
    }

        .room-item {
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }

    .room-main {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .room-right {
        width: 100%;
        align-items: flex-start;
        text-align: left;
    }

    .room-thumb {
        height: 180px;
    }

        .hero {
        padding: 40px 0;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-stats {
        gap: 20px;
    }

    .section {
        padding: 20px 0;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .grid-3 {
        grid-template-columns: 1fr;
    }

    .grid-2 {
        grid-template-columns: 1fr;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .news-card-number {
        width: 80px;
        min-width: 80px;
        height: 80px;
        padding: 10px;
    }

    .news-number {
        font-size: 28px;
    }

    .news-date {
        font-size: 11px;
    }

    .hotel-swiper {
        padding-bottom: 40px;
    }

    /* footer 响应式已迁移至 css/common.css */

    .content-toolbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    /* 详情页面响应式 */
    .meeting-header {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .meeting-meta {
        grid-template-columns: 1fr;
    }

    .meeting-actions {
        flex-direction: column;
        gap: 16px;
    }

    .action-buttons {
        flex-direction: column;
        width: 100%;
    }

    .action-buttons .btn {
        width: 100%;
    }

    .timeline-item {
        gap: 20px;
    }

    .timeline-content {
        padding: 20px;
    }

    /* 联系页面响应式 */
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-card {
        padding: 24px;
    }

    .contact-icon {
        font-size: 40px;
    }

    /* 关于页面响应式 */
    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .advantage-card {
        padding: 24px;
    }

    .advantage-icon {
        font-size: 40px;
    }

    .culture-grid {
        grid-template-columns: 1fr;
    }

    .culture-card {
        padding: 24px;
    }

    .culture-icon {
        font-size: 40px;
    }

    .partner-tier .partner-logos {
        grid-template-columns: 1fr;
    }

    .join-benefits {
        grid-template-columns: 1fr;
    }

    /* 时间线响应式 */
    .timeline-item {
        flex-direction: column;
        gap: 16px;
        margin-bottom: 32px;
    }

    .timeline::before {
        left: 30px;
        display: none; /* 在移动端隐藏时间线 */
    }

    .timeline-marker {
        align-self: flex-start;
    }

    /* 统计数据响应式 */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .stat-number {
        font-size: 28px;
    }

    /* 个人信息页面响应式 */
    .profile-card-header {
        padding: 16px;
    }

    .profile-avatar-block {
        grid-template-columns: 1fr;
        padding: 16px;
        text-align: center;
    }

    .avatar-preview {
        margin: 0 auto;
    }

    .avatar-btns {
        justify-content: center;
    }

    .profile-form {
        padding: 16px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .field-inline {
        flex-direction: column;
        align-items: stretch;
    }

    .profile-actions .btn {
        width: 100%;
    }

    .profile-tip {
        width: 100%;
    }

    /* 关于我们页面响应式 */
    .about-intro {
        gap: 24px;
    }

    .intro-content h2 {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .intro-content p {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .intro-image {
        height: auto;
        min-height: 250px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .stat-numbera {
        font-size: 28px;
    }

    .stat-labela {
        font-size: 13px;
    }
    .order-amount strong {
        font-size: 14px;
    }
}


@media (max-width: 1199px) {
    .room-item {
        grid-template-columns: 220px 1fr;
    }

    .room-thumb {
        height: 140px;
    }
}

/* 登录/注册页响应式修复（追加覆盖，避免小屏遮挡） */
@media (max-width: 1024px) {

    .newsmain {
        gap: 16px;
    }
    .sidebar {
    top: 0px!important;
    }

    .login-section,
    .register-section {
        grid-template-columns: 1fr;
        gap: 32px;
        margin: 24px 0;
        align-items: stretch;
        min-height: auto;
    }

    .login-form-container,
    .register-form-container {
        max-width: 100%;
        padding: 24px;
    }

    .login-features,
    .register-features {
        position: static;
        top: auto;
    }

    .login-features {
        justify-content: flex-start;
    }

    /* 登录 / 注册页特色模块：小于 1024px 时一行两列 */
    .feature-list {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    /* 资讯详情响应式（放在底部样式之后，避免被覆盖） */
    .news-detail-header {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .news-detail-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .news-actions {
        flex-direction: row;
        justify-content: flex-start;
    }

    .action-buttons {
        flex-direction: row;
    }
    .room-item {
        grid-template-columns: 1fr;
    }

    .room-main {
        margin-top: 8px;
    }
       .hero-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero-panel {
        order: -1;
    }

    .layout-sidebar {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .meeting-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hotel-swiper {
        padding-bottom: 40px;
    }

    .location-section {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about-intro {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .join-us-section {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

