.wow {
    opacity: 0;
}

.mobile {
    width: 100%;
}

.mobile-inner {
    margin-right: auto;
    margin-left: auto;
    background-color: ;
    position: relative;
}

.mobile-inner img {
}

.mobile-inner p {
    color: #676767;
    line-height: 25px;
    font-size: 16px;
    padding-bottom: 30px;
    padding-right: 30px;
    padding-left: 30px;
    margin: 0px;
}

.mobile-inner-header {
    width: 100%;
    height: 50px;
    position: relative;
    top: 0px;
    z-index: 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;
    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: 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: "Microsoft YaHei" ! important;
    color: #000000;
    background: #fff;
    margin: 0 auto;
    padding: 0px;
    padding-top: calc(80 / 1920 * 100vw);
}

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

* {
    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;
}

.head {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 555;
    padding: 0 calc(170 / 1920 * 100vw);
    height: calc(80 / 1920 * 100vw);
}

.head .wrap {
}

.head .logo {
    float: left;
    padding-top: calc(12 / 1920 * 100vw);
    position: relative;
    z-index: 4;
}

.head .logo a {
}

.head .logo img {
    width: calc(200 / 1920 * 100vw);
}

.head .nav {
    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%);
    /* white-space:nowrap;*/
}

.head .nav ul {
    white-space: nowrap;
    font-size: 0;
}

.head .nav ul li {
    display: inline-block;
    margin: 0 calc(30 / 1920 * 100vw);
}

.head .nav ul li .h2tit {
}

.head .nav ul li .h2tit a {
    font-size: calc(20 / 1920 * 100vw);
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #959595;
    display: block;
}

.head .more {
    width: calc(185 / 1920 * 100vw);
    height: calc(57 / 1920 * 100vw);
    float: right;
    margin-top: calc(10 / 1920 * 100vw);
    position: relative;
    z-index: 4;
    text-align: center;
    line-height: calc(57 / 1920 * 100vw);
    background: url(../images/btn.png) no-repeat center center;
    background-size: 100% 100%;
    font-size: calc(22 / 1920 * 100vw);
    font-family: Microsoft YaHei;
    font-weight: bold;
    color: #000000;
    text-transform: uppercase;
}

.section1 {
    position: relative;
    overflow: hidden;
}

.section1 .bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url(../images/bg1.png) no-repeat center center;
    background-size: cover;
}

.section1 .stitle {
    position: absolute;
    left: calc(118 / 1920 * 100vw);
    z-index: 4;
    position: absolute;
    top: 50%;
    -o-transform: translate(0%,-50%);
    -webkit-transform: translate(0%,-50%);
    -moz-transform: translate(0%,-50%);
    -ms-transform: translate(0%,-50%);
    transform: translate(0%,-50%);
}

.section1 .stitle img {
    width: calc(27 / 1920 * 100vw);
}

.wrap {
    padding-left: calc(256 / 1920 * 100vw);
}

.section1 .content {
    position: relative;
    z-index: 65;
    padding-bottom: calc(120 / 1920 * 100vw);
}

.section1 .title1 {
    padding-top: calc(175 / 1920 * 100vw);
    display: inline-block;
}

.section1 .title1 img {
    height: calc(139 / 1920 * 100vw);
}

.section1 .title2 p:nth-child(1) img {
    height: calc(96 / 1920 * 100vw);
}

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

.section1 .title2 {
}

.section1 .title2 p {
margin-top:30px;
}

.section1 .dec {
    font-size: calc(18 / 1920 * 100vw);
    font-family: Microsoft YaHei;
    font-weight: 300;
    color: #000000;
    line-height: calc(32 / 1920 * 100vw);
    margin-left: calc(80 / 1920 * 100vw);
    width: calc(511 / 1920 * 100vw);
    margin-top: calc(20 / 1920 * 100vw);
    margin-bottom: calc(60 / 1920 * 100vw);
}

.section1 .link {
    margin-left: calc(80 / 1920 * 100vw);
}

.section1 .link a {
}

.section1 .link a img {
    height: calc(35 / 1920 * 100vw);
    margin-right: calc(10 / 1920 * 100vw);
}

.section2 {
    background: #ffffff;
    position: relative;
    padding-bottom: calc(40 / 1920 * 100vw);
}

.section2 .anis {
}

.section2 .anis img.ani1 {
    width: calc(306 / 1920 * 100vw);
    right: calc(188 / 1920 * 100vw);
    top: calc(-678 / 1920 * 100vw);
    z-index: 4;
}

.section2 .anis img.ani2 {
    width: calc(375 / 1920 * 100vw);
    right: calc(230 / 1920 * 100vw);
    top: calc(-369 / 1920 * 100vw);
}

.section2 .anis img {
    position: absolute;
}

.section2 .wrap {
}

.section2 .content {
}

.section2 .title {
    font-size: calc(64 / 1920 * 100vw);
    font-family: zihunbiantaoti;
    font-weight: bold;
    color: #000000;
    letter-spacing: calc(8 / 1920 * 100vw);
    line-height: 1;
    padding-top: calc(130 / 1920 * 100vw);
}

.txtModel {
    display: inline-block;
    position: relative;
}

.section2 .title p {
    /* display:block;*/
}

.txtModel {
    display: inline-block;
    position: relative;
}

.txtModel i {
    position: absolute;
    width: calc(269 / 1920 * 100vw);
    height: calc(120 / 1920 * 100vw);
    background: url(../images/xiantiao.png) no-repeat center center;
    background-size: 100%;
    position: absolute;
    top: 50%;
    right: 0;
    -o-transform: translate(0%,-50%);
    -webkit-transform: translate(0%,-50%);
    -moz-transform: translate(0%,-50%);
    -ms-transform: translate(0%,-50%);
    transform: translate(0%,-50%);
}

.section2 .content .dec {
    font-size: calc(18 / 1920 * 100vw);
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #000000;
    line-height: calc(26 / 1920 * 100vw);
    width: calc(844 / 1920 * 100vw);
    margin-top: calc(49 / 1920 * 100vw);
    margin-bottom: calc(30 / 1920 * 100vw);
}

.section2 .list {
    padding-left: calc(95 / 1920 * 100vw);
}

.section2 .swiper-container {
}

.section2 .swiper-wrapper {
}

.section2 .swiper-slide {
}

.section2 .imgbox {
    overflow: hidden;
    position: relative;
}

.section2 .imgbox img {
}

.section2 .imgbox img.default {
    width: 100%;
}

.section2 .imgbox img.user {
    width: calc(90 / 1920 * 100vw);
    position: absolute;
    left: calc(15 / 1920 * 100vw);
    bottom: calc(15 / 1920 * 100vw);
    border-radius: calc(100 / 1920 * 100vw);
    height: calc(90 / 1920 * 100vw);
    object-fit: cover;
    z-index: 4;
}

.section2 .list .tit {
    font-size: calc(32 / 1920 * 100vw);
    font-family: zihunbiantaoti;
    font-weight: 400;
    color: #000000;
    padding-top: calc(50 / 1920 * 100vw);
    padding-bottom: calc(25 / 1920 * 100vw);
}

.section2 .list .dec {
    font-size: calc(18 / 1920 * 100vw);
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #000000;
    line-height: calc(24 / 1920 * 100vw);
}

.section2 .more {
    width: calc(185 / 1920 * 100vw);
    height: calc(57 / 1920 * 100vw);
    float: right;
    margin-top: calc(10 / 1920 * 100vw);
    position: relative;
    z-index: 4;
    text-align: center;
    line-height: calc(57 / 1920 * 100vw);
    background: url(../images/btn.png) no-repeat center center;
    background-size: 100% 100%;
    font-size: calc(22 / 1920 * 100vw);
    font-family: Microsoft YaHei;
    font-weight: bold;
    color: #000000;
    text-transform: uppercase;
    margin: auto;
    float: none;
    display: block;
    margin-top: calc(40 / 1920 * 100vw);
}

.section3 .bg {
    width: calc(1774 / 1920 * 100vw);
    height: calc(1819 / 1920 * 100vw);
    background: url(../images/bg2.png) no-repeat center center;
    background-size: cover;
    position: absolute;
    right: 0;
    top: 0;
    filter: grayscale(100%);
}

.section3 {
    position: relative;
    overflow: hidden;
    background: #ffffff;
}

.section3 .wrap {
}

.section3 .title {
    font-size: calc(64 / 1920 * 100vw);
    font-family: zihunbiantaoti;
    font-weight: bold;
    color: #000000;
    letter-spacing: calc(8 / 1920 * 100vw);
    line-height: 1;
    padding-top: calc(130 / 1920 * 100vw);
}

.section3 .title p {
}

.section3 .title .txtModel {
}

.section3 .title .txtModel i {
}

.section3 .dec {
    font-size: calc(18 / 1920 * 100vw);
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #000000;
    line-height: calc(26 / 1920 * 100vw);
    width: calc(650 / 1920 * 100vw);
    margin-top: calc(49 / 1920 * 100vw);
}

.section3 .shing i {
    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(1416 / 1920 * 100vw);
    height: calc(1273 / 1920 * 100vw);
}

.section3 .shing i:after {
    background: url(../images/shing.png) no-repeat center center;
    background-size: 100%;
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    animation: 4s linear 0s normal forwards infinite rotate;
    -webkit-animation: 4s linear 0s normal forwards infinite rotate;
    -moz-animation: 4s linear 0s normal forwards infinite rotate;
    -o-animation: 4s linear 0s normal forwards infinite rotate;
}

.section3 .shing {
    position: relative;
    z-index: 4;
    text-align: center;
    margin-top: calc(-179 / 1920 * 100vw);
}

.section3 .shing img {
    position: relative;
    z-index: 4;
    width: calc(900 / 1920 * 100vw);
}

.section3 .list {
    zoom:1;overflow: hidden;
    padding-left: calc(132 / 1920 * 100vw);
    z-index: 33;
    position: relative;
    padding-right: calc(100 / 1920 * 100vw);
    margin-top: calc(-300 / 1920 * 100vw);
    /* padding-bottom:calc(86 / 1920 * 100vw);*/
}

.section3 .item:nth-child(2n) {
    float: right;
}

.section3 .item {
    margin-bottom: calc(66 / 1920 * 100vw);
    float: left;
    width: calc(800 / 1920 * 100vw);
    cursor: pointer;
}

.section3 .item:nth-child(3) {
    clear: left;
}

.section3 .item:nth-child(5) {
    clear: both;
    float: right;
}

.section3 .item:nth-child(4) {
    margin-top: calc(-70 / 1920 * 100vw);
}

.section3 .item:nth-child(1) {
    margin-top: calc(92 / 1920 * 100vw);
}

.section3 .item .tit {
    zoom:1;overflow: hidden;
}

.section3 .item .num {
    font-size: calc(97 / 1920 * 100vw);
    font-family: zihunbiantaoti;
    font-weight: 400;
    color: #000000;
    float: left;
    line-height: calc(88 / 1920 * 100vw);
    margin-right: calc(20 / 1920 * 100vw);
    letter-spacing: calc(-9 / 1920 * 100vw);
}

.section3 .item .ti {
    font-size: calc(32 / 1920 * 100vw);
    font-family: zihunbiantaoti;
    font-weight: 400;
    color: #000000;
    background: url(../images/biaoti.png) no-repeat center center;
    background-size: 100%;
    width: calc(683 / 1920 * 100vw);
    height: calc(88 / 1920 * 100vw);
    float: left;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: calc(103 / 1920 * 100vw);
}

.section3 .item .desc {
    /* height:calc(176 / 1920 * 100vw);*/
    background: rgb(61 61 61 / 60%);
    font-size: calc(18 / 1920 * 100vw);
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #000000;
    line-height: calc(30 / 1920 * 100vw);
    padding: calc(20 / 1920 * 100vw);
    padding-bottom: calc(34 / 1920 * 100vw);
    margin-left: calc(174 / 1920 * 100vw);
    margin-top: calc(30 / 1920 * 100vw);
}

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

.section4 {
    position: relative;
    /* zoom:1;*/
    /* overflow:hidden;*/
    padding-bottom: calc(250 / 1920 * 100vw);
}

.section4 .wrap {
}

.section4 .left {
    float: left;
}

.section4 .left .title {
    font-size: calc(64 / 1920 * 100vw);
    font-family: zihunbiantaoti;
    font-weight: bold;
    color: #000000;
   /* letter-spacing: calc(8 / 1920 * 100vw);*/
    line-height: 1;
    /* padding-top:calc(130 / 1920 * 100vw);*/
}

.section4 .left .title p {
}

.section4 .left .title .txtModel {
}

.section4 .left .title .txtModel i {
}

.section4 .left .dec {
    font-size: calc(18 / 1920 * 100vw);
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #000000;
    line-height: calc(26 / 1920 * 100vw);
    width: calc(600 / 1920 * 100vw);
    padding-top: calc(91 / 1920 * 100vw);
}

.section4 .left .dec p {
    padding-bottom: calc(36 / 1920 * 100vw);
}

.section4 .left .title2 {
    font-size: calc(20 / 1920 * 100vw);
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #5F4203;
    padding-top: calc(15 / 1920 * 100vw);
    margin-bottom: calc(28 / 1920 * 100vw);
}

.section4 .left .dec2 {
    background: #323232;
    width: calc(573 / 1920 * 100vw);
    font-size: calc(18 / 1920 * 100vw);
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #FFFFFF;
    line-height: calc(26 / 1920 * 100vw);
    padding: calc(30 / 1920 * 100vw) calc(33 / 1920 * 100vw) calc(41 / 1920 * 100vw) calc(38 / 1920 * 100vw);
}

.section4 .left .dec2 p {
}

.section4 .right {
    float: right;
    /* position:relative;*/
}

.section4 .right .bg {
    position: absolute;
    right: 0;
    top: calc(149 / 1920 * 100vw);
    width: calc(616 / 1920 * 100vw);
    height: calc(861 / 1920 * 100vw);
    background: url(../images/bg3.png) no-repeat center center;
    background-size: cover;
    /* background-attachment:fixed;*/
    filter: grayscale(100%);
}

.section4 .right .ani1 {
    width: calc(391 / 1920 * 100vw);
    position: absolute;
    right: calc(403 / 1920 * 100vw);
    top: calc(148 / 1920 * 100vw);
    z-index: 4;
}

.section4 .right .ani2 {
    width: calc(333 / 1920 * 100vw);
    position: absolute;
    right: calc(546 / 1920 * 100vw);
    top: calc(206 / 1920 * 100vw);
}

.section4 .right .ani3 {
    width: calc(344 / 1920 * 100vw);
    position: absolute;
    right: calc(301 / 1920 * 100vw);
    top: calc(275 / 1920 * 100vw);
    z-index: 3;
}

.section5 {
    position: relative;
    margin-bottom: calc(130 / 1920 * 100vw);
}

.section5 .wrap {
}

.section5 .left {
}

.section6 .wrap {
}

.section6 .left {
}

.section5 .right {
}

.section5 .left .title {
    font-size: calc(64 / 1920 * 100vw);
    font-family: zihunbiantaoti;
    font-weight: bold;
    color: #000000;
   /* letter-spacing: calc(8 / 1920 * 100vw);*/
    line-height: 1;
}

.section5 .left .title p {
}

.section5 .left .title .txtModel {
}

.section5 .left .title .txtModel i {
}

.section5 .left .dec {
    width: calc(685 / 1920 * 100vw);
    font-size: calc(18 / 1920 * 100vw);
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #000000;
    line-height: calc(26 / 1920 * 100vw);
    margin-top: calc(60 / 1920 * 100vw);
}

.section5 .left .title2 {
    font-size: calc(20 / 1920 * 100vw);
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #5F4203;
    margin-top: calc(51 / 1920 * 100vw);
    margin-bottom: calc(30 / 1920 * 100vw);
}

.section5 .left .list {
}

.section5 .left .list .item {
    background: #323232;
    display: inline-block;
    align-items: center;
    width: auto;
    zoom:1;overflow: hidden;
    margin-bottom: calc(17 / 1920 * 100vw);
    padding: calc(30 / 1920 * 100vw) calc(80 / 1920 * 100vw) calc(30 / 1920 * 100vw) 0;
}

.section5 .left .list .item .icon {
    /* float:left;*/
    width: calc(101 / 1920 * 100vw);
    display: inline-block;
    vertical-align: middle;
    text-align: center;
}

.section5 .left .list .item .icon img {
    width: calc(58 / 1920 * 100vw);
}

.section5 .left .list .item .ri {
    font-size: calc(18 / 1920 * 100vw);
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #FFFFFF;
    line-height: calc(24 / 1920 * 100vw);
    display: inline-block;
    vertical-align: middle;
}

.section5 .right .bg {
    position: absolute;
    width: calc(709 / 1920 * 100vw);
    height: 100%;
    right: calc(78 / 1920 * 100vw);
    top: 0;
    background: url(../images/bg4.png) no-repeat center center;
    background-size: cover;
}

.section5 .right .ani {
    position: absolute;
    width: calc(524 / 1920 * 100vw);
    right: calc(167 / 1920 * 100vw);
    bottom: calc(-40 / 1920 * 100vw);
}

.section6 .left .title {
    font-size: calc(64 / 1920 * 100vw);
    font-family: zihunbiantaoti;
    font-weight: bold;
    color: #FFFFFF;
    letter-spacing: calc(8 / 1920 * 100vw);
    line-height: 1;
}

.section6 .left .title .txtModel {
}

.section6 {
    position: relative;
}

.section6 .left .title .txtModel i {
}

.section6 .left .list {
    margin-top: calc(88 / 1920 * 100vw);
}

.section6 .left .list ul {
}

.section6 .left .list ul li {
    position: relative;
    padding-left: calc(79 / 1920 * 100vw);
    cursor: pointer;
}

.section6 .left .list ul li:last-child:after {
    height: 0;
}

.section6 .left .list ul li:after {
    content: "";
    position: absolute;
    width: calc(17 / 1920 * 100vw);
    height: 100%;
    background: #2A2A2A;
    left: calc(10 / 1920 * 100vw);
    top: 0;
}

.section6 .left .list ul li .dot:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: url(../images/cur.png) no-repeat center center;
    background-size: 0;
    left: 0;
    top: 0px;
    opacity: 0;
    transition: all 0.4s;
}

.section6 .left .list ul li .dot {
    width: calc(38 / 1920 * 100vw);
    height: calc(38 / 1920 * 100vw);
    background: #494949;
    border-radius: 50%;
    left: 0;
    top: 0;
    position: absolute;
    z-index: 4;
}

.section6 .left .list ul li .con {
    padding-bottom: calc(42 / 1920 * 100vw);
    width: calc(549 / 1920 * 100vw);
}

.section6 .left .list ul li .con .time {
    font-size: calc(40 / 1920 * 100vw);
    font-family: zihunbiantaoti;
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: calc(9 / 1920 * 100vw);
    line-height: 1;
}

.section6 .left .list ul li .con .dec {
    background: #323232;
    font-size: calc(18 / 1920 * 100vw);
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #FFFFFF;
    line-height: calc(28 / 1920 * 100vw);
    padding: calc(29 / 1920 * 100vw) calc(30 / 1920 * 100vw) calc(24 / 1920 * 100vw) calc(25 / 1920 * 100vw);
}

.section6 .right {
}

.section6 .right .bg1 {
    width: calc(549 / 1920 * 100vw);
    height: calc(969 / 1920 * 100vw);
    background: url(../images/bg5.png) no-repeat center center;
    position: absolute;
    background-size: cover;
    right: calc(223 / 1920 * 100vw);
    top: calc(258 / 1920 * 100vw);
    z-index: 2;
}

.section6 .right .bg2 {
    width: calc(684 / 1920 * 100vw);
    height: calc(1186 / 1920 * 100vw);
    right: 0;
    top: calc(186 / 1920 * 100vw);
    position: absolute;
    background: url(../images/bg6.png) no-repeat center center;
    background-size: cover;
    filter: grayscale(100%);
}

.section6 .right .ani {
    position: absolute;
    width: calc(375 / 1920 * 100vw);
    right: calc(522 / 1920 * 100vw);
    bottom: calc(-29 / 1920 * 100vw);
    z-index: 3;
    filter: grayscale(100%);
}

.section7 {
    background: #fff /*url(../images/lx.png) no-repeat center bottom*/;
    background-size: cover;
}

.section7 .wrap {
    padding-right: calc(256 / 1920 * 100vw);
}

.section7 .title {
    font-size: calc(94 / 1920 * 100vw);
    font-family: zihunbiantaoti;
    font-weight: 400;
    color: #000;
    text-align: center;
    line-height: 1;
    padding-top: calc(138 / 1920 * 100vw);
    padding-bottom: calc(115 / 1920 * 100vw);
}

.section7 .list {
    zoom:1;overflow: hidden;
    text-align: center;
}

.section7 .list a {
    float: left;
    width: 20%;
    margin-bottom: calc(51 / 1920 * 100vw);
}

.section7 .list a img {
    height: calc(80 / 1920 * 100vw);
    object-fit: contain;
    width: 54%;
}

.section7 .infor {
    display: flex;
    justify-content: space-between;
    padding-bottom: calc(48 / 1920 * 100vw);
}

.section7 .infor .left {
}

.section7 .infor .left .txt {
    font-size: calc(40 / 1920 * 100vw);
    font-family: zihunbiantaoti;
    font-weight: 400;
    color: #000;
    position: relative;
    display: inline;
}

.section7 .infor .left .txt i {
    width: calc(249 / 1920 * 100vw);
    height: calc(109 / 1920 * 100vw);
    position: absolute;
    background: url(../images/xiantiao.png) no-repeat center center;
    background-size: 100%;
    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%);
}

.section7 .infor .left .link {
    padding-top: calc(15 / 1920 * 100vw);
}

.section7 .infor .left .link a {
}

.section7 .infor .left .link a img {
    height: calc(45 / 1920 * 100vw);
    margin-right: calc(12 / 1920 * 100vw);
}

.section7 .infor .right {
}

.section7 .infor .right .more {
    width: calc(278 / 1920 * 100vw);
    line-height: calc(87 / 1920 * 100vw);
    background: linear-gradient(-90deg,#414141,#010101);
    border-radius: calc(44 / 1920 * 100vw);
    display: block;
    text-align: center;
    font-size: calc(32 / 1920 * 100vw);
    font-family: zihunbiantaoti;
    font-weight: 400;
    color: #DAB25F;
}

.footer {
    background: #ffffff;
}

.footer .wrap {
    padding-right: calc(256 / 1920 * 100vw);
}

.footer .block1 {
    zoom:1;overflow: hidden;
    padding-top: calc(55 / 1920 * 100vw);
}

.footer .block1 .left {
    float: left;
}

.footer .block1 .left .item {
    float: left;
    margin-right: calc(154 / 1920 * 100vw);
}

.footer .block1 .left .item .tit {
    font-size: calc(32 / 1920 * 100vw);
    font-family: zihunbiantaoti;
    font-weight: 400;
    color: #FFFFFF;
}

.footer .block1 .left .item .link {
    padding-top: calc(15 / 1920 * 100vw);
}

.footer .block1 .left .item .link a {
    font-size: calc(20 / 1920 * 100vw);
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #999999;
    line-height: calc(48 / 1920 * 100vw);
    display: block;
}

.footer .block1 .right {
    float: right;
    text-align: center;
}

.footer .block1 .right .ewm img {
    width: calc(53 / 1920 * 100vw);
}

.footer .block1 .right .ewm {
    float: left;
    text-align: center;
    margin-left: calc(50 / 1920 * 100vw);
}

.footer .block1 .right .ewm .tit {
    font-size: calc(16 / 1920 * 100vw);
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #999999;
    padding-top: calc(12 / 1920 * 100vw);
}

.footer .block2 {
    font-size: calc(20 / 1920 * 100vw);
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #666666;
    text-align: center;
    padding-bottom: calc(16 / 1920 * 100vw);
}

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

.section3 .item:hover .num {
    color: #000000
}

.section3 .item:hover .ti {
    background: url(../images/biaoti2.png) no-repeat center center;
    background-size: 100%;
}

.section3 .item:hover .desc {
    background: rgb(93 57 5 / 60%);
}

.section6 .left .list ul li:hover .dec {
    background: rgb(93 57 5 / 60%);
}

.section6 .left .list ul li:hover .dot:after {
    opacity: 1;
    background-size: 130%
}

.head .nav ul li.current .h2tit a,.head .nav ul li:hover .h2tit a {
    color: #fff;
}

.section2 .imgbox:hover img.default {
    -webkit-transform: scale(1.05,1.05);
    -o-transform: scale(1.05,1.05);
    -moz-transform: scale(1.05,1.05);
    -ms-transform: scale(1.05,1.05);
    transform: scale(1.05,1.05);
}

@font-face {
    font-family: 'zihunbiantaoti';
    src: url('../fonts/zihunbiantaoti.ttf')
}

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

@keyframes rotateAni {
    0% {
        transform: none;
    }

    100% {
        transform: rotateY(180deg);
    }
}

.rotateAni {
    -webkit-animation: rotateAni linear infinite 2s;
    -moz-animation: rotateAni linear infinite 2s;
    -o-animation: rotateAni linear infinite 2s;
    animation: rotateAni linear infinite 2s;
}

.pfAni1 {
    -webkit-animation: bubbleMover linear infinite 5s;
    -moz-animation: bubbleMover linear infinite 5s;
    -o-animation: bubbleMover linear infinite 5s;
    animation: bubbleMover linear infinite 5s;
}

.pfAni2 {
    -webkit-animation: bubbleMover2 linear infinite 5s;
    -moz-animation: bubbleMover2 linear infinite 5s;
    -o-animation: bubbleMover2 linear infinite 5s;
    animation: bubbleMover2 linear infinite 5s;
}

.pfAni3 {
    -webkit-animation: bubbleMover3 linear infinite 5s;
    -moz-animation: bubbleMover3 linear infinite 5s;
    -o-animation: bubbleMover3 linear infinite 5s;
    animation: bubbleMover3 linear infinite 5s;
}

@keyframes scalc {
    0% {
        -webkit-transform: scale(2.05,2.05);
        -o-transform: scale(2.05,2.05);
        -moz-transform: scale(2.05,2.05);
        -ms-transform: scale(2.05,2.05);
        transform: scale(2.05,2.05);
    }

    100% {
        -webkit-transform: none;
        -o-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        transform: none;
    }
}

.sclani {
    animation: scalc 0.9s forwards;
    animation-timing-function: ease-out;
}

@keyframes scalc2 {
    0% {
        transform: scale(1.2,1.2);
    }

    100% {
        -webkit-transform: none;
        -o-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        transform: none;
    }
}

.sclani2 {
    animation: scalc2 7s forwards;
    animation-timing-function: ease-out;
}

@keyframes clipAni {
    0% {
        clip: rect(auto,0,auto,auto);
    }

    100% {
        clip: rect(auto,300px,auto,auto);
    }
}

.txtModel i {
    animation: clipAni ease-out infinite 2s alternate;
}

body {
    overflow-x: hidden;
}

.section2 .title,.section3 .title,.section4 .title,.section5 .left .title,.section6 .left .title {
    display: inline-block;
}

.section2_1:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: url(../images/dr.png) no-repeat center center;
    top: 0px;
    left: 0px;
    background-size: cover;
}

.section2_1 {
    background: #1a1a1a;
    position: relative;
    overflow: hidden;
    padding-top: calc(146/1920*100vw);
    padding-bottom: calc(60/1920*100vw);
}

.section2_1 .wrap {
    position: relative;
    z-index: 5;
    padding: 0 calc(256 / 1920 * 100vw);
}

.section2_1 .title {
    margin-bottom: calc(105/1920*100vw);
}

.section2_1 .title .txtModel {
    font-size: calc(94/1920*100vw);
    font-family: zihunbiantaoti;
    font-weight: 400;
    color: #FFFFFF;
}

.section2_1 .title .txtModel i {
    right: -40%;
}

.section2_1 .content1 {
    background: rgba(0,0,0,0.3);
    border: calc(5/1920*100vw) solid rgba(255,255,255,0.28);
    padding: 0 calc(20/1920*100vw);
    margin-bottom: calc(40/1920*100vw);
}

.section2_1 .content1 .tit {
    font-size: calc(42/1920*100vw);
    font-family: zihunbiantaoti;
    font-weight: 400;
    padding-top: calc(20/1920*100vw);
    color: #FFFFFF;
}

.section2_1 .content1 .vallist {
    zoom:1;overflow: hidden;
    text-align: center;
    padding-top: calc(36/1920*100vw);
}

.section2_1 .content1 .vallist p:nth-child(4n) {
    margin-right: 0;
}

.section2_1 .content1 .vallist p {
    float: left;
    margin-right: calc(50/1920*100vw);
    width: calc((100% - calc(150/1920*100vw)) / 4);
    height: calc(124/1920*100vw);
    background: #323232;
    font-size: calc(24/1920*100vw);
    font-family: zihunbiantaoti;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 1;
}

.section2_1 .content1 .vallist .s1 {
    display: block;
    padding-top: calc(23/1920*100vw);
    padding-bottom: calc(31/1920*100vw);
    font-family: inherit;
}

.section2_1 .content1 .vallist .s2 {
    font-family: inherit;
}

.section2_1 .content1 .btn1 {
    width: calc(685/1920*100vw);
    height: calc(134/1920*100vw);
    background: #8E4300;
    border: calc(10/1920*100vw) solid #CB7E2C;
    display: block;
    margin: calc(60/1920*100vw) auto;
    font-size: calc(24/1920*100vw);
    font-family: zihunbiantaoti;
    font-weight: 400;
    color: #FFFFFF;
}

.section2_1 .content1 .dec {
    font-size: calc(18/1920*100vw);
    font-family: Microsoft YaHei;
    font-weight: 300;
    color: #FFFFFF;
    padding-bottom: calc(23/1920*100vw);
    text-align: center;
}

.section2_1 .content1 .vallist2 {
    padding-top: calc(65/1920*100vw);
    padding-bottom: 0;
    text-align: center;
    zoom:1;overflow: hidden;
}

.section2_1 .content1 .vallist2 .item:nth-child(2n) {
    float: right;
}

.section2_1 .content1 .vallist2 .item {
    zoom:1;overflow: hidden;
    float: left;
    width: calc((100% - calc(46/1920*100vw)) / 2);
}

.section2_1 .content1 .vallist2 .item p {
    height: calc(124/1920*100vw);
    background: #422C0D;
    font-size: calc(24/1920*100vw);
    font-family: zihunbiantaoti;
    font-weight: 400;
    color: #FFFFFF;
    padding-top: calc(21/1920*100vw);
}

.section2_1 .content1 .vallist2 .item .s1 {
    font-family: inherit;
}

.section2_1 .content1 .vallist2 .item .s2 {
    display: block;
    padding-top: calc(19/1920*100vw);
    font-family: inherit;
}

.section2_1 .content1 .vallist2 .item .btn {
    height: calc(134/1920*100vw);
    background: #8E4300;
    border: calc(10/1920*100vw) solid #CB7E2C;
    margin-top: calc(60/1920*100vw);
    width: 100%;
    font-size: calc(24/1920*100vw);
    font-family: zihunbiantaoti;
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: calc(60/1920*100vw);
}

.section2_1 .content1 .dec {
}

.section2_1 .items {
    padding-top: calc(42/1920*100vw);
    zoom:1;overflow: hidden;
    padding-bottom: calc(30/1920*100vw);
}

.section2_1 .items .item {
    float: left;
    height: calc(124/1920*100vw);
    background: #8E4300;
    width: calc((100% - 50px) / 2);
    position: relative;
    overflow: hidden;
    margin-bottom: calc(58/1920*100vw);
}

.section2_1 .items .item:nth-child(2n) {
    float: right;
}

.section2_1 .items .item .icon {
    height: calc(124/1920*100vw);
    background: #422C0D;
    float: left;
    width: calc(134/1920*100vw);
    position: relative;
}

.section2_1 .items .item .icon img {
    position: absolute;
    top: 50%;
    left: 50%;
    -o-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    max-width: 100%;
}

.section2_1 .items .item .val {
    font-size: calc(24/1920*100vw);
    font-family: zihunbiantaoti;
    font-weight: 400;
    color: #FFFFFF;
    float: left;
    width: calc(100% - calc(134/1920*100vw));
    line-height: calc(124/1920*100vw);
    padding-left: calc(61/1920*100vw);
    background: #4C3F2C;
}

.section2_1 .items .item .copy {
    font-size: calc(24/1920*100vw);
    font-family: zihunbiantaoti;
    font-weight: 400;
    color: #FFFFFF;
    width: 100%;
    height: 100%;
    border: none;
    background: none;
}

.section2_1 .items .item .copy:hover {
}

.alertmodel1 {
    position: fixed;
    left: 0;
    top: 0px;
    width: 100%;
    z-index: 99999;
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    backdrop-filter: saturate(180%) blur(10px);
    background-color: rgb(0 0 0 / 45%);
    height: 100vh;
    display: none;
}

.alertmodel1 img {
    margin-bottom: 7%;
}



.alertmodel1 .center {
    z-index: 99;
    position: absolute;
    top: 50%;
    left: 50%;
    -o-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    max-width: 95%;
    /* display: none; */
    background-size: 100% 100%;
    max-width: 95%;
    width:calc(900 / 1920 * 100vw);
    height: calc(510 / 1920 * 100vw);
    background: #ffffff69;
    box-shadow: 0px 0px 24px 0px rgba(0,0,0,0.32);
    border-radius: calc(50 / 1920 * 100vw);
    max-height: 98vh;
    padding: 0px 2%;
    /* padding-top: 1%; */
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.alertmodel1 .title {
    text-align: center;
    font-size: calc(50 / 1920 * 100vw);
    font-family: AkzidenzGroteskBQ;
    font-weight: bold;
    color: #000;
}

.alertmodel1 .return {
    width: calc(278 / 1920 * 100vw);
    line-height: calc(87 / 1920 * 100vw);
    background: linear-gradient(-90deg,#414141,#010101);
    border-radius: calc(44 / 1920 * 100vw);
    display: block;
    text-align: center;
    font-size: calc(32 / 1920 * 100vw);
    font-family: zihunbiantaoti;
    font-weight: 400;
    color: #DAB25F;
    border: none;
    display: block;
    margin: 0px auto;
    margin-top: 17%;
    text-transform: uppercase;
}
.index{
    overflow: hidden;
}