@charset "utf-8";
/*比例：0.5718*/

/* 所有网页共享的 css */

/* 通用的 CSS 样式：必须放在其它 CSS 前面 */

body {
    padding: 0px;
    margin: 0px;
    background-color: white;
    font-size: 12px;
    font-family: 微软雅黑, "Microsoft YaHei", 黑体, 宋体, "Times New Roman", Arial, sans-serif;
}

div {
    word-wrap: break-word;
    word-break: break-all;
    
/*    position: relative;*/
    
/*  在缩放网页显示比例小于100%时，对容器的border属性默认不做处理，仍为1px。这样两个div的最后总宽度仍大于外层宽度，自动溢出到下一行。    
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
*/
    
}
img {
    border: none;
}
a {
    text-decoration: none;
}
input:focus {
    outline: none;
}

/*图片缩放*/
.scale105 img:hover {
    transform: scale(1.05, 1.05);
    transition: transform 0.7s ease;
    cursor: pointer;
}
.scale105 img {
    transform: scale(1, 1);
    transition: transform 0.7s ease;
}
.scale110 img:hover {
    transform: scale(1.1, 1.1);
    transition: transform 0.7s ease;
    cursor: pointer;
}
.scale110 img {
    transform: scale(1, 1);
    transition: transform 0.7s ease;
}

/*文字两端对齐*/
.txtJastify {
    text-align: justify;
    text-justify: inter-ideograph;
    word-wrap: break-word;
    word-break: break-all;
}

/*div浮动*/
.fLeft {
    float: left;
}
.fRight {
    float: right;
}
.fClear {
    clear: both;
}
.ofHide {
    overflow: hidden;
}

/*高宽*/
.h100{
    height: 100%;
}
.w100{
    width: 100%;
}
.w100c {
    width: 100%; 
    text-align: center;
}
.wAuto {
    width: auto;
}


/*div外框*/
.boxShadow03 {
    box-shadow: 0px 3px 3px 3px #D5F2F5;
}
.boxShadow01 {
    box-shadow: 10 10 12px 11px rgba(0, 140, 186, 0.5);
}
.boxShadow02 {
    box-shadow: 10px 10px 10px 10px #F3F3F3 inset;
}

/*文字阴影*/
.textShadow01 {
    /*text-shadow: 2px 3px 4px red;*/
    text-shadow: 0px 0px 0px #888;
    transition:text-shadow 0.5s
}
.textShadow01:hover {
    /*text-shadow: 2px 3px 4px red;*/
    text-shadow: 2px 2px 4px #888;
}

.textShadow02:hover {
    /*text-shadow: 2px 3px 4px red;*/
    text-shadow: 2px 2px 4px;
}
.textShadow03:hover {
    /*text-shadow: 2px 3px 4px red;*/
    text-shadow: 1px 1px 2px #000;
}

/*分隔线*/
.fgxDaE6 {
    border-bottom: 01px dashed #D5D3D3;
    height: 1px;
    
    transition: border-bottom 0.5s;
}

/*背景色*/
.bgWhite {
    background-color: white;
}
.bgBlue {
    background-color: blue;
}
.bgYellow {
    background-color: yellow;
}



.bgRed {
    background-color: red;
}

.posRelative {
    position: relative;
}

.txtAR {
    text-align: right;    
}

.posAbsolute {
     position: absolute;
}

.tran05 {
    transition: 0.5s;
}

.tran08 {
    transition: 0.8s;
}

.tran10 {
    transition: 1.0s;
}

.tran15 {
    transition: 1.5s;
}
