/* 复制自index.html <style> 部分，供全站引用 */
:root {
    --primary: #0056b3;
    --secondary: #034389;
    --accent: #00a8e8;
    --light: #f8f9fa;
    --dark: #212529;
    --gray: #6c757d;
    --success: #28a745;
    --border-radius: 8px;
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body {
    background-color: #f5f7fa;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}
.lang-switch {
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 1000;
    display: flex;
    background: white;
    border-radius: 30px;
    box-shadow: var(--box-shadow);
    overflow: hidden;
}
.lang-btn {
    padding: 8px 16px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}
.lang-btn.active {
    background: var(--primary);
    color: white;
}
header {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 1rem 0 0 0;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.container {
    width: 90%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 15px;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}
.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 12px 0 18px 0;
    height: 56px;
}
.logo img {
    max-height: 68px;
    max-width: 180px;
    object-fit: contain;
    display: block;
}
.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
}
.logo span {
    font-size: 1rem;
    opacity: 0.9;
    display: block;
}
.nav-links {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    justify-content: flex-end;
    gap: 40px;
    list-style: none !important;
    padding: 0;
    margin: 0;
    background: none;
    position: static;
    height: auto;
}
.nav-links li {
    list-style: none !important;
    margin: 0;
}
.nav-links > .nav-item > a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 20px;
    position: relative;
    transition: var(--transition);
    border-radius: 5px;
    background: transparent;
    font-size: 1rem;
    letter-spacing: 0em;
    display: inline-block;
}
.nav-links > .nav-item > a:hover,
.nav-links > .nav-item > a.active {
    background: #044284;
    color: #fff;
}
.nav-item {
    position: relative;
}
.dropdown {
    display: none;
    position: absolute;
    left: 50%;
    top: 110%;
    transform: translateX(-50%);
    background: #fff;
    min-width: 180px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.13);
    border-radius: 18px;
    z-index: 100;
    padding: 12px 0;
    margin-top: 8px;
    animation: fadeInMenu 0.25s;
}
@keyframes fadeInMenu {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.dropdown li {
    width: 100%;
    list-style: none;
}
.dropdown li a {
    display: block;
    padding: 14px 32px 14px 22px;
    color: #222;
    white-space: nowrap;
    text-decoration: none;
    font-weight: 500;
    border-left: 4px solid transparent;
    transition: background 0.18s, color 0.18s, border-color 0.18s;
    border-radius: 0 14px 14px 0;
    position: relative;
    text-align: center;
}
.dropdown li a:hover {
    background: var(--accent);
    color: #fff;
    border-left: 4px solid var(--primary);
}
.dropdown-parent > a::after {
    content: " \f078";
    font-family: 'FontAwesome';
    font-size: 13px;
    margin-left: 7px;
    vertical-align: middle;
    opacity: 0.85;
    transition: transform 0.2s;
}
.dropdown-parent:hover > a::after {
    transform: rotate(-180deg);
}
.dropdown-parent:hover > .dropdown,
.dropdown-parent:focus-within > .dropdown {
    display: block;
}
.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}
.hero {
    background: linear-gradient(rgba(0, 86, 179, 0.9), rgba(0, 58, 117, 0.9)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    text-align: center;
}
.hero-content {
    max-width: 800px;
    margin: 0 auto;
}
.hero h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}
.btn {
    display: inline-block;
    background: white;
    color: var(--primary);
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid white;
}
.btn:hover {
    background: transparent;
    color: white;
}
.btn-secondary {
    background: transparent;
    color: white;
    margin-left: 15px;
}
.btn-secondary:hover {
    background: white;
    color: var(--primary);
}
section {
    padding: 80px 0;
}
.section-title {
    text-align: center;
    margin-bottom: 60px;
}
.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}
.section-title h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
}
.section-title p {
    color: var(--gray);
    max-width: 700px;
    margin: 20px auto 0;
}
.about-section {
    padding: 80px 0 60px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e6f0ff 100%);
}
.about-content {
    display: flex;
    gap: 48px;
    align-items: flex-start;
}
.about-text {
    flex: 1;
}
.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--secondary);
}
.about-image {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}
.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}
.about-image:hover img {
    transform: scale(1.05);
}
.about-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.about-side {
    flex: 1;
    min-width: 220px;
    max-width: 340px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}
.about-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 40px;
    margin-bottom: 0;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 86, 179, 0.1);
    position: relative;
    overflow: hidden;
}
.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}
.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}
.about-card h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 16px;
    font-weight: 700;
    position: relative;
    padding-left: 16px;
}
.about-card h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 24px;
    background: var(--primary);
    border-radius: 2px;
}
.about-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 32px;
    text-align: justify;
}
.about-card p:last-of-type {
    margin-bottom: 0;
}
.about-card .pic {
    text-align: center;
    margin: 32px 0;
    border-radius: 12px;
    overflow: hidden;
    /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); */
    transition: all 0.3s ease;
}
.about-card .pic:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
.about-card .pic img {
    width: 100%;
    max-width: 700px;
    height: auto;
    display: block;
    border-radius: 12px;
    transition: transform 0.3s ease;
}
.about-card .pic img:hover {
    transform: scale(1.05);
}
.about-vision {
    background: #e6f0ff;
    border-left: 4px solid var(--primary);
}
.management-grid-index {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}
.management-card-index {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}
.management-card-index:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.management-image-index {
    width: 180px;
    height: 240px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    background: #f5f7fa;
    display: flex;
    align-items: center;
    justify-content: center;
}
.management-image-index img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.management-info-index {
    padding: 20px;
}
.management-info-index h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
    color: var(--primary);
}
.management-info-index .position {
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}
.management-info-index p {
    color: var(--gray);
    font-size: 0.95rem;
}
.business-model {
    background: linear-gradient(to bottom, #f0f5ff, #e6f0ff);
    position: relative;
    overflow: hidden;
}
.business-model:before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 168, 232, 0.1) 0%, transparent 70%);
    z-index: 0;
}
.model-container {
    position: relative;
    z-index: 1;
}
.model-item {
    background: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
    margin-bottom: 30px;
}
.model-item:hover {
    transform: translateY(-5px);
}
.model-icon {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 20px;
}
.model-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary);
}
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}
.partner-card {
    /* min-width: 260px;
    max-width: 300px; */
    background: white;
    border-radius: var(--border-radius);
    padding: 25px 20px 20px 20px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 0 0 auto;
}
.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.partner-logo {
    height: 60px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.partner-logo img {
    max-height: 48px;
    max-width: 120px;
    object-fit: contain;
}
.partner-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--secondary);
}
.contact {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: white;
}
.contact .section-title h2,
.contact .section-title p {
    color: white;
}
.contact-info {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 40px;
    flex-wrap: wrap;
}
.contact-item {
    text-align: center;
}
.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--accent);
}
.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}
footer {
    background: var(--dark);
    color: white;
    padding: 40px 0 20px;
}
.footer-content {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 30px;
}
.footer-column {
    flex: 1;
    min-width: 250px;
}
.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}
.footer-column h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent);
}
.footer-column ul {
    list-style: none;
}
.footer-column ul li {
    margin-bottom: 10px;
}
.footer-column ul li a {
    color: #aaa;
    text-decoration: none;
    transition: var(--transition);
}
.footer-column ul li a:hover {
    color: white;
    padding-left: 5px;
}
.copyright {
    text-align: center;
    /* padding-top: 20px;
    border-top: 1px solid #444; */
    color: #aaa;
    font-size: 0.9rem;
}
.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    list-style: none;
    padding: 0;
    margin: 0 0 18px 0;
}
.footer-links li a {
    color: #aaa;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s;
}
.footer-links li a:hover {
    color: white;
}
@media (max-width: 1280px) {
    .nav-links {
        gap: 0px !important;
    }
}

@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }
    .hero h2 {
        font-size: 2.5rem;
    }
}
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--primary);
        flex-direction: column;
        align-items: center;
        padding-top: 40px;
        transition: var(--transition);
        list-style: none !important;
    }
    .nav-links.active {
        left: 0;
    }
    .nav-links li {
        margin: 15px 0;
        list-style: none !important;
    }
    .nav-links > .nav-item > a {
        background: transparent !important;
        color: #fff;
        border-radius: 0;
        padding: 14px 0 12px 0;
        font-size: 1.15rem;
        font-weight: 700;
        box-shadow: none;
        display: block;
        text-align: center;
    }
    .nav-links > .nav-item > a:hover,
    .nav-links > .nav-item > a.active {
        background: rgba(0,0,0,0.08) !important;
        color: #fff;
    }
    .dropdown {
        position: static;
        left: 0;
        top: 0;
        transform: none;
        min-width: 0;
        box-shadow: none;
        border-radius: 0;
        background: transparent;
        padding: 0;
        margin: 0;
        animation: none;
    }
    .dropdown li a {
        padding: 12px 0 12px 24px;
        color: #fff;
        background: transparent;
        border-left: 3px solid var(--accent);
        border-radius: 0;
        font-size: 1rem;
        text-align: left;
    }
    .dropdown li a:hover {
        background: rgba(0,0,0,0.10);
        color: #fff;
        border-left: 3px solid var(--primary);
    }
    .dropdown-parent > a::after {
        margin-left: 4px;
    }
    .hero {
        padding: 80px 0;
    }
    .hero h2 {
        font-size: 2rem;
    }
    .section-title h2 {
        font-size: 2rem;
    }
    .btn-container {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    .btn {
        margin: 0;
    }
    .management-image {
        width: 120px;
        height: 160px;
    }
    .partners-grid {
        gap: 16px;
    }
    .partner-card {
        min-width: 180px;
        max-width: 200px;
        padding: 16px 8px 12px 8px;
    }
    .partner-logo {
        height: 36px;
        margin: 8px 0 12px 0;
    }
    .partner-logo img {
        max-height: 32px;
    }
    .footer-links {
        gap: 16px;
        flex-wrap: wrap;
        font-size: 0.95rem;
    }
}
@media (max-width: 576px) {
    .logo h1 {
        font-size: 1.5rem;
    }
    .hero {
        padding: 60px 0;
    }
    .hero h2 {
        font-size: 1.8rem;
    }
    section {
        padding: 60px 0;
    }
    .about-card {
        padding: 16px 10px 10px 10px;
    }
    .about-card h3 {
        font-size: 1.08rem;
    }
}
@media (max-width: 1200px) {
    .about-content {
        gap: 32px;
    }
    
    .about-card {
        padding: 36px;
    }
    
    .about-card p {
        font-size: 1.05rem;
        margin-bottom: 28px;
    }
    
    .about-card .pic {
        margin: 28px 0;
    }
}
@media (max-width: 1080px) {
    .nav-links > .nav-item > a {
        padding: 10px 10px !important;
    }
}
@media (max-width: 900px) {
    .about-content {
        flex-direction: column;
        gap: 28px;
    }
    .about-side {
        max-width: 100%;
        margin-top: 0;
    }
}
.business-section {
    padding: 80px 0 60px 0;
}
.business-section .zj{
    padding: 1rem 0;
    font-size: 1rem;
}
.business-section .pic{
    text-align: center;
}
.business-section .pic img{
    max-width: 100%;
    margin: 1rem 0;
}
.business-content {
    display: flex;
    gap: 36px;
    justify-content: center;
    align-items: stretch;
    margin-top: 36px;
    flex-wrap: wrap;
}
.business-card {
    background: #f8fafd;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    padding: 32px 28px 24px 28px;
    flex: 1 1 280px;
    /* min-width: 260px;
    max-width: 340px; */
    width: 33.3%;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.2s;
}
.business-card:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.10);
}
.business-icon {
    font-size: 2.2rem;
    margin-bottom: 18px;
}
.business-card h3 {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 14px;
    font-weight: 700;
    text-align: center;
}
.business-card p {
    font-size: 1rem;
    color: #333;
    text-align: center;
    line-height: 1.7;
}
@media (max-width: 900px) {
    .business-content {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }
    .business-card {
        max-width: 98%;
    }
}
@media (max-width: 576px) {
    .business-card {
        padding: 16px 10px 10px 10px;
    }
    .business-card h3 {
        font-size: 1.08rem;
    }
    .business-icon {
        font-size: 1.4rem;
    }
} 

/* Banner区域 */
.banner {
    height: 300px;
    background: linear-gradient(135deg, rgba(26, 86, 219, 0.9), rgba(43, 108, 176, 0.9)), 
                url('../images/banner.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
}

.banner-content {
    max-width: 800px;
    padding: 0 20px;
}

.banner h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.banner p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* 管理层容器 */
.management-container {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 2.2rem;
    color: var(--dark);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary);
    border-radius: 2px;
}

/* 张言龙瀑布流布局 */
.waterfall-profile {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 40px;
}

.profile-header {
    background-color: var(--primary);
    color: white;
    padding: 20px 30px;
}

.profile-header h3 {
    font-size: 1.8rem;
    font-weight: 600;
}

.profile-content {
    padding: 30px;
}

.profile-photo {
    width: 100%;
    max-width: 300px;
    margin: 0 auto 30px;
    text-align: center;
}

.photo-frame {
    width: 200px;
    height: 280px;
    margin: 0 auto;
    background-color: #edf2f7;
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #718096;
    font-style: italic;
}

.photo-frame img{
    width: 100%;
    height: 100%;
}

.profile-info {
    text-align: center;
    margin-bottom: 30px;
}

.profile-info h3 {
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.profile-position {
    font-size: 1.2rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 15px;
}

.profile-intro {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.profile-details {
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

.profile-details p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #4a5568;
}

.profile-details .pic {
    text-align: center;
}

.profile-details .pic img {
    max-width: 800px;
}

.timeline {
    margin-top: 30px;
    padding-left: 20px;
    border-left: 3px solid var(--primary);
}

.timeline-item {
    margin-bottom: 30px;
    position: relative;
    padding-left: 30px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 8px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--primary);
}

.timeline-year {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 5px;
}

/* 其他管理层卡片布局 */
.management-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.management-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
}

.management-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.card-photo {
    flex: 0 0 120px;
    background-color: #f0f5ff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.photo-container {
    width: 100px;
    height: 140px;
    background-color: #edf2f7;
    border: 1px solid var(--border);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #718096;
    font-style: italic;
}
.photo-container img{
    width: 100%;
    height: 100%;
    border-radius: 5px;
}

.card-info {
    padding: 25px;
    flex: 1;
}

.card-info h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.card-position {
    display: block;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.card-info p {
    color: #4a5568;
    line-height: 1.7;
}

/* 顾问委员会 */
.advisory-board {
    margin-top: 60px;
}

.advisory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.advisor-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    padding: 25px;
    text-align: center;
}

.advisor-photo {
    width: 120px;
    height: 160px;
    margin: 0 auto 20px;
    background-color: #edf2f7;
    border: 1px solid var(--border);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #718096;
    font-style: italic;
}

.advisor-info h3 {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.advisor-position {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 15px;
}

.advisor-info p {
    color: #4a5568;
    line-height: 1.6;
}

/* 海外代表 */
.overseas-reps {
    margin-top: 60px;
}

.reps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.rep-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    padding: 25px;
}

.rep-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.country-flag {
    background-color: var(--primary);
    color: white;
    padding: 8px 15px;
    font-weight: 600;
    border-radius: 4px;
    margin-right: 15px;
}

.rep-photo {
    width: 100px;
    height: 140px;
    background-color: #edf2f7;
    border: 1px solid var(--border);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #718096;
    font-style: italic;
}

.rep-photo img{
    width: 100%;
    height: 100%;
    border-radius: 5px;
}

.rep-info h4 {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.rep-info p {
    color: #4a5568;
    line-height: 1.6;
}


/* 响应式设计 */
@media (max-width: 992px) {
    .banner h1 {
        font-size: 2.2rem;
    }
    
    .banner p {
        font-size: 1.1rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        width: 100%;
        margin-top: 15px;
        display: none;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        width: 100%;
    }
    
    .nav-links li a {
        display: block;
        padding: 10px 0;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .profile-photo {
        max-width: 100%;
    }
    
    .management-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .banner h1 {
        font-size: 1.8rem;
    }
    
    .banner p {
        font-size: 1rem;
    }
    
    .section-title h2 {
        font-size: 1.6rem;
    }
    
    .profile-content {
        padding: 20px;
    }
}

.culture-section {
    padding: 80px 0 60px 0;
}
.culture-content {
    display: flex;
    justify-content: center;
    align-items: center;
}
.culture-card {
    background: #f8fafd;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    padding: 40px 36px 32px 36px;
    min-width: 320px;
    max-width: 480px;
    text-align: center;
}
.culture-card h3 {
    font-size: 1.35rem;
    color: var(--primary);
    margin-bottom: 22px;
    font-weight: 700;
}
.culture-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    margin-bottom: 22px;
}
.culture-tag {
    display: inline-block;
    background: linear-gradient(90deg, #e6f0ff 60%, #f0f5ff 100%);
    color: var(--primary);
    border-radius: 20px;
    padding: 7px 22px;
    font-size: 1.08rem;
    font-weight: 600;
    box-shadow: 0 1px 4px rgba(26,86,219,0.06);
    letter-spacing: 1px;
}
.culture-desc {
    color: #4a5568;
    font-size: 1.08rem;
    margin-top: 18px;
    line-height: 1.7;
}
@media (max-width: 576px) {
    .culture-card {
        padding: 18px 8px 12px 8px;
        min-width: 0;
        max-width: 98vw;
    }
    .culture-card h3 {
        font-size: 1.08rem;
    }
    .culture-tag {
        font-size: 0.98rem;
        padding: 6px 14px;
    }
    .nav-links {
        gap: 0px !important;
    }
}
.vision-section {
    padding: 80px 0 60px 0;
}
.vision-content {
    display: flex;
    justify-content: center;
    align-items: center;
}
.vision-card {
    background: #f8fafd;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    padding: 40px 36px 32px 36px;
    min-width: 320px;
    max-width: 520px;
    text-align: center;
}
.vision-card h3 {
    font-size: 1.35rem;
    color: var(--primary);
    margin-bottom: 22px;
    font-weight: 700;
}
.vision-desc {
    background: linear-gradient(90deg, #e6f0ff 60%, #f0f5ff 100%);
    color: #1a56db;
    border-radius: 10px;
    padding: 22px 18px;
    font-size: 1.13rem;
    font-weight: 600;
    line-height: 1.8;
    margin-top: 10px;
    box-shadow: 0 1px 4px rgba(26,86,219,0.06);
}
@media (max-width: 576px) {
    .vision-card {
        padding: 18px 8px 12px 8px;
        min-width: 0;
        max-width: 98vw;
    }
    .vision-card h3 {
        font-size: 1.08rem;
    }
    .vision-desc {
        font-size: 1rem;
        padding: 12px 6px;
    }
    .nav-links {
        gap: 0px !important;
    }
}
.countries-section {
    padding: 80px 0 60px 0;
}
.countries-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 36px;
    margin-top: 36px;
}
.country-card {
    background: #f8fafd;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    padding: 24px 18px 18px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.2s;
}
.country-card:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.10);
}
.country-img {
    width: 100%;
    max-width: 180px;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 18px;
    box-shadow: 0 1px 6px rgba(26,86,219,0.08);
}
.country-info h3 {
    font-size: 1.18rem;
    color: var(--primary);
    margin-bottom: 10px;
    font-weight: 700;
    text-align: center;
}
.country-info p {
    color: #4a5568;
    font-size: 1rem;
    text-align: center;
    line-height: 1.7;
}
@media (max-width: 900px) {
    .countries-list {
        grid-template-columns: 1fr 1fr;
        gap: 22px;
    }
    .nav-links {
        gap: 0px !important;
    }
}
@media (max-width: 576px) {
    .countries-list {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .country-card {
        padding: 12px 4px 8px 4px;
    }
    .country-img {
        max-width: 98vw;
        height: 90px;
    }
    .country-info h3 {
        font-size: 1.05rem;
    }
}
.products-section {
    padding: 80px 0 60px 0;
}
.waterfall-products {
    margin: 0 auto;
    padding: 0 10px;
}
.waterfall-products .pic{
    text-align: center;
}
.waterfall-products .pic img{
    width: 500px;
}
.products-main-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 32px;
    color: var(--primary);
    letter-spacing: 2px;
}
.waterfall-products h3 {
    font-size: 1.22rem;
    color: var(--primary);
    font-weight: 700;
    margin-top: 36px;
    margin-bottom: 12px;
}
.waterfall-products p {
    color: #333;
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 18px;
    text-align: left;
}
@media (max-width: 576px) {
    .products-main-title {
        font-size: 1.2rem;
    }
    .waterfall-products h3 {
        font-size: 1.05rem;
    }
    .waterfall-products {
        padding: 0 2px;
    }
}
.partners-section {
    padding: 80px 0 60px 0;
}
.waterfall-partners {
    margin: 0 auto;
    padding: 0 10px;
}
.partners-main-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 32px;
    color: var(--primary);
    letter-spacing: 2px;
}
.partner-block {
    margin-bottom: 48px;
    text-align: left;
}
.partner-logo {
    width: 250px;
    height: 150px;
    margin: 0 auto 18px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 1px 6px rgba(26,86,219,0.08);
    background: #fff;
}
.partner-block h3 {
    font-size: 1.22rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 12px;
    margin-top: 0;
    text-align: left;
}
.partner-block p {
    color: #333;
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 0;
    text-align: left;
}
@media (max-width: 576px) {
    .partners-main-title {
        font-size: 1.2rem;
    }
    .partner-block h3 {
        font-size: 1.05rem;
    }
    .waterfall-partners {
        padding: 0 2px;
    }
    .partner-logo {
        width: 80px;
        height: 80px;
    }
}
@media (min-width: 769px) {
    .nav-links {
        position: static !important;
        left: auto !important;
        top: auto !important;
        width: auto !important;
        height: auto !important;
        background: none !important;
        flex-direction: row !important;
        align-items: center;
        justify-content: flex-end;
        padding-top: 0;
        transition: none;
    }
    .nav-links li {
        margin: 0;
        list-style: none !important;
    }
    .dropdown {
        position: absolute;
        left: 50%;
        top: 80%;
        transform: translateX(-50%);
        min-width: 180px;
        box-shadow: 0 8px 32px rgba(0,0,0,0.13);
        border-radius: 5px;
        background: #fff;
        z-index: 100;
        padding: 12px 0;
        margin-top: 8px;
        animation: fadeInMenu 0.25s;
    }
    .dropdown li a {
        color: #222;
        background: transparent;
        border-left: 4px solid transparent;
        border-radius: 0 14px 14px 0;
        font-size: 1rem;
        text-align: center;
    }
    .dropdown li a:hover {
        background: var(--accent);
        color: #fff;
        border-left: 4px solid var(--primary);
    }
}

/* About页面优化样式 */
.about-section {
    padding: 80px 0 60px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e6f0ff 100%);
}

.about-content {
    display: flex;
    gap: 48px;
    align-items: flex-start;
}

.about-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.about-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 40px;
    margin-bottom: 0;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 86, 179, 0.1);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}



.about-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 32px;
    text-align: justify;
}

.about-card p:last-of-type {
    margin-bottom: 0;
}

.about-card .pic {
    text-align: center;
    margin: 32px 0;
    border-radius: 12px;
    overflow: hidden;
    /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); */
    transition: all 0.3s ease;
}

.about-card .pic:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.about-card .pic img {
    width: 100%;
    max-width: 700px;
    height: auto;
    display: block;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.about-card .pic img:hover {
    transform: scale(1.05);
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .about-content {
        gap: 32px;
    }
    
    .about-card {
        padding: 36px;
    }
    
    .about-card p {
        font-size: 1.05rem;
        margin-bottom: 28px;
    }
    
    .about-card .pic {
        margin: 28px 0;
    }
}

@media (max-width: 992px) {
    .about-section {
        padding: 60px 0 40px 0;
    }
    
    .about-content {
        flex-direction: column;
        gap: 24px;
    }
    
    .about-main {
        gap: 24px;
    }
    
    .about-card {
        padding: 32px;
    }
    
    .about-card p {
        font-size: 1rem;
        margin-bottom: 24px;
    }
    
    .about-card .pic {
        margin: 24px 0;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 40px 0 30px 0;
    }
    
    .about-card {
        padding: 24px;
        border-radius: 12px;
    }
    
    .about-card p {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 20px;
    }
    
    .about-card .pic {
        margin: 20px 0;
    }
    
    .about-card .pic img {
        border-radius: 8px;
    }
}

@media (max-width: 576px) {
    .about-section {
        padding: 30px 0 20px 0;
    }
    
    .about-card {
        padding: 20px;
        border-radius: 8px;
    }
    
    .about-card p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 16px;
    }
    
    .about-card .pic {
        margin: 16px 0;
    }
    
    .about-card .pic img {
        border-radius: 6px;
    }
}

/* 添加动画效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-card {
    animation: fadeInUp 0.6s ease forwards;
}

.about-card:nth-child(1) {
    animation-delay: 0.1s;
}

.about-card:nth-child(2) {
    animation-delay: 0.2s;
}

.about-card:nth-child(3) {
    animation-delay: 0.3s;
}

/* About页面section-title优化 */
.about-section .section-title {
    text-align: center;
    margin-bottom: 60px;
}

.about-section .section-title h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 16px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.about-section .section-title h2::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
}

.about-section .section-title p {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* 卡片内容优化 */
.about-card p:last-of-type {
    margin-bottom: 0;
}

/* 图片加载优化 */
.about-card .pic img {
    opacity: 0;
    animation: fadeInImage 0.8s ease forwards;
}

@keyframes fadeInImage {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* 悬停效果增强 */
.about-card:hover .pic img {
    transform: scale(1.05);
}

/* 移动端优化 */
@media (max-width: 768px) {
    .about-section .section-title h2 {
        font-size: 2rem;
    }
    
    .about-section .section-title p {
        font-size: 1rem;
    }
    
    .about-section .section-title {
        margin-bottom: 40px;
    }
}

@media (max-width: 576px) {
    .about-section .section-title h2 {
        font-size: 1.8rem;
    }
    
    .about-section .section-title p {
        font-size: 0.9rem;
    }
    
    .about-section .section-title {
        margin-bottom: 30px;
    }
}

/* History页面专门样式 */
.history-section {
    padding: 80px 0 60px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e6f0ff 100%);
}

.history-section .section-title {
    text-align: center;
    margin-bottom: 60px;
}

.history-section .section-title h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 16px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.history-section .section-title h2::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
}

.history-section .section-title p {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* 发展历程卡片样式 */
.history-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 40px;
    margin-bottom: 0;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 86, 179, 0.1);
    position: relative;
    overflow: hidden;
}

.history-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.history-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* 阶段标题样式 */
.history-card h3 {
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    padding-left: 20px;
    border-left: 4px solid var(--accent);
    background: linear-gradient(135deg, rgba(0, 168, 232, 0.1), rgba(0, 86, 179, 0.05));
    padding: 16px 20px;
    border-radius: 0 8px 8px 0;
    margin-bottom: 24px;
}

.history-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 32px;
    text-align: justify;
}

.history-card p:last-of-type {
    margin-bottom: 0;
}

.history-card .pic {
    text-align: center;
    margin: 32px 0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    justify-content: center;
}

.history-card .pic:hover {
    transform: scale(1.02);
}

.history-card .pic img {
    width: 100%;
    max-width: 700px;
    height: auto;
    display: block;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.history-card .pic img:hover {
    transform: scale(1.05);
}

/* 时间轴效果 */
.history-card h3::after {
    content: '';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(0, 168, 232, 0.2);
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .history-card {
        padding: 36px;
    }
    
    .history-card h3 {
        font-size: 1.5rem;
        padding: 14px 18px;
    }
    
    .history-card p {
        font-size: 1.05rem;
        margin-bottom: 28px;
    }
    
    .history-card .pic {
        margin: 28px 0;
    }
}

@media (max-width: 992px) {
    .history-section {
        padding: 60px 0 40px 0;
    }
    
    .history-section .section-title {
        margin-bottom: 40px;
    }
    
    .history-card {
        padding: 32px;
    }
    
    .history-card h3 {
        font-size: 1.4rem;
        padding: 12px 16px;
        margin-bottom: 20px;
    }
    
    .history-card p {
        font-size: 1rem;
        margin-bottom: 24px;
    }
    
    .history-card .pic {
        margin: 24px 0;
    }
}

@media (max-width: 768px) {
    .history-section {
        padding: 40px 0 30px 0;
    }
    
    .history-section .section-title h2 {
        font-size: 2rem;
    }
    
    .history-section .section-title p {
        font-size: 1rem;
    }
    
    .history-card {
        padding: 24px;
        border-radius: 12px;
    }
    
    .history-card h3 {
        font-size: 1.3rem;
        padding: 10px 14px;
        margin-bottom: 16px;
    }
    
    .history-card p {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 20px;
    }
    
    .history-card .pic {
        margin: 20px 0;
    }
    
    .history-card .pic img {
        border-radius: 8px;
    }
}

@media (max-width: 576px) {
    .history-section {
        padding: 30px 0 20px 0;
    }
    
    .history-section .section-title h2 {
        font-size: 1.8rem;
    }
    
    .history-section .section-title p {
        font-size: 0.9rem;
    }
    
    .history-card {
        padding: 20px;
        border-radius: 8px;
    }
    
    .history-card h3 {
        font-size: 1.2rem;
        padding: 8px 12px;
        margin-bottom: 12px;
    }
    
    .history-card p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 16px;
    }
    
    .history-card .pic {
        margin: 16px 0;
    }
    
    .history-card .pic img {
        border-radius: 6px;
    }
}

/* 合作伙伴页面样式 */
.cooperate-section {
    padding: 80px 0;
    background: #f8fafc;
}

.cooperate-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.cooperate-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.cooperate-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.cooperate-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.cooperate-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.cooperate-card:hover .cooperate-image img {
    transform: scale(1.05);
}

.cooperate-content {
    padding: 30px;
}

.cooperate-content h3 {
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
}

.cooperate-content h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}

.cooperate-content > p {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.cooperate-partners {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.partner-type {
    padding: 15px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid var(--accent);
    transition: all 0.3s ease;
}

.partner-type:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.partner-type h4 {
    color: var(--dark);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.partner-type p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .cooperate-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }
    
    .cooperate-content {
        padding: 25px;
    }
    
    .cooperate-content h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .cooperate-section {
        padding: 60px 0;
    }
    
    .cooperate-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .cooperate-image {
        height: 180px;
    }
    
    .cooperate-content {
        padding: 20px;
    }
    
    .cooperate-content h3 {
        font-size: 1.2rem;
    }
    
    .partner-type {
        padding: 12px;
    }
    
    .partner-type h4 {
        font-size: 1rem;
    }
    
    .partner-type p {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .cooperate-section {
        padding: 40px 0;
    }
    
    .cooperate-grid {
        gap: 20px;
    }
    
    .cooperate-image {
        height: 160px;
    }
    
    .cooperate-content {
        padding: 18px;
    }
    
    .cooperate-content h3 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .cooperate-content > p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .partner-type {
        padding: 10px;
    }
    
    .partner-type h4 {
        font-size: 0.95rem;
        margin-bottom: 6px;
    }
    
    .partner-type p {
        font-size: 0.8rem;
    }
}

/* 数字生态页面样式 */
.ecology-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e3f2fd 100%);
}

.ecology-core {
    margin: 60px 0;
}

.ecology-diagram {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px;
}

.core-center {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 10;
}

.core-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(0, 86, 179, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.core-icon i {
    font-size: 3rem;
    color: white;
}

.core-center h3 {
    color: var(--primary);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.core-center p {
    color: var(--gray);
    font-size: 1.1rem;
    font-weight: 500;
}

.ecology-elements {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.ecology-element {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ecology-element::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.ecology-element:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.element-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.element-icon i {
    font-size: 1.5rem;
    color: white;
}

.ecology-element h4 {
    color: var(--dark);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.ecology-element p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.element-details {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.element-details span {
    background: #f0f8ff;
    color: var(--primary);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid #e3f2fd;
}

/* 生态融合部分 */
.ecology-integration {
    margin-top: 80px;
    padding: 60px 0;
    background: white;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.integration-content {
    text-align: center;
}

.integration-content h3 {
    color: var(--primary);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
    position: relative;
}

.integration-content h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}

.integration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.integration-item {
    padding: 30px;
    border-radius: 20px;
    background: #f8fafc;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.integration-item:hover {
    background: white;
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.integration-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.integration-icon i {
    font-size: 2rem;
    color: white;
}

.integration-item h4 {
    color: var(--dark);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.integration-item p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .ecology-diagram {
        padding: 20px;
    }
    
    .ecology-elements {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
    
    .integration-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }
    
    .core-icon {
        width: 100px;
        height: 100px;
    }
    
    .core-icon i {
        font-size: 2.5rem;
    }
    
    .core-center h3 {
        font-size: 1.7rem;
    }
}

@media (max-width: 768px) {
    .ecology-section {
        padding: 60px 0;
    }
    
    .ecology-diagram {
        padding: 15px;
    }
    
    .ecology-elements {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .ecology-element {
        padding: 25px;
    }
    
    .integration-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .integration-item {
        padding: 25px;
    }
    
    .core-center h3 {
        font-size: 1.5rem;
    }
    
    .core-center p {
        font-size: 1rem;
    }
    
    .ecology-element h4 {
        font-size: 1.2rem;
    }
    
    .integration-content h3 {
        font-size: 1.7rem;
    }
}

@media (max-width: 576px) {
    .ecology-section {
        padding: 40px 0;
    }
    
    .ecology-core {
        margin: 40px 0;
    }
    
    .ecology-diagram {
        padding: 10px;
    }
    
    .core-icon {
        width: 80px;
        height: 80px;
    }
    
    .core-icon i {
        font-size: 2rem;
    }
    
    .core-center h3 {
        font-size: 1.3rem;
    }
    
    .core-center p {
        font-size: 0.9rem;
    }
    
    .ecology-element {
        padding: 20px;
    }
    
    .ecology-element h4 {
        font-size: 1.1rem;
    }
    
    .ecology-element p {
        font-size: 0.9rem;
    }
    
    .element-details span {
        font-size: 0.8rem;
        padding: 5px 10px;
    }
    
    .integration-content h3 {
        font-size: 1.5rem;
    }
    
    .integration-item {
        padding: 20px;
    }
    
    .integration-item h4 {
        font-size: 1.1rem;
    }
    
    .integration-item p {
        font-size: 0.9rem;
    }
}

/* 公司文化页面新样式 */
.culture-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.culture-section .section-title {
    text-align: center;
    margin-bottom: 60px;
}

.culture-section .section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
    position: relative;
}

.culture-section .section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
}

.culture-layout {
    display: flex;
    flex-direction: column;
    gap: 60px;
    align-items: center;
}

.culture-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    width: 100%;
    max-width: 800px;
}

.culture-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.culture-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.culture-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.culture-card {
    text-align: center;
    padding: 40px 0;
    transition: var(--transition);
}

.culture-card h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 25px;
    position: relative;
}

.culture-card h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}

.culture-desc {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .culture-layout {
        gap: 40px;
    }
    
    .culture-image img {
        height: 450px;
    }
}

@media (max-width: 992px) {
    .culture-layout {
        gap: 40px;
    }
    
    .culture-image img {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .culture-section {
        padding: 60px 0;
    }
    
    .culture-section .section-title h2 {
        font-size: 2rem;
    }
    
    .culture-layout {
        gap: 30px;
    }
    
    .culture-image img {
        height: 350px;
    }
    
    .culture-card {
        padding: 30px 0;
    }
    
    .culture-card h3 {
        font-size: 1.5rem;
    }
    
    .culture-desc {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .culture-section {
        padding: 40px 0;
    }
    
    .culture-section .section-title h2 {
        font-size: 1.8rem;
    }
    
    .culture-image img {
        height: 250px;
    }
    
    .culture-card {
        padding: 25px 0;
    }
    
    .culture-card h3 {
        font-size: 1.3rem;
    }
    
    .culture-desc {
        font-size: 0.95rem;
    }
}

/* 公司愿景页面样式 */
.vision-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.vision-section .section-title {
    text-align: center;
    margin-bottom: 60px;
}

.vision-section .section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
    position: relative;
}

.vision-section .section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
}

.vision-layout {
    display: flex;
    flex-direction: column;
    gap: 60px;
    align-items: center;
}

.vision-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    width: 100%;
    max-width: 800px;
}

.vision-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.vision-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.vision-card {
    text-align: center;
    padding: 40px 0;
    transition: var(--transition);
}

.vision-card h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 25px;
    position: relative;
}

.vision-card h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}

.vision-desc {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--gray);
    max-width: 800px;
    margin: 0 auto 60px;
}

.office-locations {
    margin-top: 80px;
}

.locations-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary);
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.locations-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.location-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    border: 2px solid transparent;
}

.location-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--accent);
}

.location-card.main-location {
    border-color: var(--primary);
    box-shadow: 0 15px 35px rgba(0, 86, 179, 0.2);
}

.location-card.main-location:hover {
    box-shadow: 0 25px 50px rgba(0, 86, 179, 0.3);
}

.location-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.location-card:hover .location-image img {
    transform: scale(1.05);
}

.location-info {
    padding: 25px;
}

.location-info h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 12px;
}

.location-info p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray);
    margin: 0;
}

/* 联系我们页面样式 */
.contact-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.contact-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-content {
    flex: 1;
    max-width: 500px;
}

.contact-content h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 30px;
    position: relative;
}

.contact-content h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}

.contact-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 15px;
}

.contact-images {
    flex: 1;
    /* max-width: 600px; */
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
}

.image-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.image-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.image-item img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    transition: var(--transition);
}

.image-item:hover img {
    transform: scale(1.05);
}

.image-item span {
    display: block;
    padding: 18px;
    text-align: center;
    font-size: 1.1rem;
    color: var(--primary);
    font-weight: 500;
    background: white;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}



/* 联系我们页面响应式设计 */
@media (max-width: 992px) {
    .contact-layout {
        flex-direction: column;
        gap: 50px;
    }
    
    .contact-content {
        max-width: 100%;
        text-align: center;
    }
    
    .contact-content h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .contact-images {
        max-width: 100%;
    }
    
    .image-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 24px;
    }
    .image-item img {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .image-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 12px;
    }
    .image-item img {
        height: 180px;
    }
}

/* 愿景页面响应式设计 */
@media (max-width: 1200px) {
    .location-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 992px) {
    .location-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .locations-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .vision-section {
        padding: 60px 0;
    }
    
    .vision-section .section-title h2 {
        font-size: 2rem;
    }
    
    .vision-desc {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    
    .office-locations {
        margin-top: 60px;
    }
    
    .locations-title {
        font-size: 1.6rem;
        margin-bottom: 40px;
    }
    
    .location-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .location-image {
        height: 200px;
    }
    
    .location-info {
        padding: 20px;
    }
    
    .location-info h4 {
        font-size: 1.2rem;
    }
    
    .location-info p {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .vision-section {
        padding: 40px 0;
    }
    
    .vision-section .section-title h2 {
        font-size: 1.8rem;
    }
    
    .vision-desc {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }
    
    .office-locations {
        margin-top: 40px;
    }
    
    .locations-title {
        font-size: 1.4rem;
        margin-bottom: 30px;
    }
    
    .location-image {
        height: 180px;
    }
    
    .location-info {
        padding: 15px;
    }
    
    .location-info h4 {
        font-size: 1.1rem;
    }
    
    .location-info p {
        font-size: 0.9rem;
    }
    
    
    .contact-item {
        padding: 15px;
    }
    
    .contact-item i {
        font-size: 1.3rem;
    }
    
    .contact-item span {
        font-size: 1rem;
    }
    
    .contact-layout {
        flex-direction: column;
        gap: 40px;
    }
    
    .contact-content {
        max-width: 100%;
    }
    
    .contact-images {
        max-width: 100%;
    }
    
    .image-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .image-item img {
        height: 220px;
    }
    
    .image-item span {
        padding: 15px;
        font-size: 1rem;
    }
}

.contact-content-centered {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px auto;
}

.contact-images-centered {
    display: flex;
    justify-content: center;
    width: 100%;
}

.image-grid-centered {
    display: flex;
    justify-content: center;
    gap: 24px;
    max-width: 1100px;
    width: 100%;
}

.image-grid-centered .image-item {
    flex: 1 1 0;
    max-width: 380px;
    background: white;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.10);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: var(--transition);
}

.image-grid-centered .image-item img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    border-radius: 14px 14px 0 0;
}

.image-grid-centered .image-item span {
    display: block;
    padding: 18px 0 16px 0;
    font-size: 1.08rem;
    color: var(--primary);
    font-weight: 500;
    letter-spacing: 0.5px;
    background: white;
    width: 100%;
    text-align: center;
}

@media (max-width: 700px) {
    .image-grid-centered {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    .image-grid-centered .image-item {
        max-width: 98vw;
        width: 100%;
    }
    .image-grid-centered .image-item img {
        height: 150px;
    }
}

/* 招聘页面样式 */
.job-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.job-section .section-title {
    text-align: center;
    margin-bottom: 60px;
}

.job-section .section-title h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    position: relative;
}

.job-section .section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
}

.job-section .section-title p {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.job-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.job-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.job-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.job-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.job-card:hover::before {
    transform: scaleX(1);
}

.job-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.job-card:hover .job-icon {
    transform: scale(1.1) rotate(5deg);
}

.job-icon i {
    font-size: 24px;
    color: white;
}

.job-content h3 {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 12px;
    font-weight: 600;
    line-height: 1.3;
}

.job-content p {
    color: var(--gray);
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

.job-section .contact-info {
    margin-top: 40px;
    text-align: center;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.job-section .contact-header {
    margin-bottom: 25px;
}

.job-section .contact-header h3 {
    font-size: 24px;
    color: #333;
    margin: 0;
    font-weight: 600;
}

.job-section .contact-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.job-section .contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 0;
}

.job-section .contact-item i {
    color: #007bff;
    font-size: 18px;
    width: 20px;
    text-align: center;
}

.job-section .contact-item a {
    color: #007bff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.job-section .contact-item a:hover {
    color: #0056b3;
}

.job-section .contact-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.job-section .contact-address {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
}

.job-section .contact-address span {
    color: #666;
    font-size: 14px;
    line-height: 1.4;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .job-section {
        padding: 60px 0;
    }
    
    .job-section .section-title h2 {
        font-size: 2rem;
    }
    
    .job-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .job-section {
        padding: 40px 0;
    }
    
    .job-section .section-title {
        margin-bottom: 40px;
    }
    
    .job-section .section-title h2 {
        font-size: 1.8rem;
    }
    
    .job-section .section-title p {
        font-size: 1rem;
    }
    
    .job-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .job-card {
        padding: 25px;
    }
    
    .job-content h3 {
        font-size: 1.2rem;
    }
    
    .job-section .contact-info {
        margin-top: 30px;
        padding: 25px 20px;
        margin-left: 20px;
        margin-right: 20px;
    }
    
    .job-section .contact-header h3 {
        font-size: 22px;
    }
    
    .job-section .contact-details {
        gap: 12px;
    }
    
    .job-section .contact-item {
        gap: 10px;
        padding: 10px 0;
    }
    
    .job-section .contact-item i {
        font-size: 16px;
    }
    
    .job-section .contact-item a {
        font-size: 15px;
    }
    
    .job-section .contact-links {
        gap: 12px;
    }
    
    .job-section .contact-address span {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .job-section {
        padding: 30px 0;
    }
    
    .job-section .section-title h2 {
        font-size: 1.6rem;
    }
    
    .job-section .section-title p {
        font-size: 0.95rem;
    }
    
    .job-card {
        padding: 20px;
    }
    
    .job-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    
    .job-icon i {
        font-size: 20px;
    }
    
    .job-content h3 {
        font-size: 1.1rem;
    }
    
    .job-content p {
        font-size: 0.9rem;
    }
    
    .job-section .contact-info {
        padding: 20px 15px;
        margin-left: 15px;
        margin-right: 15px;
    }
    
    .job-section .contact-header h3 {
        font-size: 20px;
    }
    
    .job-section .contact-item i {
        font-size: 16px;
    }
    
    .job-section .contact-item a {
        font-size: 14px;
    }
    
    .job-section .contact-links {
        gap: 10px;
    }
    
    .job-section .contact-address span {
        font-size: 12px;
    }
    .job-section .contact-value p {
        font-size: 0.9rem;
    }
}

/* 联系方式卡片美化 */
.contact-info-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  padding: 32px 24px 20px 24px;
  max-width: 700px;
  margin: 40px auto 0 auto;
  text-align: center;
}

.contact-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 24px;
  letter-spacing: 1px;
}

.contact-row {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.contact-method {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 160px;
  gap: 10px;
}

.icon-circle {
  background: #1976d2;
  color: #fff;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 6px;
  box-shadow: 0 2px 8px rgba(25,118,210,0.08);
}

.contact-method a {
  color: #1976d2;
  font-weight: 500;
  text-decoration: none;
  font-size: 1rem;
  margin: 0 2px;
  transition: color 0.2s;
}
.contact-method a:hover {
  color: #0d47a1;
  text-decoration: underline;
}

.address span {
  display: block;
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
}

@media (max-width: 700px) {
  .contact-row {
    flex-direction: column;
    gap: 24px;
  }
  .contact-method {
    min-width: 0;
  }
  .contact-info-card {
    padding: 20px 8px 12px 8px;
  }
}
.contact-info-card {
    background: linear-gradient(135deg, #e3f0ff 0%, #f6fafd 100%);
    border-radius: 28px;
    box-shadow: 0 6px 32px rgba(25,118,210,0.10);
    border: 2px solid #1976d2;
    padding: 38px 28px 26px 28px;
    max-width: 1440px;
    margin: 48px auto 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
  }
  .contact-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1976d2;
    margin-bottom: 28px;
    letter-spacing: 1px;
  }
  .icon-circle {
    background: #1976d2;
    color: #fff;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 8px;
    box-shadow: 0 2px 8px rgba(25,118,210,0.10);
  }
  .contact-method a {
    color: #1976d2;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.08rem;
    margin: 0 2px;
    transition: color 0.2s;
  }
  .contact-method a:hover {
    color: #0d47a1;
    text-decoration: underline;
  }
  .address span {
    display: block;
    color: #555;
    font-size: 1rem;
    line-height: 1.5;
  }
  @media (max-width: 700px) {
    .contact-info-card {
      padding: 18px 6px 10px 6px;
      border-radius: 18px;
    }
  }

/* 管理层双人介绍布局 */
.leader-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin: 40px 0 32px 0;
}
.leader-block {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  background: none;
  flex: 1 1 0;
  min-width: 0;
  position: relative;
  max-width: 48%;
}
.leader-img-bg {
  background: linear-gradient(135deg, #2566b0 60%, #3a8dde 100%);
  border-radius: 8px 0 0 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  min-width: 200px;
  height: 320px;
  box-shadow: 0 4px 24px rgba(0,40,120,0.10);
  overflow: hidden;
}
.leader-img-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px 0 0 8px;
  background: #fff;
}
.leader-blue-panel {
  background: linear-gradient(135deg, #2566b0 60%, #3a8dde 100%);
  color: #fff;
  border-radius: 0 8px 8px 0;
  padding: 36px 32px 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  flex: 1 1 0;
  box-shadow: 0 4px 24px rgba(0,40,120,0.10);
}
.leader-name {
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1.4;
}
.leader-desc {
  font-size: 1.08rem;
  line-height: 1.8;
  font-weight: 400;
}
.leader-left .leader-img-bg {
  border-radius: 8px 0 0 8px;
}
.leader-left .leader-blue-panel {
  border-radius: 0 8px 8px 0;
}
.leader-right .leader-img-bg {
  border-radius: 0 8px 8px 0;
  order: 2;
}
.leader-right .leader-blue-panel {
  border-radius: 8px 0 0 8px;
  order: 1;
  text-align: left;
}
.leader-right {
  flex-direction: row-reverse;
}
.leader-team-bar {
  margin: 0 auto 32px auto;
  background: linear-gradient(90deg, #2566b0 0%, #3a8dde 100%);
  color: #fff;
  border-radius: 12px;
  font-size: 1.13rem;
  font-weight: 500;
  padding: 22px 36px;
  text-align: center;
  max-width: 100%;
  box-shadow: 0 2px 12px rgba(0,40,120,0.10);
}
@media (max-width: 1100px) {
  .leader-row {
    flex-direction: column;
    gap: 32px;
  }
  .leader-block {
    max-width: 100%;
  }
  .leader-img-bg, .leader-img-bg img {
    width: 180px;
    height: 220px;
    min-width: 120px;
    border-radius: 8px 8px 0 0 !important;
  }
  .leader-blue-panel, .leader-left .leader-blue-panel, .leader-right .leader-blue-panel {
    border-radius: 0 0 8px 8px !important;
    padding: 24px 18px;
  }
  .leader-block {
    flex-direction: column;
    align-items: stretch;
  }
  .leader-right {
    flex-direction: column;
  }
}
@media (max-width: 700px) {
  .leader-row {
    gap: 18px;
    margin: 18px 0 18px 0;
  }
  .leader-img-bg, .leader-img-bg img {
    width: 120px;
    height: 150px;
    min-width: 80px;
  }
  .leader-blue-panel {
    padding: 14px 8px;
    font-size: 0.98rem;
  }
  .leader-team-bar {
    font-size: 0.98rem;
    padding: 12px 6px;
  }
}

.leader-flex-wrap {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 48px;
  margin: 48px 0 32px 0;
}
.leader-left-col {
  display: flex;
  flex-direction: row;
  align-items: center;
  background: linear-gradient(135deg, #2566b0 60%, #3a8dde 100%);
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,40,120,0.10);
  padding: 32px 36px 32px 24px;
  min-width: 420px;
  max-width: 540px;
  flex: 1 1 0;
}
.leader-left-img {
  width: 180px;
  height: 220px;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  margin-right: 32px;
  box-shadow: 0 2px 12px rgba(0,40,120,0.10);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.leader-left-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}
.leader-left-info {
  color: #fff;
  flex: 1 1 0;
  min-width: 0;
}
.leader-left-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.4;
}
.leader-left-desc {
  font-size: 1.08rem;
  line-height: 1.8;
  font-weight: 400;
}

.leader-right-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(135deg, #2566b0 60%, #3a8dde 100%);
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,40,120,0.10);
  padding: 32px 24px 32px 36px;
  min-width: 420px;
  max-width: 540px;
  flex: 1 1 0;
}
.leader-right-img {
  width: 180px;
  height: 220px;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  margin-bottom: 28px;
  box-shadow: 0 2px 12px rgba(0,40,120,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
}
.leader-right-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}
.leader-right-info {
  color: #fff;
  text-align: left;
  width: 100%;
}
.leader-right-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.4;
}
.leader-right-desc {
  font-size: 1.08rem;
  line-height: 1.8;
  font-weight: 400;
}

.leader-team-bar {
  margin: 36px auto 32px auto;
  background: linear-gradient(90deg, #2566b0 0%, #3a8dde 100%);
  color: #fff;
  border-radius: 16px;
  font-size: 1.13rem;
  font-weight: 500;
  padding: 22px 36px;
  text-align: center;
  max-width: 1200px;
  box-shadow: 0 2px 12px rgba(0,40,120,0.10);
}


/* 管理层介绍区完全仿照用户图片 */
.leader-cards-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  margin: 40px 0 48px 0;
}
.leader-card {
  background: linear-gradient(135deg, #2870c6 70%, #4ea3e6 100%);
  border-radius: 28px;
  box-shadow: 0 8px 32px rgba(0,40,120,0.13);
  padding: 0;
  min-width: 420px;
  max-width: 520px;
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.leader-card-content {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 48px 40px 48px 40px;
}
.leader-avatar-left {
  width: 140px;
  height: 140px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(0,40,120,0.10);
  overflow: hidden;
  margin-right: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.leader-avatar-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}
.leader-info-left {
  color: #fff;
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.leader-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1.4;
}
.leader-desc {
  font-size: 1.08rem;
  line-height: 1.8;
  font-weight: 400;
}

.leader-card-right {
  padding: 48px 40px 48px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.leader-avatar-right {
  width: 140px;
  height: 140px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(0,40,120,0.10);
  overflow: hidden;
  margin: 0 auto 28px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.leader-avatar-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}
.leader-info-right {
  color: #fff;
  width: 100%;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.leader-info-right .leader-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1.4;
}
.leader-info-right .leader-desc {
  font-size: 1.08rem;
  line-height: 1.8;
  font-weight: 400;
  margin-bottom: 24px;
}
.leader-team-highlight {
  background: rgba(255,255,255,0.13);
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(0,40,120,0.10);
  color: #fff;
  font-size: 1.08rem;
  font-weight: 600;
  padding: 28px 24px;
  margin-top: 0;
  width: 100%;
  text-align: center;
}


.management-leader-flex {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 36px;
  margin: 48px 0 56px 0;
}
.leader-split-card {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  background: none;
  border-radius: 28px;
  box-shadow: 0 8px 32px rgba(0,40,120,0.13);
  overflow: hidden;
  min-width: 520px;
  max-width: 700px;
  flex: 1 1 0;
  height: 550px;
  background: linear-gradient(135deg, #2870c6 80%, #4ea3e6 100%);
}
.leader-img-col {
  flex: 0 0 54%;
  min-width: 0;
  height: 100%;
  background: #eaeaea;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
}
.leader-img-col2 {
    flex: 0 0 45%;
    min-width: 0;
    height: 100%;
    background: #eaeaea;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
  }
.leader-img-col img,.leader-img-col2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.leader-blue-col {
  flex: 1 1 0;
  /* background: linear-gradient(135deg, #2870c6 80%, #4ea3e6 100%); */
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 38px 36px 36px 36px;
  height: 100%;
  border-top-right-radius: 28px;
  border-bottom-right-radius: 28px;
  position: relative;
}
.leader-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 22px;
  line-height: 1.4;
}
.leader-desc {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
  margin-bottom: 0;
}
.leader-split-card-right .leader-blue-bar {
  background: rgba(255,255,255,0.13);
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,40,120,0.10);
  color: #fff;
  font-size: 1.08rem;
  font-weight: 500;
  padding: 22px 20px;
  margin-top: 32px;
  width: 100%;
  text-align: left;
}
.leader-blue-bar {
  /* 只在右侧卡片出现 */
  display: block;
}

@media (max-width: 800px) {
  .leader-split-card {
    flex-direction: column;
    height: auto;
    min-width: 0;
    max-width: 100vw;
    border-radius: 18px;
  }
  .leader-img-col {
    flex: none;
    width: 100%;
    height: 180px;
    border-radius: 18px 18px 0 0;
  }
  .leader-blue-col {
    border-radius: 0 0 18px 18px;
    padding: 22px 12px 18px 12px;
    height: auto;
  }
  .leader-split-card-right .leader-blue-bar {
    margin-top: 18px;
    border-radius: 10px;
    padding: 10px 6px;
    font-size: 0.98rem;
  }
}

/* 右侧上下两块加起来与左侧同高 */
.leader-split-card-right-wrap {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  height: 550px;
  min-width: 520px;
  max-width: 700px;
  flex: 1 1 0;
}
.leader-split-card-right {
  flex: 1 1 0;
  min-height: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  margin-bottom: 0;
}
.leader-blue-bar {
  background: linear-gradient(135deg, #2870c6 80%, #4ea3e6 100%);
  color: #fff;
  border-bottom-right-radius: 28px;
  border-bottom-left-radius: 28px;
  box-shadow: 0 8px 32px rgba(0,40,120,0.13);
  font-size: 1rem;
  font-weight: 400;
  padding: 28px 36px;
  text-align: left;
  width: 100%;
  flex-shrink: 0;
  min-height: 0;
  margin-top: 0;
  display: flex;
  align-items: center;
}
@media (max-width: 800px) {
  .management-leader-flex {
    flex-direction: column;
    gap: 32px;
    align-items: center;
  }
  .leader-split-card, .leader-split-card-right-wrap {
    min-width: 0;
    max-width: 100vw;
    width: 100%;
    height: auto;
    border-radius: 18px;
  }
  .leader-split-card-right {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }
  .leader-blue-bar {
    border-radius: 0 0 18px 18px;
    padding: 14px 8px;
    font-size: 0.98rem;
  }
}

  