@charset "utf-8";
/*样式重置*/
html,body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,textarea,p,blockquote,th,td,input,select,textarea,button {margin:0;padding:0;}  /* 初始化标签在所有浏览器中的margin、padding?*/
fieldset,img {border:0 none;}  /* 重置fieldset（表单分组）、图片的边框?*/
dl,ul,ol,menu,li {list-style:none;}   /* 重置类表前导符号为onne,menu在HTML5中有?*/
input,select,textarea,button {vertical-align:middle;border:none;outline:none;}  /* 重置表单控件垂直居中*/
input:focus,select:focus,textarea:focus,button:focus {border:none;outline:none;background-image: none;}  /* 重置表单控件选中样式*/
button {border:0 none;background-color:transparent;cursor:pointer}  /* 重置表单button按钮效果 */
body,th,td,input,select,textarea,button {font-size:12px;font-family:"微软雅黑", "黑体","宋体";color:#444} /* 重置页面文字属?*/
a {color:#666;text-decoration:none}  /* 重置链接a标签 */
a:active, a:hover {text-decoration:none}   /* 重置链接a标签的鼠标滑动效?*/
table {border-collapse:collapse;border-spacing:0;table-layout:fixed;margin:0 auto;}  /* 重置table属?*/
img{vertical-align:middle;}  /* 图片在当前行内的垂直位置 */
iframe{border: none;width: 100%;height: 100%;box-sizing: border-box;}
.clear {
    display: block;
    float: none;
    clear: both;
    overflow: hidden;
    visibility: hidden;
    width: 0;
    height: 0;
    background: none;
    border: 0;
    font-size: 0
}

.clearfix:after {
    visibility: hidden;
    display: block;
    clear: both;
    height: 0;
    font-size: 0;
    content: ".";
}

.clearfix {
    zoom: 1;
}

.left {
    float: left;
}

.right {
    float: right
}

img {
    border: 0;
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

a {
    margin:0;
    padding:0;
    border:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}



/*定义滚动条高宽及背景 高宽分别对应横竖滚动条的尺寸*/
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
    background-color: #F5F5F5;
}
/*定义滚动条轨?内阴?圆角*/
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    border-radius: 10px;
    background-color: #F5F5F5;
}
/*定义滑块 内阴?圆角*/
::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: #555;
}
input::-webkit-input-placeholder {
    font-size: 12px !important;
    color: #bbbbbb;
}
input:-moz-placeholder {
    font-size: 12px !important;
    color: #bbbbbb;
}
input::-moz-placeholder {
    font-size: 12px !important;
    color: #bbbbbb;
}
input:-ms-input-placeholder {
    font-size: 12px !important;
    color: #bbbbbb;
}
body{
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
    font-size: 12px;
    line-height: 1.42857143;
    color: #333;
}

a {
    text-decoration: none;
    color: #444;
}
a:link{
    color: #444;
}
a:hover {
    color: #ff6600;
}
a:active{
    color: #ff6600;
}
/*title*/
h1 {
    font-size: 50px;
}

h2 {
    font-size: 40px;
}

h3 {
    font-size: 30px;
}

h4 {
    font-size: 14px;
}

h5 {
    font-size: 12px;
}

h6 {
    font-size: 9px;
}

/*layui样式重置*/
.layui-laydate .layui-laydate-main .layui-this{
    background-color: #62bcaa !important;
}
.layui-laydate-content th{
    height: 30px;
    line-height: 30px;
    border: none;
}
.layui-laydate-content td{
    border: none;
}
.account-search .layui-laydate-main  .laydate-selected:hover,.layui-laydate-main .layui-laydate-content td.laydate-selected{
    background-color: #ccf0e9 !important;
}

.mask{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0,0,0);
    opacity: 0.001;
    z-index: -1;
}
.hidden{
    display: none !important;
}
.btn{
    cursor: pointer;
    user-select: none;
    border-radius: 4px;
}
.btn:active{
    outline: 0;
    -webkit-box-shadow: inset 0 3px 5px rgba(0,0,0,.125);
    box-shadow: inset 0 3px 5px rgba(0,0,0,.125);
}


.container.editpage{
    padding-bottom: 42px;
    box-sizing: border-box;
}
.container .pageTitle{
    line-height: 80px;
    font-size: 16px;
    background-color: #fff;
    padding-left: 20px;
    color: #666666;
}
.container .iconfont{
    font-size: 12px;
    color: currentColor;
    vertical-align: middle;
    margin-right: 2px;
    cursor: pointer;
}
.container .pageTitle .iconfont{
    margin-right: 6px;
    font-size: 16px;
}

/*操作日志*/
.logrecord{
    position: fixed;
    bottom: 0;
    right: 0;
    width: 100%;
    z-index: 100;
    border-top: 1px solid rgb(217, 217, 217);
    overflow-x: hidden;
    overflow-y: auto;
    background: #fff;
    z-index: 999;
}
.logrecord .log-frame{
    height: 3em;
    transition: height .5s;
}
.logrecord.show .log-frame{
    height: 150px;
}

