.wow {
    opacity: 0;
}

.mobile {
    width: 100%;
}

.mobile-inner {
    margin-right: auto;
    margin-left: auto;
    background-color: #fff;
    position: relative;
}

img {
    width: 100%;
    ;
}

.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%402x.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:PingFangSC-Regular,PingFang SC,"Microsoft YaHei","Arial";*/
}

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: 'AkzidenzGroteskBQ' ! important; */
    font-family: 'Rockwell' !important;
    /* color: #fff;
    background: #000000; */
    background: #fff;
    color: #000;
    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;
}

.links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 50px;
}

.btn {
    display: block;
    background: #ed010a;
    text-align: center;
    font-size: 25px;

    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    padding: 16px 32px;
    transition: all 0.4s ease;
}

.btn:hover {
    background: #002868;
    border-color: #fff;
    transform: scale(1.03);
}

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: url(../images/bg.png) no-repeat center center; */
    z-index: 99999;
}

.loadingfa {
    width: 200px;
    height: 200px;
    position: absolute;
    left: 50%;
    margin-top: -100px;
    margin-left: -100px;
    top: 50%;
}

html {
    -webkit-overflow-scrolling: touch;
    -webkit-tap-highlight-color: none;
}

html {
    -webkit-tap-highlight-color: transparent;
}

body {
    -webkit-overflow-scrolling: touch;
}

* {
    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)
    }
}

@font-face {
    font-family: 'AkzidenzGroteskBQ';
    src: url('../fonts/AkzidenzGrotesk-ExtraBoldCond.otf')
}

@font-face {
    font-family: 'BalooBhaina';
    src: url('../fonts/Baloo-Bhaina.ttf')
}

@font-face {
    font-family: 'Impact';
    src: url('../fonts/impact.ttf')
}

@font-face {
    font-family: 'Rockwell';
    src: url('../fonts/Rockwell.woff2')
}

.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;
}

.head {
    position: absolute;
    left: 0;
    top: calc(10 / 1920 * 100vw);
    z-index: 44;
    width: 100%;
    top: calc(93 / 1920 * 100vw);
    padding-left: calc(232 / 1920 * 100vw);
    padding-right: calc(232 / 1920 * 100vw);
}

.head .left {
    float: left;
}

.head .left a {
    width: calc(149 / 1920 * 100vw);
    line-height: calc(63 / 1920 * 100vw);
    background: #17305C;
    border: calc(2 / 1920 * 100vw) solid #000000;
    border-radius: calc(4 / 1920 * 100vw);
    display: block;
    text-align: center;
    font-size: calc(33 / 1920 * 100vw);

    font-weight: 400;
    color: #FFFFFF;
}

.head .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%);
}

.head .center a {}

.head .center img {
    width: calc(250 / 1920 * 100vw);
}

.head .right {
    float: right;
}

.head .right a {
    width: calc(209 / 1920 * 100vw);
    line-height: calc(63 / 1920 * 100vw);
    background: #17305C;
    border: calc(2 / 1920 * 100vw) solid #000000;
    border-radius: calc(4 / 1920 * 100vw);
    display: block;
    text-align: center;
    font-size: calc(33 / 1920 * 100vw);
    font-weight: 400;
    color: #FFFFFF;
    text-transform: uppercase;
}

.index {
    line-height: 1;
    overflow-x: hidden;
}

.sec1 {
    /* background: url(../images/bg.png) no-repeat center center; */
    background-size: cover;
    position: relative;
    overflow: hidden;
    text-align: center;
    padding-top: calc(100/1920*100vw);
}

.sec1 .title1 {
    font-size: calc(180/1920*100vw);
    font-weight: normal;
    color: #002868;
    text-transform: uppercase;

}

.sec1 .title2 {
    font-size: calc(46/1920*100vw);
    font-weight: 400;
    padding-top: calc(20/1920*100vw);
    line-height: 1.5;
    margin-bottom: calc(118/1920*100vw);
    text-shadow: 0px 1px 0px #fff;
    max-width: 85%;
    margin-inline: auto;
}

.sec1 .bottomani {
    display: flex;
    padding-left: calc(117/1920*100vw);
    margin-bottom: calc(118/1920*100vw);
}

.sec1 .bottomani * {
    margin-left: calc(-131/1920*100vw);
}

.sec1 .bottomani .ani1 {
    width: calc(419/1920*100vw);
    margin: 0;
    position: relative;
    z-index: 4;
}

.sec1 .bottomani .ani2 {
    width: calc(438/1920*100vw);
}

.sec1 .bottomani .ani3 {
    width: calc(385/1920*100vw);
    position: relative;
    z-index: 4;
}

.sec1 .bottomani .ani4 {
    width: calc(400/1920*100vw);
}

.sec1 .bottomani .ani5 {
    width: calc(456/1920*100vw);
}

.sec2:after {
    content: "";
    display: table;
    clear: both;
}

.sec2 {
    background: #FFA41D;
    border: calc(6/1920*100vw) solid #000000;
    border-left: none;
    border-right: none;
    padding-top: calc(136/1920*100vw);
    padding-left: calc(248/1920*100vw);
    position: relative;
    padding-bottom: calc(286/1920*100vw);
    z-index: 6;
}

.sec2 .left {
    font-size: calc(200/1920*100vw);
    font-weight: normal;
    color: #FFFFFF;
    text-shadow: 0px calc(9/1920*100vw) 0px #000000;
    -webkit-text-stroke: calc(4/1920*100vw) #000000;
    text-stroke: calc(4/1920*100vw) #000000;
    float: left;

}

.sec2 .ani2 {
    position: absolute;
    right: calc(172/1920*100vw);
    bottom: calc(-150/1920*100vw);
    width: calc(406/1920*100vw);
}

.sec2 .ani1 {
    position: absolute;
    left: calc(84/1920*100vw);
    bottom: 0px;
    width: calc(300/1920*100vw);
}

.sec2 .right {
    font-size: calc(30/1920*100vw);
    font-weight: 400;
    color: #FFFFFF;
    line-height: calc(48/1920*100vw);
    /* float: left;
    margin-left: calc(142/1920*100vw); */
    width: calc(700/1920*100vw);
    margin: 0 auto;
    text-align: center;
}

.sec2 .right p {}

.sec2 .sec2 .right img.ani1 {}

.sec2 .sec2 .right img.ani2 {}

.sec3 {
    zoom: 1;
    overflow: hidden;
    border-bottom: calc(6/1920*100vw) solid #000000;
}

.sec3 .item:nth-child(2) {
    border-right: none;
    border-left: calc(3/1920*100vw) solid #000000;
    background: #19587c;
}

.sec3 .item {
    float: left;
    width: 50%;
    background: #197c29;
    height: calc(986/1920*100vw);
    border-right: calc(3/1920*100vw) solid #000000;
    position: relative;
    padding-top: calc(166/1920*100vw);
    padding-left: calc(200/1920*100vw);
}

.sec3 .item .title {
    font-size: calc(109/1920*100vw);

    font-weight: normal;
    color: #FFFFFF;
    text-shadow: 0px calc(9/1920*100vw) 0px #000000;
    -webkit-text-stroke: calc(4/1920*100vw) #000000;
    text-stroke: calc(4/1920*100vw) #000000;
    text-transform: uppercase;
    letter-spacing: calc(-10/1920*100vw);
}

.sec3 .item:nth-child(2) .dec {}

.sec3 .item .dec {
    font-size: calc(30/1920*100vw);
    font-weight: 400;
    color: #FFFFFF;
    line-height: 1;
    padding-top: calc(94/1920*100vw);
    padding-bottom: calc(58/1920*100vw);
}

.moreBase:after {
    content: "";
    position: absolute;
    width: calc(79/1920*100vw);
    height: calc(79/1920*100vw);
    background: #ed010a;
    border: calc(3/1920*100vw) solid #000000;
    border-radius: 50%;
    left: calc(6/1920*100vw);
    top: 0;
    box-sizing: border-box;
}

.moreBase:before {
    content: "";
    position: absolute;
    width: calc(79/1920*100vw);
    height: calc(79/1920*100vw);
    background: url(../images/more.png) no-repeat center center;
    background-size: 100%;
    left: 0;
    top: 0;
    z-index: 5;
}

.moreBase {
    display: inline-block;
    padding-left: calc(116/1920*100vw);
    font-size: calc(40/1920*100vw);

    font-weight: 400;
    color: #fff;
    position: relative;
    line-height: calc(79/1920*100vw);
}

.sec3 .item:nth-child(1) img.ani1 {
    width: calc(308/1920*100vw);
}

.sec3 .item:nth-child(2) img.ani1 {
    width: calc(325/1920*100vw);
}

.sec3 .item img.ani1 {
    position: absolute;
    right: calc(42/1920*100vw);
    bottom: 40px;
}

.sec3 .item img.ani2 {}

.sec4 {
    padding-bottom: calc(128/1920*100vw);
    /* background: url(../images/bg.png) no-repeat center 0; */
    background-size: cover;
    background-size: 100% 100%;
}

.sec4 .title {
    font-size: calc(120/1920*100vw);
    color: #002868;
    text-align: center;
    text-transform: uppercase;

    padding-top: calc(104/1920*100vw);
    padding-bottom: calc(44/1920*100vw);
}

.sec4 .dec {
    width: calc(1229/1920*100vw);
    font-size: calc(30/1920*100vw);
    font-weight: 400;
    color: #19587c;
    margin: auto;
    max-width: 100%;
    text-align: center;
}

.sec4 .anis {}

.sec4 .anis img.ani1 {
    display: block;
    margin: auto;
    width: calc(1008/1920*100vw);
}

.sec4 .imgs {
    zoom: 1;
    overflow: hidden;
    margin-top: calc(29/1920*100vw);
    margin-left: calc(235/1920*100vw);
    margin-right: calc(235/1920*100vw);
}

.sec4 .imgs .left {
    width: calc(542/1920*100vw);
    height: calc(731/1920*100vw);
    border: calc(4/1920*100vw) solid #000000;
    border-radius: calc(27/1920*100vw);
    float: left;
    position: relative;
    overflow: hidden;
}

.sec4 .imgs .left img {
    width: calc(400/1920*100vw);
}

.sec4 .imgs .left .center {
    position: absolute;
    bottom: 0%;
    left: 50%;
    -o-transform: translate(-50%, 0%);
    -webkit-transform: translate(-50%, 0%);
    -moz-transform: translate(-50%, 0%);
    -ms-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
}

.sec4 .imgs .right {
    float: right;
    width: calc(864/1920*100vw);
    height: calc(731/1920*100vw);
    border: calc(4/1920*100vw) solid #000000;
    border-radius: calc(27/1920*100vw);
    padding: calc(34/1920*100vw) calc(31/1920*100vw);
    position: relative;
}

.sec4 .imgs .right .decs {
    font-size: calc(60/1920*100vw);
    color: #002868;
    text-transform: uppercase;
}

.sec4 .imgs .right .decs2 {
    font-size: calc(33/1920*100vw);
    font-weight: 400;
    color: #000;
    line-height: calc(48/1920*100vw);
    margin-top: calc(40/1920*100vw);
    width: calc(507/1920*100vw);
}

.sec4 .imgs .right .more {
    position: absolute;
    left: calc(31/1920*100vw);
    right: calc(31/1920*100vw);
    bottom: calc(32/1920*100vw);
}

.sec4 .imgs .right .more img.ani {
    position: absolute;
    right: calc(78/1920*100vw);
    width: calc(209/1920*100vw);
    bottom: calc(136/1920*100vw);
}

.sec4 .imgs .right .more a {
    display: block;
    width: calc(797/1920*100vw);
    background: #ed010a;
    line-height: calc(129/1920*100vw);
    text-align: center;
    font-size: calc(41/1920*100vw);

    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    position: relative;
    z-index: 4;
}

.sec5 .picMarquee-left {
    overflow: hidden;
    position: relative;
}

.sec5 .picMarquee-left .bd {}

.sec5 .picMarquee-left .bd ul {
    overflow: hidden;
    zoom: 1;
}

.sec5 .picMarquee-left .bd ul li {
    margin: 0 calc(20/1920*100vw);
    float: left;
    _display: inline;
    overflow: hidden;
    text-align: center;
}

.sec5 {
    background: #002868;
    border-bottom: calc(6/1920*100vw) solid #ed010a;
}

.sec5 .txt {
    font-size: calc(75/1920*100vw);
    font-weight: 400;
    color: #FFF;
    padding: calc(60/1920*100vw) 0;
    white-space: nowrap;
}

.sec6 {
    padding: 0 calc(232/1920*100vw);
    padding-top: calc(101/1920*100vw);
    padding-bottom: calc(145/1920*100vw);
    /* background: url(../images/bg.png) no-repeat center 0; */
    background-size: cover;
    background-size: 100% 100%;
}

.sec6 .block1:after {
    content: "";
    display: table;
    clear: both
}

.sec6 .block1 {
    /* zoom:1; */
    /* overflow: hidden; */
}

.sec6 .block1 .item:nth-child(2n) {
    float: right;
    /* background: radial-gradient(circle at 0% 90%, #472B16, #1A2835 50%, #19181E 80%, #472B16 100%); */
}

.sec6 .block1 .item {
    width: calc(698/1920*100vw);
    height: calc(731/1920*100vw);
    /* background: radial-gradient(circle at 0% 90%, #472B16, #1A2835 50%, #19181E 80%, #472B16 100%); */
    border: calc(4/1920*100vw) solid #000000;
    border-radius: calc(27/1920*100vw);
    float: left;
    margin-bottom: calc(63/1920*100vw);
    position: relative;
    padding-top: calc(55/1920*100vw);
    padding-left: calc(55/1920*100vw);
    overflow: hidden;
}

.sec6 .block1 .item .tit {
    font-size: calc(109/1920*100vw);

    font-weight: normal;
    color: #FFFFFF;
    text-shadow: 0px calc(9/1920*100vw) 0px #000000;
    -webkit-text-stroke: calc(4/1920*100vw) #000000;
    text-stroke: calc(4/1920*100vw) #000000;
    text-transform: uppercase;

}

.sec6 .block1 .item .dec {
    font-size: calc(30/1920*100vw);
    font-weight: 400;
    color: #fff;
    margin-top: calc(30/1920*100vw);
    padding-right: calc(95/1920*100vw);
    margin-bottom: calc(124/1920*100vw);
}

.sec6 .block1 .item:nth-child(1) img.ani {
    width: calc(327/1920*100vw);
    z-index: 1;
}

.sec6 .block1 .item:nth-child(2) img.ani {
    width: calc(247/1920*100vw);
    z-index: 1;
}

.sec6 .block1 .item .moreBase {
    z-index: 99;
}

.sec6 .block1 .item img.ani {
    position: absolute;
    bottom: 0;
    right: calc(24/1920*100vw);
}

.sec6 .block2 {
    height: calc(704/1920*100vw);
    /* background: radial-gradient(circle at 0% 90%, #472B16, #1A2835 50%, #19181E 80%, #472B16 100%); */
    background: #fff;
    border: calc(4/1920*100vw) solid #000000;
    border-radius: calc(27/1920*100vw);
    position: relative;
    padding-top: calc(63/1920*100vw);
    padding-left: calc(52/1920*100vw);
    overflow: hidden;
}

.sec6 .block2 .right img {
    position: absolute;
    right: calc(65/1920*100vw);
    bottom: 0;
    width: calc(617/1920*100vw);
}

.sec6 .block2 .left .tit {
    font-size: calc(109/1920*100vw);
    /* color: #FFFFFF; */
    color: #002868;
    text-transform: uppercase;
}

.sec6 .block2 .left .dec {
    font-size: calc(30/1920*100vw);
    /* color: #fff; */
    line-height: calc(30/1920*100vw);
    padding-top: calc(31/1920*100vw);
    padding-bottom: calc(53/1920*100vw);
    width: calc(621/1920*100vw);
    font-weight: 400;
}

.sec6 .block2 .left .more {
    width: calc(370/1920*100vw);
    line-height: calc(112/1920*100vw);
    background: #ed010a;
    display: block;
    text-align: center;
    font-size: calc(41/1920*100vw);
    color: #fff;
    text-transform: uppercase;
}

.sec7 {
    background: #ed010a;
    padding-left: calc(232/1920*100vw);
    padding-bottom: calc(70/1920*100vw);
}

.sec7 .block1 {
    display: flex;
    padding-top: calc(130/1920*100vw);
    padding-bottom: calc(00/1920*100vw);
    justify-content: space-between;
    padding-right: calc(300/1920*100vw);
}

.sec7 .block1 .title {
    font-size: calc(167/1920*100vw);

    font-weight: normal;
    color: #FFFFFF;
    text-shadow: 0px calc(9/1920*100vw) 0px #000000;
    -webkit-text-stroke: calc(4/1920*100vw) #000000;
    text-stroke: calc(4/1920*100vw) #000000;
    text-transform: uppercase;

    white-space: nowrap;
}

.sec7 .block1 .ri img.ani1 {
    width: calc(436/1920*100vw);
}

.sec7 .block1 .ri img.ani2 {
    width: calc(290/1920*100vw);
}

.sec7 .block2 {}

.sec7 .block2 .swiper-container {}

.sec7 .block2 .swiper-wrapper {}

.sec7 .block2 .swiper-slide {}

.sec7 .block2 .content {
    height: calc(486/1920*100vw);
    background: #FFFFFF;
    border: calc(2/1920*100vw) solid #000000;
    border-radius: calc(27/1920*100vw);
    padding: calc(15/1920*100vw);
    position: relative;
}

.sec7 .block2 .content .imgbox {
    position: relative;
    overflow: hidden;
}

.sec7 .block2 .content .imgbox img {
    width: 100%;
}

.sec7 .block2 .content .imgbox .tit {
    /* width:134px;*/
    background: #ed010a;
    border: calc(2/1920*100vw) solid #000000;
    border-radius: calc(14/1920*100vw);
    top: calc(12/1920*100vw);
    left: calc(13/1920*100vw);
    position: absolute;
    text-align: center;
    line-height: calc(50/1920*100vw);
    font-size: calc(30/1920*100vw);
    color: #fff;
    padding: calc(0/1920*100vw) calc(20/1920*100vw);
    text-transform: uppercase;
}

.sec7 .block2 .content .con {}

.sec7 .block2 .content .con .title {
    font-size: calc(16/1920*100vw);

    font-weight: 300;
    color: #fff;
    line-height: calc(22/1920*100vw);
    display: block;
    margin-top: calc(15/1920*100vw);
}

.sec7 .block2 .content .con .bottom {
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
    display: flex;
    padding-left: calc(36/1920*100vw);
    align-items: center;
}

.sec7 .block2 .content .con .bottom img {
    width: calc(105/1920*100vw);
}

.sec7 .block2 .content .con .bottom .rir {
    padding-left: calc(16/1920*100vw);
}

.sec7 .block2 .content .con .bottom .rir .ti {
    font-size: calc(24/1920*100vw);
    font-weight: 400;
    color: #fff;
}

.sec7 .block2 .content .con .bottom .rir .dec {
    font-size: calc(18/1920*100vw);
    font-family: MiSans;
    font-weight: 400;
    color: #fff;
    padding-top: calc(10/1920*100vw);
}

.sec7 .block2 .content .con .bottom .morebase2:after {
    content: "";
    position: absolute;
    width: calc(79/1920*100vw);
    height: calc(79/1920*100vw);
    background: #ed010a;
    border: calc(3/1920*100vw) solid #000000;
    border-radius: 50%;
    left: calc(6/1920*100vw);
    top: 0;
    box-sizing: border-box;
}

.sec7 .block2 .content .con .bottom .morebase2:before {
    content: "";
    position: absolute;
    /* background: url(../images/more.png) no-repeat center center; */
    background-size: 100%;
    width: 100%;
    height: 100%;
    z-index: 5;
}

.sec7 .block2 .content .con .bottom .morebase2 {
    position: absolute;
    width: calc(79/1920*100vw);
    height: calc(79/1920*100vw);
    background-size: 100%;
    z-index: 5;
    right: calc(14/1920*100vw);
    bottom: calc(12/1920*100vw);
}

.sec8 {
    background: #0b490b;
    border: calc(10/1920*100vw) solid;
    border-image: linear-gradient(90deg, #61D6E4, #F8A5F9) calc(10/1920*100vw) calc(10/1920*100vw);
    margin-left: calc(-10/1920*100vw);
    margin-right: calc(-10/1920*100vw);
}

.sec8 .txt {
    line-height: 1;
    padding: calc(20/1920*100vw) 0;
    padding-bottom: calc(10/1920*100vw);
}

.sec8 .txt p {
    font-size: calc(24/1920*100vw);
    font-weight: 400;
    color: #FFFFFF;
    line-height: calc(48/1920*100vw);
    background: linear-gradient(0deg, #C035C4 0%, #6C8BDB 48.92578125%, #19E4F8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sec8 .picMarquee-left {
    overflow: hidden;
    position: relative;
}

.sec8 .picMarquee-left .bd {}

.sec8 .picMarquee-left .bd ul {
    overflow: hidden;
    zoom: 1;
}

.sec8 .picMarquee-left .bd ul li {
    margin: 0 calc(40/1920*100vw);
    float: left;
    _display: inline;
    overflow: hidden;
    text-align: center;
}

.footer {
    /* background: #002868; */
    padding-left: calc(146/1920*100vw);
    zoom: 1;
    overflow: hidden;
    padding-right: calc(160/1920*100vw);
    padding-top: calc(5/1920*100vw);
    padding-bottom: calc(0/1920*100vw);
}

.footer .logo {
    float: left;
    margin-top: calc(31/1920*100vw);
}

.footer .logo img {
    width: calc(150/1920*100vw);
}

.footer .link {
    float: left;
    padding-left: calc(135/1920*100vw);
}

.footer .link .it {
    float: left;
    margin-right: calc(80/1920*100vw);
}

.footer .link .it a {
    font-size: calc(65/1920*100vw);

    font-weight: 400;
    color: #FFFFFF;
    line-height: calc(130/1920*100vw);
    display: block;
}

.footer .ri {
    float: right;
}

.footer .ri .tit {
    font-size: calc(37/1920*100vw);
    color: #FFFFFF;
    padding-top: calc(39/1920*100vw);
}

.footer .ri .link {
    padding-left: calc(42/1920*100vw);
    padding-top: calc(20/1920*100vw);
    margin-top: 10px;
}

.footer .ri .link a img {
    width: calc(182/1920*100vw);
    margin-left: calc(-91/1920*100vw);
}













.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);
}





@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%, 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 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;
    }
}


.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;
}





.index * {
    opacity: 1;
}


.footer,
.footer *,
.moreBase:after,
.moreBase:before,
.head *,
.head,
.index,
.index *:not(.picList) {

    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s;

}

.head *,
.head*:not(.picList) {

    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s;
    z-index: 99;
}

.current .head {
    top: 3%;
}


.moreBase:hover:before {
    transform: rotate(-20deg);
}

.moreBase:hover:after {
    left: 10px;
}

.footer .link .it a:hover {
    opacity: .5;
}

.sec7 {
    overflow: hidden;
}

.w-100 {
    width: 100%;
    ;
}

.hero-img {
    width: 600px;
}

.mission {
    line-height: 1.4;
    font-size: 2.5rem;
}

@media(max-width:768px) {
    .img-white {
        background: #fff;
    }
}