/* 搜索框 */

.screen {
    margin-top: 3%;
    padding: 3% 2%;
    background-color: #fff;
}

.screen_input {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    border: 1px solid #f5f5f5;
    padding-left: 6px;
}

.screen_input input {
    border: 0;
    line-height: 2rem;
    height: 2rem;
    width: 84%;
    outline: none;
    font-size: 0.8rem;
}

.screen_input .s_i_button {
    width: 16%;
    background: red;
    color: #fff;
    font-size: 1rem;
}


/* 案例详情 */

.case {
    background-color: #fff;
}

.case_top {
    position: relative;
    text-align: center;
    border-top: 1px solid #d6d6d6;
    border-bottom: 1px solid #d6d6d6;
}

.c_top_box {
    width: 33.33%;
    float: left;
    line-height: 2.5rem;
    height: 2.5rem;
    cursor: pointer;
}

.c_top_active {
    color: red;
}

.case_content {
    position: absolute;
    left: 0;
    width: 100%;
    background-color: #fff;
    padding-bottom: 3%;
    display: none;
    z-index: 20;
}

.c_content_box {
    float: left;
    margin-top: 3%;
    margin-left: 6.25%;
    width: 25%;
    text-align: center;
    height: 2.3rem;
    line-height: 2.3rem;
    background: #f2f2f2;
    font-size: .8rem;
    color: #666;
    border-radius: .5rem;
}

.c_content_active {
    background: #da1a00;
    color: #fff;
}


/* 案例展示 */
.case_show {
    padding: 3% 5% 3% 5%;
}

.case_show .cate {
    text-align: center;

}

.case_show .cate a {
    display: inline-block;
    width: 30%;
    text-align: center;
    line-height: 2;
    margin-bottom: 1rem;
    background: #01b4f0;
    color: white;
    border-radius: 0.2rem;
}

/*列表*/
.case_show .content {
    padding: 1rem 0 3rem 0;
}

.case_show .content ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.case_show .content li {
    display: block;
    margin-bottom: 3%;
    width: 49%;
}

.case_show .content li a {
    position: relative;
    display: block;
}

.case_show .title {
    padding: 2% 0;
    text-align: center;
}

.case_show .title span {
    display: inline-block;
    position: relative;
    margin-bottom: 1%;
    font-size: 1.4rem;
    font-weight: bold;
    color: #333;
}


.c_show_box {
    overflow: hidden;
}

.c_show_box img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}


.c_show_text {
    width: 100%;
    line-height: 2.2rem;
    height: 2.2rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: black;
    box-shadow: 1px 1px 15px #cdcccc;
}

.c_show_text h4 {
    width: 100%;
    padding: 0px 10px;
    text-align: center;
    display: inline-block;
}


