/* 1、样式重置 */
body, h1, h2, h3, h4, h5, h6, hr, blockquote,
dl, dt, dd, ul, ol, li,
pre,
fieldset, button, input, textarea,
th, td {
    padding:0;
    margin:0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    outline: none;
}
p{
    margin-top: 0;
    margin-bottom: 0;
}
input{
    border: none;
    background: none;
}
h1,h2,h3,h4,h5{ font-weight: normal;}
textarea {resize:none;overflow: hidden;border: 1px solid #c0c0c0}
ul>li { list-style: none;}
img { border:none; }
a {
    text-decoration:none;
    border:none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}
a:hover { text-decoration:none;}
em ,i {font-style: normal}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
/* 2、通用样式 */
article,aside,dialog,footer,header,section,footer,nav,figure,menu{display:block}

body,html {
    border: 0;
    margin: 0;
    background-color: #fff;
}
body {
    overflow-x: hidden;
    *position: relative;/* 解决ie6 7，overflow-x: hidden;不兼容问题 */
    /*background-color: #f4f7f9;*/
    min-width: 1200px;
}
/*清浮动*/
.clear { *zoom:1;overflow: hidden; }
.clear:after {
    content:'';
    display:block;
    clear:both;
    height:0;
    overflow:hidden;
    visibility:hidden;
}

.fl { float: left;  }
.fr { float: right; }

/* 文本对齐方式 */
.txt_align_left{text-align: left!important;}
.txt_align_right{text-align: right!important;}
.txt_align_center{text-align: center!important;}

/* 文字缩进 */
.text_indent55{text-indent: 55px;}

/* 纵向对齐方式 */
.vertical_mid{vertical-align: middle;}

/* 字体大小 */
.font12{font-size: 12px;}

/* 字体颜色 */
.word_lightblue{color: #649fed;}
.word_red{color: #ff3d3d;}
.word_gray{color:#888;}
/* 背景色 */
.purple_bg{background-color: #9688e2;}
.green_bg{background-color: #77c706;}
.orange_bg{background-color: #f5ab1e;}
.lightgray_bg{background-color: #f8f8f8;  }

.purple_border:hover {background-color: #9688e2;border: 1px solid #9688e2;}
.green_border:hover {background-color: #77c706;border: 1px solid #77c706;}
.orange_border:hover {background-color: #f5ab1e;border: 1px solid #f5ab1e;}
.blue_border:hover {background-color: #4db6bf;border: 1px solid #4db6bf;}

/* 百分比宽度 */
.widthper25{width: 25%;}
.widthper33{width: 33.3%;}
.widthper50{width: 50%;}
.widthper100{width: 100%;}

/* 具体宽度 */
.w960{width: 960px;}
.w1050{width: 1050px;}
.w1100{ width: 1100px;}
.w1200{ width: 1200px;}

/* 左右边距 */
.ml10{margin-left: 10px;}
.ml20{margin-left: 20px;}
.ml30{margin-left: 30px;}
.ml60{margin-left: 60px;}
.mr20{margin-right: 20px;}
.mr110{margin-right: 110px;}
label.x55{
    display: inline-block;
    width: 55px;
    padding-right: 5px;
}
label.x130{
    display: inline-block;
    width: 130px;
    padding-right: 5px;
}

.auto{
    margin-left: auto;
    margin-right: auto;
}
.inlineB {
    display: inline-block;
    *display: inline;/*inline-block，ie6,7不能正常显示*/
    *zoom: 1;
}
.hover_under{cursor: pointer;}
.hover_under:hover{text-decoration: underline;}
/*li中所有元素浮动，ie7下li元素间出现4px间距*/
.four_px_gap { *vertical-aline:top;}

/*margin-top值传递*/
.mt_pass{
    overflow: hidden;
    zoom: 1;
}
/*单行文本溢出省略号*/
.ellip {
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.bor-right-trans {
    border-right: transparent !important;
}
/* 等高布局 */
.equ_high{
    margin-bottom: -9999px;
    padding-bottom: 9999px;
}
/* padding不会增大元素宽高 */
.box_size{
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.pointer{cursor: pointer;}

.btn{
    display: inline-block;
    margin-bottom: 0;
    font-size: 12px;
    font-weight: normal;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    background-image: none;
    border: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    *overflow: visible;         /* 解决i6,7 下按钮显示的padding值远远大于设置的padding值 */
}

.main_content_mid{
    width: 1000px;
    margin: 0 auto;
    padding: 0;
}
.main_content_mid1200{
    width: 1200px;
    margin: 0 auto;
    padding: 0;
}

/* 分页 */
.page {
    margin: 30px 0 40px 20px;
}
.page-list{
    text-align: left;
    margin-left: 0;
}
.page-list li{
    color:#666;
    font-size: 16px;
    margin-right: 6px;
    display: inline-block;
    border: 1px solid #e6e6e6;
}

.page-list li a,
.page-list li span{
    padding: 10px 10px;
    color:#999
}
.present{
    background-color: #83b1ee;
    color: #fff !important;
}
.to-none{
    background-color: #cecece;
    color: #fff !important;
}

#qidian_wpa_3009087776_1088{
    position: absolute;
    top:25px;
    right: 5px;
}

#qidian_wpa_3009087776_1089{
    position: absolute;
}

