﻿/* ==============================
   Home Stock Section
================================= */

.home-stock-section {
    position: relative;
    width: 100%;
    padding: 56px 0 0;
    margin-bottom: 34px;
    box-sizing: border-box;
    background: url("../images/beijing.jpg") center top / cover no-repeat;
}


/* ==============================
   Main Layout
   PC: Banner 663 × 560
================================= */

.home-stock-main {
    display: grid;
    grid-template-columns: 300px 663px 356px;
    gap: 18px;
    align-items: stretch;
    justify-content: center;
}

.home-stock-models,
.home-stock-banner,
.home-stock-form {
    min-width: 0;
    height: 560px;
    border-radius: 10px;
    box-sizing: border-box;
}


/* ==============================
   Popular Models
================================= */

.home-stock-models {
    padding: 20px 18px;
    overflow: hidden;
    background: rgba(3, 42, 64, 0.91);
}

.home-stock-models-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .home-stock-models-head h2 {
        display: flex;
        margin: 0;
        align-items: center;
        gap: 10px;
        color: #fff;
        font-size: 19px;
        font-weight: 600;
        line-height: 28px;
    }

        .home-stock-models-head h2 .fa {
            color: #ff9c4a;
            font-size: 20px;
        }

.home-stock-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #329760;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.25s ease;
}

    .home-stock-more:hover {
        color: #fff;
    }

    .home-stock-more .fa {
        font-size: 17px;
    }

.home-stock-models-line {
    width: 100%;
    height: 1px;
    margin: 20px 0 14px;
    background: rgba(255, 255, 255, 0.24);
}

/*
 * PC模块高度增加到560px后，
 * 型号滚动区域同步增加。
 */
.home-stock-models-viewport {
    height: 459px;
    overflow: hidden;
}

.home-stock-models-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

    .home-stock-models-list li {
        width: 100%;
        height: 28px;
        margin: 0;
        padding: 0;
        line-height: 28px;
    }

    .home-stock-models-list a {
        display: block;
        overflow: hidden;
        color: #fff;
        font-size: 14px;
        line-height: 28px;
        text-decoration: none;
        text-overflow: ellipsis;
        white-space: nowrap;
        transition: color 0.25s ease, padding-left 0.25s ease;
    }

        .home-stock-models-list a:hover {
            padding-left: 6px;
            color: #48d599;
        }


/* ==============================
   Banner Slider
   PC: 663 × 560
================================= */

.home-stock-banner {
    position: relative;
    width: 663px;
    height: 560px;
    overflow: hidden;
    background: #143b3c;
    touch-action: pan-y;
    user-select: none;
    -webkit-user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.home-stock-banner-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.home-stock-banner-slide {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.03);
    transition: opacity 0.7s ease, visibility 0.7s ease, transform 1.2s ease;
}

    .home-stock-banner-slide.is-active {
        z-index: 2;
        opacity: 1;
        visibility: visible;
        transform: scale(1);
    }

    .home-stock-banner-slide img {
        display: block;
        width: 663px;
        height: 560px;
        max-width: none;
        border-radius: 10px;
        object-fit: cover;
        pointer-events: none;
        user-select: none;
        -webkit-user-drag: none;
    }

.home-stock-banner-dots {
    position: absolute;
    right: 0;
    bottom: 15px;
    left: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

    .home-stock-banner-dots button {
        display: block;
        width: 8px;
        height: 8px;
        padding: 0;
        border: 0;
        border-radius: 50%;
        outline: none;
        background: rgba(255, 255, 255, 0.55);
        cursor: pointer;
        transition: width 0.25s ease, border-radius 0.25s ease, background-color 0.25s ease;
    }

        .home-stock-banner-dots button.is-active {
            width: 24px;
            border-radius: 8px;
            background: #329760;
        }


/* ==============================
   Stock Form
================================= */

.home-stock-form {
    display: flex;
    height: 560px;
    padding: 20px 17px 18px;
    flex-direction: column;
    background: rgba(3, 42, 64, 0.91);
}

.home-stock-form h2 {
    flex: 0 0 auto;
    margin: 0 0 14px;
    color: #ffffff;
    font-size: 19px;
    font-weight: 600;
    line-height: 28px;
}

.home-stock-sell-form {
    width: 100%;
    min-height: 0;
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 9px;
}

.home-stock-form-row {
    display: grid;
    flex: 0 0 auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.home-stock-form-group {
    min-width: 0;
    margin: 0;
}

.home-stock-form-group input,
.home-stock-form-group textarea {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0 10px;
    box-sizing: border-box;
    border: 1px solid rgba(74, 192, 130, 0.88);
    border-radius: 6px;
    outline: none;
    background: rgba(0, 35, 55, 0.46);
    color: #ffffff;
    font-family: inherit;
    font-size: 12px;
    transition:
        border-color 0.25s ease,
        background-color 0.25s ease,
        box-shadow 0.25s ease;
}

.home-stock-form-group input {
    height: 43px;
}

.home-stock-form-message-group {
    min-height: 0;
    display: flex;
    flex: 1 1 auto;
}

.home-stock-form-group textarea {
    width: 100%;
    min-height: 76px;
    height: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
    line-height: 18px;
    resize: none;
}

.home-stock-form-group input::placeholder,
.home-stock-form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.73);
    opacity: 1;
}

.home-stock-form-group input:focus,
.home-stock-form-group textarea:focus {
    border-color: #63d99e;
    background: rgba(0, 35, 55, 0.66);
    box-shadow: 0 0 0 2px rgba(50, 151, 96, 0.17);
}

.home-stock-form-group input.is-error,
.home-stock-form-group textarea.is-error {
    border-color: #ff8d8d;
    box-shadow: 0 0 0 2px rgba(255, 92, 92, 0.15);
}

.home-stock-upload {
    position: relative;
    width: 100%;
    flex: 0 0 auto;
}

.home-stock-upload input {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
}

.home-stock-upload label {
    display: flex;
    width: 100%;
    height: 48px;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 1px dashed #54ca8a;
    border-radius: 6px;
    background: rgba(48, 154, 99, 0.08);
    color: #69dfa0;
    font-size: 12px;
    cursor: pointer;
    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease;
}

.home-stock-upload label:hover {
    border-color: #70e4a8;
    background: #329760;
    color: #ffffff;
}

.home-stock-upload label .fa {
    font-size: 16px;
}

.home-stock-file-name {
    display: none;
    flex: 0 0 auto;
    margin: -3px 0 0;
    overflow: hidden;
    color: #83e8b2;
    font-size: 11px;
    line-height: 17px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.home-stock-upload-note {
    flex: 0 0 auto;
    margin: -1px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 10px;
    line-height: 16px;
}

.home-stock-submit {
    width: 100%;
    height: 48px;
    display: flex;
    flex: 0 0 48px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 12px;
    border: 0;
    border-radius: 6px;
    outline: none;
    background: #329760;
    color: #ffffff;
    font-family: inherit;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(13, 84, 49, 0.22);
    transition:
        background-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease,
        opacity 0.25s ease;
}

.home-stock-submit:hover {
    background: #267d4f;
    box-shadow: 0 10px 22px rgba(13, 84, 49, 0.30);
    transform: translateY(-1px);
}

.home-stock-submit:disabled {
    opacity: 0.68;
    cursor: wait;
    transform: none;
}

.home-stock-submit .fa {
    font-size: 14px;
}


/* ==============================
   Shortcut Links
================================= */

.home-stock-shortcuts {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
    margin-top: 18px;
}

.home-stock-shortcut {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr) 22px;
    min-width: 0;
    min-height: 90px;
    padding: 14px 18px;
    box-sizing: border-box;
    align-items: center;
    gap: 14px;
    border-radius: 10px;
    background: #fff;
    color: #10212e;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

    .home-stock-shortcut:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 25px rgba(4, 51, 107, 0.13);
    }

    .home-stock-shortcut img {
        display: block;
        width: 54px;
        height: 54px;
        object-fit: contain;
    }

    .home-stock-shortcut span {
        color: #10212e;
        font-size: 15px;
        font-weight: 600;
        line-height: 20px;
    }

    .home-stock-shortcut .fa {
        color: #329760;
        font-size: 21px;
        transition: transform 0.25s ease;
    }

    .home-stock-shortcut:hover .fa {
        transform: translateX(4px);
    }


/* ==============================
   Selling Steps
================================= */

.home-stock-steps {
    display: flex;
    min-height: 142px;
    margin-top: 28px;
    padding: 20px 34px;
    box-sizing: border-box;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border-radius: 10px;
    background: #fff;
    transform: translateY(34px);
}

.home-stock-steps-title {
    flex: 0 0 220px;
    color: #10212e;
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
}

.home-stock-step {
    flex: 0 0 115px;
    text-align: center;
}

    .home-stock-step img {
        display: block;
        width: 62px;
        height: 62px;
        margin: 0 auto 8px;
        object-fit: contain;
    }

    .home-stock-step span {
        display: block;
        color: #152633;
        font-size: 12px;
        line-height: 17px;
    }

.home-stock-step-arrow {
    flex: 0 0 42px;
}

    .home-stock-step-arrow img {
        display: block;
        width: 42px;
        height: auto;
        object-fit: contain;
    }


/* ==============================
   Seeking Partners Section
================================= */

.seeking-partners-section {
    width: 100%;
    padding: 50px 0 0;
}

.seeking-partners-head {
    margin-bottom: 34px;
}

    .seeking-partners-head h2 {
        margin: 0;
        color: #10212e;
        font-size: 34px;
        line-height: 46px;
        font-weight: 700;
    }

        .seeking-partners-head h2 span {
            color: #329760;
        }

    .seeking-partners-head p {
        margin: 22px 0 0;
        color: #667985;
        font-size: 14px;
        line-height: 23px;
    }

.seeking-partners-main {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 660px;
    gap: 38px;
    align-items: stretch;
}

.seeking-partners-image {
    overflow: hidden;
    border-radius: 20px;
}

    .seeking-partners-image img {
        display: block;
        width: 100%;
        height: 100%;
        min-height: 340px;
        border-radius: 20px;
        object-fit: cover;
    }

.seeking-partners-card {
    display: flex;
    min-height: 340px;
    padding: 34px 30px;
    box-sizing: border-box;
    flex-direction: column;
    justify-content: flex-start;
    border-radius: 20px;
    background: #3c9e60;
}

    .seeking-partners-card h3 {
        margin: 0 0 20px;
        color: #fff;
        font-size: 26px;
        line-height: 38px;
        font-weight: 700;
    }

    .seeking-partners-card ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }

        .seeking-partners-card ul li {
            position: relative;
            margin-bottom: 12px;
            padding-left: 18px;
            color: #fff;
            font-size: 14px;
            line-height: 30px;
        }

            .seeking-partners-card ul li:last-child {
                margin-bottom: 0;
            }

            .seeking-partners-card ul li::before {
                position: absolute;
                top: 0;
                left: 0;
                color: #fff;
                content: "–";
            }

.seeking-partners-btn {
    display: inline-flex;
    width: auto;
    height: 40px;
    margin-top: 28px;
    padding: 0 28px;
    box-sizing: border-box;
    align-self: flex-start;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #eba05a;
    color: #fff;
    font-size: 13px;
    line-height: 40px;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.25s ease, transform 0.25s ease;
}

    .seeking-partners-btn:hover {
        background: #de8d43;
        color: #fff;
        transform: translateY(-1px);
    }


/* ==============================
   Home Line Card
================================= */

.home-line-card {
    width: 100%;
    margin-top: 60px;
    padding: 64px 0 66px;
    box-sizing: border-box;
    background: url("../images/brandbg.jpg") center center / cover no-repeat;
}

.home-line-card-head {
    margin-bottom: 40px;
    text-align: center;
}

    .home-line-card-head h2 {
        margin: 0;
        color: #329760;
        font-size: 34px;
        font-weight: 700;
        line-height: 48px;
    }

    .home-line-card-head p {
        margin: 22px 0 0;
        color: #667985;
        font-size: 14px;
        line-height: 22px;
    }

.home-line-card-list {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 20px;
}

.home-line-card-item {
    display: flex; 
    min-width: 0;
    height: auto;
    padding: 25px;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid #edf0f1;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 3px 12px rgba(4, 51, 107, 0.08);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

    .home-line-card-item img {
        display: block;
        width: 100%;
        height: auto;
        object-fit: contain;
        user-select: none;
        -webkit-user-drag: none;
        transition: transform 0.3s ease;
    }

    .home-line-card-item:hover {
        border-color: rgba(50, 151, 96, 0.3);
        box-shadow: 0 12px 28px rgba(4, 51, 107, 0.14);
        transform: translateY(-6px);
    }

        .home-line-card-item:hover img {
            transform: scale(1.05);
        }


/* ==============================
   Home Number Section
================================= */

.home-number-section {
    width: 100%;
    padding: 60px 0;
    box-sizing: border-box;
    background: linear-gradient( 180deg, rgba(79, 183, 215, 0.76) 0%, rgba(59, 210, 164, 0.72) 100% ), url("../images/numbg.jpg") center center / cover no-repeat;
}

.home-number-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
}

.home-number-item {
    display: flex;
    min-height: 314px;
    padding: 34px 20px 30px;
    box-sizing: border-box;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 12px 28px rgba(4, 51, 107, 0.12);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .home-number-item:hover {
        transform: translateY(-6px);
        box-shadow: 0 18px 36px rgba(4, 51, 107, 0.16);
    }

.home-number-icon {
    display: flex;
    width: 160px;
    height: 160px;
    margin-bottom: 18px;
    align-items: center;
    justify-content: center;
}

    .home-number-icon img {
        display: block;
        width: 160px;
        height: 160px;
        object-fit: contain;
    }

.home-number-value {
    min-height: 42px;
    margin-bottom: 10px;
    color: #10212e;
    font-size: 24px;
    font-weight: 700;
    line-height: 42px;
}

.home-number-text {
    color: #667985;
    font-size: 16px;
    line-height: 26px;
}


/* ==============================
   Home About Section
================================= */

.home-about-section {
    width: 100%;
    padding: 56px 0;
    box-sizing: border-box;
    background: #fff;
}

.home-about-head {
    margin-bottom: 34px;
    text-align: center;
}

    .home-about-head span {
        display: inline-block;
        margin-bottom: 12px;
        color: #329760;
        font-size: 20px;
        font-weight: 700;
        line-height: 28px;
    }

    .home-about-head h2 {
        margin: 0;
        color: #10212e;
        font-size: 34px;
        font-weight: 700;
        line-height: 48px;
    }

.home-about-main {
    display: grid;
    grid-template-columns: 600px minmax(0, 1fr);
    gap: 40px;
    align-items: start;
}

.home-about-image {
    width: 600px;
    height: 317px;
    overflow: hidden;
    border-radius: 20px;
}

    .home-about-image img {
        display: block;
        width: 600px;
        height: 317px;
        border-radius: 20px;
        object-fit: cover;
    }

.home-about-content {
    min-width: 0;
}

.home-about-desc {
    margin-bottom: 28px;
    color: #667985;
    font-size: 14px;
    line-height: 22px;
}

.home-about-points {
    width: 100%;
}

.home-about-point {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 26px;
    gap: 16px;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #e8ecef;
}

    .home-about-point:first-child {
        padding-top: 0;
    }

.home-about-point-num {
    color: #667985;
    font-size: 16px;
    line-height: 24px;
}

.home-about-point-text {
    color: #10212e;
    font-size: 15px;
    font-weight: 500;
    line-height: 28px;
}

.home-about-point-check {
    display: flex;
    width: 20px;
    height: 20px;
    align-items: center;
    justify-content: center;
    background: #329760;
    color: #fff;
    font-size: 12px;
}

.home-about-cards {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
    margin-top: 32px;
}

.home-about-card {
    min-width: 0;
    padding: 28px 30px;
    box-sizing: border-box;
    border-radius: 20px;
    background: #f7f7f7;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .home-about-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 28px rgba(4, 51, 107, 0.08);
    }

.home-about-card-icon {
    display: flex;
    width: 40px;
    height: 40px;
    margin-bottom: 18px;
    align-items: center;
    justify-content: center;
}

    .home-about-card-icon img {
        display: block;
        width: 40px;
        height: 40px;
        object-fit: contain;
    }

.home-about-card h3 {
    margin: 0 0 8px;
    color: #329760;
    font-size: 15px;
    font-weight: 600;
    line-height: 26px;
}

.home-about-card p {
    margin: 0;
    color: #667985;
    font-size: 14px;
    line-height: 26px;
}


/* ==============================
   Home Blogs
================================= */

.home-blogs {
    width: 100%;
    padding: 60px 0;
    box-sizing: border-box;
}

.home-blogs-head {
    display: flex;
    margin-bottom: 34px;
    align-items: center;
    justify-content: space-between;
}

    .home-blogs-head h2 {
        margin: 0;
        color: #10212e;
        font-size: 36px;
        font-weight: 700;
        line-height: 48px;
    }

.home-blogs-more {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: #329760;
    font-size: 16px;
    line-height: 24px;
    text-decoration: none;
}

    .home-blogs-more .fa {
        transition: transform 0.25s ease;
    }

    .home-blogs-more:hover {
        color: #267c4f;
    }

        .home-blogs-more:hover .fa {
            transform: translateX(5px);
        }

.home-blogs-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.home-blog-item {
    position: relative;
    min-width: 0;
    height: 390px;
    overflow: hidden;
    border-radius: 10px;
}

.home-blog-default {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.35s ease;
}

.home-blog-image {
    width: 100%;
    height: 260px;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}

    .home-blog-image img {
        display: block;
        width: 100%;
        height: 100%;
        border-radius: 10px 10px 0 0;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.home-blog-default-content {
    flex: 1;
    padding: 15px 0 0;
    box-sizing: border-box;
}

.home-blog-default time {
    display: block;
    margin-bottom: 10px;
    color: #91a5ad;
    font-size: 14px;
    line-height: 22px;
}

.home-blog-default h3 {
    display: -webkit-box;
    margin: 0 0 16px;
    overflow: hidden;
    color: #10212e;
    font-size: 20px;
    font-weight: 700;
    line-height: 27px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.home-blog-default-more {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #329760;
    font-size: 14px;
    line-height: 22px;
}

    .home-blog-default-more .fa {
        transition: transform 0.25s ease;
    }

.home-blog-hover {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    padding: 38px 30px;
    box-sizing: border-box;
    flex-direction: column;
    border: 1px solid #20ada4;
    border-radius: 10px;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    transform: translateY(18px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.35s ease;
}

.home-blog-hover-icon {
    margin-bottom: 18px;
    color: #4c5154;
    font-size: 30px;
    line-height: 36px;
}

.home-blog-hover time {
    display: block;
    margin-bottom: 20px;
    color: #91a5ad;
    font-size: 14px;
    line-height: 22px;
}

.home-blog-hover h3 {
    display: -webkit-box;
    margin: 0 0 20px;
    overflow: hidden;
    color: #329760;
    font-size: 20px;
    font-weight: 700;
    line-height: 27px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.home-blog-hover p {
    display: -webkit-box;
    margin: 0 0 18px;
    overflow: hidden;
    color: #667985;
    font-size: 15px;
    line-height: 25px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.home-blog-hover-more {
    display: inline-flex;
    margin-top: auto;
    align-items: center;
    align-self: flex-start;
    gap: 12px;
    color: #329760;
    font-size: 14px;
    line-height: 22px;
}

    .home-blog-hover-more .fa {
        transition: transform 0.25s ease;
    }

.home-blog-link {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: block;
    border-radius: 10px;
}

.home-blog-item:hover .home-blog-default {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-18px);
}

.home-blog-item:hover .home-blog-hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.home-blog-item:hover .home-blog-default-more .fa,
.home-blog-item:hover .home-blog-hover-more .fa {
    transform: translateX(5px);
}


/* ==============================
   Home FAQs
================================= */

.home-faq-section {
    width: 100%;
    padding: 60px 0;
    box-sizing: border-box;
    background: #fff;
}

.home-faq-head {
    margin-bottom: 34px;
}

    .home-faq-head h2 {
        margin: 0;
        color: #10212e;
        font-size: 36px;
        font-weight: 700;
        line-height: 48px;
    }

.home-faq-main {
    display: grid;
    grid-template-columns: 600px minmax(0, 1fr);
    gap: 60px;
    align-items: start;
}

.home-faq-image {
    width: 600px;
    height: 376px;
    overflow: hidden;
    border-radius: 10px;
}

    .home-faq-image img {
        display: block;
        width: 600px;
        height: 376px;
        max-width: none;
        border-radius: 10px;
        object-fit: cover;
    }

.home-faq-list {
    min-width: 0;
}

.home-faq-item {
    width: 100%;
    border-bottom: 1px solid #e8ecef;
}

.home-faq-question {
    display: flex;
    width: 100%;
    min-height: 57px;
    margin: 0;
    padding: 0 20px;
    box-sizing: border-box;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border: 0;
    border-radius: 0;
    outline: none;
    background: transparent;
    color: #10212e;
    font-family: inherit;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    text-align: left;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, border-radius 0.3s ease;
}

    .home-faq-question > span {
        flex: 1;
        min-width: 0;
    }

    .home-faq-question .fa {
        display: flex;
        flex: 0 0 27px;
        width: 27px;
        height: 27px;
        align-items: center;
        justify-content: center;
        border: 1px solid #329760;
        border-radius: 50%;
        color: #329760;
        font-size: 13px;
        transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
    }

.home-faq-item:not(.is-open) .home-faq-question:hover {
    color: #329760;
    background: #f7fbf9;
}

    .home-faq-item:not(.is-open) .home-faq-question:hover .fa {
        background: #329760;
        color: #fff;
        transform: rotate(90deg);
    }

.home-faq-item.is-open {
    margin-bottom: 16px;
    border-bottom: 0;
}

    .home-faq-item.is-open .home-faq-question {
        min-height: 63px;
        padding: 0 20px;
        border-radius: 10px;
        background: #329760;
        color: #fff;
    }

        .home-faq-item.is-open .home-faq-question .fa {
            border-color: #fff;
            background: #fff;
            color: #329760;
        }

.home-faq-answer {
    display: none;
    overflow: hidden;
}

.home-faq-item.is-open .home-faq-answer {
    display: block;
}

.home-faq-answer-inner {
    margin-top: 0;
    padding: 20px;
    border-radius: 0 0 10px 10px;
    background: #eef7f8;
    color: #667985;
    font-size: 14px;
    line-height: 19px;
}


/* ==============================
   Tablet
   Restore original flexible sizes
================================= */

@media (max-width: 1100px) {

    .home-stock-main {
        grid-template-columns: 260px minmax(0, 1fr);
        justify-content: stretch;
    }

    /*
     * 560px和663px只在PC端生效。
     */
    .home-stock-models,
    .home-stock-banner {
        width: auto;
        height: 525px;
    }

    .home-stock-banner-slide img {
        width: 100%;
        height: 100%;
        max-width: none;
    }

    .home-stock-models-viewport {
        height: 424px;
    }

    .home-stock-form {
        grid-column: 1 / -1;
        width: 100%;
        height: auto;
    }

    .home-stock-form {
        display: block;
        width: 100%;
        height: auto;
        padding: 18px;
    }

    .home-stock-sell-form {
        width: 100%;
    }

    .home-stock-form-group textarea {
        height: 56px;
        padding-top: 8px;
    }

    .home-stock-shortcuts {
        gap: 16px;
    }

    .home-stock-steps {
        padding-right: 20px;
        padding-left: 20px;
        gap: 10px;
    }

    .home-stock-steps-title {
        flex-basis: 175px;
        font-size: 18px;
    }

    .home-stock-step {
        flex-basis: 92px;
    }

    .home-stock-step-arrow {
        flex-basis: 28px;
    }

        .home-stock-step-arrow img {
            width: 28px;
        }
}


/* ==============================
   Mobile
================================= */

@media (max-width: 768px) {

    .home-stock-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }


    .home-stock-section {
        padding-top: 25px;
        padding-bottom: 25px;
        margin-bottom: 20px;
    }

    .home-stock-main {
        display: block;
    }

    .home-stock-models,
    .home-stock-banner,
    .home-stock-form {
        width: 100%;
        height: auto;
        margin-bottom: 15px;
    }

    .home-stock-models {
        height: 390px;
    }

    .home-stock-models-viewport {
        height: 295px;
    }

    .home-stock-banner {
        width: 100%;
        height: auto;
        aspect-ratio: 1.18 / 1;
    }

    .home-stock-banner-slide img {
        width: 100%;
        height: 100%;
        max-width: none;
    }

    .home-stock-form {
        display: block;
        width: 100%;
        height: auto;
        padding: 18px 15px;
    }

    .home-stock-sell-form {
        display: flex;
        gap: 8px;
    }

    .home-stock-form-message-group {
        display: block;
        flex: none;
    }

    .home-stock-form-group textarea {
        height: 76px;
    }

    .home-stock-form-group {
        margin-bottom: 7px;
    }

    .home-stock-form-group textarea {
        height: 64px;
    }

    .home-stock-shortcuts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        margin-top: 0;
    }

    .home-stock-shortcut {
        grid-template-columns: 42px minmax(0, 1fr) 18px;
        min-height: 78px;
        padding: 12px;
        gap: 9px;
    }

        .home-stock-shortcut img {
            width: 42px;
            height: 42px;
        }

        .home-stock-shortcut span {
            font-size: 12px;
            line-height: 17px;
        }

        .home-stock-shortcut .fa {
            font-size: 17px;
        }

    .home-stock-steps {
        display: none;
        min-height: 0;
        margin-top: 15px;
        padding: 24px 18px;
        transform: none;
    }

    .home-stock-steps-title {
        width: 100%;
        margin-bottom: 24px;
        text-align: center;
        font-size: 19px;
        line-height: 27px;
    }

    .home-stock-step {
        width: 100%;
        margin: 0 auto;
    }

        .home-stock-step img {
            width: 68px;
            height: 68px;
        }

        .home-stock-step span {
            font-size: 14px;
            line-height: 20px;
        }

    .home-stock-step-arrow {
        width: 38px;
        margin: 12px auto;
        transform: rotate(90deg);
    }

        .home-stock-step-arrow img {
            width: 38px;
        }

    .seeking-partners-section {
        padding-top: 30px;
    }

    .seeking-partners-head {
        margin-bottom: 22px;
    }

        .seeking-partners-head h2 {
            font-size: 28px;
            line-height: 38px;
        }

        .seeking-partners-head p {
            margin-top: 16px;
            font-size: 15px;
            line-height: 28px;
        }

    .seeking-partners-main {
        display: block;
    }

    .seeking-partners-image {
        margin-bottom: 16px;
        border-radius: 20px;
    }

        .seeking-partners-image img {
            min-height: 240px;
            border-radius: 20px;
        }

    .seeking-partners-card {
        min-height: 0;
        padding: 24px 20px;
        border-radius: 20px;
    }

        .seeking-partners-card h3 {
            margin-bottom: 16px;
            font-size: 24px;
            line-height: 34px;
        }

        .seeking-partners-card ul li {
            margin-bottom: 14px;
            font-size: 15px;
            line-height: 26px;
        }

    .seeking-partners-btn {
        width: 100%;
        min-width: 0;
        margin-top: 22px;
    }

    .home-line-card {
        margin-top: 30px;
        padding: 38px 0 40px;
    }

    .home-line-card-head {
        margin-bottom: 26px;
    }

        .home-line-card-head h2 {
            font-size: 29px;
            line-height: 40px;
        }

        .home-line-card-head p {
            margin-top: 14px;
            font-size: 14px;
            line-height: 23px;
        }

            .home-line-card-head p br {
                display: none;
            }

    .home-line-card-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .home-line-card-item {
        height: auto;
        padding: 10px;
        border-radius: 10px;
    }

    .home-number-section {
        padding: 35px 0;
    }

    .home-number-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .home-number-item {
        min-height: 250px;
        padding: 22px 14px 20px;
    }

    .home-number-icon {
        width: 110px;
        height: 110px;
        margin-bottom: 14px;
    }

        .home-number-icon img {
            width: 110px;
            height: 110px;
        }

    .home-number-value {
        min-height: 34px;
        margin-bottom: 6px;
        font-size: 18px;
        line-height: 34px;
    }

    .home-number-text {
        font-size: 14px;
        line-height: 22px;
    }

    .home-about-section {
        padding-top: 36px;
    }

    .home-about-head {
        margin-bottom: 24px;
    }

        .home-about-head span {
            margin-bottom: 8px;
            font-size: 16px;
            line-height: 24px;
        }

        .home-about-head h2 {
            font-size: 28px;
            line-height: 38px;
        }

    .home-about-main {
        display: block;
    }

    .home-about-image {
        width: 100%;
        height: auto;
        margin-bottom: 20px;
        border-radius: 20px;
    }

        .home-about-image img {
            width: 100%;
            height: auto;
            border-radius: 20px;
        }

    .home-about-desc {
        margin-bottom: 20px;
        font-size: 15px;
        line-height: 28px;
    }

    .home-about-point {
        grid-template-columns: 34px minmax(0, 1fr) 22px;
        gap: 10px;
        padding: 14px 0;
    }

    .home-about-point-num,
    .home-about-point-text {
        font-size: 15px;
        line-height: 24px;
    }

    .home-about-point-check {
        width: 18px;
        height: 18px;
        font-size: 11px;
    }

    .home-about-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        margin-top: 22px;
    }

    .home-about-card {
        padding: 20px 18px;
        border-radius: 20px;
    }

    .home-about-card-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 14px;
    }

        .home-about-card-icon img {
            width: 40px;
            height: 40px;
        }

    .home-about-card h3 {
        font-size: 15px;
        line-height: 24px;
    }

    .home-about-card p {
        font-size: 14px;
        line-height: 22px;
    }

    .home-blogs {
        padding: 38px 0;
    }

    .home-blogs-head {
        margin-bottom: 22px;
    }

        .home-blogs-head h2 {
            font-size: 29px;
            line-height: 40px;
        }

    .home-blogs-more {
        gap: 8px;
        font-size: 14px;
    }

    .home-blogs-list {
        display: block;
    }

    .home-blog-item {
        width: 100%;
        height: auto;
        margin-bottom: 20px;
        overflow: visible;
        border: 1px solid #e7ecef;
        border-radius: 10px;
        background: #fff;
    }

        .home-blog-item:last-child {
            margin-bottom: 0;
        }

    .home-blog-default {
        position: relative;
        inset: auto;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .home-blog-image {
        height: auto;
        aspect-ratio: 16 / 9;
        border-radius: 10px 10px 0 0;
    }

        .home-blog-image img {
            border-radius: 10px 10px 0 0;
        }

    .home-blog-default-content {
        padding: 16px 18px 20px;
    }

    .home-blog-default h3 {
        font-size: 18px;
        line-height: 26px;
    }

    .home-blog-hover {
        display: none;
    }

    .home-blog-item:hover .home-blog-default {
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .home-faq-section {
        padding: 38px 0;
    }

    .home-faq-head {
        margin-bottom: 22px;
    }

        .home-faq-head h2 {
            font-size: 29px;
            line-height: 40px;
        }

    .home-faq-main {
        display: block;
    }

    .home-faq-image {
        width: 100%;
        height: auto;
        margin-bottom: 24px;
        border-radius: 10px;
    }

        .home-faq-image img {
            width: 100%;
            height: auto;
            max-width: 100%;
            aspect-ratio: 600 / 376;
            border-radius: 10px;
            object-fit: cover;
        }

    .home-faq-question {
        min-height: 58px;
        padding: 14px 12px;
        gap: 12px;
        font-size: 15px;
        line-height: 23px;
    }

    .home-faq-item.is-open .home-faq-question {
        min-height: 58px;
        padding: 14px 12px;
    }

    .home-faq-question .fa {
        flex-basis: 25px;
        width: 25px;
        height: 25px;
        font-size: 12px;
    }

    .home-faq-answer-inner {
        padding: 16px 14px;
        font-size: 14px;
        line-height: 23px;
    }
}


/* ==============================
   Home Sellstock Modal
================================= */

.home-stock-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.home-stock-modal.is-open {
    display: flex;
}

.home-stock-modal-mask {
    position: absolute;
    inset: 0;
    background: rgba(14, 64, 39, 0.48);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.home-stock-modal-dialog {
    position: relative;
    z-index: 2;
    width: 420px;
    max-width: 100%;
    padding: 32px 34px 30px;
    box-sizing: border-box;
    overflow: hidden;
    border: 1px solid rgba(48, 154, 99, 0.20);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 28px 70px rgba(16, 73, 43, 0.25);
    text-align: center;
    animation: homeStockModalIn 0.24s ease;
}

.home-stock-modal-dialog::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 6px;
    background: linear-gradient(
        90deg,
        #23784c 0%,
        #309a63 58%,
        #62c88d 100%
    );
}

.home-stock-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    border-radius: 50%;
    outline: none;
    background: #edf6f1;
    color: #6d8176;
    font-size: 13px;
    cursor: pointer;
    transition:
        color 0.22s ease,
        background 0.22s ease,
        transform 0.22s ease;
}

.home-stock-modal-close:hover {
    background: #309a63;
    color: #ffffff;
    transform: rotate(90deg);
}

.home-stock-modal-icon {
    width: 82px;
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5px auto 18px;
    border-radius: 50%;
    background: #e8f7ef;
    color: #309a63;
    font-size: 31px;
    box-shadow: 0 13px 28px rgba(48, 154, 99, 0.16);
}

.home-stock-modal-label {
    display: block;
    margin-bottom: 7px;
    color: #309a63;
    font-size: 11px;
    line-height: 18px;
    font-weight: 800;
    letter-spacing: 1.3px;
}

.home-stock-modal-dialog h3 {
    margin: 0;
    color: #17251e;
    font-size: 24px;
    line-height: 34px;
    font-weight: 800;
}

.home-stock-modal-dialog p {
    margin: 12px 0 0;
    color: #697970;
    font-size: 14px;
    line-height: 24px;
}

.home-stock-modal-actions {
    margin-top: 24px;
}

.home-stock-modal-button {
    min-width: 132px;
    height: 44px;
    padding: 0 22px;
    border: 0;
    border-radius: 999px;
    outline: none;
    background: #309a63;
    color: #ffffff;
    font-family: inherit;
    font-size: 13px;
    line-height: 44px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 22px rgba(48, 154, 99, 0.22);
    transition:
        background 0.22s ease,
        box-shadow 0.22s ease,
        transform 0.22s ease;
}

.home-stock-modal-button:hover {
    background: #23784c;
    box-shadow: 0 13px 27px rgba(48, 154, 99, 0.29);
    transform: translateY(-2px);
}

.home-stock-modal.is-error .home-stock-modal-icon {
    background: #fff0f0;
    color: #d85454;
    box-shadow: 0 13px 28px rgba(193, 71, 71, 0.15);
}

.home-stock-modal.is-error .home-stock-modal-label {
    color: #c74c4c;
}

.home-stock-modal.is-success .home-stock-modal-icon {
    background: #e8f7ef;
    color: #309a63;
}

.home-stock-modal.is-loading .home-stock-modal-icon {
    background: #edf7f2;
    color: #309a63;
}

.home-stock-modal.is-loading .home-stock-modal-close,
.home-stock-modal.is-loading .home-stock-modal-actions {
    display: none;
}

body.home-stock-modal-open {
    overflow: hidden;
}

@keyframes homeStockModalIn {
    from {
        opacity: 0;
        transform: translateY(14px) scale(0.97);
    }

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

@media (max-width: 768px) {
    .home-stock-modal {
        padding: 16px;
    }

    .home-stock-modal-dialog {
        width: 100%;
        max-width: 410px;
        padding: 29px 22px 25px;
        border-radius: 18px;
    }

    .home-stock-modal-icon {
        width: 72px;
        height: 72px;
        margin-bottom: 16px;
        font-size: 27px;
    }

    .home-stock-modal-dialog h3 {
        font-size: 21px;
        line-height: 30px;
    }
}

