
/* searchIndex */
.searchIndex{
    display: flex;
    /* justify-content: space-between; */
    align-items: center;
    position: relative;
    height: 90px;
    background: #71838f;
    border-radius: 5px 5px 0 0;
    box-sizing: border-box;
    padding: 0 30px;
}
.searchIndex .search{
    width: 100%;
    height: 45px;
    background: #fff;
    display: flex;
    border-radius: 4px;
    margin-right: 20px;
}
.searchIndex .search input,
.searchIndex .search select{
    flex-grow: 0;
    border: 0;
    padding-left: 15px;
    padding-right: 15px;
    width: 160px;
    font-size: 16px;
}
.searchIndex .search input:hover,
.searchIndex .search input:focus{
    border: 0;
    outline: none;
}
.searchIndex .search input[type='text']{    
    background: url(../images/icon.jpg) no-repeat right center;
}
.searchIndex .search input:first-child{    
    border-radius: 4px 0 0 4px;
}
.searchIndex .search input:nth-child(2){
    flex-grow: 3;
    border-left: solid 1px #e4e4e4;
    border-right: solid 1px #e4e4e4;
    background: #fff;
}

.searchIndex .searchBtn,
.searchIndex .publish{
    cursor: pointer;
    width: 160px;
    height: 45px;
    border: 0;
    color: #fff;
    font-size: 16px;
    padding: 0 25px;
}
.searchIndex .searchBtn{
    flex-grow: 0;
    border-radius: 0 4px 4px 0;
    background: #294d65;
}
.searchIndex .publish{
    border-radius: 4px;
    background: #0a79e8;
}
.searchIndex .searchBg{
    position: absolute;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .4;
}


.listIndex{
    position: relative;
    box-sizing: border-box;
    background: #fff;
    border-radius: 5px;
    padding: 30px 15px;
    margin-top: 20px;
}
.titleIndex{
    font-size: 16px;
    color:#0a79e8;
    text-align: center;
    padding-bottom: 5px;
    text-transform: uppercase;
}
.listIndex .leftBut{
    cursor: pointer;
    position: absolute;
    top: 200px;
    left: 10px;
}
.listIndex .rightBut{
    cursor: pointer;
    position: absolute;
    top: 200px;
    right: 10px;
}
.listCon01{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
}
.listCon01 dl{
    width: 25%;
    box-sizing: border-box;
    padding: 0 15px ;
}
.listCon01 dl dt{
    width: 100%;
    height: 170px;
    overflow: hidden;
    background-color: #eff1f4;
    border-radius: 5px 5px 0 0;
}
.listCon01 dl dt a{
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
    display: flex;
    align-items: center;
}
.listCon01 dl dt img{
    /* min-width: 100%; */
    /* min-height: 100%; */
    height: 100%;
    margin: 0 auto;
}
.listCon01 dl dd{
    height: 80px;
    margin: 0;
    border: 1px solid #f5f7fa;
    border-top: 0;
    border-radius: 0 0 5px 5px;
    padding: 10px 10px;
}
.listCon01 dl dd a{
    display: block;
    /* font-weight: bold; */
    color: #333;
    text-decoration: none;
    padding-bottom: 3px;
    font-size: 14px;
}
.listCon01 dl dd p{
    margin: 0;
    line-height: 1.75em;
}
.listCon01 dl dd p:last-child{
    color: #fea028;
}



.listCon02{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: nowrap;
    margin: 0 35px;
    overflow: hidden;
}
.listCon02 dl{
    width: 33.3333%;
    box-sizing: border-box;
    padding: 0 8px ;
}
.listCon02 dl dt{
    width: 100%;
    height: 240px;
    overflow: hidden;
    border-radius: 5px 5px 0 0;
    border: 1px solid #f5f7fa;
    border-bottom: 0;
}
.listCon02 dl dt a{
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
    display: flex;
    align-items: center;
}
.listCon02 dl dt img{
    /* max-width: 100%; */
    /* max-height: 100%; */
    height: 100%;
    margin: 0 auto;
}
.listCon02 dl dd{
    position: relative;
    height: 70px;
    margin: 0;
    background: #f5f7fa;
    border-radius: 0 0 5px 5px;
    padding: 10px 10px;
}
.listCon02 dl dd .transacfion{
    position: absolute;
    right: 10px;
    bottom: 15px;
    width: 96px;
}
.listCon02 dl dd a{
    display: block;
    /* font-weight: bold; */
    color: #333;
    text-decoration: none;
    padding-bottom: 3px;
    font-size: 14px;
}
.listCon02 dl dd p{
    margin: 0;
    line-height: 1.75em;
}