/*初始化样式*/
*{ margin:0; padding:0;
    -webkit-appearance:none;
     }
body{
	background: #f2f2f2;
    font-size: 14px;
	font-family: "微软雅黑",'Helvetica Neue',Helvetica,'PingFang SC','Hiragino Sans GB','Microsoft YaHei',Arial,sans-serif;
}
body, h1, h2, h3, h4, h5, h6, p, dl, dd, ul, ol, input{
	margin:0;/*去掉自带外间距*/
	padding:0;/*去掉自带内填充*/
}
em, i{
	font-style:normal;/*斜体扶正*/
}
li{
	list-style:none;/*去掉默认列表符*/
}
h1, h2, h3, h4, h5, h6, b, strong{
	font-weight:normal;/*去掉标题自带加粗*/
}
a{
	outline:none;/*去掉虚线框*/
	text-decoration:none;/*去掉自带下划线*/
}
img{
	border:none;/*去掉图片外面的边框*/
	vertical-align:top;/*图片对齐方式*/
}
table{
	border-collapse:collapse;/*去掉表格自带间隙*/
	border-spacing:0;
}
input{
	outline:none;
	/*border:none;*/
	background-color:transparent;/*背景色透明*/
}
textarea{
	outline:none;
	resize:none;/*禁止调整文本域尺寸*/
	overflow:auto;/*在浏览器默认状态下没有滚动条*/
}
/*placeholder字体颜色改变*/
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color: #999; opacity:1;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
    color: #999;opacity:1;
}
input:-ms-input-placeholder{
    color: #999;opacity:1;
}
input::-webkit-input-placeholder{
    color: #999;opacity:1;
}
/*去掉number自带上下箭头*/
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button{
	-webkit-appearance: none !important; 
}
/*浮动设置*/
.clear{
	clear:both;/*清浮动 voerflow:hidden也可用来清浮动一般放在浮动盒的父级*/
}
.clearfix{
	zoom:1;/*IE浏览器清浮动*/
}
.clearfix:after{
	content:'';/*添加一个空内容*/
	display:block;/*转块*/
	clear:both;/*清浮动*/
}
.fl{
	float:left;
}
.fr{
	float:right;
}
a:link,a:visited{
	color: #666;
}
@font-face {
  font-family: "iconfont";
  src: url('../fonts/iconfont.woff') format('woff'),
    url('../fonts/iconfont.ttf') format('truetype');
}
/*@font-face {
  font-family: 'iconfont';  /* Project id 3377379 */
/*  src: url('//at.alicdn.com/t/font_3377379_kw0zj979o4a.woff2?t=1654137460181') format('woff2'),*/
/*       url('//at.alicdn.com/t/font_3377379_kw0zj979o4a.woff?t=1654137460181') format('woff'),*/
/*       url('//at.alicdn.com/t/font_3377379_kw0zj979o4a.ttf?t=1654137460181') format('truetype');*/
/*}*/
.iconfont{
    font-family:"iconfont" !important;
    font-size:16px;font-style:normal;
    -webkit-font-smoothing: antialiased;
    -webkit-text-stroke-width: 0.2px;
    -moz-osx-font-smoothing: grayscale;
}
.icon-name:before {
  content: "\e60a";
}
.icon-pass:before {
  content: "\e638";
}
.icon-role:before {
  content: "\ea62";
}
.icon-navzk:before {
  content: "\e627";
}
.icon-home:before {
  content: "\e63f";
}
.icon-navsq:before {
  content: "\e626";
}
.icon-refresh:before {
  content: "\e60f";
}
.icon-topjts:before {
  content: "\eb6d";
}
.icon-topjtx:before {
  content: "\eb6e";
}
.icon-set:before {
  content: "\e892";
}
.icon-order:before {
  content: "\e897";
}
.icon-logistics:before {
  content: "\e64a";
}
.icon-search:before {
  content: "\e620";
}
.icon-close:before {
  content: "\eaf2";
}
.icon-update:before {
  content: "\e600";
}
.icon-delete:before {
  content: "\e8b6";
}
.icon-disable:before {
  content: "\e658";
}

.icon-tel:before {
  content: "\e678";
}
.icon-no:before {
  content: "\e621";
}
.icon-xingming:before {
  content: "\e607";
}
.icon-chepai:before {
  content: "\e603";
}

.icon-xs:before {
  content: "\e61d";
}
.icon-cg:before {
  content: "\e809";
}
.icon-yy:before {
  content: "\e8a2";
}
.icon-gb:before {
  content: "\e6a8";
}
.icon-paixu:before {
  content: "\e601";
}
.w1200{
	width: 1200px;
	margin:0 auto;
}
.header{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: #1E9FFF;
	color: #fff;
	height: 50px;
	line-height: 50px;
	z-index: 100;
}
.header .logo{
	position: absolute;
	left: 0;
	top: 0;
	width: 200px;
	text-align: center;
    background: #0085E8;
    overflow: hidden;
    transition:all .3s;
    -webkit-transition:all .3s;
}
.logo a{
	color: rgba(255,255,255,.8);
	font-weight: 300;
}
.logo i{
    display: none;
}
.header .htop{
	width: 100%; 
    height: 50px;
    overflow: hidden;
}
.htop .navicon{
	margin-left: 220px;
    transition:all .3s;
    -webkit-transition:all .3s;
}

.navicon i{
	font-size: 18px;
	cursor: pointer;	
	margin-right: 20px;
}
.navicon i.two{
    display: none;
}
.htop .name{
	margin-right: 2%;
    cursor: pointer;
    position: relative;
}
.name span{
    font-size: 12px;
}
.name span i{
    margin-left: 10px;
    font-size: 14px;
}
.header ul{
    display: none;
    position: absolute;
    width: 120px;
    right: 0;
    top: 50px;
    border: 1px solid #f4f4f4;
    background: #fff;
    z-index: 11;
}
.header ul li{
    text-align: center;
    line-height: 30px;
    width: 90%;
    font-size: 12px;
    margin:10px 5%;
    border-bottom: 1px dashed #f4f4f4;
    color: #444;
}
.header ul li:hover{
    background: #f4f4f4;
}

.header .logo.act{
    width: 65px;
}
.htop .navicon.act{
    margin-left: 100px;
}
/*nav*/
.nav{
    position: fixed;
    left: 0;
    height: 100%;
    top: 50px;
    background: #344058;
    color: rgba(255,255,255,.6);
    font-size: 12px;
    width: 200px;
    transition:all .3s;
    -webkit-transition:all .3s;
}
.nav a{
    color: rgba(255,255,255,.8);
}
.nav dl{
    width: 80%;
    line-height: 40px;
    padding: 8px 10%;
}
.nav dl dt{
    cursor: pointer;
}
.nav dl dt a{
    display: inline-block;
    width: 100%;
}
.nav dl dd{
    display: none;
    margin-left: 17px;
}
.nav dl i{
    font-size: 12px;
}
.nav dl b{
    margin-left: 5px;
}
.nav dl .dt.tiv{
    color: #fff;
}
.nav.act{
    width: 65px;
    text-align: center;
}
.nav.act dl dt b{
    display: none;
}
.nav.act dl dt span{
    display: inline-block;
    width: 100%;
    text-align: center;
}
.nav.act dl dd{
    display: none!important;
}
.list {
    margin-left: 200px;
    margin-top: 50px;
    transition:all .3s;
    -webkit-transition:all .3s;
}
.list>h3{
    width: 98%;
    background: #fff;
    padding:0 1%;
    line-height: 40px;
    font-size: 12px;
    box-shadow: 0px 0px 12px #ebebeb;
    white-space: nowrap;
}
/*分页*/
.pagination {
    text-align: center;
    margin-top: 15px;
}
.pagination li{
    display: inline-block;
    width: 30px;
    line-height: 30px;
    border-radius: 2px;
    margin:0 5px 10px;
    border: 1px solid #f4f4f4;
}
.pagination .disabled,
.pagination .active{
    cursor: no-drop;;
}
.pagination .active{
    background: #60c4ff;
    color: #fff;
}
/*筛选*/
.comon{
    background: #fff;
    margin: 15px;
    overflow: hidden;
}
.comon .search{
    border-bottom: 1px solid #f4f4f4;
    padding:15px 0;
}
.search label{
    margin-left: 2%;
    display: inline-block;
    height: 32px;
    margin-bottom: 20px;
}
.search label input,
.search label select{
    margin-left: 10px;
    width: 175px;
    line-height: 30px;
    padding:0 5px;
    background: none;
    border: 1px solid #c4c4c4;
}
.search label select{
    width: 185px;
}
.search #search{
    display: inline-block;
    width: 50px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    background: #009688;
    cursor: pointer;
    vertical-align: middle;
    margin-left: 2%;
} 
.search #search i{
    color: #fff;
}
.search #reset input{
    border:none;
    display: inline-block;
    width: 50px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    background: #e9e9e9;
    cursor: pointer;
    vertical-align: middle;
    margin-left: 10px;
    -webkit-appearance:none;
} 
.addbtn,#generate-excel{
    width: 100px;
    text-align: center;
    line-height: 26px;
    background: #009688;
    color: #fff;
    cursor: pointer;
    font-size: 12px;
    margin-top: 10px;
    margin-left: 2%;
}
.sellist {
    margin-left: 2%;
}
.sellist select{
    width: 100px;
    text-align: center;
    line-height: 24px;
    /*background: #009688;*/
    /*color: #fff;*/
    cursor: pointer;
    font-size: 12px;
    margin-top: 10px;
}
.blue{
    color: blue;
}
.kafei{
    color:#c65911;
}
.ccc{
    color: red;
}

table{
    font-size: 12px;
}
table tbody {
    display: block;
    overflow-y: scroll;
    padding-bottom: 15px;
}
table thead,
tbody tr {
    display: table;
    width: 100%;
    table-layout: fixed;
}
table thead { 
    width: calc( 100% - 1.5em)
}
thead tr{
    background: #e9e9e9;
    line-height: 30px;
}
tbody tr{
    line-height: 40px;
}
th,td{
    padding:0 10px;
    text-align: left;
    border-top: 1px solid #dbdbdb;
    border-left: 1px solid #dbdbdb;
    white-space:nowrap;
    width: 100px;
    overflow: hidden;
}
table th:last-child,
table td:last-child{
    border-right: 1px solid #dbdbdb;
}
tbody tr:last-child{
    border-bottom: 1px solid #dbdbdb;
}
.tabone {
    width: 50px!important;
}
.tabtwo {
    width: 200px!important;
}
.tabthree{
    width: 100px!important;
}
.tabfour{
    width: 170px!important;
}
.wait{
    background: #ededed;
    cursor: pointer;
}
.reject{
    background: #FF5722;
    color: #fff;
    cursor: pointer;
}
.pass{
    background: #009688;
    color: #fff;
    cursor: pointer;
}
.edit{
    background: #1E9FFF;
    color: #fff;
    cursor: pointer;
}
.start{
    background: #42b64a;
    color: #fff;
    cursor: pointer;
}
.delete{
    background: #d10d0d;
    color: #fff;
    cursor: pointer;
}

.wwait{
    background: #ededed;
    cursor: pointer;
}
.wreject{
    background: #FF5722;
    color: #fff;
    cursor: pointer;
}
.wpass{
    background: #009688;
    color: #fff;
    cursor: pointer;
}
.wedit{
    background: #1E9FFF;
    color: #fff;
    cursor: pointer;
}
.w50{
    width: 50px;
}
.w80{
    width: 80px;
}
.w100{
    width: 100px;
}
.w130{
    width: 130px;
}
.w150{
    width: 150px;
}
.w180{
    width: 180px;
}
.w200{
    width: 210px;
}
.w300{
    width: 300px;
}
@media screen and (max-width: 1024px) {
    .header .logo,.nav{
        display: none;
    }
    .htop .name{
        margin-right: 25px;
    }
    .logo i{
        display: block;
    }
    .htop .navicon{
        margin-left: 25px;
    }
    .navicon i.one{
        display: none;
    }
    .navicon i.two{
        display:inline-block;
    }
    .list{
        margin-left: 0;
    }
    .list>h3{
        width: 94%;
        padding:0 3%;
    }
    
}
@media screen and (max-width: 1200px) {
    .search label {
        width: 40%;
        display: inline-block;
        margin-bottom:20px;
    }
    .search #search{
        margin-left: 30px;
    }
}

@media screen and (max-width: 750px) {
    .search label {
        width: 90%;
        margin: 10px 5%;
    }
    .search label input{
        width: 163px;
    }
    .search label select {
        width: 175px;
    }
    .search #search{
        width: 66px;
        margin-left: 5%;
    }
}


