/* 全局样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

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

ul {
    list-style: none;
}

/* 头部导航样式 */
.main-site-header {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.primary-navigation-bar {
    padding: 0 20px;
}

.nav-container-fluid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.site-brand-logo a {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.site-brand-logo a:hover {
    transform: scale(1.05);
}

.header-menu-list {
    display: flex;
    gap: 30px;
}

.header-menu-list a {
    color: #fff;
    font-size: 16px;
    padding: 8px 16px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.header-menu-list a:hover,
.nav-link-active {
    background-color: rgba(255,255,255,0.2);
}

/* 首页样式 */
.home-page-wrapper {
    background: #fff;
}

.hero-banner-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 80px 20px;
}

.hero-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text-container {
    animation: fadeInLeft 1s ease;
}

.hero-main-title {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle-text {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-cta-button {
    display: inline-block;
    background: #fff;
    color: #667eea;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.hero-image-container {
    animation: fadeInRight 1s ease;
}

.hero-banner-image {
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

/* 内容区域 */
.section-container-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.section-heading-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
    position: relative;
}

.section-heading-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    margin: 15px auto 0;
    border-radius: 2px;
}

/* 特色内容卡片 */
.featured-content-section {
    background: #fff;
}

.content-grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.content-card-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-image-wrapper {
    overflow: hidden;
    height: 220px;
}

.card-thumbnail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.content-card-item:hover .card-thumbnail-img {
    transform: scale(1.1);
}

.card-info-section {
    padding: 25px;
}

.card-title-heading {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.card-description-text {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.8;
}

.card-meta-info {
    color: #999;
    font-size: 14px;
}

/* 分类展示 */
.category-showcase-section {
    background: #f8f9fa;
}

.category-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.category-box-item {
    background: #fff;
    padding: 40px 30px;
    text-align: center;
    border-radius: 12px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.category-box-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.category-icon-image {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    border-radius: 50%;
    object-fit: cover;
}

.category-name-text {
    font-size: 22px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.category-count-label {
    color: #999;
    font-size: 14px;
}

/* 用户评价 */
.testimonial-review-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.review-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card-box {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.user-avatar-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 auto 20px;
    border: 3px solid #fff;
}

.review-content-text {
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.8;
}

.reviewer-name-tag {
    display: block;
    text-align: right;
    font-weight: bold;
}

/* 统计数据 */
.statistics-display-section {
    background: #2c3e50;
    color: #fff;
}

.stats-grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-number-large {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #667eea;
}

.stat-label-text {
    font-size: 18px;
    opacity: 0.9;
}

/* 底部样式 */
.main-site-footer {
    background: #1a1a1a;
    color: #fff;
    padding: 50px 20px 20px;
}

.footer-content-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-column-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-heading-text {
    font-size: 18px;
    margin-bottom: 20px;
    color: #667eea;
}

.footer-description-para {
    color: #ccc;
    line-height: 1.8;
}

.footer-menu-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-link-item {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-link-item:hover {
    color: #667eea;
}

.footer-contact-item {
    color: #ccc;
    margin-bottom: 10px;
}

.footer-bottom-bar {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
}

.copyright-text-line {
    color: #999;
    font-size: 14px;
}

/* 分类页面样式 */
.category-page-wrapper {
    background: #fff;
}

.page-banner-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 20px;
    text-align: center;
    color: #fff;
}

.page-title-main {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-subtitle-desc {
    font-size: 20px;
    opacity: 0.9;
}

.category-filter-section {
    background: #fff;
    padding: 30px 20px;
    border-bottom: 1px solid #eee;
}

.filter-tabs-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-tab-button {
    padding: 10px 25px;
    border: 2px solid #667eea;
    background: #fff;
    color: #667eea;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.filter-tab-button:hover,
.active-tab-state {
    background: #667eea;
    color: #fff;
}

.category-detail-section {
    background: #f8f9fa;
}

.category-item-large {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.category-featured-img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.category-title-large {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.category-intro-text {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.category-tags-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.tag-badge-item {
    background: #667eea;
    color: #fff;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 14px;
}

.category-explore-btn {
    display: inline-block;
    background: #667eea;
    color: #fff;
    padding: 12px 30px;
    border-radius: 25px;
    transition: background 0.3s ease;
}

.category-explore-btn:hover {
    background: #764ba2;
}

.trending-movies-section {
    background: #fff;
}

.movies-scroll-container {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    padding: 20px 0;
}

.movie-card-compact {
    flex: 0 0 200px;
    text-align: center;
}

.movie-poster-img {
    width: 200px;
    height: 280px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.movie-title-compact {
    font-size: 16px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.movie-rating-text {
    color: #667eea;
    font-weight: bold;
}

/* 资讯页面样式 */
.news-page-wrapper {
    background: #f8f9fa;
}

.news-content-section {
    background: #f8f9fa;
}

.news-layout-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.news-article-featured {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.article-image-container {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.article-featured-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-category-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #667eea;
    color: #fff;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 14px;
}

.article-content-body {
    padding: 35px;
}

.article-title-heading {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
    line-height: 1.4;
}

.article-meta-info {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    color: #999;
    font-size: 14px;
}

.article-excerpt-text {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.article-read-more {
    color: #667eea;
    font-weight: bold;
    transition: color 0.3s ease;
}

.article-read-more:hover {
    color: #764ba2;
}

.news-article-standard {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 25px;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 20px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
    transition: transform 0.3s ease;
}

.news-article-standard:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.article-thumbnail-area {
    height: 150px;
}

.article-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-text-area {
    padding: 20px 20px 20px 0;
}

.article-title-medium {
    font-size: 18px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.article-summary-text {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 12px;
}

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

.sidebar-widget-box {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
}

.widget-title-text {
    font-size: 20px;
    margin-bottom: 20px;
    color: #2c3e50;
    padding-bottom: 15px;
    border-bottom: 2px solid #667eea;
}

.trending-topics-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.topic-item-entry {
    display: flex;
    align-items: center;
    gap: 15px;
}

.topic-rank-number {
    width: 30px;
    height: 30px;
    background: #667eea;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
    flex-shrink: 0;
}

.topic-link-text {
    color: #333;
    transition: color 0.3s ease;
}

.topic-link-text:hover {
    color: #667eea;
}

.recommend-article-mini {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.recommend-article-mini:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.mini-article-thumb {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.mini-article-title {
    font-size: 14px;
    margin-bottom: 8px;
    color: #333;
    line-height: 1.4;
}

.mini-article-date {
    font-size: 12px;
    color: #999;
}

.tags-cloud-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-cloud-item {
    background: #f0f0f0;
    color: #666;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.tag-cloud-item:hover {
    background: #667eea;
    color: #fff;
}

/* 关于页面样式 */
.about-page-wrapper {
    background: #f8f9fa;
}

.about-intro-section {
    background: #fff;
}

.intro-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-paragraph-text {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.intro-feature-image {
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.mission-vision-section {
    background: #f8f9fa;
}

.mission-grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.mission-card-block {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.mission-card-block:hover {
    transform: translateY(-10px);
}

.mission-icon-wrapper {
    margin-bottom: 25px;
}

.mission-icon-image {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    border-radius: 50%;
}

.mission-title-text {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.mission-description-text {
    color: #666;
    line-height: 1.8;
}

.team-showcase-section {
    background: #fff;
}

.section-subtitle-center {
    text-align: center;
    color: #666;
    font-size: 18px;
    margin-top: -30px;
    margin-bottom: 50px;
}

.team-members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 35px;
}

.team-member-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
}

.team-member-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.member-photo-container {
    margin-bottom: 20px;
}

.member-avatar-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto;
    border: 4px solid #667eea;
}

.member-name-title {
    font-size: 20px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.member-role-text {
    color: #667eea;
    font-weight: bold;
    margin-bottom: 15px;
}

.member-bio-text {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.timeline-history-section {
    background: #f8f9fa;
}

.timeline-vertical-layout {
    position: relative;
    padding-left: 50px;
}

.timeline-vertical-layout::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #667eea;
}

.timeline-item-block {
    position: relative;
    margin-bottom: 40px;
}

.timeline-date-marker {
    position: absolute;
    left: -50px;
    top: 0;
    width: 60px;
    height: 60px;
    background: #667eea;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    border: 4px solid #fff;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.timeline-content-box {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
}

.timeline-event-title {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.timeline-event-desc {
    color: #666;
    line-height: 1.8;
}

.achievements-stats-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.achievements-grid-display {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-number-huge {
    font-size: 52px;
    font-weight: bold;
    margin-bottom: 10px;
}

.stat-label-large {
    font-size: 18px;
    opacity: 0.9;
}

.partners-cooperation-section {
    background: #fff;
}

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

.partner-logo-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo-img {
    max-width: 150px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.partner-logo-img:hover {
    opacity: 1;
}

/* 联系页面样式 */
.contact-page-wrapper {
    background: #f8f9fa;
}

.contact-main-section {
    background: #f8f9fa;
}

.contact-layout-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-intro-text {
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-method-group {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-item-box {
    display: flex;
    gap: 20px;
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
}

.contact-icon-circle {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.contact-icon-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.contact-method-title {
    font-size: 18px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.contact-value-text {
    color: #667eea;
    font-weight: bold;
    margin-bottom: 5px;
}

.contact-desc-text {
    color: #999;
    font-size: 14px;
}

.business-cooperation-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 30px;
    border-radius: 10px;
}

.cooperation-title-text {
    font-size: 22px;
    margin-bottom: 15px;
}

.cooperation-desc-text {
    line-height: 1.8;
    margin-bottom: 15px;
}

.cooperation-email-text {
    font-size: 18px;
    font-weight: bold;
}

.form-container-box {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

.form-heading-title {
    font-size: 28px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.form-subtitle-text {
    color: #666;
    margin-bottom: 30px;
}

.contact-form-layout {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group-item {
    display: flex;
    flex-direction: column;
}

.form-label-text {
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

.form-input-field,
.form-select-field,
.form-textarea-field {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

.form-input-field:focus,
.form-select-field:focus,
.form-textarea-field:focus {
    outline: none;
    border-color: #667eea;
}

.form-submit-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.form-submit-button:hover {
    transform: translateY(-2px);
}

.faq-section-area {
    background: #fff;
}

.faq-items-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item-block {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.faq-question-text {
    font-size: 18px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.faq-answer-text {
    color: #666;
    line-height: 1.8;
}

.map-location-section {
    background: #f8f9fa;
}

.map-placeholder-box {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.map-display-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.map-info-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(0,0,0,0.8);
    color: #fff;
    padding: 20px 30px;
    border-radius: 10px;
}

.map-address-text {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 8px;
}

.map-transport-text {
    color: #ccc;
    font-size: 14px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .hero-content-wrapper,
    .intro-content-wrapper,
    .category-item-large,
    .news-layout-wrapper,
    .contact-layout-wrapper {
        grid-template-columns: 1fr;
    }

    .header-menu-list {
        flex-wrap: wrap;
        gap: 15px;
    }

    .hero-main-title {
        font-size: 32px;
    }

    .section-heading-title {
        font-size: 28px;
    }

    .content-grid-layout {
        grid-template-columns: 1fr;
    }

    .news-article-standard {
        grid-template-columns: 1fr;
    }

    .article-thumbnail-area {
        height: 200px;
    }

    .article-text-area {
        padding: 20px;
    }

    .timeline-vertical-layout {
        padding-left: 30px;
    }

    .timeline-date-marker {
        left: -40px;
        width: 50px;
        height: 50px;
        font-size: 14px;
    }
}

/* 动画效果 */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}