@-webkit-keyframes rotateToRunning {
    form {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes rotateToRunning {
    form {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/* 解决方案 start */
.solution-list ul {
    display: flex;
    flex-wrap: wrap
}
.solution-list ul li {
    padding: 35px 25px;
    height: 260px;
    text-align: center;
    display: flex;
    flex-direction: column-reverse;
    width: 16.66%;
    min-width: 180px;
    cursor: pointer;
}
.solution-list ul li.active {
    border-radius: 8px;
    background: #FFFFFF;
    box-shadow: 0px 4px 16px 0px #00000019;
}
.solution-list .bot-img {
    margin: 0 auto;
}
.solution-list .bot-img img {
    height: 52px;
    width: 52px;
}
.solution-list .inset {
    flex: 1;
    padding-top: 20px;
}
.solution-list .inset h3 {
    font-size: 18px;
    margin-bottom: 15px;
}
.solution-list .inset p {
    color: #666;
    font-size: 14px;
    line-height: 24px;
}
/* 解决方案 end */

/* 合作模式start */
.cooperate-box .title h3 {
    padding-bottom: 40px;
}
/* 合作模式end */

/* 产品价值 start */
.value-list {
    position: relative;
}
.value-list::after {
    content: "";
    display: block;
    width: 164px;
    height: 164px;
    position: absolute;
    border: 2px dashed #E1E2E2;
    border-radius: 100%;
    top: calc(50% - 82px);
    left: calc(50% - 82px);
    /* transform: translate(-50%, -50%); */
    z-index: -1;
    -webkit-animation: rotateToRunning 20s linear infinite forwards;
    animation: rotateToRunning 20s linear infinite forwards;
}
.value-list li {
    float: left;
    width: 50%;
    position: relative;
    display: flex;
    padding: 27px 37px;
}
.value-list li:nth-child(2n) {
    flex-direction: row-reverse;
}
.value-list li .icon-box {
    width: 106px;
    height: 106px;
    /* line-height: 106px;
    text-align: center; */
    border-radius: 50%;
    background: linear-gradient(90deg, #FFAF20 0%, #FE8534 100%);
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}
.value-list li .icon-box img {
    width: 52px;
}
.value-list .inset {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.value-list .inset h3 {
    font-size: 18px;
    font-weight: 400;
    overflow: hidden;
    padding:0 36px;
}
.value-list li:nth-child(2n) .inset {
    justify-content: flex-start;
}
/* 产品价值 end */

/* 服务内容 start */
.service-list {
    padding-bottom: 50px;
}
.service-list ul {
    display: flex;
    flex-wrap: wrap;
}
.service-list li {
    width: 108px;
    height: 246px;
    margin-right: 20px;
    border-radius: 8px;
    position: relative;
    background: #FFFFFF;
    border: 1px solid #EDEDED;
    /* transition: all 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28); */
    transition: all 0.3s linear;
    margin-bottom: 10px;
}
.service-list li.active {
    flex: 1;
    background: linear-gradient(90deg, #FFAF20 0%, #FE8534 100%);
    box-shadow: 0px 4px 12px 0px #FFCAA6;
    min-width: 108px;
}
.service-list li:last-child {
    margin-right: 0;
}
.service-list .inset {
    text-align: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.service-list .inset p {
    display: none;
}
.service-list .inset h3 {
    margin: 0 auto;
    writing-mode: vertical-rl;
    font-size: 18px;
    max-width: 26px;
    max-height: 8em;
    overflow: hidden;
    /* white-space: nowrap;
    text-overflow: ellipsis; */
    letter-spacing: 0;
}
.service-list li.active .inset h3 {
    width: 100%;
    max-height: 24px;
    writing-mode: rl;
    color: white;
    max-width: 100%;
    margin-bottom: 12px;
}
.service-list li.active .inset p {
    display: block;
    color: white;
    line-height: normal;
    letter-spacing: 0;
}
.service-list li .bot-img {
    position: absolute;
    bottom: 30px;
    text-align: center;
    width: 100%;
}
.service-list li .bot-img img {
    width: 20px;
}
.service-list li.active .bot-img img {
    width: 24px;
}
/* 服务内容 end */

/* 服务优势 start */
.advantage-list {
    /* overflow: hidden; */
}
.advantage-list ul li {
    border-radius: 15px;
    background: #FFFFFF;
    /* margin-left: 12px; */
    height: 366px;
    text-align: center;
    padding: 20px;
    position: relative;
    /* border-top: 8px solid #FBAC57; */
    box-shadow: 0px 4px 16px 0px #00000019;
    transition: all .3s;
}
.advantage-list ul li:hover {
    transform: translateY(-20px);
}
/* .advantage-list ul li::before,
.advantage-list ul li::after {
    content: "";
    display: block;
    position: absolute;
    width: 33.33%;
    height: 8px;
    top: -8px;
}
.advantage-list ul li::before {
    border-radius: 8px 0 0 0;
    left: 0;
    background:  #FF8F14;
}
.advantage-list ul li::after {
    border-radius: 0 8px 0 0;
    right: 0;
    background:  #FFD5AE;
}
.advantage-list ul li:first-child {
    margin-left: 0;
} */
.advantage-list .bot-img {
    width: 75px;
    height: 75px;
    margin: 0 auto;
    /* background: #f8f8f8; */
    /* border-radius: 50%; */
    padding: 13px;
}
.advantage-list .inset {
    padding: 20px 0;
}
.advantage-list .inset h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 32px;
}
.advantage-list .inset p {
    color: #4a4a4a;
    line-height: 26px;
    text-align: center;
}
/* 服务优势 end */

/* 数智化运营 start */
.operate-box {
    padding-left:35px;
    padding-right:35px;
}
.operate-box .title h3 {
    padding-bottom: 44px;
}
.operate-list {
    overflow: hidden;
    padding: 0 8px 20px;
    position: relative;
}
.operate-list>ul>li {
    border-radius: 50px;
    background: #FFFFFF;
    border: 1px solid #FBAC57;
    padding: 17px 40px 23px;
    height: 90px;
    cursor: pointer;
}
.operate-list .inset {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.operate-list .inset h3 {
    color: #FBAC57;
    font-size: 18px;
    text-align: center;
}
.operate-list>ul>li.active {
    background: linear-gradient(90deg, #FFAF20 0%, #FE8534 100%);
    box-shadow: 0px 8px 12px 0px #FFCAA6;
}
.operate-list>ul>li.active .inset h3 {
    color: #FFFFFF;
}
.operate-content {
    position: relative;
    height: 420px;
    max-height: 480px;
    margin-top: 15px;
    background-position: center;
    background-repeat: no-repeat;
    background-color: white;
    background-size: contain;
    padding: 0 8px;
}
.operate-content .operate-items {
    border-radius: 8px;
    background: #F8F8F8;
    width: 282px;
    padding: 44px 26px 33px;
    position: absolute;
    left: 0;
    top: 55px;
}
.operate-content .operate-items h3 {
    color: #333333;
    font-size: 18px;
    line-height: 32px;
    letter-spacing: 0px;
    margin-bottom: 16px;
    padding-left: 26px;
}
.operate-content .operate-items ul {
    max-height: 240px;
    overflow-y: auto;
}
.operate-content .operate-items ul li {
    padding-left: 26px;
    position: relative;
    margin-bottom: 20px;
}
.operate-content .operate-items ul li img {
    height: 14px;
    vertical-align: top;
    position: absolute;
    left: 4px;
    top: 3px;
}
.operate-prev,.operate-next {
    position: absolute;
    width: 30px;
    height: 90px;
    top: 0;
    cursor: pointer;
}
.operate-prev {
    left: -30px;
}
.operate-next {
    right: -30px;
}
.operate-prev span.layui-icon,
.operate-next span.layui-icon {
    font-size: 32px;
    line-height: 90px;
    color: #797979;
}
.operate-prev.swiper-button-disabled,
.operate-next.swiper-button-disabled {
    cursor:default;
}
.operate-prev.swiper-button-disabled span.layui-icon,
.operate-next.swiper-button-disabled span.layui-icon {
    color: #efefef;
}
/* 数智化运营 end */

/*--产品服务--*/
.productvaluebox {
    padding: 35px 0px 30px;
}

.productvalueTitle {
    font-size: 18px;
    padding-bottom: 10px;
    text-align: center;
    color: #323232;
    font-weight: 700;
}

.productvalue {
    margin: 0px auto;
    position: relative;
}

.productvalueImg {
    max-width: 220px;
    margin: 0px auto;
    position: relative;
}

.productvalueImg img {
    width: 100%;
    display: block;
}

.productvalueImg p {
    position: absolute;
    left: 0px;
    top: 55%;
    width: 100%;
    transform: translateY(-50%);
    padding-bottom: 20px;
}

.productvalueImg p img {
    display: block;
    width: 43px;
    margin: auto;
}

.productvalue ul {
    padding-top: 20px;
}

.productvalue ul li {
    background-repeat: no-repeat;
    padding-bottom: 10px;
}

.productvalue ul li .productValueContent {
    font-size: 14px;
    position: relative;
    color: #323232;
    padding-left: 0px;
    line-height: 35px;
}

.productvalue ul li .productValueContent span {
    top: 0px;
    left: 0px;
    display: none;
    position: absolute;
    width: 35px;
    line-height: 35px;
    font-size: 18px;
    color: #3370cd;
    background: #fff;
    -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    -webkit-border-radius: 100%;
    border-radius: 100%;
    text-align: center;
}

.productvalue ul li .productValueContent h3 {
    font-size: 16px;
}

.productvalue ul li .productValueContent .desc {
    font-size: 14px;
    line-height: 20px;
}

.productSolution ul {
    margin: 0px -10px;
    padding-top: 40px;
}

.productSolution ul li {
    width: 100%;
    padding: 0px 10px 15px;
}

.productSolution ul li .productSolutionContent {
    background: #fff;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    padding: 20px;
    -webkit-box-shadow: 0px 10px 52px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 10px 52px rgba(0, 0, 0, 0.1);
}

.productSolution ul li .productSolutionContent {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.productSolution ul li .productSolutionContent dt {
    width: 75px;
}

.productSolution ul li .productSolutionContent dt img {
    width: 50px;
    display: block;
}

.productSolution ul li .productSolutionContent dd {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.productSolution ul li .productSolutionContent dd h3 {
    font-size: 14px;
    font-weight: 700;
    padding-bottom: 5px;
}

.productSolution ul li .productSolutionContent dd p {
    font-size: 12px;
    color: #65676c;
    line-height: 20px;
}

.SystemAdvantages {
    padding-top: 30px;
}

.SystemAdvantages dl img {
    display: block;
    width: 100%;
}

.SystemAdvantages ul {
    padding-left: 0px;
}

.SystemAdvantages ul::-webkit-scrollbar {
    width: 1px;
    height: 16px;
    background-color: #eee;
}

.SystemAdvantages ul::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    background-color: #eee;
}

.SystemAdvantages ul::-webkit-scrollbar-thumb {
    border-radius: 3px;
    -webkit-box-shadow: inset 0 0 2px rgba(0, 0, 0, .1);
    background-color: #eb9f4b;
    width: 3px;
}

.SystemAdvantages ul li {
    padding: 20px 15px;
    background: #f6f6f6;
    margin-top: 20px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
}

.SystemAdvantages ul li h3 {
    font-size: 14px;
    font-weight: 700;
    color: #323232;
}

.SystemAdvantages ul li .desc {
    font-size: 12px;
    padding-top: 10px;
    line-height: 24px;
    color: #65676c;
    display: none;
}

.SystemAdvantages ul li.cur {
    background: #fff;
    -webkit-box-shadow: 0px 3px 20px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 3px 20px rgba(0, 0, 0, 0.1);
}

.SystemAdvantages ul li.cur .desc {
    display: block;
}

.ServiceAdvantagebox {
    padding: 30px 0px;
}

.ServiceAdvantage {
    margin-top: 20px;
    padding: 0px 20px 20px;
    position: relative;
    overflow: hidden;
}

.ServiceAdvantageContent {
    border-bottom: 6px solid #eb9f4b;
    min-height: 275px;
    background: #fff;
    margin-top: 25px;
    -webkit-box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.1);
}

.ServiceAdvantageContent .icon {
    position: relative;
    top: -25px;
    margin-bottom: -25px;
}

.ServiceAdvantageContent .icon img {
    width: 60px;
    height: 60px;
    display: block;
    margin: 0px auto;
    -webkit-border-radius: 100%;
    border-radius: 100%;
    background: #f6f6f6;
}

.ServiceAdvantageContent h3 {
    font-size: 14px;
    color: #323232;
    padding-top: 20px;
    font-weight: 700;
    text-align: center;
}

.ServiceAdvantageContent .desc {
    max-width: 280px;
    text-align: left;
    font-size: 12px;
    line-height: 28px;
    color: #65676c;
    margin: 0px auto;
    padding: 20px 15px 0px;
}

.ServiceAdvantageListbox {
    position: relative;
}

.ServiceAdvantageListbox em {
    position: absolute;
    top: 50%;
    z-index: 20;
    cursor: pointer;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: #e0e0e0;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-border-radius: 100%;
    border-radius: 100%;
    display: none;
}

.ServiceAdvantageListbox em.ServiceAdvantagePrev {
    left: -10px;
    background-image: url(../images/img_39.png);
}

.ServiceAdvantageListbox em.ServiceAdvantageNext {
    right: -10px;
    background-image: url(../images/img_40.png);
}

.ServiceAdvantageListbox em:hover {
    background-color: #eb9f4b;
}

.ServiceAdvantageDot {
    text-align: center;
    padding-top: 30px;
}

.ServiceAdvantageDot span {
    background: #e8e8e8;
    width: 7px;
    height: 7px;
    -webkit-border-radius: 100%;
    border-radius: 100%;
    opacity: 1;
    margin: 0px 3px;
}

.ServiceAdvantageDot span.swiper-pagination-bullet-active {
    background: #eb9f4b;
}

.Inputbox {
    position: relative;
}

.Inputbox label {
    display: block;
    padding: 8px 160px 8px 15px;
    background: #f6f6f6;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}

.Inputbox label input {
    font-size: 14px;
    color: #bebebe;
}

.Inputbox label input::-webkit-input-placeholder {
    color: #bebebe;
}

.Inputbox label input:-moz-placeholder {
    color: #bebebe;
}

.Inputbox label input::-moz-placeholder {
    color: #bebebe;
}

.Inputbox label input:-ms-input-placeholder {
    color: #bebebe;
}

.Inputbox .inputBtn {
    background: #eb9f4b;
    width: 140px;
    height: 100%;
    position: absolute;
    right: 0px;
    cursor: pointer;
    outline: none;
    text-align: center;
    font-size: 14px;
    color: #ffffff;
    font-weight: 700;
    top: 0px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}

.scanning {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: url(../images/img_61.png) no-repeat left top;
    background-size: 100%;
}

.scanning2 {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: url(../images/img_061.png) no-repeat center;
    background-size: 85%;
}

.SplitLine {
    padding: 0px 5px;
    color: #aaaaaa;
    font-weight: 600;
}

.statement {
    font-size: 14px;
    color: #8d8b8b;
    line-height: 24px;
    padding-top: 20px;
}

@media (min-width: 768px) {
    .productvaluebox {
        padding: 60px 0px 50px;
    }

    .productvalueTitle {
        font-size: 20px;
        padding-bottom: 10px;
    }

    .productSolution ul {
        margin: 0px -15px;
        padding-top: 40px;
    }

    .productSolution ul li {
        float: left;
        width: 50%;
        padding: 0px 15px 20px;
    }

    .productSolution ul li .productSolutionContent {
        height: 170px;
    }

    .productvalue ul li {
        float: left;
        width: 50%;
    }

    .productvalue ul li:nth-child(2n+1) {
        clear: left;
    }

    .SystemAdvantages {
        padding-top: 50px;
    }

    .ServiceAdvantageContent {
        margin-top: 40px;
    }

    .ServiceAdvantageContent .icon {
        top: -40px;
        margin-bottom: -40px;
    }

    .ServiceAdvantageContent .icon img {
        height: 70px;
        width: 70px;
    }

    .ServiceAdvantagebox {
        padding: 60px 0px;
    }

    .ServiceAdvantage {
        margin-top: 30px;
        padding-bottom: 30px;
    }

    .ServiceAdvantage {
        padding: 0px;
    }

    .ServiceAdvantageDot {
        display: none;
    }
}

@media (min-width: 992px) {
    .productvalue {
        max-width: 281px;
        margin: 0px auto;
        position: relative;
    }

    .productvalueImg {
        max-width: 281px;
        margin: 0px auto;
    }

    .productvalueImg img {
        width: 100%;
        display: block;
    }

    .productvalue ul li {
        width: 395px;
        position: absolute;
        height: 24px;
        background-repeat: no-repeat;
    }

    .productvalue ul li:nth-child(2n+1) {
        clear: none;
    }

    .productvalue ul li .productValueContent {
        position: absolute;
        font-size: 14px;
        color: #323232;
        width: 100%;
        padding-right: 100px;
        top: -30px;
    }

    .productvalue ul li .productValueContent span {
        width: 40px;
        line-height: 40px;
        font-size: 20px;
        position: absolute;
        color: #3370cd;
        background: #fff;
        -webkit-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.1);
        box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.1);
        -webkit-border-radius: 100%;
        border-radius: 100%;
        text-align: center;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    .productvalue ul li .productValueContent h3 {
        font-size: 18px;
    }

    .productvalue ul li .productValueContent .desc {
        font-size: 14px;
        padding-top: 20px;
        line-height: 20px;
        opacity: 0.8;
    }

    .productvalue ul li.value1 {
        right: 76%;
        top: 20px;
        background-image: url(../images/img_03.png);
        background-position: right bottom;
        height: 34px;
    }

    .productvalue ul li.value2 {
        left: 76%;
        top: 20px;
        background-image: url(../images/img_05.png);
        background-position: left bottom;
        height: 34px;
    }

    .productvalue ul li.value2 .productValueContent {
        padding-right: 0px;
        padding-left: 100px;
        text-align: right;
    }

    .productvalue ul li.value3 {
        right: 76%;
        bottom: 28px;
        background-image: url(../images/img_04.png);
        background-position: right bottom;
        height: 34px;
    }

    .productvalue ul li.value3 .productValueContent {
        top: -8px;
    }

    /* .productvalue ul li.value3 .productValueContent { left: -82px; padding-right: 0px; padding-left: 0px; bottom: -15px; }
  .productvalue ul li.value3 .productValueContent span { right: 0px; left: auto; } */
    .productvalue ul li.value4 {
        left: 76%;
        bottom: 28px;
        background-image: url(../images/img_06.png);
        background-position: left bottom;
        height: 34px;
    }

    /* .productvalue ul li.value4 .productValueContent { right: -120px; bottom: -15px; left: auto; padding-left: 0px; }
  .productvalue ul li.value4 .productValueContent span { left: 10px; } */
    .productvalue ul li.value4 .productValueContent {
        padding-right: 0px;
        padding-left: 100px;
        text-align: right;
        top: -8px;
    }

    .productSolution ul li .productSolutionContent {
        padding: 0px 20px;
        height: 170px;
    }

    .productSolution ul li .productSolutionContent dt {
        width: 95px;
    }

    .productSolution ul li .productSolutionContent dt img {
        width: 70px;
    }

    .SystemAdvantages dl {
        float: left;
        width: 400px;
    }

    .SystemAdvantagesList {
        float: left;
        width: -webkit-calc(100% - 400px);
        width: calc(100% - 400px);
    }

    .SystemAdvantagesList>h3 {
        text-align: left;
        padding-left: 30px;
    }

    .SystemAdvantages ul {
        padding-left: 30px;
    }

    .SystemAdvantages ul li {
        padding: 25px 20px;
    }

    .SystemAdvantages ul li h3 {
        font-size: 14px;
    }

    .SystemAdvantages ul li .desc {
        font-size: 12px;
        padding-top: 10px;
        line-height: 24px;
    }

    .ServiceAdvantageContent {
        margin-top: 45px;
    }

    .ServiceAdvantageContent .icon {
        top: -45px;
        margin-bottom: -45px;
    }

    .ServiceAdvantageContent .icon img {
        height: 90px;
        width: 90px;
    }

    .ServiceAdvantage {
        padding-bottom: 40px;
        margin-top: 40px;
    }

    .ServiceAdvantageContent h3 {
        font-size: 16px;
        padding-top: 30px;
    }

    .ServiceAdvantageContent .desc {
        font-size: 14px;
        line-height: 28px;
    }

    .Inputbox label {
        padding: 15px 160px 15px 15px;
    }
}

@media (min-width: 1230px) {
    /* .productvaluebox { padding: 90px 0px 70px; } */
    .productvalueTitle {
        font-size: 22px;
        padding-bottom: 10px;
    }

    .productvalue ul li {
        width: 505px;
    }

    .productvalue ul li .productValueContent {
        font-size: 16px;
    }

    .productvalue ul li .productValueContent span {
        width: 48px;
        line-height: 48px;
        font-size: 26px;
    }

    .productSolution ul li {
        width: 33.333%;
    }

    .productSolution ul li .productSolutionContent {
        padding: 0px 30px 0px 20px;
    }

    .productSolution ul li .productSolutionContent dd h3 {
        font-size: 16px;
        padding-bottom: 10px;
    }

    .productSolution ul li .productSolutionContent dd p {
        font-size: 14px;
        line-height: 24px;
    }

    /* .SystemAdvantages { padding-top: 90px; } */
    .SystemAdvantages dl {
        width: 486px;
    }

    .SystemAdvantagesList {
        width: -webkit-calc(100% - 486px);
        width: calc(100% - 486px);
    }

    .SystemAdvantages ul {
        margin-top: 40px;
        padding: 0px 15px 20px 30px;
        overflow: auto;
        max-height: 346px;
    }

    .SystemAdvantages ul li {
        padding: 30px 30px;
        margin: 0px 0px 20px
    }

    .SystemAdvantages ul li:last-child {
        margin: 0px;
    }

    .SystemAdvantages ul li h3 {
        font-size: 16px;
    }

    .SystemAdvantages ul li .desc {
        font-size: 14px;
        padding-top: 20px;
        line-height: 24px;
    }

    .ServiceAdvantageContent {
        margin-top: 55px;
    }

    .ServiceAdvantageContent .icon {
        top: -55px;
        margin-bottom: -55px;
    }

    .ServiceAdvantageContent .icon img {
        height: 110px;
        width: 110px;
    }

    .ServiceAdvantage {
        margin-top: 40px;
        padding-bottom: 40px;
    }
}

@media (min-width: 1400px) {
    /* .productvaluebox { padding: 120px 0px 100px; } */
    .productvalueTitle {
        font-size: 26px;
        padding-bottom: 10px;
    }

    .productvalue ul li {
        width: 505px;
    }

    .productSolution ul li .productSolutionContent {
        padding: 0px 40px 0px 20px;
    }
}

@media (max-width: 768px) {
    /* 产品价值 start */
    .value-list::after {
        display: none;
    }
    .value-list ul {
        display: flex;
        flex-wrap: wrap;
    }
    .value-list li {
        flex-direction: column-reverse;
        padding: 0;
    }
    .value-list li:nth-child(2n) {
        flex-direction: column-reverse;
    }
    .value-list li .icon-box {
        height: 68px;
        /* line-height: 68px; */
        width: 68px;
        margin: 20px auto;
    }
    .value-list li .inset {
        padding: 0 0 20px;
        margin: 0 auto;
        align-items: flex-start;
    }
    .value-list .inset h3 {
        font-size: 14px;
        text-align: center;
        padding: 0;
    }
    .value-list li .icon-box img {
        width: 44px;
    }
    /* 产品价值 end */

    /* 服务内容 start */
    .service-list {
        padding-bottom: 0;
    }
    .service-list ul {
        flex-wrap:unset;
    }
    .service-list li {
        width: auto;
        height: 35px;
        border-radius: 20px;
        padding: 0 12px;
        margin-right: 10px;
        border: none;
        background: #EBECEF;
    }
    .service-list li.active {
        flex: none;
        box-shadow: none;
        min-width: none;
    }
    .service-list .inset {
        position:static;
        transform: none;
        /* line-height: 35px; */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 100%;
        font-size: 14px;
        line-height: 14px;
    }
    .service-list .inset h3 {
        writing-mode: lr;
        max-width: 100%;
        font-size: 13px;
        max-height: 35px;
        margin: 0;
        min-width: 4em;
    }
    .service-list li.active .inset h3 {
        max-height: 35px;
        margin: 0;
    }
    .service-list li.active .inset p {
        display: none;
    }
    .service-list li .bot-img {
        display: none;
    }
    .service-content {
        display: flex;
        flex-direction: column-reverse;
        padding: 30px;
        background: #FFFFFF;
        border-radius: 8px;
        box-shadow: 0pt 2pt 13pt 0pt #00000019;
        margin-top: 15px;
    }
    .service-content .inset h3 {
        font-size: 20px;
        text-align: center;
        margin: 25px 0 15px;
    }
    .service-content .inset p {
        text-align: center;
        color: #797979;
    }
    .service-content .bot-img {
        width: 50px;
        height: 50px;
        margin: 0 auto;
        border-radius: 50%;
        background: linear-gradient(90deg, #FFAF20 0%, #FE8534 100%);
        text-align: center;
        line-height: 50px;
    }
    .service-content .bot-img img {
        width: 24px;
    }
    /* 服务内容 end */

    /* 解决方案 start */
    .solution-list .bot-img {
        margin: 0 auto;
        padding: 10px;
        border-radius: 50%;
        background: #FFFFFF;
        box-shadow: 0px 2px 13px 0px #00000019;
    }
    .solution-list .bot-img img {
        height: 44px;
        width: 44px;
    }
    .solution-list ul li {
        width: 33.33%;
        padding: 8px;
        min-width: 110px;
    }
    .solution-list ul li.active {
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }
    .solution-list .inset h3 {
        font-size: 14px;
    }
    .solution-list .inset p {
        max-height: 96px;
        font-size: 12px;
        line-height: 18px;
        /* overflow: scroll; */
    }
    /* 解决方案 end */

    /* 数智化运营 start */
    .operate-box {
        padding-left: 0;
        padding-right: 0;
    }
    .operate-list {
        padding: 0;
        overflow: visible;
        width: 80%;
    }
    .operate-list>ul>li,
    .operate-list>ul>li.active {
        height: auto;
        border-radius: 8pt;
        background: #FFFFFF;
        box-shadow: 0pt 2pt 13pt 0pt #00000019;
        border: none;
        padding: 30px;
    }
    .operate-list>ul>li .inset {
        display: none;
    }
    .operate-prev, .operate-next{display: none;}
    .operate-content {display: none;}
    .operate-items-tpl h3 {
        font-size: 15px;
        font-weight: 500;
        line-height: 26px;
        margin-bottom: 10px;
    }
    .operate-items-tpl ul {
        min-height: 105px;
        max-height: 150px;
        overflow-y: scroll;
    }
    .operate-items-tpl ul li {
        margin-bottom: 10px;
        line-height: 24px;
        padding-left: 28px;
        position: relative;
    }
    .operate-items-tpl ul li img {
        height: 14px;
        vertical-align: top;
        position: absolute;
        left: 4px;
        top: 4px;
    }
    .operate-items-tpl .bot-img {
        margin: 10px -15px 0;
    }
    /* 数智化运营 end */

    /* 服务优势 start */
    .advantage-list {
        overflow: visible;
    }
    .advantage-list .swiper-wrapper {
        flex-wrap: wrap;
    }
    .advantage-list ul li {
        border-top: none;
        margin-bottom: 15pt;
        border-radius: 8pt;
        box-shadow: 0pt 2pt 13pt 0pt #00000019;
        height: auto;
        padding: 20px;
    }
    .advantage-list ul li::before,
    .advantage-list ul li::after {
        display: none;
    }
    .advantage-list ul li:hover {
        transform: translateY(0);
    }
    .advantage-list .inset {
        padding: 0;
    }
    .advantage-list .inset h3 {
        text-align: left;
        margin-bottom: 10px;
        padding-left: 30px;
    }
    .advantage-list .inset p {
        line-height: 24px;
        text-align: left;
    }
    .advantage-list .bot-img {
        width: 25px;
        height: 25px;
        position: absolute;
        left: 20;
        top: 20;
        border-radius: 0;
        padding: 0;
        background: transparent;
    }
    /* 服务优势 end */
}