/* 表单布局 */
.search-box {
    width: 100%;
    height: 70px;
    border: 1px solid #ddd;
    background-color: #fff;
    padding: 0 20px;
}

.search-box .search-item{
    flex: 1;
    line-height: 30px;
    font-size: 14px;
    color: #333;
}
.search-box .search-item label {}
.search-box .search-item input{
    border-bottom: 1px solid #ddd;
    padding: 0 10px;
    width: 250px;
    margin: 0 15px;
    height: 31px;
}
.search-box .search-item input::placeholder{
    color: #ccc;
}


/* 下拉搜索 */
.selectBox{
    display: inline-block;
    width: 250px;
    height: 36px;
    line-height: 36px;
    background: #f72323;
    position: relative;
}
.inputCase{
    position: relative;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}
.inputCase input.imitationSelect{
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    border-bottom: 1px solid #ccc;
    display: block;
    cursor: pointer;
    margin: 0;
}
.inputCase .icon{
    position: absolute;
    right: 10px;
    top: 0;
    color: #333;
}
.inputCase .icon i.iconfont{
    display: none;
}
.inputCase .icon:not(.up) i.icon-down{
    display: block;
}
.inputCase .icon.up i.icon-up{
    display: block;
}
.selectUl{
    display: none;
    width: 100%;
    background-color: #fff;
    padding: 0;
    margin: 0;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    position: absolute;
    left: 0;
    top: 45px;
    z-index: 999;
    box-shadow: 0 2px 15px 2px rgba(0,0,0,0.2);
}
.selectUl li{
    height: 40px;
    line-height: 40px;
    list-style: none;
    text-indent: 20px;
    border-bottom: 1px solid #ccc;transition: all .5s ease 0s;

}
.selectUl li:hover , .selectUl li.actived_li{
    background: #dd2925;
    color: #fff;
}
.selectUl li:last-child{
    border-bottom: 0 none;
}

.search-box a {
    display: block;
    color: #fff;
    background-color: #dd2925;
    width: 70px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    cursor: pointer;
}
.search-box a:hover{
    color: #fff;
    background-color: #bc2724;
    text-underline: none;
}


.bidding-table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    border: 1px solid #ddd;
    table-layout: fixed;
}
.bidding-table .bidding-thead {
    background: #f1f1f1;
    font-size: 16px;
    height: 35px;
    border-bottom: 1px #e6e6e6 solid;
}
.bidding-table .bidding-thead th {
    height: 40px;
    font-weight: bold;
    background: #f5f5f5;
    font-size: 14px;
    color: #666;
}
.bidding-table tr td {
    border-bottom: 1px solid #eee;
    height: 50px;
    padding: 0;
    text-align: center;
    font-size: 14px;
    color: #333;
}
.bidding-table tr td .name-td {
    padding: 0 5px;
    display: block;
    color: #333;
    line-height: 50px;
}
.bidding-table tr td .name-td:hover{
    color: #dd2925;
}
.bidding-table tbody tr:hover{background-color: #FFF7F7;}
