* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans SC', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #fefefe;
    overflow-x: hidden;
}
/* 现代简约配色方案 */
:root {
    --primary-color: #1a6b54;
    --secondary-color: #2d9c7c;
    --accent-color: #ff7e5f;
    --light-color: #f5f7f6;
    --dark-color: #1a2c24;
    --gray-color: #6c757d;
    --light-gray: #e9ecef;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 简约头部设计 */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--light-gray);
    transition: all 0.3s ease;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-icon {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: white;
    font-size: 24px;
}

.logo-text h1 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-color);
    letter-spacing: -0.5px;
}

.logo-text p {
    font-size: 13px;
    color: var(--gray-color);
    font-weight: 300;
    letter-spacing: 1px;
}

/* 简约导航 */
nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    font-size: 15px;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: var(--primary-color);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

.nav-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.nav-btn:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    color: var(--dark-color);
    cursor: pointer;
}
/* 页脚 */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 0 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: white;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 25px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 25px;
    color: white;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 15px;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.copyright {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}
.copyright a{color: #a3aba7;}
/*1.28*/
/* 二维码浮动特效 */
.qr-code-float {
    position: fixed;
    right: 20px;
    bottom: 200px;
    width: 220px;
    height: auto;
    z-index: 999;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.9;
}

.qr-code-float:hover {
    opacity: 1;
    transform: scale(1.05);
}

.qr-code-image {
    width: 220px;
    height: auto;
    background-color: white;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qr-code-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 5px;
}

.qr-code-text {
    background-color: var(--primary-color);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    width: 100%;
    box-shadow: 0 3px 15px rgba(26, 107, 84, 0.3);
}

/* 响应式调整 */
@media (max-width: 768px) {
    .qr-code-float {
        width: 100px;
        height: auto;
        right: 15px;
        bottom: 80px;
    }
    
    .qr-code-image {
        width: 100px;
        height: auto;
    }
    
    .qr-code-text {
        font-size: 11px;
        padding: 6px 10px;
    }
}

/*正常连接导航*/
.mj a {
    color: var(--dark-color);
    transition: color 0.3s;
    text-decoration: none;
}

.mj a:hover {
    color: var(--primary-color);
}

/*分页链接样式*/
.pageLink {font-size:12px;clear:both;font-family:Tahoma;text-align:center;}
.pageLinkOn {color:#000;background:#FFF;border:1px solid #CCC;margin:0 2px; display:inline-block; padding:0px 10px; line-height:28px;border-radius: 50px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);}
.pageLink a {color:#000;background:#FFF;border:1px solid #CCC;display:inline-block;padding:0px 10px;line-height:28px;border-radius: 50px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);}
.pageLink a:hover {color:#fff;background:#269691;border:1px solid #CCC;text-decoration:none;border-radius: 50px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);}
/*分页链接样式结束*/