/* 解决方案 */
.page-solution-cont {
    max-width: 1200px;
    margin: 0 auto;
    font-size: 18px;
    color: #666;
    padding-bottom: 40px;
    box-sizing: border-box;
    padding: 0 20px;
}

.recommend-cont {
    display: flex;
    width: 1200px;
    margin: 0 auto;
    justify-content: space-between;
}

.recommend-box {
    background-color: #fafafa;
    /* height: 556px; */
    padding-top: 60px;
    box-sizing: border-box;
    max-width: 1200px;
    margin: 0 auto;
}

.recommend-item {
    border-radius: 4px;
    width: 370px;
    height: 300px;
    overflow: hidden;
    position: relative;
    /* margin-right: 30px; */
    margin-bottom: 30px;
    cursor: pointer;
}

.recommend-item img {
    width: 100%;
    transition: all .8s ease .1s;
}

.recommend-item .recommend-masking {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

.recommend-info {
    color: #fff;
    font-size: 14px;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    padding: 50px 40px;
    box-sizing: border-box;
}

.recommend-item:hover .recommend-info-check {
    background-color: #fff;
    color: #54487D;
}

.recommend-item:hover .recommend-info-check .icon-more {
    border-left-color: #54487D;
}

.recommend-item:hover img {
    /* animation: recommendImgChange 1s linear 0s 1 forwards; */
    transform: scale(1.3);
}

.recommend-info .recommend-info-title {
    font-size: 24px;
}

.recommend-info .recommend-info-msg {
    margin: 20px 0;
}

.recommend-info .recommend-info-tag {
    display: flex;
}

.recommend-info .recommend-info-tag span {
    height: 22px;
    line-height: 22px;
    padding: 0 10px;
    background-color: rgba(255, 255, 255, 0.25);
    border-radius: 2px;
    margin-right: 10px;
}

.recommend-info .recommend-info-check {
    position: absolute;
    left: 40px;
    bottom: 40px;
    width: 116px;
    height: 46px;
    border: 1px solid #fff;
    text-align: center;
    line-height: 46px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

.recommend-info .recommend-info-check .icon-more {
    display: inline-block;
    width: 0;
    height: 0;
    border: 6px solid;
    border-right-width: 0;
    box-sizing: border-box;
    border-color: transparent transparent transparent #fff;
    margin-left: 10px;
}

.recommend-cont .recommend-item:first-child .recommend-masking {
    background-image: linear-gradient(226deg, rgba(123, 121, 233, 0.89) 0%, #1BB0DE 100%);
}

.recommend-cont .recommend-item:nth-child(2) .recommend-masking {
    background-image: linear-gradient(225deg, #FF9900 0%, #000000 100%);
}

.recommend-cont .recommend-item:nth-child(3) .recommend-masking {
    background-image: linear-gradient(225deg, #17AFA1 0%, #09549A 100%);
}


/* 案例 */
.page-case-cont {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    color: #666;
    font-size: 18px;
    padding: 20px 0 40px;
}

.case-article {
    width: 870px;
    margin-right: 30px;
}

.case-aside {
    width: 300px;
    max-height: 625px;
    padding: 20px;
    box-sizing: border-box;
    background-color: #F7F7F7;
    border-radius: 6px;
}

@keyframes fadenum {

    /*设置内容由显示变为隐藏*/
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

.case-aside-cont {
    display: flex;
    flex-direction: column;
    margin-top: 25px;
}

.case-aside-cont .case-aside-item.active .effect {
    display: block;
}

.case-aside-cont .case-aside-item.active .normal {
    display: none;
}

.case-aside-cont .case-aside-item .effect {
    display: none;
    width: 260px;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    /* transition: all 1.2s ease .1s; */
    animation: fadenum 0.8s;
}

.case-aside-cont .case-aside-item .effect img {
    width: 100%;
}

.case-aside-cont .case-aside-item .effect .text {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.85);
    height: 50px;
    color: #fff;
    font-size: 16px;
    padding-left: 20px;
    line-height: 50px;
}

.case-aside-cont .case-aside-item .normal {
    font-size: 16px;
    color: #666;
    padding-left: 20px;
    position: relative;
    height: 56px;
    line-height: 56px;
    border-bottom: 1px solid #EBEBEB;
}

.case-aside-cont .case-aside-item .normal::after {
    position: absolute;
    left: 0;
    top: 25px;
    content: '';
    width: 6px;
    height: 6px;
    background-color: #959595;
    border-radius: 50%;
}

/* 产品 */
.page-product-cont {
    display: flex;
    width: 1200px;
    margin: 0 auto;
    background-color: #fafafa;
    padding: 10px 10px 20px 0;
    box-sizing: border-box;
}

.page-product-cont .product-aside {
    width: 260px;
    border-right: 3px solid #D70A30;
    color: #363636;
}

.page-product-cont .product-article {
    flex: 1;
    padding-left: 40px;
    padding-bottom: 30px;
    background-color: #fff;
}

.page-product-cont .product-aside .product-item {
    height: 60px;
    line-height: 60px;
    padding-left: 30px;
    position: relative;
    cursor: pointer;
    display: block;
}

.page-product-cont .product-aside .product-item::after {
    position: absolute;
    left: 0;
    top: 20px;
    content: '';
    width: 4px;
    height: 20px;
    background-color: transparent;
}

.page-product-cont .product-aside .product-item:hover,
.page-product-cont .product-aside .product-item.active {
    color: #D70A30;
}

.page-product-cont .product-aside .product-item:hover::after,
.page-product-cont .product-aside .product-item.active::after {
    background-color: #D70A30;
}

.product-cont-item {
    padding-top: 20px;
    box-sizing: border-box;
}

.product-cont-item h2 {
    font-size: 18px;
    color: #363636;
    height: 50px;
    line-height: 50px;
    border-bottom: 1px solid #EEEEEE;
}

.product-cont-item .product-info {
    padding: 15px;
    color: #666666;
    line-height: 30px;
    height: 100%;
    box-sizing: border-box;
    background-color: #FCFCFC;
    padding-bottom: 30px;

}

.page-back .left {
    display: flex;
    align-items: center;

}

.page-back .left .small-logo {
    width: 40px;
    height: 40px;
    margin-right: 15px;
}

.page-back .left .case-name {
    display: flex;
    align-items: center;
    margin-left: 15px;
}

.page-back .left .tit {
    font-weight: 500;
    font-size: 24px;
    color: #363636;
}

#detailCont {
    width: 100%;
    min-height: 600px;
}

#detailCont .no-data-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    min-height: 600px;
}

#detailCont .no-data {
    display: flex;
    width: 40%;

}

#detailCont .detail-img {
    width: 100%;
    display: block;
}

.prev-next {
    display: flex;
    justify-content: space-between;
    margin: 30px auto 20px;
    cursor: pointer;
}

.prev-next .next-box,
.prev-next .prev-box {
    cursor: pointer;
    font-size: 14px;
    color: #666666;

}

.prev-next .next-box:hover a,
.prev-next .prev-box:hover a {
    color: #D70A30;
    text-decoration: underline;
}