/* 职业体验页面样式 */
.career-explorer {
    margin-bottom: 30px;
}

.career-search {
    display: flex;
    margin-bottom: 20px;
}

.career-search input {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-right: none;
    border-radius: 25px 0 0 25px;
    outline: none;
}

.career-search input:focus {
    border-color: #ff6b6b;
}

.career-search .search-btn {
    padding: 12px 20px;
    background: #ff6b6b;
    color: white;
    border: 2px solid #ff6b6b;
    border-radius: 0 25px 25px 0;
    cursor: pointer;
}

.career-categories {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.career-category {
    padding: 8px 16px;
    border: 2px solid #e9ecef;
    background: white;
    color: #6c757d;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.career-category.active,
.career-category:hover {
    background: #6c5ce7;
    color: white;
    border-color: #6c5ce7;
}

.career-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.career-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.career-card:hover {
    transform: translateY(-5px);
}

.career-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6c5ce7, #a29bfe);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.career-icon i {
    font-size: 24px;
}

.career-info h3 {
    margin-bottom: 10px;
    color: #2c3e50;
}

.career-desc {
    color: #7f8c8d;
    margin-bottom: 15px;
    line-height: 1.5;
}

.career-details {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 12px;
}

.salary-range {
    background: #d4edda;
    color: #155724;
    padding: 3px 8px;
    border-radius: 12px;
}

.education-req {
    background: #cce5ff;
    color: #004085;
    padding: 3px 8px;
    border-radius: 12px;
}

.career-skills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.skill-tag {
    background: #f8f9fa;
    color: #6c757d;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    border: 1px solid #e9ecef;
}

.btn-explore {
    width: 100%;
    background: #6c5ce7;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-explore:hover {
    background: #5f3dc4;
}

.career-test {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
}

.career-test h2 {
    margin-bottom: 20px;
    color: #2c3e50;
}

.test-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.test-info h3 {
    margin-bottom: 10px;
    color: #2c3e50;
}

.test-info p {
    color: #7f8c8d;
    margin-bottom: 15px;
}

.test-features {
    list-style: none;
    padding: 0;
}

.test-features li {
    color: #6c757d;
    margin-bottom: 5px;
    font-size: 14px;
}

.test-features i {
    color: #00b894;
    margin-right: 8px;
}

.btn-start-test {
    background: #00b894;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn-start-test:hover {
    background: #00a085;
}

/* 城市风光页面样式 */
.city-explorer {
    margin-bottom: 30px;
}

.featured-city {
    margin-bottom: 30px;
}

.city-banner {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: flex;
}

.city-image-placeholder {
    background: linear-gradient(135deg, #fd79a8, #fdcb6e);
    color: white;
    width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.city-image-placeholder i {
    font-size: 64px;
}

.city-info {
    padding: 30px;
    flex: 1;
}

.city-info h2 {
    margin-bottom: 10px;
    color: #2c3e50;
}

.city-info p {
    color: #7f8c8d;
    margin-bottom: 15px;
    line-height: 1.5;
}

.city-highlights {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.highlight-tag {
    background: #e9ecef;
    color: #6c757d;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
}

.btn-explore-city {
    background: #fd79a8;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn-explore-city:hover {
    background: #e84393;
}

.city-categories {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.city-category {
    padding: 8px 16px;
    border: 2px solid #e9ecef;
    background: white;
    color: #6c757d;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.city-category.active,
.city-category:hover {
    background: #fd79a8;
    color: white;
    border-color: #fd79a8;
}

.city-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.city-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.city-card:hover {
    transform: translateY(-5px);
}

.city-thumbnail {
    background: linear-gradient(135deg, #74b9ff, #0984e3);
    color: white;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.city-thumbnail i {
    font-size: 36px;
}

.city-details {
    padding: 20px;
}

.city-details h3 {
    margin-bottom: 5px;
    color: #2c3e50;
}

.city-subtitle {
    color: #7f8c8d;
    font-size: 14px;
    margin-bottom: 10px;
}

.city-stats {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
    font-size: 12px;
    color: #95a5a6;
}

.city-attractions {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.city-attractions span {
    background: #f8f9fa;
    color: #6c757d;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 11px;
}

.btn-visit {
    width: 100%;
    background: #74b9ff;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-visit:hover {
    background: #0984e3;
}

.virtual-tour {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
}

.virtual-tour h2 {
    margin-bottom: 20px;
    color: #2c3e50;
}

.tour-interface {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.panorama-viewer {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.panorama-placeholder i {
    font-size: 48px;
    margin-bottom: 15px;
    display: block;
}

.tour-controls {
    padding: 20px;
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.tour-spot {
    padding: 8px 16px;
    border: 2px solid #e9ecef;
    background: white;
    color: #6c757d;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.tour-spot.active,
.tour-spot:hover {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

/* 大学生活页面样式 */
.university-intro {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    align-items: center;
}

.intro-video {
    flex: 1;
    position: relative;
}

.video-placeholder {
    background: linear-gradient(135deg, #a29bfe, #6c5ce7);
    color: white;
    height: 250px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.video-placeholder i {
    font-size: 48px;
    margin-bottom: 15px;
}

.btn-play-video {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(255,255,255,0.9);
    color: #6c5ce7;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-play-video:hover {
    background: white;
    transform: scale(1.05);
}

.intro-content {
    flex: 1;
}

.intro-content h2 {
    margin-bottom: 20px;
    color: #2c3e50;
}

.university-features {
    list-style: none;
    padding: 0;
}

.university-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.university-features i {
    color: #6c5ce7;
    width: 20px;
}

.university-majors {
    margin-bottom: 40px;
}

.university-majors h2 {
    margin-bottom: 20px;
    color: #2c3e50;
}

.major-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
}

.major-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.major-card:hover {
    transform: translateY(-5px);
}

.major-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fd79a8, #fdcb6e);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.major-icon i {
    font-size: 24px;
}

.major-card h3 {
    margin-bottom: 10px;
    color: #2c3e50;
}

.major-desc {
    color: #7f8c8d;
    margin-bottom: 15px;
    line-height: 1.5;
}

.major-info {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 12px;
}

.duration {
    background: #cce5ff;
    color: #004085;
    padding: 3px 8px;
    border-radius: 12px;
}

.difficulty {
    background: #fff3cd;
    color: #856404;
    padding: 3px 8px;
    border-radius: 12px;
}

.career-prospects {
    margin-bottom: 20px;
}

.career-prospects h4 {
    margin-bottom: 8px;
    color: #2c3e50;
    font-size: 14px;
}

.career-prospects span {
    background: #f8f9fa;
    color: #6c757d;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 11px;
    margin-right: 8px;
    margin-bottom: 5px;
    display: inline-block;
}

.btn-learn-more {
    width: 100%;
    background: #fd79a8;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-learn-more:hover {
    background: #e84393;
}

.campus-life h2 {
    margin-bottom: 20px;
    color: #2c3e50;
}

.life-aspects {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.aspect-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.aspect-card:hover {
    transform: translateY(-5px);
}

.aspect-card i {
    font-size: 36px;
    color: #6c5ce7;
    margin-bottom: 15px;
}

.aspect-card h3 {
    margin-bottom: 10px;
    color: #2c3e50;
}

.aspect-card p {
    color: #7f8c8d;
    margin-bottom: 20px;
    line-height: 1.5;
}

.btn-experience {
    background: #6c5ce7;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-experience:hover {
    background: #5f3dc4;
}

/* 安全教育页面样式 */
.safety-modules {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.safety-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.safety-card:hover {
    transform: translateY(-5px);
}

.safety-card.important {
    border-top: 4px solid #e74c3c;
}

.card-header {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.card-header i {
    font-size: 24px;
}

.card-header h3 {
    margin: 0;
}

.card-content {
    padding: 20px;
}

.card-content p {
    color: #7f8c8d;
    margin-bottom: 15px;
    line-height: 1.5;
}

.safety-topics {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.safety-topics li {
    padding: 8px 0;
    border-bottom: 1px solid #f8f9fa;
    color: #2c3e50;
    position: relative;
    padding-left: 20px;
}

.safety-topics li::before {
    content: '•';
    color: #e74c3c;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.btn-learn {
    width: 100%;
    background: #e74c3c;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn-learn:hover {
    background: #c0392b;
}

.safety-games {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
}

.safety-games h2 {
    margin-bottom: 20px;
    color: #2c3e50;
}

.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.game-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.game-card:hover {
    transform: translateY(-3px);
}

.game-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00b894, #00cec9);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.game-icon i {
    font-size: 24px;
}

.game-card h3 {
    margin-bottom: 10px;
    color: #2c3e50;
}

.game-card p {
    color: #7f8c8d;
    margin-bottom: 15px;
    line-height: 1.5;
}

.game-stats {
    margin-bottom: 20px;
    font-size: 14px;
    color: #95a5a6;
}

.btn-play-game {
    background: #00b894;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn-play-game:hover {
    background: #00a085;
}

/* 紧急求助页面样式 */
.emergency-contacts {
    margin-bottom: 40px;
}

.emergency-contacts h2 {
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.emergency-contact {
    background: white;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.emergency-contact:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.contact-icon.police {
    background: linear-gradient(135deg, #74b9ff, #0984e3);
}

.contact-icon.fire {
    background: linear-gradient(135deg, #e17055, #d63031);
}

.contact-icon.medical {
    background: linear-gradient(135deg, #00b894, #00cec9);
}

.contact-icon.help {
    background: linear-gradient(135deg, #fdcb6e, #e17055);
}

.contact-icon i {
    font-size: 32px;
    color: white;
}

.contact-info h3 {
    margin-bottom: 10px;
    color: #2c3e50;
}

.phone-number {
    font-size: 24px;
    font-weight: bold;
    color: #e74c3c;
    margin-bottom: 10px;
}

.contact-info p {
    color: #7f8c8d;
    margin-bottom: 20px;
    line-height: 1.5;
}

.btn-call {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn-call:hover {
    background: #c0392b;
}

.emergency-guide {
    margin-bottom: 40px;
}

.emergency-guide h2 {
    margin-bottom: 20px;
    color: #2c3e50;
}

.guide-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.guide-tab {
    padding: 10px 16px;
    border: 2px solid #e9ecef;
    background: white;
    color: #6c757d;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.guide-tab.active,
.guide-tab:hover {
    background: #e74c3c;
    color: white;
    border-color: #e74c3c;
}

.guide-content {
    display: none;
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.guide-content.active {
    display: block;
}

.guide-steps {
    display: grid;
    gap: 20px;
}

.step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h4 {
    margin-bottom: 8px;
    color: #2c3e50;
}

.step-content p {
    color: #7f8c8d;
    line-height: 1.5;
}

.quick-help {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
}

.quick-help h2 {
    margin-bottom: 20px;
    color: #2c3e50;
    text-align: center;
}

.help-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.help-btn {
    padding: 20px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    color: white;
    font-weight: bold;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.help-btn.danger {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.help-btn.medical {
    background: linear-gradient(135deg, #00b894, #00cec9);
}

.help-btn.lost {
    background: linear-gradient(135deg, #fdcb6e, #e17055);
}

.help-btn.emotional {
    background: linear-gradient(135deg, #74b9ff, #0984e3);
}

.help-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.help-btn i {
    font-size: 24px;
}

/* 作品展示页面样式 */
.upload-section {
    margin-bottom: 30px;
}

.upload-card {
    background: linear-gradient(135deg, #a29bfe, #6c5ce7);
    color: white;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
}

.upload-card i {
    font-size: 48px;
    margin-bottom: 15px;
}

.upload-card h3 {
    margin-bottom: 10px;
}

.upload-card p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.btn-upload-work {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-upload-work:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

.showcase-categories {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.showcase-category {
    padding: 8px 16px;
    border: 2px solid #e9ecef;
    background: white;
    color: #6c757d;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.showcase-category.active,
.showcase-category:hover {
    background: #a29bfe;
    color: white;
    border-color: #a29bfe;
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.work-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    position: relative;
}

.work-card:hover {
    transform: translateY(-5px);
}

.work-image {
    background: linear-gradient(135deg, #fd79a8, #fdcb6e);
    color: white;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.work-image i {
    font-size: 48px;
}

.work-info {
    padding: 20px;
}

.work-info h3 {
    margin-bottom: 5px;
    color: #2c3e50;
}

.work-author {
    color: #7f8c8d;
    font-size: 14px;
    margin-bottom: 8px;
}

.work-desc {
    color: #95a5a6;
    font-size: 13px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.work-stats {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 12px;
    color: #7f8c8d;
}

.work-actions {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    gap: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.work-card:hover .work-actions {
    opacity: 1;
}

.btn-like, .btn-comment, .btn-share {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-like {
    background: rgba(231, 76, 60, 0.8);
}

.btn-like:hover {
    background: #e74c3c;
}

.btn-comment {
    background: rgba(116, 185, 255, 0.8);
}

.btn-comment:hover {
    background: #74b9ff;
}

.btn-share {
    background: rgba(0, 184, 148, 0.8);
}

.btn-share:hover {
    background: #00b894;
}

.featured-works {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
}

.featured-works h2 {
    margin-bottom: 20px;
    color: #2c3e50;
}

.featured-work {
    background: white;
    padding: 25px;
    border-radius: 10px;
    display: flex;
    gap: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.featured-image {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #fdcb6e, #e17055);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.featured-image i {
    font-size: 36px;
}

.featured-info {
    flex: 1;
}

.featured-info h3 {
    margin-bottom: 8px;
    color: #2c3e50;
}

.featured-author {
    color: #7f8c8d;
    font-size: 14px;
    margin-bottom: 10px;
}

.featured-desc {
    color: #95a5a6;
    margin-bottom: 15px;
    line-height: 1.5;
}

.featured-excerpt {
    background: #f8f9fa;
    padding: 15px;
    border-left: 4px solid #fdcb6e;
    margin-bottom: 15px;
    font-style: italic;
    color: #2c3e50;
}

.btn-read-full {
    background: #fdcb6e;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-read-full:hover {
    background: #e17055;
}

/* 梦想墙页面样式 */
.dream-post {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.post-dream-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.post-dream-card h3 {
    margin-bottom: 15px;
    color: #2c3e50;
}

#dreamText {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 16px;
    line-height: 1.6;
    resize: vertical;
    margin-bottom: 15px;
    outline: none;
    font-family: inherit;
}

#dreamText:focus {
    border-color: #ff6b6b;
}

.dream-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#dreamCategory {
    padding: 8px 12px;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    outline: none;
}

.btn-post-dream {
    background: #ff6b6b;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn-post-dream:hover {
    background: #e55656;
}

.dreams-wall h2 {
    margin-bottom: 20px;
    color: #2c3e50;
}

.dreams-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.dream-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border-left: 4px solid #ddd;
}

.dream-card:hover {
    transform: translateY(-3px);
}

.dream-card.career {
    border-left-color: #6c5ce7;
}

.dream-card.study {
    border-left-color: #74b9ff;
}

.dream-card.family {
    border-left-color: #fd79a8;
}

.dream-card.world {
    border-left-color: #00b894;
}

.dream-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.dreamer-name {
    font-weight: bold;
    color: #2c3e50;
}

.dream-category {
    background: #f8f9fa;
    color: #6c757d;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 11px;
}

.dream-content {
    color: #2c3e50;
    line-height: 1.6;
    margin-bottom: 15px;
}

.dream-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dream-time {
    color: #95a5a6;
    font-size: 12px;
}

.dream-actions {
    display: flex;
    gap: 10px;
}

.btn-cheer, .btn-encourage {
    padding: 6px 12px;
    border: 1px solid #e9ecef;
    background: white;
    color: #6c757d;
    border-radius: 15px;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.3s ease;
}

.btn-cheer:hover {
    background: #ff6b6b;
    color: white;
    border-color: #ff6b6b;
}

.btn-encourage:hover {
    background: #74b9ff;
    color: white;
    border-color: #74b9ff;
}

.dream-stats {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
}

.dream-stats h2 {
    margin-bottom: 20px;
    color: #2c3e50;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.stat-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.stat-number {
    font-size: 32px;
    font-weight: bold;
    color: #ff6b6b;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 16px;
    color: #2c3e50;
    margin-bottom: 5px;
}

.stat-desc {
    font-size: 12px;
    color: #7f8c8d;
}

/* 响应式设计补充 */
@media (max-width: 768px) {
    .city-banner {
        flex-direction: column;
    }
    
    .city-image-placeholder {
        width: 100%;
        height: 200px;
    }
    
    .university-intro {
        flex-direction: column;
    }
    
    .test-card,
    .featured-work {
        flex-direction: column;
        text-align: center;
    }
    
    .dream-options {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    .help-buttons {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}