/*自定义按钮*/
.btn-normal {
    min-width: 90px;
    height: 36px;
    background: rgba(76, 135, 251, 1);
    box-shadow: 0px 2px 10px 0px rgba(76, 135, 251, 0.6);
    border-radius: 4px;
    border: 0;
    color: #fff;
    padding: 0 24px;
    cursor: pointer;
}

.btn-normal a {
    color: #fff;
}

.btn-gost {
    min-width: 90px;
    height: 36px;
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(76, 135, 251, 1);
    border-radius: 4px;
    outline: 0;
    color: #4C87FB;
    padding: 0 24px;
    cursor: pointer;
}

.btn-pale {
    min-width: 90px;
    height: 36px;
    background: rgba(255, 255, 255, 1);
    border: 1px solid #DDDDDD;
    border-radius: 4px;
    outline: 0;
    color: #666;
    padding: 0 24px;
    cursor: pointer;
}

.btn-normal:focus {
    outline: 0;
    border: 0;
}

.btn-gost,
.btn-pale {
    outline: 0;
}

.btn-normal:hover,
.btn-gost:hover {
    background: rgba(70, 125, 235, 1);
    color: #fff;
    border-color: transparent;
}

.btn-pale:hover {
    border: 1px solid rgba(76, 135, 251, 1);
}

.btn-pale:active {
    outline: 0;
    border: 1px solid rgba(67, 120, 223, 1);
}

.btn-normal:active,
.btn-gost:active {
    background: rgba(67, 120, 223, 1);
    outline: 0;
    border: 0;
}

.disabled {
    background: #E4E6E5;
    color: #999;
    border-color: 1px solid #E4E6E5;
    pointer-events: none;
}

/*输入框*/

input[type="text"],input[type="password"]{
    box-sizing: border-box;
    /* width: 340px;
    height: 40px; */
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(213, 218, 223, 1);
    border-radius: 2px;
    padding-left: 16px;
}

input::-webkit-input-placeholder {
    font-size: 14px;
    color: #CCCCCC;
}

input::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    font-size: 14px;
    color: #CCCCCC;
}

input:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    font-size: 14px;
    color: #CCCCCC;
}

input:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    font-size: 14px;
    color: #CCCCCC;
}

b {
    color: #EE3333;
    margin-right: 5px;
}

/*单选框*/
input[type="radio"]+label::before {
    box-sizing: border-box;
    content: "\a0";
    /*不换行空格*/
    display: inline-block;
    vertical-align: middle;
    font-size: 18px;
    width: 20px;
    height: 20px;
    margin-right: .4em;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #dadada;
    text-indent: .15em;
    line-height: 1;
}

input[type="radio"]:checked+label::before {
    width: 6px;
    height: 6px;
    border: 6px solid #4C87FB;
    box-sizing: border-box;
    padding: 4px;
}

input[type="radio"] {
    position: absolute;
    clip: rect(0, 0, 0, 0);
}

/*内容区*/
.main-wrapper {
    background: #F6F6F8;
    padding: 16px 0 60px;
    font-size: 14px;
}

.main {
    width: 1200px;
    margin: 0 auto;
}

/*颜色*/
.black {
    color: #333;
}

.iron_grey {
    color: #666;
}

.grey {
    color: #999;
}

.blue {
    color: #4C87FB;
}

.pink {
    color: #F62D57
}

.orange {
    color: #FD5F39;
}

.yellow {
    color: #FF8519;
}

.show {
    display: block;
}

.hide {
    display: none !important;
}

.bold{
    font-weight: bold;
}

.f14{
    font-size: 14px;
}

.f16{
    font-size: 16px;
}



/*下拉框*/
.field-select {
    box-sizing: border-box;
    width: 380px;
    height: 40px;
    /* padding: 0 17px; */
    color: #333;
    background: #fff;
    /* border: 1px solid rgba(213, 218, 223, 1); */
    border-radius: 2px;
    position: relative;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.field-input::placeholder {
    color: #bbb;
}

.select-value {
    position: absolute;
    display: inline-block;
    line-height: 36px;
    font-size: 14px;
    height: 36px;
    cursor: pointer;
    user-select: none;
    pointer-events: none;
}

.select-dot {
    position: absolute;
    width: 16px;
    height: 16px;
    right: 1%;
    top: 30%;
    display: inline-block;
    transition: 0.5s;
}

.select-group {
    box-sizing: border-box;
    display: none;
    position: absolute;
    width: 380px;
    z-index: 2;
    top: 37px;
    left: 0px;
    border-radius: 0px 0px 4px 4px;
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 0px 0px 10px 1px rgba(225, 225, 225, 0.8);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.select-item {
    height: 36px;
    line-height: 36px;
    font-size: 14px;
    padding: 0 10px;
}

.select-item:hover {
    font-weight: bold;
    background: #E9EDF5;
}

.option-item {
    display: flex;
    align-items: center;
    color: rgba(76, 135, 251, 1);
    border: 1px solid rgba(76, 135, 251, 1);
    border-radius: 2px;
    padding: 0px 4px;
    margin-right: 12px !important;
}

.selected {
    border: 0;
}
.layer-select{
    position: relative;
}
.layer-select input{
    cursor: pointer;
}

/**/
/*单选框*/

.form-checkbox {
    display: flex;
    align-items: center;
}

input[type='checkbox'] {
    width: 14px;
    height: 14px;
    background-color: #fff;
    -webkit-appearance: none;
    border: 1px solid #c9c9c9;
    border-radius: 2px;
    outline: none;
    margin: 0;
    margin-right: 6px;
}

input[type=checkbox]:checked {
    border: 0;
    background: url('../images/login-status_slices/check-icon.png') no-repeat;
    background-size: 100% 100%;
}

.checkBox {
    display: flex;
    align-items: center;
}

/*横向居中*/
.flex-center {
    display: flex;
    align-items: center;
}

/*单位底部*/
.unit-footer {
    background-color: #F6F6F8;
    text-align: center;
    font-size: 14px;
    padding-top: 30px;
    border-top: 1px solid #EEEFF2;
}

.unit-footer a::after{
    content: '|';
    margin: 0 10px;
    color: #666;
}

.unit-footer a:last-child::after{
    content: '';
    margin: 0;
}


.unit-footer a{
    color: #666;
}

.unit-copyright {
    padding: 31px 0 23px 0;
}

/*layer弹窗*/

.layer-content{
    padding-top: 0 !important;
}
.layui-layer-btn{
    padding-bottom: 40px !important;
}
