/* 重置样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Microsoft YaHei", sans-serif;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* 导航栏样式 */
.navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo img {
    height: 50px;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    padding: 10px;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #ff6b81;
}

/* 页脚样式 */
footer {
    background: #f8f9fa;
    padding: 50px 0 20px;
    margin-top: 50px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.footer-logo img {
    height: 40px;
}

.footer-info p {
    margin-bottom: 10px;
    color: #666;
}

.footer-qrcode {
    text-align: center;
}

.footer-qrcode img {
    width: 120px;
    margin-bottom: 10px;
}

.copyright {
    text-align: center;
    color: #999;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

/* 通用标题样式 */
.section-title {
    text-align: center;
    font-size: 32px;
    margin: 50px 0 30px;
    color: #333;
}

/* 动画效果 */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

/* Logo样式 */
.logo a {
    font-size: 24px;
    font-weight: bold;
    color: #ff6b81;
    text-decoration: none;
    transition: color 0.3s;
}

.logo a:hover {
    color: #ff4757;
}

/* 页脚Logo样式 */
.footer-logo span {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
} 