/** ui组件样式 **/

/* 按钮 */
input[type="text"],
input[type="password"],
select {
  width: 190px;
  height: 34px;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  padding: 6px 10px;
  color: #333333;
  outline: 0;
  box-sizing: border-box;
  font-size: 14px !important;
}
/* 输入框聚焦边框变色 */
input[type=text]:focus{
    border: 1px solid #ECF3FF;
}
.edu-query-text{
    margin-left: 6px;
    margin-right: 6px;
    width: auto !important;
}
textarea{
	min-width: 190px;
	min-height: 64px;
	border: 1px solid #e5e5e5;
	border-radius: 2px;
	padding: 6px 10px;
	color: #272727;
	outline: 0;
	box-sizing: border-box;
}
input[type="text"]::placeholder,
input[type="password"]::placeholder{
  color: #C8C8C8;
  font-size: 14px !important;
}
label{
	font-size: 14px;
}
.select-row{
	background-color: rgba(0,0,0,.1) !important;
}

/* 重置select input样式 */
select {
  font-family:SourceHanSansCN-Regular,SourceHanSansCN;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  padding-right: 18px;
  font-weight: 400;
  background: #fff url("../images/arrow.png") no-repeat scroll 94.75% center;
  background-size: 12px 12px;
}
select[multiple="multiple"]{
    background: #fff no-repeat scroll 94.75% center !important;
}
select:disabled{
  background: #fff url("../images/arrow_dis.png") no-repeat scroll 94.75% center;
  background-size: 12px 12px;
}
select:disabled,input:disabled{
	color: #333;
	background-color: #F5F7FA;
	border-color: #E8E8E8;
	cursor: not-allowed !important;
    opacity: 1 !important;
}

option{color: #000000;}
select::-ms-expand {
  display: none;
}
textarea{
	max-width: 100%;
}
input::-webkit-input-placeholder,
input::-moz-placeholder,
input:-ms-input-placeholder {
  color: #C8C8C8;
}
.edu-btn {
  width: auto;
    min-width: 64px;
  display: inline-block;
  vertical-align: middle;
  padding: 0 12px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  cursor: pointer;
  font-size: 14px;
    border: none;
  border-radius:4px;
    background-color: rgba(63, 122, 219, 0.15);
    color: #3f7adb;
}

.opt-b-btn:disabled{
	background-color: #C8C8C8;
	border-color: #C8C8C8;
	cursor: not-allowed;
}
.wb-btn-unset:disabled{
	background-color: #F5F7FA;
	color: #C8C8C8;
	border-color: #E8E8E8;
	cursor: not-allowed;
}
.edu-btn.edu-btn-small{
	padding: 0;
	width: 52px;
	vertical-align: top;
}
.opt-btn{
  display: inline-block;
  height: 32px;
  line-height: 32px;
	text-align: center;
	border: 1px solid #E5E5E5;
	cursor: pointer;
	font-size: 14px;
	border-radius: 2px;
}
.opt-btn.opt-b-btn{
	width: 92px;
	background: #3F7ADB;;
	color: #fff;
    border: 1px solid #3F7ADB;;
}
.opt-btn.opt-w-btn{
	width: 92px;
	background: #fff;
	color: #272727;
}
.opt-btn.opt-sw-btn{
	width: 64px;
	background: #fff;
	color: #3F7ADB;;
}
.edu-btn>.iconfont {
  margin-right: 6px;
}

.edu-btn.primary {
  background: #3F7ADB;;
  color: #fff;
}

.edu-btn.gary ,.edu-btn.gary-small{
  background: #fff;
  color: #272727;
  border-color: #E5E5E5;
  vertical-align: bottom;
    border: 1px solid #e5e5e5;
}
.edu-btn.gary-small{
	padding: 0 8px;
}

/* 分割线 */
.edu-divider {
  position: relative;
  border-bottom: 1px dashed #dcdfe6;
}

.edu-divider-horizontal {
  display: block;
  height: 1px;
  width: 100%;
  margin: 20px 0;
}

.edu-divider_text {
  position: absolute;
  padding: 0 20px;
  font-weight: 500;
  color: #3F7ADB;;
  background: #eff3f6;
  font-size: 14px;
  cursor: default
}

.edu-divider_text.is-center {
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

/*CSS ALL****/
.checkbox,
.radio {
  margin-bottom: 15px;
  display: inline-block;
}

.checkbox:hover,
.radio:hover {
  cursor: pointer;
}

.indent {
  padding-left: 30px;
}

.indent .icon-checkbox,
.indent .icon-radio {
  margin-left: -30px;
}

.checkbox input[type="checkbox"],
.radio input[type="radio"] {
  display: none;
}

.checkbox input[type="checkbox"]+i,
.radio input[type="radio"]+i {
  width: 22px;
  height: 22px;
  background-size: 24px 24px;
  display: inline-block;
  position: relative;
  /* bottom: -3px; */
  margin-right: 5px;
  background-position: center;
  background-repeat: no-repeat;
}

.checkbox:hover input[type="checkbox"]+.icon-checkbox {
}
.checkbox input[type="checkbox"]+.icon-checkbox {
  background: url(../images/checkbox.png);
}

.checkbox input[type="checkbox"]:checked+.icon-checkbox {
  background: url(../images/checkbox_checked.png);
}

.checkbox input[type="checkbox"]:disabled+.icon-checkbox {
	background: url(../images/checkbox.png);
  cursor: not-allowed;
}

.checkbox input[type="checkbox"]:disabled:checked+.icon-checkbox {
	background: url(../images/checkbox_disabled.png);
  cursor: not-allowed;
}

/*CHECKBOX-XS*/
.checkbox-xs.indent {
  padding-left: 25px;
}

.checkbox-xs.indent .icon-checkbox {
  margin-left: -25px;
}

.checkbox-xs input[type="checkbox"]+i,
.radio-xs input[type="radio"]+i {
  height: 14px;
  width: 14px;
  background-size: 14px 14px !important;
  vertical-align: text-bottom;
}

.checkbox-xs:hover input[type="checkbox"]+.icon-checkbox {
}

.checkbox-xs input[type="checkbox"]:checked+.icon-checkbox {
}

.checkbox-xs input[type="checkbox"]:disabled+.icon-checkbox {
  cursor: not-allowed;
}

.checkbox-xs input[type="checkbox"]:disabled:checked+.icon-checkbox {
  cursor: not-allowed;
}

/*RADIO*/
/* .radio:hover input[type="radio"]+.icon-radio,.radio-xs:hover input[type="radio"]+.icon-radio {
} */

.radio input[type="radio"]+.icon-radio,.radio-xs input[type="radio"]+.icon-radio {
	background: url(../images/radio_uncheck.png);
}

.radio input[type="radio"]:checked+.icon-radio,.radio-xs input[type="radio"]:checked+.icon-radio {
  background: url(../images/radio_checked.png);
}

.radio input[type="radio"]:disabled+.icon-radio,.radio-xs input[type="radio"]:disabled+.icon-radio {
  background: url(../images/radio_uncheck.png);
  cursor: not-allowed;
}

.radio input[type="radio"]:disabled:checked+.icon-radio,.radio-xs input[type="radio"]:disabled:checked+.icon-radio {
  background: url(../images/radio_disabled.png);
  cursor: not-allowed;
}

/*RADIO-XS*/
.radio-xs.indent {
  padding-left: 25px;
}

.radio-xs.indent .icon-radio {
  margin-left: -25px;
}

input[type=checkbox]~span,input[type=radio]~span {
  font-size: 14px;
  color: #757575;
}

input[type=checkbox]:checked~span,input[type=radio]:checked~span {
  color: #757575;
}
input[type=checkbox]:disabled~span,input[type=radio]:disabled~span{
	color: #C8C8C8;
	cursor: not-allowed;
}

/* 按钮组 */
.group-btns {
  display: inline-block;
}

.group-btns select,
.group-btns input {
  height: 30px;
  float: left;
  border: 0;
  width: 97px;
  font-size: 14px;
  color: #757575;
}

.group-btns input {
  width: 120px;
}

.group-btns .edu-btn {
  border-width: 0;
  border-left-width: 1px;
  height: 30px;
  line-height: 30px;
}


/* 表格 */
.edu-table {
  width: 100%;
}

.edu-table table {
  background: #fff;
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.edu-table table tr:hover {
  background-color: #DEDEDE;
}

.edu-table table tr:nth-child(even) {
  background-color: #F8F8F8;
}

.edu-table td {
  color: #666;
  font-size: 14px;
  padding: 12px;
}

.edu-table thead td {
  color: #94A4AE;
}

.link {
  color: #3F7ADB;;
  font-size: 14px;
  cursor: pointer;
}

.link.link-disable{
	color: #C8C8C8;
}

.edu-table td>input {
  vertical-align: bottom;
}

/* 标记 */
.edu-badge {
  position: relative;
  vertical-align: middle;
  /* display: inline; */
}

.edu-badge i {
  font-size: 32px;
  color: #94A4AE;
}

.edu-badge__content {
  min-width: 22px;
  background-color: #EE792B;
  border-radius: 22px;
  color: #fff;
  display: inline-block;
  font-size: 14px;
  height: 22px;
  line-height: 18px;
  padding: 0 3px;
  text-align: center;
  white-space: nowrap;
  border: 1px solid #fff;
}

.edu-badge__content.is-fixed {
  position: absolute;
  top: 13px;
  right: 15px;
  transform: translateY(-50%) translateX(100%);
}



@media screen and (max-width: 1620px) {
  .search-form-content .media-hide {
    display: none;
  }
}

/* form */
.edu-form-item {
  margin-top: 16px;
  font-size: 14px;
  color: #272727;
  position: relative;
  overflow: hidden;
}

.edu-form-item>label,
.edu-form-item>.edu-inline>label {
  width: 100px;
  text-align: right;
  display: inline-block;
  margin-right: 10px;
  position: relative;
}

.edu-form-item>div.item-right {
  width: calc(100% - 100px);
}

.edu-form-item .edu-inline {
  display: inline-block;
}

.edu-form-item .edu-inline label {
  width: auto;
}

/* ***********************************************************************弹框/新增窗口 *****************************************************************/
.edu-dialog-model {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  background: rgba(0, 0, 0, 0.6);
}
.edu-dialog-mask{
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: 999;
	text-align: center;
}
.edu-dialog {
  max-width: 50%;
  min-width: 30%;
  min-height: 300px;
  background: #fff;
  /* box-shadow: 0px 10px 24px 5px rgba(0, 0, 0, 0.13); */
  border-radius: 4px;
  padding: 30px 40px;
  position: relative;
  top: 30%;
  left: 45%;
  margin-left: -25%;
}
.edu-dialog.edu-loading{
	min-height: 100px;
	top: 40%;
}
.edu-dialog.edu-loading .layui-progress{
	margin: 20px 0;
}
.edu-dialog-table{
	width: 100%;
	text-align: center;
}
.edu-dialog ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;

}

.edu-dialog>header ,.edu-dialog>table tr th{
    color: #272727;
    font-size: 18px;
    font-weight: 500;
}
.edu-dialog>header {
    height: 32px;
    line-height: 32px;
}
.edu-dialog>header>div {
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
}



.edu-dialog>section {
  padding: 24px 0;
}

.edu-dialog>footer {
  /* margin-bottom: 20px; */
  text-align: right;
}
.edu-dialog .edu-dialog-table tr{
	white-space: nowrap;
}
.edu-dialog .edu-dialog-table tr th{
	text-align: left;
}
.edu-dialog .edu-dialog-table tr td{
	padding-right: 40px;
	text-align: left;
}
.edu-dialog .edu-dialog-table tr td input.half-input{
	width: 140px;
}
.edu-dialog .edu-dialog-table tr td input.half-input::placeholder{
	color: #C8C8C8;
}
.edu-dialog .edu-dialog-table tr td a.half-btn{
	width: 47px;
	border: 1px solid #3F7ADB;;
	height: 32px;
	line-height: 32px;
	color: #3F7ADB;;
	display: inline-block;
	vertical-align: top;
	box-sizing: border-box;
	text-decoration: none;
	text-align: center;
}
.edu-dialog .edu-dialog-table tr th,.edu-dialog .edu-dialog-table tr td{
	padding-bottom: 16px;
}
.edu-dialog-table tr td>p{
	width: 80px;
	display: inline-block;
	text-align: right;
	position: relative;
	margin-right: 10px;
}
.edu-dialog-table tr td>p>label{
	position: absolute;
	right: -7px;
	top: -3px;
}
.edu-dialog-footer>td{
	text-align: center !important;
}
.edu-dialog-table tr td:nth-child(2n){text-align: left;}

/************************************************************************* 标签页 *************************************************************************/
.edu-tabs-header {
  /* border-bottom: 1px solid #e4e7ed; */
  padding: 0;
  position: relative;
  margin: 15px 0 0;
}

.edu-tabs-nav-wrap {
  overflow: hidden;
  margin-bottom: -1px;
  position: relative;
}

.edu-tab-list {
  border: 1px solid #e4e7ed;
  border-bottom: none;
  border-radius: 4px 4px 0 0;
  box-sizing: border-box;
  white-space: nowrap;
  position: relative;
  transition: transform .3s;
  float: left;
  z-index: 2;
  background: #fff;
}

.edu-tab-list>li {
  padding: 0 20px;
  height: 40px;
  box-sizing: border-box;
  line-height: 40px;
  float: left;
  list-style: none;
  font-size: 14px;
  font-weight: 500;
  color: #303133;
  position: relative;
  border-bottom: 1px solid transparent;
  border-left: 1px solid #e4e7ed;
  cursor: pointer;
  transition: color .3s cubic-bezier(.645, .045, .355, 1), padding .3s cubic-bezier(.645, .045, .355, 1);
}

.edu-tab-list>li:first-child {
  border-left: none;
}

.edu-tab-list>li.is-active {
  color: #409eff;
  top: 1px;
  /* background: #fff;
  border-bottom-color: #fff; */
}

.edu-tabs-content {
  position: relative;
  background: #fff;
  box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.08);
}

.edu-tabs-panel {
  /* padding: 10px; */
  overflow: auto;
}

.edu-tabs-content table.edu-table td {
  border: 0;
  border-bottom: 1px solid #E5E5E5;
}
.red_must{font-style: normal;color: red;}

input[type='text']:focus {
    border: 1px solid #3F7ADB;;

}

input:hover {
    cursor: pointer;
}
select:hover {
    cursor: pointer;

}
select:focus {
    border: 1px solid #3F7ADB;;

}