/*********css reset************/
/* 清除内外边距 */
body, p, /* structural elements 结构元素 */
ul, ol, li, /* list elements 列表元素 */
button, input, textarea, /* form elements 表单元素 */
th, td { /* table elements 表格元素 */
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* 设置默认字体 */
body,
button, input, select, textarea { /* for ie */
    /*font: 12px/1 Tahoma, Helvetica, Arial, "宋体", sans-serif;*/
    /*font: 12px/1 Tahoma, Helvetica, Arial, "\5b8b\4f53", sans-serif;*/ /* 用 ascii 字符表示，使得在任何编码下都无问题 */
    font: 12px/1 "SourceHanSansSC";
}

body {
    background: #fff;
}

body, html {
    height: 100%;
}

em, i {
    font-style: normal;
}

/* 将斜体扶正 */

/* 重置列表元素 */
ul, ol, li {
    list-style: none;
}

/* 重置文本格式元素 */
a {
    text-decoration: none;
    color: #000;
    background: transparent;
    -webkit-tap-highlight-color: transparent;
}

input[type=text], input[type=password], input[type=search] {
    border: none;
    background: transparent;
    outline: none;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}

button, select, textarea {
    outline: none;
    -webkit-appearance: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

a:hover, a:visited, a:link {
    text-decoration: none;
}

input[type=button] {
    border: none;
}

input[type=button]:disabled {
    background: #AAA9A9;
}

q:before, q:after {
    content: '';
}

/* 重置表单元素 */
img {
    border: none;
}

/* img 搭车：让链接里的 img 无边框 */
/* 注：optgroup 无法扶正 */
button, input, select, textarea {
    font-size: 100%; /* 使得表单元素在 ie 下能继承字体大小 */
    outline: none;
}


/*@font-face {
	font-family:siyuan;
	src: url("font/SourceHanSansCN-Regular.otf");
}*/


/******清除浮动******/
.clearfix {
    *zoom: 1;
}

.clearfix:before, .clearfix:after {
    display: table;
    line-height: 0;
    content: "";
}

.clearfix:after {
    clear: both;
}

.fl {
    float: left;
}

.fr {
    float: right;
}


/****placeholder颜色***/
input::-webkit-input-placeholder {
    color: #dcdcdc;
}

input:-moz-placeholder {
    color: #dcdcdc;
}

input::-moz-placeholder {
    color: #dcdcdc;
}

input:-ms-input-placeholder {
    color: #dcdcdc;
}


.shade_box {
    position: fixed;
    left: 0px;
    top: 0px;
    bottom: 0px;
    right: 0px;
    background: rgba(0, 0, 0, .3);
    z-index: 999;
    display: none;

}

.shade_box_middle {
    width: 100%;
    height: 100%;
    display: table;
}

.shade_box_inner {
    width: 100%;
    display: table-cell;
    vertical-align: middle;
}

.shade_confirm {
    width: 70%;
    margin: 0px auto;
}

.shade_word {
    padding: 25px 5%;
    text-align: center;
    color: #030303;
    background: #fff;
    font-size: 14px;
    line-height: 20px;
    border-radius: 10px 10px 0px 0px;
}

.shadebtn_box {
    width: 100%;
    background: #fff;
    border-radius: 0px 0px 10px 10px;
}

.shadebtn {
    display: block;
    height: 35px;
    line-height: 35px;
    color: #ff6813;
    font-size: 16px;
    text-align: center;
    border-radius: 0px 0px 10px 10px;
    border-top: 1px solid #cccccc;
}

.shadebtn.w50 {
    width: 50%;
}

.shadebtn.w100 {
    width: 100%;
}

.shadebtn.ok {
    float: right;

}

.shadebtn.no {
    float: left;
    border-radius: 0px 0px 0px 10px;
    position: relative;
}

.shadebtn.no:after {
    content: '';
    display: block;
    width: 1px;
    height: 35px;
    background: #cccccc;
    position: absolute;
    right: 0px;
    top: 0px;
}
