@charset "UTF-8";

.part .title {
    text-align: center;
    padding: 20px 0;
}

.images-desc {
    display: flex;
}

.images-desc .images {
    width: 520px;
    max-width: 100%;
    margin: 0 auto;
}

.images-desc .image-large {
    display: flex;
    /*height: 350px;*/
    justify-content: start;
    align-content: center;
    overflow: hidden;
}

.images-desc .image-large {
    margin-bottom: 10px;
}
.images-desc .image-large > .item {
    width: 100%;
}
.images-desc .image-large .img-box::before {
    padding-top: 67.3076923%;
}
.images-desc .image-large .item img {
    display: block;
    width: 100%;
    height: 100%;
}

.images-desc .images .image-small {
    position: relative;
    height: 62px;
    overflow: hidden;
}

.images-desc .images .image-small > .item {
    display: inline-block;
}

.images-desc .images .image-small .item img {
    width: 62px;
    height: 40px;
    max-width: 100%;
}

.slick-arrow {
    position: absolute;
    top: 50%;
    width: 20px;
    z-index: 3;
    background: #ffffff;
    border-radius: 50%;
    opacity: 0;
    transition: opacity .3s;
}

@media(min-width: 768px) {
    .slick-arrow.w-50 {
        width: 50px;
    }
}

.slick-arrow.left {
    left: 0;
    transform: translateY(-50%);
}

.slick-slider:hover .slick-arrow {
    opacity: 1;
}

.slick-arrow.right {
    right: 0;
    transform: translateY(-50%) rotate(180deg);
}

.images-desc .images .image-small .slick-current img {
    border: 1px solid #959494;
    box-sizing: border-box;
}

.images-desc .desc {
    flex: 1;
}

.images-desc .desc p {
    line-height: 30px;
    color: #333333;
    padding-left: 60px;
    padding-top: 30px;
}

@media (max-width: 640px) {
    .images-desc {
        flex-direction: column;
    }

    .images-desc .desc p {
        padding: 30px 0;
    }
}

/*产品优势*/
.product-advantage .advantage-item .advantage-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-advantage .advantage-item:nth-child(2n) .advantage-inner {
    flex-direction: row-reverse;
}

.product-advantage .advantage-item:nth-of-type(2n+1) {
    background-color: #f7f8fc;
}

.product-advantage .advantage-item .advantage-item-left {
    width: 50%;
}

.product-advantage .advantage-item .advantage-item-right {
    width: calc(50% - 70px);
    display: flex;
    align-items: center;
}

.product-advantage .advantage-item .advantage-item-left img {
    width: 100%;
}

.product-advantage .advantage-item .advantage-item-right p {
    margin-top: 10px;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .product-advantage .advantage-item .advantage-inner {
        display: block;
    }

    .product-advantage .advantage-item .advantage-item-left {
        width: 100%;
    }

    .product-advantage .advantage-item .advantage-item-right {
        width: 100%;
        margin-top: 30px;
    }
}
/*产品功能*/
.product-func {
    background-image: url("../images/product/func_bg.png");
    background-size: cover;
}
.product-func .func-inner {
    display: flex;
    align-items: center;
}

.product-func .func-inner .func-left {
    width: 290px;
    height: 590px;
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
}
.product-func .func-inner .scroll::-webkit-scrollbar-corner {
  width: 0;
}

.product-func .func-inner .scroll::-webkit-scrollbar {
    width: 2px;
    height: 8px;
    background: transparent;
}

.product-func .func-inner .scroll::-webkit-scrollbar-track {
    background: #E1E1E1;
    border-left: 1px solid rgba(244, 244, 244, 0.14);
}

.product-func .func-inner .scroll::-webkit-scrollbar-thumb {
  border-radius: 2px;
  /*border: 4px solid transparent;*/
  background-clip: content-box;
  background-color: #0039C8;
}


.product-func .func-inner .func-left .func-item {
    width: 267px;
    height: 90px;
    line-height: 90px;
    background: #ffffff;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    box-sizing: border-box;
    position: relative;
    cursor: pointer;
}
.product-func .func-inner .func-left .func-item:not(:last-child) {
    margin-bottom: 10px;
}
.product-func .func-inner .func-left .func-item .name,
.product-func .func-inner .func-left .func-item .no {
    color: #c8c7c7;
    font-weight: bold;
    transition: all .2s ease-in-out .1s;
    line-height: 1.4;
}
.product-func .func-inner .func-left .func-item .no {
    font-style: italic;
}

.product-func .func-inner .func-left .func-item.active .name,
.product-func .func-inner .func-left .func-item.active .no {
    color: #0039C8;
}
.product-func .func-inner .func-right {
    flex: 1;
    margin-left: 30px
}
.product-func .func-inner .func-right .box {
    display: none;
    justify-content: start;
    align-items: center;
    margin-bottom: 45px;
}
.product-func .func-inner .func-right .box.active {
    display: flex;
}
.product-func .func-inner .func-right .name {
    color: #0039C8;
    font-weight: bold;
    line-height: 30px;
    margin: 15px 0 40px;
}
.product-func .func-inner .func-right .desc {
    white-space: break-spaces;
    height: 380px;
    overflow-y: auto;
    padding-right: 10px;
}
.product-func .func-inner .func-right .action {
    text-align: center;
}
.product-func .func-inner .func-right .btn {
    width: 93px;
    height: 39px;
    background: #F2F3F5;
    border-radius: 20px;
    border: 1px solid #333333;
    color: #333333;
    margin: 0 20px;
    font-size: 14px;
    user-select: none;
    transition: all .3s;
    cursor: pointer;
}
.product-func .func-inner .func-right .btn:not(:disabled):hover {
    background: #d6e3fd;
}
.product-func .func-inner .func-right .btn:disabled {
    opacity: .3;
    cursor: no-drop;
}

.product-func .func-inner .func-right .img {
    width: 50%;
    margin: 0 40px 0 40px;
}

@media(max-width: 768px) {
    .product-func .func-inner .func-right .box.active {
        flex-direction: column;
    }
    .product-func .func-inner .func-right .detail {
        padding: 20px 30px 0;
    }
    .product-func .func-inner .func-right .desc {
        max-height: 200px;
    }
}

@media(max-width: 640px) {
    .product-func .func-inner {
        flex-direction: column;
    }
    .product-func .func-inner .func-left {
        display: none;
    }
    .product-func .func-inner .func-right {
        margin-left: 0;
    }
    .product-func .func-inner .func-right .img {
        width: 100%;
        margin: 0;
    }
    .product-func .func-inner .func-right .detail {
        padding: 20px 0;
    }
}

/*客户案例|应用场景*/
.js-slick-com:not(.slick-slider) {
    display: flex;
    overflow: hidden;
}
.js-slick-com:not(.slick-slider) .slick-com-item {
    flex: 0 0 520px;
}
.slick-com-item .slick-com-inner {
    margin: 14px;
    box-sizing: border-box;
    /*border: 1px solid #eee;*/
}
.slick-com-item .img-box:before {
    padding-top: 56.1538461538%;
}
.slick-com-item .slick-title {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    text-align: center;
    padding: 10px;
}
.product-scene {
    background-image: url("../images/product/scene_bg.png");
    background-size: cover;
}

/*锚点*/
.anchor-outer {
    height: 60px;
}
.anchor-wrap {
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: #fff;
    z-index: 99;
    transition: all .3s;
    overflow-x: auto;
}
.anchor-wrap.fixed {
    position: fixed;
    border-bottom: 1px solid #ddd;
}
.fixed-menu:not(.hide-menu) .anchor-wrap {
    top: 60px;
}
.anchor-box {
    display: flex;
    justify-content: space-between;
    line-height: 60px;
}
.anchor-box .anchor-item {
    flex: 1;
    text-align: center;
    white-space: nowrap;
    min-width: 5em;
    cursor: pointer;
}
.anchor-box .anchor-item:hover,
.anchor-box .anchor-item.active {
    color: #0A15FC;
}