@charset "UTF-8";

.wjs-service-banner {
    padding: 150px 0 80px;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    text-align: center;
}

.wjs-service-banner-top {
    margin-bottom: 20px;
}

.wjs-service-banner-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #ff9800;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.wjs-service-banner-content h1 {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.wjs-service-banner-content p {
    font-size: 16px;
    color: #666;
}

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

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

.wjs-service-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
    text-decoration: none;
    transition: all 0.35s ease;
    position: relative;
}

.wjs-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(26, 35, 126, 0.12);
    border-color: transparent;
}

.wjs-service-card-image {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.wjs-service-card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 35, 126, 0.4), transparent 55%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.wjs-service-card:hover .wjs-service-card-image::after {
    opacity: 1;
}

.wjs-service-card-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.wjs-service-card:hover .wjs-service-card-image img {
    transform: scale(1.08);
}

.wjs-service-card-content {
    padding: 25px 25px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.wjs-service-card-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 12px;
    padding-left: 14px;
    position: relative;
    transition: color 0.3s ease;
}

.wjs-service-card-content h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 22px;
    background: #ff9800;
    border-radius: 2px;
}

.wjs-service-card:hover .wjs-service-card-content h3 {
    color: #ff9800;
}

.wjs-service-card-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin: 0;
    flex: 1;
}

.wjs-service-card-more {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    padding: 14px 0 6px;
    border-top: 1px solid #f0f0f0;
    color: #ff9800;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.wjs-service-card-more i {
    font-size: 13px;
    transition: transform 0.3s ease;
}

.wjs-service-card:hover .wjs-service-card-more i {
    transform: translateX(6px);
}

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

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

.wjs-section-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #ff9800;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.wjs-section-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.wjs-section-title p {
    font-size: 16px;
    color: #666;
}

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

.wjs-service-feature-item {
    text-align: center;
    padding: 30px;
    background: #ffffff;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.wjs-service-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.wjs-service-feature-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.wjs-service-feature-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

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

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

.wjs-process-header {
    text-align: center;
    margin-bottom: 50px;
}

.wjs-process-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #ff9800;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.wjs-process-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.wjs-process-header p {
    font-size: 16px;
    color: #666;
}

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

.wjs-process-step {
    text-align: center;
}

.wjs-process-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a237e, #3949ab);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #ffffff;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(26, 35, 126, 0.3);
}

.wjs-process-step:hover .wjs-process-icon {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(26, 35, 126, 0.4);
}

.wjs-process-step h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.wjs-process-step p {
    font-size: 14px;
    color: #666;
}

.wjs-process-tips {
    background: rgba(26, 35, 126, 0.05);
    border: 1px dashed #1a237e;
    border-radius: 8px;
    padding: 25px 30px;
    text-align: center;
}

.wjs-process-tips p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

@media (max-width: 768px) {
    .wjs-service-banner-content h1 {
        font-size: 32px;
    }
    
    .wjs-service-grid {
        grid-template-columns: 1fr;
    }
    
    .wjs-service-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
}

.wjs-detail-banner {
    padding: 150px 0 80px;
    background: linear-gradient(180deg, #1a237e 0%, #3949ab 100%);
    text-align: center;
}

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

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

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

.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-detail-breadcrumb-section {
    padding: 20px 0;
    background: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
}

.wjs-detail-breadcrumb {
    font-size: 14px;
    color: #666;
}

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

.wjs-detail-breadcrumb a:hover {
    color: #1a237e;
}

.wjs-detail-breadcrumb i {
    margin: 0 8px;
    font-size: 12px;
    color: #999;
}

.wjs-detail-breadcrumb span {
    color: #ff9800;
    font-weight: 600;
}

.wjs-detail-banner-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.wjs-detail-banner-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

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

.wjs-detail-banner-buttons .wjs-btn {
    padding: 15px 40px;
    font-size: 16px;
}

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

.wjs-detail-intro-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    align-items: start;
}

.wjs-detail-intro-main {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.wjs-detail-block {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px 36px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    transition: box-shadow 0.3s ease;
}

.wjs-detail-block:hover {
    box-shadow: 0 12px 32px rgba(26, 35, 126, 0.1);
}

.wjs-detail-block h2 {
    font-size: 20px;
    font-weight: 700;
    color: #1a237e;
    margin: 0 0 18px;
    padding: 4px 0 4px 14px;
    border-left: 4px solid #ff9800;
    line-height: 1.4;
}

.wjs-detail-block p {
    font-size: 15px;
    color: #555;
    line-height: 1.9;
    margin: 0 0 10px;
}

.wjs-detail-block p:last-child {
    margin-bottom: 0;
}

.wjs-detail-block:nth-of-type(2) p,
.wjs-detail-block:nth-of-type(3) p,
.wjs-detail-block:nth-of-type(4) p {
    position: relative;
    padding-left: 26px;
}

.wjs-detail-block:nth-of-type(2) p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff9800;
}

.wjs-detail-block:nth-of-type(3) p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 7px;
    height: 7px;
    border-radius: 1px;
    background: #1a237e;
}

.wjs-detail-block:nth-of-type(4) p::before {
    content: '';
    position: absolute;
    left: 2px;
    top: 0.45em;
    width: 5px;
    height: 10px;
    border: solid #ff9800;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.wjs-detail-tip {
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.14), rgba(255, 152, 0, 0.05));
    border: 1px dashed #ff9800;
    border-radius: 16px;
    padding: 20px 28px;
}

.wjs-detail-tip p {
    font-size: 14px;
    color: #7a4a00;
    line-height: 1.9;
    margin: 0;
}

.wjs-detail-tip strong {
    color: #e65100;
    font-weight: 700;
}

.wjs-detail-intro-side {
    position: sticky;
    top: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.wjs-detail-image-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

.wjs-detail-image-title {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 18px;
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #1a237e, #3949ab);
}

.wjs-detail-image-card img {
    width: 100%;
    height: auto;
    display: block;
}

.wjs-detail-image-tag {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 14px;
    flex-wrap: wrap;
}

.wjs-detail-image-tag span {
    font-size: 12px;
    color: #1a237e;
    background: #eef0fb;
    border-radius: 20px;
    padding: 4px 12px;
}

.wjs-detail-phone-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(135deg, #ff9800, #f57c00);
    color: #ffffff;
    border-radius: 16px;
    padding: 18px 22px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wjs-detail-phone-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 152, 0, 0.4);
}

.wjs-detail-phone-card > i {
    font-size: 26px;
}

.wjs-detail-phone-card div span {
    display: block;
    font-size: 13px;
    opacity: 0.9;
}

.wjs-detail-phone-card div strong {
    font-size: 22px;
}

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

.wjs-detail-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.wjs-detail-feature-item {
    text-align: center;
    padding: 30px;
    background: #ffffff;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.wjs-detail-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.wjs-detail-feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, #1a237e, #3949ab);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #ffffff;
    margin: 0 auto 20px;
}

.wjs-detail-feature-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.wjs-detail-feature-item p {
    font-size: 14px;
    color: #666;
}

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

.wjs-detail-process-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
}

.wjs-detail-process-step {
    flex: 1;
    text-align: center;
    position: relative;
}

.wjs-detail-process-step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a237e, #3949ab);
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.wjs-detail-process-step h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.wjs-detail-process-step p {
    font-size: 14px;
    color: #666;
}

.wjs-detail-process-arrow {
    color: #ccc;
    font-size: 24px;
    margin: 0 10px;
}

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

.wjs-detail-contact-content {
    display: block;
    margin-top: 50px;
}

.wjs-detail-contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.wjs-detail-contact-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
}

.wjs-detail-contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: linear-gradient(135deg, #1a237e, #3949ab);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #ffffff;
    flex-shrink: 0;
}

.wjs-detail-contact-item h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.wjs-detail-contact-item p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.wjs-detail-contact-item a {
    color: #1a237e;
    text-decoration: none;
    font-weight: 600;
}

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

/* 服务详情页底部通用联系区样式（与首页/关于页统一） */
.wjs-contact {
    padding: 80px 0;
    background: #ffffff;
}

.wjs-contact-content {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

.wjs-contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.wjs-contact-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    align-items: center;
}

.wjs-contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: linear-gradient(135deg, #1a237e, #3949ab);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #ffffff;
    flex-shrink: 0;
}

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

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

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

@media (max-width: 1200px) {
    .wjs-contact-info {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .wjs-contact-info {
        grid-template-columns: 1fr;
        row-gap: 26px;
    }
}

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

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

.wjs-detail-form-group input,
.wjs-detail-form-group select,
.wjs-detail-form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    color: #333;
    background: #ffffff;
    transition: border-color 0.3s ease;
}

.wjs-detail-form-group input:focus,
.wjs-detail-form-group select:focus,
.wjs-detail-form-group textarea:focus {
    outline: none;
    border-color: #1a237e;
}

.wjs-detail-form-group textarea {
    height: 100px;
    resize: vertical;
}

@media (max-width: 768px) {
    .wjs-service-banner-content h1 {
        font-size: 32px;
    }
    
    .wjs-service-grid {
        grid-template-columns: 1fr;
    }
    
    .wjs-service-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .wjs-detail-banner-content h1 {
        font-size: 32px;
    }

    .wjs-detail-banner-buttons {
        flex-direction: column;
        align-items: center;
    }

    .wjs-detail-intro-grid {
        grid-template-columns: 1fr;
    }

    .wjs-detail-intro-side {
        position: static;
    }

    .wjs-detail-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .wjs-detail-process-steps {
        flex-direction: column;
    }

    .wjs-detail-process-arrow {
        display: none;
    }

    .wjs-detail-contact-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .wjs-service-features-grid {
        grid-template-columns: 1fr;
    }
    
    .wjs-service-banner-content h1 {
        font-size: 26px;
    }
    
    .wjs-service-card-content {
        padding: 20px;
    }

    .wjs-detail-block {
        padding: 24px 20px;
    }
}