﻿body {
    font-family: "Microsoft Yahei";
    font-size: 12px;
    color: #292B30;
}

* {
    margin: 0;
    padding: 0;
    list-style: none;
    font-style: normal;
    box-sizing: border-box;
}

img {
    max-width: 100%;
    border: none;
}

table {
    border-collapse: collapse;
}

html, body {
    height: 100%;
    width: 100%;
    max-width: 1920px;
    height: 70px;
    background: rgba(255,255,255,1);
    margin: 0 auto;
}

a {
    color: #292B30;
    text-decoration: none;
}

    a:link {
        color: #292B30;
    }

    a:visited {
        color: #292B30;
    }

input {
    color: #292B30;
    border: 0px;
    outline: none;
}

    input::-webkit-input-placeholder { /* WebKit browsers */
        color: #A9A5A2;
    }

    input:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
        color: #A9A5A2;
    }

    input::-moz-placeholder { /* Mozilla Firefox 19+ */
        color: #A9A5A2;
    }

    input:-ms-input-placeholder { /* Internet Explorer 10+ */
        color: #A9A5A2;
    }

.cls, .clear, .clearfix {
    clear: both;
}

.hide {
    display: none;
}

.width1200, .w1200 {
    width: 1200px;
    margin: 0 auto;
}

.width1100, .w1100 {
    width: 1100px;
    margin: 0 auto;
}

/*动画**/

.fadeInLeft {
    animation: fadeInLeft 1s ease-in-out;
    -webkit-animation: fadeInLeft 1s ease-in-out; /*Safari and Chrome*/
}

.fadeInLeft1_1s {
    animation: fadeInLeft 2s ease-in-out;
    -webkit-animation: fadeInLeft 2s ease-in-out; /*Safari and Chrome*/
}

.fadeInRight {
    animation: fadeInRight 1s ease-in-out;
    -webkit-animation: fadeInRight 1s ease-in-out; /*Safari and Chrome*/
}

.zoomIn {
    animation: zoomIn 0.5s ease-in-out;
    -webkit-animation: zoomIn 0.5s ease-in-out; /*Safari and Chrome*/
}

.flipInX {
    animation: flipInX 1s ease-in-out;
    -webkit-animation: flipInX 1s ease-in-out; /*Safari and Chrome*/
}

.flipInY {
    animation: flipInY 1s ease-in-out;
    -webkit-animation: flipInY 1s ease-in-out; /*Safari and Chrome*/
}

.fadeInDown {
    animation: fadeInDown 1s ease-in-out;
    -webkit-animation: fadeInDown 1s ease-in-out; /*Safari and Chrome*/
}

.fadeInUp {
    animation: fadeInUp 1s ease-in-out;
    -webkit-animation: fadeInUp 1s ease-in-out; /*Safari and Chrome*/
}

.rallIn {
    animation: rallIn 1s ease-in-out;
    -webkit-animation: rallIn 1s ease-in-out; /*Safari and Chrome*/
}

@keyframes rotateIn {
    0% {
        transform-origin: 0 100%;
        transform: rotate(-90deg);
        opacity: 0;
    }


    100% {
        transform-origin: 0 100%;
        transform: rotate(0deg);
        opacity: 1;
    }
}

@keyframes rotateInY {
    0% {
        transform: rotateY(90deg);
        opacity: 0;
        left:-100%;
    }



    100% {
        transform: rotateY(0deg);
        opacity: 1;
        left: 0;
    }
}
@keyframes rotateInY_h {
    0% {
        transform: rotateY(0deg);
        opacity: 1;
        left:0;
    }



    100% {
        transform: rotateY(90deg);
        opacity: 0;
        left: 100%;
    }
}
@keyframes rotateInX {
    0% {
        transform: rotateX(90deg);
        opacity: 0;
    }



    100% {
        transform: rotateX(0deg);
        opacity: 1;
    }
}

.rotateIn {
    animation: rotateIn 1s ease-in-out;
    -webkit-animation: rotateIn 1s ease-in-out; /*Safari and Chrome*/
}

.rotateInX {
    animation: rotateInX 1s ease-in-out;
    -webkit-animation: rotateInX 1s ease-in-out; /*Safari and Chrome*/
}

.rotateInY {
    animation: rotateInY 1s ease-in-out;
    -webkit-animation: rotateInY 1s ease-in-out; /*Safari and Chrome*/
    width: 100%;
}
.rotateInY_h {
    animation: rotateInY_h 1s ease-in-out;
    -webkit-animation: rotateInY_h 1s ease-in-out; /*Safari and Chrome*/
    animation-fill-mode:forwards;
}
.pull-left {
    float: left !important;
}

.pull-right {
    float: right !important;
}
