.main-layout * {
    box-sizing: border-box;
}

.ta-section {
    padding: 60px 0;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.ta-section-title {
    text-align: center;
    margin-bottom: 40px;
}

.ta-section-title h2 {
    font-size: 32px;
    color: #333;
    font-weight: bold;
    margin: 0 0 10px 0;
}

.ta-section-title p {
    font-size: 16px;
    color: #888;
    margin: 0;
    text-transform: uppercase;
}

/* Section 1: Banner */
.ta-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    min-height: 400px;
    background:url("../images/cover/qt_xgzshs006@2x.png");
    padding-top: 100px;
    
}

.ta-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.ta-banner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ta-banner-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1;
    padding: 40px 0;
}

.ta-banner-left {
    flex: 1;
    max-width: 60%;
    display: flex;
    justify-content: flex-start;
}

.ta-banner-left img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.ta-banner-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 360px;
    text-align: left;
    flex-shrink: 0;
}

.ta-banner-form h3 {
    font-size: 16px;
    color: #333;
    margin: 0 0 20px 0;
    font-weight: bold;
}

.ta-form-group {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ta-form-label {
    font-size: 14px;
    color: #333;
    margin-bottom: 5px;
}

.ta-radio-group {
    flex-direction: column;
    gap: 10px;
}

.ta-radio-group label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    color: #555;
}

.ta-radio-group input {
    margin-right: 8px;
}

.ta-select-group {
    flex-direction: row;
    align-items: center;
    gap: 5px;
}

.ta-select-group select {
    flex: 1;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 13px;
    outline: none;
    min-width: 0;
}

.ta-input-group {
    flex-direction: row;
    align-items: center;
    gap: 5px;
}

.ta-input-group input[type="text"] {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    outline: none;
}

.required {
    color: red;
    font-size: 14px;
}

.ta-form-group select:focus,
.ta-form-group input[type="text"]:focus {
    border-color: #047CF9;
}

.ta-submit-btn {
    background: #FF9900;
    color: #fff;
    border: none;
    padding: 12px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 10px;
    width: 100%;
}

.ta-submit-btn:hover {
    background: #e68a00;
}

.ta-tabs-section {
    padding-top: 40px;
}

.ta-vtabs-sidebar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    justify-content: center;
}

.ta-vtab-btn {
    padding: 10px 20px;
    background: #f5f5f5;
    border: 1px solid #eee;
    color: #666;
    cursor: pointer;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s;
}

.ta-vtab-btn.active,
.ta-vtab-btn:hover {
    background: #047CF9;
    color: #fff;
    border-color: #047CF9;
}

.ta-vtab-content {
    display: none;
    background: #fff;
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.ta-vtab-content.active {
    display: flex;
    gap: 30px;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ta-vtab-image {
    flex: 0 0 300px;
}

.ta-vtab-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.ta-vtab-details {
    flex: 1;
}

.ta-vtab-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.ta-vtab-need {
    color: #888;
    margin-bottom: 15px;
}

.ta-vtab-info p {
    margin: 5px 0;
    color: #555;
}

.ta-vtab-info span {
    font-weight: bold;
    color: #333;
}

.ta-vtab-services {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.ta-vtab-service-btn {
    padding: 8px 15px;
    border: 1px solid #ddd;
    color: #666;
    text-decoration: none;
    border-radius: 4px;
    font-size: 13px;
    transition: all 0.3s;
}

.ta-vtab-service-btn:hover {
    border-color: #047CF9;
    color: #047CF9;
}

.ta-vtab-main-btn {
    display: inline-block;
    background: #047CF9;
    color: #fff;
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s;
}

.ta-vtab-main-btn:hover {
    background: #0366cc;
}

.ta-services-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.ta-service-card {
    flex: 1;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.ta-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.ta-sc-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.ta-sc-header img {
    width: 40px;
    height: 40px;
}

.ta-sc-header h3 {
    font-size: 20px;
    color: #333;
    margin: 0;
}

.ta-service-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ta-service-card li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    color: #666;
    line-height: 1.6;
}

.ta-service-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #047CF9;
}

.ta-process {
    background: #f9fafc;
    width: 100%;
    max-width: 100%;
}

.ta-process-img-wrap {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.ta-process-img {
    max-width: 100%;
    height: auto;
}

.ta-process-inner {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
}

.ta-process-title {
    flex-shrink: 0;
    text-align: center;
}

.ta-process-title h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1e40af;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.ta-process-sub {
    font-size: 14px;
    color: #64748b;
    letter-spacing: 2px;
}

.ta-process-steps {
    display: flex;
    gap: 24px;
    flex: 1;
}

.ta-process-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.ta-process-num {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.ta-process-step-body {
    background: #fff;
    border-radius: 12px;
    padding: 24px 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.ta-process-step-text {
    font-size: 16px;
    color: #1e40af;
    font-weight: 600;
    line-height: 1.6;
}

.ta-process-btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ta-process-btn--orange {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff;
}

.ta-process-btn--orange:hover {
    background: linear-gradient(135deg, #d97706, #b45309);
    transform: translateY(-2px);
}

.ta-process-btn--blue {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #fff;
}

.ta-process-btn--blue:hover {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    transform: translateY(-2px);
}

.ta-adv-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.ta-adv-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    padding-bottom: 20px;
    position: relative;
    transition: transform 0.3s;
}

.ta-adv-card:hover {
    transform: translateY(-5px);
}

.ta-adv-img img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.ta-adv-icon {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 150px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.ta-adv-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ta-adv-card h3 {
    margin: 40px 0 10px 0;
    font-size: 18px;
    color: #333;
}

.ta-adv-card p {
    font-size: 13px;
    color: #666;
    padding: 0 20px;
    line-height: 1.6;
}

.ta-faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.ta-faq-item {
    margin-bottom: 20px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.ta-faq-q {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.ta-faq-q img {
    width: 24px;
    height: 24px;
}

.ta-faq-a {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.ta-faq-a img {
    width: 24px;
    height: 24px;
    margin-top: 2px;
}

.ta-other-services {
    background: #047CF9;
    width: 100%;
    max-width: 100%;
    color: #fff;
}

.ta-other-services .ta-section-title h2,
.ta-other-services .ta-section-title p {
    color: #fff;
}

.ta-os-grid {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.ta-os-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.ta-os-card h3 {
    font-size: 18px;
    margin: 0 0 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 10px;
}

.ta-os-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ta-os-card li {
    font-size: 14px;
    margin-bottom: 10px;
    opacity: 0.9;
}

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

    .ta-os-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ta-process-inner {
        flex-direction: column;
        gap: 40px;
        padding: 40px 20px;
    }

    .ta-process-title {
        text-align: center;
    }

    .ta-process-steps {
        flex-wrap: wrap;
        gap: 16px;
    }

    .ta-process-step {
        flex: 1 1 calc(50% - 8px);
        min-width: 140px;
    }
}

@media (max-width:768px) {
    .ta-vtab-content.active {
        flex-direction: column;
    }

    .ta-vtab-image {
        flex: auto;
        width: 100%;
    }

    .ta-services-grid {
        flex-direction: column;
    }

    .ta-adv-grid {
        grid-template-columns: 1fr;
    }

    .ta-os-grid {
        grid-template-columns: 1fr;
    }

    .ta-banner-form {
        padding: 20px;
    }

    .ta-form-group {
        flex-direction: column;
        align-items: center;
    }

    .ta-process-inner {
        padding: 30px 15px;
        gap: 30px;
    }

    .ta-process-title h2 {
        font-size: 32px;
    }

    .ta-process-step {
        flex: 1 1 100%;
    }

    .ta-process-num {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .ta-process-step-body {
        padding: 16px 12px;
    }

    .ta-process-step-text {
        font-size: 14px;
    }
}