.wow {
    opacity: 0;
}

.mobile {
    width: 100%;
}

.mobile-inner {
    margin-right: auto;
    margin-left: auto;
    background-color: ;
    position: relative;
}

.mobile-inner img {
}

.mobile-inner p {
    color: #676767;
    line-height: 25px;
    font-size: 16px;
    padding-bottom: 30px;
    padding-right: 30px;
    padding-left: 30px;
    margin: 0px;
}

.mobile-inner-header {
    width: 100%;
    height: 50px;
    position: relative;
    top: 0px;
    z-index: 666;
    left: 0px;
}

.mobile-inner-header-icon {
    color: #ffffff;
    height: 50px;
    font-size: 25px;
    text-align: center;
    float: right;
    width: 50px;
    position: relative;
    -webkit-transition: background 0.5s;
    -moz-transition: background 0.5s;
    -o-transition: background 0.5s;
    transition: background 0.5s;
}

.mobile-inner-header-icon:hover {
    background-color: rgba(255,255,255,0.2);
    cursor: pointer;
}

.mobile-inner-header-icon span {
    position: absolute;
    left: calc((100% - 25px) / 2);
    top: calc((100% - 1px) / 2);
    width: 25px;
    height: 1px;
    background-color: #fff;
}

.mobile-inner-header-icon span:nth-child(1) {
    transform: translateY(4px) rotate(0deg);
}

.mobile-inner-header-icon span:nth-child(2) {
    transform: translateY(-4px) rotate(0deg);
}

.mobile-inner-header-icon-click span:nth-child(1) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: clickfirst;
}

.mobile-inner-header-icon-click span:nth-child(2) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: clicksecond;
}

@keyframes clickfirst {
    0% {
        transform: translateY(4px) rotate(0deg);
    }

    100% {
        transform: translateY(0) rotate(45deg);
    }
}

@keyframes clicksecond {
    0% {
        transform: translateY(-4px) rotate(0deg);
    }

    100% {
        transform: translateY(0) rotate(-45deg);
    }
}

.mobile-inner-header-icon-out span:nth-child(1) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: outfirst;
}

.mobile-inner-header-icon-out span:nth-child(2) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: outsecond;
}

@keyframes outfirst {
    0% {
        transform: translateY(0) rotate(-45deg);
    }

    100% {
        transform: translateY(-4px) rotate(0deg);
    }
}

@keyframes outsecond {
    0% {
        transform: translateY(0) rotate(45deg);
    }

    100% {
        transform: translateY(4px) rotate(0deg);
    }
}

.mobile-inner-nav {
    overflow: auto;
    height: 100vh;
    padding-top: 50px;
}

.mobile-inner-nav {
    background: linear-gradient(270deg,#0866b1c9,#076cc3);
    width: 100%;
    position: absolute;
    top: 0;
    padding-bottom: 0%;
    display: none;
    z-index: 444;
}

.mobile-inner-nav a {
    border-bottom: solid 1px rgba(255,255,255,0.3);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    color: #fff;
    transition: all 0.5s;
}

.mobile-inner-nav dl {
    display: none;
}

.mobile-inner-nav dl dd {
    line-height: 33px;
    text-decoration: none;
    text-indent: 3em;
    font-size: 16px;
    color: #FFFFFF;
    border-bottom: solid 1px rgba(255,255,255,0.3);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    font-weight: 300;
    font-size: 14px;
}

.mobile-inner-nav li {
    border-bottom: solid 1px rgba(255,255,255,0.3);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    line-height: 53px;
    text-indent: 20px;
}

.mobile-inner-nav h2.h2tit {
    line-height: 50px;
    text-decoration: none;
    text-indent: 2em;
    font-size: 16px;
    color: #FFFFFF;
    /* border-bottom:solid 1px rgba(255,255,255,0.3);*/
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    font-weight: 300;
}

.mobile-inner-nav h2.h2tit a {
    color: #FFFFFF;
}

.mobile-inner-nav a {
    border-bottom: none;
}

.mobile-inner-nav li {
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: returnToNormal;
    animation-name: returnToNormal;
}

@-webkit-keyframes resize {
    from,60%,75%,90%,to {
        -webkit-animation-timing-function: cubic-bezier(0.215,0.610,0.355,1.000);
        animation-timing-function: cubic-bezier(0.215,0.610,0.355,1.000);
    }

    0% {
        opacity: 0;
        -webkit-transform: scale(5,5);
        transform: scale(5,5);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1,1);
        transform: scale(1,1);
    }
}

@keyframes resize {
    from,60%,75%,90%,to {
        -webkit-animation-timing-function: cubic-bezier(0.215,0.610,0.355,1.000);
        animation-timing-function: cubic-bezier(0.215,0.610,0.355,1.000);
    }

    0% {
        opacity: 0;
        -webkit-transform: scale(5,5);
        transform: scale(5,5);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1,1);
        transform: scale(1,1);
    }
}

@-webkit-keyframes returnToNormal {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0,100%,0);
        transform: translate3d(0,100%,0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes returnToNormal {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0,100%,0);
        transform: translate3d(0,100%,0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.mobile-inner-nav li:last-child h2.h2tit {
    border-bottom: none;
}

.mobile-inner-nav li .h3tit {
    height: 50px;
    position: relative;
    background: url(../images/51_icon_search@2x.png) no-repeat 30px center;
    background-size: 17px;
}

.mobile-inner-nav li .words {
    display: block;
    width: 100%;
    height: 100%;
    border: none;
    background: none;
    text-indent: 60px;
    font-size: 15px;
    color: #fff;
    background: url(../images/search2.png) no-repeat 30px center;
    background-size: 20px;
}

.mobile-inner-nav li:last-child {
    border-bottom: none;
}

.mobile-inner-nav li form {
    display: block;
    width: 100%;
    height: 100%;
}

@charset "utf-8";@charset "UTF-8";.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.animated.infinite {
    animation-iteration-count: infinite;
}

.animated.hinge {
    animation-duration: 2s;
}

.fadeInUp {
    animation-duration: 1.76s;
    animation-name: fadeInUp;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0,40px,0);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

* {
}

body,h1,h2,h3,h4,h5,h6,dl,dt,dd,ul,ol,li,th,td,p,blockquote,pre,form,fieldset,legend,input,button,textarea,hr,span {
    margin: 0;
    padding: 0;
}

html {
    font-size: 62.5%;
}

body {
    font-size: 1.4rem;
}

html,body {
    -moz-user-select: none;
    -khtml-user-select: none;
    user-select: none;
}

body {
    font-family: "Microsoft YaHei" ! important;
    color: #000000;
    background: #fff;
    margin: 0 auto;
    padding: 0px;
}

body {
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}
}

input[type="button"],input[type="submit"],input[type="reset"],input[type="text"] {
    -webkit-appearance: none;
}

input[type="button"],input[type="submit"],input[type="reset"] {
    cursor: pointer;
}

input {
    -webkit-appearance: none;
}

input {
    -webkit-appearance: none!important;
    border-radius: 0;
}

button {
    cursor: pointer;
}

textarea {
    -webkit-appearance: none;
}

a {
    text-decoration: none;
    color: #235aa7;
    outline: none;
}

a:active {
    star: expression(this.onFocus=this.blur());
}

img {
    border: 0px;
    vertical-align: middle;
}

li {
    list-style: none;
}

* {
    outline: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

a:link {
    text-decoration: none;
}

a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

a:active {
    text-decoration: none;
}

.loading {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 99999;
}

.loadingfa {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 29px;
    color: #1f8adf;
    position: absolute;
    left: 50%;
    margin-top: -25px;
    margin-left: -25px;
    top: 50%;
}

html {
    -webkit-overflow-scrolling: touch;
    -webkit-tap-highlight-color: none;
}

html {
    -webkit-tap-highlight-color: transparent;
}

body {
    -webkit-overflow-scrolling: touch;
    background: #ffdb00;
    color: #fff;
    line-height: 1;
}

* {
    padding: 0;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: transparent;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    user-select: none;
    font-family: Homer-Simpson-Revised-1 !important;
}

@keyframes rotate {
    from {
        -webkit-transform: rotate(0deg)
    }

    to {
        -webkit-transform: rotate(360deg)
    }
}

@-webkit-keyframes rotate {
    from {
        -webkit-transform: rotate(0deg)
    }

    to {
        -webkit-transform: rotate(360deg)
    }
}

@-moz-keyframes rotate {
    from {
        -moz-transform: rotate(0deg)
    }

    to {
        -moz-transform: rotate(360deg)
    }
}

@-ms-keyframes rotate {
    from {
        -ms-transform: rotate(0deg)
    }

    to {
        -ms-transform: rotate(360deg)
    }
}

@-o-keyframes rotate {
    from {
        -o-transform: rotate(0deg)
    }

    to {
        -o-transform: rotate(360deg)
    }
}

.xxxzzz {
    animation: 2s linear 0s normal forwards infinite rotate;
    -webkit-animation: 2s linear 0s normal forwards infinite rotate;
    -moz-animation: 2s linear 0s normal forwards infinite rotate;
    -o-animation: 2s linear 0s normal forwards infinite rotate;
}

.xxxzzz img {
    display: block;
    width: 100%;
}

.pc {
    display: block;
}

.wap {
    display: none;
}

.clearflex:after {
    content: "";
    display: table;
    clear: both;
}

.moveAni {
    animation: move .8s infinite;
    -moz-animation: move .8s infinite;
    -webkit-animation: move .8s infinite;
    -o-animation: move .8s infinite;
    animation-direction: alternate;
    -webkit-animation-direction: alternate;
    animation-timing-function: cubic-bezier(0.46,0.02,0.97,0.36);
    -webkit-animation-timing-function: cubic-bezier(0.46,0.02,0.97,0.36);
}

.tadaAni {
    animation: tada 2s infinite;
}

.pulseAni {
    animation: pulse 1s infinite;
}

.bounceInAni {
    animation: bounceIn 2s infinite;
}

.flashInAni {
    animation: flash 2s infinite;
}

.swingAni {
    animation: swing 2s infinite;
    transform-origin: right top;
}

.rubberBandAni {
    animation: rubberBand 1s infinite;
}

.bounceAni {
    animation: bounce 1s infinite;
}

.tdAni {
    animation: td .4s infinite;
    -moz-animation: td .4s infinite;
    -webkit-animation: td .4s infinite;
    -o-animation: td .4s infinite;
    animation-direction: alternate;
    -webkit-animation-direction: alternate;
    animation-timing-function: cubic-bezier(0.46,0.02,0.97,0.36);
    -webkit-animation-timing-function: cubic-bezier(0.46,0.02,0.97,0.36);
}

.heartbeatAni {
    animation: heartbeat 1.4s infinite;
    -moz-animation: heartbeat 1.4s infinite;
    -webkit-animation: heartbeat 1.4s infinite;
    -o-animation: heartbeat 1.4s infinite;
    animation-direction: alternate;
    -webkit-animation-direction: alternate;
    animation-timing-function: cubic-bezier(0.46,0.02,0.97,0.36);
    -webkit-animation-timing-function: cubic-bezier(0.46,0.02,0.97,0.36);
}

.shing {
    animation: shing 1s infinite;
    animation-direction: alternate;
    -webkit-animation-direction: alternate;
}

@keyframes shing {
    0% {
        opacity: 1;
    }

    100% {
        opacity: .6;
    }
}

@keyframes move2 {
    0% {
        transform: translate(0%,0px);
    }

    100% {
        transform: translate(0%,10px);
    }
}

.moveAni2 {
    animation: move2 1s infinite;
}

.moveAni {
    animation: move .8s infinite;
    -moz-animation: move .8s infinite;
    -webkit-animation: move .8s infinite;
    -o-animation: move .8s infinite;
    animation-direction: alternate;
    -webkit-animation-direction: alternate;
    animation-timing-function: cubic-bezier(0.46,0.02,0.97,0.36);
    -webkit-animation-timing-function: cubic-bezier(0.46,0.02,0.97,0.36);
}

@keyframes move {
    from {
        -o-transform: translate(0%,0%);
        -webkit-transform: translate(0%,0%);
        -moz-transform: translate(0%,0%);
        -ms-transform: translate(0%,0%);
        transform: translate(0%,0%);
    }

    to {
        -o-transform: translate(0%,30px);
        -webkit-transform: translate(0%,30px);
        -moz-transform: translate(0%,30px);
        -ms-transform: translate(0%,30px);
        transform: translate(0%,30px);
    }
}

@keyframes td {
    from {
        -o-transform: translate(0%,0%);
        -webkit-transform: translate(0%,0%);
        -moz-transform: translate(0%,0%);
        -ms-transform: translate(0%,0%);
        transform: translate(0%,0%);
    }

    to {
        -o-transform: translate(0%,20px);
        -webkit-transform: translate(0%,20px);
        -moz-transform: translate(0%,20px);
        -ms-transform: translate(0%,20px);
        transform: translate(0%,20px);
    }
}

@keyframes heartbeat {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    14% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

    28% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    42% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

    70% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes moveAni2 {
    0% {
        transform: translate(0%,0px);
    }

    100% {
        transform: translate(100vw,0px);
    }
}

.moveAni2 {
    animation: moveAni2 5.5s linear infinite;
}

@keyframes scrollAni1 {
    0% {
        transform: translate(0%,0px) rotate(0);
    }

    100% {
        transform: translate(-100%,0px) rotate(-360deg);
    }
}

.scrollAni1 {
    animation: scrollAni1 1.8s infinite;
    -moz-animation: scrollAni1 1.8s infinite;
    -webkit-animation: scrollAni1 1.8s infinite;
    -o-animation: scrollAni1 1.8s infinite;
    animation-direction: alternate;
    -webkit-animation-direction: alternate;
}

@keyframes scrollAni2 {
    0% {
        transform: translate(30%,0px) rotate(0);
    }

    100% {
        transform: translate(0%,0px);
    }
}

.scrollAni2 {
    animation: scrollAni2 1.8s infinite;
    -moz-animation: scrollAni2 1.8s infinite;
    -webkit-animation: scrollAni2 1.8s infinite;
    -o-animation: scrollAni2 1.8s infinite;
    animation-direction: alternate;
    -webkit-animation-direction: alternate;
    animation-timing-function: linear;
}

@keyframes scrollAni3 {
    0% {
        transform: translate(0%,-20px);
    }

    100% {
        transform: translate(0%,0%);
    }
}

.scrollAni3 {
    animation: scrollAni3 1.8s infinite;
    -moz-animation: scrollAni3 1.8s infinite;
    -webkit-animation: scrollAni3 1.8s infinite;
    -o-animation: scrollAni3 1.8s infinite;
    animation-direction: alternate;
    -webkit-animation-direction: alternate;
    animation-timing-function: linear;
}

@keyframes scrollAni4 {
    0% {
        transform: translate(0%,10px);
    }

    100% {
        transform: translate(0%,0%);
    }
}

.scrollAni4 {
    animation: scrollAni4 1.8s infinite;
    -moz-animation: scrollAni4 1.8s infinite;
    -webkit-animation: scrollAni4 1.8s infinite;
    -o-animation: scrollAni4 1.8s infinite;
    animation-direction: alternate;
    -webkit-animation-direction: alternate;
    animation-timing-function: linear;
}

@keyframes scrollAni5 {
    0% {
        transform: none;
    }

    100% {
        transform: scale(1.35,1.35);
    }
}

.scrollAni5 {
    animation: scrollAni5 1.8s infinite;
    -moz-animation: scrollAni5 1.8s infinite;
    -webkit-animation: scrollAni5 1.8s infinite;
    -o-animation: scrollAni5 1.8s infinite;
    animation-direction: alternate;
    -webkit-animation-direction: alternate;
    animation-timing-function: linear;
}

@keyframes scrollAni6 {
    0% {
        transform: scale(1.05,1.05);
    }

    100% {
        transform: none;
    }
}

.scrollAni6 {
    animation: scrollAni6 1.8s infinite;
    -moz-animation: scrollAni6 1.8s infinite;
    -webkit-animation: scrollAni6 1.8s infinite;
    -o-animation: scrollAni6 1.8s infinite;
    animation-direction: alternate;
    -webkit-animation-direction: alternate;
    animation-timing-function: linear;
}

@keyframes bubbleMover3 {
    0% {
        -webkit-transform: translateY(0px) translateX(0) rotate(0);
        transform: translateY(0px) translateX(0) rotate(0);
    }

    30% {
        transform: translateY(5px) translateX(4px) rotate(9deg);
        -webkit-transform-origin: center center;
        transform-origin: center center;
    }

    50% {
        transform: translateY(-3px) translateX(1px) rotate(-6deg);
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
    }

    80% {
        transform: translateY(-1px) translateX(-5px) rotate(-2deg);
        -webkit-transform-origin: left top;
        transform-origin: left top;
    }

    100% {
        -webkit-transform: translateY(0px) translateX(0) rotate(0);
        transform: translateY(0px) translateX(0) rotate(0);
        -webkit-transform-origin: center center;
        transform-origin: center center;
    }
}

@keyframes bubbleMover2 {
    0% {
        -webkit-transform: translateY(0px) translateX(0) rotate(0);
        transform: translateY(0px) translateX(0) rotate(0);
    }

    30% {
        transform: translateY(5px) translateX(4px) rotate(5deg);
        -webkit-transform-origin: center center;
        transform-origin: center center;
    }

    50% {
        transform: translateY(-4px) translateX(2px) rotate(-3deg);
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
    }

    80% {
        transform: translateY(-3px) translateX(-3px) rotate(-3deg);
        -webkit-transform-origin: left top;
        transform-origin: left top;
    }

    100% {
        -webkit-transform: translateY(0px) translateX(0) rotate(0);
        transform: translateY(0px) translateX(0) rotate(0);
        -webkit-transform-origin: center center;
        transform-origin: center center;
    }
}

@keyframes bubbleMover {
    0% {
        transform: translateY(0px) translateX(0) rotate(0);
    }

    30% {
        transform: translateY(3px) translateX(5px) rotate(5deg);
        -webkit-transform-origin: center center;
        transform-origin: center center;
    }

    50% {
        transform: translateY(5px) translateX(10px) rotate(10deg);
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
    }

    80% {
        transform: translateY(3px) translateX(5px) rotate(4deg);
        -webkit-transform-origin: left top;
        transform-origin: left top;
    }

    100% {
        transform: translateY(0px) translateX(0) rotate(0);
        -webkit-transform-origin: center center;
        transform-origin: center center;
    }
}

@keyframes rotateAni {
    0% {
        transform: none;
    }

    100% {
        transform: rotateY(180deg);
    }
}

.rotateAni {
    -webkit-animation: rotateAni linear infinite 2s;
    -moz-animation: rotateAni linear infinite 2s;
    -o-animation: rotateAni linear infinite 2s;
    animation: rotateAni linear infinite 2s;
}

.pfAni1 {
    -webkit-animation: bubbleMover linear infinite 5s;
    -moz-animation: bubbleMover linear infinite 5s;
    -o-animation: bubbleMover linear infinite 5s;
    animation: bubbleMover linear infinite 5s;
}

.pfAni2 {
    -webkit-animation: bubbleMover2 linear infinite 5s;
    -moz-animation: bubbleMover2 linear infinite 5s;
    -o-animation: bubbleMover2 linear infinite 5s;
    animation: bubbleMover2 linear infinite 5s;
}

.pfAni3 {
    -webkit-animation: bubbleMover3 linear infinite 5s;
    -moz-animation: bubbleMover3 linear infinite 5s;
    -o-animation: bubbleMover3 linear infinite 5s;
    animation: bubbleMover3 linear infinite 5s;
}

@keyframes scalc {
    0% {
        -webkit-transform: scale(2.05,2.05);
        -o-transform: scale(2.05,2.05);
        -moz-transform: scale(2.05,2.05);
        -ms-transform: scale(2.05,2.05);
        transform: scale(2.05,2.05);
    }

    100% {
        -webkit-transform: none;
        -o-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        transform: none;
    }
}

.sclani {
    animation: scalc 7s forwards;
    animation-timing-function: ease-out;
}

@keyframes scalc2 {
    0% {
        transform: scale(1.2,1.2);
    }

    100% {
        -webkit-transform: none;
        -o-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        transform: none;
    }
}

.sclani2 {
    animation: scalc2 7s forwards;
    animation-timing-function: ease-out;
}

@keyframes scalc3 {
    0% {
        transform: scale(.9,.9);
    }

    100% {
        transform: scale(1,1);
    }
}

.scalc3 {
    animation: scalc3 7s forwards;
    animation-timing-function: ease-out;
}

@keyframes clipAni {
    0% {
        clip: rect(auto,0,auto,auto);
    }

    100% {
        clip: rect(auto,300px,auto,auto);
    }
}

.txtModel i {
    animation: clipAni ease-out infinite 2s alternate;
}

.swingAni {
    transform-origin: top center;
    animation: swing 3s infinite ease-in-out;
}

@keyframes swing {
    0% {
        transform: rotate(-6deg);
    }

    50% {
        transform: rotate(6deg);
    }

    100% {
        transform: rotate(-6deg);
    }
}

.swingAni2 {
    -webkit-animation-name: routate;
    -webkit-animation-duration: 4s;
    -webkit-animation-iteration-count: infinite;
    animation-name: routate;
    animation-duration: 5s;
    animation-iteration-count: infinite;
}

@keyframes routate {
    0% {
        -webkit-transform: rotate(7deg);
        -ms-transform: rotate(7deg);
        transform: rotate(7deg);
    }

    50% {
        -webkit-transform: rotate(-7deg);
        -ms-transform: rotate(-7deg);
        transform: rotate(-7deg);
    }

    100% {
        -webkit-transform: rotate(7deg);
        -ms-transform: rotate(7deg);
        transform: rotate(7deg);
    }
}

.bouncing-ball {
    -webkit-mask: radial-gradient(ellipse at center,rgba(0,0,0,0) 0%,rgba(0,0,0,0) 20%,black 20.1%,black 75%,black 100%);
    mask: radial-gradient(ellipse at center,rgba(0,0,0,0) 0%,rgba(0,0,0,0) 20%,black 20.1%,black 75%,black 100%);
    -webkit-animation: bouncing-ball 1.5s linear infinite;
    animation: bouncing-ball 1.5s linear infinite;
}

@keyframes bouncing-ball {
    0% {
        transform: scale(1,1) translateY(-80%);
    }

    25% {
        transform: scale(1,1.1) translateY(-45%);
    }

    50% {
        transform: scale(1,1.5) translateY(10%);
    }

    66% {
        transform: scale(2,0.75) translateY(25%);
    }

    75% {
        transform: scale(1,1.25) translateY(10%);
    }

    100% {
        transform: scale(1,1) translateY(-80%);
    }
}

.small_Big {
    -webkit-animation: scaleCircles 2s infinite cubic-bezier(0.55,0.15,0.45,0.85) alternate;
    animation: scaleCircles 2s infinite cubic-bezier(0.55,0.15,0.45,0.85) alternate;
}

@keyframes scaleCircles {
    0% {
        z-index: 1;
        transform: scale3d(0,0,0);
    }

    100% {
        z-index: 2;
        transform: scale3d(1,1,1);
    }
}

.index * {
    opacity: 1;
}

.index {
    overflow: hidden;
}

.head {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 5555;
}

.head .logo {
    padding-top: calc(43/1920*100vw);
    padding-left: calc(28/1920*100vw);
}

.head .logo a {
}

.head .logo a img {
    width: calc(190/1920*100vw);
}

.section1 {
    position: relative;
    overflow: hidden;
    padding-bottom: calc(140/1920*100vw);
}

.section1 .bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    left: 0;
    top: 0;
}

.section1 .content {
    position: relative;
    text-align: center;
    z-index: 4;
    padding-top: calc(429/1920*100vw);
}

.section1 .content .title {
    display: inline-block;
    font-family: Homer;
    font-weight: normal;
    font-size: calc(186/1920*100vw);
    color: #FFFFFF;
    text-stroke: calc(6/1920*100vw) #291B13;
    -webkit-text-stroke: calc(6/1920*100vw) #291B13;
    /* padding-right: calc(149/1920*100vw); */
    /* background: url(../images/x.png) no-repeat right center;
    background-size: auto calc(126/1920*100vw); */
}

.section1 .content .link {
    display: inline-block;
    line-height: calc(89/1920*100vw);
    background: #FCD21E;
    border-radius: calc(47/1920*100vw);
    border: calc(5/1920*100vw) solid #000000;
    padding: 0 calc(18/1920*100vw);
    margin-top: calc(57/1920*100vw);
}

.section1 .content .link a {
    margin: 0 calc(20/1920*100vw);
}

.section1 .content .link a img {
    max-width: calc(47/1920*100vw);
}

.section2 {
    font-family: Homer;
    font-weight: normal;
    font-size: calc(68/1920*100vw);
    color: #000000;
    text-align: center;
    line-height: calc(130/1920*100vw);
    background: #fcd21e;
    border-bottom: calc(4/1920*100vw) solid #000;
    border-top: calc(4/1920*100vw) solid #000;
}

.section3 {
    position: relative;
    background: #ffdb00;
    padding-left: calc(102/1920*100vw);
    padding-top: calc(150/1920*100vw);
    padding-bottom: calc(200/1920*100vw);
    border-bottom: calc(4/1920*100vw) solid #000;
}

.section3 .left {
    width: calc(1178/1920*100vw);
    font-family: Homer;
    font-weight: normal;
    font-size: calc(50/1920*100vw);
    color: #ffffff;
   text-stroke: calc(2/1920*100vw) #000000;
    -webkit-text-stroke: calc(2/1920*100vw) #000000;
    position: relative;
    z-index: 45;
}

.section3 .left p {
    line-height: 1.5;
}

.section3 .right {
    position: absolute;
    bottom: 0;
    right: calc(72/1920*100vw);
}

.section3 .right img {
    width: calc(590/1920*100vw);
}

.section4 {
    background: #ffdb00;
    border-bottom: calc(4/1920*100vw) solid #000;
    position: relative;
    overflow: hidden;
}

.section4 .left {
    margin-left: calc(250/1920*100vw);
    position: relative;
}

.section4 .left .ani1 {
    width: calc(869/1920*100vw);
}

.section4 .left .txt {
    position: absolute;
    z-index: 4;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.section4 .left .txt .txt1 {
    width: calc(472/1920*100vw);
    font-family: Homer;
    font-weight: normal;
    font-size: calc(54/1920*100vw);
    color: #000000;
    margin-top: calc(300/1920*100vw);
    position: relative;
    margin-left: calc(192/1920*100vw);
}

.section4 .left .txt .txt1 i {
}

.section4 .left .txt .txt2 {
    width: calc(420/1920*100vw);
    font-family: Homer;
    font-weight: normal;
    font-size: calc(30/1920*100vw);
    color: #000000;
    margin-top: calc(0/1920*100vw);
    margin-left: calc(192/1920*100vw);
}

.section4 .left .txt .txt2 i {
}

.section4 .left .txt .txt2 p {
    line-height: 1.2;
}

.section4 .right {
    position: absolute;
    right: calc(326/1920*100vw);
    bottom: 0;
}

.section4 .right .ani2 {
    width: calc(402/1920*100vw);
}

.section4 .right .txt {
    position: absolute;
    font-family: Homer;
    font-weight: normal;
    font-size: calc(48/1920*100vw);
    color: #000000;
    width: calc(557/1920*100vw);
    height: calc(413/1920*100vw);
    background: url(../images/ht.png) no-repeat center center;
    background-size: 100%;
    top: calc(-350/1920*100vw);
    right: calc(-200/1920*100vw);
    padding-top: calc(130/1920*100vw);
    padding-left: calc(63/1920*100vw);
}

.section4 .right .txt i {
}

.section5 {
    background: #ffdb00;
    padding-left: calc(71/1920*100vw);
    padding-top: calc(160/1920*100vw);
}

.section5 .block1 {
    display: flex;
}

.section5 .block1 .left {
}

.section5 .block1 .left img {
    width: calc(424/1920*100vw);
}

.section5 .block1 .right {
    margin-left: calc(42/1920*100vw);
    width: calc(1278/1920*100vw);
}

.section5 .block1 .right .title {
    font-family: Homer;
    font-weight: normal;
    font-size: calc(111/1920*100vw);
    color: #FFFFFF;
    text-stroke: calc(6/1920*100vw) #291B13;
    -webkit-text-stroke: calc(6/1920*100vw) #291B13;
    text-align: center;
    margin-bottom: calc(100/1920*100vw);
}

.section5 .block1 .right .dec {
    font-family: Homer;
    font-weight: normal;
    font-size: calc(48/1920*100vw);
    color: #000;
   /* text-stroke: calc(3/1920*100vw) #000000;
    -webkit-text-stroke: calc(3/1920*100vw) #000000;*/
}

.section5 .block2 {
    text-align: right;
    padding-right: calc(72/1920*100vw);
}

.section5 .block2 img {
    position: relative;
    z-index: 1000;
    width: calc(190/1920*100vw);
}

.section6 {
    position: relative;
    padding-top: calc(-192/1920*100vw);
    overflow: hidden;
}

.section6 .bg1 {
    left: 0;
    top: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section6 .bg2 {
}

.section6 .content {
    position: relative;
    z-index: 4;
}

.section6 .content .txt {
    padding-right: calc(53/1920*100vw);
    width: calc(1756/1920*100vw);
    height: calc(603/1920*100vw);
    background: #FFFFFF;
    border: calc(5/1920*100vw) solid #000000;
    margin: auto;
    font-family: Homer;
    font-weight: normal;
    font-size: calc(48/1920*100vw);
    color: #000000;
    padding-top: calc(121/1920*100vw);
    padding-left: calc(68/1920*100vw);
}

.section6 .content .txt2 {
    margin-top: calc(150/1920*100vw);
    padding-bottom: calc(390/1920*100vw);
}

.section6 .content .txt2 .left {
    font-family: Homer;
    font-weight: normal;
    font-size: calc(113/1920*100vw);
    color: #FFFFFF;
    text-stroke: calc(3/1920*100vw) #000000;
    -webkit-text-stroke: calc(3/1920*100vw) #000000;
    display: inline-block;
    padding-left: calc(105/1920*100vw);
    padding-right: calc(90/1920*100vw);
    background: url(../images/x.png) no-repeat right center;
    background-size: auto 100%;
}

.section7 {
    background: #ffdb00;
    text-align: center;
    padding-bottom: calc(114/1920*100vw);
}

.section7 .link {
    font-size: 0;
    padding-top: calc(38/1920*100vw);
    padding-bottom: calc(44/1920*100vw);
}

.section7 .link a {
    display: inline-block;
    width: calc(95/1920*100vw);
    height: calc(95/1920*100vw);
    background: #FFFFFF;
    border-radius: 50%;
    border: calc(4/1920*100vw) solid #000000;
    vertical-align: middle;
    margin: 0px calc(17/1920*100vw);
    position: relative;
}

.section7 .link a img {
    position: absolute;
    top: 50%;
    left: 50%;
    -o-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    max-width: 90%;
}

.section7 .title {
    font-family: Homer;
    font-weight: normal;
    font-size: calc(73/1920*100vw);
    color: #000000;
}

.section7 .address {
    margin: auto;
    margin-top: calc(58/1920*100vw);
    width: calc(1332/1920*100vw);
    height: calc(112/1920*100vw);
    background: #FFFFFF;
    border-radius: calc(53/1920*100vw);
    border: calc(5/1920*100vw) solid #000000;
    position: relative;
    overflow: hidden;
}

.section7 .address .words {
    font-family: Homer;
    font-weight: normal;
    font-size: calc(36/1920*100vw);
    color: #000000;
    padding: 0px calc(70/1920*100vw);
    display: block;
    border: none;
    width: 100%;
    height: 100%;
}

.section7 .address .send {
    position: absolute;
    right: calc(-3/1920*100vw);
    top: calc(-2/1920*100vw);
    border: none;
    background: none;
    background: #FF7200;
    border-radius: calc(53/1920*100vw);
    border: calc(5/1920*100vw) solid #000000;
    height: 105%;
    width: calc(230/1920*100vw);
    font-family: Homer;
    font-weight: normal;
    font-size: calc(62/1920*100vw);
    color: #000000;
}

.section8 {
    font-family: Homer;
    font-weight: normal;
    font-size: calc(105/1920*100vw);
    color: #FFFFFF;
    text-stroke: calc(3/1920*100vw) #000000;
    -webkit-text-stroke: calc(3/1920*100vw) #000000;
    text-align: center;
    background: #FF7200;
    border: calc(5/1920*100vw) solid #000000;
    border-left: none;
    border-right: none;
    padding-top: calc(145/1920*100vw);
    padding-bottom: calc(154/1920*100vw);
}

.section8 em {
    margin-left: calc(-23/1920*100vw);
    display: inline-block;
    vertical-align: middle;
    width: calc(79/1920*100vw);
    height: calc(77/1920*100vw);
    /* background: url(../images/x.png) no-repeat center center;
    background-size: 100%; */
}

.section9 {
    position: relative;
    background: #ffdb00;
    height: calc(1600/1920*100vw);
}

.section9 .items > * {
    position: absolute;
    bottom: calc(-26/1920*100vw);
    width: calc(350/1920*100vw);
    height: calc(500/1920*100vw);
}

.section9 .item1 {
    left: calc(84/1920*100vw);
}

.section9 .items .hover {
    width: 100%;
    height: 100%;
    background: #000;
    cursor: pointer;
    position: relative;
    z-index: 55;
    opacity: 0;
}

.section9 .item1 .hover {
}

.section9 .item1 .slide {
    width: calc(1268/1920*100vw);
    height: calc(1081/1920*100vw);
    background: url(../images/jm1.png) no-repeat center center;
    background-size: 100%;
    padding-top: calc(129/1920*100vw);
    padding-left: calc(79/1920*100vw);
    padding-right: calc(79/1920*100vw);
    top: calc(-1100/1920*100vw);
    left: calc(-13/1920*100vw);
}

.section9 .item2 {
    left: calc(500/1920*100vw);
}

.section9 .item2 .hover {
}

.section9 .item2 .slide {
    width: calc(1236/1920*100vw);
    height: calc(528/1920*100vw);
    background: url(../images/jm2.png) no-repeat center center;
    padding-left: calc(91/1920*100vw);
    padding-right: calc(85/1920*100vw);
    padding-top: calc(295/1920*100vw);
    top: calc(277/1920*100vw);
    left: calc(-155/1920*100vw);
}

.section9 .item3 {
    left: calc(980/1920*100vw);
}

.section9 .item3 .slide {
    width: calc(1325/1920*100vw);
    height: calc(433/1920*100vw);
    background: url(../images/jm3.png) no-repeat center center;
    background-size: 100%;
    padding-left: calc(116/1920*100vw);
    padding-right: calc(452/1920*100vw);
    padding-top: calc(96/1920*100vw);
    top: calc(-325/1920*100vw);
    left: calc(-746/1920*100vw);
}

.section9 .item4 {
    right: calc(114/1920*100vw);
}

.section9 .item4 .slide {
    padding-left: calc(110/1920*100vw);
    padding-right: calc(103/1920*100vw);
    width: calc(1280/1920*100vw);
    height: calc(823/1920*100vw);
    background: url(../images/jm4.png) no-repeat center center;
    padding-top: calc(83/1920*100vw);
    right: calc(-91/1920*100vw);
    top: calc(-739/1920*100vw);
}

.section9 .slide {
    font-family: Homer;
    font-weight: normal;
    font-size: calc(48/1920*100vw);
    color: #000000;
    background-size: 100% 100% !important;
    position: absolute;
    z-index: 5;
}

.section10 {
    position: relative;
    z-index: 4;
    margin-top: calc(-477/1920*100vw);
    padding-bottom: calc(800/1920*100vw);
}

.section10 .ani {
    width: 100%;
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0px;
    left: 0;
}

.section10 .content {
    position: relative;
    z-index: 4;
    padding-top: calc(1102/1920*100vw);
}

.section10 .content .title {
    font-family: Homer;
    font-weight: normal;
    font-size: calc(141/1920*100vw);
    color: #FFFFFF;
    line-height: calc(80/1920*100vw);
    text-stroke: calc(6/1920*100vw) #291B13;
    -webkit-text-stroke: calc(6/1920*100vw) #291B13;
    text-align: center;
}

.section10 .content .cons {
    display: flex;
    align-items: center;
    padding-right: calc(182/1920*100vw);
    justify-content: space-between;
    padding-top: calc(70/1920*100vw);
}

.section10 .content .cons .left {
    padding-left: calc(166/1920*100vw);
    position: relative;
    z-index: 45;
}

.section10 .content .cons .left .tits b {
    display: block;
    font-size: calc(100/1920*100vw);
}

.section10 .content .cons .left .tits {
    font-family: Homer;
    font-weight: normal;
    font-size: calc(81/1920*100vw);
    color: #FFFFFF;
    text-stroke: calc(3/1920*100vw) #000000;
    -webkit-text-stroke: calc(3/1920*100vw) #000000;
}

.section10 .content .cons .left .dec1 {
    width: calc(469/1920*100vw);
    font-family: Homer;
    font-weight: normal;
    font-size: calc(60/1920*100vw);
    color: #000000;
    margin-top: calc(125/1920*100vw);
    margin-bottom: calc(115/1920*100vw);
}

.section10 .content .cons .left .dec2 {
    width: calc(778/1920*100vw);
    font-family: Homer;
    font-weight: normal;
    font-size: calc(49/1920*100vw);
    color: #000000;
}

.section10 .content .cons .right {
    position: relative;
}

.section10 .content .cons .right .ani1 {
    width: calc(284/1920*100vw);
    position: absolute;
    left: calc(-320/1920*100vw);
    bottom: 0;
}

.section10 .content .cons .right .lt {
    text-align: center;
}

.section10 .content .cons .right .lt .item:nth-child(1) {
    margin: auto;
    float: none;
    border-bottom: none;
}

.section10 .content .cons .right .lt .item:nth-child(2) {
    border-right: none;
}

.section10 .content .cons .right .lt .item {
    width: calc(329/1920*100vw);
    height: calc(326/1920*100vw);
    background: #FFB239;
    border: calc(5/1920*100vw) solid #000000;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    justify-content: center;
    float: left;
}

.section10 .content .cons .right .lt .item .titm {
    font-family: Homer;
    font-weight: normal;
    font-size: calc(82/1920*100vw);
    color: #FFFFFF;
    text-stroke: calc(3/1920*100vw) #000000;
    -webkit-text-stroke: calc(3/1920*100vw) #000000;
    margin-bottom: calc(1/1920*100vw);
}

.section10 .content .cons .right .lt .item .ds {
    font-family: Homer;
    font-weight: normal;
    font-size: calc(51/1920*100vw);
    color: #000;
 /*   text-stroke: calc(3/1920*100vw) #000000;
    -webkit-text-stroke: calc(3/1920*100vw) #000000;*/
}

.section11 {
    position: relative;
}

.section11 .line {
    position: relative;
    overflow: hidden;
}

.section11 .line img {
    width: 100%;
}

.section11 .anis {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 4;
    text-align: center;
}

.section11 .anis .ani1 {
    margin-left: calc(82/1920*100vw);
    margin-bottom: calc(21/1920*100vw);
    width: calc(820/1920*100vw);
  
}

.section11 .anis .tit {
    margin-top: calc(71/1920*100vw);
    font-family: Homer;
    font-weight: normal;
    font-size: calc(126/1920*100vw);
    color: #FFFFFF;
    line-height: calc(71/1920*100vw);
    text-stroke: calc(6/1920*100vw) #291B13;
    -webkit-text-stroke: calc(6/1920*100vw) #291B13;
    display: inline-block;
    vertical-align: middle;
    /* padding-left: calc(145/1920*100vw); */
    /* background: url(../images/x.png) no-repeat center left;
    background-size: auto 100%; */
    line-height: 1.02;
}

.section12 {
    background: #ffc100;
    padding-left: calc(233/1920*100vw);
    padding-right: calc(254/1920*100vw);
    padding-bottom: calc(90/1920*100vw);
    border-bottom: calc(3/1920*100vw) solid #000;
}

.section12 .item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin-bottom: calc(55/1920*100vw);
}

.section12 .item .left {
    width: calc(489/1920*100vw);
    height: calc(335/1920*100vw);
    background: #FFFFFF;
    border: calc(5/1920*100vw) solid #000000;
    padding-top: calc(68/1920*100vw);
    padding-left: calc(53/1920*100vw);
}

.section12 .item:nth-child(2n) .left {
    padding-left: calc(83/1920*100vw);
}

.section12 .item .left .tit {
    font-family: Homer;
    font-weight: normal;
    font-size: calc(60/1920*100vw);
    color: #FFFFFF;
    line-height: calc(72/1920*100vw);
    text-stroke: calc(6/1920*100vw) #291B13;
    -webkit-text-stroke: calc(4/1920*100vw) #291B13;
}

.section12 .item .left .tit b {
    color: rgba(255,150,0,1);
}

.section12 .item .left .dec {
    font-family: Homer;
    font-weight: normal;
    font-size: calc(30/1920*100vw);
    color: #000000;
    padding-top: calc(20/1920*100vw);
}

.section12 .item:nth-child(2n) .line {
    left: calc(761/1920*100vw);
}

.section12 .item .line {
    width: calc(258/1920*100vw);
    height: calc(55/1920*100vw);
    background: url(../images/line.png) no-repeat center center;
    background-size: 100%;
    z-index: 4;
    position: absolute;
    top: 50%;
    -o-transform: translate(0%,-50%);
    -webkit-transform: translate(0%,-50%);
    -moz-transform: translate(0%,-50%);
    -ms-transform: translate(0%,-50%);
    transform: translate(0%,-50%);
    left: calc(408/1920*100vw);
}

.section12 .item .right {
}

.section12 .item .right img {
    width: calc(848/1920*100vw);
}

.section13 {
    background: #ffc100;
    padding-top: calc(38/1920*100vw);
    text-align: center;
    padding-bottom: calc(42/1920*100vw);
}

.section13 .title {
    font-family: Homer;
    font-weight: normal;
    font-size: calc(125/1920*100vw);
    color: #000000;
    text-align: center;
    padding-bottom: calc(30/1920*100vw);
}

.section13 .imgs1 {
    font-size: 0;
    text-align: center;
}

.section13 .imgs1 img {
    margin: 0 calc(18/1920*100vw);
    height: calc(579/1920*100vw);
}

.section13 .imgs2 {
    font-size: 0;
    padding-top: calc(88/1920*100vw);
    text-align: center;
}

.section13 .imgs2 img {
    height: calc(422/1920*100vw);
    margin: 0 calc(80/1920*100vw);
}

.section14 {
    position: relative;
    height: calc(641/1920*100vw);
    border: calc(5/1920*100vw) solid #000000;
    border-left: none;
    border-right: none;
}

.section14 .bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    left: 0;
    top: 0;
}

.section14 .center {
    position: absolute;
    top: 50%;
    left: 50%;
    -o-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    width: calc(1181/1920*100vw);
    height: calc(1181/1920*100vw);
}

.section14 .center .bg {
    width: calc(1181/1920*100vw);
    height: calc(1181/1920*100vw);
    background: url(../images/sy.png) no-repeat center center;
    background-size: 100%;
}

.section14 .center img {
    position: absolute;
    top: 50%;
    left: 50%;
    -o-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    z-index: 5;
    width: calc(1030/1920*100vw);
}

.section15 {
    text-align: center;
    background: #ffc100;
    padding-top: calc(104/1920*100vw);
}

.section15 .title {
    font-family: Homer;
    font-weight: normal;
    font-size: calc(76/1920*100vw);
    color: #000000;
}

.section15 .more {
    width: calc(971/1920*100vw);
    line-height: calc(127/1920*100vw);
    background: url(../images/arr.png) no-repeat 86% center #FF7200;
    border: calc(5/1920*100vw) solid #000000;
    margin: auto;
    display: block;
    margin-top: calc(48/1920*100vw);
    font-family: Homer;
    font-weight: normal;
    font-size: calc(56/1920*100vw);
    color: #000000;
    background-size: calc(42/1920*100vw);
    margin-bottom: calc(46/1920*100vw);
}

.section15 .center img {
    width: calc(181/1920*100vw);
}

.section15 .title2 {
    font-family: Homer;
    font-weight: normal;
    font-size: calc(87/1920*100vw);
    color: #FFFFFF;
    line-height: calc(49/1920*100vw);
    text-stroke: calc(6/1920*100vw) #291B13;
    -webkit-text-stroke: calc(4/1920*100vw) #291B13;
    margin-top: calc(38/1920*100vw);
    margin-bottom: calc(55/1920*100vw);
}

.section15 .dec {
    width: calc(1121/1920*100vw);
    font-family: Homer;
    font-weight: normal;
    font-size: calc(24/1920*100vw);
    color: #000000;
    margin: auto;
    padding-bottom: calc(80/1920*100vw);
}

.footer {
    background: #5d4f00;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: calc(43/1920*100vw) calc(55/1920*100vw);
    padding-right: calc(143/1920*100vw);
}

.footer .logo a img {
    width: calc(70/1920*100vw);
}

.footer .ris a {
    margin-left: calc(47/1920*100vw);
}

.footer .ris a img {
    max-height: calc(43/1920*100vw);
}

@font-face {
    font-family: 'Homer-Simpson-Revised-1';
    src: url('../fonts/Homer-Simpson-Revised-1.ttf')
}
.section9 .items > *:hover .slide{
    transform: translateY(calc(43/1920*100vw));
}
.index *{

-webkit-transition:all 0.4s;
-o-transition:all 0.4s;
-moz-transition:all 0.4s;
-ms-transition:all 0.4s;
transition:all 0.4s;

}


.section11 .line img{
    width: 100%;
    animation: move-right2 1s steps(1, start) infinite;
}
.section11 .line img.sec {
    position: absolute;
    left: -100%;
    top: 0px;
    width: 100%;
}

  .move-right2 {
            animation: move-right2 1s steps(1, start) infinite;
        }
          @keyframes move-right2 {
            0% {
                transform: translateX(0);
            }
            10% {
                transform: translateX(10%);
            }
            20% {
                transform: translateX(20%);
            }
            30% {
                transform: translateX(30%);
            }
            40% {
                transform: translateX(40%);
            }
            50% {
                transform: translateX(50%);
            }
            60% {
                transform: translateX(60%);
            }
            70% {
                transform: translateX(70%);
            }
            80% {
                transform: translateX(80%);
            }
            90% {
                transform: translateX(90%);
            }
            100% {
                transform: translateX(100%);
            }
        }



.bounce2 {
    animation: bounceani2 1s steps(1, start) infinite;
}

 @keyframes bounceani2 {
            0% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
            100% {
                transform: translateY(0);
            }
        }

.bounce3 {
    animation: bounceani3 2s steps(1, start) infinite;
}

 @keyframes bounceani3 {
            0% {
                transform: translateY(-5px);
            }
            50% {
                transform: translateY(0);
            }
            100% {
                transform: translateY(-5px);
            }
        }

        
@keyframes flip {
  from {
    transform: perspective(500px) rotate3d(0, 1, 0, -360deg);
    animation-timing-function: ease-out;
  }

  40% {
    transform: perspective(500px) translate3d(0, 0, 100px) rotate3d(0, 1, 0, -190deg);
    animation-timing-function: ease-out;
  }

  50% {
    transform: perspective(500px) translate3d(0, 0, 100px) rotate3d(0, 1, 0, -170deg);
    animation-timing-function: ease-in;
  }

  80% {
    transform: perspective(500px) scale3d(.95, .95, .95);
    animation-timing-function: ease-in;
  }

  to {
    transform: perspective(500px);
    animation-timing-function: ease-in;
  }
}

.xstyle{
    position: absolute;
    bottom: 0;
    z-index: 1000;
    width: calc(1920/1920*100vw);
}
.ani8{
    position: absolute;
    bottom: 0;
    /* z-index: 1000; */
    width: calc(1920/1920*100vw);
}