@import url(font-awesome.min.css);
/*
名称：公共组件样式表
作者：a-bao
时间：2015-06-15
------------------------------------------------------------------------------------
目录:
	一、Tab 切换菜单
	二、MCTable 表格
	三、浮层、浮框
	四、按钮
	五、AUTOFROM 表单
	六、POPUP弹出框
	七、滚动条样式
	八、后退、刷新、新页面
	九、详情页面布局
	十、权限分配页面
	十一、Tips效果
-----------------------------------------------------------------------------------
*/
@charset "utf-8";
*:before,
*:after {
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  clear: both;
  padding: 0;
  margin: 0;
}
.clear:before,
.clear:after {
  content: "";
  clear: both;
  padding: 0;
  margin: 0;
}
div,
form,
img,
ul,
ol,
li,
dl,
dt,
dd,
body,
th,
td,
select,
input,
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
  font-size: 12px;
  font-weight: normal;
}
ul,
li {
  margin: 0px;
  padding: 0px;
  list-style: none;
}
img {
  vertical-align: top;
  border: 0;
}
body {
  background-color: #FFF;
  -webkit-font-smoothing: antialiased;
  /*字体抗锯齿*/
}
a {
  outline-style: none;
  text-decoration: none;
}
table {
  border-collapse: collapse;
  font-size: 12px;
}
input {
  vertical-align: middle;
}
.padding {
  padding: 10px;
}
.floatL {
  float: left;
}
.floatR {
  float: right;
}
.fontSz_14 {
  font-size: 14px;
}
.fontSz_16 {
  font-size: 16px;
}
.fontSz_18 {
  font-size: 18px;
}
.fontSz_20 {
  font-size: 20px;
}
.overflow {
  overflow: hidden;
}
/*一、Tab 切换菜单*/
/*1.1-Tab切换默认样式*/
.tabList {
  height: 33px;
  overflow: hidden;
  font-size: 12px;
  margin-bottom: 10px;
}
.tabList li {
  height: 30px;
}
.tabList li:nth-child(1) {
  -webkit-border-top-left-radius: 5px;
  -moz-border-top-left-radius: 5px;
  border-top-left-radius: 5px;
  -webkit-border-bottom-left-radius: 5px;
  -moz-border-bottom-left-radius: 5px;
  border-bottom-left-radius: 5px;
  border-right: none;
}
.tabList li:nth-last-child(1) {
  -webkit-border-top-right-radius: 5px;
  -moz-border-top-right-radius: 5px;
  border-top-right-radius: 5px;
  -webkit-border-bottom-right-radius: 5px;
  -moz-border-bottom-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-right: #b7b7b7 1px solid;
}
.tabList li:hover {
  background: #ededed;
  background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#dcdcdc));
  background: -moz-linear-gradient(top, #ffffff, #dcdcdc);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#dcdcdc');
}
.tabList li:active {
  color: #999;
  background: -webkit-gradient(linear, left top, left bottom, from(#ededed), to(#ffffff));
  background: -moz-linear-gradient(top, #ededed, #ffffff);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ededed', endColorstr='#ffffff');
}
.tabList li {
  color: #000000;
  border: solid 1px #c9c9c9;
  border-right: none;
  background: #fff;
  background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#ededed));
  background: -moz-linear-gradient(top, #ffffff, #ededed);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ededed');
  display: block;
  float: left;
  zoom: 1;
  vertical-align: baseline;
  outline: none;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  font: 12px/28px "微软雅黑";
  padding: 0px 18px;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
.tabList li a {
  color: #000000;
}
.tabList li.nav {
  color: #FFF;
  border: solid 1px #7c7c7c;
  background: #9a9a9a;
}
.tabList li.nav a {
  color: #FFF;
}
.tabContent .tabinfo {
  display: none;
}
/*1.2-Tab切换样式-A*/
.tabList-A {
  height: 33px;
  overflow: hidden;
  font-size: 12px;
  margin-bottom: 10px;
}
.tabList-A li {
  height: 30px;
  line-height: 30px;
  border: #b7b7b7 1px solid;
  border-right: 0px;
  background-color: #FFF;
  float: left;
  padding: 0 15px;
  color: #999;
  cursor: pointer;
}
.tabList-A li:nth-child(1) {
  -webkit-border-top-left-radius: 5px;
  -moz-border-top-left-radius: 5px;
  border-top-left-radius: 5px;
  -webkit-border-bottom-left-radius: 5px;
  -moz-border-bottom-left-radius: 5px;
  border-bottom-left-radius: 5px;
  border-right: none;
}
.tabList-A li:nth-last-child(1) {
  -webkit-border-top-right-radius: 5px;
  -moz-border-top-right-radius: 5px;
  border-top-right-radius: 5px;
  -webkit-border-bottom-right-radius: 5px;
  -moz-border-bottom-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-right: #b7b7b7 1px solid;
}
.tabList-A li a {
  color: #999;
}
.tabList-A li.nav {
  background-color: #F9F9F9;
  color: #333;
}
/*1.3-Tab切换样式-B*/
.tabList-B {
  height: 30px;
  border-bottom: #C3C3C3 1px solid;
  position: relative;
}
.tabList-B ul {
  height: 31px;
  position: absolute;
  z-index: 2;
  overflow: hidden;
}
.tabList-B li {
  height: 30px;
  padding: 0 20px;
  line-height: 31px;
  float: left;
  margin-right: 5px;
  cursor: pointer;
  color: #666;
  font-family: "Microsoft Yahei";
}
.tabList-B li:hover {
  color: #333;
}
.tabList-B li.nav {
  color: #333;
  border: #C3C3C3 1px solid;
  background-color: #FFF;
  border-bottom: none;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
/*二、MCTable 表格*/
/*2.1 - MCTable 默认样式风格*/
.mcsstable {
  border: #E9E9E9 1px solid;
  border-spacing: 0;
  width: 100%;
}
.mcsstable tr th {
  height: 32px;
  line-height: 32px;
  color: #666;
  border: none;
  background: url(../images/mcsstablethbg.jpg) repeat-x;
  white-space: nowrap;
  background: #C8DCF7;
  font-family: "Microsoft Yahei";
}
.mcsstable th.order_asc:after {
  content: "\f15d";
  font-family: "FontAwesome";
  color: #000;
  margin-left: 5px;
}
.mcsstable th.order_asc:hover {
  color: #D55C31;
}
.mcsstable th.order_desc:after {
  content: "\f15e";
  font-family: "FontAwesome";
  color: #000;
  margin-left: 5px;
}
.mcsstable th.order_desc:hover {
  color: #D55C31;
}
.mcsstable tr td {
  border: none;
  border-bottom: #E9E9E9 1px solid;
  height: 30px;
  text-align: center;
  background-color: #FFF;
  padding: 8px;
  color: #575654;
}
.mcsstable tr td img {
  border: #CCC 1px solid;
  padding: 1px;
  display: inline-block;
}
.mcsstable tr td img:hover {
  border: #E4673B 1px solid;
}
.mcsstable tr td img.imageRound {
  border-radius: 50%;
  overflow: hidden;
  margin: 3px 0;
}
.mcsstable tr.mcsstable_tr1 td {
  background-color: #f8f8f8;
}
.mcsstable tr.mcsstable_tr_hover td {
  background-color: #B4E3FF;
  color: #333;
}
/*2.2-MCtable 添加效果effect*/
.mcsstable-effect {
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
  -webkit-box-shadow: 2px 2px 5px rgba(9, 9, 9, 0.2);
  -moz-box-shadow: 2px 2px 5px rgba(9, 9, 9, 0.2);
  -o-box-shadow: 2px 2px 5px rgba(9, 9, 9, 0.2);
  -ms-box-shadow: 2px 2px 5px rgba(9, 9, 9, 0.2);
  box-shadow: 2px 2px 5px rgba(9, 9, 9, 0.2);
  overflow: hidden;
}
/*2.3-MCTable 可拖动的效果*/
.mcsstable-Drag tr td,
.mcsstable-Drag tr th {
  border-right: #F9F9F9 1px solid;
}
/*2.4 - mcsstable-A 简约风格*/
.mcsstable-A {
  border-spacing: 0;
  width: 100%;
}
.mcsstable-A tr th {
  height: 32px;
  line-height: 32px;
  color: #666;
  border-bottom: #CCC 1px solid;
  white-space: nowrap;
  font-family: "Microsoft Yahei";
}
.mcsstable-A tr th[onclick]:after {
  cursor: pointer;
  content: "\f0dc";
  font-family: "FontAwesome";
  margin-left: 5px;
}
.mcsstable-A tr th:hover {
  color: #000;
}
.mcsstable-A th.order_asc[onclick]:after {
  content: "\f15d";
  font-family: "FontAwesome";
  color: #000;
  margin-left: 5px;
}
.mcsstable-A th.order_desc[onclick]:after {
  content: "\f15e";
  font-family: "FontAwesome";
  color: #000;
  margin-left: 5px;
}
.mcsstable-A tr td {
  border: none;
  border-bottom: #E9E9E9 1px solid;
  height: 30px;
  text-align: center;
  background-color: #FFF;
  padding: 8px;
  color: #575654;
}
.mcsstable-A tr td img {
  border: #CCC 1px solid;
  padding: 1px;
  display: inline-block;
}
.mcsstable-A tr td img:hover {
  border: #E4673B 1px solid;
}
.mcsstable-A tr td img.imageRound {
  border-radius: 50%;
  overflow: hidden;
  margin: 3px 0;
}
.mcsstable-A tr.mcsstable_tr1 td {
  background-color: #f8f8f8;
}
.mcsstable-A tr.mcsstable_tr_hover td {
  background-color: #B4E3FF;
  color: #333;
}
/*2.4-高级搜索*/
.seniorsearch {
  width: 750px;
  margin: 10px auto;
  border: 1px solid #8A8A8A;
  border-bottom-color: #6D6D6D;
  -webkit-box-shadow: 0px 2px 5px 0px rgba(9, 9, 9, 0.35);
  -moz-box-shadow: 0px 2px 5px 0px rgba(9, 9, 9, 0.35);
  -o-box-shadow: 0px 2px 5px 0px rgba(9, 9, 9, 0.35);
  -ms-box-shadow: 0px 2px 5px 0px rgba(9, 9, 9, 0.35);
  box-shadow: 0px 2px 5px 0px rgba(9, 9, 9, 0.35);
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
}
.seniorsearch table {
  width: 100%;
}
.seniorsearch caption h3 {
  height: 30px;
  background-color: #FDFAF1;
  font: bold 12px/30px "微软雅黑";
  margin: 0;
  padding: 0;
  padding-left: 10px;
  color: #b57d27;
}
.seniorsearch td {
  padding-top: 5px;
}
/*2.5-高级过滤器*/
#mcss_table_filterbar,
#mcss_table2_filterbar {
  clear: both;
}
.mcss_tablefilterCon,
.mcss_table2filterCon {
  position: relative;
  width: auto;
  float: left;
}
/*2.6-分页*/
.TableFenye {
  height: 30px;
  text-align: right;
  font-size: 12px;
  font-weight: normal;
  font-family: "Microsoft Yahei";
  margin-top: 15px;
}
.TableFenye span {
  display: inline-block;
  color: #939191;
  text-align: center;
  font-weight: bold;
  margin-right: 4px;
  font-family: "Arial";
  padding: 0 2px;
}
.TableFenye select {
  vertical-align: middle;
  height: 24px;
  min-height: 24px;
}
.TableFenye input.inputpage {
  font-family: "Arial";
  padding-top: 2px;
  padding-top: 0px\9;
  line-height: 17px\9;
  margin-bottom: 4px;
  margin-right: 4px;
  text-align: center;
  border: #DEDEDE 1px solid;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  border-radius: 2px;
  font-weight: bold;
  color: #939191;
  font-size: 12px;
  max-width: 27px;
  max-height: 27px;
  vertical-align: middle;
}
.TableFenye .labellink {
  vertical-align: middle;
  overflow: visible;
  border: 1px solid #D4D4D4;
  text-decoration: none;
  text-shadow: 1px 1px 0 #FFF;
  color: #333;
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  background-color: #ECECEC;
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f4f4f4), to(#ececec));
  background-image: -moz-linear-gradient(#f4f4f4, #ececec);
  background-image: -o-linear-gradient(#f4f4f4, #ececec);
  background-image: linear-gradient(#f4f4f4, #ececec);
  -webkit-background-clip: padding;
  -moz-background-clip: padding;
  -o-background-clip: padding-box;
  -webkit-border-radius: 0.2em;
  -moz-border-radius: 0.2em;
  border-radius: 0.2em;
  zoom: 1;
  font-weight: normal;
  padding: 3px 8px;
}
.TableFenye .labellink:hover {
  text-decoration: none;
  border-color: #3072B3;
  border-bottom-color: #2A65A0;
  text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.3);
  color: white;
  background-color: #3072B3;
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#599bdc), to(#3072b3));
  background-image: -moz-linear-gradient(#599bdc, #3072b3);
  background-image: -o-linear-gradient(#599bdc, #3072b3);
  background-image: linear-gradient(#599bdc, #3072b3);
}
a.actionicons {
  width: 22px;
  height: 22px;
  display: inline-block;
  margin-right: 2px;
  background: url(../images/fenyeico.jpg) top no-repeat;
  vertical-align: middle;
  margin-bottom: 4px;
  text-indent: -9999em;
  cursor: pointer;
}
#mcss_table_RecordCount {
  cursor: auto;
}
.mcsstable_caption a.actionicons {
  float: left;
}
a.firstpage:hover {
  background-position: 0 -22px;
}
a.firstpage_disabled:hover {
  background-position: 0 0;
  cursor: auto;
}
a.prepage {
  background-position: 0 -44px;
}
a.prepage:hover {
  background-position: 0 -66px;
}
a.nextpage {
  background-position: 0 -132px;
}
a.nextpage:hover {
  background-position: 0 -154px;
}
a.lastpage {
  background-position: 0 -88px;
}
a.lastpage:hover {
  background-position: 0 -110px;
}
a.ipage {
  background-position: 0 -176px;
  cursor: auto;
}
a.ipage:hover {
  background-position: 0 -198px;
}
/*2.7-功能键*/
.mcsstable_caption {
  text-align: left;
  padding-top: 5px;
  margin: 0;
  overflow: hidden;
  padding-bottom: 5px;
}
.mcsstable_caption .labellink,
.mcsstable_caption span,
.mcsstable_caption input,
.mcsstable_caption select {
  float: left;
  margin-right: 4px;
  vertical-align: middle;
}
.mcsstable_caption input.searchInput {
  border: #B6BAC0 1px solid;
  background-color: #FFF;
  border-radius: 2px;
  border-left-color: #C5C5C5;
  border-bottom-color: #AFAFAF;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  float: left;
  margin: 0;
  height: 25px;
  min-height: 25px;
  width: 150px;
  padding-right: 3px;
  padding: 0;
  padding-left: 2px;
  margin-right: 5px;
}
.mcsstable_caption input.searchInput:focus {
  outline: none;
  border: #126AFF 1px solid;
}
.mcsstable_caption .labellink {
  overflow: visible;
  border: 1px solid #D4D4D4;
  text-decoration: none;
  text-shadow: 1px 1px 0 #FFF;
  color: #333;
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  background-color: #ECECEC;
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f4f4f4), to(#ececec));
  background-image: -moz-linear-gradient(#f4f4f4, #ececec);
  background-image: -o-linear-gradient(#f4f4f4, #ececec);
  background-image: linear-gradient(#f4f4f4, #ececec);
  -webkit-background-clip: padding;
  -moz-background-clip: padding;
  -o-background-clip: padding-box;
  -webkit-border-radius: 0.2em;
  -moz-border-radius: 0.2em;
  border-radius: 0.2em;
  zoom: 1;
  font-weight: normal;
  padding: 3px 8px;
  font-family: "Microsoft Yahei";
}
.mcsstable_caption .labellink:hover {
  text-decoration: none;
  border-color: #3072B3;
  border-bottom-color: #2A65A0;
  text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.3);
  color: white;
  background-color: #3072B3;
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#599bdc), to(#3072b3));
  background-image: -moz-linear-gradient(#599bdc, #3072b3);
  background-image: -o-linear-gradient(#599bdc, #3072b3);
  background-image: linear-gradient(#599bdc, #3072b3);
}
.mcsstable_caption .text_add_btn {
  overflow: visible;
  border: 1px solid #D4D4D4;
  text-decoration: none;
  text-shadow: 1px 1px 0 #FFF;
  color: #333;
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  background-color: #ECECEC;
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f4f4f4), to(#ececec));
  background-image: -moz-linear-gradient(#f4f4f4, #ececec);
  background-image: -o-linear-gradient(#f4f4f4, #ececec);
  background-image: linear-gradient(#f4f4f4, #ececec);
  -webkit-background-clip: padding;
  -moz-background-clip: padding;
  -o-background-clip: padding-box;
  -webkit-border-radius: 0.2em;
  -moz-border-radius: 0.2em;
  border-radius: 0.2em;
  zoom: 1;
  font-weight: normal;
  padding: 3px 8px;
}
.mcsstable_caption .text_del_btn:hover {
  border-color: #B53F3A;
  border-bottom-color: #A0302A;
  color: white;
  background-color: #DC5F59;
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#dc5f59), to(#b33630));
  background-image: -moz-linear-gradient(#dc5f59, #b33630);
  background-image: -o-linear-gradient(#dc5f59, #b33630);
  background-image: linear-gradient(#dc5f59, #b33630);
}
.mcsstable_caption .popupmenu_csv {
  background: url(../images/exporttoexcel.png) 0px 1px no-repeat;
}
.mcsstable_caption .popupmenu_xls {
  background: url(../images/exporttoexcel.png) 0px -17px no-repeat;
}
.mcsstable_caption .popupmenu_xlsx {
  background: url(../images/exporttoexcel.png) 0px -35px no-repeat;
}
.mcsstable_caption input {
  border-color: #cccccc;
}
.mcsstable_caption span.mcssTable_title {
  line-height: 25px;
}
.mcsstable_caption select {
  height: 25px;
  min-height: 25px;
  line-height: 25px;
}
/*2.8-操作按钮*/
a.smallbut {
  width: 27px;
  height: 26px;
  display: inline-block;
  overflow: hidden;
  margin: 0 3px;
  cursor: pointer;
  border: #B8B9B9 1px solid;
  color: #666;
  font-size: 16px;
  text-align: center;
  line-height: 24px;
  background-color: #ECECEC;
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f4f4f4), to(#ececec));
  background-image: -moz-linear-gradient(#f4f4f4, #ececec);
  background-image: -o-linear-gradient(#f4f4f4, #ececec);
  background-image: linear-gradient(#f4f4f4, #ececec);
  font-family: "FontAwesome";
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  -webkit-text-shadow: 1px 1px 0 #ffffff;
  -moz-text-shadow: 1px 1px 0 #ffffff;
  -o-text-shadow: 1px 1px 0 #ffffff;
  -ms-text-shadow: 1px 1px 0 #ffffff;
  text-shadow: 1px 1px 0 #ffffff;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}
a.smallbut:before {
  content: "\f06e";
}
a.smallbut:hover {
  border-color: #337DB5;
  -webkit-box-shadow: 0px 1px 2px rgba(9, 9, 9, 0.4);
  -moz-box-shadow: 0px 1px 2px rgba(9, 9, 9, 0.4);
  -o-box-shadow: 0px 1px 2px rgba(9, 9, 9, 0.4);
  -ms-box-shadow: 0px 1px 2px rgba(9, 9, 9, 0.4);
  box-shadow: 0px 1px 2px rgba(9, 9, 9, 0.4);
  color: #337DB5;
}
a.mcsstable_record_edit {
  line-height: 26px;
}
a.mcsstable_record_edit:before {
  content: "\f044";
}
a.mcsstable_record_del {
  line-height: 26px;
}
a.mcsstable_record_del:before {
  content: "\f1f8";
}
a.mcsstable_record_del:hover {
  color: #B33630;
  border-color: #B33630;
}
a.mcsstable_record_tag:before {
  content: "\f02b";
}
a.mcsstable_record_list:before {
  content: "\f0ca";
}
a.mcsstable_record_start {
  color: blue;
  font-size: 12px;
}
a.mcsstable_record_start:before {
  content: "\f111";
}
a.mcsstable_record_start:hover {
  color: blue;
}
a.mcsstable_record_stop {
  color: #B33630;
  font-size: 12px;
}
a.mcsstable_record_stop:before {
  content: "\f111";
}
a.mcsstable_record_stop:hover {
  color: #B33630;
  border-color: #B33630;
}
a.mcsstable_record_check:before {
  content: "\f11e";
}
a.mcsstable_record_addsecond:before {
  content: "\f0e8";
}
a.mcsstable_record_youhui:before {
  content: "\f155";
}
a.mcsstable_record_print:before {
  content: "\f02f";
}
a.mcsstable_record_sms:before {
  content: "\f10b";
  font-size: 24px;
}
a.mcsstable_record_message:before {
  content: "\f075";
}
a.mcsstable_record_email:before {
  content: "\f0e0";
}
a.mcsstable_record_database:before {
  content: "\f1da";
}
a.mcsstable_record_history:before {
  content: "\f1c0";
}
/*2.9-MCTable-弹出菜单List*/
.popupmenu {
  position: absolute;
  top: 18px;
  left: 5px;
  width: 110px;
  background: #FFF;
  border: #CCC 1px solid;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  padding: 2px;
  display: none;
  z-index: 9999;
  background: url(../images/showshortmenubg.gif) left top repeat-y;
  border: #ddd 1px solid;
}
.popupmenu a {
  padding-left: 30px;
  line-height: 20px;
  color: #444;
  display: block;
  height: 20px;
  background-color: transparent;
  border-width: 1px;
  border-color: transparent;
  background-repeat: repeat-y;
}
cursor:pointer .popupmenu a a.gantetu_clearDate {
  background: url(../images/pn_ico.png) -20px -20px no-repeat;
  margin-right: 5px;
}
.popupmenu a a.gantetu_addDiscussion {
  background: url(../images/pn_ico.png) -44px -20px no-repeat;
  margin-right: 5px;
}
.popupmenu a a.gantetu_moveTask {
  background: url(../images/pn_ico.png) -68px -20px no-repeat;
  margin-right: 5px;
}
.popupmenu a:hover {
  border-radius: 4px;
  background-color: #EAF2FF;
  border: #B7D2FF 1px solid;
  color: #000000;
}
/*三、浮层、浮框*/
/*MCFuceng*/
.fuchuceng {
  height: auto;
  z-index: 99999;
  top: 20px;
  width: 300px;
  z-index: 100;
  position: absolute;
  background: white;
  border: 1px solid #8A8A8A;
  border-bottom-color: #6D6D6D;
  -webkit-box-shadow: 0 2px 8px 1px rgba(0, 0, 0, 0.35);
  -moz-box-shadow: 0 2px 8px 1px rgba(0, 0, 0, 0.35);
  -o-box-shadow: 0 2px 8px 1px rgba(0, 0, 0, 0.35);
  -ms-box-shadow: 0 2px 8px 1px rgba(0, 0, 0, 0.35);
  box-shadow: 0 2px 8px 1px rgba(0, 0, 0, 0.35);
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
}
.fuchuceng .closeDiv {
  text-align: right;
  height: 16px;
  overflow: hidden;
}
.fuchuceng .closebox {
  padding: 2px;
  background-color: #CB943E;
  color: #FFF;
  cursor: pointer;
  margin-left: 5px;
}
.fuchuceng .mcssform {
  padding-top: 5px;
  text-align: left;
  margin: 0 auto;
  width: auto;
}
.fuchuceng .mcssform td.lefttitle {
  width: auto;
}
.handmove {
  min-height: 30px;
  background: whiteSmoke;
  border-bottom: 1px solid #E5E5E5;
  position: relative;
  _height: 30px;
  border-radius: 3px 3px 0 0;
  cursor: move;
}
.handmove span.title_popup,
.handmove .seniorsearch h3 span {
  float: left;
  font-size: 12px;
  white-space: nowrap;
  margin-right: 5px;
  _margin-right: 3px;
  line-height: 30px;
  padding-left: 10px;
  font-family: "微软雅黑";
  color: #9B9B9B;
  text-shadow: 1px 1px 1px white;
}
.handmove a.close_popup,
.handmove .closedialog {
  position: absolute;
  font-size: 0;
  padding: 8px 10px 11px;
  -webkit-text-size-adjust: none;
  right: 0;
  top: 0;
  z-index: 10;
}
.handmove a.shiying_popup {
  right: 45px;
}
.handmove a.max_popup {
  right: 20px;
}
.handmove a.max_popup .i-pop-max {
  width: 11px;
  height: 11px;
  display: block;
  background: url(../images/ico_popup.gif) 0 -11px no-repeat;
}
.handmove a.back_popup {
  right: 20px;
}
.handmove a.back_popup .i-pop-max {
  width: 11px;
  height: 11px;
  display: block;
  background: url(../images/ico_popup.gif) 0 0 no-repeat;
}
.seniorsearch h3 {
  min-height: 30px;
  background: whiteSmoke;
  border-bottom: 1px solid #E5E5E5;
  position: relative;
  _height: 30px;
  border-radius: 3px 3px 0 0;
  cursor: move;
}
.i-pop-close {
  width: 13px;
  height: 13px;
  background: url(../images/close_popup.gif) -19px 0px no-repeat;
  display: block;
  filter: alpha(opacity=10);
  moz-opacity: 0.1;
  opacity: 1;
}
.i-pop-close:hover {
  background-position: -19px 0px;
  width: 13px;
  height: 13px;
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  opacity: 1;
}
.i-pop-shiying {
  width: 11px;
  height: 11px;
  display: block;
  background: url(../images/ico_popup.gif) 0 -22px no-repeat;
}
.popup_htmlContent {
  padding: 10px;
}
.popup_htmlContent table {
  width: 100%;
}
.popup_htmlContent table tr td{
  padding:5px 0;
}
.popup_htmlContent table tr td.lefttitle {
  text-align: right;
  height: 30px;
  white-space: nowrap;
  font-weight: bold;
  font-family: "Microsoft Yahei";
  color: #333;
}
.comfirmbox,
.system_Ico {
  text-align: center;
  height: 60px;
  padding-bottom: 10px;
  line-height: 60px;
  font-size: 14px;
  vertical-align: middle;
  font-family: "Microsoft Yahei";
  color: #666;
}
.comfirmbox:before {
  font-family: "FontAwesome";
  content: "\f059";
  font-size: 50px;
  color: #E16539;
  margin-right: 10px;
  vertical-align: middle;
}
.alert_ico:before {
  content: "\f06a";
  font-family: "FontAwesome";
  font-size: 50px;
  color: #F3A521;
  margin-right: 10px;
  vertical-align: middle;
}
.info_ico:before {
  font-family: "FontAwesome";
  content: "\f05a";
  font-size: 50px;
  color: #3193E7;
  margin-right: 10px;
  vertical-align: middle;
}
.success_ico:before {
  font-family: "FontAwesome";
  content: "\f058";
  font-size: 50px;
  color: #6DBC0F;
  margin-right: 10px;
  vertical-align: middle;
}
.fail_ico:before {
  font-family: "FontAwesome";
  content: "\f057";
  font-size: 50px;
  color: #D63A00;
  margin-right: 10px;
  vertical-align: middle;
}
.comfirmbox_bottom {
  text-align: center;
}
.popup_htmlContent input:focus,
textarea:focus,
.formdataCon input[type=text]:focus,
select:focus {
  outline: none;
  border: #87C6F9 1px solid;
  box-shadow: 0 0 3px #67a6d9;
}
.dialogBoxbordercolor {
  height: auto;
  z-index: 99999;
  top: 20px;
  width: 300px;
  z-index: 100;
  position: absolute;
  background: white;
  border: 1px solid #8A8A8A;
  border-bottom-color: #6D6D6D;
  -webkit-box-shadow: 0 2px 8px 1px rgba(0, 0, 0, 0.35);
  -moz-box-shadow: 0 2px 8px 1px rgba(0, 0, 0, 0.35);
  -o-box-shadow: 0 2px 8px 1px rgba(0, 0, 0, 0.35);
  -ms-box-shadow: 0 2px 8px 1px rgba(0, 0, 0, 0.35);
  box-shadow: 0 2px 8px 1px rgba(0, 0, 0, 0.35);
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
}
.fuceng_buttom {
  text-align: center;
  padding: 10px 0;
  width: 100%;
}
/*四、按钮*/
.big_btn,
.btn {
  cursor: pointer;
  margin-right: 10px;
  -moz-box-shadow: inset 0px 1px 0px 0px #ffffff;
  -webkit-box-shadow: inset 0px 1px 0px 0px #ffffff;
  box-shadow: inset 0px 1px 0px 0px rgba(255, 255, 255, 0.5);
  -webkit-border-top-left-radius: 3px;
  -moz-border-radius-topleft: 3px;
  border-top-left-radius: 3px;
  -webkit-border-top-right-radius: 3px;
  -moz-border-radius-topright: 3px;
  border-top-right-radius: 3px;
  -webkit-border-bottom-right-radius: 3px;
  -moz-border-radius-bottomright: 3px;
  border-bottom-right-radius: 3px;
  -webkit-border-bottom-left-radius: 3px;
  -moz-border-radius-bottomleft: 3px;
  border-bottom-left-radius: 3px;
  text-indent: 0px;
  display: inline-block;
  text-decoration: none;
  text-align: center;
  font-family: "SimSun";
  font-size: 12px;
  height: 25px;
  line-height: 25px;
  width: 80px;
  vertical-align: middle;
  box-sizing: border-box;
  background-color: #f0f0ee;
  border: 1px solid #cccccc;
  color: #666;
  -webkit-text-shadow: 1px 1px 1px #ffffff;
  -moz-text-shadow: 1px 1px 1px #ffffff;
  -o-text-shadow: 1px 1px 1px #ffffff;
  -ms-text-shadow: 1px 1px 1px #ffffff;
  text-shadow: 1px 1px 1px #ffffff;
}
.big_btn:hover,
.btn:hover {
  background-color: #E9E9E9;
}
.big_btn:active,
.btn:active {
  position: relative;
  top: 1px;
}
.big_btn.a2,
.btn.a2 {
  margin-top: 10px;
}
.btn-green,
.big_btn-green {
  background-color: #32b200;
  border: 1px solid #438818;
  color: #ffffff;
  -webkit-text-shadow: 1px 1px 1px #333333;
  -moz-text-shadow: 1px 1px 1px #333333;
  -o-text-shadow: 1px 1px 1px #333333;
  -ms-text-shadow: 1px 1px 1px #333333;
  text-shadow: 1px 1px 1px #333333;
}
.btn-green:hover,
.big_btn-green:hover {
  background-color: #3cbd0a;
}
.btn-red {
  border: 1px solid #9e0000;
  color: #ffffff;
  -webkit-text-shadow: 1px 1px 1px #333333;
  -moz-text-shadow: 1px 1px 1px #333333;
  -o-text-shadow: 1px 1px 1px #333333;
  -ms-text-shadow: 1px 1px 1px #333333;
  text-shadow: 1px 1px 1px #333333;
  background-color: #bd0606;
}
.btn-red:hover {
  background-color: #d63333;
}
.btn-yellow {
  border: 1px solid #a1a100;
  color: #ffffff;
  -webkit-text-shadow: 1px 1px 1px #333333;
  -moz-text-shadow: 1px 1px 1px #333333;
  -o-text-shadow: 1px 1px 1px #333333;
  -ms-text-shadow: 1px 1px 1px #333333;
  text-shadow: 1px 1px 1px #333333;
  background-color: #e0e000;
}
.btn-yellow:hover {
  background-color: #dbdb04;
}
.big_btn {
  width: 100px;
  height: 35px;
  line-height: 35px;
  font-size: 14px;
}
.btn-max {
  width: 200px;
  height: 35px;
  line-height: 35px;
  font-size: 14px;
  margin-right: 0px;
}
.btn-plus {
  width: 100%;
  height: 40px;
  line-height: 40px;
  font-size: 14px;
  margin-right: 0px;
}
/*五、AUTOFROM 表单*/
/*5.1-主体框架*/
.mcssform table {
  border: none;
  width: 100%;
}
.mcssform table tr td {
  height: 35px;
  text-align: left;
}
.mcssform table td.lefttitle {
  text-align: right;
  white-space: nowrap;
  font-weight: bold;
  font-family: "Microsoft Yahei";
  width: 100px;
}
.mcssform textarea {
  margin: 5px 0;
}
.Submitbutton {
  text-align: center;
  border-top: #E7E7E7 1px solid;
  padding: 10px 0;
  margin: 10px 0;
}
/*5.2-autofrom标题字*/
.formBox h3 {
  padding-left: 5px;
  border-bottom: #E7E7E7 1px solid;
  font: bold 14px/30px "微软雅黑";
  margin-bottom: 10px;
}
.formBox .mcssform {
  width: 90%;
  margin: 0 auto;
}
/*5.3-INPUT控件设置*/
input.selectbutton {
  margin: 0;
  padding: 0;
  height: 30px;
  border: 1px solid #D4D4D4;
  text-shadow: 1px 1px 0 #FFF;
  color: #333;
  cursor: pointer;
  outline: none;
  background-color: #ECECEC;
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f4f4f4), to(#ececec));
  background-image: -moz-linear-gradient(#f4f4f4, #ececec);
  background-image: -o-linear-gradient(#f4f4f4, #ececec);
  background-image: linear-gradient(#f4f4f4, #ececec);
  -webkit-border-radius: 0 2px 2px 0;
  -moz-border-radius: 0 2px 2px 0;
  border-radius: 0 2px 2px 0;
  zoom: 1;
  line-height: 25px;
  padding: 0 12px;
  border-left: none;
  float: left;
}
input.selectbutton:hover,
.select_down:hover input.selectbutton,
.zhineng_select:hover input.selectbutton {
  text-decoration: none;
  border-color: #3072B3;
  border-bottom-color: #2A65A0;
  text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.3);
  color: white;
  background-color: #3072B3;
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#599bdc), to(#3072b3));
  background-image: -moz-linear-gradient(#599bdc, #3072b3);
  background-image: -o-linear-gradient(#599bdc, #3072b3);
  background-image: linear-gradient(#599bdc, #3072b3);
}
input[type=text].select_txt_input {
  float: left;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}
input[type=text].select_txt_input:focus {
  outline: none;
}
.select_down:hover input,
.zhineng_select:hover input {
  border-color: #3072B3;
  border-bottom-color: #2A65A0;
}
/*Input 样式美化*/
input[type=text],
textarea,
input[type=password] {
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  border: 1px solid #D4D4D4;
  -webkit-box-shadow: inset 0 2px 5px #eeeeee;
  -moz-box-shadow: inset 0 2px 5px #eeeeee;
  -o-box-shadow: inset 0 2px 5px #eeeeee;
  -ms-box-shadow: inset 0 2px 5px #eeeeee;
  box-shadow: inset 0 2px 5px #eeeeee;
  color: #333;
  min-height: 30px;
  font-size: 12px;
  resize: none;
  padding-left: 5px;
  box-sizing: border-box;
}
input[type=text]:focus,
textarea:focus,
input[type=password]:focus {
  outline: none;
  border: #87C6F9 1px solid;
  box-shadow: 0 0 3px #67a6d9;
}
input[type=radio],
input[type=checkbox] {
  margin-right: 3px;
}
select {
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-shadow: inset 0 2px 5px #eeeeee;
  -moz-box-shadow: inset 0 2px 5px #eeeeee;
  -o-box-shadow: inset 0 2px 5px #eeeeee;
  -ms-box-shadow: inset 0 2px 5px #eeeeee;
  box-shadow: inset 0 2px 5px #eeeeee;
  border: 1px solid #D4D4D4;
  min-height: 30px;
  line-height: 30px;
  padding-left: 3px;
  box-sizing: border-box;
}
input[disabled=disabled],
select[disabled=disabled],
select[readonly=true],
input[readonly=true],
select[disabled],
input[disabled],
input[readonly] {
  background: #F9F9F9;
  cursor: not-allowed;
}
.radio_label,
.checkbox_label {
  margin-right: 10px;
}
/*5.4-智能选择下拉框*/
.zhineng_select {
  position: relative;
}
.ul_selectList,
.div_selectList {
  background-color: #FFF;
  border: 1px solid #817f82;
  overflow: auto;
  position: absolute;
  top: 27px;
  left: 0;
  z-index: 9999999;
}
.ul_selectList li,
.div_selectList li {
  height: 25px;
  padding-left: 10px;
  line-height: 25px;
  color: #515151;
  cursor: pointer;
}
.ul_selectList li:hover,
.div_selectList li:hover,
.ul_selectList li.li_hover,
.div_selectList li.li_hover {
  background-color: #F0F0EE;
}
.div_selectList_shaixuan {
  border: #ddd 1px solid;
  height: 20px;
  margin: 5px;
}
.div_selectList_shaixuan .search_text_style {
  height: 20px;
  vertical-align: middle;
  border: none;
  padding-left: 6px;
}
.search_btn_style {
  height: 14px;
  width: 14px;
  border: none;
  background: url(../images/fangdajing.png) center no-repeat;
  vertical-align: middle;
}
.select_zuijin {
  height: 25px;
  line-height: 25px;
  background-color: #EAEAEA;
  padding-left: 10px;
  font-size: 12px;
  -webkit-text-shadow: 1px 1px 1px #ffffff;
  -moz-text-shadow: 1px 1px 1px #ffffff;
  -o-text-shadow: 1px 1px 1px #ffffff;
  -ms-text-shadow: 1px 1px 1px #ffffff;
  text-shadow: 1px 1px 1px #ffffff;
}
.select_zuijin a {
  color: #0000ee;
}
.uploadFileCon {
  padding: 5px 0;
}
.uploadFileCon a {
  display: inline-block;
  height: 30px;
  line-height: 30px;
  border: 1px solid #D4D4D4;
  text-shadow: 1px 1px 0 #333;
  color: #FFF;
  cursor: pointer;
  outline: none;
  background-color: #3072B3;
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#599bdc), to(#3072b3));
  background-image: -moz-linear-gradient(#599bdc, #3072b3);
  background-image: -o-linear-gradient(#599bdc, #3072b3);
  background-image: linear-gradient(#599bdc, #3072b3);
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  zoom: 1;
  padding: 0 5px;
  vertical-align: middle;
}
.uploadFileCon span.uploadImg {
  overflow: hidden;
}
.uploadFileCon span.uploadImg img {
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
}
.uploadFileCon span.labellink {
  display: inline-block;
  cursor: pointer;
  vertical-align: middle;
  padding: 2px 4px;
  text-align: center;
  border: 1px solid #D4D4D4;
  border-radius: 50%;
  border-color: #B53F3A;
  border-bottom-color: #A0302A;
  color: white;
  background-color: #DC5F59;
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#dc5f59), to(#b33630));
  background-image: -moz-linear-gradient(#dc5f59, #b33630);
  background-image: -o-linear-gradient(#dc5f59, #b33630);
  background-image: linear-gradient(#dc5f59, #b33630);
}
/*六、POPUP弹出框*/
.popupheadbg {
  height: 28px;
  line-height: 27px;
  padding: 0 28px 0 10px;
  -webkit-text-shadow: 0 1px 0 rgba(18, 91, 167, 0.7);
  -moz-text-shadow: 0 1px 0 rgba(18, 91, 167, 0.7);
  -o-text-shadow: 0 1px 0 rgba(18, 91, 167, 0.7);
  -ms-text-shadow: 0 1px 0 rgba(18, 91, 167, 0.7);
  text-shadow: 0 1px 0 rgba(18, 91, 167, 0.7);
  background-color: #EDF5F8;
  font-weight: bold;
  color: #95A7AE;
  font-family: "Arial";
  background-color: #BDC6CD;
  background: linear-gradient(top, #2673c4, #75a6da);
  background: -moz-linear-gradient(top, #2673c4, #75a6da);
  background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#2673c4), to(#75a6da));
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#2673c4', endColorstr='#75a6da');
  border-top: 1px solid #1E6BBC;
  border-bottom: 1px solid #699BD1;
  color: #FFF;
}
.dialog_title_txt {
  font-size: 14px;
  white-space: nowrap;
  line-height: 30px;
  color: #ffffff;
}
#fuchuceng_BG {
  filter: alpha(opacity=50);
  opacity: 0.5;
}
.dialogBoxbordercolor {
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
}
.closedialog {
  display: block;
  margin-top: 8px;
}
/*七、滚动条样式*/
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
/* 滚动槽 */
::-webkit-scrollbar-track {
  background: #FFF;
}
/* 滚动条滑块 */
::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: rgba(3, 3, 3, 0.3);
}
::-webkit-scrollbar-thumb:window-inactive {
  background: rgba(255, 0, 0, 0.4);
}
/*八、后退、刷新、新页面、Loading等待*/
.Public_Icon_postion {
  position: fixed;
  top: -3px;
  right: 5px;
  height: 30px;
  border: #666 1px solid;
  padding-top: 2px;
  background: url(../images/publicIcoBg.png) repeat-x;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
}
.Public_Icon_postion a {
  width: 35px;
  height: 29px;
  display: block;
  padding: 0 5px;
  float: left;
  text-align: center;
  overflow: hidden;
  font-size: 16px;
  line-height: 30px;
  color: #333;
  border-right: 1px #999 solid;
  font-family: "FontAwesome";
  -webkit-text-shadow: 1px 1px 1px #ffffff;
  -moz-text-shadow: 1px 1px 1px #ffffff;
  -o-text-shadow: 1px 1px 1px #ffffff;
  -ms-text-shadow: 1px 1px 1px #ffffff;
  text-shadow: 1px 1px 1px #ffffff;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}
.Public_Icon_postion a:last-child {
  border-right: none;
}
.Public_Icon_postion a:hover {
  color: #1E90FF;
  font-size: 18px;
}
.Public_Icon_postion:hover {
  -webkit-box-shadow: 0 2px 6px 0px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 2px 6px 0px rgba(0, 0, 0, 0.5);
  -o-box-shadow: 0 2px 6px 0px rgba(0, 0, 0, 0.5);
  -ms-box-shadow: 0 2px 6px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 0 2px 6px 0px rgba(0, 0, 0, 0.5);
}
.Public_Icon_postion a.goback:before {
  content: "\f1da";
}
.Public_Icon_postion a.refresh:before {
  content: "\f021";
}
.Public_Icon_postion a.pop:before {
  content: "\f08e";
}
/*
.loadingIcon{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 999999;
	font-size: 50px;
	color: #000;
	text-align: center;
	background:#F1F1F1 url("../images/admin_img/loading2.gif") center center no-repeat;
}*/
/*九、详情页面布局*/
.PosTitle {
  text-align: center;
  font: bold 18px/40px '微软雅黑';
  display: block;
  height: 40px;
  margin: 0px auto;
}
.subTitle {
  text-align: center;
  font: bold 14px/30px '微软雅黑';
  height: 30px;
  margin: 0px auto;
}
.subTitle span {
  color: red;
}
span.rmb_money {
  font-family: "Arial";
}
span.rmb_money:before {
  content: "\f157";
  margin-right: 3px;
  font-family: "FontAwesome";
}
span.dollar_money {
  font-family: "Arial";
}
span.dollar_money:before {
  content: "\f155";
  margin-right: 3px;
  font-family: "FontAwesome";
}
.showBox .showBoxTitle {
  font-family: "Microsoft Yahei";
  padding-left: 5px;
  font-size: 14px;
  font-weight: bold;
  text-align: left;
  color: #333;
  border-bottom: #E7E7E7 1px solid;
  margin-bottom: 10px;
  line-height: 30px;
}
.showBox .showBoxTitle:before {
  font-family: "FontAwesome";
  font-size: 12px;
  font-weight: normal;
  content: "\f152";
  margin-right: 5px;
}
/*十、权限分配页面*/
.setRightpage {
  width: 600px;
  margin: 20px auto;
}
.setRightpage table {
  border: none;
}
.rolelist {
  padding: 5px;
  padding-top: 10px;
  width: 250px;
  background: #FAFAFA;
  border: #EAEAEA 1px solid;
  min-height: 350px;
}
.rolelist li {
  height: 24px;
  line-height: 24px;
  background: url(../images/ul_list_style.jpg) left center no-repeat;
  border-bottom: #F6F6F6 1px dashed;
}
.rolelist li a {
  color: #666;
  padding-left: 20px;
}
.rolelist li a.selectedItem {
  border: #5F9AD3 1px solid;
  display: block;
  box-shadow: 0 1px 2px 0px rgba(221, 234, 248, 0.35);
  background: #ffffff url(../images/set_arrowRight.png) 230px center no-repeat;
}
.menu_ztree {
  overflow-y: auto;
  padding: 5px;
  padding-top: 10px;
  width: 250px;
  background: #FAFAFA;
  border: #EAEAEA 1px solid;
  min-height: 350px;
}
.search_user_box {
  border: #EAEAEA 1px solid;
  background: #F5F5F5;
  border-bottom: none;
  width: 250px;
  padding: 5px;
}
.search_user_box .search_user_text {
  height: 20px;
  background: #ffffff url(../images/searchrightico.jpg) right center no-repeat;
}
.big_btn_save {
  margin: 10px 0;
  padding: 10px;
  text-align: center;
  border-top: #EAEAEA 1px solid;
}
.quanxian_title span {
  height: 22px;
  display: block;
  line-height: 22px;
  font-family: "Microsoft Yahei";
}
/*增加、减少数量：- 1 +*/
.numset {
  border: #CCC 1px solid;
  width: 25px;
  font-size: 14px;
  text-align: center;
  float: left;
  height: 30px;
  color: #CCC;
  line-height: 30px;
  box-sizing: border-box;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}
.numset:before {
  content: "";
  clear: both;
}
.numset:hover {
  color: #FFF;
  background-color: #E76A3D;
  border-color: #C55128;
}
.numset.minus {
  -webkit-border-top-left-radius: 3px;
  -webkit-border-bottom-left-radius: 3px;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
.numset.plus {
  -webkit-border-top-right-radius: 3px;
  -webkit-border-bottom-right-radius: 3px;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}
input.numInput {
  width: 30px;
  text-align: center;
  float: left;
  padding: 0px;
  border-left: none;
  border-right: none;
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
}
/*十一、Tips效果*/
