/* 移动端 */
.banner {
    width: 100%;
    height: 100px;
    background: url('../imgs/product-banner2.png') no-repeat center / cover;
}

.banner-content {
    display: flex;
    flex-direction: column;
    padding-top: 23px;
    padding-left: 15px;
}

.banner-title {
    font-weight: bold;
    font-size: 15px;
    color: #014099;
    line-height: 1;
    letter-spacing: 2px;
}

.banner-subtitle {
    width: 245px;
    font-weight: 400;
    font-size: 10px;
    color: #333333;
    line-height: 19px;
    margin-top: 8px;
    letter-spacing: 1px;
}

.products {
    display: none;
}

.product-wrapper {
    padding: 0 34px 18px;
    background: url('../imgs/products-bg2.png') no-repeat top / 100% 388px;
}

.products-mobile .swiper-container {
    width: 100%;
    height: 406px;
    padding-top: 23px;
}

.product-title {
    font-weight: bold;
    font-size: 15px;
    color: #333333;
    line-height: 1;
    text-align: center;
}

.product-desc {
    margin-bottom: 20px;
    margin-top: 10px;
}

.product-subtitle {
    font-weight: bold;
    font-size: 12px;
    color: #333333;
    line-height: 1;
    margin-bottom: 8px;
}

.product-desc-text {
    font-weight: 400;
    font-size: 11px;
    color: #333333;
    line-height: 17px;
    letter-spacing: 1px;
}

.product-img {
    width: 190px;
    height: 107px;
    background: url('../imgs/products-demo2.png') no-repeat center / cover;
    margin: 24px auto 0;
}

.products-mobile .swiper-pagination {
    bottom: 0 !important;
}

.values-content {
    display: none;
}

.values-content-mobile {
    padding: 0 9px;
}

.values-title {
    font-weight: bold;
    font-size: 14px;
    color: #3D83E9;
    line-height: 1;
    margin-bottom: 10px;
}

.values-text {
    font-weight: 400;
    font-size: 11px;
    color: #333333;
    line-height: 18px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.values-mid {
    display: flex;
    justify-content: space-between;
}

.values-right {
    width: 154px;
    min-width: 154px;
    height: 162px;
    background: url('../imgs/values-img2.png') no-repeat center / cover;
    margin-top: -20px;
}

.trial {
    width: 100%;
    height: 249px;
    background: url('../imgs/trial-bg2.png') no-repeat center / cover;
}

.trial-content {
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.trial-left {
    position: absolute;
    top: 56px;
    left: 9px;
    width: 163px;
    height: 146px;
    background: url('../imgs/trial-img2.png') no-repeat center / cover;
}

.trial-right {
    width: 211px;
    position: relative;
    z-index: 1;
}

.trial-tip {
    font-weight: 400;
    font-size: 10px;
    line-height: 1;
    margin-bottom: 6px;
    margin-top: 23px;
}

.input {
    width: 100%;
    height: 40px;
    background: #FFFFFF;
    border-radius: 2px;
    border: 1px solid #BFBFBF;
    outline: none;
    padding: 0 13px;
    font-weight: 400;
    font-size: 11px;
}

.input::placeholder {
    color: #999999;
}

.select {
    appearance: none;
    width: 100%;
    height: 40px;
    background: #FFFFFF;
    border-radius: 2px;
    border: 1px solid #BFBFBF;
    outline: none;
    padding: 0 13px;
    font-weight: 400;
    font-size: 11px;
    margin: 10px 0;
    background: url('../imgs/icon-down.png') no-repeat right 10px center / 9px 4px;
    color: #999999;
}

.apply {
    width: 100%;
    height: 40px;
    background: #014099;
    border-radius: 2px;
    font-weight: bold;
    font-size: 12px;
    color: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    margin-top: 10px;
}

.title-wrap.for-pc {
    display: none;
}

/* pc端 */
@media screen and (min-width: 768px) {
    .banner {
        width: 100%;
        min-width: 1200px;
        height: 380px;
        background: url('../imgs/product-banner.png') no-repeat center / cover;
    }

    .banner-content {
        display: flex;
        flex-direction: column;
        padding-top: 125px;
    }

    .banner-title {
        font-weight: bold;
        font-size: 36px;
        color: #014099;
        line-height: 1;
        letter-spacing: 2px;
    }

    .banner-subtitle {
        width: unset;
        font-weight: 400;
        font-size: 20px;
        color: #333333;
        line-height: 1;
        margin-top: 36px;
        letter-spacing: 1px;
    }

    .products {
        display: block;
    }

    .products-mobile {
        display: none;
    }

    .products-content {
        width: 100%;
        height: 520px;
        display: flex;
        justify-content: space-between;
        margin-top: 10px;
    }

    .products-left {
        width: 286px;
        height: 100%;
        display: flex;
        flex-direction: column;
        background: #EDF1FB;
        border-radius: 10px;
        padding-top: 41px;
        row-gap: 15px;
    }

    .products-menu {
        display: flex;
        align-items: center;
        width: 100%;
        height: 61px;
        padding-left: 29px;
        cursor: pointer;
        font-weight: bold;
        font-size: 18px;
    }

    .products-menu.active,
    .products-menu:hover {
        position: relative;
        background: linear-gradient(90deg, #FFFFFF 0%, #F8F9FF 100%);
    }

    .products-menu.active::before,
    .products-menu:hover::before {
        content: '';
        position: absolute;
        width: 5px;
        height: 34px;
        background: #014099;
        border-radius: 3px;
        top: 50%;
        margin-top: -17px;
        left: 0;
    }

    .products-menu.active::after,
    .products-menu:hover::after {
        content: '';
        position: absolute;
        width: 90px;
        height: 61px;
        top: 0;
        right: 0;
        background: url('../imgs/product-menu-bg.png') no-repeat center / cover;
    }

    .products-right {
        width: 894px;
        height: 100%;
        background: #F7F9FF url('../imgs/products-bg.png') no-repeat center / cover;
        border-radius: 10px;
        padding: 50px 40px 0 49px;
    }

    .products-btns {
        display: flex;
        justify-content: flex-end;
        column-gap: 20px;
        margin-bottom: 15px;
    }

    .title-wrap.for-mobile {
        display: none;
    }

    .title-wrap.for-pc {
        display: flex;
    }

    .btn {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100px;
        height: 30px;
        border-radius: 15px;
        border: 1px solid #014099;
        font-weight: bold;
        font-size: 14px;
        color: #014099;
    }

    .btn-primary {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100px;
        height: 30px;
        background: #014099;
        border-radius: 15px;
        font-weight: bold;
        font-size: 14px;
        color: #FFFFFF;
    }

    .products-title {
        font-weight: bold;
        font-size: 20px;
        line-height: 1;
        margin-bottom: 15px;
    }

    .products-info {
        font-weight: 400;
        font-size: 16px;
        line-height: 30px;
        margin-bottom: 36px;
    }

    .products-advantage {
        flex: 1;
    }

    .products-advantage-item {
        font-weight: 400;
        font-size: 16px;
        line-height: 30px;
    }

    .products-wrap {
        display: flex;
    }

    .products-img {
        width: 452px;
        min-width: 452px;
        height: 255px;
        background: url('../imgs/products-demo.png') no-repeat center / cover;
    }

    .values-content {
        display: flex;
        column-gap: 42px;
        margin-top: 12px;
    }

    .values-content-mobile {
        display: none;
    }

    .values-left {
        width: 650px;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        text-align: right;
    }

    .values-title {
        font-weight: bold;
        font-size: 20px;
        color: #3D83E9;
        line-height: 1;
        margin-bottom: 15px;
    }

    .values-text {
        font-weight: 400;
        font-size: 16px;
        line-height: 30px;
        margin-bottom: 69px;
        letter-spacing: 1px;
    }

    .values-right {
        width: 491px;
        height: 515px;
        background: url('../imgs/values-img.png') no-repeat center / cover;
        position: relative;
        top: -60px;
    }

    .trial {
        width: 100%;
        min-width: 1200px;
        height: 600px;
        margin-top: 40px;
        background: url('../imgs/trial-bg.png') no-repeat center / cover;
    }

    .trial-content {
        display: flex;
        column-gap: 109px;
        justify-content: center;
    }

    .trial-left {
        position: static;
        width: 389px;
        height: 350px;
        background: url('../imgs/trial-img.png') no-repeat center / cover;
    }

    .trial-right {
        width: 491px;
    }

    .trial-tip {
        margin-top: unset;
        font-weight: 400;
        font-size: 16px;
        line-height: 1;
        margin-bottom: 26px;
    }

    .input {
        width: 100%;
        height: 50px;
        background: #FFFFFF;
        border-radius: 4px;
        border: 1px solid #BFBFBF;
        outline: none;
        padding: 0 28px;
        font-weight: 400;
        font-size: 16px;
    }

    .input::placeholder {
        color: #999999;
    }

    .select {
        appearance: none;
        width: 100%;
        height: 50px;
        background: #FFFFFF;
        border-radius: 4px;
        border: 1px solid #BFBFBF;
        outline: none;
        padding: 0 28px;
        font-weight: 400;
        font-size: 16px;
        margin: 20px 0;
        background: url('../imgs/icon-down.png') no-repeat right 20px center;
        color: #999999;
    }

    .apply {
        width: 491px;
        height: 50px;
        background: #014099;
        border-radius: 4px;
        font-weight: bold;
        font-size: 16px;
        color: #FFFFFF;
        display: flex;
        justify-content: center;
        align-items: center;
        border: none;
        margin-top: 20px;
    }
}