.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: rgb(65 78 113 / 90%);
	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;
	font-size: 16px;
}
.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;
}
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);
}
select {
	cursor: pointer;
}
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);
font-size:calc(16/1920*100vw);
}
@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;
	left: 0;
	top: 0px;
	width: 100%;
 height:calc(100/1920*100vw);
	background: rgba(255,255,255,.8);
	z-index: 555;
 box-shadow: 0 0 calc(10 / 1920* 100vw) #cccccc;
}
.head .wrap {
	height: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.wrap {
width:calc(1200/1920*100vw);
	margin: auto;
	max-width: 100%;
}
.head .wrap .logo {
}
.head .wrap .logo a {
}
.head .wrap .logo a img {
height:calc(68/1920*100vw);
}
.head .wrap .right {
	height: 100%;
}
.head .wrap .right ul {
	height: 100%;
	display: flex;
	align-items: center;
}
.head .wrap .right ul li {
	position: relative;
}
.head .wrap .right ul li h2 {
}
.head .wrap .right ul li h2.h2tit {
}
.head .wrap .right ul li h2.h2tit a:after {
	content: "";
	position: absolute;
width:calc(14/1920*100vw);
height:calc(1/1920*100vw);
	background: #fff;
	left: 50%;
margin-left:calc(-7/1920*100vw);
top:calc(67/1920*100vw);
}
.head .wrap .right ul li.current h2.h2tit a {
	background: #171f5e;
	color: #fff;
}
.head .wrap .right ul li:hover h2.h2tit a {
	background: #171f5e;
	color: #fff;
}
.head .wrap .right ul li h2.h2tit a {
	display: block;
width:calc(96/1920*100vw);
	position: relative;
font-size:calc(15/1920*100vw);
	color: #000;
line-height:calc(100/1920*100vw);
	text-align: center;
}
.head .wrap .right ul li:hover dl {
	display: block;
}
.head .wrap .right ul li dl {
	position: absolute;
	left: 0;
top:calc(100/1920*100vw);
width:calc(120/1920*100vw);
	background: #06064E;
	display: none;
	z-index: 55;
}
.head .wrap .right ul li dl dd a:hover {
	background: #06284e;
}
.head .wrap .right ul li dl dd {
}
.head .wrap .right ul li dl dd a {
	display: inline-block;
	font-weight: 400;
font-size:calc(12/1920*100vw);
	font-family: "微软雅黑";
line-height:calc(32/1920*100vw);
	text-align: center;
	white-space: nowrap;
	width: 100%;
	color: #fff;
}
.banner {
	position: relative;
}
.banner .list {
}
.banner .list .swiper-container .swiper-slide img {
	display: block;
	width: 100%;
}
.banner .list .swiper-container .swiper-button-next {
	background: url(../images/right.png) no-repeat center center;
	background-size: 100%;
 width: calc(90/1920*100vw);
 height: calc(90/1920*100vw);
 margin-top: calc(-45/1920*100vw);
	opacity: .6;
}
.banner .list .swiper-container .swiper-button-prev {
	background: url(../images/left.png) no-repeat center center;
	background-size: 100%;
 width: calc(90/1920*100vw);
 height: calc(90/1920*100vw);
 margin-top: calc(-45/1920*100vw);
	opacity: .6;
}
.banner .notice {
	position: absolute;
	width: 100%;
	bottom: 0;
	left: 0;
	z-index: 5;
}
.banner .notice .wrap {
height:calc(52/1920*100vw);
	display: flex;
	align-items: center;
	background: hsl(0deg 0% 0% / 50%);
}
.banner .notice .wrap .title:after {
	content: "";
	position: absolute;
	right: 0;
top:calc(21/1920*100vw);
width:calc(1/1920*100vw);
height:calc(10/1920*100vw);
	background: #fff;
}
.banner .notice .wrap .title {
width:calc(66/1920*100vw);
	height: 100%;
	background: url(../images/gg.png) no-repeat center center;
background-size:calc(32/1920*100vw);
	position: relative;
}
.banner .notice .wrap .txt {
width:calc(100% - calc(120/1920*100vw));
padding-right:calc(40/1920*100vw);
padding-left:calc(40/1920*100vw);
}
.banner .notice .wrap .txt .swiper-container {
}
.banner .notice .wrap .txt .swiper-wrapper {
}
.banner .notice .wrap .txt .swiper-slide {
}
.banner .notice .wrap .txt .swiper-slide a {
	color: #fff;
}
.banner .notice .wrap .more {
font-size:calc(12/1920*100vw);
	color: #fff;
width:calc(66/1920*100vw);
}
.index {
}
.index .section1 {
}
.index .section1 .wrap {
}
.index .section1 .wrap .titlemodel {
padding-top:calc(120/1920*100vw);
padding-bottom:calc(53/1920*100vw);
}
.titlemodel {
font-size:calc(28/1920*100vw);
	text-align: center;
	font-weight: bold;
}
.index .section1 .wrap .titlemodel em {
}
.titlemodel em {
	display: inline-block;
width:calc(6/1920*100vw);
height:calc(6/1920*100vw);
	background: #171f5e;
border-radius:calc(30/1920*100vw);
	vertical-align: middle;
}
.index .section1 .wrap .titlemodel b {
}
.titlemodel b {
	font-weight: normal;
	color: #171f5e;
font-size:calc(28/1920*100vw);
}
.index .section1 .wrap .dec {
padding-bottom:calc(50/1920*100vw);
}
.index .section1 .wrap .dec a {
font-size:calc(17/1920*100vw);
	color: #000;
	display: block;
	line-height: 1.7;
	text-align: center;
}
.index .section1 .wrap .dec a b {
}
.index .section1 .wrap .list {
	text-align: center;
}
.index .section1 .wrap .list p {
	display: inline-block;
	vertical-align: middle;
padding:calc(1/1920*100vw) calc(40/1920*100vw);
}
.index .section1 .wrap .list p a {
	display: flex;
	align-items: center;
}
.index .section1 .wrap .list p a .icon {
padding-right:calc(20/1920*100vw);
}
.index .section1 .wrap .list p a .icon img {
	display: block;
width:calc(55/1920*100vw);
}
.index .section1 .wrap .list p a .rig {
	text-align: left;
}
.index .section1 .wrap .list p a .rig .s1 {
	display: block;
font-size:calc(15/1920*100vw);
	font-weight: 400;
	line-height: 1.3;
	color: #000;
}
.index .section1 .wrap .list p a .rig .s1 b {
font-size:calc(28/1920*100vw);
}
.index .section1 .wrap .list p a .rig .s2 {
	display: block;
	color: #888;
padding-top:calc(5/1920*100vw);
}
.index .section1 .wrap .link {
	text-align: center;
padding-top:calc(70/1920*100vw);
padding-bottom:calc(100/1920*100vw);
	font-size: 0;
}
.index .section1 .wrap .link a {
	display: inline-block;
width:calc(165/1920*100vw);
line-height:calc(45/1920*100vw);
border-radius:calc(3/1920*100vw);
	background: rgb(255,97,62);
	color: #fff;
font-size:calc(15/1920*100vw);
margin:0 calc(10/1920*100vw);
}
.index .section1 .wrap .link a.s2 {
	background: rgb(23,31,94);
}
.index .section2 {
	background: url(../images/bg1.jpg) no-repeat center center;
	background-size: cover;
padding-top:calc(90/1920*100vw);
padding-bottom:calc(90/1920*100vw);
}
.index .section2 .wrap {
}
.index .section2 .wrap .titlemodel {
	color: #fff;
padding-bottom:calc(60/1920*100vw);
}
.index .section2 .wrap .titlemodel em {
	background: #fff;
}
.index .section2 .wrap .titlemodel b {
	color: #fff;
}
.index .section2 .wrap .list {
}
.index .section2 .wrap .list .swiper-container {
}
.index .section2 .wrap .list .swiper-wrapper {
}
.index .section2 .wrap .list .swiper-slide {
}
.index .section2 .wrap .list .swiper-slide .item {
	background: #fff;
	text-align: center;
padding:calc(50/1920*100vw) 0;
}
.index .section2 .wrap .list .swiper-slide .item .icon {
}
.index .section2 .wrap .list .swiper-slide .item .icon img {
width:calc(112/1920*100vw);
}
.index .section2 .wrap .list .swiper-slide .item .title {
	display: block;
margin:calc(11/1920*100vw) 0;
	color: #000;
font-size:calc(17/1920*100vw);
}
.index .section2 .wrap .list .swiper-slide .item .line {
}
.index .section2 .wrap .list .swiper-slide .item .dec {
	height: 100px;
font-size:calc(12/1920*100vw);
padding:0 calc(63/1920*100vw);
	color: rgb(153,153,153);
font-size:calc(12/1920*100vw);
	line-height: 1.7;
padding-bottom:calc(20/1920*100vw);
	background: url(../images/line.png) no-repeat center bottom;
background-size:auto calc(1/1920*100vw);
}
.index .section2 .wrap .morebase {
	display: inline-block;
width:calc(165/1920*100vw);
line-height:calc(45/1920*100vw);
border-radius:calc(3/1920*100vw);
	background: rgb(255,97,62);
	color: #fff;
font-size:calc(15/1920*100vw);
margin:0 calc(10/1920*100vw);
	text-align: center;
	display: block;
	margin: auto;
margin-top:calc(50/1920*100vw);
}
.index .section3 {
padding:calc(90/1920*100vw) 0;
}
.index .section3 .wrap {
}
.index .section3 .wrap .titlemodel {
padding-bottom:calc(30/1920*100vw);
}
.index .section3 .wrap .titlemodel em {
}
.index .section3 .wrap .titlemodel b {
}
.index .section3 .wrap .hd {
	text-align: center;
}
.index .section3 .wrap .hd a.current, .index .section3 .wrap .hd a:hover {
	background: rgb(23,31,94);
	border-color: rgb(23,31,94) !important;
	color: #fff !important;
}
.index .section3 .wrap .hd a {
	display: inline-block;
margin:0 auto;
width:calc(101/1920*100vw);
line-height:calc(36/1920*100vw);
border:calc(1/1920*100vw) solid #ddd;
border-radius:calc(3/1920*100vw);
	color: #555;
}
.index .section3 .wrap .bd {
/*min-height:calc(300/1920*100vw);*/
}
.index .section3 .wrap .bd .model {
}
.index .section3 .wrap .bd .model .swiper-container {
}
.index .section3 .wrap .bd .model .swiper-wrapper {
}
.index .section3 .wrap .bd .model .swiper-slide {
}
.index .section3 .wrap .morebase {
	display: inline-block;
width:calc(165/1920*100vw);
line-height:calc(45/1920*100vw);
border-radius:calc(3/1920*100vw);
	background: rgb(255,97,62);
	color: #fff;
font-size:calc(15/1920*100vw);
margin:0 calc(10/1920*100vw);
	text-align: center;
	display: block;
	margin: auto;
margin-top:calc(50/1920*100vw);
}
.index .section4 {
	background: url(../images/bg2.jpg) no-repeat center center;
	background-size: cover;
padding:calc(110/1920*100vw) 0;
}
.index .section4 .wrap {
padding:0 calc(190/1920*100vw);
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.index .section4 .wrap .left {
}
.index .section4 .wrap .left .title {
font-size:calc(34/1920*100vw);
	font-weight: bold;
	color: #fff;
}
.index .section4 .wrap .left .title b {
font-size:calc(34/1920*100vw);
	color: rgb(255,97,62);
}
.index .section4 .wrap .left .dec {
font-size:calc(16/1920*100vw);
padding-top:calc(30/1920*100vw);
	color: #fff;
}
.index .section4 .wrap .right {
}
.index .section4 .wrap .right a {
	display: inline-block;
width:calc(165/1920*100vw);
line-height:calc(45/1920*100vw);
border:calc(2/1920*100vw) solid #fff;
border-radius:calc(3/1920*100vw);
	text-align: center;
	color: #fff;
font-size:calc(15/1920*100vw);
}
.index .section5 {
padding:calc(90/1920*100vw) 0;
}
.index .section5 .wrap {
}
.index .section5 .wrap .titlemodel {
}
.index .section5 .wrap .titlemodel em {
}
.index .section5 .wrap .titlemodel b {
}
.index .section5 .wrap .list {
margin:calc(40/1920*100vw) 0;
}
.index .section5 .wrap .list .swiper-container {
}
.index .section5 .wrap .list .swiper-wrapper {
}
.index .section5 .wrap .list .swiper-slide {
}
.index .section5 .wrap .list .swiper-slide a {
}
.index .section5 .wrap .list .swiper-slide a .imgbox {
	overflow: hidden;
	display: block;
}
.index .section5 .wrap .list .swiper-slide a .imgbox img {
	display: block;
	width: 100%;
}
.index .section5 .wrap .list .swiper-slide a .title {
	display: block;
padding-top:calc(10/1920*100vw);
	text-align: center;
font-size:calc(16/1920*100vw);
	color: #000;
	font-weight: bold;
}
.index .section5 .wrap .morebase {
	display: inline-block;
width:calc(165/1920*100vw);
line-height:calc(45/1920*100vw);
border-radius:calc(3/1920*100vw);
	background: rgb(255,97,62);
	color: #fff;
font-size:calc(15/1920*100vw);
margin:0 calc(10/1920*100vw);
	text-align: center;
	display: block;
	margin: auto;
margin-top:calc(50/1920*100vw);
}
.footer {
}
.footer .block1 {
	background: rgb(47,48,54);
padding-bottom:calc(30/1920*100vw);
}
.footer .block1 .wrap {
	display: flex;
	justify-content: space-between;
}
.footer .block1 .wrap .left {
}
.footer .block1 .wrap .left .nav {
padding-top:calc(59/1920*100vw);
}
.footer .block1 .wrap .left .nav a {
	color: #fff;
	position: relative;
font-size:calc(15/1920*100vw);
padding-right:calc(18/1920*100vw);
margin-right:calc(18/1920*100vw);
	opacity: .6;
border-right:calc(1/1920*100vw) solid #ddd;
height:calc(11/1920*100vw);
line-height:calc(11/1920*100vw);
	display: inline-block;
}
.footer .block1 .wrap .left .text {
	color: #fff;
	opacity: .6;
padding-top:calc(25/1920*100vw);
font-size:calc(12/1920*100vw);
}
.footer .block1 .wrap .left .text a {
font-size:calc(12/1920*100vw);
	color: #fff;
}
.footer .block1 .wrap .right {
	display: flex;
padding-top:calc(40/1920*100vw);
}
.footer .block1 .wrap .right .model {
padding-left:calc(23/1920*100vw);
}
.footer .block1 .wrap .right .model img {
width:calc(85/1920*100vw);
border-radius:calc(3/1920*100vw);
}
.footer .block1 .wrap .right .model .tit {
	text-align: center;
font-size:calc(11/1920*100vw);
	color: #fff;
padding-top:calc(10/1920*100vw);
	opacity: .5;
}
.footer .block2 {
line-height:calc(30/1920*100vw);
font-size:calc(12/1920*100vw);
	text-align: center;
	color: #666;
}
.footer .block2 .wrap {
font-size:calc(12/1920*100vw);
}
.footer .block2 .wrap a {
	color: inherit;
	font-size: inherit;
}
.btn_top {
	position: fixed;
right:calc(5/1920*100vw);
bottom:calc(5/1920*100vw);
	z-index: 909;
width:calc(60/1920*100vw);
height:calc(60/1920*100vw);
	background: url(../images/top.png) no-repeat center center;
	background-size: 100%;
	cursor: pointer;
}
