body {
    background: white;
}

.location img {
    width: 12px;
    height: 12px;
    display: inline-block;
}

/* 标题 */
.l_title {
    padding-top: 40px;
}

.l_back {
    position: absolute;
    top: 0;
    width: 500px;
    left: 50%;
    transform: translateX(-50%);
}

.l_back img {
    width: 500px;
}

.title {
    text-align: center;
    font-size: 34px;
    position: relative;
    height: 60px;
    margin-top: 40px;
    font-weight: bold;
    position: relative;
}

.title2 {
    color: white;
}

.title2::after {
    background: white;
}

.titletext {
    text-align: center;
    margin-top: 20px;
    line-height: 30px;
    font-size: 20px;
    position: relative;
}

.titletext2 {
    color: white;
}

.case_list {
    box-sizing: border-box;
    padding: 60px 0px;
    position: relative;
    /*border: 1px solid red;*/
/*    overflow: hidden;*/
  }

.case_item {
    border-top: 1px solid #ededed;
    box-sizing: border-box;
    padding: 20px 10px;
    transition: all ease 0.5s;
}

.case_item:hover {
    background: #e6f3ff;
    transform: translateY(-10px);
}

.case_img {
    width: 300px;
    float: left;
    height: fit-content;
}

.case_img img {
    width: 100%;
    height: fit-content;
}

.case_con {
    overflow: hidden;
    box-sizing: border-box;
    padding-left: 20px;
}

.case_name {
    font-weight: bold;
    font-size: 18px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.case_item:hover .case_name {
    color: #1976cf;
}

.case_intro {
    font-size: 14px;
    line-height: 30px;
    color: #666666;
    margin-top: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 90px;
}

.case_more {
    color: #1976cf;
    margin-top: 20px;
    cursor: pointer;
}

.case_more img {
    width: 12px;
    height: 12px;
    display: inline-block;
}

@media screen and (max-width:800px) {
    .case_list{
        box-sizing: border-box;
        padding: 20px 0px;
    }
    .case_img {
        display: none;
    }

    .case_con {

        padding-left: 0px;
    }
}


.pageBar {
    width: 100% !important;
    margin: 30px auto;
    border: 0 solid red;
    position: relative;
}