/*初始化样式*/
html,body{
    width:100%;
    height:100%;
    position: relative;
	overflow-x: hidden;
}
p {
	padding: 0;
	margin: 0;
}

.p-center {
	text-align: center;
}

iframe {
	border: none;
	background: none;
	padding: 0;
	margin: 0;
	width: 100%;
	height: 100%;
}

iframe * {
	padding: 0;
	margin: 0;
	overflow: hidden;
}

* {
	padding: none;
	margin: none;
	box-sizing: border-box;
}

ul,
dl {
	list-style: none;
	padding: 0;
	margin: 0;
}

a {
	text-decoration: none;
}

button,
input,
select,
textarea {
	outline: none;
	-webkit-appearance: none;
	border: 1px #ddd solid;
	background: none;
}
 

/*全局布局*/

.nowrap {
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

.margin {
	margin: 10px;
}

.margin-left {
	margin-left: 10px;
}

.margin-right {
	margin-right: 10px;
}

.margin-top {
	margin-top: 10px;
}

.margin-bottom {
	margin-bottom: 10px;
}

.pointer{
	cursor: pointer;
}
/*输入框*/

input,
select,
textarea {
	min-width: 100px;
    border: 1px #f3f3f3 solid;
    background: #fff;
    border-radius: 1px;
    height: 36px;
    line-height: 36px;
    padding: 0 10px;
    outline: none;
    -webkit-appearance: none;
    margin: 0;
    font-size: 12px;
}

input[type=checkbox] {
	width: auto;
	border: none;
	background: #fff;
	border-radius: 0;
	height: auto;
	outline: none;
	-webkit-appearance: checkbox;
	margin: 0;
}

input[type=radio] {
	width: auto;
	border: none;
	background: #fff;
	border-radius: 0;
	height: auto;
	outline: none;
	-webkit-appearance: radio;
	margin: 0;
}

input[type=date]::-webkit-inner-spin-button {
	visibility: hidden;
}

input[type=date]::-webkit-datetime-edit-year-field {
	color: #0073B7;
}

input[type=date]::-webkit-datetime-edit-month-field {
	color: #0073B7;
}

input[type=date]::-webkit-datetime-edit-day-field {
	color: #0073B7;
}
.seachBar{
	padding:10px;
}
.iframe-container{
  position: absolute;
  top:0;
  bottom:0;
  left:0;
  right:0;
  margin:auto;
}
form.layui-form{
	width:100%;
	margin: 0 auto;
}
.layui-form-label{
  width:20%;
  text-align: left;
}
/* .layui-form-item .layui-input, .layui-textarea{
	width:80%!important;
} 
.layui-input-block{
	margin-left:0!important;
} */
button{
	font-size: 12px;
	border:1px #ddd solid;
}
.btn-blue1{
	background: #1E9FFF;
	color: #fff;
	font-size: 12px;
	border:1px #1E9FFF solid;
}
.btn-blue2{
	background: #009688;
	color: #fff;
	font-size: 12px;
	border:1px #009688 solid;
}



/*全局布局*/

.fl {
	float: left;
}

.fr {
	float: right;
}
.hidden{
	display: none;
}
.overflow{
	overflow: hidden;
}
.flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.h-center {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.v-center {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.algin {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.between {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.around {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: distribute;
	justify-content: space-around;
}

.end {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.wrap-center {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.nowrap {
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

/*弹窗以及提示窗样式*/


/*提示框*/

#prompt {
	position: fixed;
    width: 110px;
    height: 37px;
    border-radius: 2px;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999999999999;
    font-size: 12px;
    text-align: center;
    color: #fff;
}

#prompt #close {
	position: absolute;
	width: 30px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	top: 0;
	right: 0;
	cursor: pointer;
}


/*确认框*/

#confirm-modal {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	background: rgba(0, 0, 0, 0.3);
	z-index: 9999;
}

#confirm-modal .mian {
	position: absolute;
	min-width: 300px;
	width: 20%;
	height: 200px;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	background: #fff;
	border-radius: 3px;
}

#confirm-modal .mian .title {
	padding: 0 10px;
	height: 42px;
	line-height: 42px;
	border-bottom: 1px solid #eee;
	font-size: 14px;
	color: #333;
	overflow: hidden;
	background-color: #F8F8F8;
	border-radius: 2px 2px 0 0;
}

#confirm-modal .mian .title .btn-cancel {
	width: 30px;
	font-size: 23px;
	text-align: center;
	cursor: pointer;
}

#confirm-modal .mian .content {
	padding: 10px 0;
}

#confirm-modal .mian .content.prompt {
	padding-top: 40px;
	text-align: center;
}

#confirm-modal .mian .action-btn {
	position: absolute;
	width: 100%;
	height: 60px;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
}

#confirm-modal .mian .action-btn.end {
	padding-right: 5%;
}

#confirm-modal .mian .action-btn button {
	height: 28px;
	line-height: 28px;
	margin: 5px 5px 0;
	padding: 0 15px;
	border: 1px solid #dedede;
	background-color: #fff;
	color: #333;
	border-radius: 2px;
	font-weight: 400;
	cursor: pointer;
	text-decoration: none;
}

#confirm-modal .mian .action-btn button.btn-ok {
	border-color: #1E9FFF;
	background-color: #1E9FFF;
	color: #fff;
}


/*表单弹窗*/

#confirm-modal .mian .content .form-modal {
	width: 100%;
	padding: 10px;
}

#confirm-modal .mian .content .form-modal .group {
	min-height: 40px;
	margin-bottom: 8px;
}

#confirm-modal .mian .content .form-modal .group label {
	text-align: left;
	min-width: 120px;
	width: 30%;
	padding-left: 10%;
}

#confirm-modal .mian .content .form-modal .group input {
	min-width: 150;
	width: 50%;
}

#confirm-modal .mian .content .form-modal .group select {
	min-width: 150;
	width: 50%;
}

#confirm-modal .mian .content .form-modal .group textarea {
	min-width: 150;
	width: 50%;
	min-height: 100px;
	line-height: 20px;
}
/*列表样式*/

.listGrid {
	margin-top: 10px;
}

.listGrid .list-title {
	height: 40px;
	background: #e1e8ec;
}

.listGrid .list-title p {
	text-align: center;
}

.listGrid ul {
	width: 100%;
}

.listGrid ul li {
	height: 40px;
	cursor: pointer;
	border-bottom: 1px #f3f3f3 solid;
}
/* .listGrid ul li:nth-child(2n) {
	background-color: #f3f3f3;
} */
.listGrid ul li:hover {
	background: rgba(37, 124, 167, 0.1);
}
/* .listGrid ul li.active {
	background: rgba(37, 124, 167, 0.1);
} */

.listGrid ul li p {
	text-align: center;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

.listGrid ul li p img {
	width: 35px;
	height: 35px;
	border-radius: 50%;
}
.layui-input, .layui-textarea{
	padding-left:5px;
}
.remove_btn{
	cursor: pointer;
}
.red {
	color: red;
}
