.wow {
    opacity: 0;
}

.mobile {
    width: 100%;
}

.mobile-inner {
    margin-right: auto;
    margin-left: auto;
    position: relative;
}

.mobile-inner img {}

.mobile-inner p {
    color: #676767;
    line-height: 25px;
    font-size: 16px;
    padding-bottom: 30px;
    padding-right: 30px;
    padding-left: 30px;
    margin: 0px;
}

.mobile-inner-header {
    background-color: rgb(255, 255, 255);
    width: 100%;
    height: 50px;
    position: relative;
    top: 0px;
    z-index: 33;
    left: 0px;
}

.mobile-inner-header-icon {
    color: #ffffff;
    height: 50px;
    font-size: 25px;
    text-align: center;
    float: right;
    width: 50px;
    position: relative;
    -webkit-transition: background 0.5s;
    -moz-transition: background 0.5s;
    -o-transition: background 0.5s;
    transition: background 0.5s;
}

.mobile-inner-header-icon:hover {
    background-color: rgba(255, 255, 255, 0.2);
    cursor: pointer;
}

.mobile-inner-header-icon span {
    position: absolute;
    left: calc((100% - 25px) / 2);
    top: calc((100% - 1px) / 2);
    width: 25px;
    height: 1px;
    background-color: rgb(199, 34, 27);
}

.mobile-inner-header-icon span:nth-child(1) {
    transform: translateY(4px) rotate(0deg);
}

.mobile-inner-header-icon span:nth-child(2) {
    transform: translateY(-4px) rotate(0deg);
}

.mobile-inner-header-icon-click span:nth-child(1) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: clickfirst;
}

.mobile-inner-header-icon-click span:nth-child(2) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: clicksecond;
}

@keyframes clickfirst {
    0% {
        transform: translateY(4px) rotate(0deg);
    }
    100% {
        transform: translateY(0) rotate(45deg);
    }
}

@keyframes clicksecond {
    0% {
        transform: translateY(-4px) rotate(0deg);
    }
    100% {
        transform: translateY(0) rotate(-45deg);
    }
}

.mobile-inner-header-icon-out span:nth-child(1) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: outfirst;
}

.mobile-inner-header-icon-out span:nth-child(2) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: outsecond;
}

@keyframes outfirst {
    0% {
        transform: translateY(0) rotate(-45deg);
    }
    100% {
        transform: translateY(-4px) rotate(0deg);
    }
}

@keyframes outsecond {
    0% {
        transform: translateY(0) rotate(45deg);
    }
    100% {
        transform: translateY(4px) rotate(0deg);
    }
}

.mobile-inner-nav {
    overflow: auto;
    max-height: calc(100vh - 50px);
}

.mobile-inner-nav {
    background-color: hsla(224, 27%, 35%, .6);
    width: 100%;
    position: absolute;
    top: 50px;
    padding-bottom: 0%;
    display: none;
    z-index: 444;
}

.mobile-inner-nav a {
    border-bottom: solid 1px rgba(255, 255, 255, 0.3);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    color: #fff;
    transition: all 0.5s;
}

.mobile-inner-nav dl {
    display: none;
}

.mobile-inner-nav dl dd {
    line-height: 33px;
    text-decoration: none;
    text-indent: 3em;
    font-size: 16px;
    color: #FFFFFF;
    border-bottom: solid 1px rgba(255, 255, 255, 0.3);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    font-weight: 300;
    font-size: 14px;
}

.mobile-inner-nav li {
    border-bottom: solid 1px rgba(255, 255, 255, 0.3);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    line-height: 53px;
    text-indent: 20px;
}

.mobile-inner-nav h2.h2tit {
    line-height: 50px;
    text-decoration: none;
    text-indent: 2em;
    font-size: 16px;
    color: #FFFFFF;
    /* border-bottom:solid 1px rgba(255,255,255,0.3); */
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    font-weight: 300;
}

.mobile-inner-nav h2.h2tit a {
    color: #FFFFFF;
}

.mobile-inner-nav a {
    border-bottom: none;
}

.mobile-inner-nav li {
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: returnToNormal;
    animation-name: returnToNormal;
}

@-webkit-keyframes resize {
    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }
    0% {
        opacity: 0;
        -webkit-transform: scale(5, 5);
        transform: scale(5, 5);
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
}

@keyframes resize {
    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }
    0% {
        opacity: 0;
        -webkit-transform: scale(5, 5);
        transform: scale(5, 5);
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
}

@-webkit-keyframes returnToNormal {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes returnToNormal {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.mobile-inner-nav li:last-child h2.h2tit {
    border-bottom: none;
}

.mobile-inner-nav li .h3tit {
    height: 50px;
    position: relative;

    background-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-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;
}

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;
}

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;
    line-height: 1;
}

@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;
}

.main {
    background: url(../images/梵高背景PC.png) no-repeat center 0;
    background-size: cover;
    /* min-height: 100vh; */
    position: relative;
    overflow: hidden;
    padding-top: 4vh;
    height: 100vh;
}

.main .content {
    text-align: center;
    position: relative;
    width: calc(1508/1046*100vh);
    height: calc(850/1046*100vh);
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* overflow: hidden; */
    margin: auto;
    padding-left: 1%;
    background: url(../images/mainbg.png) no-repeat center bottom;
    background-size:100% auto;
}

@keyframes move {
    from {
        transform: rotate(0);
    }
    to {
        transform: rotate(360deg);
    }
}

.main .content .ic1 {
    animation: ripple 1s infinite;
    -moz-animation: ripple 1s infinite;
    -webkit-animation: ripple 1s infinite;
    -o-animation: ripple 1s infinite;
    animation-direction: alternate;
    -webkit-animation-direction: alternate;
    animation-timing-function: linear;
    animation-iteration-count: 1;
    -moz-animation-iteration-count: 1;
    -webkit-animation-iteration-count: 1;
    -o-animation-iteration-count: 1;
    animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
    -o-animation-fill-mode: forwards;
    position: absolute;
    width: 100%;
    height: 100%;

    left: 0;
    top: 0px;
    z-index: 1;
    background-size: 100%;
    opacity: .1;
}

@keyframes ripple {
    0% {
        opacity: 0.1;
    }
    100% {
        opacity: 1;
    }
}

.main .content .ic2 {
    border-radius: 50%;

    position: absolute;
    width: calc(540/1046*100vh);
    height: calc(540/1046*100vh);
    position: absolute;
    top: 50%;
    left: 48.5%;
    -o-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 2;
    background-size: 70%;
}

.main .content .text1 {
    position: relative;
    z-index: 5;
}

.main .content .text1 img {
    width: calc(609/1046*100vh);
}

.main .content .btn {
    position: relative;
    z-index: 5;
}

.main .content .btn a {
      font-size: calc(31/1046*100vh);
      font-family: FZLTCHJW;
      font-weight: bold;
      color: #FFE400;
      display: inline-block;
      height: calc(85/1046*100vh);

      background-size: auto 100%;
      width: 100%;
      padding-right: 1%;
      line-height: calc(77/1046*100vh);
      animation: sc 1s infinite linear;
  }

@keyframes sc {
    0% {
        transform:scale(0.8);
    }
    50% {
        transform:scale(1);
    }
    100% {
        transform:scale(0.8);
    }
}

.footer {
    min-height: 100px;
    height: calc(125/1060*100vh);
    background: #20130e;
    border-top: 1px solid #ff5a00;
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100%;
    text-align: center;
    align-items: center;
    display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
}

.footer .logo {
    display: inline-block;
    vertical-align: middle;
    border-right: 1px solid #596479;
    padding-right: 4vw;
}

.footer .logo img {}

.footer .nav {
    display: inline-block;
    vertical-align: middle;
}

.footer .nav #ull {
    display: flex;
}

.footer .nav #ull>li {
    display: flex;
    align-items: center;
    position: relative;
    margin-left: 3vw;
    height: 110px;
}

.footer .nav #ull li.current .list {
    visibility: visible;
    opacity: 1;
    z-index: 5;
    top: -220px;
}

.footer .nav ul li .list {
    position: absolute;
    left: 0;
    top: -248px;
    text-align: left;
    width: 239px;
    height: 220px;
    background: rgba(2, 1, 0, 0.8);
    border: 1px solid #ba9f6a;
    border-radius: 5px;
    padding-top: 42px;
    padding-left: 44px;
    visibility: hidden;
    opacity: 0;
    z-index: -1;
    top: -260px;
}

.footer .nav ul li .list dd img {
    margin-right: 10px;
}

.footer .nav ul li .list dd {
    margin-bottom: 20px;
}

.footer .nav ul li .list dd a {
    font-size: 16px;
    font-family: Microsoft YaHei UI;
    font-weight: 400;
    color: #FFFFFF;
}

.footer .nav ul li .h2tit {}

.footer .nav ul li .h2tit a {
    display: flex;
    align-items: center;
}
.footer .nav ul li .h2tit a .icon {
    width: 44px;
    height: 44px;
}
.footer .nav ul li:nth-child(01) .h2tit a .icon {
    background: url(../images/icon1.png) no-repeat center center;
}
.footer .nav ul li:nth-child(02) .h2tit a .icon {
    background: url(../images/icon2.png) no-repeat center center;
}
.footer .nav ul li:nth-child(03) .h2tit a .icon {
    background: url(../images/icon3.png) no-repeat center center;
}
.footer .nav ul li:nth-child(04) .h2tit a .icon {
    background: url(../images/icon4.png) no-repeat center center;
}
.footer .nav ul li:nth-child(05) .h2tit a .icon {
    background: url(../images/icon5.png) no-repeat center center;
}


.footer .nav ul li .h2tit a .icon img {}

.footer .nav ul li .h2tit a .text {
    text-align: left;
    padding-left: 10px;
}

.footer .nav ul li .h2tit a .text .cn {
    font-size: 21px;
    font-family: Microsoft YaHei UI;
    font-weight: 400;
    color: #FFFFFF;
}

.footer .nav ul li .h2tit a .text .en {
    font-size: 12px;
    font-family: Microsoft YaHei UI;
    font-weight: 300;
    color: #7c828f;
    line-height: 1;
    opacity: 0.5;
    padding-top: 6px;
    display: block;
}

.footer .nav ul li:hover .h2tit a .text .cn {
    font-size: 21px;
    font-family: Microsoft YaHei UI;
    font-weight: 400;
    color: #cbbb95;
}

.footer .nav ul li:hover .h2tit a .text .en {
    font-size: 12px;
    font-family: Microsoft YaHei UI;
    font-weight: 300;
    color: #aa9171;
    line-height: 1;
    opacity: 0.5;
    padding-top: 6px;
    display: block;
}

.footer .nav ul li .slide {
    width: 508px;
    height: 356px;
    background: rgba(2, 1, 0, 0.8);
    border: 1px solid #1254EA;
    position: absolute;
    bottom: 88px;
    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%);
    overflow: hidden;
    /* padding-top: 35px; */
    /* padding-bottom: 35px; */
    height: 0;
    opacity: 0;
    z-index: 66;
}

.footer .nav ul li .slide dl {}

.footer .nav ul li .slide dl dd {
    font-size: 16px;
    font-family: Microsoft YaHei UI;
    font-weight: 400;
    color: #000000;
    line-height: 35px;
    margin-bottom: 15px;
}

.footer .nav ul li .slide dl dd * {
    display: inline-block;
    vertical-align: middle;
}

.footer .nav ul li .slide dl dd .ms {
    background: #FFFFFF;
    line-height: 35px;
    width: 66px;
    text-align: center;
}

.footer .nav ul li .slide dl dd img {
    margin: 0px 12px;
}

.footer .nav ul li .slide dl dd .url {
    width: 189px;
    line-height: 35px;
    background: #fff;
}

.footer .nav ul li .slide dl dd a {
    width: 116px;
    line-height: 35px;
    background: linear-gradient(0deg, #3329C6, #0C5CF1);
    font-size: 16px;
    font-family: Microsoft YaHei UI;
    font-weight: 400;
    color: #FFFFFF;
    margin-left: 11px;
}

.footer *,
.main * {
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s;
}

.footer .nav ul li.current .slide {
    padding-top: 35px;
    padding-bottom: 35px;
    height: 356px;
    opacity: 1;
}

.waplogo {
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid #1F1F1F;
    position: absolute;
    width: 100%;
    left: 0;
    top: 0px;
    text-align: center;
    z-index: 5;
    padding: calc(17/768*100vw) 0px;
}

.waplogo img {
    width: calc(248/768*100vw);
}

.waptext {
    text-align: center;
    background: #000000;
    font-size: 12px;
    font-family: Microsoft YaHei UI;
    font-weight: 400;
    color: #7A7A7A;
    line-height: 35px;
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
    z-index: 4;
}

.waptext a {
    color: #0F61FB;
}

.main .content * {
    max-width: 100%;
}



.footer .nav ul li .slide dl dd a:hover {
    background: red;
}

.bottom-left>li .jsBox {
	/* width: 100%; */
    width: 55rem;
    height: 30rem;
	position: absolute;
	left: 0;
	top: 0;
	display: none;
	box-sizing: border-box;
	border: 1px solid #0031ff;
	background: rgb(17 17 51 / 95%);
	transform: translateY(-100%);
	-webkit-transform: translateY(-100%);
}

.bottom-left>.on .jsBox {
	display: block;
}

.bottom-left>li .jsBox ul {
	padding: 0.43rem 0.6rem 0.13rem;
}

.bottom-left>li .jsBox li {
	margin-bottom: 0.25rem;
	overflow: hidden;
	zoom: 6;
}

.bottom-left>li .jsBox li span {
	display: block;
	float: left;
	color: #414755;
	font-size: 0.3rem;
	line-height: 0.7rem;
	text-align: center;
	border: 0.01rem solid #CED3DC;
	background: #F0F7FE;
	box-sizing: border-box;
}

.bottom-left>li .jsBox li .ms {
	width: 1.1rem;
}

.bottom-left>li .jsBox li img {
	margin: 0.25rem 0.28rem 0 0.38rem;
	width: 0.45rem;
	display: block;
	float: left;
}

.bottom-left>li .jsBox li .url {
	width: 4.14rem;
}

.bottom-left>li .jsBox li a {
	width: 2.15rem;
	display: block;
	float: right;
	color: #fff;
	font-size: 0.3rem;
	font-weight: bold;
	line-height: 0.7rem;
	text-align: center;
	border: 0.01rem solid #414755;
	background: #ff0030;
	box-sizing: border-box;
}

.bottom-left>li .jsBox .arrow {
	margin-left: -0.12rem;
	width: 0.25rem;
	position: absolute;
	left: 25%;
	bottom: -0.16rem;
}