
body {
    color: #333;
    font-family: Microsoft YaHei, Arial, Helvetica, sans-serif !important;
    font-size: 16px;
    overflow-x: hidden;
}

@font-face {
    font-family: "DINPRO-BLACK";
    src: url("../font/DINPRO-BLACK.OTF");
}

@font-face {
    font-family: "DINPRO-BOLD";
    src: url("../font/DINPRO-BOLD.OTF");
}

@font-face {
    font-family: "DINPRO-LIGHT";
    src: url("../font/DINPRO-LIGHT.OTF");
}

@font-face {
    font-family: "DINPRO-MEDIUM";
    src: url("../font/DINPRO-MEDIUM.OTF");
}

@font-face {
    font-family: "DINPRO-REGULAR";
    src: url("../font/DINPRO-REGULAR.OTF");
}

li {
    list-style: none;
}

a,
img,
input {
    border: 0 none;
}

a {
    text-decoration: none;
    outline: none;
}

a:hover {
    text-decoration: none;
}

a:focus,
input:focus {
    outline: 0 none;
}

input::-webkit-search-cancel-button {
    display: none;
}

/*清除谷歌浏览器下的 search 叉号*/
input::-ms-clear {
    display: none;
}

/*清除IE下的 search 叉号*/
input {
    background: none;
}

button {
    border: none;
    cursor: pointer;
    outline: none;
}

textarea {
    resize: none;
    font-size: 12px;
}

/*去掉火狐和谷歌浏览器的Textarea改变尺寸大小功能*/
/*html5*/
article,
aside,
dialog,
footer,
header,
section,
footer,
nav,
figure,
menu {
    display: block;
}

.swiper-button-next,
.swiper-button-prev {
    outline: none;
}

/*========定义基础样式========*/
.hide {
    display: none;
}

.vis {
    visibility: hidden;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.clearfix:after {
    content: " ";
    display: block;
    clear: both;
    height: 0;
}

.clearfix {
    zoom: 1;
}

/*a标签鼠标hover高亮显示状态（可选用）*/
a .opacity {
    filter: alpha(opacity=100);
    opacity: 1;
    -moz-opacity: 1;
}

a:hover .opacity {
    filter: alpha(opacity=80);
    opacity: 0.8;
    -moz-opacity: 0.8;
}

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

.text_over1 {
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.text_over2 {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.text_over3 {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.text_over4 {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.text_over5 {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}
.text_over6 {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
}

/*主体宽度样式（可选用）如有新宽度，命名规则以小写w开头，后接具体宽度数据，例：*/
.w1200 {
    width: 1200px;
    margin: 0 auto;
}

.w1600 {
    width: 83.33%;
    min-width: 1200px;
    margin: 0 auto;
}

.w1400 {
    width: 72.91%;
    min-width: 1200px;
    margin: 0 auto;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: all 0.5s;
    height: 100px;
}

.header.header_fixed, .header.headerBg {
    background: #fff;
    height: 100px;
    /*box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);*/
}
.header.header_fixed:after, .header.headerBg:after{
    content: '';
    position: absolute;
    width: 100%;
    bottom: 0;
    background: #dcdcdc;
    height: 1px;
}

.logo {
    height: 100%;
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 80%;
    width: auto;
    max-width: 15vw;
    min-width: 220px;
}

.hoverImg {
    display: none;
}

.header_fixed .defalutImg,
.headerBg .defalutImg {
    display: none;
}

.header_fixed .hoverImg,
.headerBg .hoverImg {
    display: block;
}

.headerRight {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
    flex: 1;
}

.navCont {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
    height: 100%;
}

.navContList {
    padding: 0 1.8vw;
    height: 100%;
}

.navContList:first-child {
    margin-left: 0;
}

.navContList .navDivideList {
    font-size: 18px;
    color: #fff;
    transition: all 0.5s;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
}

.navContList .navDivideList:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: #fff;
    transition: all 0.5s;
    z-index: 2;
}
.pagePubNav{
    position: fixed;
    width: 100%;
    left: 0;
    top: 100px;
    background: #fff;
    overflow: hidden;
    transition: all 0.5s;
    height: 90px;
    z-index: 15;
}
.pagePubNav:after{
    content: '';
    position: absolute;
    width: 100%;
    bottom: 0;
    background: #dcdcdc;
    height: 1px;
}
.pagePubNav .w1600, .pubContMargin.pageNav .bot .w1600{
    display: flex;
    align-items: center;
}
.pageNav .bot .swiper{
    overflow: hidden;
    margin-left: 0;
}
.pagePubNav .navPosSwiper{
    display: flex;
    align-items: center;
}
.navPosSwiper .swiper-slide {
    width: auto;
    font-size: 18px;
    color: #333;
    line-height: 90px;
    padding: 0 2vw;
}
.navPosSwiper .swiper-slide:first-child{
    padding-left: 0;
}
.navPosSwiper .swiper-slide:last-child{
    padding-right: 0;
}
.navPosSwiper .swiper-slide a{
    color: #333;
}
.navPosSwiper{
    overflow: hidden;
}
.navPosBtn .swiper-button-next, .navPosBtn .swiper-button-prev{
    position: initial;
    width: 27px;
    height: 14px;
    margin: 0;
}
.navPosBtn{
    display: flex;
    align-items: center;
    margin-left: 2vw;
}
.navPosBtn .swiper-button-next:after, .navPosBtn .swiper-button-prev:after{
    display: none;
}
.navPosBtn .swiper-button-prev{
    background: url("/img/icon-10.png") center no-repeat;
    background-size: cover;
}
.navPosBtn .swiper-button-prev:hover{
    background: url("/img/icon-10s.png") center no-repeat;
    background-size: cover;
}
.navPosBtn .line{
    width: 1px;
    height: 40px;
    background: #dcdcdc;
    margin: 0 18px;
    display: none;
}
.navPosBtn .swiper-button-next:before{
    content: "";
    width: 1px;
    height: 40px;
    background: #dcdcdc;
    margin-left: -64px;
}
.navPosBtn .swiper-button-next{
    background: url("/img/icon-11.png") center no-repeat;
    background-size: cover;
    margin-left: 36px;
}
.navPosBtn .swiper-button-next:hover{
    background: url("/img/icon-11s.png") center no-repeat;
    background-size: cover;
}
.navPosText{
    position: relative;
}
.navPosText:after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: #d80002;
    transition: all .3s;
}
.navPosSwiper .swiper-slide.curr .navPosText, .navPosSwiper .swiper-slide:hover .navPosText{
    color: #d80002;
}
.navPosSwiper .swiper-slide.curr .navPosText:after, .navPosSwiper .swiper-slide:hover .navPosText:after{
    width: 100%;
}
.pagePubMargin{
    margin-top: 190px!important;
}
.pagePubMargin .contentBg{
    height: calc(100vh - 190px);
}

/*.header_fixed .navContList:hover .navDivideList,
.header_fixed .navContList.curr .navDivideList,
.headerBg .navContList:hover .navDivideList,
.headerBg .navContList.curr .navDivideList {
    color: #4293f7 !important;
}*/

.header_fixed .navContList.curr .navDivideList:after,
.headerBg .navContList.curr .navDivideList:after {
    background: #d80002;
}

.header_fixed .navContList:hover .navDivideList:after,
.headerBg .navContList:hover .navDivideList:after {
    background: #d80002;
}

.navContList:hover .navDivideList:after,
.navContList.curr .navDivideList:after {
    width: 100%;
}

.header.header_fixed .navContList .navDivideList,
.header.headerBg .navContList .navDivideList {
    color: #333;
}

.header_fixed .phoneOuter, .headerBg .phoneOuter {
    background: url("/img/index/outer-1s.png") center no-repeat;
    background-size: cover;
}

.header_fixed .enterOuter, .headerBg .enterOuter {
    background: url("/img/index/outer-2s.png") center no-repeat;
    background-size: cover;
}

.header_fixed .outerChainText, .headerBg .outerChainText {
    color: #333;
}

.header_fixed .outerChain:after {
    background: #cbe6ff;
}

.header_fixed .langIcon, .headerBg .langIcon {
    background: url(/img/icon-1s.png) center no-repeat;
    background-size: cover;
}
.header_fixed .langText, .headerBg .langText{
    color: #333;
}
.header_fixed .searchIcon, .headerBg .searchIcon {
    background: url(/img/icon-2s.png) center no-repeat;
    background-size: cover;
}
.header_fixed .headerMenu, .headerBg .headerMenu{
    background: url(/img/mobile/icon/icon-1s.png) center no-repeat;
    background-size: cover;
}

.checkLang {
    display: flex;
    align-items: center;
    box-sizing: border-box;
    position: relative;
    margin-left: 2vw;
}
.langInfo{
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
}
.langInfo .pos{
    position: absolute;
    width: 110px;
    left: 50%;
    transform: translateX(-50%);
    top: 100%;
    padding-top: 15px;
    display: none;
    z-index: 10;
}
.langInfo .posInfo {
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 5px 0;
    position: relative;
}
.langInfo .posInfo a {
    color: #333;
    text-align: center;
    line-height: 50px;
    border-top: 1px solid #ededed;
    margin: 0 10px;
}
.langInfo .posInfo a:hover{
    color: #da0e10;
}
.langInfo .posInfo a:first-child {
    border-top: none;
}
.langInfo .posInfo:after {
    content: '';
    position: absolute;
    background: url(/img/public/top.png) center no-repeat;
    width: 13px;
    height: 6px;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
}
.langInfo:hover .pos{
    display: block;
}
.langIcon{
    width: 19px;
    height: 19px;
    background: url("/img/icon-1.png") center no-repeat;
    background-size: cover;
}
.langText{
    color: #fff;
    font-size: 18px;
    margin-left: 7px;
}
.searchIcon{
    width: 18px;
    height: 18px;
    background: url("/img/icon-2.png") center no-repeat;
    background-size: cover;
    margin-left: 2vw;
}
.header .navContList .pos {
    position: absolute;
    left: 0;
    top: 100px;
    width: 100%;
    overflow: hidden;
    background: url("/img/public/navBg.png") center no-repeat;
    background-size: cover;
    height: 0;
}
.headderBac{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 20;
    display: none;
}
.header .navContList:hover .pos {
    height: 63vh;
    transition: all 0.5s;
}
.header .navContList .pos .w1600{
    display: flex;
    height: 100%;
    padding-top: 10vh;
    box-sizing: border-box;
}
.opticalLeft, .opticalRight{
    position: relative;
    z-index: 1;
}
.consultingText{
    font-size: 42px;
    margin-top: 25px;
}
.consultingText p{
    line-height: 1;
    font-weight: bold;
    font-family: "DINPRO-BOLD";
}
.consultingText em{
    font-size: 36px;
    text-transform: uppercase;
    line-height: 1;
    margin-top: 20px;
    color: #e7e7e7;
    font-family: "DINPRO-MEDIUM";
}
.opticalRight:after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 70%;
    background: #dcdcdc;
}
.opticalRight{
    margin-left: 8vw;
}
.opticalList{
    display: flex;
    flex-wrap: wrap;
    width: 45vw;
}
.opticalList a{
    color: #333;
    margin-top: 30px;
    font-size: 18px;
    margin-left: 8vw;
    width: calc((100% - 16vw) / 2);
}
.opticalList a:hover{
    color: #d80002;
}

.header .navContList .pos1 {
    background: #eee;
}

.header .headerNewBox {
    display: flex;
    justify-content: space-between;
    height: 100%;
}

.goTop {
    width: 74px;
    cursor: pointer;
    margin: 0 auto;
}
.content{
    position: relative;
}

.contentBg{
    position: sticky;
    top: 100px;
    left: 0;
    width: 100%;
    height: calc(100vh - 100px);
    pointer-events: none;
}
/*.contentBg.curr{
    position: fixed;
    top: 100px;
}*/
.firstBg{
    width: 66.82%;
    position: absolute;
    transform: translate(-40%, -40%);
    animation: bgMoveLeft 4s ease-in-out infinite;
}
@keyframes bgMoveLeft {
    0% {
        transform: translate(-40%, -40%);
    }
    50% {
        transform: translate(-55%, -55%);
    }
    100% {
        transform: translate(-40%, -40%);
    }
}
.lastBg{
    width: 66.82%;
    position: absolute;
    transform: translate(40%, 40%);
    animation: bgMoveRight 4s ease-in-out infinite;
    right: 0;
    bottom: 0;
}
@keyframes bgMoveRight {
    0% {
        transform: translate(40%, 40%);
    }
    50% {
        transform: translate(55%, 55%);
    }
    100% {
        transform: translate(40%, 40%);
    }
}
.pubContMargin{
    margin-top: calc(-100vh + 100px);
}
.pagePubMargin .pubContMargin{
    margin-top: calc(-100vh + 190px);
}
.pageSearch{
    padding-top: 110px;
}
.pageSearch .title02{
    justify-content: center;
}
.consultingMore{
    margin-top: 10px;
    position: relative;
    color: #333;
}
.consultingMore span{
    font-size: 18px;
    padding-right: 50px;
}
.consultingMore .arrow{
    position: absolute;
    width: 60px;
    height: 60px;
    right: -20px;
    top: -18px;
    z-index: -1;
}
.consultingMore .arrow:before, .consultingMore .arrow:after {
    content: "";
    display: block;
    position: absolute;
    left: 1px;
    right: 1px;
    top: 1px;
    bottom: 1px;
    border-radius: 50%;
    -webkit-transition: all ease .3s;
    -moz-transition: all ease .3s;
    -ms-transition: all ease .3s;
    -o-transition: all ease .3s;
    transition: all ease .3s;
}
.consultingMore .arrow em {
    display: block;
    position: absolute;
    margin: -10px 0 0 -10px;
    width: 20px;
    height: 20px;
    left: 50%;
    top: 50%;
    z-index: 10;
}
.consultingMore .arrow em:before, .consultingMore .arrow em:after {
    content: "";
    width: 10px;
    height: 2px;
    border-radius: 1px;
    position: absolute;
    left: 50%;
    top: 50%;
    background: #da0e10;
    margin: -1px 0 0 -5px;
    display: block;
    -webkit-transform-origin: 9px 50%;
    -moz-transform-origin: 9px 50%;
    -ms-transform-origin: 9px 50%;
    -o-transform-origin: 9px 50%;
    transform-origin: 9px 50%;
    z-index: 10;
}
.consultingMore .arrow em:before {
    -webkit-transform: rotate(-40deg);
    -moz-transform: rotate(-40deg);
    -ms-transform: rotate(-40deg);
    -o-transform: rotate(-40deg);
    transform: rotate(-40deg);
}
.consultingMore .arrow em:after {
    -webkit-transform: rotate(40deg);
    -moz-transform: rotate(40deg);
    -ms-transform: rotate(40deg);
    -o-transform: rotate(40deg);
    transform: rotate(40deg);
}
.consultingMore .arrow div {
    display: block;
    width: 60px;
    height: 60px;
    position: relative;
    z-index: 1;
    border: 2px solid rgba(222, 28, 28, 0.8);
    border-radius: 50%;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
}
.consultingMore .arrow div:before {
    content: "";
    position: absolute;
    right: -5%;
    top: -5%;
    width: 0;
    height: 110%;
    background: #fff;
}
.consultingMore .arrow div:after {
    content: "";
    position: absolute;
    left: -5%;
    top: -5%;
    width: 110%;
    height: 110%;
    background: #fff;
}
.consultingMore:after {
    content: "";
    position: absolute;
    right: 20px;
    z-index: 10;
    margin-top: 1px;
    width: 22px;
    height: 2px;
    background: #da0e10;
    margin-right: -12px;
    transform: translateY(-50%);
    transition: all ease .3s;
    top: 11px;
}
.consultingMore .arrow.animate em:before {
    animation: arrowUp 1.6s ease forwards;
}
.consultingMore .arrow.animate em:after {
    animation: arrowDown 1.6s ease forwards;
}
.consultingMore .arrow.animate em {
    animation: arrow 1.6s ease forwards;
}
.consultingMore .arrow.animate div:before {
    width: 110%;
    transition: all ease .5s;
    transition-delay: 0.6s;
}
.consultingMore .arrow.animate div:after {
    width: 0;
    transition: all ease .5s;
    transition-delay: 0.3s;
}
@keyframes arrow {
    0%, 100% {
        transform: translateX(0);
        opacity: 1;
    }
    23% {
        transform: translateX(17px);
        opacity: 1;
    }
    24%, 80% {
        transform: translateX(-22px);
        opacity: 0;
    }
    81% {
        opacity: 1;
        transform: translateX(-22px);
    }
}
@keyframes arrowUp {
    0%, 100% {
        transform: rotate(-40deg) scaleX(1);
    }
    20%, 80% {
        transform: rotate(0deg) scaleX(0.1);
    }
}
@keyframes arrowDown {
    0%, 100% {
        transform: rotate(40deg) scaleX(1);
    }
    20%, 80% {
        transform: rotate(0deg) scaleX(0.1);
    }
}
.footer{
    background: url("/img/public/footerBg.png") center no-repeat;
    background-size: cover;
    padding: 40px 0;
    box-sizing: border-box;
}
.footerLogo{
    width: 21vw;
}
.footerLogo img, .mobileCode img{
    width: 100%;
}
.footerTop{
    display: flex;
    justify-content: space-between;
}
.footerTopInfo{
    display: flex;
    align-items: center;
}
.informationList{
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    width: 200px;
    padding-bottom: 20px;
    border-bottom: 1px solid #fff;
    margin-left: 20px;
    cursor: pointer;
}
.informationList:first-child{
    margin-left: 0;
}
.informationListTitle{
    color: #fff;
    font-size: 18px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
}
.informationIcon{
    margin-left: 10px;
}
.informationList .pos{
    position: absolute;
    top: 100%;
    left: 0;
    background: url("/img/public/footerTabBg.png") center no-repeat;
    background-size: cover;
    width: 100%;
    padding: 20px 30px;
    box-sizing: border-box;
    display: none;
    z-index: 1;
    max-height: 260px;
    overflow-y: auto;
}
.informationList .pos .posList{
    color: #333333;
    text-align: center;
    font-size: 18px;
    position: relative;
    padding: 10px 0;
}
.informationList .pos .posList:after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: #edd73f;
    transition: width .3s ease-in-out;
}
.informationList .pos .posList:hover:after{
    width: 100%;
}
.footerCont{
    margin-top: 60px;
}
.characteristicTitle{
    font-size: 64px;
    color: #fff;
}
.characteristicCont{
    margin-top: 40px;
    display: flex;
    align-items: center;
}
.characteristicCode{
    position: relative;
    cursor: pointer;
}
.characteristicCodeIcon{
    width: 62px;
}
.characteristicCodeImg{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 161px;
    top: calc(100% + 20px);
    display: none;
}
.friendshipLink{
    display: flex;
    align-items: center;
    margin-left: 25px;
    border: 1px solid #fff;
    height: 60px;
    cursor: pointer;
    position: relative;
}
.friendshipLinkText{
    font-size: 16px;
    color: #fff;
    padding: 0 40px;
}
.friendshipLinkIcon{
    width: 62px;
    border-left: 1px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.friendshipLinkIcon img{
    width: 18px;
}
.friendshipLink .pos {
    position: absolute;
    top: 100%;
    left: -1px;
    background: url(/img/public/footerTabBg.png) center no-repeat;
    background-size: cover;
    width: calc(100% + 2px);
    padding: 20px 30px;
    box-sizing: border-box;
    display: none;
    z-index: 1;
    max-height: 260px;
    overflow-y: auto;
}
.friendshipLink .pos .posList{
    color: #333333;
    text-align: center;
    font-size: 18px;
    position: relative;
    padding: 10px 0;
}
.friendshipLink .pos .posList:after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: #edd73f;
    transition: width .3s ease-in-out;
}
.friendshipLink .pos .posList:hover:after{
    width: 100%;
}
.footerContMain{
    margin-top: 200px;
    display: flex;
    align-items: center;
}
.footerContList{
    color: #fff;
    padding: 0 40px;
    font-size: 18px;
    position: relative;
}
.footerContList:first-child{
    padding-left: 0;
}
.footerContList:last-child{
    padding-right: 0;
}
.footerContList:after{
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 15px;
    width: 2px;
    background: #fff;
}
.footerContList:last-child:after{
    display: none;
}
.footerBottom{
    margin-top: 40px;
}
.copyright, .putOnRecords a{
    font-size: 18px;
    color: #fff;
    display: inline;
}
.putOnRecords{
    display: inline;
}
.putOnRecords a{
    margin-left: 10px;
    display: inline;
}

.mobileShow, .mobileHeader{
    display: none;
}
.w1200, .w1400, .w {
    width: 92%;
    margin: 0px auto;
}
.m_nav{
    display: none;
}

.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translate3d(-50px, 0, 0);
    }
    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInUp2 {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 40%, 0);
        -ms-transform: translate3d(0, 40%, 0);
        transform: translate3d(0, 40%, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        -ms-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        -ms-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}

.fadeInUp_box {
    -webkit-animation-name: fadeInUp_box;
    animation-name: fadeInUp_box;
}

@-webkit-keyframes fadeInUp_box {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 50%, 0);
        transform: translate3d(0, 50%, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInUp_box {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 50%, 0);
        -ms-transform: translate3d(0, 50%, 0);
        transform: translate3d(0, 50%, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}

.fadeInUp150 {
    -webkit-animation-name: fadeInUp150;
    animation-name: fadeInUp150;
}

@-webkit-keyframes fadeInUp150 {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 150px, 0);
        transform: translate3d(0, 150px, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInUp150 {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 150px, 0);
        -ms-transform: translate3d(0, 150px, 0);
        transform: translate3d(0, 150px, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}

@keyframes smallToBig {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

@keyframes fadeInUp100 {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100px, 0);
        -ms-transform: translate3d(0, 100px, 0);
        transform: translate3d(0, 100px, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}
