/**
    自定义样式设置
 */
hr {
    height: 2px !important;
}
input {
    font-size: 13px !important;
}
body .layui-layer-lan .layui-layer-title {
    background: rgb(51,122,183);
}
.nav-slash:last-child {
    display: none;
}
.page {
    margin-top: 10px !important;
}
.page a {
    height: 15px;
    line-height: 15px;
}
.page span {
    height: 15px;
    line-height: 15px;
}
.cursor {
    cursor:pointer
}
#show-img > a {
    display: block;
    color: #01AAED;
    font-size: 14px;
    cursor:pointer;
    margin-top: 2px;
}
.font-size-14px {
    font-size: 14px;
}
.font-size-15px {
    font-size: 15px;
}
.font-size-16px {
    font-size: 16px;
}
.display-none {
    display: none;
}
.display-block {
    display: block;
}
.float-left {
    float: left;
}
.float-right {
    float: right;
}
.clear-both {
    clear: both;
}
.diy-bg-grey {
    background-color: #F2F2F2;
}
.margin-left-10px {
    margin-left: 10px !important;
}
.margin-left-20px {
    margin-left: 20px !important;
}
.margin-left-40px {
    margin-left: 40px !important;
}
.margin-right-10px {
    margin-right: 20px !important;
}
.margin-top-25px {
    margin-top: 25px !important;
}
.margin-bottom-10px {
    margin-bottom: 10px !important;
}
.submit-upload-btn {
    width: 80px;
    height: 27px;
    background-color: #1E9FFF;
    color: #FFE;
    border: 0;
}
.submit-upload-btn:hover {
    background: #1E9FFF;
    opacity: 0.5;
}

.padding-none {
    padding: 0 !important;
}
.notice-text {
    font-size: 13px;
    color: red;
}
.is-required {
    position:relative;
    left: -2px;
    top:7px;
    color: red;
    font-weight:bold;
    font-size: 20px
}
.foot-fixed-btu {
    position: fixed;
    bottom: 0;
    left: 0;
    margin-left: -15px;
    text-align: center;
    width: 100%;
    padding: 10px;
    background-color: #fff;
}
.layui-form-item {
    width: 70% !important;
}
.layui-btn-default {
    border: 0 !important;
}
.layui-input {
    height: 35px !important;
}
.layui-form {
    padding: 20px;
    margin-bottom: 10px !important;
}
.layui-form-select dl dd.layui-this {
    background-color: #1E9FFF !important;
}
.layui-input:focus{
    border-color: #1E9FFF !important;
}

/**
    搜索样式
 */
.search-forms .layui-btn {
    margin-bottom: 3px;
}
.search-forms input{
    height: 31px !important;
}
.not-layui-form {
    padding: 20px;
    min-height: 450px;
}
/**
    form 组样式
 */
.form-group input{
    margin-left: 5px;
    margin-right: 5px;
}
.form-group-200 {
    width: 200px !important;
}
input[type=checkbox]:after {
    content: "";
    display:block !important;
    width: 16px;
    height: 16px;
    text-align: center;
    line-height: 16px;
    font-size: 12px;
    color: #fff;
    border: 1px solid #ddd;
    background-color: #fff;
    box-sizing:border-box;
    cursor: pointer;
    /*增加一些动画*/
    -webkit-transition : all ease-in-out 300ms;
    -moz-transition : all ease-in-out 300ms;
    transition : all ease-in-out 300ms;
}

input[type=checkbox]:checked:after {
    content: '\2714';
    border: 1px solid #1E9FFF ;
    color: #1E9FFF ;
    font-weight: bold;
}

/*单选框 选中之后的样式*/
input[type=radio]:after {
    content: "";
    display:block;
    width: 18px;
    height: 18px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    text-align: center;
    line-height: 15px;
    font-size: 30px;
    position: relative;
    left: -3px;
    top: 0;
    color: #fff;
    border: 1px solid #ddd;
    background-color: #fff;
    box-sizing:border-box;
    margin-right: 20px;
    cursor: pointer;
    /*增加一些动画*/
    -webkit-transition : all ease-in-out 300ms;
    -moz-transition : all ease-in-out 300ms;
    transition : all ease-in-out 300ms;
}

input[type=radio]:checked:after  {
    content: '\2022';
    border: 1px solid #1E9FFF ;
    color: #1E9FFF ;
    font-weight: 800;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
}

.select-input {
    height: 35px !important;width: 100%;padding-left: 10px; line-height: 1.3;  border-width: 1px;  border-style: solid;  background-color: #fff;  border-radius: 2px;  border-color: #E6E6E6;  color: #726969;  font-size: 13px !important;
}
.select-input-dot {
    display: inline-block;  width: 0;  height: 0;  border-style: dashed;  border-color: transparent;  overflow: hidden;  position: absolute;  right: 5px;  top: 50%;  margin-top: -3px;  cursor: pointer;  border-width: 6px;  border-top-color: #C2C2C2;  border-top-style: solid;  transition: all .3s;  -webkit-transition: all .3s;
}

/**
    loading 的样式
 */
.loading-box {
    display: inline-block;
    position: absolute;
    left: 40%;
    top: 35%;
    background-color: rgba(25, 24, 24, 0.5);
    border: 1px solid currentcolor;
    border-radius: 3px;
    font-size: 30px;
    color: #fff;
    padding: 1em;
    margin-bottom: .25em;
    vertical-align: top;
    -webkit-transition: .3s color, .3s border;
    transition: .3s color, .3s border;
    z-index: 999;
}
.loading-box .loader {
    display: inline-block;
    width: 2em;
    height: 2em;
    color: inherit;
    vertical-align: middle;
    pointer-events: none;
    border: .2em solid currentcolor;
    border-bottom-color: transparent;
    border-radius: 50%;
    -webkit-animation: 1s loader linear infinite;
    animation: 1s loader linear infinite;
    position: relative;
}
.loading-box  .loading-tag {
    font-size: 14px;
    margin-top:10px;
    text-align: center;
}
@-webkit-keyframes loader {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes loader {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}