/* 全局样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Microsoft YaHei", sans-serif;
    background: #f5f5f5;
}

/* 容器样式 */
.container {
    width: 1000px;
    margin: 0 auto;
    background: #fff;
}

/* Banner区域 */
.banner {
    width: 1000px;
    height: 125px;
    background: linear-gradient(to right, #1976d2, #2196f3);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/banner.png') center/cover;
    opacity: 0.1;
}

.banner-content {
    position: relative;
    z-index: 1;
}

.banner h1 {
    font-size: 32px;
    text-align: center;
}

/* 主要内容区 */
.main-content {
    display: flex;
    padding: 20px;
    gap: 20px;
}

/* 左侧栏 */
.left-column {
    width: 400px;
}

.author-info {
    width: 370px;
    height: 320px;
    background: #fff;
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}

/* 右侧栏 */
.right-column {
    width: 580px;
}

/* 幻灯片区域 */
.slider {
    width: 550px;
    height: 240px;
    margin-bottom: 20px;
    overflow: hidden;
    position: relative;
}

.slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 中文内容区 */
.cn-content {
    width: 550px;
    height: 260px;
    background: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}

/* 下方文本区 */
.text-content {
    width: 550px;
    height: 480px;
    background: #fff;
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}

/* 组图滚动区 */
.gallery {
    width: 1000px;
    height: 125px;
    background: #f8f9fa;
    overflow: hidden;
    position: relative;
}

.gallery-wrapper {
    display: flex;
    gap: 10px;
    padding: 0 10px;
    animation: scroll 20s linear infinite;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* 版权信息 */
footer {
    width: 1000px;
    height: 125px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    gap: 5px;
}

footer p:last-child {
    font-size: 14px;
    opacity: 0.8;
}

/* 左侧栏样式优化 */
.info-header {
    margin-bottom: 20px;
}

.divider {
    height: 2px;
    background: #2196f3;
    margin: 10px 0;
}

.feature-list {
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: start;
    margin-bottom: 15px;
}

.icon {
    color: #2196f3;
    margin-right: 10px;
}

.author-contact {
    border-top: 1px solid #e0e0e0;
    padding-top: 20px;
}

/* 幻灯片样式优化 */
.slider-container {
    display: flex;
    transition: transform 0.5s ease;
}

.slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
}

.dot.active {
    background: #fff;
}

/* 内容区样式优化 */
.content-text {
    line-height: 1.8;
}

.story-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.story-item {
    padding: 15px;
    background: #f8f9fa;
    border-radius: 4px;
}

.story-item h4 {
    color: #1976d2;
    margin-bottom: 10px;
} 