/*搜索*/
.add-menu{padding:0 10px 3px 15px;float:left;}
.search-con{padding-bottom:3px;float:left;}
.search-con select{width:35%;float:left;font-size:12px;padding-top:0;padding-bottom:0;}
.search-con input{width:40%;float:left;margin-right:2px;}
.btn-warning{color:#fff;cursor:pointer;}
.btn-warning:hover{color:#fff;}
.download{float:right;margin-right:15px;}

/*分页*/
.pages {text-align: center;padding: 8px 0;clear: both;font-family: Arial, Helvetica, sans-serif;font-size: 12px;}
.pages u {border-radius: 4px;color: #fff;font-size: 12px;margin: 2px;padding: 3px 6px;vertical-align: baseline;text-align: left;border: 1px solid #5891aa;text-decoration: none;background: #5891aa;}
.pages a {margin: 4px;color: #999;border: 1px solid #dddddd;text-align: left;padding: 3px 6px;border-radius: 4px;}

/*上传图片*/
.qd_upload{width:100%;float:left;}
.qdimg_tmp{ width:120px; height:120px; left:0; top:0;cursor:pointer;text-align:center;position:relative; overflow:hidden;float:left;border: 1px solid #ced4da;}
.qdimg_tmp input{width:120px; height:120px; line-height:120px; cursor:pointer; position:absolute; z-index:0; right:0;opacity:0; filter:alpha(opacity=0);}
.qdimg_tmp img{border:none;cursor:pointer;width:120px;height:120px;}
.qd_image{float:left;}
.qd_image div img{width:120px; height:120px; float: left;}
.qd_image ol{width:120px; position:absolute; bottom:0;margin:0;padding:0;}
.qd_image .dw{position: relative;width: 120px;margin-right: 2px;float: left;border: #ececec 1px solid;}				        
.qd_image ol li {float:left; width:120px; height:120px; font-size:14px; background:#fff; text-align:center; border-right:none; border-left:none; border-bottom:none; margin:0; z-index:99;}
.qd_image ol li.li01 {border-right:1px solid #dcdcdc; position:relative; }
.qd_image ol li.li01 div {position:absolute; top:0; height:120px; width:120px; text-align:center; z-index:-999;}

.qd_upload2{}
.qdimg_tmp2{ width:55px; height:55px; left:0; top:0;cursor:pointer;text-align:center;position:relative; overflow:hidden;border: 1px solid #ced4da; margin:0 auto;}
.qdimg_tmp2 input{width:36px; height:36px; line-height:36px; cursor:pointer; position:absolute; z-index:0; right:0;opacity:0; filter:alpha(opacity=0);}
.qdimg_tmp2 img{border:none;cursor:pointer;width:120px;height:36px;}
.qd_image2{}
.qd_image2 div img{width:55px; height:55px; text-align:center; }
.qd_image2 ol{width:55px; position:absolute; bottom:0;margin:0;padding:0;}
.qd_image2 .dw{position: relative;width: 57px;border: #ececec 1px solid; margin:0 auto;}				        
.qd_image2 ol li {float:left; width:120px; height:36px; font-size:14px; background:#fff; text-align:center; border-right:none; border-left:none; border-bottom:none; margin:0; z-index:99;}
.qd_image2 ol li.li01 {border-right:1px solid #dcdcdc; position:relative; }
.qd_image2 ol li.li01 div {position:absolute; top:0; height:120px; width:36px; text-align:center; z-index:-999;}

/*查看*/
.modal {
  display: none; /* 默认隐藏 */
  position: fixed; /* 根据浏览器定位 */
  z-index: 1; /* 放在顶部 */
  left: 0;
  top: 0;
  width: 100%; /* 全宽 */
  height: 100%; /* 全高 */
  overflow: auto; /* 允许滚动 */
  background-color: rgba(0,0,0,0.4); /* 背景色 */
}
/*模态框内容*/
.modal-content {
  display: flex; /*采用flexbox布局*/
  flex-direction: column; /*垂直排列*/
  position: relative;
  background-color: #fefefe;
  margin: 8% auto; /*距顶部15% 水平居中*/
  padding: 10px 20px;
  border: 1px solid #888;
  width: 50%;
  animation: topDown 0.4s; /*自定义动画，从模态框内容上到下出现*/
}
@keyframes topDown {
  from {top: -300px; opacity: 0}
  to {top: 0; opacity: 1}
}
/*模态框头部*/
.modal-header {
  display: flex; /*采用flexbox布局*/
  flex-direction: row; /*水平布局*/
  align-items: center; /*内容垂直居中*/
  justify-content: space-between; 
}
/*关闭X 样式*/
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}
.close:hover {
  color: black;
  text-decoration: none;
  cursor: pointer;
}
/*编辑*/
.modal2 {
  display: none; /* 默认隐藏 */
  position: fixed; /* 根据浏览器定位 */
  z-index: 1; /* 放在顶部 */
  left: 0;
  top: 0;
  width: 100%; /* 全宽 */
  height: 100%; /* 全高 */
  overflow: auto; /* 允许滚动 */
  background-color: rgba(0,0,0,0.4); /* 背景色 */
}
/*模态框内容*/
.modal-content2 {
  display: flex; /*采用flexbox布局*/
  flex-direction: column; /*垂直排列*/
  position: relative;
  background-color: #fefefe;
  margin: 4% auto; /*距顶部15% 水平居中*/
  padding: 10px 20px;
  border: 1px solid #888;
  width: 1000px;
  animation: topDown 0.4s; /*自定义动画，从模态框内容上到下出现*/
}
@keyframes topDown {
  from {top: -300px; opacity: 0}
  to {top: 0; opacity: 1}
}
/*关闭X 样式*/
.close2 {
  color: #aaa;
  float: right;
  font-size: 34px;
  font-weight: bold;
}
.close2:hover {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

/*模态框内容*/
.modal-content3 {
  display: flex; /*采用flexbox布局*/
  flex-direction: column; /*垂直排列*/
  position: relative;
  background-color: #fefefe;
  margin: 4% auto; /*距顶部15% 水平居中*/
  padding: 10px 20px;
  border: 1px solid #888;
  width: 1500px;
  animation: topDown 0.4s; /*自定义动画，从模态框内容上到下出现*/
}
@keyframes topDown {
  from {top: -300px; opacity: 0}
  to {top: 0; opacity: 1}
}
/*关闭X 样式*/
.close3 {
  color: #aaa;
  float: right;
  font-size: 34px;
  font-weight: bold;
}
.close3:hover {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.gundongtiao {/*overflow-y:scroll; */height:410px;}

.gundongtiao::-webkit-scrollbar {/*滚动条整体样式*/
  width: 10px;     /*高宽分别对应横竖滚动条的尺寸*/
  height: 1px;
}

.gundongtiao::-webkit-scrollbar-thumb {	/*滚动条里面小方块*/
  border-radius: 10px;
   -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
  background: #d4d4d4;
}

.gundongtiao::-webkit-scrollbar-track {	/*滚动条里面轨道*/
  -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
  border-radius: 10px;
  background: #f3f2f2;
}

.gundongtiao2 {/*overflow-y:scroll; */height:675px;}

.gundongtiao2::-webkit-scrollbar {/*滚动条整体样式*/
  width: 10px;     /*高宽分别对应横竖滚动条的尺寸*/
  height: 1px;
}

.gundongtiao2::-webkit-scrollbar-thumb {	/*滚动条里面小方块*/
  border-radius: 10px;
   -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
  background: #d4d4d4;
}

.gundongtiao2::-webkit-scrollbar-track {	/*滚动条里面轨道*/
  -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
  border-radius: 10px;
  background: #f3f2f2;
}

.gundongtiao3 {overflow-y:scroll; height:675px;}

.gundongtiao3::-webkit-scrollbar {/*滚动条整体样式*/
  width: 10px;     /*高宽分别对应横竖滚动条的尺寸*/
  height: 1px;
}

.gundongtiao3::-webkit-scrollbar-thumb {	/*滚动条里面小方块*/
  border-radius: 10px;
   -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
  background: #d4d4d4;
}

.gundongtiao3::-webkit-scrollbar-track {	/*滚动条里面轨道*/
  -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
  border-radius: 10px;
  background: #f3f2f2;
}

/*审核状态*/
.check_status span{text-transform: uppercase;font-size: 14px;letter-spacing: 1px;color: #fff;font-weight: bold;}
.check_status .check_success{ color:#3cc051!important;}
.check_status .check_wait{ color:#fd9d21!important;}
.check_status .check_fail{ color:#ff6767!important;}
.check_status .check_fail2{ color:#da70d6!important;}
.check_status .check_two{ color:#0096e0!important;}
.check_status .check_three{ color:#ff80c2!important;}