.yh-btn{
	border: 1px solid #002063;
	display: inline-block;
	padding: 8px 15px;
	transition: all ease .3s;
	background: #fff;
	transition: all ease .3s;
	font-size: 16px;
}
.yh-btn:focus{
	outline: none;
}
.yh-btn:hover{
	background: #002063;
	color: #fff;
}
.yh-btn-primary{
	background: #002063;
	color: #fff;
	border: none;
}
.yh-btn-primary:hover{
	background: #c29b09;
}
.yh-btn-warning-plain{
	background: #fff;
	border:1px solid #c29b09;
	color: #c29b09 !important;
}
.yh-btn-warning-plain:hover{
	background: #c29b09;
	color: #fff !important;
}
.icon-arr-right{
	display: inline-block;
	vertical-align: middle;
	width: 47px;
	height: 9px;
	background-image: url(../images/icon_right_dark.png);
	background-size: cover;
	float: right;
	position: relative;
	margin-top: 6px;
	transition: all ease .3s;
}
.yh-btn-warning-plain .icon-arr-right{
	background-image: url(../images/icon_right_warning.png);
}
@media (min-width:992px){
	.icon-arr-right{
		margin-top: 17px;
	}
}
.yh-btn:hover .icon-arr-right{
	background-image: url(../images/icon_right_light.png);
}



/*按钮*/
button:focus{
	outline: none;
}
input:focus,textarea:focus{
	outline: none;
}
textarea{
	resize: vertical;
}
.btn{
	padding: 6px 20px;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 5px;
	cursor: pointer;
	transition: all ease .3s;
	vertical-align: middle;
	display: inline-block;
}
.btn+.btn{
	margin-left: 8px;
}
.btn-min{
	padding: 4px 20px;
	font-size: 12px;
}
.btn-larger{
	padding:  10px 20px;
	font-size: 14px;
}
.btn:hover{
	background: #f5f5f5;
	border-color: #bbb;
}

.btn-primary{
	background: #3196FF;
	border: none;
	color: #fff !important;
}
.btn-primary:hover{
	background: #0d6fd4;
	color: #fff;
}

/*控件*/
.kj{
	display: flex;
	align-items: center;
}
.kj+.kj{
	margin-top: 10px;
}
.kj-title{
	width: 80px;
	padding-right: 10px;
	text-align: right;
	line-height: 40px;
	overflow: hidden;
	white-space: nowrap;
}
.kj-body{
	flex-grow: 1;
	position: relative;
}
.kj-body input{
	width: 100%;
	border: 1px solid #ddd;
	height: 32px;
	line-height: 32px;
	border-radius: 5px;
	padding: 0 10px;
	color: #666;
}
.kj-body input.min-input{
	height: 24px;
	line-height: 24px;
}
.kj-body input.larger-input{
	height: 40px;
	line-height: 40px;
}
.kj-body textarea{
	width: 100%;
	border: 1px solid #ddd;
	height: 80px;
	border-radius: 5px;
	padding: 10px;
	color: #666;
	font-family:"microsoft yahei",Helvetica,Arial,sans-serif;
}
.limit-body input,.limit-body textarea{
	padding-right: 50px;
}
.limit{
	position: absolute;
	line-height: 24px;
	top: 50%;
	margin-top: -12px;
	right: 10px;
}
.input-title-body input,.input-title-body input{
	padding-left: 80px;
}
.input-title{
	position: absolute;
	line-height: 24px;
	top: 50%;
	margin-top: -12px;
	left: 0;
	padding-left: 10px;
	color: #999;
}
.kj-group{
	display: flex;
	margin-left: -5px;
	margin-right: -5px;
	align-items: center;
}
.kj-group-item{
	padding-left: 5px;
	padding-right: 5px;
	flex-shrink: 1;
	position: relative;
	flex-grow: 1;
}
.kj-tips{
	color: #999;
	font-size: 12px;
}
.kj-foot{
	padding-left: 10px;
}
/*控件下拉用法：
<div class="dropdown">
	<div class="dropdown-title">全部</div>
	<span class="icon-dropdown"></span>
	<ul class="dropdown-list">
		<li>全部</li>
		<li>待执行</li>
		<li>执行中</li>
		<li>审批中</li>
		<li>已驳回</li>
		<li>已暂停</li>
		<li>已结束</li>
	</ul>
</div>


----------------支持输入框------------
<div class="dropdown">
	<div class="dropdown-title">
		<input type="text" class="dropdown-input" placeholder="请输入或者选择贴尾内容素材标题">
	</div>
	<span class="icon-dropdown"></span>
	<ul class="dropdown-list">
		<li>001004：速盈</li>
	</ul>
</div>
**/
/*下拉*/
.dropdown{
	border: 1px solid #ddd;
	border-radius: 5px;
	height: 32px;
	position: relative;
	padding-left: 5px;
	padding-right: 20px;
	cursor: pointer;
	background: #fff;
}
.dropdown.disable{
	background: #f5f5f5;
}
.dropdown.dropdown-min{
	height: 24px;
}
.dropdown-title{
	line-height: 32px;
	display: -webkit-box;
    -webkit-line-clamp: 1;
    overflow: hidden;
    -webkit-box-orient: vertical;
}

.dropdown.dropdown-min .dropdown-title{
	line-height: 24px;
}
.icon-dropdown{
	position: absolute;
	width: 11px;
	height: 11px;
	background: url(../images/icon_arr_down.svg) center center  no-repeat;
	right: 5px;
	top: 50%;
	margin-top: -5px;
	transition: all ease .3s;
	background-size: 100%;
}
.dropdown:not(.disable).on .icon-dropdown{
	transform: rotate(180deg);
}
.dropdown-list{
	position: absolute;
	background: #fff;
	min-width: 130px;
	max-width: 100%;
	top: 70px;
	left: 0;
	border: 1px solid #ddd;
	border-radius: 5px;
	box-shadow: 0 0 10px rgba(0,0,0,.1);
	transition: all ease .3s;
	opacity: 0;
	visibility: hidden;
	z-index: 50;
}
.dropdown-list.reverse{
	top: auto;
	bottom:70px;
}

.dropdown:not(.disable).on .dropdown-list{
	opacity: 1;
	visibility: visible;
	top: 38px;
}
.dropdown:not(.disable).on .dropdown-list.reverse{
	top: auto;
	bottom:38px;
}

.dropdown.dropdown-min.on .dropdown-list{
	top: 30px;
}
.dropdown-list::after{
	content: '';
	position: absolute;
	width: 11px;
	height: 6px;
	background: url(../images/icon_dropdown.png) 0 0 no-repeat;
	left: 10px;
	top: -6px;
}
.dropdown-list.reverse::after{
	transform: rotate(180deg);
	top: auto;
	bottom: -6px;
}
.dropdown-list li{
	padding: 5px 10px;
}
.dropdown-list li:hover{
	background: #F3F9FF;
	color: #2189F5;
}
.dropdown.dropdown-min .dropdown-list li{
	line-height: 2;
	padding: 0 10px;
}
.dropdown-input{
	border: none !important;
	background: none !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
}
.dropdown-fanxian{
	padding-top: 10px;
	color: #ccc;
}

/*日期*/
.date-group{
	display: flex;
	height: 32px;
	line-height: 32px;
	border: 1px solid #ddd;
	border-radius: 5px;
	background: #fff;
}
.date-group.date-group-min{
	height: 24px;
	line-height: 24px;
}
.date-group input{
	border: none;
	height: 38px;
	text-align: center;
	flex-grow: 1;
}
.icon-date{
	width: 18px;
	height: 18px;
	background: url(../images/icon_date.svg) center center no-repeat;
	display: inline-block;
	background-size: 100%;
}
.date-group .icon-date{
	vertical-align: middle;
	margin-left: 5px;
	position: relative;
	margin-top: -4px;
}
.date{
	height: 40px;
	line-height: 40px;
	border: 1px solid #ddd;
	border-radius: 5px;
	background: #fff;
	position: relative;
}
.date input{
	border: none;
	height: 34px;
	padding-left: 32px;
}
.date .icon-date{
	position: absolute;
	left: 5px;
	top: 50%;
	margin-top: -11px;
}
.date-input{
	width: 100%;
}
.date-input input{
	/* max-width: 230px; */
	background: none;
	height: 28px;
	text-align: left;
}

/*
分页用法：
<div class="page">
	<a href="javascript:;" class="page-prev">&nbsp;</a>
	<a href="javascript:;" class="cur">1</a>
	<a href="javascript:;">2</a>
	<a href="javascript:;">3</a>
	<a href="javascript:;">4</a>
	<a href="javascript:;">5</a>
	<a href="javascript:;">...</a>
	<a href="javascript:;">20</a>
	<a href="javascript:;" class="page-next">&nbsp;</a>
</div>
**/
/*分页*/
.center{
	text-align: center;
}
.page-info{
	display: inline-block;
	margin-left: 10px;
	color: #999;
	margin-top: 5px;
}
.page{
	display: inline-block;
	margin-top: 30px;
}
@media (min-width:992px) {
	.page{
		margin-top: 50px;
	}
}
.page a{
	display: inline-block;
	min-width: 32px;
	height: 32px;
	background-color: #F2F2F2;
	text-align: center;
	padding-left: 2px;
	padding-right: 2px;
	line-height: 32px;
	margin-left: 2px;
	margin-right: 2px;
	border-radius: 2px;
	transition: all ease .3s;
}
.page a:hover,.page .cur{
	background: #002063;
	color: #fff;
}
.page-prev{
	background: url(../images/icon_page_left.svg) center center no-repeat;
}
.page-next{
	background: url(../images/icon_page_right.svg) center center no-repeat;
}
.page a.page-prev:hover{
	background: #002063 url(../images/icon_page_left_hover.svg) center center no-repeat;
}
.page a.page-next:hover{
	background: #002063 url(../images/icon_page_right_hover.svg) center center no-repeat;
}

/*
弹窗用法：
<div class="messages messages-420 j-pause hidden">
	<div class="messages-header"> <span class="messages-title">标题</span>   <a href="javascript:;" class="close j-close"><img src="./images/icon_close.svg" alt=""></a></div>
	<div class="messages-body">
		主体内容
	</div>
	<div class="messages-footer">
		<button type="button" class="btn btn-min j-close">取消</button>
		<button class="btn btn-primary btn-min j-close">确定</button>
	</div>
</div>
**/
/*弹窗*/
.mask{
	position: fixed;
	left: 0;
	top:0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.5);
}
.messages{
	position: fixed;
	z-index: 1001;
	background: #fff;
	border-radius: 5px;
	left: 50%;
	top: 50%;
	padding: 15px;
}
.messages-420{
	width: 420px;
	margin-left: -210px;
	margin-top: -100px;
}
.messages-500{
	width: 500px;
	margin-left: -250px;
	margin-top: -160px;
}
.messages-1100{
	width: 80%;
	max-width: 1100px;
	margin-left: -40%;
	margin-top: -210px;
}
.messages-600{
	width: 600px;
	margin-left: -300px;
	margin-top: -210px;
}
.messages-header{
	position: relative;
}
.messages-title{
	font-size: 18px;
	color: #333;
}
.close{
	position: absolute;
	width: 22px;
	height: 22px;
	line-height: 22px;
	text-align: center;
	right: 0;
	top: 0;
	transition: all ease .3s;
}
.close:hover{
	transform: rotate(180deg);
}
.messages-body{
	padding-top: 15px;
	padding-bottom: 15px;
}
.messages-footer{
	text-align: right;
}
.icon-warning{
	vertical-align: middle;
}

/*
步骤条用法：
<div class="process">
	<div class="process-item process-finish">
		<div class="process-head">
			<div class="process-line">
				<div class="process-line-inner"></div>
			</div>
			<div class="process-icon">
				<div class="process-icon-inner">1</div>
			</div>
		</div>
		<div class="process-main">
			<div class="process-title">设置实验信息</div>
			<div class="process-des">这是描述</div>
		</div>
	</div>
	<div class="process-item">
		<div class="process-head">
			<div class="process-line"></div>
			<div class="process-icon">
				<div class="process-icon-inner">2</div>
			</div>
		</div>
		<div class="process-main">
			<div class="process-title">设置实验信息</div>
			<div class="process-des">这是描述</div>
		</div>
	</div>
	<div class="process-item">
		<div class="process-head">
			<div class="process-line"></div>
			<div class="process-icon">
				<div class="process-icon-inner">3</div>
			</div>
		</div>
		<div class="process-main">
			<div class="process-title">设置实验信息</div>
			<div class="process-des">这是描述</div>
		</div>
	</div>
	
</div>
**/
/*步骤条*/
.process{
	display: flex;
	flex-wrap: nowrap;
}
.process-item{
	flex-basis: 50%;
	flex-shrink: 1;
}
.process-finish{
	color: #3196FF;
}
.process-head{
	text-align: center;
	position: relative;
}
.process-icon{
	display: inline-flex;
	width: 28px;
	height: 28px;
	font-size: 14px;
	position: relative;
	background: #fff;
	text-align: center;
	border: 2px solid #CCCCCC;
	border-radius: 50%;
}
.process-finish .process-icon{
	border-color: #3196FF;
}
.process-icon-inner{
	text-align: center;
	width: 28px;
	line-height: 24px;
}
.process-line{
	position: absolute;
	height: 2px;
	background: #ccc;
	top: 13px;
	left: 50%;
	right: -50%;
	width: 100%;
	display: block;
}
.process-item:last-of-type .process-line{
	display: none;
}
.process-line-inner{
	height: 2px;
}
.process-finish .process-line-inner{
	background-color: #3196FF;
}
.process-icon-inner{
	font-weight: bold;
}
.process-main{
	text-align: center;
	padding-top: 10px;
	padding-left: 15px;
	padding-right: 15px;
}
.process-title{
	font-size: 14px;
}
.process-des{
	font-size: 12px;
	opacity: .7;
}


/*切换标签*/
.tab{
	
}
.tab-header{
	display: flex;
	border-bottom: 1px solid #eee;
}
.tab-header li{
	height: 40px;
	line-height: 40px;
	border: 1px solid #eee;
	margin-left: -1px;
	margin-bottom: -1px;
	background: #fff;
}
.tab-header li:last-of-type{
	margin-left: 0;
	background: none;
}
.tab-header li:first-of-type{
	border-radius: 5px 0 0 0;
}
.tab-header li:nth-last-child(2){
	border-radius: 0 5px 0 0;
}
.tab-header li.active{
	border-bottom: none;
	color: #3196FF;
}
.tab-header li>span{
	display: block;
	padding: 0 20px;
	cursor: pointer;
}
.tab-header .tab-none{
	border:none;
	padding: 0 10px;
}
.tab-add{
	width: 32px;
	height: 32px;
	display: inline-block;
	padding: 0;
	position: relative;
}
.tab-add::before,.tab-add::after{
	content: '';
	position: absolute;
	background: #999;
	left: 50%;
	top: 50%;
}
.tab-add::before{
	width: 2px;
	height: 12px;
	margin-left: -1px;
	margin-top: -6px;
}
.tab-add::after{
	width: 12px;
	height: 2px;
	margin-left: -6px;
	margin-top: -1px;
}
.tab-none:hover .tab-add::before,.tab-none:hover .tab-add::after{
	background: #3196FF;
}



/*自定义复选框*/
.checkbox-group label{
	margin-right: 20px;
	display: inline-block;
	padding-top: 5px;
	padding-bottom: 5px;
	overflow: hidden;
}
input[type="checkbox"] {
	width: 14px;
	height: 14px;
	background-color: #fff;
	-webkit-appearance: none;
	border: 1px solid #c9c9c9;
	border-radius: 2px;
	outline: none;
	vertical-align: middle;
	position: relative;
	top: -1px;
	margin-right: 5px;
	cursor: pointer;
  }
  input[type="checkbox"]:checked {
	background: url("../images/icon_checkbox.svg") no-repeat center;
	border: none;
  }
  /*自定义复选框结束*/
/*自定义单选框*/
/* input[type="radio"] {
	width: 14px;
	height: 14px;
	background-color: #fff;
	-webkit-appearance: none;
	border: 1px solid #c9c9c9;
	border-radius: 50% !important;
	outline: none;
	vertical-align: middle;
	position: relative;
	top: -1px;
	margin-right: 5px;
	cursor: pointer;
  }
  input[type="radio"]:checked {
	background: url("../images/icon_radio.svg") no-repeat center;
	border: none;
  } */
/*自定义单选框结束*/


/*表格*/
.itable{
	width: 100%;
	border-left: 1px solid #eee;
	border-top: 1px solid #eee;
	border-right: 1px solid #eee;
}
.itable th{
	background: #F9F9F9;
	border-bottom: 1px solid #eee;
	padding:15px 10px;
	text-align: center;
}
.itable td{
	border-bottom: 1px solid #eee;
	padding:15px 10px;
	text-align: center;
	vertical-align: middle;
}
.itr-gray{
	background: #FAFAFA;
}
.oper a{
	color: #3196FF;
}
.oper a+a{
	margin-left: 10px;
}
.oper a:hover{
	text-decoration: underline;
}

/*表格结束*/


/*标签*/
.label{
	display: inline-block;
	padding: 2px 10px;
	line-height: 22px;
	border: 1px solid #ddd;
	background: #fafafa;
	border-radius: 5px;
}
.label-danger{
	border-color: #F6D5C3;
	background: #FEF7F3;
	color: #E87233;
}

/*开关*/
.switch{
	width: 40px;
	height: 20px;
	border-radius: 10px;
	background: #E3E6EC;
	position: relative;
	display: inline-block;
	cursor: pointer;
}
.switch-point{
	width: 16px;
	height: 16px;
	background: #fff;
	border-radius: 50%;
	position: absolute;
	left: 2px;
	top: 2px;
	transition: all ease .3s;
}
.switch.on{
	background: #3196FF;
}
.switch.on .switch-point{
	left: 22px;
}

/*面包屑*/
.bread{
	display: flex;
	margin-left: -15px;
	margin-right: -15px;
}
.bread a{
	/* color: #3196FF; */
	cursor: default;
}
.bread a:hover{
	/* text-decoration: underline; */
}
.bread li{
	padding-left: 15px;
	padding-right: 15px;
	position: relative;
}
.bread li+li::after{
	content: '';
	position: absolute;
	width: 10px;
	height: 10px;
	left: -5px;
	top: 50%;
	margin-top: -5px;
	background-image: url(../images/icon_bread.svg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 100%;
}


/*上传*/
.upload{
	display: flex;
}
.upload-body{
	position: relative;
	overflow: hidden;
}
.upload-kj{
	position: absolute;
	height: 100%;
	right: 0;
	top: 0;
	cursor: pointer;
	opacity: 0;
}
.upload-foot{
	flex-grow: 1;
}
.upload-name{
	color: #999;
	margin-left: 10px;
}


/*问号*/
.des{
	display: inline-block;
	vertical-align: middle;
	position: relative;
	top: 1px;
	font-size: 12px;
	line-height: 1.8;
	font-weight: normal;
	color: #666;
	text-align: left;
}
.des>img{
	width: 14px;
}
.des-body{
	position: absolute;
    background: #fff;
    width: 120px;
    top: 30px;
    right: -10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 0 10px rgb(0,0,0,.05);
    transition: all ease .3s;
    opacity: 0;
    visibility: hidden;
    z-index: 50;
	padding: 10px;
}
.des:hover .des-body{
	visibility: visible;
	opacity: 1;
	top: 20px;
}
.des-body::after{
	content: '';
    position: absolute;
    width: 11px;
    height: 6px;
    background: url(../images/icon_dropdown.png) 0 0 no-repeat;
    right: 10px;
    top: -6px;
}


/* 弹窗 */
.pop-container{
	width: 100%;
	height: 100%;
	padding: 30px;
	position: fixed;
	overflow-y: auto;
	left: 0;
	top: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10000;
	background: rgba(0,0,0,.5);
	visibility: hidden;
	opacity: 0;
	transition: all ease .2s;
}
.pop-active{
	visibility: visible;
	opacity: 1;
}
.pop-active .pop{
	margin-top: 0;
}
.pop{
	background-color: #fff;
	background-image: url(../images/about_bottom5.jpg);
	background-position: 0 bottom;
	background-size: 100% auto;
	background-repeat: no-repeat;
	width: 100%;
	padding-bottom: 40px;
	margin-top: -20px;
	transition: all ease .3s;
}
@media (min-width:992px) {
	.pop{
		width: 700px;
		padding-bottom: 60px;
	}
}
.pop-header{
	height: 40px;
	padding: 0 15px;
	background: #002063;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
@media (min-width:992px) {
	.pop-header{
		height: 60px;
	}
}
.pop-title{
	flex-grow: 1;
	font-size: 16px;
	line-height: 40px;
}
@media (min-width:992px) {
	.pop-title{
		font-size: 28px;
		line-height: 60px;
	}
}
.pop-title .icon-yuyue{
	width: 20px;
	vertical-align: middle;
}
@media (min-width:992px) {
	.pop-title .icon-yuyue{
		width: 45px;
	}
}
.pop-close-container{
	display: flex;
	align-items: center;
	justify-content: center;
}
.pop-close{
	display: inline-block;
	width: 16px;
	height: 16px;
	background: url(../images/icon_close.png) center center no-repeat;
	background-size: cover;
}
@media (min-width:992px) {
	.pop-close{
		width: 25px;
		height: 25px;
		transition: all ease .3s;
	}
	.pop-close:hover{
		transform: rotate(180deg);
	}
}

.pop-body{
	padding:15px;
}
/* 弹窗结束 */