@charset "utf-8";
/* 全局统一样式 */
body {
    font-size: 15px!important;
    font-weight: normal!important;
    background-color: #eee;
    color: #333;
    margin: 0;
}

input, textarea, select{
    outline: none;
}

h1, .h1 {
    font-size: 21px;
    line-height: 180%;
    font-weight: bold!important;
}
h2, .h2 {
    font-size: 19px;
    line-height: 180%;
    font-weight: bold!important;
}
h3, .h3 {
    font-size: 17px;
    line-height: 180%;
    font-weight: bold!important;
}
h4, .h4 {
    font-size: 15px;
    line-height: 180%;
    font-weight: bold!important;
}

ul {
    margin: 0;
    padding: 0;
    list-style-type:none;
}

p {
    margin-top:5px!important;
    margin-bottom:5px!important;
    line-height: 200%;
}

input[type="text"], input[type="password"] {
    line-height: 24px;
}

select {
    height:30px!important;
    line-height:140%!important;
}

textarea{
    resize: none;
}

/* 超链接样式 */
.text_link:link, .text_link:visited{
    color: #01AAED;
    text-decoration: none;
}
.text_link:hover {
    color: #FFB800;
    text-decoration: none;
}
.link_btn:link{
    color: #fff;
}

/* 各种间距和空行 */
.mt5{
    margin-top: 5px;
}
.mt10{
    margin-top: 10px;
}
.mt15{
    margin-top: 10px;
}
.mt20{
    margin-top: 20px;
}
.mb5{
    margin-bottom: 5px;
}
.mb10{
    margin-bottom: 10px;
}
.mb15{
    margin-bottom: 10px;
}
.mb20{
    margin-bottom: 20px;
}
.ml5{
    margin-left: 5px;
}
.ml10{
    margin-left: 10px;
}
.ml15{
    margin-left: 10px;
}
.ml20{
    margin-left: 20px;
}
.cl_red{
    color: #f00;
}
.cl_blue{
    color: #00f;
}
.cl_gray{
    color: #999;
}
.cl_orange{
    color: #FF6500;
}
.hide{
    display: none;
}
.pointer{
   cursor: pointer;
}
.div_hr{
    border-bottom: 1px solid #e6e6e6;
    height: 0;
}
.div_blank{
    width: 100%;
    height: 1px;
    clear: both;
}
.clear{
    clear: both;
}
/* 通用圆角外观 */
.div_round{
    padding: 10px;
    background: #FFFFFF;
    border-radius: 4px;
    box-shadow: 0px 0px 1px #AAA;
}
.div_center{
    text-align: center;
}
.bg_white{
    background: #fff;
}
.fl_left{
    float: left;
}
.fl_right{
    float: right;
}
.main_title{
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    line-height: 60px;
    height: 60px;
}
.text_note{
    font-size: 15px;
    line-height: 30px;
    text-align: center;
}
.text_gray{
    color: #999;
}
/* 分页样式 */
.div_pages{
    padding: 10px;
    background: #FFFFFF;
}
.pagination{
    overflow: hidden;
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
    height: 32px;
}
.pagination li{
    display: inline-block;
    margin: 0 2px;
    border:1px solid #BBB;
    line-height: 30px;
}
.pagination a{
    float:left;
    width:30px;
    overflow:hidden;
    color:#777;
    text-align: center;
    border-color:#BBB;
    background-color:#FFF;
}
.pagination a:hover{
    background-color:#ddd;
    color:#fff;
}
.pagination .active{
    width: 30px;
    color: #fff;
    background-color: #009A61;
    overflow:hidden;
    border:1px solid #009A61;
}
.pagination .disabled{
    width: 30px;
    overflow:hidden;
}

/* 其他通用样式 */
.line100{
    line-height: 100%;
}
.color_red{
  color: #ff0000;
}
.color_link{
  color: #01AAED;
}
.text_link{
  color: #01AAED;
  cursor: pointer;
}
/* 表格边框样式 */
.table_line table {
    border-collapse: separate;
    background: #CCCCCC;
    border-spacing: 1px;
    border: 0;
}
.table_line td {
    background: #FFFFFF;
    padding: 3px 5px;
    text-align: center;
    line-height: 200%;
}
/* 圆角矩形框样式 */
.panel_head{
    height: 50px;
    line-height: 50px;
    font-size: 16px;
    border-radius: 4px 4px 0 0;
    background: #fff;
    border: 1px solid #ddd;
    padding: 0 30px;
    color: #00f;
    position: relative;
}
.panel_head:after {
    content: '';
    height: 30px;
    width: 4px;
    background: #f60;
    position: absolute;
    left: 15px;
    top: 50%;
    margin-top: -14px;
}
.panel_body{
    min-height: 50px;
    border-radius: 0 0 4px 4px;
    background: #fff;
    border: 1px solid #ddd;
    border-top: none;
    padding: 15px;
}
/* 通用搜索框样式 */
.search_input{
    line-height:32px;
    border: 1px solid #d6d6d6;
    padding: 0 5px;
    font-size: 14px;
}
.search_button{
    position: relative;
    line-height:34px;
    left: -1px;
    padding: 0 18px;
    font-size: 14px;
    color: #fff;
    background: #009688;
    cursor: pointer;
    border: none;
    outline: none;
}
.search_button:hover{
    background: #33AB9F;
}
.span_price{
    color: #e4393c;
    font-size: 22px;
    font-weight: bold;
}
.popup_box{
    position: relative;
}
.popup_box span{
    display: block;
    cursor: pointer;
}
.popup_box img{
    cursor: pointer;
}
.popup_box div{
    display: none;
    position: absolute;
    z-index: 1;
    width: 320px;
    left: -160px;
    bottom: 100%;
    background: #fff;
    text-align: left;
    box-shadow: 0 0 2px 2px #ddd;
    border-radius: 3px;
    padding: 7px 12px;
    line-height: 24px;
    font-size: 14px;
    color: #666;
}
.popup_lay{
    cursor: pointer;
}
.popup_ask{
    border: 1px solid #aaa;
    padding: 7px 10px;
    cursor: pointer;
}
.qq_ask{
    border: 1px solid #f00;
    padding: 7px 10px;
    margin-left: 15px;
    cursor: pointer;
}