@charset "utf-8";
/* 所有页面公用css*/

*{ text-shadow:none;-webkit-tap-highlight-color: rgba(0, 0, 0, 0);}
*{-webkit-text-size-adjust:none }/*苹果横屏文字不变*/
html {
    overflow-y:scroll
}
html, body {
    background:none
}
select {
    width:40px
}
body,font {
    font-size:12px;
}

html {
    color:#000;
    direction:ltr;
    font-family:"HiraginoSansGB-W3","微软雅黑","Microsoft Yahei","宋体", "Arial Narrow","HELVETICA";/*微软雅黑测试中*/
}
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, button, textarea, p, blockquote, th, td, i {
    margin:0;
    padding:0;
}
i{font-style:normal}
table {
    border-collapse:collapse;
    border-spacing:0;
    table-layout:fixed;
}
fieldset, img{
    border:0;
}
address, caption, cite, code, dfn, em, strong, th, var, optgroup, b {
    font-style: normal;
    font-weight:normal;
}
del, ins {
    text-decoration:none;
}
li {
    list-style:none;
}
caption, th {
    text-align:left;
}
h1, h2, h3, h4, h5, h6 {
    font-size:100%;
    font-weight:normal;
}
q:before, q:after {
    content:'';
}
abbr, acronym {
    border:0;
    font-variant:normal;
}
sup {
    vertical-align:baseline;
}
sub {
    vertical-align:baseline;
}
legend {
    color:#000;
}
input, button, textarea, select, optgroup, option {
    font-family:inherit;
    font-size:inherit;
    font-style:inherit;
    font-weight:inherit;
}
input, button, textarea, select {
    *font-size:100%;
}
a{text-decoration:none;}
a:focus, a:hover{color: #FFF;text-decoration:none;}
/*去掉自动验证的红框*/
input,
textarea{box-shadow: none;}
input:focus{outline: none;}

/*disable 背景变成白色*/
/*select,
input[type="text"],
input[type="date"],
input[type="datetime"],
input[type="number"],
input[type="password"],
input[type="time"],
input[type="email"],
input[type="tel"] { background-color: #FFF; }*/
select,
input{ background-color: #FFF; }
/*disable 背景变成白色 end*/

select { width: 40px; }
textarea { border: 1px solid #cccccc; background: #FFF;}

/*去掉input type=number的 上下箭头*/
input[type="number"] {-moz-appearance: textfield;}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button{
    -webkit-appearance: none;	/* 有无看不出差别 */
    width:auto;
}
/*去掉input type=number的 上下箭头end*/

/*ie10去掉输入框的叉子*/
input::-ms-clear{display:none;}

/*win8 chorme输入框变黄*/
input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px white inset;
}

/*placeholder文字颜色*/
textarea::-webkit-input-placeholder {
    color:#9d9d9d
}
textarea:-moz-placeholder {
    color:#9d9d9d
}
textarea::-moz-placeholder {
    color:#9d9d9d
}
textarea:-ms-input-placeholder {
    color:#9d9d9d
}



input::-webkit-input-placeholder {
    color:#9d9d9d
}
input:-moz-placeholder {
    color:#9d9d9d; opacity: 1;
}
input::-moz-placeholder {
    color:#9d9d9d; opacity: 1;
}
input:-ms-input-placeholder {
    color:#9d9d9d
}

/*placeholder文字颜色end*/
a {
    text-decoration:none;
    cursor:pointer;
    color:#0f72b8;
}
a:hover {
    text-decoration: none;
}
a:link{text-decoration:none; cursor:pointer;}
 
a:visited{text-decoration:none; cursor:pointer}
 
a:active{text-decoration:none; cursor:pointer}



a:focus {
    -moz-outline-style: none;   /*    FF    */
}
input, button, select, textarea {
    outline:none;
}
textarea {
    resize:none;
}
img {
    vertical-align:bottom
}
.clear {
    clear:both;
    height:0;
    line-height:0;
    visibility:hidden;
}
.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden
}
.clearfix {
    zoom: 1;
    display:inline-block;
    _height: 1px
}
.clearfix {
    display: block
}
.clearfixOverflow {
    overflow:hidden;
    display:block
}

/*对齐方式*/

body .left {
    float:left;
}
body .right {
    float:right;
}
.display_inhert {/*继承父元素display属性*/
    display:inherit
}

.wordBreak {
    word-break: break-all;
    word-wrap:break-word
}
.wordBreak_td {
    display: table-cell;
    display:block\9\0;
    *display: block;
    word-break:break-all;
    word-wrap:break-word;
}/*td加宽度,所有th/td都要有宽度，中的内容套一个容器span，*/
@media screen and (-webkit-min-device-pixel-ratio:0) {
    .wordBreak_td {
        display: table-cell
    }
}/*Chrome & Safari*/
.whiteSpace{/*文字不换行*/
    white-space:nowrap;
}

.textCut{text-overflow:ellipsis; overflow:hidden; white-space:nowrap;}

.underline {
    padding-bottom:10px;
    border-bottom:1px solid #e5ecf2
}
body .noBorder {
    border:0
}
.opacity10 {
    filter: Alpha(opacity=10);
    -moz-opacity:.1;
    opacity:0.1;
}
.opacity15 {
    filter: Alpha(opacity=15);
    -moz-opacity:.15;
    opacity:0.15;
}
.opacity20 {
    filter: Alpha(opacity=20);
    -moz-opacity:.2;
    opacity:0.2;
}

/*1px边框*/
.borderPx1{
    position: relative;
}
.borderPx1:after {
    box-sizing: border-box;
    font-size:0px;
    border-radius:1em;
    display: block;
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    -webkit-transform-origin: 0 0;
    -webkit-transform: scale(1);
    pointer-events: none;
}
/*不同dpr缩放*/
@media only screen and (-webkit-min-device-pixel-ratio: 1.5) {
    .borderPx1:after{
        width:150%;
        height:150%;
        -webkit-transform: scale(0.66666666);
        border-radius:1.5em;
    }
}
@media only screen and (-webkit-min-device-pixel-ratio: 2) {
    .borderPx1:after{
        width:200%;
        height:200%;
        -webkit-transform: scale(0.5);
        border-radius:2em;
    }
}
@media only screen and (-webkit-min-device-pixel-ratio: 2.5) {
    .borderPx1:after{
        width:300%;
        height:300%;
        -webkit-transform: scale(0.3333);
        border-radius:3em;
    }
}

