.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;
    }
}

* {
    font-family: Century Gothic;
}

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: #070707;
    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;
}

@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)
    }
}

.xuanzhuan {
    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;
}

.xuanzhuan 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 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;
    padding-top: calc(34/1920*100vw);
    padding-left: calc(40/1920*100vw);
}

.head .wrap {
}

.head .wrap .logo {
}

.head .wrap .logo.pc {
}

.head .wrap .logo.pc a {
}

.head .wrap .logo.pc a img {
    float: left;
    width: calc(36/1920*100vw);
}

.head .wrap .nav {
}

.head .wrap .nav.pc {
    float: right;
    padding-right: calc(291/1920*100vw);
    padding-top: calc(13/1920*100vw);
}

.head .wrap .nav.pc ul {
}

.head .wrap .nav.pc ul li {
    float: left;
}

.head .wrap .nav.pc ul li .h2tit {
}

.head .wrap .nav.pc ul li .h2tit a {
    display: block;
    margin-left: calc(34/1920*100vw);
    font-family: Century Gothic;
    font-weight: 400;
    font-size: calc(18/1920*100vw);
    color: #FFFFFF;
}

.head .more {
    position: absolute;
    top: calc(27/1920*100vw);
    right: calc(32/1920*100vw);
    width: calc(198/1920*100vw);
    background: #FFFFFF;
    border-radius: calc(30/1920*100vw);
    text-align: center;
    line-height: calc(60/1920*100vw);
    font-family: Century Gothic;
    font-weight: 400;
    font-size: calc(18/1920*100vw);
    color: #000000;
}

.section1 {
    position: relative;
    padding-top: calc(517/1920*100vw);
}

.section1 .bgs {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    text-align: center;
}

.section1 .bgs img {
    width: calc(1750/1920*100vw);
}

.section1 .balls {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    text-align: center;
}

.section1 .balls .img1 {
    height: calc(226/1920*100vw);
}

.section1 .balls .img2 {
    height: calc(541/1920*100vw);
    margin-left: calc(-126/1920*100vw);
}

.section1 .balls .img3 {
    height: calc(238/1920*100vw);
}

.section1 .txt {
    text-align: center;
    position: relative;
    z-index: 4;
}

.section1 .txt .txt1 {
    font-family: rigelstar;
    font-weight: 400;
    font-size: calc(97/1920*100vw);
    color: #FFFFFF;
    text-shadow: 0px 0px calc(26/1920*100vw) rgba(255,210,0,0.45);
}

.section1 .txt .txt2 {
    font-family: Century Gothic;
    font-weight: 400;
    font-size: calc(24/1920*100vw);
    color: #6E6E6E;
    padding-top: calc(48/1920*100vw);
    padding-bottom: calc(46/1920*100vw);
}

.section1 .txt .link {
    font-size: 0;
}

.section1 .txt .link a {
    width: calc(200/1920*100vw);
    line-height: calc(62/1920*100vw);
    background: rgba(0,0,0,0.2);
    border-radius: calc(550/1920*100vw);
    border: calc(2/1920*100vw) solid #DCBC85;
    margin: 0px calc(33/1920*100vw);
    display: inline-block;
    text-align: center;
}

.section1 .txt .link a img {
    height: calc(32/1920*100vw);
}

.section1 .txt .link a span {
    font-family: Century Gothic;
    font-weight: 400;
    font-size: calc(24/1920*100vw);
    color: #FFFFFF;
    margin-left: calc(14/1920*100vw);
    vertical-align: middle;
}

.section2 .wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section2 {
    padding-top: calc(260/1920*100vw);
    padding-bottom: calc(180/1920*100vw);
    background: url(../images/bg2.png) no-repeat center center;
    background-size: auto 142%;
}

.index .wrap {
    margin: 0px calc(300/1920*100vw);
}

.section2 .wrap .left {
}

.section2 .wrap .left .title0:after {
    content: "";
    position: absolute;
    left: 0;
    top: calc(50/1920*100vw);
    width: calc(29/1920*100vw);
    height: calc(3/1920*100vw);
    background: #909090;
    top: 50%;
}

.section2 .wrap .left .title0 {
    font-family: Century Gothic;
    font-weight: 400;
    font-size: calc(24/1920*100vw);
    color: #909090;
    padding-left: calc(32/1920*100vw);
    position: relative;
}

.section2 .wrap .left .title1 {
    font-family: rigelstar;
    font-weight: 400;
    font-size: calc(66/1920*100vw);
    color: #FFFFFF;
    padding-top: calc(55/1920*100vw);
    padding-bottom: calc(49/1920*100vw);
    background-image: linear-gradient(to right,#dfc290,#fff);
    -webkit-background-clip: text;
    color: transparent;
}

.section2 .wrap .left .dec {
    width: calc(555/1920*100vw);
    font-family: Century Gothic;
    font-weight: 400;
    font-size: calc(24/1920*100vw);
    color: #959595;
    line-height: calc(36/1920*100vw);
}

.section2 .wrap .right {
    position: relative;
    margin-top: calc(67/1920*100vw);
}

.section2 .wrap .right img {
    width: calc(513/1920*100vw);
    left: 0;
}

.section2 .wrap .right .im1 {
    position: absolute;
    top: calc(-45/1920*100vw);
    z-index: 3;
}

.section2 .wrap .right .im2 {
    position: relative;
    z-index: 2;
    opacity: 0.45;
}

.section2 .wrap .right .im3 {
    position: absolute;
    top: calc(45/1920*100vw);
    z-index: 1;
}

.section3 {
    background: url(../images/bg3.png) no-repeat center bottom;
    background-size: 100%;
    padding-bottom: calc(211/1920*100vw);
}

.section3 .wrap {
}

.titlemodel {
    text-align: center;
}

.titlemodel .tit {
    display: inline-block;
    position: relative;
}

.titlemodel .tit span:after,.titlemodel .tit span:before {
    content: "";
    position: absolute;
    top: 50%;
    width: calc(29/1920*100vw);
    height: calc(3/1920*100vw);
    background: #909090;
    margin-top: calc(-1/1920*100vw);
    left: 0;
}

.titlemodel .tit span:before {
    left: auto;
    right: 0;
}

.titlemodel .tit span {
    font-family: Century Gothic;
    font-weight: 400;
    font-size: calc(24/1920*100vw);
    color: #909090;
    padding: 0 calc(36/1920*100vw);
}

.titlemodel .dec1 {
    font-family: rigelstar;
    font-weight: 400;
    font-size: calc(50/1920*100vw);
    color: #FFFFFF;
    margin-top: calc(45/1920*100vw);
}

.titlemodel .dec2 {
    font-family: Century Gothic;
    font-weight: 400;
    font-size: calc(24/1920*100vw);
    color: #6E6E6E;
    padding-top: calc(44/1920*100vw);
}

.section3 .wrap .list:after {
    content: "";
    display: table;
    clear: both;
}

.section3 .wrap .list {
    padding-top: calc(120/1920*100vw);
    text-align: center;
}

.section3 .wrap .list .item:last-child {
    margin-right: 0;
}

.section3 .wrap .list .item {
    width: calc(403/1920*100vw);
    height: calc(403/1920*100vw);
    background: url(../images/blur.png) no-repeat center center;
    background-size: cover;
    position: relative;
    border: 1px solid #fff;
    border-radius: calc(23/1920*100vw);
    padding-top: calc(42/1920*100vw);
    float: left;
    width: calc((100% - calc(160/1920*100vw))/3);
    margin-right: calc(80/1920*100vw);
}

.section3 .wrap .list .item .dots {
    position: absolute;
    text-align: center;
    width: 100%;
    left: 0;
    top: calc(-39/1920*100vw);
}

.section3 .wrap .list .item .dots img {
    height: calc(94/1920*100vw);
}

.section3 .wrap .list .item .icon {
}

.section3 .wrap .list .item .icon img {
    height: calc(61/1920*100vw);
}

.section3 .wrap .list .item .title {
    font-family: Century Gothic;
    font-weight: 400;
    font-size: calc(30/1920*100vw);
    color: #FFFFFF;
    padding-bottom: calc(53/1920*100vw);
    padding-top: calc(21/1920*100vw);
}

.section3 .wrap .list .item .dec {
    font-family: Century Gothic;
    font-weight: 400;
    font-size: calc(18/1920*100vw);
    color: #B0B0B0;
    padding: 0 calc(50/1920*100vw);
    line-height: 1.5;
    text-align: left;
}

.section4 {
    background: url(../images/bg4.png) no-repeat center calc(-123/1920*100vw);
    background-size: 100%;
    padding-bottom: calc(300/1920*100vw);
}

.section4 .wrap {
}

.section4 .wrap .titlemodel {
}

.section4 .wrap .titlemodel .tit {
}

.section4 .wrap .titlemodel .tit span {
}

.section4 .wrap .titlemodel .dec1 {
}

.section4 .wrap .list:after {
    content: "";
    display: table;
    clear: both;
}

.section4 .wrap .wapbox {
}

.section4 .wrap .wapbox img {
    width: 99%;
    display: block;
    margin: auto;
    margin-top: 8vw;
}

.section4 .wrap .list {
    background: url(../images/charts.png) no-repeat center calc(97/1920*100vw);
    background-size: calc(608/1920*100vw);
    height: calc(580/1920*100vw);
}

.section4 .wrap .list .item:nth-child(2n) {
    padding-left: calc(146/1920*100vw);
}

.section4 .wrap .list .item:nth-child(1) {
    width: calc(541/1920*100vw);
    height: calc(188/1920*100vw);
    background: url(../images/k1.png) no-repeat center center;
    background-size: 100%;
    margin-left: calc(34/1920*100vw);
}

.section4 .wrap .list .item:nth-child(2) {
    width: calc(541/1920*100vw);
    height: calc(188/1920*100vw);
    background: url(../images/k2.png) no-repeat center center;
    background-size: 100%;
    margin-left: calc(57/1920*100vw);
    margin-top: calc(75/1920*100vw);
}

.section4 .wrap .list .item:nth-child(3) {
    width: calc(541/1920*100vw);
    height: calc(188/1920*100vw);
    background: url(../images/k3.png) no-repeat center center;
    background-size: 100%;
    margin-left: calc(82/1920*100vw);
}

.section4 .wrap .list .item:nth-child(4) {
    width: calc(541/1920*100vw);
    height: calc(188/1920*100vw);
    background: url(../images/k4.png) no-repeat center center;
    background-size: 100%;
    float: right;
    margin-right: calc(72/1920*100vw);
    margin-top: calc(19/1920*100vw);
}

.section4 .wrap .list .item {
    padding-top: calc(80/1920*100vw);
    padding-left: calc(90/1920*100vw);
    float: left;
}

.section4 .wrap .list .item .val {
    font-family: Century Gothic;
    font-weight: bold;
    font-size: calc(30/1920*100vw);
    color: #FFFFFF;
}

.section4 .wrap .list .item .title {
    font-family: Adobe Heiti Std;
    font-weight: normal;
    font-size: calc(24/1920*100vw);
    color: #FFFFFF;
    padding-top: calc(14/1920*100vw);
}

.section5 {
}

.section5 .wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section5 .wrap .left {
}

.section5 .wrap .left .models {
}

.section5 .wrap .left .models .model {
}

.section5 .wrap .left .models .model .title:after {
}

.section5 .wrap .left .models .model .title:after {
    content: "";
    position: absolute;
    left: 0;
    top: calc(50/1920*100vw);
    width: calc(29/1920*100vw);
    height: calc(3/1920*100vw);
    background: #909090;
    top: 50%;
}

.section5 .wrap .left .models .model .title {
    font-family: Century Gothic;
    font-weight: 400;
    font-size: calc(24/1920*100vw);
    color: #909090;
    padding-left: calc(32/1920*100vw);
    position: relative;
}

.section5 .wrap .left .models .model .title1 {
    font-family: rigelstar;
    font-weight: 400;
	line-height: 1.5;
    font-size: calc(66/1920*100vw);
    color: #FFFFFF;
    margin-top: calc(61/1920*100vw);
    margin-bottom: calc(29/1920*100vw);
    background-image: linear-gradient(to right,#dfc290,#fff);
    -webkit-background-clip: text;
    color: transparent;
    display: inline-block;
}

.section5 .wrap .left .models .model .dec {
    width: calc(448/1920*100vw);
    font-family: Century Gothic;
    font-weight: 400;
    font-size: calc(24/1920*100vw);
    color: #959595;
    line-height: calc(36/1920*100vw);
}

.section5 .wrap .left  .dots {
}
.section5 .wrap .left  .dots i:after{
    position: absolute;
    content: "";
    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%);
    opacity: 0;
}
.section5 .wrap .left  .dots i.current:after{
    opacity: 1;
    background: url(../images/l2.png) no-repeat center center;
    background-size: 100%;
    width: calc(46/1920*100vw);
    height: calc(46/1920*100vw);
}
.section5 .wrap .left  .dots i {
    display: inline-block;
    margin-top: calc(28/1920*100vw);
    margin-right: calc(27/1920*100vw);
    width: calc(26/1920*100vw);
    height: calc(26/1920*100vw);
    background: #909090;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
}

.section5 .wrap .right {
    display: flex;
    margin-left: calc(155/1920*100vw);
}

.section5 .wrap .right .imgbox.current {
    opacity: 1 !important;
    z-index: 111 !important;
}

.section5 .wrap .right .imgbox:nth-child(1) {
    margin: 0;
    border-left: 1px solid #fff;
}

.section5 .wrap .right .imgbox:nth-child(2) {
    margin-left: calc(-230/1920*100vw);
    z-index: 9;
    opacity: .4;
}

.section5 .wrap .right .imgbox:nth-child(3) {
    margin-left: calc(-230/1920*100vw);
    z-index: 8;
    opacity: .2;
}

.section5 .wrap .right .imgbox:nth-child(4) {
    z-index: 7;
    opacity: .3;
    margin-left: calc(-230/1920*100vw);
}

.section5 .wrap .right .imgbox:after {
    content: "";
    position: absolute;
    width: calc(243/1920*100vw);
    height: calc(86/1920*100vw);
    background: url(../images/jiao.png) no-repeat center center;
    background-size: 100%;
    left: calc(67/1920*100vw);
    top: calc(-37/1920*100vw);
}

.section5 .wrap .right .imgbox {
    width: calc(370/1920*100vw);
    height: calc(535/1920*100vw);
    background: url(../images/blur.png) no-repeat center center;
    background-size: 100% 100%;
    position: relative;
    margin-left: calc(-160/1920*100vw);
    opacity: .3;
    z-index: 10;
    border: 1px solid #fff;
    border-radius: calc(24/1920*100vw);
    border-left: none;
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    backdrop-filter: saturate(180%) blur(60px);
    background-color: rgba(104,104,104,0.35);
    cursor: pointer;
}

.section5 .wrap .right .imgbox img {
    position: absolute;
    bottom: 0;
    left: 48%;
    transform: translate(-50%,0%);
    max-width: 130%;
}

.section6 {
    padding-top: calc(354/1920*100vw);
    padding-bottom: calc(354/1920*100vw);
    background: url(../images/bg5.png) no-repeat left center;
    background-size: calc(1241/1920*100vw);
}

.section6 .wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section6 .wrap .left {
    width: calc(566/1920*100vw);
    height: calc(566/1920*100vw);
    position: relative;
}

.section6 .wrap .left .line {
    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: 90%;
    height: 90%;
}

.section6 .wrap .left .circle img {
    width: calc(592/1920*100vw);
}

.section6 .wrap .left .circle {
    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%);
}

.section6 .wrap .left .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%);
}

.section6 .wrap .left .center img {
    width: calc(530/1920*100vw);
}

.section6 .wrap .right {
}

.section6 .wrap .right .title:after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: calc(29/1920*100vw);
    height: calc(3/1920*100vw);
    background: #909090;
}

.section6 .wrap .right .title {
    font-family: Century Gothic;
    font-weight: 400;
    font-size: calc(24/1920*100vw);
    color: #909090;
    padding-right: calc(43/1920*100vw);
    position: relative;
    display: inline-block;
}

.section6 .wrap .right .dec1 {
    font-family: rigelstar;
    font-weight: 400;
    font-size: calc(66/1920*100vw);
    color: #FFFFFF;
    margin-top: calc(30/1920*100vw);
    margin-bottom: calc(59/1920*100vw);
    display: inline-block;
    background-image: linear-gradient(to right,#dfc290,#fff);
    -webkit-background-clip: text;
    color: transparent;
}

.section6 .wrap .right .dec2 {
    width: calc(554/1920*100vw);
    font-family: Century Gothic;
    font-weight: 400;
    font-size: calc(24/1920*100vw);
    color: #959595;
    line-height: calc(36/1920*100vw);
}

.section7 {
    background: url(../images/bg6.png) no-repeat center center;
    background-size: 100%;
}

.section7 .wrap {
}

.section7 .wrap .titlemodel {
}

.section7 .wrap .titlemodel .tit {
}

.section7 .wrap .titlemodel .tit span {
}

.section7 .wrap .titlemodel .dec1 {
}

.section7 .wrap .titlemodel .dec2 {
}

.section7 .wrap .list:after {
    content: "";
    display: table;
    clear: both;
}

.section7 .wrap .list {
    padding-top: calc(70/1920*100vw);
}

.section7 .wrap .list .item:nth-child(2n) {
    float: right;
}

.section7 .wrap .list .item:nth-child(1) {
}

.section7 .wrap .list .item:nth-child(2) {
}

.section7 .wrap .list .item:nth-child(3) {
}

.section7 .wrap .list .item:nth-child(4) {
}

.section7 .wrap .list .item {
    width: calc((100% - calc(40/1920*100vw))/2);
    background: rgba(0,0,0,0.03);
    border-radius: calc(32/1920*100vw);
    border: 1px solid #FFE295;
    float: left;
    position: relative;
    padding-top: calc(94/1920*100vw);
    padding-left: calc(52/1920*100vw);
    padding-right: calc(120/1920*100vw);
    margin-bottom: calc(40/1920*100vw);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    backdrop-filter: saturate(180%) blur(20px);
    background-color: rgba(0,0,0,0.35);
}

.section7 .wrap .list .item .time1 {
    text-align: right;
    top: calc(47/1920*100vw);
    right: calc(56/1920*100vw);
    position: absolute;
}

.section7 .wrap .list .item .time1 .day {
    font-family: Century Gothic;
    font-weight: bold;
    font-size: calc(60/1920*100vw);
    color: #FFFFFF;
}

.section7 .wrap .list .item .time1 .mon {
    font-family: Century Gothic;
    font-weight: bold;
    font-size: calc(30/1920*100vw);
    color: #FFFFFF;
    padding-top: calc(3/1920*100vw);
}

.section7 .wrap .list .item .time2 {
    font-family: Century Gothic;
    font-weight: bold;
    font-size: calc(30/1920*100vw);
    color: #000000;
    display: inline-block;
    padding: 0 calc(12/1920*100vw);
    line-height: calc(39/1920*100vw);
    background: #F9C230;
    border-radius: calc(6/1920*100vw);
    border: 1px solid #F9C230;
    text-align: center;
}

.section7 .wrap .list .item .dec {
    padding-top: calc(60/1920*100vw);
    padding-bottom: calc(70/1920*100vw);
}

.section7 .wrap .list .item .dec p:after {
    content: '';
    position: absolute;
}

.section7 .wrap .list .item .dec p:last-child {
    margin: 0;
}

.section7 .wrap .list .item .dec p {
    font-family: Century Gothic;
    font-weight: 400;
    font-size: calc(20/1920*100vw);
    color: #6E6E6E;
    line-height: 1.5;
    position: relative;
    background: url(../images/l.png) no-repeat left -3px;
    padding-left: calc(40/1920*100vw);
    background-size: calc(36/1920*100vw);
    margin-bottom: calc(37/1920*100vw);
}

.section8 {
    text-align: center;
    padding-bottom: calc(95/1920*100vw);
}

.section8 .wrap {
}

.section8 .wrap .content {
}

.section8 .wrap .content .imgbox {
}

.section8 .wrap .content .imgbox img {
    width: calc(1102/1920*100vw);
}

.section8 .wrap .content .title {
    font-family: rigelstar;
    font-weight: 400;
    font-size: calc(50/1920*100vw);
    color: #FFFFFF;
    margin-top: calc(-88/1920*100vw);
}

.section8 .wrap .content .dec {
    font-family: Century Gothic;
    font-weight: 400;
    font-size: calc(24/1920*100vw);
    color: #6E6E6E;
    padding-top: calc(44/1920*100vw);
    margin-bottom: calc(50/1920*100vw);
}

.section8 .wrap .content .link {
    font-size: 0;
}

.section8 .wrap .content .link a {
    width: calc(62/1920*100vw);
    height: calc(62/1920*100vw);
    background: rgba(0,0,0,0.2);
    border-radius: calc(30/1920*100vw);
    border: 2px solid #DCBC85;
    display: inline-block;
    margin: 0 calc(20/1920*100vw);
    position: relative;
}

.section8 .wrap .content .link a img {
    height: calc(32/1920*100vw);
    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%);
}

.footer {
    background: #111111;
    padding: 0 calc(144/1920*100vw);
    padding-top: calc(86/1920*100vw);
    padding-bottom: calc(165/1920*100vw);
}

.footer .content {
    border-bottom: 1px solid #959595;
    zoom:1;padding-bottom: calc(82/1920*100vw);
    overflow: hidden;
}

.footer .content .left {
    text-align: center;
    width: calc(353/1920*100vw);
    margin-left: calc(60/1920*100vw);
    float: left;
}

.footer .content .left img {
    height: calc(135/1920*100vw);
}

.footer .content .left .title {
    font-family: rigelstar;
    font-weight: 400;
    font-size: calc(27/1920*100vw);
    color: #FFFFFF;
    padding-top: calc(23/1920*100vw);
    padding-bottom: calc(29/1920*100vw);
}

.footer .content .left .dec {
    font-family: Century Gothic;
    font-weight: 400;
    font-size: calc(16/1920*100vw);
    color: #6E6E6E;
    line-height: 1.4;
}

.footer .content .right {
    float: left;
    margin-left: calc(238/1920*100vw);
}

.footer .content .right .title {
    font-family: Century Gothic;
    font-weight: bold;
    font-size: calc(24/1920*100vw);
    color: #FFFEFE;
    padding-bottom: calc(51/1920*100vw);
}

.footer .content .right .link {
}

.footer .content .right .link .it {
    float: left;
    width: calc(172/1920*100vw);
}

.footer .content .right .link .it a {
    font-family: Century Gothic;
    font-weight: 400;
    font-size: calc(18/1920*100vw);
    color: #858585;
    display: block;
    margin-bottom: calc(21/1920*100vw);
}

@font-face {
    font-family: 'rigelstar';
    src: url('../fonts/Rigelstar-2.otf');
}




.section6 .wrap .left .line::before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
    border: 1px solid #fff;
    border-radius: 50%;
    -webkit-animation: pulse-border-2 1.5s linear infinite;
    -moz-animation: pulse-border-2 1.5s linear infinite;
    -o-animation: pulse-border-2 1.5s linear infinite;
    animation: pulse-border-2 1.5s linear infinite;
}
.section6 .wrap .left .line::after {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
    border: 1px solid #fff;
    border-radius: 50%;
    -webkit-animation: pulse-border 1s linear infinite;
    -moz-animation: pulse-border 1s linear infinite;
    -o-animation: pulse-border 1s linear infinite;
    animation: pulse-border 1s linear infinite;
}



@keyframes pulse-border {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    opacity: 1; }
  100% {
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0; } }
@keyframes pulse-border-2 {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    opacity: 1; }
  100% {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    -o-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0; } }

