﻿@charset "utf-8";

/* header */
.header {
    background: #F7F9FA;
}

body {
    background: #F7F9FA;
}

/* pro top*/
.pro_top_box {
    position: relative;
    background-color: #F7F9FA;
    background-image: url(../images/pro_bg_icon.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    overflow: hidden;
}

.solution_cont {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 45px;
    overflow: hidden;
}

.solution_cont .solu_left {
    width: 256px;
}

.solu_left .in_a_tab {
    position: relative;
}

.solu_left .in_a_tab::before {
    content: "";
    position: absolute;
    left: 0;
    height: 100%;
    width: 1px;
    background-color: rgba(0, 0, 0, 0.20);
}

.solu_left .in_a_tab .li {
    position: relative;
    display: block;
    padding-left: 16px;
    margin-bottom: 30px;
}

.solu_left .in_a_tab .li .a {
    cursor: pointer;
}

.solu_left .in_a_tab .li:last-child {
    margin-bottom: 0;
}

.solu_left .in_a_tab .li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 0;
    background-color: var(--main-color);
    transition: height .4s;
}

.solu_left .in_a_tab .t {
    color: var(--dark-color);
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
}

.solu_left .in_a_tab .des {
    margin-top: 4px;
    color: #666;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

.solu_left .in_a_tab .li .des,
.solu_left .in_a_tab .li .icon {
    display: none;
}

.solu_left .in_a_tab .li .icon {
    padding-top: 8px;
}
.solu_left .in_a_tab .li:hover .t,
.solu_left .in_a_tab .li.active .t {
    color: var(--main-color);
}

.solu_left .in_a_tab .li.active .des {
    display: block;
}

.solu_left .in_a_tab .li.active .icon {
    display: block;
}

.solu_left .in_a_tab .li.active::before {
    height: 100%;
}

.solution_cont .tab_box {
    flex: 1;
    padding-left: 60px;

}

.solution_cont .tab_box .pub-t1 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    /* display: none;
    opacity: 0; */
}

.solution_cont .tab_box .pub-t1.d-show {
    /* display: inline-block;
    opacity: 1; */
}

.solution_cont .solu_mid {
    float: left;

    width: calc(100% - 266px);
    padding-top: 25px;

    padding-right: 60px;
    height: 100%;
    min-height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;

}

.solution_cont .solu_right {
    width: 266px;
    float: right;
}

.solution_cont .solu_right .t {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 16px;
    border-bottom: 1px solid #A4A5A5;
}

.solution_cont .solu_right .t strong {
    color: var(--dark-color);
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
}

.solution_cont .solu_right .t span {
    color: #999;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.solution_cont .solu_right .t span em {
    font-style: normal;
    font-family: 'Poppins';
}

.solu_right .solu_more {
    padding-top: 16px;
    border-top: 1px solid #A4A5A5;

}

.solu_right .solu_more a {
    display: flex;
    justify-content: space-between;
    color: #666;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.solu_right .solu_more a:hover {
    color: var(--main-color);
}

.solu_right .solu_more a:hover i svg path {
    stroke: var(--main-color);
}

.solu_right .solu_r_tab {
    padding: 24px 0;
}

.solu_right .solu_r_tab .solu_r_name {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    cursor: pointer;
}

.solu_right .solu_r_tab .solu_r_name:last-child {
    margin-bottom: 0;
}

.solu_right .solu_r_tab .solu_r_name span {
    padding-left: 22px;
    position: relative;
    color: #666;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

.solu_right .solu_r_tab .solu_r_name span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background-color: rgba(0, 0, 0, 0.20);
    border-radius: 50%;

}

.solu_right .solu_r_tab .solu_r_name em {
    opacity: 0;
    position: relative;
    width: 20px;
    height: 20px;
    display: block;
}

.solu_right .solu_r_tab .solu_r_name em img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 0;

    transition: width .3s;
}

.solu_right .solu_r_tab .solu_r_name.active span {
    color: var(--main-color);
}

.solu_right .solu_r_tab .solu_r_name.active span::before {
    background-color: var(--main-color);
}

.solu_right .solu_r_tab .solu_r_name.active em {
    opacity: 1;
}

.solu_right .solu_r_tab .solu_r_name.active em img {
    width: 100%;
}

.product_thumb {
    position: relative;
    padding: 20px;
}

/* 产品标点 */
.solution_cont .solu_mid .sign {
    position: absolute;
    color: #666;
    width: 20px;
    height: 20px;
}

.solution_cont .solu_mid .sign.on .hover_cicle {
    opacity: 1;
}

.solution_cont .solu_mid .sign.on .odd_cicle {
    opacity: 0;
}

.solution_cont .solu_mid .sign .odd_cicle {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.solution_cont .solu_mid .sign .odd_cicle i {
    position: relative;
    width: 8px;
    height: 8px;
    display: block;
    background-color: var(--main-color);
    border-radius: 50%;
}

.solution_cont .solu_mid .sign .odd_cicle i:before {
    animation-delay: .6s;
}

.solution_cont .solu_mid .sign .odd_cicle i::before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    background: rgba(0, 177, 232, 0.4);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: aboutbjRing 3s linear infinite;
    opacity: 0;
}

@keyframes aboutbjRing {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.2)
    }

    5% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate(-50%, -50%) scale(2.6)
    }

}

.hover_cicle {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all .3s;
    z-index: -1;
}

.hover_cicle i {
    position: relative;
    display: block;
    width: 0;
    height: 0;
    background-color: var(--main-color);
    border-radius: 50%;
    background-image: url(../images/pro_lable_jia.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 24px 24px;
    opacity: 0;
    transition: all .5s;
}

.hover_cicle i::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid var(--main-color);
    border-radius: 50%;
    width: 160%;
    height: 160%;
}

.hover_cicle .line {
    position: absolute;
    right: 80px;
    top: 50%;
    transform: translateY(-50%);
    padding: 24px;
    width: 270px;
    border-radius: 4px;
    background: var(--white-color);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.10);
    opacity: 0;
    z-index: -100;
}

.hover_cicle .line::before {
    content: "";
    position: absolute;
    right: -9px;
    top: 50%;
    transform: translateY(-50%);
    width: 9px;
    height: 18px;
    background-image: url(../images/pro_jt_icon.svg);
    background-repeat: no-repeat;
}

.hover_cicle .line .small_pic {

    margin-top: 16px;
    display: inline-block;
    border-radius: 4px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-color: #B8B8B8;
    overflow: hidden;
}

.hover_cicle .line .t {
    display: block;
    color: var(--dark-color);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    font-weight: 700;
    background-image: url(../images/pro_jt_icon2.svg);
    background-repeat: no-repeat;
    background-size: 20px 20px;
    background-position: right 4px;
}
.hover_cicle .line .t:hover {
    background-image: url(../images/in_so_more_blue.svg);
}
.hover_cicle .line .des {
    padding-top: 8px;

    color: #666;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
   
}
.solution_cont .solu_mid .sign.on .hover_cicle i {
    width: 46px;
    height: 46px;
    opacity: 1;
}
.solution_cont .solu_mid .sign.on .hover_cicle{
    z-index: 7;

}
.solution_cont .solu_mid .sign.on .hover_cicle .line {
    z-index: 7;
    opacity: 1;
    /* 板层是进行过滤的组件 */
}
.pro_pic {
    display: block;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;

}
/* 第一个产品标点 */

.product_0 .sign01 {
    left: 45.2%;
    top: 40.4%;
}

.product_0 .sign02 {
    left: 33.4%;
    top: 34.2%;
}

.product_0 .sign03 {
    left: 42.9%;
    top: 29.4%;
}

.product_0 .sign04 {
    left: 30.9%;
    top: 52%;
}

.product_0 .sign05 {
    right: 37.8%;
    top: 16.9%;

}

.product_0 .sign06 {
    left: 57.8%;
    top: 67.8%;

}

@media (max-width:1440px) {

    .solution_cont .solu_mid .sign.on .hover_cicle i {
        width: 40px;
        height: 40px;
    }

    .hover_cicle .line {
        right: 70px;
    }

}

@media (max-width:1366px) {
    .solution_cont .tab_box {
        padding-left: 30px;
    }

    .solution_cont .solu_mid {
        padding-right: 20px;
    }

    .solution_cont .solu_mid .sign.on .hover_cicle i {
        width: 30px;
        height: 30px;
    }

    .hover_cicle .line {
        right: 50px;
    }

    .solution_cont .solu_mid {
        width: calc(100% - 200px);
    }

    .solution_cont .solu_right {
        width: 200px;
        /* padding-top: 78px; */
    }

    .product_thumb {
        padding: 0;
    }

}
@media (max-width:1300px) {
    .pro_pic{
        width: 120%;
    }

}
@media (max-width:1279px) {
    .hover_cicle .line {
        width: 200px;
        padding: 20px;
        padding-right: 80px;
    }
    .hover_cicle .line .t {
        display: block;
        color: var(--dark-color);
        font-size: 17px;
        font-style: normal;
        font-weight: 400;
        line-height: 28px;
        font-weight: 700;
        position: relative;
      background:none ;
    }
    .hover_cicle .line .t:hover{
        background:none ;
    } 
    .hover_cicle .line .t:hover::after {
        background-image: url(../images/in_so_more_blue.svg)
        
    }

    .hover_cicle .line .t::after {
        content: "";
        position: absolute;
        width: 20px;
        height: 20px;
        background-image: url(../images/pro_jt_icon2.svg);
        background-repeat: no-repeat;
        background-size: 20px 20px;
        right: -30px;
    }


}
@media (max-width:991px) {
  
    .solution_cont {
        flex-wrap: wrap;
    }
    .solution_cont .solu_left {
        width: 100%;
        padding-top: 30px;
    }
    .solu_left .in_a_tab::before {
        display: none;
    }
    .solu_left .in_a_tab .li {
        width: auto;
        margin-bottom: 0;
        margin-right: 20px;
    }
    .solu_left .in_a_tab .des {
        display: none !important;
    }
    .solution_cont .solu_mid {
        width: 100%;
        padding-right: 0;
        min-height: auto;
    }
    .solution_cont .solu_right {
        width: 100%;
        padding-top: 20px;
    }
    .solution_cont .tab_box {
        padding-left: 0;
    }
    .solution_cont .tab_box .pub-t1 {
        flex-wrap: wrap;
    }

}

@media (max-width:767px) {
    
    .hover_cicle .line {
        display: none !important;
    }
    .solution_cont {
        padding-bottom: 30px;
    }
    .solution_cont .solu_mid .sign.on .hover_cicle i {
        width: 20px;
        height: 20px;
        background-size: 16px 16px;
    }
    .solu_right .solu_r_tab ul{
        display: flex;
        flex-wrap: wrap;
        align-items: stretch;
        margin-left: -15px;
        margin-right: -15px;
    }
    .solu_right .solu_r_tab .solu_r_name {
        width: 50%;
        padding: 0 15px;
        margin-bottom: 15px !important;
        align-items: center;
    }
    .solu_right .solu_r_tab {
        padding-bottom: 0;
    }
}


/* pro bottom */
.solu_title {
    padding-top: 10px;
    color: var(--dark-color);
    text-align: center;
    font-weight: 400;
    line-height: 1.5;
}

.product_bottom {
    padding-top: 70px;
    background-color: var(--white-color);
    overflow: hidden;
}

.pro_bottom_t {
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}

.pro_bottom_t .big_t {
    color: var(--dark-color);
    font-weight: 400;
}

.pro_bottom_t .solu_search form {
    background: #F7F9FA;
}

.pro_bottom_t .solu_search .solu_input {
    background-color: transparent;
}

.pro_bottom_t .solu_search .solu_button {
    background-color: var(--white-color);
}
@media (max-width:991px) {

.solu_title {
    padding-top: 30px;
}
}
@media (max-width:767px) {
    .product_bottom {
        padding-top: 50px;
    }

}
