.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: #ff0082;
}

.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: url(../images/bg1.png) no-repeat center center;
    width: 100%;
    position: absolute;
    top: 0;
    padding-bottom: 0%;
    display: none;
    z-index: 444;
    background-size: cover;
}

.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: #000;
}

.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: Cambria;
}

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: calc(14/1920*100vw);
}

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);
}

select {
    cursor: pointer;
}

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:#000;*/
    /* 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;
}

.wrap:after {
    content: "";
    display: table;
    clear: both;
}

.fadeInUpGroup.animated {
    animation-fill-mode: both;
    animation-name: fadeInLeft3;
    opacity: 0;
}

.fadeInUpGroup.animated:nth-child(1) {
    animation-duration: .5s !important;
    animation-delay: .1s !important;
}

.fadeInUpGroup.animated:nth-child(2) {
    animation-duration: 1s !important;
    animation-delay: .6s !important;
}

.fadeInUpGroup.animated:nth-child(3) {
    animation-duration: 1.5s !important;
    animation-delay: .9s !important;
}

.fadeInUpGroup.animated:nth-child(4) {
    animation-duration: 2s !important;
    animation-delay: 1.1s !important
}

.fadeInUpGroup.animated:nth-child(5) {
    animation-duration: 1.5s !important;
    animation-delay: 1.6s !important;
}

.head {
    background: #ffd33c;
    height: calc(100/1920*100vw);
    position: fixed;
    left: 0;
    top: 0px;
    width: 100%;
    z-index: 9999;
}

.head .wrap {
    padding-left: calc(229/1920*100vw);
    padding-right: calc(212/1920*100vw);
    position: relative;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
}

.head .wrap .logo {
}

.head .wrap .logo.pc {
}

.head .wrap .logo a {
}

.head .wrap .logo a img {
    height: calc(59/1920*100vw);
    float: left;
    margin-top: calc(20/1920*100vw);
}

.head .wrap .nav {
}

.head .wrap .nav.pc {
}

.head .wrap .nav ul {
    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%);
    display: flex;
    align-items: center;
}

.head .wrap .nav ul li {
}

.head .wrap .nav ul li h2 {
}

.head .wrap .nav ul li h2.h2tit {
}

.head .wrap .nav ul li h2 a {
    font-family: Cambria;
    font-weight: 400;
    font-size: calc(30/1920*100vw);
    color: #151515;
    display: block;
    margin: 0px calc(39/1920*100vw);
}

.head .wrap .right {
    float: right;
    display: flex;
    align-items: center;
    height: 100%;
}

.head .wrap .right .link {
}

.head .wrap .right .link a {
}

.head .wrap .right .link a img {
    width: calc(35/1920*100vw);
}

.head .wrap .right .more {
    width: calc(160/1920*100vw);
    line-height: calc(34/1920*100vw);
    background: #FFD33C;
    border-radius: calc(15/1920*100vw);
    border: calc(4/1920*100vw) solid #000000;
    margin-left: calc(20/1920*100vw);
    text-align: center;
    font-family: Cambria;
    font-weight: 400;
    font-size: calc(24/1920*100vw);
    color: #000000;
}

.section1 {
    padding-top: calc(254/1920*100vw);
    background: url(../images/bg1.png) no-repeat center bottom;
    background-size: cover;
    padding-bottom: calc(90/1920*100vw);
}

.section1 .wrap {
    /* display:flex;*/
    padding: 0px calc(252/1920*100vw);
    align-items: center;
    justify-content: space-between;
}

.section1 .wrap .left {
    float: left;
}

.section1 .wrap .left .title {
}

.section1 .wrap .left .title img {
    height: calc(84/1920*100vw);
}

.section1 .wrap .left .title span {
}

.section1 .wrap .left .title2 {
    padding-top: calc(89/1920*100vw);
    padding-bottom: calc(47/1920*100vw);
}

.section1 .wrap .left .title2 img {
    height: calc(161/1920*100vw);
}

.section1 .wrap .left .dec {
    font-family: Cambria;
    font-weight: bold;
    font-size: calc(54/1920*100vw);
    color: #000000;
    white-space: nowrap;
}

.section1 .wrap .left .link {
}

.section1 .wrap .left .link a {
    width: calc(369/1920*100vw);
    line-height: calc(57/1920*100vw);
    background: #FFD33C;
    border-radius: calc(15/1920*100vw);
    border: calc(6/1920*100vw) solid #000000;
    display: block;
    text-align: center;
    font-family: Cambria;
    font-weight: 400;
    font-size: calc(36/1920*100vw);
    color: #000000;
    margin-top: calc(76/1920*100vw);
}

.section1 .wrap .right {
    float: right;
}

.section1 .wrap .right img {
    width: calc(579/1920*100vw);
}

.section2 {
    background: #FFFFFF;
    border-radius: calc(38/1920*100vw);
    position: relative;
    margin-top: calc(-30/1920*100vw);
    z-index: 4;
    padding-top: calc(86/1920*100vw);
    padding-bottom: calc(62/1920*100vw);
}

.section2 .wrap {
    width: calc(1583/1920*100vw);
    margin: auto;
    max-width: 90%;
}

.section2 .wrap .block1 {
    background: #FF7632;
    border-radius: calc(75/1920*100vw);
    padding-top: calc(95/1920*100vw);
    padding-left: calc(90/1920*100vw);
    padding-right: calc(83/1920*100vw);
}

.section2 .wrap .block1 .title {
    font-family: Cambria;
    font-weight: bold;
    font-size: calc(48/1920*100vw);
    color: #151515;
}

.section2 .wrap .block1 .content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: calc(64/1920*100vw);
}

.section2 .wrap .block1 .content .left {
    width: calc(1008/1920*100vw);
}

.section2 .wrap .block1 .content .left .dec1 {
}

.section2 .wrap .block1 .content .left .dec1 p {
    font-family: Cambria;
    font-weight: bold;
    font-size: calc(30/1920*100vw);
    color: #151515;
    line-height: calc(48/1920*100vw);
    padding-bottom: calc(37/1920*100vw);
}

.section2 .wrap .block1 .content .left .dec1 p b {
    color: #FFD33C;
}

.section2 .wrap .block1 .content .left .dec2 {
    padding-bottom: calc(72/1920*100vw);
}

.section2 .wrap .block1 .content .left .dec2 p {
    font-family: Cambria;
    font-weight: 400;
    font-size: calc(24/1920*100vw);
    color: #151515;
    line-height: calc(48/1920*100vw);
}

.section2 .wrap .block1 .content .left .dec2 p b {
    color: #FFD33C;
}

.section2 .wrap .block1 .content .left .ca {
    font-family: Cambria;
    font-weight: 400;
    font-size: calc(36/1920*100vw);
    color: #000000;
    line-height: calc(48/1920*100vw);
}

.section2 .wrap .block1 .content .right {
    width: calc(350/1920*100vw);
}

.section2 .wrap .block1 .content .right .imgbox {
}

.section2 .wrap .block1 .content .right .imgbox img {
    width: 100%;
}

.section2 .wrap .block1 .content .right .count {
    width: calc(260/1920*100vw);
    height: calc(56/1920*100vw);
    background: #FF7632;
    border-radius: calc(8/1920*100vw);
    border: calc(4/1920*100vw) solid #000000;
    margin: calc(36/1920*100vw) auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.section2 .wrap .block1 .content .right .count i {
    font-family: Cambria;
    font-weight: bold;
    font-size: calc(48/1920*100vw);
    color: #000000;
    width: calc(70/1920*100vw);
    text-align: center;
    cursor: pointer;
    font-style: normal;
    margin-top: calc(-8/1920*100vw);
}

.section2 .wrap .block1 .content .right .count .words {
    font-family: Cambria;
    font-weight: bold;
    font-size: calc(30/1920*100vw);
    color: #000000;
    width: calc(100% - 140/1920*100vw);
    border: none;
    background: none;
    text-align: center;
}

.section2 .wrap .block1 .content .right .mint {
    width: calc(260/1920*100vw);
    line-height: calc(48/1920*100vw);
    background: #FFD43D;
    border-radius: calc(8/1920*100vw);
    border: calc(4/1920*100vw) solid #000000;
    margin: auto;
    display: block;
    text-align: center;
    font-family: Cambria;
    font-weight: bold;
    font-size: calc(30/1920*100vw);
    color: #000000;
}

.section2 .wrap .block2 {
    /* height:calc(376/1920*100vw);*/
    background: #30C1EE;
    border-radius: calc(75/1920*100vw);
    margin: calc(71/1920*100vw) 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: calc(74/1920*100vw);
    padding-left: calc(90/1920*100vw);
    padding-right: calc(94/1920*100vw);
    padding-bottom: calc(53/1920*100vw);
}

.section2 .wrap .block2 .left {
}

.section2 .wrap .block2 .left .title {
    font-family: Cambria;
    font-weight: bold;
    font-size: calc(48/1920*100vw);
    color: #000000;
}

.section2 .wrap .block2 .left .dec {
    padding-top: calc(62/1920*100vw);
}

.section2 .wrap .block2 .left .dec p {
    font-family: Cambria;
    font-weight: bold;
    font-size: calc(36/1920*100vw);
    color: #000000;
    line-height: calc(60/1920*100vw);
}

.section2 .wrap .block2 .right {
    width: calc(406/1920*100vw);
    height: calc(230/1920*100vw);
    text-align: center;
    background: url(../images/bi.png) no-repeat center center;
    background-size: 100%;
    font-family: Cambria;
    font-weight: bold;
    font-size: calc(60/1920*100vw);
    color: #000000;
    padding-top: calc(105/1920*100vw);
}

.section2 .wrap .block2.type2 {
    background: #6EE587;
}

.section2 .wrap .block2.type2 .left {
}

.section2 .wrap .block2.type2 .left .title {
}

.section2 .wrap .block2.type2 .left .dec {
}

.section2 .wrap .block2.type2 .left .dec p {
}

.section2 .wrap .block2.type2 .right2 {
    font-size: 0;
}

.section2 .wrap .block2.type2 .right2 a {
    width: calc(131/1920*100vw);
    line-height: calc(131/1920*100vw);
    background: #000000;
    border-radius: calc(8/1920*100vw);
    display: inline-block;
    font-family: Cambria;
    font-weight: bold;
    font-size: calc(42/1920*100vw);
    color: #FFFFFF;
    text-align: center;
    margin-left: calc(62/1920*100vw);
}

.section2 .wrap .block3 {
    margin-bottom: calc(73/1920*100vw);
}

.section2 .wrap .block3 img {
    width: 100%;
}

.section2 .wrap .block4 {
    background: #B188FE;
    border-radius: calc(75/1920*100vw);
    padding-top: calc(87/1920*100vw);
    padding-left: calc(92/1920*100vw);
    padding-right: calc(146/1920*100vw);
    padding-bottom: calc(33/1920*100vw);
}

.section2 .wrap .block4 .title {
    font-family: Cambria;
    font-weight: bold;
    font-size: calc(48/1920*100vw);
    color: #000000;
}

.section2 .wrap .block4 .content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.section2 .wrap .block4 .content .left {
}

.section2 .wrap .block4 .content .left .dec {
    width: calc(895/1920*100vw);
    height: auto;
    font-family: Cambria;
    font-weight: 400;
    font-size: calc(30/1920*100vw);
    color: #000000;
    line-height: calc(42/1920*100vw);
    padding-bottom: calc(54/1920*100vw);
}

.section2 .wrap .block4 .content .left .dec p {
}

.section2 .wrap .block4 .content .left .join {
    display: block;
    width: calc(275/1920*100vw);
    line-height: calc(84/1920*100vw);
    background: url(../images/lis1.png) no-repeat 84% center #000;
    border-radius: 0px calc(90/1920*100vw) calc(90/1920*100vw) 0px;
    font-family: Cambria;
    font-weight: bold;
    font-size: calc(30/1920*100vw);
    color: #FFFFFF;
    padding-left: calc(40/1920*100vw);
    background-size: calc(50/1920*100vw);
}

.section2 .wrap .block4 .content .right {
}

.section2 .wrap .block4 .content .right img {
    width: calc(239/1920*100vw);
}

.footer {
    text-align: center;
    background: url(../images/bg2.png) no-repeat center center;
    background-size: cover;
    padding-top: calc(108/1920*100vw);
    margin-top: calc(-30/1920*100vw);
}

.footer img {
    height: calc(136/1920*100vw);
}

.footer .dec {
    padding-top: calc(36/1920*100vw);
    padding-bottom: calc(33/1920*100vw);
}

.footer .dec p {
    font-family: Cambria;
    font-weight: 400;
    font-size: calc(18/1920*100vw);
    color: #000000;
    opacity: 0.79;
}

.index *,
.head ,.head *{
    -webkit-transition:all 0.4s;
-o-transition:all 0.4s;
-moz-transition:all 0.4s;
-ms-transition:all 0.4s;
transition:all 0.4s;

}

/* Mint Progress Bar Styles */
.mint-progress {
    margin-top: 20px;
    padding: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.progress-title {
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
    text-align: center;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.progress-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.progress-bar {
    flex: 1;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #4CAF50 0%, #8BC34A 50%, #CDDC39 100%);
    border-radius: 10px;
    width: 0%;
    transition: width 0.5s ease-in-out;
    position: relative;
    overflow: hidden;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.progress-text {
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
    min-width: 50px;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.progress-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.minted-amount,
.remaining-amount {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.minted-amount {
    color: #4CAF50;
    font-weight: bold;
}

.remaining-amount {
    color: #FFC107;
    font-weight: bold;
}

/* Responsive design for mobile */
@media (max-width: 768px) {
    .mint-progress {
        margin-top: 15px;
        padding: 15px;
    }
    
    .progress-title {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .progress-container {
        gap: 10px;
        margin-bottom: 12px;
    }
    
    .progress-bar {
        height: 16px;
    }
    
    .progress-text {
        font-size: 14px;
        min-width: 45px;
    }
    
    .progress-details {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .minted-amount,
    .remaining-amount {
        font-size: 13px;
    }
}

/* Countdown Timer Styles */
.countdown-container {
    margin-top: 20px;
    padding: 20px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.countdown-title {
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.countdown-display {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
}

.countdown-number {
    font-size: 28px;
    font-weight: bold;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 12px;
    border-radius: 8px;
    min-width: 50px;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.countdown-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 5px;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.countdown-separator {
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin: 0 5px;
}

.countdown-status {
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.countdown-status.ended {
    background: rgba(255, 0, 0, 0.3);
    color: #ffebee;
    border-color: rgba(255, 0, 0, 0.5);
}

.countdown-status.warning {
    background: rgba(255, 193, 7, 0.3);
    color: #fff8e1;
    border-color: rgba(255, 193, 7, 0.5);
}

/* Responsive design for countdown */
@media (max-width: 768px) {
    .countdown-container {
        margin-top: 15px;
        padding: 15px;
    }
    
    .countdown-title {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .countdown-display {
        gap: 8px;
        margin-bottom: 12px;
    }
    
    .countdown-item {
        min-width: 50px;
    }
    
    .countdown-number {
        font-size: 22px;
        padding: 6px 10px;
        min-width: 40px;
    }
    
    .countdown-label {
        font-size: 11px;
        margin-top: 4px;
    }
    
    .countdown-separator {
        font-size: 20px;
        margin: 0 3px;
    }
    
    .countdown-status {
        font-size: 14px;
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    .countdown-display {
        gap: 5px;
    }
    
    .countdown-item {
        min-width: 45px;
    }
    
    .countdown-number {
        font-size: 18px;
        padding: 5px 8px;
        min-width: 35px;
    }
    
    .countdown-label {
        font-size: 10px;
    }
    
    .countdown-separator {
        font-size: 16px;
        margin: 0 2px;
    }
}