/* 全局样式 */
:root {
    --primary-color: #337ab7;
    --secondary-color: #FFD9EC;
    --text-color: #333;
    --light-bg: #f8f9fa;
}

body {
    font-family: "Microsoft YaHei", sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

/* 通用标题样式 */
h1, h2, h3 {
    margin-bottom: 1.5rem;
    font-weight: 600;
}

/* 图片容器样式 */
.img-container {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.img-container:hover {
    transform: translateY(-5px);
}

/* 卡片样式 */
.custom-card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.custom-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* 轮播图优化 */
.carousel {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    margin: 2rem 0;
}

/* 按钮样式 */
.custom-btn {
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    border: none;
    background: var(--primary-color);
    color: white;
    transition: all 0.3s ease;
}

.custom-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(51, 122, 183, 0.3);
}

/* 文字动画效果 */
.text-animate {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 页脚样式 */
footer {
    background-color: #f8f9fa;
    padding: 2rem 0;
    margin-top: 3rem;
    border-top: 1px solid #eee;
}

/* 页脚内容布局 */
.footer-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

/* 版权信息样式 */
.copyright {
    color: #666;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
    width: 100%;
    text-align: left;
    padding-left: 1rem;
}

/* 页脚链接列表样式 */
.footer-links {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: center;
    width: 100%;
}

.footer-links li {
    display: inline-block;
    padding: 0 20px;  /* 增加间距 */
    position: relative;
}

/* 添加分隔线 */
.footer-links li:not(:last-child)::after {
    content: '|';
    position: absolute;
    right: -3px;
    color: #ddd;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #337ab7;
    text-decoration: none;
}