.wow {
    opacity: 0;
}

.mobile {
    width: 100%;
}

.mobile-inner {
    margin-right: auto;
    margin-left: auto;
    background-color: ;
    position: relative;
}

.mobile-inner img {}

.mobile-inner p {
    color: #676767;
    line-height: 25px;
    font-size: 16px;
    padding-bottom: 30px;
    padding-right: 30px;
    padding-left: 30px;
    margin: 0px;
}

.mobile-inner-header {
    background-color: rgb(255, 255, 255);
    width: 100%;
    height: 50px;
    position: relative;
    top: 0px;
    z-index: 33;
    left: 0px;
}

.mobile-inner-header-icon {
    color: #ffffff;
    height: 50px;
    font-size: 25px;
    text-align: center;
    float: right;
    width: 50px;
    position: relative;
    -webkit-transition: background 0.5s;
    -moz-transition: background 0.5s;
    -o-transition: background 0.5s;
    transition: background 0.5s;
}

.mobile-inner-header-icon:hover {
    background-color: rgba(255, 255, 255, 0.2);
    cursor: pointer;
}

.mobile-inner-header-icon span {
    position: absolute;
    left: calc((100% - 25px) / 2);
    top: calc((100% - 1px) / 2);
    width: 25px;
    height: 1px;
    background-color: rgb(199, 34, 27);
}

.mobile-inner-header-icon span:nth-child(1) {
    transform: translateY(4px) rotate(0deg);
}

.mobile-inner-header-icon span:nth-child(2) {
    transform: translateY(-4px) rotate(0deg);
}

.mobile-inner-header-icon-click span:nth-child(1) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: clickfirst;
}

.mobile-inner-header-icon-click span:nth-child(2) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: clicksecond;
}

@keyframes clickfirst {
    0% {
        transform: translateY(4px) rotate(0deg);
    }
    100% {
        transform: translateY(0) rotate(45deg);
    }
}

@keyframes clicksecond {
    0% {
        transform: translateY(-4px) rotate(0deg);
    }
    100% {
        transform: translateY(0) rotate(-45deg);
    }
}

.mobile-inner-header-icon-out span:nth-child(1) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: outfirst;
}

.mobile-inner-header-icon-out span:nth-child(2) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: outsecond;
}

@keyframes outfirst {
    0% {
        transform: translateY(0) rotate(-45deg);
    }
    100% {
        transform: translateY(-4px) rotate(0deg);
    }
}

@keyframes outsecond {
    0% {
        transform: translateY(0) rotate(45deg);
    }
    100% {
        transform: translateY(4px) rotate(0deg);
    }
}

.mobile-inner-nav {
    overflow: auto;
    max-height: calc(100vh - 50px);
}

.mobile-inner-nav {
    background-color: hsla(224, 27%, 35%, .6);
    width: 100%;
    position: absolute;
    top: 50px;
    padding-bottom: 0%;
    display: none;
    z-index: 444;
}

.mobile-inner-nav a {
    border-bottom: solid 1px rgba(255, 255, 255, 0.3);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    color: #fff;
    transition: all 0.5s;
}

.mobile-inner-nav dl {
    display: none;
}

.mobile-inner-nav dl dd {
    line-height: 33px;
    text-decoration: none;
    text-indent: 3em;
    font-size: 16px;
    color: #FFFFFF;
    border-bottom: solid 1px rgba(255, 255, 255, 0.3);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    font-weight: 300;
    font-size: 14px;
}

.mobile-inner-nav li {
    border-bottom: solid 1px rgba(255, 255, 255, 0.3);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    line-height: 53px;
    text-indent: 20px;
}

.mobile-inner-nav h2.h2tit {
    line-height: 50px;
    text-decoration: none;
    text-indent: 2em;
    font-size: 16px;
    color: #FFFFFF;
    /* border-bottom:solid 1px rgba(255,255,255,0.3); */
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    font-weight: 300;
}

.mobile-inner-nav h2.h2tit a {
    color: #FFFFFF;
}

.mobile-inner-nav a {
    border-bottom: none;
}

.mobile-inner-nav li {
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: returnToNormal;
    animation-name: returnToNormal;
}

@-webkit-keyframes resize {
    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }
    0% {
        opacity: 0;
        -webkit-transform: scale(5, 5);
        transform: scale(5, 5);
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
}

@keyframes resize {
    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }
    0% {
        opacity: 0;
        -webkit-transform: scale(5, 5);
        transform: scale(5, 5);
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
}

@-webkit-keyframes returnToNormal {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes returnToNormal {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.mobile-inner-nav li:last-child h2.h2tit {
    border-bottom: none;
}

.mobile-inner-nav li .h3tit {
    height: 50px;
    position: relative;
    background: url(../images/51_icon_search@2x.png) no-repeat 30px center;
    background-size: 17px;
}

.mobile-inner-nav li .words {
    display: block;
    width: 100%;
    height: 100%;
    border: none;
    background: none;
    text-indent: 60px;
    font-size: 15px;
    color: #fff;
    background: url(../images/search2.png) no-repeat 30px center;
    background-size: 20px;
}

.mobile-inner-nav li:last-child {
    border-bottom: none;
}

.mobile-inner-nav li form {
    display: block;
    width: 100%;
    height: 100%;
}

@charset "utf-8";
@charset "UTF-8";
.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.animated.infinite {
    animation-iteration-count: infinite;
}

.animated.hinge {
    animation-duration: 2s;
}

.fadeInUp {
    animation-duration: 1.76s;
    animation-name: fadeInUp;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

* {
    font-family: 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: #0a0a0a;
    background: #fff;
    margin: 0 auto;
    padding: 0px;
}

body {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

}

input[type="button"],
input[type="submit"],
input[type="reset"],
input[type="text"] {
    -webkit-appearance: none;
}

input[type="button"],
input[type="submit"],
input[type="reset"] {
    cursor: pointer;
}

input {
    -webkit-appearance: none;
}

input {
    -webkit-appearance: none !important;
    border-radius: 0;
}

button {
    cursor: pointer;
}

textarea {
    -webkit-appearance: none;
}

a {
    text-decoration: none;
    color: #235aa7;
    outline: none;
}

a:active {
    star: expression(this.onFocus=this.blur());
}

img {
    border: 0px;
    vertical-align: middle;
}

li {
    list-style: none;
}

* {
    outline: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

a:link {
    text-decoration: none;
}

a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

a:active {
    text-decoration: none;
}

.loading {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 99999;
}

.loadingfa {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 29px;
    color: #1f8adf;
    position: absolute;
    left: 50%;
    margin-top: -25px;
    margin-left: -25px;
    top: 50%;
}

html {
    -webkit-overflow-scrolling: touch;
    -webkit-tap-highlight-color: none;
}

html {
    -webkit-tap-highlight-color: transparent;
}

body {
    -webkit-overflow-scrolling: touch;
}

* {
    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/bg.jpg) 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: 100%;
    height: calc(130/1046*100vh);
    display: flex;
    flex-direction: row;
    justify-content: center;
	align-items: center;
    margin: auto;
	background-color: rgb(0 0 0 / 75%);
    border-top: 1px #272528 solid;
}

@keyframes move {
    from {
        transform: rotate(0);
    }
    to {
        transform: rotate(360deg);
    }
}



@keyframes ripple {
    0% {
        opacity: 0.1;
    }
    100% {
        opacity: 1;
    }
}



.main .content .logo {
    position: relative;
    z-index: 5;
	display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 2vw;
	height: 100%;
	border-right: 1px #272528 solid;
}

.main .content .logo img {
    width: calc(225.37/1046*100vh);
}

.main .content .menu {
    position: relative;
    z-index: 5;
	display: flex;
    justify-content: center;
    flex-direction: row;
	height: 100%;
}

.main .content .menu >span {
    display: flex;
	justify-content: center;
    align-items: center;
    height: calc(85.37/1046*100vh);
	width: calc(283/1046* 100vh);
	height: 100%;
	
}
.main .content .menu >span .icon {
	display: block;
    width: calc(51.22/1046*100vh);
    height: calc(51.22/1046*100vh);
	margin-left: -0.6vh;
}

.main .content .menu >span .text {
    text-align: left;
	display: flex;
    flex-direction: column;
    justify-content: space-evenly;
	height: calc(52/1046*100vh);
	margin-left: 0.6vh;
}

.main .content .menu >span .text .cn {
    font-size:calc(20.5/1046*100vh);
    font-family: Microsoft YaHei UI;
    font-weight: 400;
    color: #FFFFFF;
}

.main .content .menu >span .text .en {
    font-size: calc(16/1046*100vh);
    font-family: Microsoft YaHei UI;
    font-weight: 500;
    color: #6f6f6f;
    display: block;
}

.main .content .menu >span:hover {
	background: linear-gradient(180deg,#000 0%, #171717 100%);
    background: -webkit-linear-gradient(270deg, #000 0%, #171717 100%);
	
}
.main .content .menu >span:hover .text .cn {
    color: #ffcb00;
}
.main .content .menu >span:hover .text .en {
    color: #ffcb00;
}


.main .content .menu >span.m01 .icon {
    background: url(../images/micon01.png) no-repeat center center;
	background-size: cover;
}

.main .content .menu >span.m02 .icon {
    background: url(../images/micon02.png) no-repeat center center;
	background-size: cover;
}

.main .content .menu >span.m03 .icon {
    background: url(../images/micon03.png) no-repeat center center;
	background-size: cover;
}

.main .content .menu >span.m04 .icon {
    background: url(../images/micon04.png) no-repeat center center;
	background-size: cover;
}

.main .content .menu >span.m01:hover .icon {
    background: url(../images/micon01a.png) no-repeat center center;
	background-size: cover;
}

.main .content .menu >span.m02:hover .icon {
    background: url(../images/micon02a.png) no-repeat center center;
	background-size: cover;
}

.main .content .menu >span.m03:hover .icon {
    background: url(../images/micon03a.png) no-repeat center center;
	background-size: cover;
}

.main .content .menu >span.m04:hover .icon {
    background: url(../images/micon04a.png) no-repeat center center;
	background-size: cover;
}


.bottom {
    min-height: 100px;
    height: auto;
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100%;
    text-align: center;
    align-items: center;
    display: flex;
    justify-content: center;
	flex-direction: column;
}

.bottom .web {
    display: inline-block;
    vertical-align: middle;
	width: calc(1465/1046*100vh);
	height: calc(269/1046*100vh);
	background: url(../images/webbg.png) no-repeat center center;
	background-size: cover;
	margin-bottom: 2.5vh;
}

.bottom .web ul {
	display: flex;
	width: 100%;
	height:100%;
	justify-content: center;
    align-items: center;
	justify-content: space-evenly
}

.bottom .web ul li {
    display: flex;
	align-items: center;
	flex-direction: column;
    justify-content: center;
    position: relative;
	width:calc(261.8/1046*100vh);
	height:calc(227.65/1046*100vh);
	border: 1px solid #958460;
	border-radius: 15px;
	background: linear-gradient(180deg,#29292d 0%, #000 100%);
    background: -webkit-linear-gradient(270deg,#29292d 0%, #000 100%);
}

.bottom .web ul li .text, .bottom .web ul li .text2{
    display: flex;
    position: relative;
	color: #fff;
	font-size:calc(18.3/1046*100vh);
	width:85%;
	height:calc(45.5/1046*100vh);
    line-height: calc(45.5/1046*100vh);
	border-bottom: 1px solid #323234;
	align-items: center;
    justify-content: center;
    flex-direction: row;
}
.bottom .web ul li .text2{
    color: #d1ae5a;
}
.bottom .web ul li span:nth-child(3){
    border-bottom:none;
}
.bottom .web ul li img{
	width:calc(25/1046*100vh);
	height:calc(25/1046*100vh);
    margin-right: 1.2vh;
}
.bottom .web ul li a{
    display: flex;
	align-items: center;
    justify-content: center;
    position: relative;
	font-weight: bold;
	font-size: calc(23/1046*100vh);
	color: #000;
	width:calc(222/1046*100vh);
	height:calc(52.4/1046*100vh);
	line-height: calc(52.4/1046*100vh);
	background-color: #ffcb00;
	border-radius: 50px;
	/*background: url(../images/btn.png) no-repeat center center;
	background-size: contain;
	text-shadow: 1px 1px 1px #fff;*/
}
.bottom .web ul li a:hover{
	transform: scale(0.9);
}



.main .content * {
    max-width: 100%;
}


