/*
 *页面通用css,其他具体样式到具体应用设定
 */

.weui-footer {
    width: 100%;
    position: relative;
    bottom: 0px;
    padding: 0;
    height: 68px;
    color: #999999;
    font-size: 14px;
    text-align: center;
}


/*body 最近一层*/
.page1{
    box-sizing: border-box;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    overflow: auto;
}

.smart-header-content{
    position: relative;
    width:100%;
    height: 40px;
    line-height: 40px;
    background-color: #4696e1;
    color: #fff;
    font-size: 18px;
    text-align: center;
    /*z-index: 1100;*/
}

.smart-notice {
    position: relative;
    top: 5px;
    left: 1%;
    width: 98%;
    border: 1px solid #b2b2b2;
    overflow: auto;
    box-sizing: border-box;
    height:160px;
}
/*须知内容*/
.content-notice{
    padding-top:5px;
    padding-left: 10px;
    padding-right: 10px;
    background: #ffffff;
}

.weui_cell_primary {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}



.smart-form-border-bottom {
    border-bottom: 1px solid #e0e0e0;
}

/*导入字体文件*/
@font-face {
    font-family: 'iconfont';
    src: url('iconfont.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

*,
*:before,
*:after {
    box-sizing: border-box;
}

/*表单单选框、多选框样式*/
.smart-form-checkbox-item,
.smart-form-radio-item {
    position: relative;
    vertical-align: middle;
    font-size: 16px;
    word-wrap: break-word;
    word-break: break-all;
    color: #000000;
    /*line-height: 6px;*/
    /*padding: 10px 15px;*/
    width: 100%;
    box-sizing: border-box;
    display: -webkit-box;
    -webkit-box-sizing: border-box;
    -webkit-box-align: center;
}
.smart-form-checkbox-item:first-child,
.smart-form-radio-item:first-child {
    margin-left: 0!important;
}
.smart-form-checkbox-item div,
.smart-form-radio-item div {
    -webkit-box-flex: 10;
}
.smart-form-checkbox-item input,
.smart-form-radio-item input {
    display: inline-block;
    position: relative;
    overflow: visible;
    border: 0;
    background: 0 0;
    -webkit-appearance: none;
    outline: 0;
    vertical-align: top;
}
.smart-form-checkbox-item input[type=radio],
.smart-form-radio-item input[type=radio] {
    width: 20px;
    height: 20px;
    top: 1px;
    left: -5px;
}
.smart-form-checkbox-item input[type=checkbox],
.smart-form-radio-item input[type=checkbox] {
    width: 20px;
    height: 20px;
    top: 3px;
    left: -4px;
}
.smart-form-checkbox-item input:before,
.smart-form-radio-item input:before {
    content: '';
    display: block;
    border: 1px solid #dfe0e1;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    position: absolute;
    left: 0px;
    top: 0px;
}
.smart-form-checkbox-item input[type=radio]:before,
.smart-form-radio-item input[type=radio]:before {
    width: 20px;
    height: 20px;
    border-radius: 11px;
}
.smart-form-checkbox-item input[type=checkbox]:before,
.smart-form-radio-item input[type=checkbox]:before {
    width: 18px;
    height: 18px;
}
.smart-form-checkbox-item input:checked:after,
.smart-form-radio-item input:checked:after {
    display: block;
    /*background:@global-green;*/
    position: absolute;
}
.smart-form-checkbox-item input[type=radio]:checked:after,
.smart-form-radio-item input[type=radio]:checked:after {
    font-family: "iconfont" !important;
    font-size: 22px;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -webkit-text-stroke-width: 0px;
    -moz-osx-font-smoothing: grayscale;
    color: #258ee7;
    content: "\e656";
    width: 20px;
    height: 20px;
    border-radius: 10px;
    left: -1px;
    top: -2px;
}
.smart-form-checkbox-item input[type=checkbox]:checked:after,
.smart-form-radio-item input[type=checkbox]:checked:after {
    font-family: "iconfont" !important;
    font-size: 20px;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -webkit-text-stroke-width: 0px;
    -moz-osx-font-smoothing: grayscale;
    color: #04be02;
    content: "\e755";
    width: 18px;
    height: 18px;
    left: -1px;
    top: -3px;
}
.smart-form-checkbox-item:active,
.smart-form-radio-item:active {
    background-color: #ECECEC;
}

/*textarea*/
.weui_textarea {
    display: block;
    border: 0;
    resize: none;
    width: 100%;
    color: inherit;
    font-size: 1em;
    line-height: inherit;
    outline: 0;
}

/*附件*/
.weui_uploader_bd{
    margin-bottom: 0px;
    overflow: hidden;
}

.weui_uploader_files{
    list-style: none;
}

.weui_cell {
    padding: 10px 15px;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

/*开关按钮颜色*/
.label-switch input[type="checkbox"]:checked + .checkbox {
    background: #0894ec;
}