body {
    background: #eceef5;
}

.container-hycx {
    width: 1280px;
    margin: 0px auto 15px auto;
    background: #FFFFFF;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    padding: 25px;
}

.flex-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.flex-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.junstfy-content-between {
    justify-content: space-between;
}

.junstfy-content-flex-start {
    justify-content: flex-start;
}
.junstfy-content-flex-center {
    justify-content: center;
}

.junstfy-content-flex-end {
    justify-content: flex-end;
}

.align-items-center {
    align-items: center;
}

.align-items-flex-start {
    align-items: flex-start;
}

.align-items-flex-end {
    align-items: flex-end;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-1 {
    flex: 1;
}

.box-sizing {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

/*文字超出省略号*/
.text-overflow {
    overflow: hidden;
    /* 文字用省略号代替超出的部分 */
    text-overflow: ellipsis;
    /* 匀速溢出内容，隐藏 */
    white-space: nowrap;
}

/**/
.search-box {
    width: 100%;
    min-height: 400px;
    margin: 0px auto;
    height: auto;
    _height: auto;
    overflow: hidden;
    zoom: 1;
    background: #fff;
    box-shadow: 0px 0px 10px rgba(0,0,0,.2);
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;

}
.search-box-mid {
    width: 1000px;
    margin-top: 50px;
}

.search-box-mid .layui-btn {
    background: var(--lyj-primary-color);
    color: white;
    border: 0px;
    padding-left: 35px;
    padding-right: 35px;
}

.search-content {
    width: 1000px;
    min-height: 100px;
    margin: 50px auto 20px auto;
    height: auto;
    _height: auto;
    overflow: hidden;
    zoom: 1;
    background: #fafafa;
}

.search-content-title {
    width: 950px;
    height: 50px;
    border-bottom: 1px solid #bcbcbc;
    margin: 15px auto auto auto;
}


.search-content-title h2 {
    width: 100px;
    text-align: left;
    line-height: 47px;
    border-bottom: 3px solid var(--lyj-primary-color);
    font-size: 20px;
    color: #323232;
}
.search-content-list {
    width: 950px;
    min-height: 100px;
    margin: 20px auto 30px;
    height: auto;
    _height: auto;
    overflow: hidden;
    zoom: 1;
}

.search-content-list ul li {
    width: 33.3%;
    line-height: 30px;
    float: left;
}

.search-content-list ul li a {
    font-size: 14px;
    color: #5c5c5c;
}