/* 解决方案列表页 */
body{
    background-color: #f8fafe;
}
/* banner栏 */
.solutionList-banner {
    width: 100%;
    height:45vh;
}

.solutionList-banner img {
    width: 100%;
    height: 100%;
}

/* 面包屑导航 */
.breadcrumb {
    margin: 20px auto;
    display: flex;
    width: 70%;
    font-size: 20px;
}
.breadcrumb a {
    color: #444;
    font-weight: bold;
}
.breadcrumb a:hover {
    color: #1054c8;
    font-weight: bold;
}
.breadcrumb h3 {
    margin:0 10px;
    color: #ccc;
}


/* 解决方案列表 */
.solutionList {
    margin: 20px auto 100px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    width: 65%;
}

.solutionList-item {
    position: relative;
    margin: 15px 8px;
    width: 32%;
    height: 250px;
    box-shadow: 0 1px 1px rgba(97, 108, 121, 0.1), 
    0 7px 18px 0 rgba(97, 108, 121, 0.15);
    transition: all 0.5s;
    z-index: 1111;
}
.solutionList-item:hover {
    cursor: pointer;
    transform: translateY(-10px);
    box-shadow: 0 1px 1px rgba(97, 108, 121, 0.1), 
    0 7px 18px 0 rgba(21, 111, 170, 0.31);
}
/* 背景图片 */
.solutionList-item-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 210px;
}
/* 背景图片遮罩层 */
.solution-mask{
    position: absolute;
    left:0;
    top:0;
    width: 100%;
    line-height: 210px;
    color:#fff;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: all .5s;
}
.solutionList-item:hover .solution-mask {
    opacity: 1;
}

/* 标题 */
.solutionList-item-title {
    position: absolute;
    bottom: 0;
    left:0;
    width:100%;
    line-height: 41px;
    text-align: center;
    color: #444;
    box-sizing: border-box;
    transition: all .3s;
}
.solutionList-item:hover .solutionList-item-title{
    color: #fff;
    background-color: #1054c8;
}
