/* 解决方案-详情页面 */

/* banner栏 */
.solutionSub-banner {
    width: 100%;
    height:45vh;
}

.solutionSub-banner img {
    width: 100%;
    height: 100%;
}

/* 解决方案列表 */

/* 面包屑导航 */
.breadcrumb {
    margin:30px 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;
}

.solution-name{
    color:#999;
}
/* 解决方案 */
.solution-tab {
    margin: 0px auto 50px;
    padding: 20px;
    display: flex;
    width: 65%;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

.solution-list {
    display: flex;
    flex-direction: column;
    width: 25%;
}

.solution-item {
    margin: 10px;
    text-align: center;
    line-height: 50px;
    background: #e3ebfe;
    border-radius: 10px;
}
.solution-item:hover {
    background-color: #1054c8;
    /* display: block; */
    color: #fff;
}

.selected {
    background-color: #1054c8;
    /* display: block; */
    color: #fff;
}

.tab_box {
    margin:20px;
    flex-grow: 1;
    border: 1px solid #eee;
    /* display: block;  */
    padding: 20px;
}

.hide {
    /* display: none; */
}