









.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 {
    /* background-color:rgb(255,255,255); */
    width: 100%;
    height: 50px;
    position: relative;
    top: 0px;
    z-index: 33;
    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: rgb(199,34,27);
}

.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;
    max-height: calc(100vh - 50px);
}

.mobile-inner-nav {
    background-color: hsla(224,27%,35%,.6);
    width: 100%;
    position: absolute;
    top: 50px;
    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: 'AkzidenzGroteskBQ';
}

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: #000;
}

* {
    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;
}

/* Header Styles */
.head {
    /* Add header styles here */
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 777;
}

/* Logo Styles */
.head .logo {
    /* Add logo styles here */
    float: left;
    padding-top: calc(51 / 1920 * 100vw);
    padding-left: calc(49 / 1920 * 100vw);
}

.head .logo.pc {
    /* Add logo styles for desktop here */
}

.head .logo a {
    /* Add logo link styles here */
}

.head .logo img.pulseAni {
    /* Add image styles here */
    width: calc(130 / 1920 * 100vw);
}

/* Navigation Styles */
.head .nav {
    /* Add navigation styles here */
    float: left;
    margin-left: calc(126 / 1920 * 100vw);
    padding-top: calc(60 / 1920 * 100vw);
}

.head .nav.pc {
    /* Add navigation styles for desktop here */
}

.head .nav ul {
    /* Add styles for the <ul> element here */
}

.head .nav ul li {
    /* Add styles for list items here */
    float: left;
    position: relative;
    margin-right: calc(103 / 1920 * 100vw);
}

.head .nav ul li h2.h2tit {
    /* Add styles for the headings within list items here */
}

.head .nav ul li a {
    /* Add styles for the links within list items here */
    font-size: calc(30 / 1920 * 100vw);
    font-family: AkzidenzGroteskBQ;
    font-weight: normal;
    color: #FFFFFF;
    display: block;
    line-height: 1;
}

/* "Connect" Button Styles */
.head .more {
    /* Add styles for the "Connect" button here */
    width: calc(264 / 1920 * 100vw);
    line-height: calc(83 / 1920 * 100vw);
    float: right;
    margin-top: calc(33 / 1920 * 100vw);
    margin-right: calc(38 / 1920 * 100vw);
    background: url(../images/more.png) no-repeat center center;
    background-size: 100%;
    text-align: center;
    font-size: calc(30 / 1920 * 100vw);
    font-family: AkzidenzGroteskBQ;
    font-weight: normal;
    color: #000000;
}

/* Section1 Styles */
.section1 {
    /* Add styles for section1 here */
    position: relative;
   /* background: url(../images/bg1.png) no-repeat center center;*/
    background-size: cover;
   
}

/* Image Box Styles */
.section1 .imgbox1 {
    /* Add styles for imgbox1 here */
    position: absolute;
    width: 120vw;
    left: -10vw;
    top: 0;
}

.section1 .imgbox1 img {
    /* Add styles for the image inside imgbox1 here */
    width: 100%;
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
}

.section1 .left {
    /* Add styles for the left column here */
    position: relative;
    z-index: 4;
    /* float:left;*/
    padding-top: calc(293 / 1920 * 100vw);
}

/* Image Box Styles for Left Column */
.section1 .left .imgbox2 {
    /* Add styles for imgbox2 here */
    text-align: right;
    padding-right: calc(55 / 1920 * 100vw);
}

.section1 .left .imgbox2 img {
    width: calc(188 / 1920 * 100vw);
}

/* Section1 Styles */
.section1 .left .con {
    width: calc(686 / 1920 * 100vw);
}

.section1 .left .imgbox3 img {
    width: calc(655 / 1920 * 100vw);
    margin-top: calc(-79 / 1920 * 100vw);
}

.section1 .left .imgbox3 {
    /* Add styles for imgbox3 here */
}

/* Description Styles */
.section1 .dec {
    /* Add styles for the description here */
    font-size: calc(29 / 1920 * 100vw);
    font-family: AkzidenzGroteskBQ;
    font-weight: normal;
    color: #FFFFFF;
    transform: rotate(-5deg) skewX(-10deg);
    line-height: 1.6;
    transform-origin: left;
    padding-left: calc(68 / 1920 * 100vw);
    letter-spacing: calc(1 / 1920 * 100vw);
}

/* Link Styles */
.section1 .link {
    /* Add styles for the links container here */
    font-size: 0;
    padding-top: calc(30 / 1920 * 100vw);
    padding-left: calc(41 / 1920 * 100vw);
}

.section1 .link a {
    /* Add styles for the links inside the container here */
    display: inline-block;
}

.section1 .link a img {
    /* Add styles for the images inside the links here */
    width: calc(118 / 1920 * 100vw);
}

/* Right Column Styles */
.section1 .right {
    /* Add styles for the right column here */
}

/* Image Box Styles for Right Column */
.section1 .right .imgbox4 img {
    /* Add styles for imgbox4 here */
    width: calc(500 / 1920 * 100vw);
    position: absolute;
    right: calc(340 / 1920 * 100vw);
    top: calc(324 / 1920 * 100vw);
    z-index: 4;
}
    .section5 .content1:after{
        content:"";
        display:table;
        clear:both;
    }

.section1 .right .imgbox5 img {
    /* Add styles for imgbox5 here */
    position: absolute;
    right: 0;
    top: 0;
    width: calc(1210 / 1920 * 100vw);
    animation-duration: 4s;
}

/* Section2 Styles */
.section2 {
    /* Add styles for section2 here */
}

/* Wrapper Styles */
.section2 .wrap {
    position: relative;
}

/* Left Column Styles */
.section2 .left {
    width: calc(782 / 1920 * 100vw);
}

/* Title Styles */
.section2 .title {
    /* Add styles for the title here */
    background: url(../images/titbg1.png) no-repeat left bottom;
    padding-bottom: calc(32 / 1920 * 100vw);
	padding-top: calc(132 / 1920 * 100vw);
    background-size: auto calc(24 / 1920 * 100vw);
}

.section2 .title img {
    /* Add styles for the image inside the title here */
    height: calc(92 / 1920 * 100vw);
}

/* Description Styles */
.section2 .dec {
    /* Add styles for the description here */
    font-size: calc(24 / 1920 * 100vw);
    font-family: AkzidenzGroteskBQ;
    font-weight: normal;
    color: #FFFFFF;
    line-height: 1.5;
    letter-spacing: calc(1 / 1920 * 100vw);
    padding-top: calc(55 / 1920 * 100vw);
}

.section2 .dec p {
    /* Add styles for the paragraphs inside the description here */
    padding-bottom: calc(30 / 1920 * 100vw);
}

/* Right Column Styles */
.section2 .right {
    /* Add styles for the right column here */
    position: absolute;
    right: 0;
    top: 0;
    width: calc(480 / 1920 * 100vw);
}

/* Image Styles */
.section2 .right img.ani1 {
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.section2 .right img.ani2 {
    width: calc(304 / 1920 * 100vw);
    margin: auto;
    display: block;
    z-index: 4;
    position: relative;
    margin-top: calc(48 / 1920 * 100vw);
}

.section2 .right img.ani3 {
    position: absolute;
    left: calc(133 / 1920 * 100vw);
    top: calc(93 / 1920 * 100vw);
    z-index: 6;
    width: calc(414 / 1920 * 100vw);
}

/* Section3 Styles */
.section3 {
    /* Add styles for section3 here */
    padding-top: calc(200 / 1920 * 100vw);
}

/* Wrapper Styles */
.section3 .wrap {
    /* No additional styles for .wrap in Section3 */
}

/* Title Styles */
.section3 .title {
    /* Add styles for the title here */
}

.section3 .title img {
    /* Add styles for the image inside the title here */
    width: calc(1071 / 1920 * 100vw);
}

/* Description Styles */
.section3 .dec {
    font-size: calc(24 / 1920 * 100vw);
    font-family: AkzidenzGroteskBQ;
    font-weight: normal;
    color: #FFFFFF;
    line-height: 1.5;
    letter-spacing: calc(1 / 1920 * 100vw);
    width: calc(1086 / 1920 * 100vw);
    max-width: 100%;
    margin-top: calc(-76 / 1920 * 100vw);
    margin-bottom: calc(76 / 1920 * 100vw);
}

/* List Styles */
.section3 .list {
    /* Add styles for the list here */
}

.section3 .list ul {
}

.section3 .list li {
    height: calc(439 / 1920 * 100vw);
    background: linear-gradient(255deg, #07030e, #29144e);
    border: calc(1 / 1920 * 100vw) solid #000000;
    border-radius: calc(65 / 1920 * 100vw);
    position: relative;
    margin-bottom: calc(37 / 1920 * 100vw);
}

/* Image Box Styles */
.section3 .imgbox {
    /* Add styles for the image box here */
    position: absolute;
    top: 50%;
    left: 2%;
    -o-transform: translate(0%,-50%);
    -webkit-transform: translate(0%,-50%);
    -moz-transform: translate(0%,-50%);
    -ms-transform: translate(0%,-50%);
    transform: translate(0%,-50%);
}

.section3 .imgbox img {
    /* Add styles for the images inside imgbox here */
    width: calc(320 / 1920 * 100vw);
/*    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);*/
}


.section3 .imgbox .ani1_1{
width: calc(295 / 1920 * 100vw);
}
.section3 .imgbox .ani1_2{  
width: calc(163 / 1920 * 100vw);   
position: absolute;
bottom: 0;
}


.section3 .imgbox .ani2_1{width: calc(321 / 1920 * 100vw);}
.section3 .imgbox .ani2_2{width: calc(71/ 1920 * 100vw);position: absolute;/* bottom: 0; */left: calc(41/ 1920 * 100vw);top: calc(151/ 1920 * 100vw);}
.section3 .imgbox .ani2_3{width: calc(184 / 1920 * 100vw);position: absolute;bottom: 0;right: calc(-61/ 1920 * 100vw);}




.section3 .imgbox .ani4_1{
    width: calc(300 / 1920 * 100vw);
}
.section3 .imgbox .ani4_2{
    width: calc(80 / 1920 * 100vw);
    position: absolute;
    right: calc(10 / 1920 * 100vw);
    top: calc(191 / 1920 * 100vw);
}




/* Text Styles */
.section3 .text {
    text-align: 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%);
    text-transform: uppercase;
}

.section3 .text .title {
    /* Add styles for the title inside text here */
    font-size: calc(51 / 1920 * 100vw);
    font-family: AkzidenzGroteskBQ;
    font-weight: bold;
    color: #FFFFFF;
}

.section3 .text .dec {
    /* Add styles for the description inside text here */
    margin: 0;
    width: 100%;
    letter-spacing: 1px;
}

/* "Enter" Link Styles */
.section3 .more {
    width: calc(179 / 1920 * 100vw);
    height: calc(70 / 1920 * 100vw);
    text-align: center;
    line-height: calc(49 / 1920 * 100vw);
    position: absolute;
    background: url(../images/enter.png) no-repeat center center;
    background-size: 100%;
    font-size: calc(26 / 1920 * 100vw);
    font-family: AkzidenzGroteskBQ;
    font-weight: normal;
    color: #000000;
    text-transform: uppercase;
    position: absolute;
    top: 50%;
    right: calc(8 / 1920 * 100vw);
    -o-transform: translate(0%,-50%);
    -webkit-transform: translate(0%,-50%);
    -moz-transform: translate(0%,-50%);
    -ms-transform: translate(0%,-50%);
    transform: translate(0%,-50%);
}

/* Section4 Styles */
.section4 {
    /* Add styles for section4 here */
}

/* Wrapper Styles */
.section4 .wrap {
    /* Add styles for the wrapper in section4 here */
}

/* Title Styles */
.section4 .wrap > .title {
    text-align: center;
    margin-top: calc(86 / 1920 * 100vw);
}

.section4 .title .center {
    position: relative;
    display: inline-block;
}

.section4 .title img.title {
    /* Add styles for the image inside the title here */
    width: calc(446 / 1920 * 100vw);
}

.section4 .title img.hand {
    /* Add styles for the hand image inside the title here */
    width: calc(165 / 1920 * 100vw);
    position: absolute;
    left: calc(-72 / 1920 * 100vw);
    top: calc(44 / 1920 * 100vw);
}

/* Content Styles */
.section4 .content {
    /* Add styles for the content in section4 here */
}

/* Subtitle Styles */
.section4 .title1 {
    /* Add styles for the subtitle here */
}

.section4 .title1 img {
    /* Add styles for the image inside the subtitle here */
    width: calc(504 / 1920 * 100vw);
    margin-top: calc(120 / 1920 * 100vw);
}

/* Description Styles */
.section4 .dec {
    font-size: calc(24 / 1920 * 100vw);
    font-family: AkzidenzGroteskBQ;
    font-weight: normal;
    color: #FFFFFF;
    padding-top: calc(19 / 1920 * 100vw);
    margin-bottom: calc(24 / 1920 * 100vw);
    letter-spacing: calc(1 / 1920 * 100vw);
}

/* Detail Styles */
.section4 .detail {
    position: relative;
}

/* Animation Styles */
.section4 .ani1,.section4 .ani2 {
    /* Add styles for animations in section4 here */
}

.section4 .detail + .dec {
    text-align: center;
}

.section4 .ani1 img {
    width: calc(648 / 1920 * 100vw);
    position: absolute;
    right: 0;
    top: 0;
}

/* Animation Styles */
.section4 .ani2 img {
    /* Add styles for the animated images inside the animation containers here */
    position: absolute;
    bottom: calc(-50 / 1920 * 100vw);
    width: calc(300 / 1920 * 100vw);
    left: 0;
}

/* Number Styles */
.section4 .num {
    /* Add styles for the number containers here */
    float: left;
    width: calc(174 / 1920 * 100vw);
    text-align: center;
}

.section4 .num img {
    /* Add styles for the number images inside the number containers here */
    height: calc(67 / 1920 * 100vw);
    margin-top: calc(36 / 1920 * 100vw);
}

/* Title Styles within Detail */
.section4 .tit {
    /* Add styles for the titles within the detail section here */
    font-size: calc(25 / 1920 * 100vw);
    font-family: AkzidenzGroteskBQ;
    font-weight: normal;
    color: #000000;
    line-height: calc(134 / 1920 * 100vw);
    font-weight: bold;
    font-style: italic;
}

/* Adjustments for List Items */
.section4 li:nth-child(2) {
  /*  margin-left: calc(172 / 1920 * 100vw);*/
}

.section4 li:nth-child(3) {
  /*  margin-left: calc(345 / 1920 * 100vw);*/
}

/* Bullet List Styles */
.section4 ul {
}

.section4 li {
    width: calc(694 / 1920 * 100vw);
    height: calc(131 / 1920 * 100vw);
    background: url(../images/titbg.png) no-repeat center center;
    background-size: 100% 100%;
    margin-bottom: calc(63 / 1920 * 100vw);
}

/* Section5 Styles */
.section5 {
    /* Add styles for section5 here */
}

/* Wrapper Styles */
.section5 .wrap {
    /* Add styles for the wrapper in section5 here */
}

/* Title Styles */
.section5 .title {
    /* Add styles for the title here */
    text-align: center;
    /* margin-top: calc(41 / 1920 * 100vw); */
}

.section5 .title .center {
    position: relative;
    display: inline-block;
    margin-top: calc(41 / 1920 * 100vw);
}

.section5 .title img.title {
    /* Add styles for the image inside the title here */
    width: calc(446 / 1920 * 100vw);
}

.section5 .title img.hand {
    /* Add styles for the hand image inside the title here */
    width: calc(165 / 1920 * 100vw);
    position: absolute;
    left: calc(-72 / 1920 * 100vw);
    top: calc(44 / 1920 * 100vw);
}

/* Content1 Styles */
.section5 .content1 {
    margin-top: calc(180 / 1920 * 100vw);
    position: relative;
    /* zoom:1; */
    /* overflow: hidden; */
    margin-bottom: calc(120 / 1920 * 100vw);
}

/* Left Column in Content1 Styles */
.section5 .content1 .left {
    /* Add styles for the left column here */
    float: left;
}

/* Title2 Styles */
.section5 .content1 .title2 {
    /* Add styles for the title2 here */
}

.section5 .content1 .title2 img {
    /* Add styles for the image inside title2 here */
    height: calc(82 / 1920 * 100vw);
	 margin-bottom: 20px;
}

.section5 .content1 .dec1 b {
    color: #FFC74F;
    font-weight: normal;
}

/* Description1 Styles */
.section5 .content1 .dec1 {
    font-size: calc(61 / 1920 * 100vw);
    font-family: AkzidenzGroteskBQ;
    font-weight: normal;
    color: #FFFFFF;
    line-height: calc(82 / 1920 * 100vw);
    background: linear-gradient(-255deg,#6949d3,#9e4d9c);
    border: calc(1 / 1920 * 100vw) solid #000000;
    border-radius: calc(40 / 1920 * 100vw);
    padding-left: calc(56 / 1920 * 100vw);
    margin-top: calc(108 / 1920 * 100vw);
    margin-bottom: calc(30 / 1920 * 100vw);
}

/* Description2 Styles */
.section5 .content1 .dec2 {
    background: linear-gradient(-255deg,#6949d3,#9e4d9c);
    border: calc(1 / 1920 * 100vw) solid #000000;
    border-radius: calc(55 / 1920 * 100vw);
    font-size: calc(33 / 1920 * 100vw);
    font-family: AkzidenzGroteskBQ;
    font-weight: normal;
    color: #FFFFFF;
    padding: calc(27 / 1920 * 100vw) 0;
    padding-bottom: 0;
}

.section5 .content1 .right {
    width: calc(490 / 1920 * 100vw);
    float: right;
}

.section5 .content1 .right img {
    width: 100%;
}

/* Left Column in Content2 Styles */
.section5 .content2 .left {
    /* Add styles for the left column here */
}

/* Title2 Styles */
.section5 .content2 {
    position: relative;
}

.section5 .content2 .title2 {
    /* Add styles for the title2 here */
    margin-bottom: calc(125 / 1920 * 100vw);
}

.section5 .content2 .title2 img {
    /* Add styles for the image inside title2 here */
    height: calc(84 / 1920 * 100vw);
}

.section5 .content2 .dec2 p:after {
    width: calc(24 / 1920 * 100vw);
    height: calc(24 / 1920 * 100vw);
    background: #FF9600;
    border: calc(1 / 1920 * 100vw) solid #000000;
    border-radius: calc(50 / 1920 * 100vw);
    position: absolute;
    border-radius: 4300px;
    content: "";
    left: calc(56 / 1920 * 100vw);
    top: calc(17 / 1920 * 100vw);
}

/* Description2 Styles */
.section5 .content2 .dec2 p {
    width: calc(601 / 1920 * 100vw);
    line-height: calc(63 / 1920 * 100vw);
    background: linear-gradient(-255deg,#6949d3,#9e4d9c);
    border: calc(1 / 1920 * 100vw) solid #000000;
    border-radius: calc(31 / 1920 * 100vw);
    font-size: calc(33 / 1920 * 100vw);
    font-family: AkzidenzGroteskBQ;
    font-weight: normal;
    color: #FFFFFF;
    position: relative;
    padding-left: calc(90 / 1920 * 100vw);
    margin-bottom: calc(20 / 1920 * 100vw);
}

.section5 .content2 .right .ani1 {
    display: block;
    margin: auto;
    position: relative;
    z-index: 4;
    margin-top: calc(120 / 1920 * 100vw);
    width: calc(370 / 1920 * 100vw);
}

.section5 .content2 .right .ani2 {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
}

/* Right Column in Content2 Styles */
.section5 .content2 .right {
    /* Add styles for the right column here */
    position: absolute;
    right: 0;
    top: 0;
    width: calc(710 / 1920 * 100vw);
    top: calc(61 / 1920 * 100vw);
}

/* Content3 Styles */
.section5 .content3 {
    /* Add styles for content3 here */
}

/* Title2 Styles in Content3 */
.section5 .content3 .title2 {
    padding-top: calc(120 / 1920 * 100vw);
}

.section5 .content3 .title2 img {
    height: calc(100 / 1920 * 100vw);
}

/* List Styles */
.section5 .list {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* List Header Styles */
.section5 .list .hd {
    flex: 1.2;
}

.section5 .list .hd .tit b {
    font-size: calc(150 / 1920 * 100vw);
}

.section5 .list .hd .tit {
    /* Add styles for the title within the header here */
    font-size: calc(100 / 1920 * 100vw);
    font-family: AkzidenzGroteskBQ;
    font-weight: normal;
    color: #FFFFFF;
    line-height: 1;
    display: none;
}

/* List Right Column Styles */
.section5 .list .ri img {
    width: calc(553 / 1920 * 100vw);
    display: block;
    margin: auto;
}

.section5 .list .ri {
    /* Add styles for the right column in the list here */
    width: calc(853 / 1920 * 100vw);
}

/* Swiper Container Styles */
.section5 .list .ri .swiper-container {
    /* Add styles for the swiper container here */
}

/* Swiper Slide Styles */
.section5 .list .ri .swiper-slide {
    /* Add styles for the swiper slide here */
}

/* Swiper Navigation Styles */
.section5 .list .ri .swiper-button-next,.section5 .list .ri .swiper-button-prev {
    /* Add styles for the swiper navigation buttons here */
    width: calc(229 / 1920 * 100vw);
    height: calc(200 / 1920 * 100vw);
    margin-top: calc(-100 / 1920 * 100vw);
}

.section5 .list .ri .swiper-button-prev {
    background: url(../images/left.png) no-repeat center center;
    background-size: 100%;
    left: 0;
}

.section5 .list .ri .swiper-button-next {
    background: url(../images/right.png) no-repeat center center;
    background-size: 100%;
    right: 0;
}

/* Section6 Styles */
.section6 {
    /* Add styles for section6 here */
}

/* Wrapper Styles */
.section6 .wrap {
    /* Add styles for the wrapper in section6 here */
}

/* Title Styles in Section6 */
.section6 .title {
    /* Add styles for the title here */
    padding-top: calc(80 / 1920 * 100vw);
}

.section6 .title img {
    /* Add styles for the image inside the title here */
    height: calc(100 / 1920 * 100vw);
    display: block;
    margin: auto;
}

/* List Styles in Section6 */
.section6 .list {
    margin-top: calc(76 / 1920 * 100vw);
    padding-left: 4vw;
    padding-right: 4vw;
    position: relative;
}
.section6 .list ul:after{
    display: table;
    clear: both;
    content: "";
}
.section6 .list:before{
       
}

.section6 .list i em{
     
    display:block;
    height:100%;
  /*  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;*/
    background: url(../images/i1.png) no-repeat center center;
    background-size: calc(225 / 1920 * 100vw) ;
}
.section6 .list i{
     height: calc(350 / 1920 * 100vw);
     width: calc(350 / 1920 * 100vw);
     position: absolute;
     left: 0px;
     top: 0px;
     /*    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;*/
     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%);
       background: url(../images/i2.png) no-repeat center center;
     background-size: 100%;
}
.section6 .list i em{
    
}
/* List Items Styles in Section6 */
.section6 .list ul:after {
    display: table;
    clear: both;
    content: "";
}

.section6 .list li:nth-child(2n) {
    float: right;
}

.section6 .list li:nth-child(3),.section6 .list li:nth-child(4) {
    margin-bottom: 0px;
}

.section6 .list li:nth-child(3) {
    clear: left;
}

.section6 .list li {
    width: calc(451 / 1920 * 100vw);
    height: calc(809 / 1920 * 100vw);
    float: left;
    background: url(../images/li.png) no-repeat center center;
    background-size: 100%;
    margin-bottom: calc(152 / 1920 * 100vw);
    z-index: 4;
    position: relative;
}

/* Title in List Item Styles */
.section6 .list .tit {
    font-size: calc(84 / 1920 * 100vw);
    font-family: AkzidenzGroteskBQ;
    font-weight: normal;
    color: #FFFFFF;
    line-height: 1;
    background: linear-gradient(225deg, #ffffff 0%, #898695 25.1708984375%, #978d90 49.1943359375%, #e9e6f1 72.4365234375%, #7a7783 99.0234375%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-left: calc(72 / 1920 * 100vw);
    margin-top: calc(100 / 1920 * 100vw);
    display: inline-block;
    font-weight: bold;
}

/* Description in List Item Styles */
.section6 .list .dec {
    font-size: calc(24 / 1920 * 100vw);
    font-family: AkzidenzGroteskBQ;
    font-weight: normal;
    color: #FFFFFF;
    line-height: calc(28 / 1920 * 100vw);
    background: url(../images/dec.png) no-repeat calc(46 / 1920 * 100vw) top;
    margin-top: calc(64 / 1920 * 100vw);
    padding-left: calc(74 / 1920 * 100vw);
    padding-right: calc(32 / 1920 * 100vw);
}

/* Individual Phase Styles */
.section6 .list li:nth-child(1) .tit {
    /* Add specific styles for Phase 1 title here */
}

.section6 .list li:nth-child(2) .tit {
    /* Add specific styles for Phase 2 title here */
}

.section6 .list li:nth-child(3) .tit {
    /* Add specific styles for Phase 3 title here */
}

.section6 .list li:nth-child(4) .tit {
    /* Add specific styles for Phase 4 title here */
}

/* Phase-Specific Description Styles */
.section6 .list li .dec p {
    /* Add specific styles for Phase 1 description here */
    padding-bottom: calc(27 / 1920 * 100vw);
}

.section6 .list li:nth-child(2) .dec {
    /* Add specific styles for Phase 2 description here */
}

.section6 .list li:nth-child(3) .dec {
    /* Add specific styles for Phase 3 description here */
}

.section6 .list li:nth-child(4) .dec {
    /* Add specific styles for Phase 4 description here */
}

/* Section7 Styles */
.section7 {
    /* Add styles for section7 here */
    padding-top: calc(107 / 1920 * 100vw);
    text-align: center;
}

/* Wrapper Styles in Section7 */
.section7 .wrap {
    /* Add styles for the wrapper in section7 here */
}

/* Title Styles in Section7 */
.section7 .title {
    /* Add styles for the title here */
}

.section7 .title img {
    /* Add styles for the image inside the title here */
    margin-bottom: calc(31 / 1920 * 100vw);
    height: calc(82 / 1920 * 100vw);
}

/* Image Box Styles in Section7 */
.section7 .imgbox {
    /* Add styles for the image box here */
}

.section7 .imgbox img {
    /* Add styles for the image inside the image box here */
    width: 100%;
    margin-bottom: calc(38 / 1920 * 100vw);
}

/* List Styles in Section7 */
.section7 .list {
    zoom:1;overflow: hidden;
}

/* List Items Styles in Section7 */
.section7 .list ul {
    /* Add styles for the ul element inside list items here */
}

.section7 .list li {
    float: left;
    width: 20%;
    height: calc(105 / 1920 * 100vw);
    position: relative;
}

.section7 .list li img {
    /* Add styles for the images inside list items here */
    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: 74%;
    height: 100%;
    object-fit: contain;
}

/* Content Styles in Section7 */
.section7 .content {
    /* Add styles for the content here */
    position: relative;
    padding-top: 0;
    margin-top: calc(154 / 1920 * 100vw);
    padding-bottom: calc(97 / 1920 * 100vw);
}

/* Left Column in Content Styles in Section7 */
.section7 .content .left {
    /* Add styles for the left column here */
    width: calc(473 / 1920 * 100vw);
    position: relative;
    z-index: 4;
    float: left;
    margin-top: 0;
}

/* Animation Styles in Section7 */
.section7 .content .ani1 {
    /* Add styles for the animation containers here */
    width: 100%;
}

.section7 .content .ani2 {
    width: calc(113 / 1920 * 100vw);
    position: absolute;
    left: calc(215 / 1920 * 100vw);
    z-index: 4;
    top: calc(134 / 1920 * 100vw);
}

.section7 .content .ani2 img {
    /* Add styles for animated images inside animation containers here */
}

/* Right Column in Content Styles in Section7 */
.section7 .content .right {
    /* Add styles for the right column here */
    float: right;
    width: calc(758 / 1920 * 100vw);
    position: relative;
    z-index: 55;
}

.section7 .content .dec a {
    /* position:relative;*/
    /* z-index:55;*/
    display: inline-block;
    color: #FFBC00;
}

/* Description Styles in Section7 */
.section7 .content .dec {
    /* Add styles for the description here */
    line-height: calc(88 / 1920 * 100vw);
    background: linear-gradient(90deg,#6d4ed7,#5429aa);
    border: 1px solid #000000;
    border-radius: calc(40 / 1920 * 100vw);
    font-size: calc(31 / 1920 * 100vw);
    font-family: AkzidenzGroteskBQ;
    font-weight: normal;
    color: #FFFFFF;
}

/* Link Styles in Section7 */
.section7 .content .link {
    /* Add styles for the link container here */
    text-align: center;
    padding-top: calc(30 / 1920 * 100vw);
    z-index: 4;
    position: relative;
}

.section7 .content .link a {
    /* Add styles for the links inside the container here */
}

.section7 .content .link img {
    /* Add styles for the images inside the links here */
    width: calc(118 / 1920 * 100vw);
}

.section7 .content .pb {
}

.section7 .content .pb img {
    position: absolute;
    width: 100%;
    bottom: 0px;
    left: 0px;
    z-index: 3;
}

/* Footer Styles */
.footer {
	
	background: url(../images/78.png) no-repeat center 0;
	background-size: cover;
	background-size: 100% 100%;
	
	
	
   /* background: linear-gradient(90deg,#b95c9a,#5834bd);*/
    border: 1px solid #000000;
    box-shadow: 0px 0px 60px 0px rgba(255,255,255,0.26);
    position: relative;
    padding-bottom: calc(154 / 1920 * 100vw);
}

/* Wrapper Styles in Footer */
.footer .wrap {
    /* Add styles for the wrapper in the footer here */
}

/* Left Column in Footer Styles */
.footer .left {
    float: left;
    padding-top: calc(73 / 1920 * 100vw);
}

/* Right Column in Footer Styles */
.footer .right {
    right: calc(64 / 1920 * 100vw);
    position: absolute;
    top: calc(99 / 1920 * 100vw);
    width: calc(192 / 1920 * 100vw);
    text-align: center;
}

/* Footer Item Styles */
.footer .item {
    margin-right: calc(133 / 1920 * 100vw);
    float: left;
}

/* Footer Item Heading Styles */
.footer h2 {
    font-size: calc(30 / 1920 * 100vw);
    font-family: MiSans;
    font-weight: bold;
    color: #FFFFFF;
}

/* Footer Item List Styles */
.footer dl {
    padding-top: calc(40 / 1920 * 100vw);
}

.footer dd {
    /* Add styles for list items here */
}

/* Footer Item Link Styles */
.footer dd a {
    display: block;
    font-size: calc(31 / 1920 * 100vw);
    font-family: AkzidenzGroteskBQ;
    font-weight: normal;
    color: #FFFFFF;
    line-height: calc(48 / 1920 * 100vw);
}

/* Footer Animation Styles */
.footer .ani1 {
    /* Add styles for animations here */
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
}

.footer .ani2 {
    position: relative;
    z-index: 4;
    margin: auto;
    display: block;
    margin-top: calc(28 / 1920 * 100vw);
    width: calc(135 / 1920 * 100vw);
}

.footer .ani1 img,.footer .ani2 img {
    /* Add styles for animated images inside animations here */
}

.wrap {
    margin-left: calc(304 / 1920 * 100vw);
    margin-right: calc(304 / 1920 * 100vw);
}

@font-face {
    font-family: 'AkzidenzGroteskBQ';
    src: url('../fonts/AkzidenzGrotesk-LightCond.otf');
}

.wrap:after {
    content: "";
    display: table;
    clear: both;
}
.section5 .content1 .dec2 p:nth-child(1):after {}

.section5 .content1 .dec2 p:nth-child(2):after {
  background: #B31D00;
}

.section5 .content1 .dec2 p:nth-child(3):after {
  background: #00B373;
}

.section5 .content1 .dec2 p:nth-child(4):after {
  background: #0049B3;
}

.section5 .content1 .dec2 p:nth-child(5):after {
  background: #FF9600;
}

.section5 .content1 .dec2 p:after {
  width: calc(24 / 1920 * 100vw);
  height: calc(24 / 1920 * 100vw);
  background: #FF00F4;
  border: calc(1 / 1920 * 100vw) solid #000000;
  border-radius: calc(50 / 1920 * 100vw);
  position: absolute;
  border-radius: 4300px;
  content: "";
  left: calc(56 / 1920 * 100vw);
  top: calc(5 / 1920 * 100vw);
}

.section5 .content1 .dec2 p {
  padding-left: calc(90 / 1920 * 100vw);
  position: relative;
  margin-bottom: calc(27 / 1920 * 100vw);
}

.index > *{
    position: relative;
    z-index: 5;
}
.index{
    overflow: hidden;
    position: relative;
}
/*
.bgImg{position: absolute;width: 100%;height: 100%;background: url(../images/ibg.png) no-repeat center center;background-size: 100%;z-index: 3;left: 0px;top: 0px;}

*/



.slideMenu{position: fixed;background: url(../images/slideMenu.png) no-repeat center center;background-size: cover;width: 80vw;height: 100vh;z-index: 9999;top: 0px;-webkit-transition:all 0.4s;-o-transition:all 0.4s;-moz-transition:all 0.4s;-ms-transition:all 0.4s;transition:all 0.4s;left: -80vw;}
.slideMenu.current{
    left: 0px;
}
.slideMenu .logo{
    
}
.slideMenu .logo img{
    
margin-top: calc(68/992*100vw);
    
margin-left: calc(68/992*100vw);
    
height: calc(117/992*100vw);
}
.slideMenu ul{
    
padding-left: calc(104/992*100vw);
    
padding-top: calc(180/992*100vw);
    
padding-right: calc(104/992*100vw);
}
.slideMenu ul li{
    
}
.slideMenu ul li.current a{
    background: rgb(255 255 255 / 10%);
    border: 1px solid #000000;
    border-radius: 0px 44px 44px 0px;
    color: #6f40ff;
}
.slideMenu ul li a{
    
display: block;
    
font-size: calc(72/992*100vw);
    
font-family: AkzidenzGroteskBQ;
    
font-weight: normal;
    
color: #FFFFFF;
    
line-height: calc(181/992*100vw);
    
padding-left: calc(68/992*100vw);
}
.slideMenu ul li:nth-child(1) a{
    
background: url(../images/arr.png) no-repeat 26vw center;
    
background-size: auto 25%;
}
.slideMenu .link{
    
padding-left: 15vw;
    
padding-top: 4vw;
}
.slideMenu .link img{
    
width: calc(157/992*100vw);
}
.switch{
    background: url(../images/menu.png) no-repeat center center;
    background-size: 100%;
    width: calc(100/992*100vw);
    height: calc(100/992*100vw);
    position: fixed;
    right: 10px;
    top: 4px;
    z-index: 9999;

-webkit-transition:all 0.4s;
-o-transition:all 0.4s;
-moz-transition:all 0.4s;
-ms-transition:all 0.4s;
transition:all 0.4s;

}
.switch.current{
    background: url(../images/close.png) no-repeat center center;
    background-size: 100%;
    top: calc(107/992*100vw);
    width: calc(41/992*100vw);
    height: calc(41/992*100vw);
    background-size: 100%;
    right: calc(86/992*100vw);
    top: calc(107/992*100vw);
    z-index: 999999;
}

.alertmodel{

-webkit-backdrop-filter: saturate(180%) blur(20px);
    backdrop-filter: saturate(180%) blur(20px);
    background-color: rgba(0, 0, 0, 0.35);
position: fixed;
z-index: 99999999;
width: 100%;
height: 100%;
left: 0px;
top: 0px;
display: none;
}
.alertmodel .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(1030/1920*100vw);
    
height: calc(735/1920*100vw);
    
background: url(../images/tc.png) no-repeat center center;
    
background-size: cover;
}
.alertmodel .logo{
    
padding-top: calc(83/1920*100vw);
    
padding-left: calc(77/1920*100vw);
}
.alertmodel .logo img{
    
height: calc(68/1920*100vw);
}
.alertmodel .title{
    
font-size: calc(99/1920*100vw);
    
text-align: center;
    
color: #fff;
    
line-height: 1;
    
text-transform: uppercase;
    
font-weight: bold;
    
margin-top: calc(106/1920*100vw);
    
margin-bottom: calc(152/1920*100vw);
}
.alertmodel .return{
    
}
.alertmodel .return img{
    
display: block;
    
margin: auto;
    
height: calc(137/1920*100vw);
}




.index *{
    opacity: 1;
}







.scalcAni{

animation: scalc 2s forwards;
animation-timing-function: ease-out;
}

@keyframes scalc{
    0%{
-webkit-transform: scale(3.05,3.05);
-o-transform: scale(3.05,3.05);
-moz-transform:  scale(3.05,3.05);
-ms-transform: scale(3.05,3.05);
transform:  scale(3.05,3.05);
    }
    100%{
-webkit-transform: none;
-o-transform: none;
-moz-transform: none;
-ms-transform: none;
transform: none; 
    }
}


@keyframes fly{
    0%{
transform: translate(50%, 50%);
    }
    100%{

transform: none; 
    }
}


.fly{
animation:fly 2s infinite;
    -webkit-animation:fly 2s infinite; /* Safari 和 Chrome */
}


@keyframes fly2{
    0%{
        transform: translate(-50%, 50%);
    }
    100%{
        transform: none; 
    }
}
.fly2{
animation:fly2 2s infinite;
-webkit-animation:fly2 2s infinite; /* Safari 和 Chrome */
}




.section4 li *,
.head *,
.head .more,
.section3 .more,
.section5 .title *,
.section4 .wrap > .title *{

-webkit-transition:all 0.4s;
-o-transition:all 0.4s;
-moz-transition:all 0.4s;
-ms-transition:all 0.4s;
transition:all 0.4s;

}
.section5 .title:hover img.hand,
.section4 .title:hover img.hand{

transform: scale(1.05,1.05) rotate(5deg);
}
.section3 .more:hover{
transform: scale(1.05,1.05) translate(0%,-60%) ;
}
.head .more:hover{
transform: scale(1.05,1.05) translate(0%,-10px) ;
}

.section4 li:hover *{
transform:  translate(0%,-10px) ; 
}
.head .nav ul li a:hover{
    opacity: .7;
}


@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);
}
}

.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);
}

.fullscreen{

position: fixed;

z-index: 7777;

background: #000;

left: 0;

top: 0px;
}
.centerbox{

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: 66;
}
.centerbox a{
    
    display: inline-block;
padding: 0px 30px;
    
line-height: 40px;
    
background: #000;
    
color: #fff;
    
border-radius: 8px;
    
letter-spacing: 3px;
}
.a-enter-vr{
    display: none;
}















.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);
}





@keyframes move2 {
    0%{
      transform: translate(-50%, 0px);
    }
    100%{
      transform: translate(0%, 0px);
    }
}

.moveAni2 {
  animation: move2 1s infinite;
}




@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%, 20px);
    }
    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 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(-7px) translateX(5px) rotate(-1deg);
        -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;
    }
}


.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;
}

#canvas_banner{
    position: absolute !important;
    /* object-fit: cover; */
    z-index: 5;
}
.theBall-outer{
    display: none;
}


  body {

background-image: url(../images/bj.jpg);
  
background-size: 100% ;
background-repeat: no-repeat;
	  
	  }