@charset "utf-8";
/*页面常用样式*/
.bd-1{border: 1px solid #ececec;}
.bdl-1{border-left: 1px solid #ececec;}
.bdr-1{border-right: 1px solid #ececec;}
.bdt-1{border-top: 1px solid #ececec;}
.bdb-1{border-bottom: 1px solid #ececec;}
.bd-dashed{border: 1px dashed #ececec;}
.bgc-main{background-color: #f0f3f8 !important;}
.bgc-white{background-color: #fff !important;}
.bgc-black{background-color: #000 !important;}
.bgc-link{background-color: #0080cc !important;}
.bgc-success{background-color: #98DC98 !important;}
.bgc-warn{background-color: #F9743C !important;}
.bgc-hint{background-color: #FFC36B !important;}
.bgc-gray{background-color: #c2c2c2 !important;}
.color-white{color: #fff;}
.color-black{color: #000;}
.color-link{color: #0080cc;}
.color-success{color: #98DC98;}
.color-warn{color: #F9743C;}
.color-hint{color: #FFC36B;}
.color-gray{color: #c2c2c2;}
.mgl-50{margin-left: 50px !important;}
.mgr-50{margin-right: 50px !important;}
.mgt-50{margin-top: 50px !important;}
.mgb-50{margin-bottom: 50px !important;}
.pdl-50{padding-left: 50px !important;}
.pdr-50{padding-right: 50px !important;}
.pdt-50{padding-top: 50px !important;}
.pdb-50{padding-bottom: 50px !important;}
.dva{display: inline-block;vertical-align: middle;}
.inline-block{display: inline-block;}
.block{display: block;}
.hide{display: none;}
.cursor-p{cursor: pointer;}
.fs-16{font-size: 16px;}
.h100-overhidden{
	height: 100%;
	overflow: hidden;
}
.h100-overauto{
	height: 100%;
	overflow: auto;
}
.ahover-change{
	color: #000;
}
.ahover-change:hover{
	color: #0080cc;
}
.imghover:hover img{
	animation: imghover .8s linear both;
}
@keyframes imghover{
	0%{transform: rotateY(0deg);}
	100%{transform: rotateY(360deg);}
}
/*input,select,textarea基础样式*/
.c-input,.c-select,.c-textarea{
	padding-left: 10px;
	width: 100%;
	height: 30px;
	line-height: 30px;
	border: 1px solid #ccc;
}
.c-textarea{
	height: 105px;
	resize: none;
	overflow: auto;
}
.c-input:hover,.c-select:hover,.c-textarea:hover{
	border-color: #aaa !important;
}
.c-input:focus,.c-select:focus,.c-textarea:focus{
	border-color: #21a6de !important;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
input::-moz-placeholder,
textarea::-moz-placeholder,
input:-moz-placeholder,
textarea:-moz-placeholder,
input:-ms-input-placeholder,
textarea:-ms-input-placeholder{
    color:#c2c2c2;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button{
    -webkit-appearance: none !important;
    margin: 0;
}
input[type="number"]{-moz-appearance:textfield;}
input::-ms-clear{display:none;}
/*超链接样式*/
.c-link{
	color: #0080cc;
	text-decoration: none;
	cursor: pointer;
}
.c-link:hover{
	text-decoration: underline;
	color: #0066FF;
}
/*单行超出隐藏省略号显示*/
.c-omit{
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
/*两行超出隐藏省略号显示*/
.c-omit-two{
	height: 40px;
	line-height: 20px;
	overflow: hidden;
}
.c-omit-two:before{
	content: '';
	float: left;
	width: 5px;
	height: 40px;
}
.c-omit-two:after{
	content: '…';
	float: right;
	position: relative;
	left: 100%;
	top: -20px;
	padding-right: 5px;
	width: 1em;
	height: 20px;
	line-height: 20px;
	margin-left: -1em;
	background-color: #fff;
	box-shadow: 0 0 10px 5px #fff;
}
.c-omit-two .comit-two-info{
	float: right;
	width: 100%;
	margin-left: -5px;
	word-break: break-all;
}
.c-dialog .c-omit-two{
	height: 60px;
	line-height: 30px;
}
.c-dialog .c-omit-two:before{
	height: 60px;
}
.c-dialog .c-omit-two:after{
	top: -30px;
	height: 30px;
	line-height: 30px;
}

/*框架1--start*/
.cframe1-top{
	position: fixed;
	top: 0;
	left: 0;
	min-width: 1200px;
	width: 100%;
	height: 60px;
	line-height: 60px;
	background-color: #fff;
	border-bottom: 1px solid #ccc;
	z-index: 1001;
	box-shadow: 0 0 5px 2px rgba(0,0,0,.2);
}
.cframe1-top-logo{
	height: 60px;
}
.cframe1-top-logo img{
	display: inline-block;
	height: 100%;
}
.cframe1-top-menu{
	float: right;
}
.cframe1-top-menu > li{
	position: relative;
	float: left;
	margin: 0 10px;
}
.cframe1-menu-first{
	position: relative;
	display: block;
	padding: 0 20px;
	height: 60px;
	font-size: 16px;
	color: #000;
}
.cframe1-menu-line{
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 3px;
	text-align: center;
}
.cframe1-menu-first.choice .cframe1-menu-line:before{
	content: '';
	display: inline-block;
	width: 80%;
	height: 100%;
	background-color: #0080cc;
	vertical-align: top;
	animation: menuLine .3s linear both;
}
@keyframes menuLine{
	0%{width: 0%;}
	100%{width: 80%;}
}
.cmenu-single{
	position: absolute;
	top: 60px;
	left: 50%;
	width: 160px;
	margin-left: -80px;
	background-color: #fff;
	border: 1px solid #ccc;
	z-index: 1000;
}
.cmenu-single li a{
	position: relative;
	display: block;
	padding: 0 10px;
	border-top: 1px solid #ccc;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	cursor: pointer;
}
.cmenu-single li:nth-of-type(1) a{
	border-top: 0;
}
.cmenu-single li a:hover{
	color: #0080cc;
}
.cmenu-multistage{
	position: absolute;
	top: 60px;
	left: 50%;
	width: 160px;
	margin-left: -80px;
	background-color: #fff;
	border: 1px solid #ccc;
	border-bottom: 0;
	z-index: 1000;
}
.cmenu-multistage ul{
	border: 1px solid #ccc;
	border-bottom: 0;
}
.cmenu-multistage li{
	position: relative;
	height: 40px;
	line-height: 40px;
	border-bottom: 1px solid #ccc;
	cursor: pointer;
}
.cmenu-multistage li a{
	display: block;
	padding: 0 10px 0 25px;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	vertical-align: top;
}
.cmenu-multistage li:hover > i,
.cmenu-multistage li:hover > a{
	color: #0080cc;
}
.cmenu-multistage li i{
	position: absolute;
	left: 5px;
	top: 1px;
	font-size: 14px;
}
.cmenu-multistage-hidemenu{
	position: absolute;
	left: -160px;
	top: -1px;
	width: 160px;
}
.cmenu-tile{
	position: fixed;
	top: 60px;
	left: 50%;
	width: 1200px;
	margin-left: -600px;
	background-color: #fff;
	border: 1px solid #eee;
	box-shadow: 0 2px 5px 1px #eee;
	z-index: 1000;
}
.cmenu-tile-second{
	padding: 5px 10px;
	border-bottom: 1px solid #eee;
	font-size: 16px;
	color: #000;
}
.cmenu-tile li a{
	position: relative;
	display: block;
	padding: 0 10px;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	cursor: pointer;
}
.cmenu-tile li a:hover,
.cmenu-combination-second:hover{
	background-color: #f2f4f5;
	color: #0080cc;
	border-radius: 3px;
}
.cmenu-combination{
	position: fixed;
	top: 60px;
	left: 50%;
	width: 1202px;
	margin-left: -600px;
	background-color: #fff;
	border: 1px solid #eee;
	z-index: 1000;
	border-radius: 3px;
	box-shadow: 0 2px 5px 1px #eee;
}
.cmenu-combination > li{
	float: left;
	width: 120px;
	padding: 10px;
	line-height: normal;
	text-align: center;
}
.cmenu-combination-second img{
	height: 50px;
}
.cframe1-top-operate > li{
	position: relative;
	float: left;
	padding: 0 15px;
	height: 60px;
	color: #000;
	font-size: 14px;
	cursor: pointer;
}
.cframe1-top-operate > li:hover{
	color: #0080cc;
}
.cframe1-top-operate .top-hidebox:before{
	border-bottom-color: #ccc;
}
.cframe1-top-operate .top-hidebox:after{
	content: '';
	position: absolute;
	top: -17.5px;
	left: 50%;
	margin-left: -9px;
	border: 9px solid transparent;
	border-bottom-color: #fff;
}
.cframe1-content{
	position: relative;
	min-width: 1200px;
	width: 100%;
	height: 100%;
	padding-top: 60px;
	overflow: auto;
	z-index: 999;
}
/*框架1--end*/

/*框架2--start*/
.cframe2-top{
	position: fixed;
	top: 0;
	left: 0;
	min-width: 1200px;
	width: 100%;
	height: 60px;
	line-height: 60px;
	background-color: #407cd5;
	z-index: 999;
}
.cframe2-topswitch{
	float: left;
	width: 50px;
	height: 60px;
	line-height: 64px;
	font-size: 26px;
	text-align: center;
	color: #fff;
	cursor: pointer;
}
.cframe2-top-logo{
	color: #fff;
}
.cframe2-top-logo img{
	display: inline-block;
	vertical-align: middle;
}
.cframe2-top-menu > li{
	position: relative;
	float: left;
	padding: 0 15px;
	height: 60px;
	color: #fff;
	font-size: 16px;
	cursor: pointer;
}
.cframe2-top-menu > li:hover{
	background-color: #4070B6;
}
.icon-top{
	display: inline-block;
	font-size: 24px;
	text-align: center;
	vertical-align: middle;
}
.hint-num{
	display: inline-block;
	width: 30px;
	height: 20px;
	line-height: 20px;
	border-radius: 5px;
	background-color: #fa9a32;
	text-align: center;
	color: #fff;
	vertical-align: middle;
}
.ctop-search{
	display: none;
	position: absolute;
	right: 20px;
	top: 16px;
	width: 140px;
	padding-left: 0;
	border: none;
	border-bottom: 1px solid #fff;
	background-color: rgba(255,255,255,0);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#00ffffff,endColorstr=#00ffffff);
	color: #fff;
	zoom: 1;
}
.top-hidebox{
	position: absolute;
	left: 50%;
	top: 60px;
	border: 1px solid #ccc;
	background-color: #fff;
	font-size: 14px;
	color: #000;
	box-shadow: 0 0 5px 1px #eee;
}
.top-hidebox:before{
	content: '';
	position: absolute;
	top: -20px;
	left: 50%;
	margin-left: -10px;
	border: 10px solid transparent;
	border-bottom-color: #fff;
}
.hidebox-support{
	width: 160px;
	margin-left: -80px;
}
.hidebox-support li:hover,
.hidebox-message li:hover{
	background-color: #f8f8f8;
}
.hidebox-message{
	width: 280px;
	margin-left: -140px;
}
.hidebox-message li{
	padding:10px;
	line-height: normal;
	border-bottom: 1px solid #ccc;
}
.hidebox-message li a{
	position: relative;
	display: block;
	padding-left: 25px;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}
.hidebox-message li a i{
	position: absolute;
	left: 0;
	top: 0;
	font-size: 18px;
}
.hidebox-user{
	width: 200px;
	margin-left: -100px;
}
.hidebox-user li{
	border-bottom: 1px solid #ccc;
}
.c-logout{
	height: 40px;
	line-height: 38px;
}
.cframe2-content{
	position: relative;
	min-width: 1200px;
	width: 100%;
	height: 100%;
	padding-top: 60px;
	padding-left: 200px;
}
.cframe2-left-menu{
	position: fixed;
	left: 0;
	top: 60px;
	bottom: 0;
	width: 200px;
	background-color: #3b4960;
	z-index: 998;
}
.cframe2-left-menu > ul{
	height: 100%;
	overflow-x: hidden;
	overflow-y: auto;
}
.cframe2-left-menu li{
	border-bottom: 1px solid #626d80;
}
.cframe2-menu-hide li{
	border: 0;
	border-top: 1px solid #626d80;
}
.cframe2-left-menu a{
	display: block;
	padding: 0 5px;
	height: 50px;
	font-size: 16px;
	color: #fff;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}
.cframe2-left-menu li > a:hover,
.cframe2-left-menu a.choice{
	background-color: #3e5171;
}
.cframe2-menu-list{
	position: relative;
	padding-left: 50px !important;
	padding-right: 20px !important;
}
.cframe2-menu-list .cicon-left-menu{
	position: absolute;
	left: 0;
	top: 0;
	width: 50px;
	line-height: 54px;
	text-align: center;
	font-size: 24px;
}
.cframe2-menu-list.no{
	padding: 0 0 0 50px !important;
}
.cframe2-menu-list .cmenu-arrow{
	position: absolute;
	top: 0;
	right: 0;
	width: 30px;
	height: 50px;
	background: url(c-ui/c-images/c-icon/cicon-menu-down.png) no-repeat center;
	background-size: 20px;
}
.cframe2-menu-list .cmenu-arrow.choice{
	background-image: url(c-ui/c-images/c-icon/cicon-menu-up.png);
}
.cframe2-right-content{
	position: relative;
	height: 100%;
	z-index: 997;
}
.cframe2-iframe-title{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 40px;
	border-bottom: 1px solid #aaa;
	background-color: #fff;
}
.cframe2-arrow{
	position: absolute;
	top: 0;
	width: 30px;
	height: 39px;
	line-height: 40px;
	background-color: #fff;
	font-size: 20px;
	font-weight: bold;
	text-align: center;
	color: #0080cc;
	cursor: pointer;
	z-index: 99;
}
.cframe2-arrow-left{
	left: 0;
	border-right: 1px solid #ccc;
}
.cframe2-arrow-right{
	right: 0;
	border-left: 1px solid #ccc;
}
.cframe2-home{
	position: absolute;
	top: 0;
	left: 30px;
	width: 40px;
	height: 39px;
	line-height: 39px;
	background-color: #fff;
	border-right: 1px solid #ccc;
	font-size: 28px;
	text-align: center;
	color: #aaa;
	z-index: 99;
}
.cframe2-home i{
	font-size: 28px;
}
.cframe2-title-box{
	position: relative;
	padding-left: 70px;
	padding-right: 30px;
	height: 40px;
	white-space: nowrap;
	z-index: 98;
	overflow: hidden;
}
.cframe2-title-box li{
	position: relative;
	display: inline-block;
	height: 39px;
	border-right: 1px solid #ccc;
}
.cframe2-title-box li.choice,
.cframe2-home.choice{
	background-color: #f8f8f8;
}
.cframe2-title-box li.choice a{
	color: #0080cc;
}
.cframe2-title-box li.choice span{
	color: #0080cc;
}
.cframe2-title-box li a{
	display: block;
	padding: 0 25px 0 10px;
	line-height: 40px;
	font-size: 14px;
	text-align: center;
}
.cframe2-title-box .tab-close{
	position: absolute;
	right: 5px;
	top: 14px;
	display: inline-block;
	width: 14px;
	height: 14px;
	line-height: 10px;
	border: 1px solid transparent;
	text-align: center;
	cursor: pointer;
	color: #bbb;
	font-size: 12px;
	border-radius: 50%;
}
.cframe2-title-box .tab-close:hover{
	border-color: #0080cc;
	color: #0080cc;
}
.cmenu-right{
	position: fixed;
	width: 80px;
	line-height: 30px;
	padding-top: 8px;
	text-align: center;
	z-index: 2019;
	overflow: hidden;
}
.cmenu-right dl{
	position: relative;
	background-color: #fff;
	border: 1px solid #ccc;
	border-radius: 5px;
}
.cmenu-right dl:before{
	content: '';
	position: absolute;
	top: -16px;
	left: 50%;
	width: 0;
	margin-left: -8px;
	border: 8px solid transparent;
	border-bottom-color: #ccc;
}
.cmenu-right dd:hover{
	background-color: #eee;
	cursor: pointer;
}
.cframe2-iframe{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	padding-top: 40px;
	overflow: hidden;
}
.cframe2-iframe iframe{
	width: 100%;
	height: 100%;
}
/*框架2--end*/

/*框架3--start*/
.cframe3-top{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 60px;
	line-height: 60px;
	background-color: #407cd5;
	z-index: 999;
}
.cframe3-topswitch{
	float: left;
	width: 50px;
	height: 60px;
	line-height: 60px;
	font-size: 26px;
	text-align: center;
	color: #fff;
	cursor: pointer;
}
.cframe3-top-menu li{
	padding: 0 20px;
	height: 60px;
	font-size: 18px;
	color: #fff;
	cursor: pointer;
}
.cframe3-top-menu li.choice{
	background-color: #4070B6;
}
.cframe3-top-operate > li{
	position: relative;
	float: left;
	padding: 0 15px;
	height: 60px;
	color: #fff;
	font-size: 14px;
	cursor: pointer;
}
.cframe3-top-operate > li:hover{
	background-color: #4070B6;
}
.cframe3-content{
	position: relative;
	min-width: 1200px;
	width: 100%;
	height: 100%;
	padding-top: 60px;
	padding-left: 200px;
}
.cframe3-left-menu{
	position: fixed;
	left: 0;
	top: 60px;
	bottom: 0;
	width: 200px;
	background-color: #3b4960;
	z-index: 998;
}
.cframe3-menu-box{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow-x: hidden;
	overflow-y: auto;
}
.cframe3-menu-box.active{
	animation: rotate 1s ease both;
}
@keyframes rotate{
	0%{transform: rotateY(-90deg);opacity: 0;}
	100%{transform: rotateY(0deg);opacity: 1;}
}
.cframe3-menu-box li{
	border-bottom: 1px solid #626d80;
}
.cframe3-menu-box a{
	display: block;
	padding: 0 5px;
	height: 50px;
	font-size: 16px;
	color: #fff;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}
.cframe3-menu-box a:hover,
.cframe3-menu-box a.choice{
	background-color: #3e5171;
}
.cframe3-menu-list{
	position: relative;
	padding-left: 50px !important;
	padding-right: 30px !important;
}
.cframe3-menu-list .cicon-left-menu{
	position: absolute;
	left: 0;
	top: 0;
	width: 50px;
	line-height: 54px;
	text-align: center;
	font-size: 24px;
}
.cframe3-menu-list.no{
	padding: 0 0 0 50px !important;
}
.cframe3-menu-list .cmenu-arrow{
	position: absolute;
	top: 0;
	right: 0;
	width: 30px;
	height: 50px;
	background: url(c-ui/c-images/c-icon/cicon-menu-down.png) no-repeat center;
	background-size: 20px;
}
.cframe3-menu-list .cmenu-arrow.choice{
	background-image: url(c-ui/c-images/c-icon/cicon-menu-up.png);
}
.cframe3-menu-hide li{
	border: 0;
	border-top: 1px solid #626d80;
}
.cframe3-right-content{
	position: relative;
	height: 100%;
	z-index: 997;
	background-color: #fff;
}
.cframe3-iframe-title{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 40px;
	border-bottom: 1px solid #aaa;
	background-color: #fff;
}
.cframe3-arrow{
	position: absolute;
	top: 0;
	width: 30px;
	height: 39px;
	line-height: 40px;
	background-color: #fff;
	font-size: 20px;
	font-weight: bold;
	text-align: center;
	color: #0080cc;
	cursor: pointer;
	z-index: 99;
}
.cframe3-arrow-left{
	left: 0;
	border-right: 1px solid #ccc;
}
.cframe3-arrow-right{
	right: 0;
	border-left: 1px solid #ccc;
}
.cframe3-home{
	position: absolute;
	top: 0;
	left: 30px;
	width: 40px;
	height: 39px;
	line-height: 39px;
	background-color: #fff;
	border-right: 1px solid #ccc;
	text-align: center;
	color: #aaa;
	z-index: 99;
}
.cframe3-home i{
	font-size: 28px;
}
.cframe3-home.choice{
	background-color: #eee;
}
.cframe3-title-box{
	position: relative;
	padding-left: 70px;
	padding-right: 30px;
	height: 40px;
	white-space: nowrap;
	z-index: 98;
	overflow: hidden;
}
.cframe3-title-box li{
	position: relative;
	display: inline-block;
	height: 38px;
	border-right: 1px solid #ccc;
}
.cframe3-title-box li.choice{
	background-color: #eee;
}
.cframe3-title-box li.choice a{
	color: #0080cc;
}
.cframe3-title-box li.choice span{
	border-color: #0080cc;
	color: #0080cc;
}
.cframe3-title-box li a{
	display: block;
	padding: 0 30px 0 10px;
	line-height: 40px;
	font-size: 16px;
	text-align: center;
}
.cframe3-title-box .tab-close{
	position: absolute;
	right: 5px;
	top: 14px;
	display: inline-block;
	width: 14px;
	height: 14px;
	line-height: 10px;
	border: 1px solid #ccc;
	border-radius: 50%;
	text-align: center;
	cursor: pointer;
	color: #bbb;
	font-size: 12px;
}
.cframe3-title-box .tab-close:hover{
	border-color: #0080cc;
	color: #0080cc;
}
.cframe3-iframe{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	padding-top: 40px;
	overflow: hidden;
}
.cframe3-iframe iframe{
	width: 100%;
	height: 100%;
}
/*框架3--end*/

/*组件样式--start*/
/*表格--start*/
.c-table table tr.active,
.c-table table tr:hover{
	background-color: #f6f8f9;
}
.c-table table tr.c-table-head{
	background-color: #e9f6fb !important;
}
.c-table table th{
	position: relative;
	line-height: 40px;
	border: 1px solid #b1daeb;
	color: #0080cc;
}
.c-table table td{
	position: relative;
	line-height: 40px;
	border: 1px solid #ededed;
	text-align: center;
}
.c-table.ctable-even-color tr:nth-of-type(2n){
	background-color: #f6f8f9;
}
.c-table .ctable-tr-on,
.c-table .ctable-td-on{
	background-color: #F0F9EB !important;
}
.c-table .ctable-tr-warn,
.c-table .ctable-td-warn{
	background-color: #FDF5E6 !important;
}
.ctable-link-list:hover{
	background-color: #E8ECEC;
}
/*表格隐藏操作样式*/
.ctable-menuhide,
.ctable-fold{
	position: relative;
	width: 40px;
	cursor: pointer;
}
.ctable-menuhide .ctable-more{
	display: inline-block;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	color: #0080cc;
}
.ctable-menuhide ul{
	position: absolute;
	top: -1px;
	right: 0;
	border: 1px solid #b1daeb;
	background-color: #fff;
	white-space: nowrap;
	overflow: hidden;
}
.ctable-menuhide ul li{
	display: inline-block;
	height: 40px;
	line-height: 40px;
	vertical-align: top;
}
.ctable-menuhide ul li:hover{
	background-color: #e9f6fb;
}
/*表格排序和多层级图标*/
.ctable-sort i.csort-up{
	border-bottom-color: #c0c4cc;
}
.ctable-sort i.csort-up.click{
	border-bottom-color: #0080cc;
}
.ctable-sort i.csort-down{
	border-top-color: #c0c4cc;
	margin-top: 2px;
}
.ctable-sort i.csort-down.click{
	border-top-color: #0080cc;
}
.cicon-add{
	background-image: url(c-ui/c-images/c-icon/cicon-table-add.png);
}
.cicon-add.click{
	background-image: url(c-ui/c-images/c-icon/cicon-table-minus.png);
}
/*表格拖拽样式*/
.ctable-drag-column th { cursor: move; }
.ctable-drag-title{
	height: 40px;
	line-height: 40px;
	background-color: #e9f6fb;
	border: 1px solid #b1daeb;
	border-right: 0;
	color: #0080cc;
	font-weight: bold;
	text-align: center;
}
.ctable-drag-title > div{
	border-right: 1px solid #b1daeb;
}
.ctable-drag-item{
	position: relative;
	display: inline-block;
	width: 100%;
	padding: 0 10px;
	line-height: 20px;
}
.ctable-drag-content{
	position: relative;
	background-color: #fff;
	text-align: center;
}
.ctable-drag-content li{
	line-height: 40px;
	border: 1px solid #ededed;
	border-right: 0;
	border-top: 0;
}
.ctable-drag-content li:hover{
	background-color: #f6f8f9;
}
.ctable-drag-content li > div{
	border-right: 1px solid #ededed;
}
/*表格筛选样式*/
.ctable-filter{
	position: relative;
	display: inline-block;
	width: 30px;
	height: 100%;
	vertical-align: middle;
	font-weight: normal;
	color: #000;
}
.cicon-filter.choice{
	color: #0080cc;
}
.cicon-filter{
	font-size: 20px;
	color: #aeaeae;
	cursor: pointer;
}
.ctable-filter-hidebox{
	position: absolute;
	top: 25px;
	right: 0;
	width: 130px;
	background-color: #fff;
	border: 1px solid #ccc;
	z-index: 2;
}
.ctable-searchbox{
	position: relative;
	display: inline-block;
	width: 100%;
}
/*分页选中及鼠标hover效果*/
.cpaging-num li.choice,
.c-paging-box li:hover,
.c-paging-box a:hover{
	background-color: #edf1f5;
}
/*表格--end*/

/*表单--start*/
/*表单正确错误边框颜色及图标*/
.c-input-limit{
	width: 180px;
}
.c-form-error .c-input{
	border-color: #F9743C !important;
}
.c-form-error .cicon-form{
	display: inline-block;
	color: #F9743C !important;
}
.c-form-true .c-input{
	border-color: #98DC98 !important;
}
.c-form-true .cicon-form{
	display: inline-block;
	color: #98DC98 !important;
}
/*表单滑块颜色及选中颜色*/
.c-slider span{
	border: 1px solid #ccc;
	background-color: #f6f6f6;
}
.c-slider span.choice{
	background-color: #fff;
	border-color: #0080cc;
	color: #0080cc;
}
/*表单开关颜色及选中颜色*/
.c-switch{
	background-color: #ccc;
}
.c-switch.on{
	background-color: #0080cc;
}
/*表单标签选择样式*/
.c-form-label li{
	display: inline-block;
	margin-right: 10px;
	padding: 0 15px;
	height: 30px;
	line-height: 30px;
	border: 1px solid #ccc;
	cursor: pointer;
	position: relative;
}
.c-form-label li.choice{
	background: url(c-ui/c-images/c-icon/cicon-label-choice.png) no-repeat right bottom;
	border-color: #0080cc;
	color: #0080cc;
}
/*表单自定义单选多选图标*/
.ctable-checkbox i,
.c-checkbox i{
	background-image: url(c-ui/c-images/c-icon/cicon-checkbox.png);
}
.c-radio i{
	background-image: url(c-ui/c-images/c-icon/cicon-radio.png);
}
.ctable-checkbox i.choice,
.c-checkbox.choice i{
	background-image: url(c-ui/c-images/c-icon/cicon-checkbox-on.png);
}
.c-radio.choice i{
	background-image: url(c-ui/c-images/c-icon/cicon-radio-on.png);
}
/*表单--end*/

/*弹窗--start*/
/*弹窗大小和颜色*/
.c-dialog-top{
	position: relative;
	padding: 0 36px;
	height: 36px;
	line-height: 36px;
	background-color: #437CD5;
	color: #fff;
}
.c-dialog-top h3{
	font-size: 16px;
	font-weight: bold;
}
.c-dialog-bottom{
	height: 40px;
	line-height: 40px;
	background-color: #F0F8FC;
}
.c-dialog-s .c-dialog-bottom{
	padding-top: 10px;
	height: 50px;
	line-height: normal;
	background-color: #fff;
}
.c-dialog.c-dialog-s{
	width: 400px;
	height: 130px;
	margin-left: -200px;
	margin-top: -65px;
}
.c-dialog.c-dialog-s .c-dialog-body{
	height: 80px;
}
.c-dialog.c-dialog-l{
	width: 350px;
	height: 236px;
	margin-left: -175px;
	margin-top: -118px;
}
.c-dialog.c-dialog-l .c-dialog-body{
	height: 160px;
}
.c-dialog.c-dialog-xl{
	width: 600px;
	height: 396px;
	margin-left: -300px;
	margin-top: -198px;
}
.c-dialog.c-dialog-xl .c-dialog-body{
	height: 320px;
}
.c-dialog.c-dialog-xxl{
	width: 1000px;
	height: 586px;
	margin-left: -500px;
	margin-top: -298px;
}
.c-dialog.c-dialog-xxl .c-dialog-body{
	height: 510px;
}
.cdialog-title-success{
	color: #529B2D;
	font-size: 20px;
	font-weight: bold;
}
.cdialog-title-fail{
	color: #EC8C11;
	font-size: 20px;
	font-weight: bold;
}
.cdialog-title-hint{
	color: #0A5999;
	font-size: 20px;
	font-weight: bold;
}
/*顶部弹出消息提示样式*/
.c-message{
	position: fixed;
	top: -50px;
	left: 50%;
	padding: 0 10px;
	height: 30px;
	line-height: 30px;
	border: 1px solid transparent;
	z-index: 1001;
	border-radius: 5px;
}
.c-message.success{
	background-color: #f0f9eb;
	border-color: #67c23a;
	color: #67c23a;
}
.c-message.fail{
	background-color: #fef0f0;
	border-color: #f56c6c;
	color: #f56c6c;
}
/*弹窗--end*/

/*按钮--start*/
.c-btn-s{
	padding: 0 10px;
	height: 30px;
	line-height: 30px;
	background-color: #fff;
	border: 1px solid #ccc;
	font-size: 14px;
}
.c-btn-s:hover{
	background-color: #f9f9f9;
}
.c-btn-l{
	padding: 0 22px;
	height: 30px;
	line-height: 29px;
	background-color: #F4FBFE;
	border: 1px solid #ADE3FC;
	font-size: 14px;
}
.c-btn-l:hover{
	background-color: #E3F8FD;
}
.c-btn-xl{
	padding: 0 28px;
	height: 32px;
	line-height: 31px;
	background-color: #437CD5;
	border: 1px solid #437CD5;
	font-size: 16px;
	color: #fff;
}
.c-btn-xl:hover{
	background-color: #59A8E1;
	border-color: #59A8E1;
}
.c-btn-xl.warn{
	background-color: #F9743C;
	border-color: #F9743C;
}
.c-btn-xl.warn:hover{
	background-color: #F99063;
	border-color: #F99063;
}
.c-btn-xxl{
	padding: 0 45px;
	height: 42px;
	line-height: 41px;
	background-color: #FFA928;
	border: 1px solid #FFA928;
	font-size: 20px;
	color: #fff;
}
.c-btn-xxl:hover{
	background-color: #FBB751;
	border-color: #FBB751;
}
.c-btn-lesser{
	background-color: #fff;
	border: 1px solid #ccc;
	color: #000;
}
.c-btn-lesser:hover{
	background-color: #f6f6f6;
	border-color: #ccc;
}
.c-btn-xxl.c-btn-lesser{
	background-color: #f00;
	border-color: #f00;
	color: #fff;
}
.c-btn-xxl.c-btn-lesser:hover{
	background-color: #FC5757;
	border-color: #FC5757;
}
.c-icon-loading{
	animation: iconLoading 1.5s linear infinite;
}
@keyframes iconLoading{
	0%{transform: rotate(0deg);}
	100%{transform: rotate(360deg);}
}
.c-btn-gx1,.c-btn-gx2{
	display: inline-block;
	padding: 0 22px;	
	color: #5CB7DA;
	font-size: 16px;
	outline: none;
	cursor: pointer;
	vertical-align: middle;
	border-radius: 5px;
}
.c-btn-gx1{
	height: 30px;
	line-height: 29px;
	border: 1px dashed #5CB7DA;
	background-color: #EEF8FC;
}
.c-btn-gx1:hover{
	background-color: #E3F8FD;
}
.c-btn-gx2{
	height: 32px;
	line-height: 31px;
	border: 1px dashed #5FB8DB;
	background-color: #fff;
}
.c-btn-gx2:hover{
	background-color: #EEF8FC;
}
.c-btn-gx3{
	display: inline-block;
	padding: 0 34px;
	height: 36px;
	line-height: 36px;
	background: url(c-ui/c-images/c-bg/cbg-btn-gx3.png) no-repeat 0 0;
	background-size: 100% 100%;
	color: #fff;
	font-size: 16px;
	outline: none;
	border: 0;
	cursor: pointer;
	vertical-align: middle;
}
.c-btn-gx3:hover{
	text-decoration: underline;
}
/*按钮--end*/

/*标题--start*/
.c-title-icon{
	float: left;
	height: 34px;
	line-height: 38px;
	font-size: 22px;
	color: #0080cc;
}
.c-title-xl{
	padding-right: 20px;
	height: 52px;
	line-height: 52px;
	border-bottom: 1px solid #ececec;
}
.c-title-xl .c-title-icon{
	height: 51px;
	line-height: 54px;
	font-size: 32px;
}
.c-title-xl > h3{
	float: left;
	height: 100%;
	font-size: 22px;
}
.c-title-l{
	padding-right: 20px;
	height: 42px;
	line-height: 42px;
	background-color: #fafafa;
	border: 1px solid #ececec;
}
.c-title-l .c-title-icon{
	height: 40px;
	line-height: 44px;
	font-size: 28px;
}
.c-title-l > h3{
	float: left;
	height: 100%;
	font-size: 18px;
}
.c-title-s{
	padding-right: 20px;
	height: 36px;
	line-height: 36px;
	background-color: #fff;
	border: 1px solid #ececec;
}
.c-title-s .c-title-icon{
	height: 34px;
	line-height: 38px;
	font-size: 22px;
}
.c-title-s > h3{
	float: left;
	height: 100%;
	font-size: 14px;
}
.c-title-xl > i,
.c-title-l > i,
.c-title-s > i{
	float: right;
	height: 100%;
	font-size: 22px;
	color: #aeaeae;
	cursor: pointer;
}
.c-title-xl > i{
	line-height: 54px;
}
.c-title-l > i{
	line-height: 44px;
}
.c-title-s > i{
	line-height: 38px;
}
.c-title-gx1{
	padding-right: 20px;
	height: 36px;
	line-height: 34px;
	background-color: #f8f8f8;
	border: 1px solid #ececec;
	border-top: 2px solid #0080cc;
}
.c-title-gx1 > h3{
	float: left;
	font-size: 16px;
}
.c-title-gx2{
	padding-right: 20px;
	height: 36px;
	line-height: 36px;
}
.c-title-gx2 > h3{
	float: left;
	font-size: 16px;
	color: #0080cc;
}
/*标题--end*/

/*各种状态图片*/
.c-status-img{
	height: 160px;
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: auto 160px;
}
.c-status-qxxzcxtj .c-status-img{
	background-image: url(c-ui/c-images/c-img/cimg-status-qxxzcxtj.png);
}
.c-status-qxxzcxtj.c-status-color .c-status-img{
	background-image: url(c-ui/c-images/c-img/cimg-status2-qxxzcxtj.png);
}
.c-status-zwnr .c-status-img{
	background-image: url(c-ui/c-images/c-img/cimg-status-zwnr.png);
}
.c-status-zwnr.c-status-color .c-status-img{
	background-image: url(c-ui/c-images/c-img/cimg-status2-zwnr.png);
}
.c-status-zwtp .c-status-img{
	background-image: url(c-ui/c-images/c-img/cimg-status-zwtp.png);
}
.c-status-zwtp.c-status-color .c-status-img{
	background-image: url(c-ui/c-images/c-img/cimg-status2-zwtp.png);
}
.c-status-gnwhz .c-status-img{
	background-image: url(c-ui/c-images/c-img/cimg-status-gnwhz.png);
}
.c-status-gnwhz.c-status-color .c-status-img{
	background-image: url(c-ui/c-images/c-img/cimg-status2-gnwhz.png);
}
.c-status-zzjz .c-status-img{
	background-image: url(c-ui/c-images/c-img/cimg-status-zzjz.png);
}
.c-status-zzjz.c-status-color .c-status-img{
	background-image: url(c-ui/c-images/c-img/cimg-status2-zzjz.png);
}
.c-status-jjsx .c-status-img{
	background-image: url(c-ui/c-images/c-img/cimg-status-jjsx.png);
}
.c-status-jjsx.c-status-color .c-status-img{
	background-image: url(c-ui/c-images/c-img/cimg-status2-jjsx.png);
}
.c-status-404 .c-status-img{
	background-image: url(c-ui/c-images/c-img/cimg-status-404.png);
}
.c-status-404.c-status-color .c-status-img{
	background-image: url(c-ui/c-images/c-img/cimg-status2-404.png);
}
.c-status-zwqx .c-status-img{
	background-image: url(c-ui/c-images/c-img/cimg-status-zwqx.png);
}
.c-status-zwqx.c-status-color .c-status-img{
	background-image: url(c-ui/c-images/c-img/cimg-status2-zwqx.png);
}
.c-status-wlwt .c-status-img{
	background-image: url(c-ui/c-images/c-img/cimg-status-wlwt.png);
}
.c-status-wlwt.c-status-color .c-status-img{
	background-image: url(c-ui/c-images/c-img/cimg-status2-wlwt.png);
}
.c-status-yebz .c-status-img{
	background-image: url(c-ui/c-images/c-img/cimg-status-yebz.png);
}
.c-status-yebz.c-status-color .c-status-img{
	background-image: url(c-ui/c-images/c-img/cimg-status2-yebz.png);
}
.c-status-500 .c-status-img{
	background-image: url(c-ui/c-images/c-img/cimg-status-500.png);
}
.c-status-500.c-status-color .c-status-img{
	background-image: url(c-ui/c-images/c-img/cimg-status2-500.png);
}
.c-status-cphc .c-status-img{
	background-image: url(c-ui/c-images/c-img/cimg-status-cphc.png);
}
.c-status-cphc.c-status-color .c-status-img{
	background-image: url(c-ui/c-images/c-img/cimg-status2-cphc.png);
}

/*面板--start*/
.c-panel{
	position: relative;
	width: 100%;
	border: 1px solid #ececec;
}
.c-panel-title{
	position: relative;
	height: 42px;
	line-height: 42px;
	padding-left: 20px;
	background-color: #fafafa;
}
.c-panel.c-panel-s .c-panel-title{
	height: 36px;
	line-height: 36px;
	font-size: 14px;
}
.c-panel-title > h3{
	float: left;
	font-size: 18px;
}
.c-panel.c-panel-s .c-panel-title > h3{
	font-size: 14px;
}
.c-panel-title > i{
	float: right;
	width: 42px;
	height: 100%;
	line-height: 46px;
	text-align: center;
	font-size: 24px;
	color: #aeaeae;
	cursor: pointer;
}
.c-panel.c-panel-s .c-panel-title > i{
	width: 36px;
	line-height: 38px;
	font-size: 20px;
}
.c-panel-body{
	padding: 20px;
	border-top: 1px solid #ececec;
	background-color: #fff;
	overflow: auto;
}
.c-panel.c-panel-accordion{
	border-top: 0;
}
.c-panel.c-panel-accordion .c-panel-item{
	border-top: 1px solid #ececec;
}
.c-panel.c-panel-accordion .c-panel-item .c-panel-title{
	cursor: pointer;
}
.c-panel.c-tagbox .c-panel-title{
	border-bottom: 1px solid #ececec;
}
.c-panel.c-tagbox .c-panel-body{
	border-top: 0;
}
.c-panel-title .c-title-icon{
	float: left;
	height: 42px;
	line-height: 46px;
	font-size: 28px;
}
.c-panel.c-panel-s .c-panel-title .c-title-icon{
	float: left;
	height: 36px;
	line-height: 38px;
	font-size: 22px;
}
/*面板提示消息小圆圈样式*/
.cpanel-mess{
	display: inline-block;
	padding: 0 10px;
	height: 20px;
	line-height: 20px;
	background-color: #FFC36B;
	border-radius: 10px;
	color: #fff;
	font-size: 14px;
	font-weight: bold;
	text-align: center;
}
/*面板--end*/

/*tag切换--start*/
.c-tagbox .ctag-title li{
	position: relative;
	float: left;
	margin: 7px 0 0 10px;
	padding: 0 20px;
	height: 35px;
	line-height: 35px;
	background-color: #f9f9f9;
	border: 1px solid #ececec;
	font-size: 16px;
	cursor: pointer;
}
.c-tagbox .ctag-title li:hover{
	color: #0080cc;
}
.c-tagbox .ctag-title li.choice{
	background-color: #fff;
	border-bottom: 0;
	color: #0080cc;
}
.c-tagbox .ctag-title li.choice span{
	position: absolute;
	left: 0;
	top: -1px;
	width: 100%;
	height: 3px;
	background-color: #0080cc;
	animation: spanMove .2s linear both;
}
@keyframes spanMove{
	0%{width: 0;}
	100%{width: 100%;}
}
.c-title-xl .ctag-title li{
	height: 44px;
	line-height: 44px;
	background-color: transparent;
	border: 0;
}
.c-title-xl .ctag-title li span{
	top: 42px !important;
}
.c-title-xl .ctag-title li em{
	display: inline-block;
	padding: 0 5px;
	height: 20px;
	line-height: 20px;
	margin-left: 10px;
	background-color: #FFC36B;
	color: #fff;
	font-style: normal;
	border-radius: 5px;
}
.c-panel-s .ctag-title{
	height: 36px;
}
.c-panel-s .ctag-title li{
	height: 29px;
	line-height: 29px;
	font-size: 14px;
}
.c-panel-s .ctag-title li span,
.c-title-s .ctag-title li span{
	display: none;
}
.c-title-l .ctag-title{
	height: 40px;
}
.c-title-l .ctag-title li{
	height: 34px;
	line-height: 34px;
}
.c-title-s .ctag-title{
	height: 34px;
}
.c-title-s .ctag-title li{
	height: 28px;
	line-height: 28px;
	font-size: 14px;
}
/*tag切换--end*/

/*标题下方规则说明容器样式*/
.c-explain{
	padding: 10px 0;
	border: 1px dashed #92BEFA;
	background-color: #F7FDFF;
}
.c-explain li{
	position: relative;
	padding: 8px 10px 8px 0;
}
.c-explain-hint{
	display: table-cell;
	width: 35px;
	text-align: center;
}
.c-explain-hint span{
	display: inline-block;
	width: 8px;
	height: 8px;
	line-height: 8px;
	background-color: #AEE3AE;
	border-radius: 50%;
	vertical-align: 1px;
}
.c-explain-content{
	display: table-cell;
}
.c-explain-content p{
	line-height: 22px;
}

/*用法说明样式*/
.cicon-explain{
	position: relative;
	width: 20px;
	height: 20px;
	line-height: 20px;
}
.cicon-explain-icon{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	font-size: 20px;
	color: #FFC36B;
	cursor: pointer;
}
.cicon-explain-box{
	position: absolute;
	left: -10px;
	top: 32px;
	width: 240px;
	padding: 10px;
	line-height: 25px;
	background-color: #FFFDF4;
	border: 1px solid #FFE1B3;
	font-size: 14px;
	z-index: 9;
	border-radius: 3px;
}
.cicon-explain-box2{
	width: 500px;
}
.cicon-explain-arrow{
	position: absolute;
	left: 4px;
	top: 20px;
	width: 0;
	height: 0;
	border: 6px solid transparent;
	border-bottom-color: #FFE1B3;
}
.cicon-explain-imgbox img{
	width:100%;
}

/*列表*/
.c-list li{
	position: relative;
	padding: 10px 0;
	border-bottom: 1px dashed #ccc;
	font-size: 14px;
}
.c-list li:nth-last-of-type(1){
	border-bottom: 0;
}
.c-list li > i{
	position: absolute;
	left: 0;
	top: 16px;
	width: 8px;
	height: 8px;
	background-color: #98DC98;
	border-radius: 50%;
}
.c-list li > span{
	position: absolute;
	right: 0;
	top: 10px;
	width: 70px;
	height: 20px;
	text-align: right;
}
.c-list-content{
	padding-left: 20px;
}
.c-list-time li{
	position: relative;
	padding-left: 60px;
}
.c-list-time .clist-time-date{
	position: absolute;
	left: 0;
	top: 0;
	width: 65px;
	padding-right: 20px;
}
.c-list-time .clist-time-info{
	position: relative;
	width: 100%;
	padding-left: 20px;
	padding-bottom: 20px;
}
.c-list-time .clist-time-info:before{
	content: '';
	position: absolute;
	left: 0;
	top: 8px;
	width: 1px;
	height: 100%;
	background-color: #eee;
}
.c-list-time .clist-time-info:after{
	content: '';
	position: absolute;
	left: -4px;
	top: 8px;
	width: 10px;
	height: 10px;
	background-color: #98DC98;
	z-index: 2;
	border-radius: 50%;
}
.c-list-time .clist-time-info > i{
	display: none;
	position: absolute;
	left: -9px;
	top: 3px;
	width: 20px;
	height: 20px;
	line-height: 23px;
	background-color: #fff;
	text-align: center;
	z-index: 3;
	color: #ccc;
	border-radius: 50%;
}
.c-list-time .clist-time-info.loading > i{
	display: block;
}

/*段落*/
.c-p{
	margin-bottom: 15px;
	line-height: 22px;
	text-indent: 2em;
}

/*星级评分*/
.c-star{
	position: relative;
	display: inline-block;
	vertical-align: middle;
}
.c-star ul li{
	float: left;
	width: 28px;
	height: 28px;
	background: url(c-ui/c-images/c-icon/cicon-star.png) no-repeat center;
	background-size: 18px;
	cursor: pointer;
}
.c-star ul li.hover,.c-star ul li.click{
	background-image: url(c-ui/c-images/c-icon/cicon-star-on.png);
}
.c-star ul li.nohover{
	background-image: url(c-ui/c-images/c-icon/cicon-star.png) !important;
}

/*进度条*/
.c-progress{
	position: relative;
	display: inline-block;
	width: 100%;
	height: 15px;
	line-height: 16px;
	font-size: 12px;
	text-align: center;
	background-color: #ececec;
	vertical-align: middle;
	overflow: hidden;
	border-radius: 10px;
}
.c-progress .c-progress-bar{
	position: absolute;
	left: 0;
	top: 0;
	width: 0;
	height: 100%;
	background-color: #0080cc;
	border-radius: inherit;
}

/*收藏点赞*/
.c-collect,.c-likes{
	position: relative;
	display: inline-block;
	line-height: 30px;
	vertical-align: top;
}
.c-likes em{
	position: absolute;
	left: 0;
	bottom: 15px;
	height: 20px;
	line-height: 20px;
	font-style: normal;
	color: #FFC36B;
	opacity: 0;
	filter:alpha(opacity=0);
}
.c-likes.click em{
	animation: likes .8s linear both;
}
@keyframes likes{
	0%{opacity: 1;bottom: 15px;}
	100%{opacity: 0;bottom: 30px;}
}

/*滑动区间*/
.c-slide{
	display: inline-block;
	width: 100%;
	padding: 0 10px;
	vertical-align: middle;
}
.c-slide-box{
	position: relative;
	width: 100%;
	height: 10px;
	background-color: #ececec;
	border-radius: 5px;
}
.cslide-left,
.cslide-right{
	position: absolute;
	top: -5px;
	width: 20px;
	height: 20px;
	cursor: pointer;
	border-radius: 50%;
	z-index: 2;
}
.cslide-left{
	left: -10px;
	background-color: #0080cc;
}
.cslide-right{
	right: -10px;
	background-color: #fff;
	border: 2px solid #0080cc;
}
.cslide-line{
	position: absolute;
	left: 0;
	top: 0;
	width: 0;
	height: 100%;
	background-color: #0080cc;
	border-radius: 5px;
}

/*步骤条*/
.c-steps li:before{
	content: '';
	position: absolute;
	left: 0;
	top: 10px;
	width: 100%;
	height: 10px;
	background-color: #ececec;
}
.c-steps li:nth-of-type(1):before{
	border-radius: 5px 0 0 5px;
}
.c-steps li:nth-last-of-type(1):before{
	border-radius: 0 5px 5px 0;
}
.c-steps-item{
	position: relative;
	display: inline-block;
	color: #c8c8c8;
}
.c-steps-item span{
	position: absolute;
	left: 50%;
	top: 0;
	width: 30px;
	height: 30px;
	line-height: 30px;
	margin-left: -15px;
	background-color: #fff;
	border: 2px solid #ececec;
	font-size: 16px;
	z-index: 2;
	border-radius: 50%;
}
.c-steps-item p{
	padding-top: 30px;
}
.c-steps li.c-steps-done:before,
.c-steps li.c-steps-doing:before{
	background-color: #0080cc;
}
.c-steps li.c-steps-done .c-steps-item,
.c-steps li.c-steps-doing .c-steps-item{
	color: #0080cc;
}
.c-steps li.c-steps-done .c-steps-item span{
	border-color: #0080cc;
}
.c-steps li.c-steps-doing .c-steps-item span{
	background-color: #0080cc;
	border-color: #0080cc;
	color: #fff;
}

/*区域动画（只兼容ie10及以上主流浏览器）*/
.c-anim-up{
	animation: animationup 1s ease;
}
@keyframes animationup{
	0%{transform: translateY(500px);opacity: 0;}
	100%{transform: translateY(0);opacity: 1;}
}
.c-anim-down{
	animation: animationdown 1s ease;
}
@keyframes animationdown{
	0%{transform: translateY(-500px);opacity: 0;}
	100%{transform: translateY(0);opacity: 1;}
}
.c-anim-left{
	animation: animationleft 1s ease;
}
@keyframes animationleft{
	0%{transform: translateX(-1000px);opacity: 0;}
	100%{transform: translateX(0);opacity: 1;}
}
.c-anim-right{
	animation: animationright 1s ease;
}
@keyframes animationright{
	0%{transform: translateX(1000px);opacity: 0;}
	100%{transform: translateX(0);opacity: 1;}
}
.c-anim-fadein{
	animation: animationfadein 1s ease;
}
@keyframes animationfadein{
	0%{opacity: 0;}
	100%{opacity: 1;}
}
.c-anim-fadeout{
	animation: animationfadeout 1s ease;
}
@keyframes animationfadeout{
	0%{opacity: 1;}
	100%{opacity: 0;}
}
.c-anim-3d{
	animation: animation3d 1s ease;
}
@keyframes animation3d{
	0%{transform: rotateY(0deg);}
	100%{transform: rotateY(360deg);}
}
.c-anim-jump{
	animation: animationjump 1s ease;
}
@keyframes animationjump{
	0%{transform: translateX(-50px);}
	25%{transform: translateX(50px);}
	50%{transform: translateX(-25px);}
	75%{transform: translateX(25px);}
	100%{transform: rotateY(0px);}
}
.c-anim-magnify{
	animation: animationmagnify 1s ease;
}
@keyframes animationmagnify{
    0%{
    transform: scale(1);  /*开始为原始大小*/
    }
    25%{
        transform: scale(1.1); /*放大1.1倍*/
    }
    50%{
        transform: scale(1);
    }
    75%{
        transform: scale(1.1);
    }
    100%{
        transform: scale(1);
    }

}
/*组件样式--end*/

/*通用页面样式lujh的先放到这，等想好怎么处理后移出去*/
/*通用页面样式--start*/
/*标准管理界面*/
.table-slide-box{
	position: relative;
	top: -1px;
	width: 100%;
	height: 500px;
	overflow: hidden;
}
.table-slide-nulldata{
	height: 500px;
	line-height: 500px;
	text-align: center;
}
.row-delbox{
	position: absolute;
	right: 0;
	top: 0;
	min-width: 800px;
	width: 100%;
	height: 100%;
	line-height: 40px;
	background-color: #F7A685;
	color: #fff;
}
.row-delbox button{
	display: inline-block;
	padding: 0 22px;
	height: 30px;
	line-height: 30px;
	background-color: transparent;
	border: 1px solid #fff;
	outline: none;
	color: #fff;
	border-radius: 5px;
}
.row-delbox button:hover{
	background-color: #fff;
	color: #000;
}
/*新增修改1*/
.page-addmodify{
	position: relative;
	height: 100%;
	background: #fff url(c-ui/c-images/c-bg/cbg-addmodify.png) no-repeat right bottom;
	background-size: 100% 65px;
	overflow: hidden;
}
.page-addmodify-left{
	position: absolute;
	left: 0;
	top: 0;
	width: 220px;
	height: 100%;
	background: #F0F6FE url(c-ui/c-images/c-bg/cbg-addmodify-left.png) no-repeat 0 bottom;
	background-size: 100% 460px;
}
.page-addmodify-right{
	position: relative;
	padding-left: 220px;
	height: 100%;
	overflow: auto;
}
.btn-bgChange{
	animation: bgChange .5s;
}
@keyframes bgChange{
	0%{background-color: #f0f0f0;border-color: #f0f0f0;color: #c1c1c1;}
}
/*新增修改2*/
.page-addmodify2{
	position: relative;
	min-height: 100%;
	height: auto;
	background: #fff url(c-ui/c-images/c-bg/cbg-addmodify.png) no-repeat right bottom;
	background-size: 100% 65px;
	overflow: auto;
}
.page-addmodify2-left{
	position: absolute;
	left: 20px;
	top: 0;
	width: 220px;
	z-index: 2;
}
.page-addmodify2-right{
	position: relative;
	padding-left: 220px;
}
.page-addmodify2-imgbox{
	position: relative;
	display: inline-block;
	width: 200px;
	height: 200px;
	background: url(c-ui/c-images/c-bg/cbg-img.png) no-repeat center 40px;
	background-size: 100%;
}
.page-addmodify2-imgbox img{
	position: absolute;
	left: 10%;
	top: 0;
	width: 80%;
	opacity: 1;
}
.page-addmodify2-imgbox img.rotate1{
	opacity: 1 !important;
	animation: imgRotate1 .5s linear both;
}
.page-addmodify2-imgbox img.rotate2{
	opacity: 0 !important;
	animation: imgRotate2 .5s linear both;
}
@keyframes imgRotate1{
	0%{transform: rotateY(180deg);opacity: 0;}
	100%{transform: rotateY(0deg);opacity: 1;}
}
@keyframes imgRotate2{
	0%{transform: rotateY(0deg);opacity: 1;}
	100%{transform: rotateY(180deg);opacity: 0;}
}
.btn-bgChange{
	animation: bgChange .5s;
}
@keyframes bgChange{
	0%{background-color: #f0f0f0;border-color: #f0f0f0;color: #c1c1c1;}
}
/*新增修改3*/
.page-addmodify3-imgbox{
	position: relative;
	display: inline-block;
	width: 110px;
	height: 110px;
	background: url(c-ui/c-images/c-bg/cbg-img.png) no-repeat center 20px;
	background-size: 100%;
}
.page-addmodify3-imgbox img{
	position: absolute;
	top: 0;
	left: 5%;
	width: 90%;
	opacity: 1;
}
.page-addmodify3-imgbox img.rotate1{
	opacity: 1 !important;
	animation: imgRotate1 .5s linear both;
}
.page-addmodify3-imgbox img.rotate2{
	opacity: 0 !important;
	animation: imgRotate2 .5s linear both;
}
@keyframes imgRotate1{
	0%{transform: rotateY(180deg);opacity: 0;}
	100%{transform: rotateY(0deg);opacity: 1;}
}
@keyframes imgRotate2{
	0%{transform: rotateY(0deg);opacity: 1;}
	100%{transform: rotateY(180deg);opacity: 0;}
}
.btn-bgChange{
	animation: bgChange .5s;
}
@keyframes bgChange{
	0%{background-color: #f0f0f0;border-color: #f0f0f0;color: #c1c1c1;}
}
/*图文列表-常规*/
.imgtext-list li > a{
	position: relative;
	border: 1px solid #ececec;
	border-radius: 2px;
}
.imgtext-list li > a:hover{
	box-shadow: 0 2px 5px 1px rgba(0,0,0,.1);
	transform: translateY(-5px);
	transition: all .5s;
}
.imgtext-list li > a img{
	width: 100%;
	height: 125px;
}
/*图文列表-横向*/
.imgtext-landscape-item{
	position: relative;
	padding: 10px 0;
	border: 1px solid #ececec;
	border-radius: 2px;
	cursor: pointer;
}
.imgtext-landscape-item:hover{
	box-shadow: 0 0 5px 1px rgba(0,0,0,.1);
}
.imgtext-landscape-item:hover img{
	animation: imgRotate .5s linear;
}
.imgtext-landscape-item a:hover{
	color: #0080cc;
	text-decoration: underline;
}
.imgtext-landscape-left{
	position: absolute;
	left: 0;
	top: 10px;
	width: 180px;
	height: 140px;
	overflow: hidden;
	text-align: center;
}
.imgtext-landscape-left img{
	height: 140px;
}
.imgtext-landscape-right{
	position: relative;
	padding: 0 20px 0 180px;
	min-height: 140px;
}
@keyframes imgRotate{
	0%{transform: rotateY(0deg);}
	0%{transform: rotateY(180deg);}
}
/*图文列表-翻转*/
.imgtext-reversal li > div{
	position: relative;
	border: 1px solid #ececec;
	border-radius: 2px;
}
.imgtext-reversal li > div.reversal1,
.imgtext-reversal li > div.reversal1 > p,
.imgtext-reversal li > div.reversal1 .imgtext-reversal-imgbox img{
	animation: reversal1 .5s linear both;
}
.imgtext-reversal li > div.reversal2,
.imgtext-reversal li > div.reversal2 > p,
.imgtext-reversal li > div.reversal2 .imgtext-reversal-imgbox img{
	animation: reversal2 .5s linear both;
}
@keyframes reversal1{
	0%{transform: rotateY(0deg);}
	100%{transform: rotateY(180deg);}
}
@keyframes reversal2{
	0%{transform: rotateY(180deg);}
	100%{transform: rotateY(0deg);}
}
.imgtext-reversal-imgbox{
	width: 100%;
	height: 220px;
	border: 10px solid #fff;
}
.imgtext-reversal-imgbox img{
	width: 100%;
	height: 100%;
}
.imgtext-reversal-content{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,.8);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#c8000000,endColorstr=#c8000000);
	zoom: 1;
	color: #fff;
	transform: rotateY(180deg);
}
.imgtext-reversal-content > p{
	padding: 10px;
	height: 220px;
	line-height: 25px;
	overflow: hidden;
}
/*图文列表-瀑布流*/
.imgtext-waterfull li{
	position: absolute;
	left: 10px;
	top: 10px;
}
.imgtext-waterfull li > a{
	position: relative;
	border: 1px solid #ececec;
	border-radius: 2px;
}
.imgtext-waterfull li > a:hover{
	box-shadow: 0 0 5px 1px rgba(0,0,0,.1);
}
.imgtext-waterfull-imgbox img{
	width: 100%;
}
/*图文列表-商品*/
.imgtext-commodity-item:hover{
	cursor: pointer;
	box-shadow: 0 0 5px 1px rgba(0,0,0,.1);
}
.commodity-item-operate{
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 0;
	line-height: 40px;
	overflow: hidden;
}
.commodity-item-operate a{
	display: inline-block;
	height: 100%;
	background-color: #F9743C;
	text-align: center;
	font-size: 16px;
	color: #fff;
}
/*帮助问答*/
.helpqa-top{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 200px;
	background: url(c-ui/c-images/c-bg/cbg-helpqa-top.png) no-repeat 0 0;
	background-size: 100% 100%;
	color: #fff;
	z-index: 2;
}
.helpqa-top-search{
	position: relative;
	display: inline-block;
	width: 60%;
	height: 50px;
	overflow: hidden;
}
.helpqa-top-search input{
	display: inline-block;
	width: 100%;
	height: 50px;
	padding: 0 70px 0 20px;
	background-color: #fff;
	font-size: 16px;
	border: 0;
}
.helpqa-top-search i{
	position: absolute;
	right: 0;
	top: 0;
	width: 70px;
	height: 50px;
	line-height: 54px;
	background-color: #0080cc;
	font-size: 30px;
	cursor: pointer;
}
.helpqa-bottom{
	position: relative;
	height: 100%;
	padding-top: 200px;
	overflow: hidden;
}
.helpqa-content{
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.helpqa-left{
	position: absolute;
	left: 0;
	top: 0;
	width: 200px;
	height: 100%;
	overflow: hidden;
	z-index: 2;
}
.helpqa-left li{
	padding: 0 20px;
	line-height: 50px;
	font-size: 16px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	cursor: pointer;
}
.helpqa-left li.choice{
	background-color: #F7F8F9;
	color: #0080cc;
}
.helpqa-right{
	position: relative;
	width: 100%;
	height: 100%;
	padding: 10px 10px 10px 200px;
}
.helpqa-question-title{
	padding: 0 20px;
	height: 60px;
	line-height: 60px;
	font-size: 16px;
	overflow: hidden;
	cursor: pointer;
}
.helpqa-question-title.choice{
	background-color: #F7F8F9;
	color: #0080cc;
}
.helpqa-question-title i{
	display: inline-block;
	line-height: 64px;
}
.helpqa-question-content{
	padding: 20px;
	border-top: 1px solid #ececec;
}
/*产品文档*/
.document-left{
	position: absolute;
	left: 0;
	top: 0;
	width: 200px;
	height: 100%;
	overflow: hidden;
	z-index: 2;
}
.document-left li a{
	padding: 0 20px;
	line-height: 50px;
	font-size: 16px;
}
.document-left li.choice a{
	background-color: #F7F8F9;
	color: #0080cc;
}
.document-right{
	position: relative;
	width: 100%;
	height: 100%;
	padding: 10px 10px 10px 200px;
	overflow: hidden;
}
.document-right-content{
	position: relative;
	height: 100%;
	overflow: auto;
}
.document-right-content table th{
	padding: 5px 20px;
	border: 1px solid #ececec;
	border-left: 0;
}
.document-right-content table th:nth-last-of-type(1),
.document-right-content table td:nth-last-of-type(1){
	border-right: 0;
}
.document-right-content table td{
	padding: 5px 20px;
	border: 1px solid #ececec;
	border-left: 0;
}
/*圈子列表*/
.circlelist-left{
	position: absolute;
	left: 0;
	top: 0;
	width: 200px;
	z-index: 2;
}
.circlelist-user-set{
	position: absolute;
	right: 10px;
	top: 10px;
	cursor: pointer;
	z-index: 2;
}
.circlelist-user-set:hover{
	color: #0080cc;
}
.circlelist-user-img{
	display: inline-block;
	width: 90px;
	height: 90px;
	border-radius: 5px;
	overflow: hidden;
}
.circlelist-user-img img,
.circlelist-right-top img,
.circlelist-item-img img{
	width: 100%;
	height: 100%;
}
.circlelist-right{
	position: relative;
	padding-left: 200px;
}
.circlelist-right-top{
	height: 200px;
	overflow: hidden;
}
.circlelist-item-img{
	position: absolute;
	left: 20px;
	top: 20px;
	padding: 5px;
	width: 60px;
	height: 60px;
	border: 1px solid #ececec;
}
.circlelist-item-info{
	min-height: 60px;
	padding-left: 70px;
}
.circlelist-item-info a:hover{
	color: #0080cc;
	text-decoration: underline;
}
/*圈子详情*/
.circledetail-top-left{
	position: absolute;
	left: 20px;
	top: 20px;
	width: 142px;
	z-index: 2;
}
.circledetail-top-left ul{
	width: 100%;
	border-left: 1px solid #ececec;
	border-top: 1px solid #ececec;
}
.circledetail-top-left li{
	float: left;
	width: 70px;
	height: 70px;
	padding: 5px;
	border-right: 1px solid #ececec;
	border-bottom: 1px solid #ececec;
}
.circledetail-top-left li img{
	width: 100%;
	height: 100%;
}
.circledetail-top-right{
	padding-left: 162px;
}
.administrator-list li{
	float: left;
	margin-right: 20px;
}
.administrator-list li:hover a,
.administrator-list li:hover i{
	color: #0080cc;
}
.circledetail-left{
	position: absolute;
	left: 0;
	top: 0;
	width: 200px;
	height: 100%;
	overflow: hidden;
	z-index: 2;
}
.circledetail-left li{
	padding: 0 20px;
	line-height: 40px;
	font-size: 16px;
	cursor: pointer;
}
.circledetail-left li:hover,
.circledetail-left li.choice{
	background-color: #F7F8F9;
	color: #0080cc;
}
.circledetail-left li em{
	display: inline-block;
	padding: 0 8px;
	margin-left: 10px;
	height: 20px;
	line-height: 20px;
	background-color: #FFC36B;
	font-style: normal;
	color: #fff;
	vertical-align: text-top;
	border-radius: 10px;
}
.circledetail-right{
	padding-left: 210px;
	height: 100%;
}
.circledetail-right > .c-title-l.scroll{
	padding-right: 17px !important;
}
.circledetail-right ul{
	width: 100%;
}
.circledetail-right li{
	line-height: 70px;
	border-bottom: 1px solid #ececec;
}
.circledetail-right li a{
	font-size: 16px;
}
.circledetail-right li:hover{
	background-color: #F7F8F9;
}
.circledetail-right li a:hover{
	text-decoration: underline;
	color: #0080cc;
}
.circledetail-search{
	position: relative;
	display: inline-block;
	width: 180px;
	height: 30px;
	overflow: hidden;
}
.circledetail-search input{
	display: inline-block;
	padding-right: 40px;
	vertical-align: top;
}
.circledetail-search i{
	position: absolute;
	right: 0;
	top: 0;
	width: 30px;
	height: 30px;
	line-height: 32px;
	border-left: 1px solid #ccc;
	text-align: center;
	cursor: pointer;
}
.circledetail-stick{
	display: inline-block;
	padding: 0 10px;
	height: 30px;
	line-height: 30px;
	background-color: #98DC98;
	color: #fff;
	border-radius: 5px;
}
.circledetail-search-condition{
	position: absolute;
	left: 50%;
	top: 44px;
	width: 442px;
	margin-left: -221px;
	padding: 10px 0;
	background-color: #fff;
	border: 1px solid #ccc;
	z-index: 2;
}
.circledetail-search-condition .c-input-limit{
	width: 130px;
}
.circledetail-search-condition:before{
	content: '';
	position: absolute;
	top: -20px;
	left: 50%;
	margin-left: -10px;
	border: 10px solid transparent;
	border-bottom-color: #ccc;
}
.circledetail-search-condition:after{
	content: '';
	position: absolute;
	top: -18px;
	left: 50%;
	margin-left: -9px;
	border: 9px solid transparent;
	border-bottom-color: #fff;
}
/*文字列表*/
.textlist-list li:hover{
	background-color: #F7F8F9;
}
.textlist-img{
	position: absolute;
	left: 20px;
	top: 20px;
	width: 50px;
	height: 50px;
	line-height: 50px;
	background-color: #A2C9F0;
	text-align: center;
	border-radius: 50%;
}
.textlist-img i{
	font-size: 24px;
	color: #fff;
}
.textlist-img.hint:before{
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	width: 15px;
	height: 15px;
	background-color: #FFA928;
	border-radius: 50%;
}
.textlist-content{
	padding-left: 70px;
}
/*信息详情2*/
.information2-top{
	background: #4384DB url(c-ui/c-images/c-img/information3-bg-top.png) no-repeat 0 bottom;
	background-size: 100% 70px;
	color: #fff;
	border-radius: 10px;
}
.information2-top-img{
	position: absolute;
	left: 0;
	top: 0;
	width: 140px;
	height: 134px;
	line-height: 134px;
	text-align: center;
	overflow: hidden;
}
.information2-top-content{
	min-height: 134px;
	padding-left: 140px;
}
.information2-top-img img{
	display: inline-block;
	height: 100px;
	vertical-align: middle;
}
.information2-tab{
	position: relative;
	border: 1px solid #ececec;
	background-color: #fff;
	cursor: pointer;
}
.information2-tab.choice .information2-tab-line{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #0080cc;
	animation: lineRun .5s linear;
}
@keyframes lineRun{
	0%{width: 0%;}
	100%{width: 100%;}
}
.information2-tab-new{
	position: absolute;
	right: 10px;
	top: 10px;
}
.information2-tab-img{
	position: absolute;
	left: 0;
	top: 0;
	width: 100px;
	height: 90px;
	line-height: 90px;
	text-align: center;
	overflow: hidden;
}
.information2-tab-img img{
	display: inline-block;
	height: 70px;
	vertical-align: middle;
}
.information2-tab-info{
	min-height: 90px;
	padding-left: 100px;
}
.information2-list-btn{
	line-height: 60px;
}
.information2-list-btn a{
	background-color: transparent;
	border-color: transparent;
	color: #0080cc;
}
.information2-item-list li:hover{
	background-color: #F7F8F9;
}
.information2-item-list li:hover .information2-list-btn a{
	background-color: #0080cc;
	border-color: #0080cc;
	color: #fff;
}
.information2-item-list li:hover .information2-list-btn a:hover{
	background-color: #59A8E1;
	border-color: #59A8E1;
}
/*信息详情3*/
.information3-top{
	background: #4384DB url(c-ui/c-images/c-img/information3-bg-top.png) no-repeat 0 bottom;
	background-size: 100% 70px;
	color: #fff;
}
.information3-top-imgbox{
	display: inline-block;
	width: 220px;
	height: 220px;
	line-height: 220px;
	background: url(c-ui/c-images/c-img/information3-bg-top2.png) no-repeat center;
	background-size: 100%;
	vertical-align: top;
}
.information3-top-imgbox img{
	display: inline-block;
	width: 130px;
	vertical-align: middle;
}
/*信息详情4*/
.information4-imgbox{
	display: inline-block;
	width: 140px;
	background: url(c-ui/c-images/c-bg/cbg-img.png) no-repeat center 20px;
	background-size: 100%;
}
.information4-imgbox img{
	width: 90%;
}
.table-information td{
	padding: 5px 10px;
	line-height: 30px;
	border: 1px solid #ececec;
}
.table-information td.table-information-title{
	width: 140px;
	background-color: #e9f6fb;
	text-align: center;
}
/*信息详情5*/
.information5-title{
	position: relative;
	border: 1px solid #ececec;
	cursor: pointer;
}
.information5-title.choice:before{
	content: '';
	position: absolute;
	left: 50%;
	bottom: -16px;
	margin-left: -8px;
	border: 8px solid transparent;
	border-top-color: #fff;
}
/*portal1*/
.shadow{
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,.5);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#80000000,endColorstr=#80000000);
	overflow: hidden;
}
.portal1-screen,.portal1-screen-close{
	width: 30px;
	text-align: center;
	cursor: pointer;
}
.ec-box{
	height: 200px;
}
.box-screen.choice{
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	background-color: #fff;
	border-radius: 5px;
	overflow: hidden;
	z-index: 2;
}
.dragbox > li{
	height: 262px;
}
.dragbox > li.sortable-placeholder {
	border: 1px dashed #CCC;
	background: none;
}
.em-hint{
	display: inline-block;
	padding: 1px 8px;
	line-height: normal;
	background-color: #FFC36B;
	font-style: normal;
	color: #fff;
	border-radius: 5px;
}
/*portal2*/
.portal2-left{
	position: absolute;
	left: 0;
	top: 0;
	width: 200px;
	z-index: 2;
}
.portal2-left-list li a{
	padding: 0 20px;
	height: 50px;
	line-height: 50px;
	font-size: 16px;
}
.portal2-left-list li a i{
	display: inline-block;
	height: 30px;
	line-height:30px;
	font-size: 24px;
	vertical-align: middle;
}
.portal2-left-list li a:hover{
	background-color: #F7F8F9;
	color: #0080cc;
}
.portal2-content{
	position: relative;
	padding-left: 210px;
	padding-right: 290px;
}
.portal2-banner{
	height: 234px;
}
.portal2-banner .pagination {
	position: absolute;
	bottom: 15px;
	left: 50%;
	height: 8px;
	z-index: 20;
	transform: translateX(-50%);
}
.portal2-banner .swiper-pagination-switch {
	display: inline-block;
	width: 8px;
	height: 8px;
	margin: 0 5px;
	background: #fff;
	cursor: pointer;
	border-radius: 50%;
}
.portal2-banner .swiper-active-switch {
	background: #98DC98;
}
.post-item{
	position: relative;
}
.post-list-left{
	position: absolute;
	left: 0;
	top: 0;
	width: 70px;
	z-index: 2;
}
.post-list-right{
	position: relative;
	padding-left: 90px;
}
.portal2-right{
	position: absolute;
	right: 0;
	top: 0;
	width: 280px;
	z-index: 2;
}
.portal2-item-title{
	position: relative;
	height: 40px;
	line-height: 40px;
	border-bottom: 1px solid #ccc;
}
.portal2-item-title h3{
	float: left;
	padding: 0 20px;
	height: 40px;
	border-bottom: 2px solid #0080cc;
	font-size: 18px;
}
.portal2-date-list li{
	position: relative;
	padding-left: 20px;
	line-height: 40px;
	margin-bottom: 1px;
	border-top: 1px dashed #ccc;
}
.portal2-date-list li:before{
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 3px;
	height: 100%;
	background-color: #98DC98;
}
.portal2-date .layui-laydate,
.portal2-date .layui-laydate-hint{
	border: 0;
	box-shadow: none;
}
/*portal3*/
.portal3-left{
	position: relative;
	padding-right: 410px;
}
.portal3-list-imgbox{
	position: relative;
	display: inline-block;
	width: 60px;
	height: 60px;
}
.portal3-list-imgbox img,
.portal3-user-img img{
	width: 100%;
	height: 100%;
}
.portal3-list-imgbox span{
	position: absolute;
	top: -5px;
	right: -5px;
	padding: 0 5px;
	height: 20px;
	line-height: 20px;
	background-color: #FEFDF2;
	border: 1px solid #F9743C;
	color: #F9743C;
	overflow: hidden;
	border-radius: 5px;
}
.portal3-right{
	position: absolute;
	right: 0;
	top: 0;
	width: 400px;
	z-index: 2;
}
.portal3-user-img{
	width: 80px;
	height: 80px;
	border-radius: 50%;
	overflow: hidden;
}
/*通用页面样式--end*/