@charset "utf-8";
/* CSS Document */

/* 清除内外边距 */
body, h1, h2, h3, h4, h5, h6, hr, p, blockquote, /* structural elements 结构元素 */
dl, dt, dd, ul, ol, li, /* list elements 列表元素 */
pre, /* text formatting elements 文本格式元素 */
fieldset, lengend, button, input, textarea, /* form elements 表单元素 */
th, td { /* table elements 表格元素 */
    margin: 0;
    padding: 0;
}

/* 设置默认字体 */
body,
button, input, select, textarea { /* for ie */
    /*font: 12px/1 Tahoma, Helvetica, Arial, "宋体", sans-serif;*/
   font: 14px/1.2 "微软雅黑","Microsoft Yahei",Arial, Helvetica, sans-serif;
   background: #FFFFFF;
}
h1 { font-size: 18px; /* 18px / 12px = 1.5 */ }
h2 { font-size: 16px; }
h3 { font-size: 14px; }
h4, h5, h6 { font-size: 100%; }

address, cite, dfn, em, var { font-style: normal; } /* 将斜体扶正 */
code, kbd, pre, samp, tt { font-family: "Courier New", Courier, monospace; } /* 统一等宽字体 */
small { font-size: 12px; } /* 小于 12px 的中文很难阅读，让 small 正常化 */

/* 重置列表元素 */
ul, ol { list-style: none; }

/* 重置文本格式元素 */
a{color: inherit;text-decoration: none;
	outline: none;}
a:link { text-decoration: none;}
a:visited { text-decoration: none; }
a:hover{ text-decoration: none; }
a:active{ text-decoration: none; }

abbr[title], acronym[title] { /* 注：1.ie6 不支持 abbr; 2.这里用了属性选择符，ie6 下无效果 */
    border-bottom: 1px dotted;
    cursor: help;
}

q:before, q:after { content: ''; }

/* 重置表单元素 */
legend { color: #000; } /* for ie6 */
fieldset, img { border: none; } /* img 搭车：让链接里的 img 无边框 */
/* 注：optgroup 无法扶正 */
button, input, select, textarea {
    font-size: 100%; /* 使得表单元素在 ie 下能继承字体大小 */
}

/* 重置表格元素 */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* 重置 hr */
hr {
    border: none;
    height: 1px;
}

.fr{ float:right}
.fl{ float:left}
/*清除浮动*/
.clearfix:after {
    content: ".";
    visibility: hidden;
    display: block;
    height: 0;
    overflow: hidden;
	line-height:0;
    clear: both;
}
.clear{
	clear: both;
}


.dialog{ position:fixed; top:45%; left:0; right:0; bottom:0; z-index:99999;color:transparent; width:100%; height:100%;display: -webkit-box;
 /*-webkit-box-orient: horizontal;
 -webkit-box-pack: center;
 -webkit-box-align: center;
 -moz-box-orient: horizontal;
 -moz-box-pack: center;
 -moz-box-align: center;
 -ms-box-orient: horizontal;
 -ms-box-pack: center;
 -ms-box-align: center;*/
 }
.dialog_content{width:80%;}
.common_dialog{border-radius:5px; background-color:#fff; padding:10px; color:#666;}
.common_dialog h6{ text-align:center; font-size:18px; font-weight:bold}
.dialog_loading{ height:100px; width:100px; margin:0 auto;border-radius:10px; background:#ffffff url(../../img/common/loading_yellow.gif) center center no-repeat;}
.dialog_success{ height:auto;width:200px; color:#FFFFFF; margin:0 auto;border-radius:10px; background:#c1aa74; text-align:center; padding:10px;height: 50px;line-height: 50px;}
.dialog_fail{ height:auto;width:200px; color:#ff494b;margin:0 auto;border-radius:10px; background:#D7D7D7; text-align:center; padding:10px;font-size: 16px;height: 50px;line-height: 50px;}
.dialog_confirm{ width:240px; margin:0 auto; background:#fff; border-radius:10px;}
.dialog_confirm .title{ font-weight:bold; font-size:16px; text-align:center; line-height:30px; padding:10px; border-bottom:1px solid #eee; color:#333}
.dialog_confirm .msg{ font-size:14px; text-align:center; padding:10px; color:#333}
.dialog_confirm .btn_wrap{ overflow:hidden; zoom:1; border-top:1px solid #eee; display:-webkit-box;}
.dialog_confirm .leftBtn{ -webkit-box-flex:1; border-bottom-left-radius:10px; height:40px; line-height:40px; width:50%; border-right:1px solid #ddd; display:block;text-align:center; font-size:16px;}
.dialog_confirm .rightBtn{-webkit-box-flex:1; border-bottom-right-radius:10px; height:40px; line-height:40px; width:50%; display:block;text-align:center; font-size:16px;}

.tipsDiv{width: 100%;padding: 10px 0;text-align: center;color: #FF494B;}