/* 全局CSS */
*{
    font-family: 'Tahoma,Arial,微软雅黑,黑体,宋体,pingfang';
}
h1, h2, h3, h4, h5, h6, i, b, a, p, em{
    font-size: 14px;
    padding: 0px;
    margin: 0px;
    font-weight: inherit;
    font-style: inherit;
}
ul, ol, dl, li{
    list-style: none;
}
img{
    margin: 0px;
    padding: 0px;
    display: inline-block;
    max-width: 100%;
}
a{
    color: inherit;
}
a:hover{
    text-decoration: none;
    background: none;
}
a:focus{
    background: none;
}
h1, h2, h3, h4, h5, h6{
    margin: 0px;
    padding: 0px;
}
ul, ol, li, dl, dt, dd{
    list-style: none;
    list-style-type: none;
    margin: 0px;
}
.clear{
    clear: both;
}
.float-left{
    float: left;
}
.float-right{
    float: right;
}
.align-self-center{
    align-self: center;
}
@font-face{
    /*font-family: pingfang;*/
    /*src:url('/public/custom/client/font/pingfang.ttf');*/
}

::-webkit-scrollbar { /*滚动条整体样式*/
    width: 5px;     /*高宽分别对应横竖滚动条的尺寸*/
    height: 1px;
}
::-webkit-scrollbar-thumb {/*滚动条里面小方块*/
    border-radius: 4px;
    -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
    background: #535353;
}
::-webkit-scrollbar-track {/*滚动条里面轨道*/
    -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
    border-radius: 10px;
    background: #EDEDED;
}

/* 公共头部CSS */
.header{
    height: 180px;
    padding: 20px 30px;
}
.header .logo{
    max-width: 40%;
    max-height: 100%;
}
.header .top{
    width: 100%;
}
.header .top p{
    background: url("../img/tel.png") no-repeat left top;
    height: 40px;
    padding: 5px 10px 5px 25px;
    word-break: break-all;
    width: 120px;
    font-size: 12px;
    font-weight: bold;
    line-height: 15px;
    border-right: 2px solid rgb(128, 192, 200);
}
.header .top h1{
    font-size: 28px;
    line-height: 40px;
    width: 180px;
    text-align: center;
    color: rgb(255, 160, 21);
}
.header .top .search{}
.header .top .search input{
    width: 100%;
    outline: 0px;
    border: rgb(217, 217, 217) 1px solid;
    border-radius: 5px;
    padding: 5px 15px;
}
.header .top .search input:focus{
    outline: 1px #0a61c4 solid;
}
.header ul.nav{
    position: relative;
    padding: 0px 10%;
    margin-top: 10px;
    background: url("../img/nav_bg.png") no-repeat 10px top;
    background-size: 100% 100%;
    color: #fff;
}
.header ul.nav img{
    position: absolute;
    left: 0px;
    top: 0px;
    height: 100%;
}
.header .nav li{
    text-align: center;
    padding: 10px 2%;
    border-right: 1px #fff solid;
}
.header .nav a{
    display: block;
    color: inherit;
}
.header .nav a:hover{
    background: none;
    color: #ccc;
}
.header .nav a:focus{
    background: none;
}
.header .nav li h1{
    font-size: 12px;
    margin-bottom: 15px;
}
.header .nav li h2{
    font-size: 16px;
}

/* crumbs */
.crumbs{
    padding: 13px;
    padding-left: 100px;
    font-size: 16px;
    color: #666;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}
.crumbs *{
    font-size: inherit;
}
/* crumbs */

/* page_ul */
ul.page_ul{
    float: right;
}
ul.page_ul li{
    background-color: #ccc;
    float: left;
    text-align: center;
    padding: 5px 10px;
    color: #fff;
    border: 1px solid #fff;
    cursor: pointer;
}
ul.page_ul li.curt{
    background-color: #0a61c4;
}
/* page_ul */