/* ===== 基础样式 ===== */
body { 
    margin: 0; 
    font-family: '微软雅黑', Arial, sans-serif; 
    background: #232323; 
    color: #fff; 
}

/* ===== 导航栏样式 ===== */
.navbar { 
    padding: 0 32px; 
    display: flex; 
    align-items: center; 
    justify-content: center; /* 水平居中 */
    height: 56px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1000;
}
.navbar .logo { 
    font-size: 1.1em; 
    font-weight: bold; 
    color: #fff; 
    margin-right: 32px; 
    letter-spacing: 2px; 
}
.navbar nav { 
    flex: 1; 
}
.navbar nav a { 
    color: #fff; 
    text-decoration: none; 
    margin: 0 18px; 
    font-size: 1em; 
    transition: color 0.2s; 
}
.navbar nav a.active, 
.navbar nav a:hover { 
    color: #ffb400; 
}

/* ===== 横幅样式 ===== */
.banner { 
    background: url(/images/banner.png) center/cover no-repeat;
    height: 320px;
    display: flex;
    align-items: flex-end;
    justify-content: right;
    position: relative;
}
.banner .banner-title { 
    background: rgb(249 246 246 / 50%);
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 2.2em;
    color: #F73D0B;
    font-weight: bold;
    font-family: DFPLiJinHeiW8;
    letter-spacing: 4px;
    margin: 28px 168px;
    height: 78px;
}

/* ===== 统计数据样式 ===== */
.stats { 
    display: flex; 
    justify-content: center; 
    background: #2d2d2d; 
    padding: 32px 0; 
    gap: 48px; 
}
.stat { 
    text-align: center; 
}
.stat .num { 
    font-size: 2em; 
    color: #ffb400; 
    font-weight: bold; 
}
.stat .desc { 
    font-size: 1em; 
    color: #ccc; 
    margin-top: 6px; 
}

/* ===== 页面区域样式 ===== */
.sections { 
    background: #232323; 
    padding: 36px 0 0 0; 
}
.section-row { 
    display: flex; 
    justify-content: center; 
}
.section {
    margin-bottom: 80px;
}
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #333;
    position: relative;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 2px;
}

/* ===== 卡片样式 ===== */
.card { background: #fff; 
    /* background: #fff; 
    color: #232323; 
    border-radius: 10px; 
    box-shadow: 0 2px 12px rgba(0,0,0,0.08); 
    width: 220px; 
    overflow: hidden; 
    transition: transform 0.2s;  */
}
.card:hover { 
    transform: translateY(-6px) scale(1.03); 
}
.card img { 
    width: 100%; 
    height: 165px; 
    object-fit: cover; 
}
.card .card-title { 
    font-size: 1.1em; 
    font-weight: bold; 
    margin: 12px 0 6px 0; 
    text-align: center; 
}
.card .card-desc { 
    font-size: 0.98em; 
    color: #666; 
    text-align: center; 
    margin-bottom: 12px; 
}

/* ===== 容器样式 ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== 主要内容区域 ===== */
.main-content {
    padding: 80px 0;
}

/* ===== 英雄区域样式 ===== */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}
.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}
.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}
.hero p {
    font-size: 1.3rem;
    opacity: 0.9;
    line-height: 1.8;
}

/* ===== 页面头部样式 ===== */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
}
.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
}
.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}
.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

/* ===== 形象大使样式 ===== */
.ambassador-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 40px;
}
.ambassador-card {
    flex: 1;
    background: #333;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}
.ambassador-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}
.ambassador-photo {
    position: relative;
    height: 200px;
    overflow: hidden;
}
.ambassador-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.ambassador-card:hover .ambassador-photo img {
    transform: scale(1.1);
}
.ambassador-tag {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: #ffb400;
    color: #222;
    font-size: 12px;
    font-weight: bold;
    padding: 3px 12px;
    border-radius: 15px;
}
.ambassador-info {
    padding: 20px;
}
.ambassador-name {
    font-size: 22px;
    color: #fff;
    margin: 0 0 5px 0;
}
.ambassador-title {
    font-size: 16px;
    color: #ffb400;
    margin-bottom: 15px;
}
.ambassador-desc {
    font-size: 14px;
    color: #ddd;
    line-height: 1.6;
    margin-bottom: 15px;
}
.ambassador-achievements {
    margin-bottom: 15px;
}
.achievement {
    font-size: 14px;
    color: #bbb;
    margin-bottom: 5px;
}

/* 成就系统扩展样式 */
.achievement-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.stat-number {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9em;
    opacity: 0.9;
}

.achievement-filters {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 16px;
    border: 2px solid #ddd;
    background: white;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9em;
}

.filter-btn:hover {
    border-color: #667eea;
    color: #667eea;
}

.filter-btn.active {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

.achievement-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.action-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.action-btn.primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.action-btn.secondary {
    background: #f8f9fa;
    color: #495057;
    border: 1px solid #dee2e6;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

#achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.achievement-progress {
    margin-top: 15px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #28a745, #20c997);
    border-radius: 4px;
    transition: width 0.5s ease;
}

.progress-text {
    font-size: 0.85em;
    color: #6c757d;
}

.achievement-completed {
    color: #28a745;
    font-weight: bold;
    font-size: 0.9em;
}

/* 模态框样式 */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #dee2e6;
}

.modal-title {
    font-size: 1.5em;
    font-weight: bold;
    color: #333;
}

.close {
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #aaa;
    transition: color 0.3s ease;
}

.close:hover {
    color: #333;
}

/* 排行榜表格样式 */
.leaderboard-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.leaderboard-table th,
.leaderboard-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #dee2e6;
}

.leaderboard-table th {
    background: #f8f9fa;
    font-weight: bold;
    color: #495057;
}

.leaderboard-table tr:hover {
    background: #f8f9fa;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

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

/* 分享链接样式 */
.share-link-container {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.share-link-container input {
    flex: 1;
}

.social-share {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.social-btn {
    padding: 10px 15px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    min-width: 80px;
}

.social-btn.wechat {
    background: #07c160;
    color: white;
}

.social-btn.weibo {
    background: #e6162d;
    color: white;
}

.social-btn.qq {
    background: #12b7f5;
    color: white;
}

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.ambassador-stats {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #444;
    padding-top: 15px;
}

/* ===== 画廊样式 ===== */
.ambassador-gallery {
    margin-bottom: 30px;
}
.gallery-title {
    text-align: center;
    color: #ddd;
    font-size: 18px;
    margin-bottom: 20px;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.gallery-item {
    height: 150px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}
.gallery-item:hover {
    transform: scale(1.05);
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== 按钮样式 ===== */
.view-more-container {
    text-align: center;
}
.view-more-btn {
    display: inline-block;
    background: transparent;
    color: #ffb400;
    border: 2px solid #ffb400;
    padding: 8px 25px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s;
}
.view-more-btn:hover {
    background: #ffb400;
    color: #222;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 180, 0, 0.3);
}

/* ===== 健康理念样式 ===== */
.philosophy-intro {
    text-align: center;
    color: #ddd;
    font-size: 16px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 40px;
    background: #333;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
}
.philosophy-card {
    display: flex;
    background: #333;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}
.philosophy-card:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}
.philosophy-number {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #ffb400;
    color: #222;
    font-size: 16px;
    font-weight: bold;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}
.philosophy-icon {
    flex: 0 0 120px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.philosophy-icon img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ffb400;
    transition: transform 0.3s;
}
.philosophy-card:hover .philosophy-icon img {
    transform: scale(1.1);
}
.philosophy-content {
    flex: 1;
    padding: 20px 20px 20px 0;
}
.philosophy-title {
    font-size: 20px;
    color: #ffb400;
    margin: 0 0 5px 0;
}
.philosophy-subtitle {
    font-size: 14px;
    color: #aaa;
    font-style: italic;
    margin-bottom: 15px;
}
.philosophy-desc {
    font-size: 14px;
    color: #ddd;
    line-height: 1.6;
}
.philosophy-list {
    list-style: none;
    padding: 0;
    margin: 10px 0;
}
.philosophy-list li {
    margin-bottom: 5px;
    color: #bbb;
}
.check-icon {
    color: #ffb400;
    margin-right: 5px;
    font-weight: bold;
}
.philosophy-quote {
    font-style: italic;
    color: #ffb400;
    font-size: 13px;
    margin-top: 15px;
    padding-left: 10px;
    border-left: 2px solid #ffb400;
}
.mission-box {
    background: #333;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* ===== 页面特定样式已移至独立CSS文件 ===== */

/* ===== 人才市场样式 ===== */
.talent-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background: #f8f9fa;
    min-height: 100vh;
}

.talent-header {
    text-align: center;
    padding: 60px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 15px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.talent-header::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"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: float 20s infinite linear;
}

.talent-header h1 {
    font-size: 3em;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    position: relative;
    z-index: 1;
}

.talent-header p {
    font-size: 1.2em;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

/* 搜索区域 */
.search-section {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.search-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    align-items: end;
}

.search-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    height: fit-content;
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

/* 标签页 */
.talent-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.tab-btn {
    background: white;
    color: #666;
    border: 2px solid #ddd;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.tab-btn.active,
.tab-btn:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

/* 人才网格 */
.talent-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.talent-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    position: relative;
}

.talent-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.talent-avatar {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.talent-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.talent-card:hover .talent-avatar img {
    transform: scale(1.1);
}

.talent-status {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #4CAF50;
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85em;
    font-weight: bold;
}

.talent-status.busy {
    background: #FF9800;
}

.talent-info {
    padding: 25px;
}

.talent-name {
    font-size: 1.4em;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.talent-title {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 15px;
}

.talent-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95em;
}

/* 技能标签 */
.talent-skills {
    margin-bottom: 20px;
}

.skills-title {
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    font-size: 0.9em;
}

.skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.skill-tag {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8em;
    font-weight: 500;
}

/* 统计数据 */
.talent-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
}

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

.stat-number {
    font-size: 1.2em;
    font-weight: bold;
    color: #667eea;
    display: block;
}

.stat-label {
    font-size: 0.8em;
    color: #666;
    margin-top: 2px;
}

/* 操作按钮 */
.talent-actions {
    display: flex;
    gap: 10px;
}

.contact-btn,
.profile-btn {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}

.contact-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.profile-btn {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
}

.contact-btn:hover,
.profile-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.profile-btn:hover {
    background: #667eea;
    color: white;
}

/* 赛事网格优化 */
.competition-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.competition-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    position: relative;
}

.competition-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.competition-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.competition-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.competition-status {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #4CAF50;
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85em;
    font-weight: bold;
}

.competition-status.hot {
    background: #FF5722;
    animation: pulse 2s infinite;
}

.competition-status.ending {
    background: #FF9800;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.competition-info {
    padding: 25px;
}

.competition-title {
    font-size: 1.4em;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.3;
}

.competition-details {
    margin-bottom: 20px;
}

.competition-detail {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    color: #666;
    font-size: 0.9em;
}

.competition-icon {
    margin-right: 10px;
    width: 20px;
}

.prize-section {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.prize-title {
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.prize-list {
    font-size: 0.9em;
    color: #666;
    line-height: 1.6;
}

.action-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.registration-info {
    text-align: left;
}

.registration-fee {
    font-size: 1.2em;
    font-weight: bold;
    color: #ff6b6b;
}

.register-btn {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.register-btn:hover {
    background: linear-gradient(135deg, #ee5a24 0%, #d63031 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .talent-container {
        padding: 10px;
    }
    
    .talent-header {
        padding: 40px 20px;
    }
    
    .talent-header h1 {
        font-size: 2.2em;
    }
    
    .search-form {
        grid-template-columns: 1fr;
    }
    
    .talent-tabs {
        gap: 5px;
    }
    
    .tab-btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    
    .talent-grid,
    .competition-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .talent-stats {
        flex-direction: column;
        gap: 10px;
    }
    
    .stat-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .action-section {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    .register-btn {
        width: 100%;
        text-align: center;
    }
}

/* ===== 表单样式 ===== */
/* ===== 表单步骤样式已移至对应页面CSS文件 ===== */

/* ===== 底部样式 ===== */
.footer { 
    background: #1a1a1a;
    background-image: url('/images/bbg.png');  
    background-repeat: no-repeat;    
    color: #ffffff;
    padding: 40px 0 0 0;
    margin-top: 40px;
    text-align: center;
    font-size: 0.95em;
}
.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.footer-section {
    flex: 1;
    min-width: 200px;
    margin-bottom: 30px;
    padding: 0 15px;
}
.footer-section h3 {
    color: #ffb400;
    font-size: 18px;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}
.footer-section h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: #ffb400;
}
.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-section ul li {
    margin-bottom: 8px;
}
.footer-section ul li a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 14px;
}
.footer-section ul li a:hover {
    color: #ffb400;
    padding-left: 5px;
}
.footer-section p {
    margin-bottom: 10px;
    font-size: 14px;
    display: flex;
    align-items: center;
}
.footer-section p i {
    margin-right: 10px;
    color: #ffb400;
}
.social-icons {
    display: flex;
    margin-top: 15px;
}
.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #333;
    border-radius: 50%;
    margin-right: 10px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
}
.social-icon:hover {
    background: #ffb400;
    transform: translateY(-3px);
}
.footer-bottom {
    border-top: 1px solid #333;
    padding: 20px 0;
    text-align: center;
    margin-top: 20px;
}
.footer-logo {
    color: #ffb400;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    letter-spacing: 1px;
}
.copyright {
    font-size: 13px;
    color: #777;
}

/* ===== 图标样式 ===== */
.icon-location:before { content: '📍'; }
.icon-phone:before { content: '📞'; }
.icon-email:before { content: '📧'; }
.icon-weibo:before { content: '微'; }
.icon-wechat:before { content: '微'; }
.icon-douyin:before { content: '抖'; }

/* ===== 漂浮二维码样式 ===== */
.floating-qr {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 1000;
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: all 0.3s ease;
}
.floating-qr:hover {
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.4);
}
.floating-qr img {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    display: block;
}
.floating-qr .qr-text {
    color: #333;
    font-size: 14px;
    font-weight: bold;
    margin-top: 10px;
    line-height: 1.2;
}

/* ===== 响应式设计 ===== */
@media (max-width: 900px) {
    .section-row { 
        flex-direction: column; 
        align-items: center; 
    }
    .stats { 
        flex-direction: column; 
        gap: 18px; 
    }
    .ambassador-container {
        flex-direction: column;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
    }
    .footer-section {
        width: 100%;
        margin-bottom: 20px;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .achievement-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .achievement-filters {
        justify-content: center;
    }
    
    .achievement-actions {
        justify-content: center;
    }
    
    #achievements-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        margin: 10% auto;
        width: 95%;
        padding: 20px;
    }
    
    .social-share {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 600px) {
    .banner .banner-title {
        font-size: 1.8em;
        padding: 16px 24px;
    }
    .navbar {
        padding: 0 16px;
    }
    .navbar .logo {
        margin-right: 16px;
    }
    .navbar nav a {
        margin: 0 8px;
        font-size: 0.9em;
    }
    .floating-qr {
        right: 10px;
        padding: 10px;
    }
    .floating-qr img {
        width: 80px;
        height: 80px;
    }
    .floating-qr .qr-text {
        font-size: 12px;
    }
}