.header{
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
	box-shadow: none;
	transition: all .3s;
	background-color: #ffffff;
	box-shadow: 0 3px 5px rgba(0,0,0,0.05);
}
.head-space{
	width: 100%;
	height: 85px;
}
.header .main{
	height: 85px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.header .logo-box {
    display: block;
	width: 225px;
	position: absolute;
	left: 0;
	top:50%;
	transform: translateY(-50%);
	z-index: 99;
    line-height: 0;
}

.header .logo-box img{
    width: 100%;
    height: auto;
}


.head-right-box{
	position: absolute;
	right: 0;
	top:50%;
	transform: translateY(-50%);
	z-index: 99;
	display: flex;
	align-items: center;
}

.head-right-box .lang-box{
	font-size: 17px;
	font-weight: bold;
	margin-right: 50px;
}


.head-right-box .phone-box{
	display: block;
	line-height: 0;
}
.head-right-box .phone-box img{
	width: auto;
    height: 19px;
}

.head-center{
	display: flex;
	align-items: center;
}
.head-center .nav-menu{
	display: flex;
	align-items: center;
}
.nav-menu li{
	margin: 0 22px;
}
.nav-menu li a{
	display: block;
	font-size: 15px;
}
.nav-menu li a.curr, .nav-menu li a:hover{
	color:#fe2302;
}

.head-center .search-box{
	display: flex;
	align-items: center;
	margin-left: 22px;
	width: 100px;
	height: 20px;
	border-radius: 20px;
	border: 1px solid #000000;
	padding: 0 10px;
	box-sizing: border-box;
}
.search-box .input-c{
	flex: 1;
	width: 100%;
	height: 16px;
	line-height: 16px;
	font-size: 16px;
	color: #333;
	border: 0;
	padding: 0;
}
.search-box .button-c{
	border: 0;
	padding: 0;
	width: 12px;
	height: 12px;
	background: url("../images/search-icon.jpg") center center;
	background-repeat: no-repeat;
	text-indent: -999em;
	cursor: pointer;
}






/* 首页banner样式 */
.banner {
	width: 100%;
	height: 100%;
	position: relative;
}

.banner .swiper-slide {
	height: 100%;
	height: 100%;
	position: relative;
}

.banner .swiper-slide img{
	width: 100%;
	height: auto;
}

.banner .swiper-slide .ban-bg{
	width: 100%;
	height: 100%;
	line-height: 0;
	position: relative;
}

.banner .swiper-slide .ban-bg img{
	width: 100%;
	height: 100%;
}
.banner .swiper-slide .ban-bg::before{
	content: '';
	width: 100%;
	position: absolute;
	left:0;
	top:0;
	bottom: 0;
	right: 0;
	background: rgba(0,0,0,0.4);
	z-index: 0;
}
.banner .swiper-slide .ban-text{
	position: absolute;
	width: 840px;
	left: 50%;
	margin-left: -420px;
	top:50%;
	transform: translateY(-100%);
	z-index: 9;
	transition: all 1s;
}
.banner .swiper-slide .ban-text2{
	width: 666px;
	margin-left: -333px;
}
.active .banner .swiper-slide-active .ban-text{
	transform: translateY(-50%);
}

.banner .swiper-slide .ban-text-bg{
	position: absolute;
	width: 640px;
	left: 50%;
	margin-left: -320px;
	top:50%;
	margin-top: -320px;
	z-index: 9;
	transition: all 1s;
	opacity: 0;
}
.active .banner .swiper-slide-active .ban-text-bg{
	opacity: 1;
	animation: myrotate 5s forwards infinite linear;
	/* animation-delay: 1s; */
}

@keyframes myrotate{
   100%{
        transform: rotate(360deg);
    }
}



.banner .swiper-slide .square-border{
	position: absolute;
	width: 222px;
	height: 426px;
	left: 50%;
	margin-left: 111px;
	top:50%;
	margin-top: -213px;
	z-index: 6;
}

.banner .swiper-slide .square-pad{
	position: relative;
	width: 222px;
	height: 426px;
}
.banner .swiper-slide .square {
	position: absolute;
	width: 8px;
	height: 8px;
	background-color: #fff;
	top: -4px; 
	left: -4px;
}
.active .banner .swiper-slide-active .square{
	animation: moveSquare 10s linear infinite;
	animation-delay: 1s;
}


/* 定义动画路径 */
@keyframes moveSquare {
	0% {
		top: -4px; /* 起点：左上角 */
		left: -5px;
	}
	20% {
		top: -4px; /* 右上角 */
		left: calc(100% - 5px); /* 减去小方块宽度 */
	}
	50% {
		top: calc(100% - 4px); /* 右下角 */ /* 减去小方块高度 */
		left: calc(100% - 5px);
	}
	70% {
		top: calc(100% - 5px); /* 左下角 */
		left: -4px;
	}
	100% {
		top: -4px;       /* 起点：左上角 */
		left: -5px;
	}
}


.banner .button-box{
	width: 223px;
	height: 56px;
	position: absolute;
	left: 32px;
	bottom: 0;
	z-index: 99;
	background-color: #fe2302;
	transform: translateY(150%);
	transition: all 1s;
}


.active .banner .button-box{
	transform: translateY(0);
}

.banner .button-box .button-inner{
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}


.banner .button-box .button-text{
	font-size: 12px;
	color: #fff;
	display: flex;
	align-items: center;
	margin: 0 5px;
}
.banner .button-box .button-text::before{
	content: '';
	width: 2px;
	height: 2px;
	background-color: #fff;
	border-radius: 2px;
	margin-right: 5px;
}
.banner .button-box .button-text::after{
	content: '';
	width: 37px;
	height: 1px;
	background-color: #fff;
	margin-left: 5px;
}
.banner .swiper-button-next,.banner .swiper-button-prev{
	position: static !important;
	background: none !important;
	opacity: 1;
    z-index: 999;
	width: 15px;
	height: 15px;
	top:0;
	margin-top: 0;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	font-family: simsun;
}
.banner .swiper-button-next{
	opacity: 1;
	transition: opacity 0.5s ease-in-out;
}
.banner .swiper-button-next{
	left: auto;
	right: 0;
	transition: opacity 0.5s ease-in-out;
}
.banner .swiper-button-next::after,.banner .swiper-button-prev::after{
	content: '';
	display: none;
}

.banner .swiper-pagination{
	width: auto;
	left: auto;
	right: 23px;
	bottom: 45px !important;
	transform: translateX(150%);
	transition: all 1s;
}

.active .banner .swiper-pagination{
	transform: translateX(0);
}

.banner .swiper-pagination-bullet{
	width: 24px;
	height: 2px;
	margin: 0 4px !important;
	background-color: #ffffff;
	opacity: 1;
	border-radius: 0;
	transition:all .5s
}
.banner .swiper-pagination-bullet-active{
	height: 7px;
	background-color: #e60012;
}




.nav-pagination{ position: fixed; left: 0; top:50%; z-index: 9999; transform: translate(-100%,-50%);
	animation: moveRight 1.5s 0.5s forwards}
.nav-pagination li{width: auto;}
.nav-pagination li a{ display: block; height: 26px;}

.nav-pagination li a em{ display: flex; align-items: center; font-size: 10px; color: #b9b9b9; transition: all .3s;}
.nav-pagination li a em::before{display: block; content: ''; width: 26px; height: 1px; background-color: transparent; margin-right: 4px;}
.nav-pagination li a em::after{display: block; content: ''; width: 2px; height: 2px; background-color: transparent; margin-left: 4px;}

.nav-pagination li a span{ display: none; align-items: center; font-size: 10px; color: #ff0000; transition: all .3s;}
.nav-pagination li a span::before{display: block; content: ''; width: 26px; height: 1px; background-color: #ff0000; margin-right: 4px;}
.nav-pagination li a span::after{display: block; content: ''; width: 2px; height: 2px; background-color: #ff0000; margin-left: 4px;}

.nav-pagination li a:hover em,.nav-pagination li.active a em{ display: none; }
.nav-pagination li a:hover span,.nav-pagination li.active a span{ display: flex;}


/*公共*/
.section{ overflow: hidden;box-sizing: border-box; height:100vh; width:100%;}

.s2{ 
	background: #f5f5f5;
	display: flex;
	justify-content: space-between;
}
.s2-left{
	width: 29%;
	height: 100%;
	background-color: #292929;
	background-image: url(../images/s2-left-logo.jpg);
	background-position: center bottom;
	background-repeat: no-repeat;
	background-size: 100% auto;
	transform: translateX(-150%);
	transition: all 0.8s;
}

.s2 .s2-right{
	width: 71%;
	height: 100%;
	transform: translateX(150%);
	transition: all 0.8s;
}
.s2.active .s2-left{
	transform: translateX(0)
}

.s2.active .s2-right{
	transform: translateX(0)
}
.s2-left-pad{
	height: 100%;
	position: relative;
	box-sizing: border-box;
	padding: 110px 20px 110px 30%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	color:#fff;
}
.s2-left .sub-title{
	font-size: 34px;
	line-height: 1.2;
}
.s2-left .text1{
	font-size: 24px;
}
.s2-left .text2{
	font-size: 12px;
}
.s2-left .s2-menu{
	margin-top: 10px;
}

.s2-left .s2-menu li{
	padding: 5px 0;
}

.s2-left .s2-menu li a{
	display: flex;
	align-items: center;
	position: relative;
	height: 28px;
	padding-right: 0;
	color:#fff;
	transition: all .5s;
	padding-right: 10px;
}
.s2-left .s2-menu li a em{
	font-size: 13px;
	font-family: simsun;
	display: none;
	position: absolute;
	right:0;
	top: 50%;
	transform: translateY(-50%);
}

.s2-left .s2-menu li a::before{
	display: block;
	content: '';
	width: 3px;
	height: 3px;
	border-radius: 3px;
	background-color: #fff;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	margin-left: -15px;
	display: none;
	transition: all .5s;
}

.s2-left .s2-menu li a::after{
	display: block;
	content: '';
	width: 24px;
	height: 1px;
	background-color: #fff;
	margin-left: 15px;
	transition: all .5s;
}


.s2-left .s2-menu li.active a,.s2.active .s2-left .s2-menu li:hover a{
	color:#ea0404;
}
.s2-left .s2-menu li.active a em,.s2-left .s2-menu li:hover a em{
	display: block;
}
.s2-left .s2-menu li.active a::before,.s2-left .s2-menu li:hover a::before{
	display: block;
	background-color: #ea0404;
}

.s2-left .s2-menu li.active a::after,.s2-left .s2-menu li:hover a::after{
	width: 60px;
	background-color: #ea0404;
}



.home-media-list{
	padding: 127px 64px 42px;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	display: grid;
	grid-template-columns: repeat(3, 1fr); /* 3列，每列等宽 */
	grid-template-rows: repeat(3, 1fr); /* 3行，每行等高 */
	gap: 24px; /* 单元格之间的间距 */
}


.home-media-list li{
	width: 100%;
	flex: 1;
	overflow: hidden;
	display: flex; /* 内容居中 */
	align-items: center;
	justify-content: center;

}

.home-media-list li a{
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
}

.home-media-list li a .pic{
	width: 100%;
	height: auto;
	line-height: 0;
}

.home-media-list li a .pic img{
	width: 100%;
	height: auto;
}

.home-media-list li a .text{
	width: 100%;
	height: 36px;
	line-height: 36px;
	text-align: center;
	background-color: #e60012;
	color: #fff;
	transform: translateY(150%);
	transition: all .5s;
	position: absolute;
	bottom: 0;
	left: 0;
}

.home-media-list li a:hover .text{
	transform: translateY(0);
}




.home-media-list li a .add{
	width: 60px;
	height: 60px;
	background-color: rgba(252, 32, 0, 0);
	position: absolute;
	left: 50%;
	top: 50%;
	margin-top: -30px;
	margin-left: -30px;
	z-index: 2;
	transform: translateY(200px);
	transition: all .5s;
}

.home-media-list li a:hover .add{
	background-color: rgba(252, 32, 0, 0.7);
	transform: translateY(0);
}

.home-media-list li a .add::before,
.home-media-list li a .add::after{
	display: block;
	content: '';
	width: 1px;
	height: 1px;
	background-color: #fff;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	transition: all 1s;
}


.home-media-list li a:hover .add::before{
	width: 15px;
	height: 1px;
}
.home-media-list li a:hover .add::after{
	width: 1px;
	height: 15px;
}



.s3{ background: #f0f0f0 }

.s3 .w{
	padding: 148px 0 100px;
}

.s3 .sub-title{
	text-align: center;
	font-size: 18px;
	color: #111;
	font-weight: bold;
	letter-spacing: 8px;
	line-height: 36px;
	transform: translateY(-500px);
	transition: all 1s;
	position: relative;
}
.active.s3 .sub-title{
	transform: translateY(0);
}


.s3 .text1{
	text-align: center;
	font-size: 28px;
	color: #d00000;
	font-weight: 500;
	transform: translateY(300px);
	transition: all 1s;
}
.active.s3 .text1{
	transform: translateY(0);
}

.read-more{
	width: 122px;
	height: 36px;
	margin: 0 auto;
	border-radius: 36px;
	background-color: #d00000;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	transform: translateY(300px);
	transition: all 1s;
	position: relative;
}
.active .read-more{
	transform: translateY(0);
}
.read-more:hover{
	color: #fff;
	background-color: #9a0000;
}

.recommend-list{
	padding: 55px 0 88px;
	transition: all 1s;
	transform: translateY(100%);
	transition: all 1.5s;
}
.active .recommend-list{
	transform: translateY(0);
}



.recommend-list li{
	width: 25%;
	float: left;

}

.home-media-list li a{
	position: relative;
	display: block;
	width: 100%;
}

.home-media-list li a .pic{
	width: 100%;
	height: auto;
	line-height: 0;
}

.home-media-list li a .pic img{
	width: 100%;
	height: auto;
}

.s4{
	background-image: url("../images/s4-bg.jpg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
}

.s4 .w{
	position: relative;
	height: 100%;
}
.s4-main{
	width: 756px;
	position: absolute;
	left: 50%;
	margin-left: -378px;
	top: 50%;
	transform: translateY(-1200px);
	z-index: 3;
	transition: all 1s;
}
.active .s4-main{
	transform: translateY(-50%);
}

.s4-main img{
	width: 100%;
}
.s5{ background: #f0f0f0 }

.s5 .main{
	width: 70%;
	padding: 128px 0 50px;
}

.s5 .sub-title{
	text-align: center;
	font-size: 18px;
	color: #111;
	font-weight: bold;
	letter-spacing: 8px;
	line-height: 36px;
	transform: translateY(-500px);
	transition: all 1s;
	position: relative;
}
.active.s5 .sub-title{
	transform: translateY(0);
}

.ad-ctt .sub-title,.ad-ctt .text1{
	transform: translateY(0) !important;
}

.s5 .text1{
	text-align: center;
	font-size: 28px;
	color: #d00000;
	font-weight: 500;
	transform: translateY(300px);
	transition: all 1s;
}
.active.s5 .text1{
	transform: translateY(0);
}
.brandSwiper{
	margin-top: 80px;
	width: 100%;
	height: 535px;
	position: relative;
	padding-bottom: 35px;
	box-sizing: border-box;
}

.brandSwiper .swiper-slide {
	text-align: center;
	font-size: 18px;
	background: #fff;
	height: calc((100% - 30px) / 3) !important;
	display: flex;
	justify-content: center;
	align-items: center;
}
.brandSwiper .pic{
	width: 100%;
	line-height: 0;
}
.brandSwiper .pic img{
	width: 100%;
	height: auto;
}


.brand-button .swiper-button-next,.brand-button .swiper-button-prev{
	background: none !important;
	opacity: 1;
    z-index: 999;
	width: 154px;
	height: 35px;
	bottom:0;
	left: 0;
	top: auto;
	margin-top: 0;
	color: #333;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	font-size: 15px;
	font-family: simsun;
	transition: opacity 0.5s ease-in-out;
	color: #d00000;
}
.brand-button span{
	position: relative;
	font-family:-apple-system, PingFang SC,Microsoft YaHei,微软雅黑,STXihei,华文细黑,sans-serif;
	padding-right: 110px;
	margin-left: 10px;
	color: #666;
}
.brand-button span::after{
	display: block;
	content: '';
	width: 100px;
	height: 1px;
	background-color: #ccc;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	transition: all 1s;
}
.brand-button .swiper-button-next{
	left: auto;
	right: 0;
	justify-content: flex-end;
}
.brand-button .swiper-button-prev::after, .brand-button .swiper-button-next::after{
	content: '';
	display: none;
}
.brandSwiper .swiper-pagination{
	left: 20%;
	right: 20%;
	width: auto;
}

.brandSwiper .swiper-pagination .swiper-pagination-bullet{
	width: 34px;
	height: 3px;
	background-color: #bbb;
	margin: 0 6px;
	border-radius: 0;
}


.brandSwiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{
	background-color: #ff0000;
}


.brand-button .swiper-button-next span{
	padding-left: 110px;
	padding-right: 0;
	margin-right: 10px;
	margin-left: 0;
}
.brand-button .swiper-button-next span::after{
	right: auto;
	left: 0;
}



.s6{ background: #021c33; display: flex;flex-direction: column; justify-content: flex-end}
.copyright{ 
	width: 100%;
}

.s6 .pic-main{
	padding-bottom: 150px;
}
.s6 .pic-main img{
	width: 447px;
	height: auto;
}
.copyright{ 
	background-color: #111;
}
.copyright .main{ 
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 66px;
}

.copyright .main .text{ 
	font-size: 16px;
	color:#fff;
}

.copyright .main .text a{
	color:#fff;
}
.copyright .main .text a:hover{ 
	color:#ff0000;
}

.copyright .main .foot-logo{ 
	width: 212px;
	height: auto;
	line-height: 0;
}

.copyright .main .foot-logo img{ 
	width: 100%;
	height: auto;
}


.sub-full-pages{
	width: 100%;

}

.main-img{
	color: #333;
	line-height: 1.6;
	font-size: 16px;
	text-align: center;
}

.main-img img {
	max-width: 100%;
	height: auto;
}

.page-brc{
	padding: 50px 0 0;
}

.cp-list {
	font-size: 0;
	width:100%;
}

.cp-list li {
	float: left;
	width: 25%;
	transition: all .5s ease;
}
.cp-list li .pad {
	padding: 15px;
}
.cp-list li a.pic{
	display: block;
	border: 1px solid #eee;
	padding:4px;
	line-height: 0;
	background-color: #fff;
}
.cp-list li a.pic-link{
	line-height: 0;
	display: block;
}

.cp-list li a.pic-link img {
	width:100%;
	height: auto;
}

.cp-list li a.pic img {
	width:100%;
	height: auto;
}

.cp-list li h3 a {
	display: block;
	text-align: center;
	font-size: 16px;
	padding: 8px 0;
	font-weight: normal;
}

.sub_banner{
	width: 100%;
	line-height: 0;
	text-align: center;
}

.sub_banner img{
	width: 100%;
	height: auto;
}

.left-nav{
	border-bottom:2px solid #c58f39;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}
.left-nav li{
	margin: 0 20px;
}

.left-nav li a{
	font-size: 20px;
	font-weight: bold;
	color:#111;
	height: 70px;
	display: flex;
	align-items: center;
}

.left-nav li.active a,.left-nav li a:hover{
	color:#c58f39;
	position: relative;
}

.left-nav li.active a::before{
	display: block;
	content: '';
	width: 0px;
	height: 0px;
	border-width: 8px ;
	border-style: solid;
	border-color: #c58f39 transparent transparent transparent;
	position: absolute;
	left: 50%;
	bottom: -16px;
	transform: translateX(-50%);
	transition: all 1s;
}


/*新闻列表*/

#newslist a{display: block;padding:50px 0;border-bottom: 1px solid #ddd;}
#newslist a img{width:374px;height:auto;float: right;}
#newslist a .infobox{width:720px;float: left;}
#newslist a .infobox span{display:block;font-size:26px;color:#111;line-height:1.4;padding-bottom: 10px;}
#newslist a .infobox em{display:block;font-size: 16px;color:#777;padding-bottom:10px;font-style: normal;}
#newslist a .infobox p{display:block;font-size: 16px;color:#666;padding-bottom: 5px;line-height: 1.6}
#newslist a:hover span{color:#c58f39;}


/* 详情页 */
.ctt_tit{display:block;color:#111;font-size:42px;text-align:center;font-weight: bold;}
.ctt_con{padding:50px 0;color:#333;font-size:16px;line-height: 1.8;}
.ctt_con img{max-width: 100%;}
.ctt_con .date{display:block;color:#666; font-size:14px; padding:10px 0 0;text-align:center;}
.ctt_con .date span{margin:0 10px}
.ctt_con .ctt_det{padding:20px 0;}

.ud{line-height:2;color:#999}
.ud a{line-height:2;color:#555}
.ud a:hover{color:#c58f39}
/* 详情页 */

.ctt-img{
	min-height: 100vh;
}



.bas-box{
	width: 100%;
}
.bas-box .bas{
	width: 100%;
	line-height: 0;
}
.bas-box .bas img{
	width: 100%;
	height:auto;
}

.bas-box .youshi-box{
	display: flex;
	align-items: center;
	margin-top: -200px;
	position: relative;
	z-index: 333;
	padding-bottom: 30px;
}
.bas-box .youshi-box .item-one{
	flex: 1;
	width: 20%;
	position: relative;
	box-sizing: border-box;
	margin: 30px;
	border-radius: 50%;
	overflow: hidden;
	cursor: pointer;
}

.bas-box .youshi-box .item-one .item-pic{
	width: 100%;
	line-height: 0;
	border-radius: 50%;
	overflow: hidden;
}
.bas-box .youshi-box .item-one .item-pic img{
	width: 100%;
	height:auto;
}

.bas-box .youshi-box .item-one .item-text{
	position: absolute;
	width: 100%;
	left: 0;
	top:0;
	height: 100%;
	z-index: 3;
}

.bas-box .youshi-box .item-one .item-text .item-name{
	position: absolute;
	width: 100%;
	left: 0;
	top:30%;
	z-index: 4;
	text-align: center;
	color:#fff;
	font-size: 24px;
}

.bas-box .youshi-box .item-one .item-text .item-icon{
	position: absolute;
	width: 100%;
	left: 0;
	bottom: 30px;
	z-index: 4;
	text-align: center;
	line-height: 0;
}

.bas-box .youshi-box .item-one .item-text .item-icon img{
	width: 40px;
	height: 40px;
}

.bas-box .youshi-box .item-one .item-bg{
	position: absolute;
	width: 100%;
	left: 0;
	top:0;
	height: 100%;
	z-index: 2;
	background-color: rgba(34,34,34,0.8);
}

.bas-box .youshi-box .item-one .item-bg{
	position: absolute;
	width: 100%;
	left: 0;
	top:0;
	height: 100%;
	z-index: 2;
	background-color: rgba(34,34,34,0.8);
}
.bas-box .youshi-box .item-one-pad{
	position: relative;
}
.bas-box .youshi-box .item-one.red .item-bg{
	position: absolute;
	width: 100%;
	left: 0;
	top:0;
	height: 100%;
	z-index: 2;
	background-color: rgba(255,39,0,0.8);
}

.bas-box .youshi-box .item-one-pad :hover{
	animation: spin 0.5s linear forwards; /* 添加旋转动画 */
}



.into_tit{
	border-bottom:2px solid #c58f39;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px 10px 10px;
}
.into_tit h1{
	color: #333;
	font-size:24px;
	position: relative;
	display: inline-block;
}



.result-none{
	padding: 20px;
	text-align: center;
	color:#999
}

.result-none span.red{
	color: red;
}



@keyframes spin {
	from {
		transform: rotate(0deg); /* 起始角度 */
	}
	to {
		transform: rotate(360deg); /* 结束角度 */
	}
}

.footer{
	padding: 20px 0;
	background-color: #fff;
	margin-top: 30px;
}

.footer .main{
	display: flex;
	justify-content: space-between;
}

.foot-left{
	display: flex;
}

.foot-left .foot-logo{
	width: 91px;
	line-height: 0;
	display: block;
	margin-right: 30px;
}
.foot-left .foot-logo img{
	width: 100%;
	height: auto;
}

.foot-text{
	display: flex;
	flex-direction: column;
}


.foot-text .foot-nav{
	font-size: 16px;
	padding-bottom: 10px;
}
.foot-text .foot-nav a{
	margin: 0 5px;
}

.foot-copyright{
	margin-left: 5px;
}

.foot-copyright p{
	margin-top: 8px;
}

.footer-right{
	display: flex;
	align-items: center;
}

.footer-right a{
	display: block;
	margin-left: 20px;
}


.footer-right a img{
	width: 105px;
	height: auto;
}

.footer-right a span{
	display: block;
	line-height: 1.6;
	margin-top: 5px;
	text-align: center;
}

@keyframes moveUp {
	0%{ transform: translateY(100%) }
	100%{ transform: translateY(0) }
}
@keyframes moveDown {
	0%{ transform: translateY(-100%) }
	100%{ transform: translateY(0) }
}
@keyframes moveRight {
	0%{ transform: translateX(-100%) }
	100%{ transform: translateX(0) }
}
@keyframes moveLeft {
	0%{ transform: translateX(100%) }
	100%{ transform: translateX(0) }
}

@keyframes move1 {
    0%{ transform: translate(330px,-1000px) }
    20%{ transform: translate(330px,0) }
    40%{ transform: translate(330px,-50px) }
    60%{ transform: translate(330px,0px) }
    100%{ transform: translate(0,0) }
}
@keyframes move2 {
    0%{ transform: translate(0,-1000px) }
    20%{ transform: translate(0,0) }
    40%{ transform: translate(0,-50px) }
    60%{ transform: translate(0,0px) }
    100%{ transform: translate(0,0) }
}
@keyframes move3 {
    0%{ transform: translate(-330px,-1000px) }
    20%{ transform: translate(-330px,0) }
    40%{ transform: translate(-330px,-50px) }
    60%{ transform: translate(-330px,0px) }
    100%{ transform: translate(0,0) }
}