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

body {
    font-family: 'Microsoft YaHei', 'PingFang SC', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #ff6b6b, #ffa500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.title h1 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 5px;
}

.title p {
    font-size: 14px;
    opacity: 0.9;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 15px;
    align-items: center;
}

.nav-list a {
    color: white;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 20px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.nav-list a:hover,
.nav-list a.active {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.login-btn {
    background: linear-gradient(45deg, #ff6b6b, #ffa500) !important;
    color: white !important;
    font-weight: 600;
}

.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* 面包屑导航 */
.breadcrumb-section {
    background: white;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

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

.breadcrumb a:hover {
    color: #d32f2f;
}

.breadcrumb .separator {
    color: #ccc;
}

.breadcrumb .current {
    color: #d32f2f;
    font-weight: 600;
}

/* 主要内容区域 */
.main-content {
    min-height: calc(100vh - 200px);
    padding: 30px 0;
}

/* 页脚 */
/*.footer {
    background: #2c3e50;
    color: white;
    padding: 16px 0;
    text-align: center;
}

.footer-content p {
    margin: 5px 0;
    font-size: 14px;
    opacity: 0.8;
}*/

/* 响应式设计 */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        border-radius: 0 0 15px 15px;
    }
    
    .nav-list.show {
        display: flex;
    }
    
    .nav-list li {
        margin: 10px 0;
    }
    
    .nav-list a {
        display: block;
        padding: 12px 20px;
        border-radius: 10px;
        text-align: center;
        font-size: 16px;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .title h1 {
        font-size: 20px;
    }
    
    .title p {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .breadcrumb {
        font-size: 12px;
    }
}

/* 滚动条样式 */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}


 /* 页脚样式 - 所有样式都带.footer前缀 */
/* 页脚样式 - 所有样式都带.footer前缀 */
        .footer {
            background: linear-gradient(90deg, #1e3c72 0%, #c94a4a 25%, #e85a5a 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.1);
            pointer-events: none;
        }

        .footer .footer-main {
            position: relative;
            z-index: 2;
            padding: 40px 0 20px;
        }

        .footer .footer-grid {
            display: grid;
            grid-template-columns: 1fr 1.5fr 1fr;
            gap: 30px;
            margin-bottom: 30px;
        }

        .footer .footer-section h3 {
            font-size: 18px;
            margin-bottom: 15px;
            color: #fff;
            border-bottom: 2px solid rgba(201, 74, 74, 0.6);
            padding-bottom: 8px;
            display: inline-block;
        }

        .footer .footer-section p,
        .footer .footer-section a {
            color: rgba(255, 255, 255, 0.85);
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 8px;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer .footer-section a:hover {
            color: #fff;
            text-shadow: 0 0 8px rgba(201, 74, 74, 0.8);
            transform: translateX(5px);
        }

        .footer .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
            font-size: 14px;
        }

        .footer .contact-icon {
            width: 16px;
            height: 16px;
            margin-right: 10px;
            opacity: 0.8;
        }

        .footer .links-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 8px 15px;
            justify-items: start;
        }

        .footer .links-grid a {
            width: 100%;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            padding: 5px 0;
            font-size: 14px;
        }

        .footer .footer-bottom {
            border-top: 1px solid rgba(201, 74, 74, 0.3);
            padding: 20px 0;
            text-align: center;
            background: rgba(201, 74, 74, 0.15);
        }

        .footer .footer-bottom p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 13px;
            margin: 5px 0;
        }

        .footer .copyright-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 15px 30px;
            text-align: center;
        }

        .footer .copyright-grid p {
            flex: 0 1 auto;
            white-space: nowrap;
            min-width: fit-content;
        }

        /* 页脚响应式设计 */
        @media (max-width: 768px) {
            .footer .footer-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .footer .links-grid {
                grid-template-columns: 1fr;
                justify-items: center;
            }

            .footer .service-links-grid {
                grid-template-columns: 1fr;
                justify-items: center;
            }

            .footer .links-grid a,
            .footer .service-links-grid a {
                text-align: center;
                white-space: normal;
                overflow: visible;
                text-overflow: unset;
            }

            .footer .copyright-grid {
                flex-direction: column;
                gap: 8px;
            }

            .footer .copyright-grid p {
                white-space: normal;
            }

            .footer .contact-item {
                justify-content: center;
            }
        }

        /* 页脚装饰性动画 */
        .footer .footer-decoration {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, transparent, rgba(201, 74, 74, 0.6), transparent);
            animation: footer-shimmer 3s ease-in-out infinite;
        }

        @keyframes footer-shimmer {
            0%, 100% { transform: translateX(-100%); }
            50% { transform: translateX(100%); }
        }