﻿body {
    -moz-user-select:none; /* Firefox私有属性 */
    -webkit-user-select:none; /* WebKit内核私有属性 */
    -ms-user-select:none; /* IE私有属性(IE10及以后) */
    -khtml-user-select:none; /* KHTML内核私有属性 */
    -o-user-select:none; /* Opera私有属性 */
    user-select:none; /* CSS3属性 */
}
.nav-bar .animated {
    background: #fff;
}
.realstore-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
/**
 * banner图
 */
.banner {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.banner-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}
.banner-content .title {
    font-weight: 600;
    font-size: 4.5rem;
    color: #FFFFFF;
    line-height: 6.25rem;
    text-align: center;
    font-style: normal;
    margin-bottom: 1.93rem;
}
.banner-content .desc {
    font-size: 3rem;
    color: #FFFFFF;
    line-height: 4.25rem;
    text-align: center;
    font-style: normal;
}
@media (max-width: 1300px) {
    .banner-content .title {
        font-size: 3.75rem;
        line-height: 5.625rem;
        margin-bottom: 1.5625rem;
    }
    .banner-content .desc {
        font-size: 2.5rem;
        line-height: 3.125rem;
    }
}
@media (max-width: 1200px) {
    .banner-content .title {
        font-size: 3.4375rem;
        line-height: 5rem;
        margin-bottom: 1.5625rem;
    }
    .banner-content .desc {
        font-size: 2.25rem;
        line-height: 3.125rem;
    }
}
@media (max-width: 1000px) {
    .banner-content .title {
        font-size: 3.125rem;
        line-height: 4.375rem;
        margin-bottom: 1.25rem;
    }
    .banner-content .desc {
        font-size: 2.1875rem;
        line-height: 2.8125rem;
    }
}
@media (max-width: 900px) {
    .banner-content .title {
        font-size: 2.5rem;
        line-height: 3.75rem;
        margin-bottom: 0.9375rem;
    }
    .banner-content .desc {
        font-size: 1.875rem;
        line-height: 2.5rem;
    }
}
@media (max-width: 800px) {
    .banner-content .title {
        font-size: 2.1875rem;
        line-height: 3.125rem;
        margin-bottom: 0.625rem;
    }
    .banner-content .desc {
        font-size: 1.5625rem;
        line-height: 1.875rem;
    }
}
@media (max-width: 700px) {
    .banner-content .title {
        font-size: 1.875rem;
        line-height: 2.5rem;
        margin-bottom: 0.625rem;
    }
    .banner-content .desc {
        font-size: 1.25rem;
        line-height: 1.5625rem;
    }
}
@media (max-width: 600px) {
    .banner-content .title {
        font-size: 1.5625rem;
        line-height: 2.1875rem;
        margin-bottom: 0.625rem;
    }
    .banner-content .desc {
        font-size: 0.9375rem;
        line-height: 1.25rem;
    }
}
@media (max-width: 500px) {
    .banner-content .title {
        font-size: 1.25rem;
        line-height: 1.875rem;
        margin-bottom: 0.625rem;
    }
    .banner-content .desc {
        font-size: 0.8125rem;
        line-height: 1.125rem;
    }
}
/*
* 顶部标题
*/
.new-title {
    padding: calc(1rem + 2.5vw) 0;
}
.new-title h1::before {
    content: '';
    width: 100%;
    height: 0.75rem;
    position: absolute;
    left: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(109, 169, 247, 0) 0%, #3B70EB 100%);
}
/*
* 应用
*/
.application-img {
    width: 5.375rem;
    object-fit: contain;
}
.application .row {
    font-weight: 400;
    font-size: 1.375rem;
    color: #333333;
    line-height: 1.875rem;
    text-align: center;
    font-style: normal;
}

/*
* 全链路系统
*/
.e-commerce-system {
    background: url(../images/realstore/background.png) no-repeat;
    background-size: 100% 100%;
}
.e-commerce-system .arrow {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.e-commerce-system .arrow {
    height: 3.75rem;
    object-fit: contain;
}
.e-commerce-system .arrow-left {
    bottom: 2.5rem;
}
.e-commerce-system .arrow-right {
    top: 2.5rem;
}
.system-content {
    width: 38.75rem;
    height: 38.75rem;
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    
}
.system-content .item {
    width: 100%;
    height: 100%;
    position: relative;
    animation: rotateArrow 5s infinite linear;
}
/* 定义旋转动画 */
@keyframes rotateArrow {
    0% {
        transform: rotate(0);
        opacity: 1;
    }
    30% {
        opacity: 0.1;
    }
    40% {
        opacity: 0;
    }
    50% {
        opacity: 0.1;
    }
    100% {
        opacity: 1;
        transform: rotate(180deg);
    }
}
@media (max-width: 1400px) {
    .system-content{
        width: 33.125rem;
        height: 33.125rem;
    }
    .e-commerce-system .arrow {
        height: 3.4375rem;
    }
}
@media (max-width: 1200px) {
    .system-content{
        width: 28.125rem;
        height: 28.125rem;
    }
    .e-commerce-system .arrow {
        height: 2.8125rem;
    }
    .e-commerce-system .arrow-left {
        bottom: 2rem;
    }
    .e-commerce-system .arrow-right {
        top: 2rem;
    }
}
@media (max-width: 990px) {
    .system-content{
        width: 20.625rem;
        height: 20.625rem;
    }
    .e-commerce-system .arrow {
        height: 2.5rem;
    }
    .e-commerce-system .arrow-left {
        bottom: 1.5rem;
    }
    .e-commerce-system .arrow-right {
        top: 1.5rem;
    }
}
@media (max-width: 765px) {
    .system-content{
        width: 18rem;
        height: 18rem;
    }
    .e-commerce-system .arrow {
        height: 1.875rem;
    }
    .e-commerce-system .arrow-left {
        bottom: 1.5rem;
    }
    .e-commerce-system .arrow-right {
        top: 1.5rem;
    }
}
@media (max-width: 540px) {
    .system-content{
        width: 17rem;
        height: 17rem;
    }
    .e-commerce-system .arrow {
        height: 1.5rem;
    }
    .e-commerce-system .arrow-left {
        bottom: 1.2rem;
    }
    .e-commerce-system .arrow-right {
        top: 1.2rem;
    }
}
@media (max-width: 480px) {
    .system-content{
        width: 14.5rem;
        height: 14.5rem;
    }
    .e-commerce-system .arrow {
        height: 1.25rem;
    }
    .e-commerce-system .arrow-left {
        bottom: 1rem;
    }
    .e-commerce-system .arrow-right {
        top: 1rem;
    }
}
@media (max-width: 400px) {
    .system-content{
        width: 12rem;
        height: 12rem;
    }
    .e-commerce-system .arrow {
        height: 1.25rem;
    }
    .e-commerce-system .arrow-left {
        bottom: 0.8rem;
    }
    .e-commerce-system .arrow-right {
        top: 0.8rem;
    }
}
/*
* 订单
*/
.order .title {
    font-weight: 500;
    font-size: 2rem;
    color: #333333;
    line-height: 2.8125rem;
    text-align: left;
    font-style: normal;
}

.order .desc {
    font-weight: 400;
    font-size: 1.125rem;
    color: #666666;
    line-height: 2.1875rem;
    text-align: left;
    font-style: normal;
}
/*
* 数字化导购
*/
.shopping-guide {
    width: 100%;
    height: 100%;
    background: url(../images/realstore/background.png) no-repeat;
    background-size: 100% 100%;
}

/*
* 门店移动端
*/
.store-mobile {
    background: url(../images/realstore/background.png) no-repeat;
    background-size: 100% 100%;
}
/*
* 管理系统
*/
.management-system {
    overflow: hidden;
}
.management-system .management-system-img {
    position: absolute;
    width: 100%;
    top: -1.25rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}
.management-system .system-img {
    max-width: 8.75rem;
}
.management-system .title {
    font-weight: 400;
    font-size: 2rem;
    color: #333333;
    line-height: 2.8125rem;
    text-align: left;
    font-style: normal;
}
@media (max-width: 780px) {
    .management-system .title {
        font-size: 1.5rem;
        line-height: 2rem;
    }
}
@media (max-width: 600px) {
    .management-system .management-system-img {
        top: 0;
        height: 100%;
    }
}
@media (max-width: 540px) {
    .management-system .title {
        font-size: 1.2rem;
        line-height: 1.6rem;
    }
}
/*
* 数字化转型
*/
.digital {
    background: url(../images/realstore/background.png) no-repeat;
    background-size: 100% 100%;
}
.digital .digital-content {
    position: relative;
    height: 16.9375rem;
    background: linear-gradient( 180deg, #DEEDFF 0%, #F9FDFF 100%);
    border-radius: 0.5rem;
}
.digital img {
    width: 5.625rem;
    height: 5.625rem;
    right: 0;
    bottom: 0;
    position: absolute;
    object-fit: contain;
}
.digital .digital-content .title {
    font-weight: 500;
    font-size: 2rem;
    color: #333333;
    line-height: 2.8125rem;
    text-align: left;
    font-style: normal;
}
.digital .digital-content .desc {
    font-weight: 400;
    font-size: 1.3125rem;
    color: #666666;
    line-height: 1.8125rem;
    text-align: left;
    font-style: normal;
}
@media (max-width: 576px) {
    .digital .digital-content .title {
        font-size: 1.5rem;
        line-height: 2rem;
    }
}
/*
* 售后
*/
.after-sales .item{
    height: 24.125rem;
    background: #E3F3FF;
}

.after-sales img{
    width: 8.125rem;
    height: 8.125rem;
}
.after-sales .title {
    margin-top: 1.6667vw;
    font-size: 2.5rem;
    color: #333333;
    line-height: 3.5rem;
    font-style: normal;
}

@media (max-width: 992px) {
    .after-sales .item{
        height: 16.875rem;
    }
    .after-sales img{
        width: 5.625rem;
        height: 5.625rem;
    }
    .after-sales .title {
        margin-top: 1.25rem;
        font-size: 1.875rem;
        line-height: 2.25rem;
    }
}
@media (max-width: 576px) {
    .after-sales .item{
        height: 12.5rem;
    }
    .after-sales img{
        width: 4.375rem;
        height: 4.375rem;
    }
    .after-sales .title {
        margin-top: 0.625rem;
        font-size: 1.25rem;
        line-height: 1.5rem;
    }
}
/*
* 购买
*/
.buy {
    height: 19.5625rem;
    background: linear-gradient( 107deg, #242CD9 0%, #4473FF 100%), #D8D8D8;
}
.buy img {
    height: 4.1875rem;
    object-fit: contain;
}
.buy .title {
    font-weight: 500;
    font-size: 1.375rem;
    color: #FFFFFF;
    line-height: 1.875rem;
    font-style: normal;
}

@media (max-width: 576px) {
    .buy {
        height: 15rem;
    }
}