@charset "UTF-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Source Han Sans SC", "Microsoft YaHei", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333333;
    background-color: #ffffff;
}

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

.wjs-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(26, 35, 126, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.wjs-header .wjs-container {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    height: 70px;
}

.wjs-top-bar {
    background: rgba(0, 0, 0, 0.2);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.wjs-top-bar .wjs-container {
    height: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wjs-top-bar-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.wjs-top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.wjs-top-bar-right a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.wjs-top-bar-right a:hover {
    color: #ff9800;
}

.wjs-top-bar-right a i {
    margin-right: 6px;
    font-size: 13px;
}

.wjs-top-bar-slogan {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    padding-left: 20px;
    font-size: 12px;
    letter-spacing: 1px;
}

.wjs-city-selector {
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    gap: 5px;
    padding: 5px 0;
}

.wjs-city-current {
    color: #ff9800;
    font-weight: 600;
    font-size: 14px;
}

.wjs-city-arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.wjs-city-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
    padding: 10px 0;
    min-width: 160px;
    display: none;
    z-index: 100;
}

.wjs-city-dropdown a {
    display: block;
    padding: 8px 20px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
}

.wjs-city-dropdown a:hover {
    background: #f5f5f5;
    color: #1a237e;
}

.wjs-city-selector.active .wjs-city-dropdown {
    display: block;
}

.wjs-city-selector.active .wjs-city-arrow {
    transform: rotate(180deg);
}

.wjs-logo-city {
    background: #ff9800;
    color: #fff;
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 10px;
    font-weight: 600;
    letter-spacing: 1px;
}

.wjs-mobile-city {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
}

.wjs-mobile-city i:first-child {
    color: #ff9800;
}

.wjs-group-brand {
    padding: 80px 0;
    background: #ffffff;
}

.wjs-group-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.wjs-group-stat {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.wjs-group-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(26, 35, 126, 0.1);
}

.wjs-group-stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 10px;
}

.wjs-group-stat-label {
    font-size: 15px;
    color: #666;
}

.wjs-group-trust {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.wjs-group-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #f8f9fa, #e8eaf6);
    border-radius: 30px;
    font-size: 14px;
    color: #1a237e;
    font-weight: 500;
}

.wjs-group-badge i {
    color: #ff9800;
}

.wjs-footer-city-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 152, 0, 0.15);
    color: #ff9800;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    margin-top: 15px;
}

.wjs-logo {
    display: flex;
    align-items: center;
    color: #ffffff;
    text-decoration: none;
}

.wjs-logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #ff9800, #f57c00);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 24px;
    color: #ffffff;
}

.wjs-logo-text {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
}

.wjs-logo-sub {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.wjs-nav {
    justify-self: center;
    display: flex;
    list-style: none;
    align-items: center;
    gap: 30px;
    min-width: 0;
}

.wjs-nav li {
    margin: 0;
    white-space: nowrap;
}

.wjs-header > .wjs-container > .wjs-hotline {
    margin-left: 0;
}

.wjs-nav li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.wjs-nav li a:hover {
    color: #ff9800;
}

.wjs-nav li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff9800;
    transition: width 0.3s ease;
}

.wjs-nav li a:hover::after {
    width: 100%;
}

.wjs-nav li a.active {
    color: #ff9800;
}

.wjs-nav li a.active::after {
    width: 100%;
}

.wjs-hotline {
    display: flex;
    align-items: center;
    background: #ff9800;
    padding: 8px 20px;
    border-radius: 30px;
    margin-left: 20px;
    transition: all 0.3s ease;
}

.wjs-hotline:hover {
    background: #f57c00;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.4);
}

.wjs-hotline-icon {
    font-size: 18px;
    color: #ffffff;
    margin-right: 10px;
    flex-shrink: 0;
}

.wjs-hotline a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
}

.wjs-hotline span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    margin-left: 8px;
}

.wjs-menu-toggle {
    display: none;
    font-size: 24px;
    color: #ffffff;
    cursor: pointer;
}

.wjs-mobile-nav {
    display: none;
    background: #1a237e;
    padding: 20px;
}

.wjs-mobile-nav ul {
    list-style: none;
}

.wjs-mobile-nav ul li {
    margin-bottom: 15px;
}

.wjs-mobile-nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
}

.wjs-mobile-nav .wjs-hotline {
    margin-left: 0;
    margin-top: 20px;
    justify-content: center;
}

.wjs-footer {
    background: #1a237e;
    padding: 60px 0 30px;
    color: #ffffff;
}

.wjs-footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.wjs-footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.wjs-footer-logo .wjs-logo-icon {
    width: 50px;
    height: 50px;
    font-size: 28px;
}

.wjs-footer-logo-text {
    font-size: 22px;
    font-weight: 700;
}

.wjs-footer-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
}

.wjs-footer-section h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ff9800;
}

.wjs-footer-links {
    list-style: none;
}

.wjs-footer-links li {
    margin-bottom: 12px;
}

.wjs-footer-links li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.wjs-footer-links li a:hover {
    color: #ff9800;
}

.wjs-footer-contact p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.wjs-footer-contact i {
    margin-right: 10px;
    color: #ff9800;
}

.wjs-footer-contact a {
    color: #ffffff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
}

.wjs-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.wjs-footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

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

.wjs-footer-bottom a:hover {
    color: #ff9800;
}

@media (max-width: 1024px) {
    .wjs-footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

.wjs-right-service {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9997;
}

.wjs-right-service-btn {
    background: #1a237e;
    color: #ffffff;
    padding: 15px 10px;
    border-radius: 10px 0 0 10px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(26, 35, 126, 0.3);
}

.wjs-right-service-btn:hover {
    background: #3949ab;
    padding-left: 20px;
}

.wjs-right-service-btn i {
    font-size: 20px;
}

.wjs-right-service-panel {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    width: 250px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.wjs-right-service-panel.active {
    opacity: 1;
    visibility: visible;
    right: 70px;
}

.wjs-right-service-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 25px;
    height: 25px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    color: #666;
    transition: all 0.3s ease;
}

.wjs-right-service-close:hover {
    background: #e0e0e0;
    color: #333;
}

.wjs-right-service-title {
    font-size: 16px;
    font-weight: 600;
    color: #1a237e;
    margin-bottom: 15px;
    text-align: center;
}

.wjs-right-service-content p {
    font-size: 14px;
    color: #666;
    text-align: center;
    margin-bottom: 10px;
}

.wjs-right-service-wx {
    text-align: center;
    margin: 15px 0;
}

.wjs-right-service-wx img {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    margin-bottom: 10px;
    border: 1px solid #e0e0e0;
}

.wjs-right-service-wx p {
    font-size: 13px;
    color: #999;
}

.wjs-right-service-phone {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.wjs-right-service-phone i {
    color: #ff9800;
    margin-right: 8px;
}

.wjs-right-service-phone a {
    color: #ff9800;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
}

@media (max-width: 900px) {
    .wjs-nav {
        gap: 18px;
    }
    .wjs-nav li a {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .wjs-header .wjs-container {
        display: flex;
        justify-content: space-between;
        height: 60px;
    }

    .wjs-header > .wjs-container > .wjs-hotline {
        display: none;
    }
    
    .wjs-top-bar {
        display: none;
    }
    
    .wjs-nav {
        display: none;
    }
    
    .wjs-menu-toggle {
        display: block;
    }
    
    .wjs-mobile-nav {
        display: none;
    }
    
    .wjs-mobile-nav.active {
        display: block;
    }
    
    .wjs-footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .wjs-right-service {
        display: none;
    }
    
    .wjs-group-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .wjs-group-trust {
        gap: 15px;
    }
    
    .wjs-group-badge {
        font-size: 12px;
        padding: 8px 14px;
    }
}