@charset "UTF-8";

.wjs-banner {
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.9), rgba(57, 73, 171, 0.85)), url('../image/yewu1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    padding-top: 70px;
    position: relative;
    overflow: hidden;
}

.wjs-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.wjs-banner-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.wjs-banner-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    letter-spacing: 8px;
    text-transform: uppercase;
}

.wjs-banner-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
}

.wjs-banner-title span {
    color: #ff9800;
}

.wjs-banner-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    line-height: 1.8;
}

.wjs-banner-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.wjs-btn {
    display: inline-flex;
    align-items: center;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.wjs-btn i {
    margin-right: 12px;
    font-size: 18px;
}

.wjs-btn-primary {
    background: #ff9800;
    color: #ffffff;
}

.wjs-btn-primary:hover {
    background: #f57c00;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 152, 0, 0.4);
}

.wjs-btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.wjs-btn-secondary:hover {
    background: #ffffff;
    color: #1a237e;
}

.wjs-banner-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.wjs-stat-item {
    text-align: center;
}

.wjs-stat-number {
    font-size: 42px;
    font-weight: 700;
    color: #ff9800;
}

.wjs-stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 5px;
}

.wjs-services {
    padding: 80px 0;
    background: #f8f9fa;
}

.wjs-section-title {
    text-align: center;
    margin-bottom: 60px;
}

.wjs-section-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.wjs-section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ff9800, #f57c00);
    border-radius: 3px;
}

.wjs-section-title p {
    font-size: 16px;
    color: #666666;
    margin-top: 30px;
}

.wjs-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.wjs-service-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.wjs-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(26, 35, 126, 0.15);
    border-color: #3949ab;
}

.wjs-service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1a237e, #3949ab);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 36px;
    color: #ffffff;
}

.wjs-service-card:hover .wjs-service-icon {
    background: linear-gradient(135deg, #ff9800, #f57c00);
    transform: scale(1.1);
}

.wjs-service-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a237e;
    margin-bottom: 15px;
}

.wjs-service-card p {
    font-size: 14px;
    color: #666666;
    line-height: 1.7;
}

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

.wjs-stations-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.wjs-stations-tab {
    padding: 12px 30px;
    background: #f0f0f0;
    color: #333333;
    border: none;
    border-radius: 30px;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wjs-stations-tab.active {
    background: #1a237e;
    color: #ffffff;
}

.wjs-stations-tab:hover {
    background: #3949ab;
    color: #ffffff;
}

.wjs-stations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.wjs-station-card {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 25px;
    transition: all 0.3s ease;
}

.wjs-station-card:hover {
    background: #1a237e;
    transform: translateY(-5px);
}

.wjs-station-card:hover .wjs-station-name,
.wjs-station-card:hover .wjs-station-address,
.wjs-station-card:hover .wjs-station-phone {
    color: #ffffff;
}

.wjs-station-card:hover .wjs-station-phone {
    color: #ff9800;
}

.wjs-station-name {
    font-size: 18px;
    font-weight: 600;
    color: #1a237e;
    margin-bottom: 10px;
}

.wjs-station-address {
    font-size: 14px;
    color: #666666;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.wjs-station-address i {
    margin-right: 8px;
    color: #3949ab;
}

.wjs-station-phone {
    font-size: 16px;
    font-weight: 600;
    color: #ff9800;
    display: flex;
    align-items: center;
}

.wjs-station-phone i {
    margin-right: 8px;
}

.wjs-station-phone a {
    text-decoration: none;
    color: #ff9800;
}

.wjs-stations-more {
    text-align: center;
    margin-top: 30px;
}

.wjs-stations-more-link {
    display: inline-flex;
    align-items: center;
    padding: 12px 30px;
    background: #1a237e;
    color: #ffffff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.wjs-stations-more-link:hover {
    background: #3949ab;
    transform: translateY(-2px);
}

.wjs-stations-more-link i {
    margin-left: 10px;
    font-size: 14px;
}

.wjs-advantages {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a237e, #3949ab);
    color: #ffffff;
}

.wjs-advantages .wjs-section-title h2,
.wjs-advantages .wjs-section-title p {
    color: #ffffff;
}

.wjs-advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.wjs-advantage-card {
    text-align: center;
    padding: 30px;
}

.wjs-advantage-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: #ff9800;
}

.wjs-advantage-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.wjs-advantage-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.wjs-testimonials {
    padding: 80px 0;
    background: #f8f9fa;
}

.wjs-testimonials-wrapper {
    position: relative;
}

.wjs-testimonials-prev,
.wjs-testimonials-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: #ffffff;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    color: #1a237e;
    cursor: pointer;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 100;
}

.wjs-testimonials-prev:hover,
.wjs-testimonials-next:hover {
    background: #1a237e;
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(26, 35, 126, 0.3);
}

.wjs-testimonials-prev {
    left: 0;
}

.wjs-testimonials-next {
    right: 0;
}

.wjs-testimonials-slider-container {
    overflow: hidden;
    margin: 0 55px;
}

.wjs-testimonials-slider {
    display: flex;
    transition: transform 0.5s ease;
}

.wjs-testimonial-card-inner {
    background: #ffffff;
    border-radius: 12px;
    padding: 35px;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.wjs-testimonial-card-inner::before {
    content: '"';
    font-size: 60px;
    color: rgba(26, 35, 126, 0.1);
    position: absolute;
    top: 20px;
    right: 20px;
}

.wjs-testimonial-content {
    font-size: 15px;
    color: #666666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.wjs-testimonial-author {
    display: flex;
    align-items: center;
}

.wjs-testimonial-avatar {
    width: 50px;
    height: 50px;
    background: #3949ab;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #ffffff;
    margin-right: 15px;
}

.wjs-testimonial-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1a237e;
}

.wjs-testimonial-info p {
    font-size: 13px;
    color: #999999;
}

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

.wjs-contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.wjs-contact-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 30px;
}

.wjs-contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.wjs-contact-icon {
    width: 50px;
    height: 50px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #1a237e;
    margin-right: 20px;
    flex-shrink: 0;
}

.wjs-contact-text h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1a237e;
    margin-bottom: 5px;
}

.wjs-contact-text p {
    font-size: 14px;
    color: #666666;
}

.wjs-contact-text a {
    color: #ff9800;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
}

.wjs-contact-form {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 40px;
}

.wjs-contact-form h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a237e;
    margin-bottom: 25px;
}

.wjs-form-group {
    margin-bottom: 20px;
}

.wjs-form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #333333;
    margin-bottom: 8px;
}

.wjs-form-group input,
.wjs-form-group textarea,
.wjs-form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.wjs-form-group input:focus,
.wjs-form-group textarea:focus,
.wjs-form-group select:focus {
    outline: none;
    border-color: #3949ab;
}

.wjs-form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23999999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    cursor: pointer;
}

.wjs-form-group textarea {
    height: 120px;
    resize: none;
}

.wjs-contact-text a:hover,
.wjs-footer-contact a:hover,
.wjs-footer-links li a:hover,
.wjs-station-phone a:hover {
    text-decoration: none;
    color: #ff9800;
}

@media (max-width: 1200px) {
    .wjs-services-grid,
    .wjs-stations-grid,
    .wjs-advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .wjs-testimonials-slider {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .wjs-banner-title {
        font-size: 32px;
    }
    
    .wjs-banner-desc {
        font-size: 16px;
    }
    
    .wjs-banner-stats {
        gap: 30px;
    }
    
    .wjs-stat-number {
        font-size: 28px;
    }
    
    .wjs-services-grid,
    .wjs-stations-grid,
    .wjs-advantages-grid,
    .wjs-testimonials-slider {
        grid-template-columns: 1fr;
    }
    
    .wjs-contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .wjs-section-title h2 {
        font-size: 28px;
    }
    
    .wjs-service-card,
    .wjs-station-card,
    .wjs-testimonial-card {
        padding: 25px 20px;
    }
    
    .wjs-contact-form {
        padding: 25px;
    }
    
    .wjs-floating-bar {
        bottom: 20px;
        right: 20px;
    }
    
    .wjs-floating-btn {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
}