
body {
    background-color: #FFFFFF;
}

img {
    max-width: 100%;
}



/*===用户痛点===*/
.user-pain-points{
    padding-top:4rem !important;
    padding-bottom:5rem !important;
}
.down-icon{
    width:24px;
    display:block;
    margin:0 auto;
    text-align:center;
    margin-top:15px;
}

.pain-points-list {
    width: 100%;
}

.pain-points-list ul{
    display: flex;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
}

.pain-points-list li{
    flex: 1;
    width: 1px;
    height:160px;
    border-radius:5px;
    background-image: linear-gradient(0deg,#fff,#f3f5f8);
    border: 2px solid #fff;
    box-shadow: 8px 8px 20px 0 rgba(55,99,170,.1);
    padding:20px 0px;
    margin-right:30px;
    text-align:center
}
.pain-points-list li:hover{
    box-shadow: 5px 5px 20px 0 rgba(55,99,170,.2);
    background-image: linear-gradient(0deg,#f3f5f8,#fff);
    transition: all .5s ease;
}
.pain-points-list li:last-child {
    margin-right: 0;
}
.pain-points-list li img{
    width:70px;
    margin-bottom:8px;
}
.pain-points-list li p{
    font-size:16px;
    padding:0 25px;
}

/*===智能升级化信息价库===*/
.produce-bg {
    width: 100%;
    height: auto;
    overflow: hidden;
    padding-top: 4rem;
    padding-bottom: 4rem;
    background-image: url(../Images/Produce/analysis-bg.jpg);
    background-size: cover !important;
    background-position: 50% !important;
}
.produce-left{
    width:46%;
    float:left;
    border:#fff solid 2px;
    border-radius:8px;
    overflow:hidden;
    box-shadow: 0px 4px 10px  rgba(55, 99, 170, 0.15);
}
.produce-right{
    width:52%;
    float:right;
    padding-top:1rem;
}

.produce-right ul{
    display: flex;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
}

.produce-right li{
    flex: 40%;
    width: 1px;
    border-radius:5px;
    padding:20px 25px;
    margin-right:20px;
}
.produce-right li:last-child {
    margin-right: 0;
}
.produce-right li img{
    width:24px;
    float:left
}
.produce-right li p{
    padding-left:40px;
    margin-bottom:0
}
.produce-right li p span{
    font-weight:bold;
    display:block;
    margin-bottom:8px;
    font-size:16px;
}
.produce-right li p i {
    font-style: normal;
    color: rgba(64,71,92,0.7);
    font-size:14px;
}

/*===云建信息价库功能解析===*/
.analysis-box,.analysis-box-bg {
    padding-top: 4rem;
    padding-bottom: 4rem;
    overflow: hidden
}
.analysis-left{
    width:49%;
    float:left;
}
.analysis-title{
    height:40px;
    line-height:40px;
    font-weight:bold;
    position:relative;
    font-size:18px;
    padding-left:15px;
    margin-bottom:10px;
}
.analysis-title::after{
    width:4px;
    height:20px;
    content:"";
    position:absolute;
    left:0;
    top:10px;
    background:#1D78FF
}
.analysis-img {
    width:100%;
    border-radius:8px;
    border: 2px solid rgba(255, 255, 255, 1);
    box-shadow: 0px 4px 10px  rgba(55, 99, 170, 0.15);
}

.analysis-tag-list{
    width:100%;
    padding-top:30px;
}

.analysis-tag-list ul{
    display: flex;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
}

.analysis-tag-list li{
    flex: 1;
    width: 1px;
    height:130px;
    border-radius:5px;
    background-image: linear-gradient(0deg,#fff,#f3f5f8);
    border: 2px solid #fff;
    box-shadow: 5px 5px 20px 0 rgba(55,99,170,.1);
    padding:15px 0px;
    margin-right:30px;
    text-align:center
}
.analysis-tag-list li:hover {
    box-shadow: 5px 5px 20px 0 rgba(55,99,170,.2);
    background-image: linear-gradient(0deg,#f3f5f8,#fff);
    transition: all .5s ease;
}
.analysis-tag-list li:last-child {
    margin-right: 0;
}
.analysis-tag-list li img{
    width:70px;
    margin-bottom:5px;
}
.analysis-tag-list li p{
    font-size:16px;
    color: rgba(29, 120, 255, 1);
}
.analysis-right{
    float:right
}
.analysis-box-bg{
    background:#F5F7FA
}

/*===典型案例===*/
.cases-box{
    padding-top:4rem
}
.cases-list{
    padding:8px;
    overflow:hidden
}
.cases-list li{
    width: 18.4%;
    height: 170px;
    float: left;
    margin-right: 2%;
    margin-bottom:20px;
    border-radius: 5px;
    box-shadow: 0px 2px 10px rgba(55, 99, 170, 0.1);
    transition: all .5s ease;
}
.cases-list li:hover {
    box-shadow: 0px 2px 10px rgba(55, 99, 170, 0.3);
    transition: all .5s ease;
}
.cases-list li:nth-of-type(5n){
    margin-right:0
}
.cases-list li p{
    width:80%;
    margin:0 auto;
    height:105px;
    display:flex;
    justify-content:center;
    align-items:center;
}
.cases-list li p img{
    max-width:80%;
    max-height:60px;
}
.cases-list li span{
    width:100%;
    padding:0 20px;
    display:block;
    height:55px;
    line-height:55px;
    text-align:center;
    overflow:hidden;
    white-space:nowrap;
    text-overflow:ellipsis;
    border-top: 1px solid rgba(167, 203, 250, 0.5);
}
/*===适配手机端===*/
@media (min-width:320px) and (max-width:768px) {

    .user-pain-points{
        padding-top:2rem !important;
        padding-bottom:2rem !important
    }
    .pain-points-list li{
        flex:48%;
        height:190px;
        margin-right:10px;
        margin-bottom:10px;
        box-shadow: 3px 3px 20px 0 rgba(55,99,170,.1);
    }
    .pain-points-list li:nth-of-type(even){   
        margin-right:0
    }
    .produce-bg{
        background-repeat: no-repeat;
        background-size: cover !important;
        background-position: 50% !important;
        padding-bottom:1rem
    }
    .produce-left {
        width: 100%;
    }
    .produce-right{
        width:100%;
    }
    .produce-right li{
        flex:100%;
        padding: 10px 0px;
        margin-right:0
    }
    .analysis-left{
        width:100%
    }
    .analysis-tag-list li{
        margin-right:10px
    }
    .analysis-right {
        margin-top: 15px;
    }
    .analysis-box, .analysis-box-bg{
        padding-top: 2rem;
        padding-bottom: 2rem
    }
    .analysis-li-tag li {
        flex: 46%;
        margin-bottom:10px;
    }
    .analysis-li-tag li:nth-of-type(even) {
        margin-right: 0
    }
    .cases-box{
        padding-top:2rem;
    }
   .cases-list li{
        width:48%;
        margin-right:0
    }
     .cases-list li:nth-of-type(2n){
        margin-right:0;
        float:right
    }
     .cases-list li span{
         display:flex;
         justify-content:center;
         align-items:center;
         line-height:18px;
         white-space:inherit;
         padding:0 10px;
     }
}

@media (min-width:769px) and (max-width:1080px) {
    .ny-banner{
        padding-bottom:30%
    }
    .pain-points-list li {
        height: auto;
        margin-right: 15px;
        flex:40%;
        margin-bottom:1rem
    }
    .produce-right{
        padding-top:0
    }
    .produce-right li {
        padding: 10px 25px;
    }
}

@media (min-width:769px) and (max-width:1440px) {
    .produce-right {
        padding-top: 0
    }
    .pain-points-list li {
        height: auto;
        margin-right:15px;
    }
}