/* 公共代码样式 */
* {
    margin: 0;
    padding: 0;
    font-family: 'Light'!important;
}
ul,
ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

dl {
    margin-bottom: 0;
}

a {
    text-decoration: none;
}
a:hover {
    text-decoration: none!important;
}

img {
    vertical-align: middle;
}
div {
    box-sizing: border-box;
}
p {
    margin: 0;
}

/* 清除浮动 */
.clearfix:after {
    content: " ";
    display: block;
    clear: both;
    height: 0;
}
/* 左浮动 */
.float-left {
    float: left;
}
/* 右浮动 */
.float-right {
    float: right;
}
.font-bold {
    font-weight: bold;
}
.font400 {
    font-weight: 400;
}



.font14 {
    font-size: 1.4rem;
}
.font16 {
    font-size: 1.6rem;
}
.font18 {
    font-size: 1.8rem;
}
.font20 {
    font-size: 2rem;
}
.font22 {
    font-size: 2.2rem;
}
.font24 {
    font-size: 2.4rem;
}
.font26 {
    font-size: 2.6rem;
}
.font30 {
    font-size: 3rem;
}
.font32 {
    font-size: 3.2rem;
}
.font34 {
    font-size: 3.4rem;
}
.font60 {
    font-size: 6rem;
}

/* 外边距 */
.mb100 {
    margin-bottom: 10rem;
}
.mb85 {
    margin-bottom: 8.5rem;
}
.mb80 {
    margin-bottom: 8rem;
}
.mb75 {
    margin-bottom: 7.5rem;
}
.mb45 {
    margin-bottom: 4.5rem;
}
.mb25 {
    margin-bottom: 2.5rem;
}
.mt30 {
    margin-top: 3rem;
}
.mt50 {
    margin-top: 5rem;
}
.mt65 {
    margin-top: 6.5rem;
}

/* 内边距 */
.pt160 {
    padding-top: 16rem;
}
.pb130 {
    padding-bottom: 13rem;
}
.pb250 {
    padding-bottom: 25rem;
}


/* 主要颜色 */
.color1E52B0 {
    color: #1E52B0;
}
.color1D52AE {
    color: #1D52AE;
}
.color444444 {
    color: #444444;
}
.color333333 {
    color: #333333;
}
.color666666 {
    color: #666666;
}
.color999999 {
    color: #999999;
}
.colorE11115 {
    color: #E11115;
}
.colorFFFFFF {
    color: #FFFFFF;
}
.colorFBFBFB {
    color: #FBFBFB;
}
.color8490A0 {
    color: #8490A0;
}


/* 布局flex */
.flex {
    display: flex;
}
.flex-al-c {
    align-items: center;
}
.flex-column-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}
.flex-sb {
    display: flex;
    justify-content: space-between;
}
.flex-sa {
    display: flex;
    justify-content: space-around;
}
.flex-wrap {
    flex-wrap: wrap;
}
.flex-nowrap {
    flex-wrap: nowrap;
}
.flex-row {
    flex-direction: row;
}
.flex-column {
    flex-direction: column;
}

/* 固定定位 */
.position-fixed{
    position: fixed;
}
/* 相对定位 */
.position-relative{
    position: relative;
}
/* 绝对定位 */
.position-absolute{
    position:absolute
}

/* 距离左边距离 */
.left50 {
    left: 50%;
}
/* 距离右边距离 */
.top50 {
    top: 50%;
}

/* 宽度 */
.w100 {
    width: 100%;
}
.h100 {
    height: 100%;
}

/* 大小 */
.wh100 {
    width: 100%;
    height: 100%;
}

/* margin */
.margin-auto {
    margin: 0 auto;
}

/* 字体行高 */
.line-h1em{
    line-height: 1em;
}
.line-h2em{
    line-height: 2em;
}
.line-h3em{
    line-height: 3em;
}

/* 单行文本居中 */
.text-center {
    text-align: center;
}
.text-left {
    text-align: left;
}
.text-right {
    text-align: right;
}


.animated {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

.animated.infinite {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite
}

.animated.hinge {
    -webkit-animation-duration: 2s;
    animation-duration: 2s
}


@-webkit-keyframes bounceInUp {

    0%,
    100% {
        -webkit-transition-timing-function: linear;
        transition-timing-function: linear
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 1000px, 0);
        -ms-transform: translate3d(0, 1000px, 0);
        transform: translate3d(0, 1000px, 0)
    }

    100% {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes bounceInUp {

    0%,
    100% {
        -webkit-transition-timing-function: linear;
        transition-timing-function: linear
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 1000px, 0);
        -ms-transform: translate3d(0, 1000px, 0);
        transform: translate3d(0, 1000px, 0)
    }

    100% {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

.bounceInUp {
    -webkit-animation-name: bounceInUp;
    animation-name: bounceInUp
}





