@charset "UTF-8";
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Microsoft YaHei", "Segoe UI", sans-serif;
}

body {
    background-color: #f5f5f5;
    color: #333;
    font-size: 14px;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

/* 头部样式 - 使用微信绿色 */
.header {
    background: linear-gradient(145deg, #2b97f2, #0f7cd5);
    color: white;
    box-shadow: 0 4px 12px rgba(0, 100, 200, 0.2);
}

.header-top {
    padding: 10px 0;
    background-color: rgba(0, 0, 0, 0.1);
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-title {
    font-size: 26px;
    font-weight: bold;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.site-title i {
    margin-right: 8px;
    font-size: 28px;
}

.slogan {
    color: white;
    font-size: 18px;
    font-weight: bold;
    padding: 5px 15px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

/* 导航菜单 - 微信绿色，加大字体 */
.nav-menu {
    background-color: #0c6eb9;
    padding: 12px 0;
}

.nav-menu .container {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    margin-left: 30px;
}

.nav-links li {
    margin-right: 30px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 17px;
    padding: 10px 0;
    position: relative;
    font-weight: 500;
}

.nav-links a:hover,
.nav-links a.active {
    color: white;
    opacity: 0.9;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: white;
}

/* 底部信息 - 使用微信绿色 */
.footer {
    background: linear-gradient(145deg, #0b3b5c, #0a4d7a);
    padding: 40px 0 20px;
    margin-top: 50px;
    color: white;
}

.footer-features {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.feature-item {
    flex: 1;
    min-width: 250px;
    margin-bottom: 20px;
    padding: 0 15px;
}

.feature-title {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: white;
    font-size: 17px;
    font-weight: bold;
}

.feature-title i {
    color: white;
    margin-right: 10px;
    font-size: 22px;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 8px;
    border-radius: 50%;
}

.feature-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.8;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
}

.footer-bottom a:hover,
.footer-bottom a{
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

/* 移动端底部菜单 */
.mobile-menu {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #0c6eb9;
    z-index: 1000;
    padding: 10px 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.mobile-menu-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.mobile-menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: white;
    flex: 1;
}

.mobile-menu-icon {
    font-size: 20px;
    margin-bottom: 5px;
}

.mobile-menu-text {
    font-size: 12px;
}

.mobile-menu-item.active {
    color: white;
    opacity: 0.9;
}



@media (max-width: 768px) {
    /* 隐藏桌面端导航，显示移动端菜单 */
    .nav-menu {
        display: none;
    }
    
    .mobile-menu {
        display: block;
    }
    
    /* 移动端布局调整 */
    .main-content {
        width: 100%;
        flex-direction: column;
        margin: 15px auto;
        gap: 15px;
    }
 

    /* 头部适配 */
    .header-top .container {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    
    /* 移动端底部只保留版权信息 */
    .footer-features {
        display: none;
    }
    
    .footer {
        padding: 20px 0 10px;
        margin-top: 30px;
    }
    
    .footer-bottom {
        padding-top: 15px;
        font-size: 12px;
    }
    
    /* 底部边距调整，避免被移动菜单遮挡 */
    body {
        padding-bottom: 70px;
    }
}

@media (max-width: 480px) {
    .site-title {
        font-size: 22px;
    }
    
    .site-title i {
        font-size: 24px;
    }
    
    .slogan {
        font-size: 16px;
        padding: 4px 12px;
    }
    
    .footer {
        padding: 15px 0 10px;
    }
}