@charset "utf-8";

/* CSS Document */

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html,
body,
div,
span,
applet,
object,
iframe,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0px;
    border: 0;
    font-size: 100%;
    outline: none;
}

table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    padding: 0px;
}

body {
    font: 16px/1.8 "syhtL";
    margin: 0 auto;
    color: #666;
    background-color: #fff;
    /*overflow: hidden*/
}

html {
	overflow-x: hidden;
	overflow-y: auto;
	scrollbar-width: none;
	-ms-overflow-style: none;
	-webkit-overflow-scrolling: touch;
}

html::-webkit-scrollbar {
	display: none;
}



@media screen and (min-width: 322px) {
    html {
        font-size: 16.7777px;
    }
}

@media screen and (min-width: 760px) {
    html {
        font-size: 39.5833px;
    }
}

@media screen and (min-width: 1024px) {
    html {
        font-size: 53.3333px;
    }
}

@media screen and (min-width: 1280px) {
    html {
        font-size: 66.6666px;
    }
}

@media screen and (min-width: 1440px) {
    html {
        font-size: 75px;
    }
}

@media screen and (min-width: 1680px) {
    html {
        font-size: 85.7778px;
    }
}

@media screen and (min-width: 1920px) {
    html {
        font-size: 100px;
    }
}

@media screen and (min-width: 2560px) {
    html {
        font-size: 138.02px;
    }
}

@media screen and (min-width: 3200px) {
    html {
        font-size: 166.6666px;
    }
}

@media screen and (min-width: 3840px) {
    html {
        font-size: 200px;
    }
}


@media screen and (min-width: 3840px) {
    html {
        font-size: 200px;
    }
}



ul,
ol,
li {
    list-style: outside none none;
}

a {
    text-decoration: none;
    color: #333;
}

a:hover {
    text-decoration: none;
    color: #d80c18;
}

img {
    border: none;
    max-width: 100%;
}

i {
    font-style: normal;
}

ul {
    zoom: 1;
}

ul:after {
    display: block;
    content: '';
    clear: both;
}

input {
    font-family: 'syhtL';
}

.clear:after {
    content: "";
    clear: both;
    display: block;
}

.w1308 {
    width: 82%;
    margin: 0 auto;
}


/* top */
.header {
    width: 100%;
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    padding: 0 9%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 0 2px 1px #d1d1d1;
}

.header-fl {
    display: flex;
    align-items: center;
}

.h-logo {
    width: 0.73rem;
}

.h-logo img {
    display: block;
    width: 100%;
}

.h-menu {
    margin-left: 1rem;
}

.h-menu>ul{
    display: flex;
}

.h-menu>ul>li {
    font-size: 0.22rem;
    color: #333333;
    line-height: 0.9rem;
}

.h-menu>ul>li>a {
	display: block;
	padding: 0 0.2rem;
    color: #333333;
}
.h-menu>ul>li:hover{
	background: #fdd100;
}
.h-menu>ul>li.on{
	background: #fdd100;
}
.menu-drop{
	width: 70%;
	padding: 0.3rem 0.3rem;
	position: absolute;
	top: 100%;
	left: 15%;
	z-index: 1;
	display: none;
	/*
    visibility: hidden;*/
    animation-name: tab;
    animation-direction: normal;
    animation-duration: 0.5s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: 1;
    background: #fff;
    border-top: 1px solid #dbdbdb;
    border-bottom: 2px solid #fdd100;
    
}
.h-menu>ul>li:hover .menu-drop{
	display: block;
}
.menu-drop dl{
	display: flex;
	flex-wrap: wrap;
}
.menu-drop dl dd{
	width: 23.5%;
	margin-right: 2%;
}
.menu-drop dl dd:nth-child(4n){
	margin-right: 0;
}
.ab-drop dl dd{
	width: 18.4%;
}
.ab-drop dl dd:nth-child(4n){
	margin-right: 2%;
}
.ab-drop dl dd:nth-child(5){
	margin-right: 0;
}
.news-drop dl dd{
	width: 32%;
}
.news-drop dl dd:nth-child(3){
	margin-right: 0;
}
.menu-drop dl dd a{
	display: block;
	font-size: 0.18rem;
	color: #333333;
	line-height: 0.38rem;
	padding-left: 0.34rem;
	background: url(../images/jia01.png) no-repeat;
	background-position: 0.1rem 0.14rem;
	transition-duration: 0.5s;
}
.menu-drop dl dd:hover a{
	background: url(../images/jia02.png) no-repeat #f2f6f9;
	background-position: 0.1rem 0.14rem;
}
@-webkit-keyframes tab {
    from {
        opacity: 0;
        -webkit-transform: translateY(5%);
        transform: translateY(5%);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0%);
        transform: translateY(0%);
    }
}

@keyframes tab {
    from {
        opacity: 0;
        -webkit-transform: translateY(5%);
        transform: translateY(5%);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0%);
        transform: translateY(0%);
    }
}
.menu-drop .w1308{
	display: flex;
}
/*.menu-drop-fl{
	width: 50%;
	min-height: 3.2rem;
	padding:0.4rem 0 0.4rem 2.6rem;
	border-right: 1px solid #dbdbdb;
}
.menu-drop-fl h4{
	font-size: 0.24rem;
	color: #333333;
	font-weight:bold;
	line-height: 1.4;
	margin-bottom: 0.1rem;
}
.menu-drop-fl dl{
	width: 100%;
}
.menu-drop-fl dl dd a{
	display: block;
	font-size: 0.18rem;
	color: #333333;
	line-height: 0.38rem;
	padding-left: 0.34rem;
	background: url(../images/jia01.png) no-repeat;
	background-position: 0.1rem 0.14rem;
	transition-duration: 0.5s;
}
.menu-drop-fl dl dd:hover a{
	background: url(../images/jia02.png) no-repeat #f2f6f9;
	background-position: 0.1rem 0.14rem;
}

.menu-drop-fr{
	width: 50%;
	padding-top: 0.4rem;
	display: flex;
	justify-content: flex-end;
}
.menu-drop-img{
	width: 5.17rem;
}
.menu-drop-img img{
	display: block;
	width: 100%;
}*/



.header-fr {
    display: flex;
    align-items: center;
}

.h-language {
    width: 1.6rem;
    height: 0.3rem;
    border-left: 1px solid #b8bbb9;
    border-right: 1px solid #b8bbb9;
    display: flex;
    justify-content: center;
    align-items: center;
}
.h-language span:nth-child(1){
	font-size: 0.28rem;
    color: #333333;	
}
.h-language span:nth-child(2) {
    font-size: 0.21rem;
    color: #333333;
    line-height: 1.4;
    padding-left: 0.05rem;
    position: relative;
}
.h-search {
    width: 0.29rem;
    height: 0.29rem;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    margin: 0 0.25rem;
}
.h-search .iconfont{
	font-size: 0.34rem;
	color: #333;
}
/*.h-search img {
    display: block;
    width: 0.26rem;
}*/

.h-menuBtn {
    width: 0.9rem;
    height: 0.9rem;
    /*background: #fdd100;*/
    position: relative;
    cursor: pointer;
}
.h-menuBtn:hover{
	background: #fdd100;
}

.h-menuBtn span {
    display: block;
    width: 0.34rem;
    height: 2px;
    background: #000000;
    position: absolute;
    left: 0.28rem;
}

.h-menuBtn span:nth-child(1) {
    top: 0.3rem;
}

.h-menuBtn span:nth-child(2) {
    width: 0.28rem;
    top: 0.43rem;
}

.h-menuBtn span:nth-child(3) {
    top: 0.56rem;
}

/* top */


/* 弹窗 */

#dialogBg {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    display: none;
}

#dialogBg1 {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    display: none;
}

.animated {
    -webkit-animation-duration: 1.4s;
    animation-duration: 1.4s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

#dialog {
    width: 7rem;
    padding: 0.7rem;
    background: #fff;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    position: absolute;
}

#dialog1 {
    width: 65%;
    padding: 0.55rem;
    background: #fff;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    position: absolute;
    border-radius: 6px;
}

.dialogTop {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 30px;
}

.claseDialogBtn {
    font-size: 16px;
    color: #111;
}

.tc-ss {
    width: 100%;
    margin: 0 auto;
    padding: 20px 0;
}

.tc-ss ul .sk03 {
    width: 100%;
    font-size: 16px;
    height: 50px;
    line-height: 50px;
    vertical-align: top;
    box-sizing: border-box;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    margin-bottom: 25px
}

.tc-ss ul .sk03 input {
    width: 100%;
    background: none;
    height: 50px;
    line-height: 50px;
    font-size: 16px;
    border: none;
    outline: none;
}

.sk04 {
    height: 45px;
}

.sk04 input {
    border-radius: 0;
    background: #d80c18;
    color: #fff;
    font-size: 16px;
    line-height: 45px;
    height: 45px;
    vertical-align: top;
    padding: 0;
    margin: 0;
    width: 30%;
    text-align: center;
    border: none;
    outline: none;
    cursor: pointer;
}


/* 弹窗 */
.fl {
    float: left;
}

.fr {
    float: right;
}

.clear {
    clear: both;
}

/* 底部 */
.footer {
    background: #f5f5f5;
}

.footer-content {
    padding: 0.5rem 0 0.4rem 0;
}
.footinput{
	display: flex;
	align-items: center;
}
.footinput .footer-title{
	width: 1.2rem;
	margin-bottom: 0 !important;
}
.footinput ul {
    width: calc(100% - 1.2rem);
    display: flex;
    height: 0.6rem;
    justify-content: space-between;
}

.footinput li {
    width: 30%;
    margin-right: 1.5%;
    position: relative;
display:flex;
}

.footinput li input {
    width: 100%;
    outline: none;
    border: none;
    line-height: 0.6rem;
    font-size: 0.22rem;
    padding-left: 0.22rem;
}

.footinput li:nth-child(3) {
    width: 40%;
    margin-right: 0;
}

.footinput li .btn {
    width: 1.1rem;
    line-height: 0.5rem;
    background: #fdd100;
    color: #333;
    text-align: center;
    font-size: 0.22rem;
    transition-duration: .5s;
    cursor: pointer;
    position: absolute;
    right: 6px;
    top: 0.05rem;

}

.footinput li .btn:hover {
    background: #fadc4e;
    border-radius: 0.1rem;
}

/* .footer-content .w1308 {
    display: flex;
    justify-content: space-between;
} */

.footer-content-fl {
    width: 100%;
}

.footer-logo {
    width: 0.85rem;
    margin: 0 auto;
}

.footer-logo img {
    display: block;
    width: 100%;
}

.footer-ewm {
    margin-top: 0.55rem;
}

.footer-ewm ul {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.footer-ewm ul li {
    width: 0.45rem;
    height: 0.45rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0.1rem;
    background: #e8e8e8;
    cursor: pointer;
    margin-left: 6px;
    position: relative;
}

.footer-ewm ul li:hover {
    background: #fadc4e;
}
.footer-ewm ul li .iconfont{
	font-size: 0.22rem;
	color: #000;
}
.footer-ewm ul li:nth-child(1) .iconfont{
	font-size: 0.3rem;
}
.footer-ewm ul li:nth-child(2) .iconfont{
	font-size: 0.4rem;
}
.footer-ewm ul li:nth-child(5) .iconfont{
	font-size: 0.3rem;
}
/*.footer-ewm ul li:nth-child(1) .iconfont{
	font-size: 0.26rem;
}
.footer-ewm ul li:nth-child(4) .iconfont{
	font-size: 0.28rem;
}*/
/*.footer-ewm ul li img {
    display: inline-block;
    max-width: 100%;
    transition-duration: .5s;
}*/

/* .footer-ewm ul li:hover img {
    transform: rotateY(180deg);
} */

.footer-ewm ul li .dw {
    width: 1.1rem;
    position: absolute;
    top: -1.1rem;
    left: 50%;
    margin-left: -0.55rem;
    opacity: 0;
    visibility: hidden;
    transition-duration: .5s;
}

.footer-ewm ul li:hover .dw {
	visibility: visible;
    top: -1.2rem;
    opacity: 1;
}




.footer-content-fc {
    width: 3rem;
    padding-top: 0.55rem;
}

.footer-title {
    font-size: 0.22rem;
    color: #333333;
   /* font-family: 'syhtB'; */
    line-height: 1.4;
    font-weight: normal;
    margin-bottom: 0.22rem;
}

.footer-content-fc ul {
    display: flex;
    flex-wrap: wrap;
}

.footer-content-fc ul li {
    width: 100%;
    margin-bottom: 0.1rem;
    font-size: 0.18rem;
    color: #808080;
    line-height: 1.4;
}

.footer-content-fc ul li a {
    color: #808080;
}

.footer-content-fc ul li a:hover {
    color: #f06423;
}

.footer-content-fr {
    padding-top: 0.55rem;
    margin-left: 2.65rem;
}

.footer-content-fr p {
    font-size: 0.18rem;
    color: #808080;
    line-height: 1.4;
    margin-bottom: 0.1rem;
}

.footer-content-fr p:last-child {
    margin-bottom: 0;
}

.footer-beian {
    padding: 0.2rem 0;
    background: #2a2a2a;
}

.footer-beian .w1308 {
    display: flex;
    justify-content: space-between;
}

.footer-beian p {
    font-size: 0.18rem;
    color: #fff;
    line-height: 0.4rem;
}

.footer-beian p a {
    color: #fff;
}

.wx-ewm{
	display: flex;
	justify-content: flex-end;
	margin-top: 0.15rem;
}
.wx-ewm-list{
	width: 1.08rem;
	margin-left: 0.1rem;
}
.wx-ewm-list:first-child{
	margin-left: 0;
}
.wx-ewm-list img{
	display: block;
	width: 100%;
}
.wx-ewm-list p{
	font-size: 0.18rem;
	color: #333333;
	text-align: center;
	line-height: 1.4;
}

/* 底部 */


/*手机端导航*/
.mobile-header {
    display: none;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 999;
}

.mobile-header-nav {
    padding: 0 4%;
    background: #fff;
    display: flex;
    justify-content: flex-end;
    border-bottom: 1px solid #d80c18;
    position: relative;
    z-index: 20;
}

.mobile-header-nav ul {
    display: flex;
}

.mobile-header-nav ul li {
    padding: 0 10px;
    font-size: 14px;
    line-height: 26px;
    position: relative;
}

.mobile-header-nav ul li:before {
    display: block;
    content: '';
    width: 1px;
    height: 14px;
    background: #000;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.mobile-header-nav ul li:first-child {
    padding-right: 24px;
}

.mobile-header-nav ul li:first-child:before {
    width: 14px;
    height: 1px;
    left: auto;
    right: 0;
}

.mobile-header-nav ul li:nth-child(2):before {
    display: none;
}

.mobile-header-nav ul li.on a {
    color: #d80c18 !important;
}

.mobile-header-box {
    /*padding: 10px 0;*/
    background: #fff;
    background-size: cover;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    position: relative;
    height: 55px;
    zoom: 1;
    z-index: 20;
}

.mobile-header-box:after {
    display: block;
    content: '';
    clear: both;
}

.mobile-logo {
    float: left;
    width: 43px;
    padding-top: 2px;
    margin-left: 2%;
}

.mobile-logo img {
    display: block;
}

.mobile-inner-header-icon {
    color: #d80c18;
    height: 55px;
    font-size: 25px;
    text-align: center;
    width: 55px;
    position: relative;
    -webkit-transition: background 0.5s;
    -moz-transition: background 0.5s;
    -o-transition: background 0.5s;
    transition: background 0.5s;
    position: absolute;
    top: 0px;
    right: 0;
    z-index: 20;
}

.mobile-inner-header-icon span {
    position: absolute;
    left: calc((100% - 25px) / 2);
    top: calc((100% - 5px) / 2);
    width: 30px;
    height: 3px;
    background-color: #333;
    transition-duration: 0.5s;
}

.mobile-inner-header-icon span:nth-child(1) {
    transform: translateY(10px) rotate(0deg);
}

.mobile-inner-header-icon span:nth-child(2) {
    transform: translateY(-10px) rotate(0deg);
}

.mobile-inner-header-icon span:nth-child(3) {
    width: 20px;
}

.active_mobile span:nth-child(3) {
    opacity: 0;
}

.active_mobile span:nth-child(1) {
    transform: rotate(45deg);
    width: 30px;
}

.active_mobile span:nth-child(2) {
    transform: rotate(-45deg);
    width: 30px;
}

.mobile-search {
    float: right;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #333;
    margin-top: 8px;
    margin-right: 64px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mobile-search .iconfont {
    color: #333;
    font-size: 20px;
}

.mobile-panel {
    display: none;
    position: fixed;
    width: 100%;
    height: 100vh;
    background: #fff;
    right: 0;
    top: 0;
    z-index: 10;
    padding-top: 62px;
    overflow-y: scroll;
}

.mobile-menu {
    width: 100%;
}

.mobile-menu ul li {
    font-size: 16px;
    line-height: 1.6;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.mobile-menu ul li>a {
	background: #fff !important;
    color: #333;
    display: block;
    padding: 10px 4%;
    position: relative;
}

.down-p>a:before {
    display: block;
    content: '';
    width: 16px;
    height: 9px;
    background: url(../images/mobile-jt.png) no-repeat;
    background-size: 100% 100%;
    position: absolute;
    right: 4%;
    top: 50%;
    margin-top: -4.5px;
    transition-duration: 0.5s;
}

.mobile-menu ul li.hover>a {
    background: #ccc !important;
}

.mobile-menu ul li.hover>a:before {
    transform: rotate(180deg);
}

.mobile-menu ul li dl {
    display: none;
    padding: 0 20px 10px;
    background: #ddd;
}

.mobile-menu ul li dl dd {
    font-size: 14px;
    line-height: 2;
}

.other-web {
    width: 280px;
    padding-left: 10px;
    position: absolute;
    top: 7px;
    left: 0;
    display: flex;
    flex-wrap: wrap;
}

.other-web-info {
    display: inline-block;
}

.webBtn-icon {
    width: 36px;
    margin: 0 auto;
}

.webBtn-icon img {
    display: block;
    width: 100%;
}

.other-web-info p {
    font-size: 14px;
    color: #fff;
    line-height: 32px;
}

.pageN p {
    font-size: 16px !important;
    color: #f1c97b !important;
}

.mobile-mask {
    display: none;
    position: fixed;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    top: 0;
    left: 0;
    z-index: 8;
}

.fixed-right{
	position: fixed;
	right: 0.42rem;
	bottom: 0.8rem;
	z-index: 99;
}
.fixed-right-icon{
	width: 1.01rem;
	position: relative;
	cursor: pointer;
}
.fixed-right-icon img{
	display: block;
	width: 100%;
}
.fixed-right-show{
	width: 2.0rem;
	background: #fff;
	box-shadow: 0 0 2px 1px #e1e1e1;
	position: absolute;
	right: 100%;
	top: 50%;
	transform: translate(30px,-50%);
	opacity: 0;
	visibility: hidden;
	transition-duration: 0.5s;
}
.fixed-right:hover .fixed-right-show{
	transform: translate(0,-50%);
	opacity: 1;
	visibility: visible;
}
.fixed-right-tel{
	display: block;
	padding: 0.15rem 0.1rem;
}
.fixed-right-tel p:nth-child(1){
	font-size: 0.18rem;
	color: #333;
	line-height: 1.4;
}
.fixed-right-tel p:nth-child(2){
	font-size: 0.24rem;
	color: #d80c18;
	font-weight: bold;
	line-height: 1.4;
}
.fixed-right-ewm{
	padding: 0.15rem 0.1rem;
	border-top: 1px dashed #d1d1d1;
}
.fixed-right-ewm p{
	font-size: 0.18rem;
	color: #333;
	line-height: 1.4;
	margin-bottom: 0.1rem;
}
.fixed-right-ewm img{
	display: block;
	width: 1rem;
}

@media only screen and (max-width: 1440px) {
	.w1308{
		width: 86%;
	}
}

@media only screen and (max-width: 1366px) {
	.header{
		padding: 0 7%;
	}
}

@media only screen and (max-width: 1088px) {

    html {
        font-size: 5.8666vw !important;
    }
}

@media only screen and (max-width: 1090px) {
    .w1460 {
        width: 86%;
    }
}

@media only screen and (max-width: 1080px) {
    .footer-ewm-list {
        width: 1.2rem;
    }
}

@media only screen and (max-width: 769px) {}

@media only screen and (max-width: 540px) {
    html {
        font-size: 13.3333vw !important;
    }

    .header {
        display: none;
    }

    .mobile-header {
        display: block;
    }

	.w1308{
		width: 92%;
	}
	.fixed-right-icon{
		width: 51px;
	}
	.footinput{
		display: block;
	}
	.footinput .footer-title{
		width: 100%;
		font-size: 18px;
		margin-bottom: 5px !important;
	}
	.footinput ul{
		width: 100%;
		height: auto;
		display: block;
	}
	.footinput li{
		width: 100%;
		height: 30px;
		margin-right: 0;
		margin-bottom: 10px;
	}
	.footinput li input{
		font-size: 14px;
	}
	.footinput li:nth-child(3){
		width: 100%;
	}
	.footinput li .btn{
		top: 0;
		right: 0;
		width: 80px;
		height: 30px;
		font-size: 16px;
		line-height: 30px;
	}
	.footer-content-fc{
		width: 100%;
	}
	.footer-title{
		width: 100%;
		font-size: 18px;
		margin-bottom: 5px !important;
	}
	.footer-content-fc ul li{
		width: 50%;
		font-size: 14px;
		line-height: 1.6;
	}
	.footer-content-fr{
		width: 100%;
		margin-left: 0;
		margin-top: 0;
	}
	.footer-content-fr p{
		font-size: 14px;
		line-height: 1.6;
	}
	.footer-ewm{
		float: left !important;
		margin-top: 10px;
	}
	.footer-ewm ul li{
		width: 30px;
		height: 30px;
	}
	.footer-ewm ul li .iconfont{
		font-size: 15px;
	}
	.footer-ewm ul li:nth-child(1) .iconfont{
		font-size: 20px;
	}
	.footer-ewm ul li:nth-child(2) .iconfont{
		font-size: 25px;
	}
	.wx-ewm-list{
		width: 90px;
	}
	.wx-ewm-list p{
		font-size: 14px;
	}
	.footer-beian .w1308{
		display: block;
	}
	.footer-beian p{
		width: 100%;
		font-size: 14px;
		line-height: 1.6;
	}
}

@keyframes icon-bounce {

    0%,
    100% {
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    25% {
        -moz-transform: rotate(15deg);
        -ms-transform: rotate(15deg);
        -webkit-transform: rotate(15deg);
        transform: rotate(15deg);
    }

    50% {
        -moz-transform: rotate(-15deg);
        -ms-transform: rotate(-15deg);
        -webkit-transform: rotate(-15deg);
        transform: rotate(-15deg);
    }

    75% {
        -moz-transform: rotate(5deg);
        -ms-transform: rotate(5deg);
        -webkit-transform: rotate(5deg);
        transform: rotate(5deg);
    }

    85% {
        -moz-transform: rotate(-5deg);
        -ms-transform: rotate(-5deg);
        -webkit-transform: rotate(-5deg);
        transform: rotate(-5deg);
    }
}

@-webkit-keyframes icon-bounce {

    0%,
    100% {
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    25% {
        -moz-transform: rotate(15deg);
        -ms-transform: rotate(15deg);
        -webkit-transform: rotate(15deg);
        transform: rotate(15deg);
    }

    50% {
        -moz-transform: rotate(-15deg);
        -ms-transform: rotate(-15deg);
        -webkit-transform: rotate(-15deg);
        transform: rotate(-15deg);
    }

    75% {
        -moz-transform: rotate(5deg);
        -ms-transform: rotate(5deg);
        -webkit-transform: rotate(5deg);
        transform: rotate(5deg);
    }

    85% {
        -moz-transform: rotate(-5deg);
        -ms-transform: rotate(-5deg);
        -webkit-transform: rotate(-5deg);
        transform: rotate(-5deg);
    }
}

@-moz-keyframes icon-bounce {

    0%,
    100% {
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    25% {
        -moz-transform: rotate(15deg);
        -ms-transform: rotate(15deg);
        -webkit-transform: rotate(15deg);
        transform: rotate(15deg);
    }

    50% {
        -moz-transform: rotate(-15deg);
        -ms-transform: rotate(-15deg);
        -webkit-transform: rotate(-15deg);
        transform: rotate(-15deg);
    }

    75% {
        -moz-transform: rotate(5deg);
        -ms-transform: rotate(5deg);
        -webkit-transform: rotate(5deg);
        transform: rotate(5deg);
    }

    85% {
        -moz-transform: rotate(-5deg);
        -ms-transform: rotate(-5deg);
        -webkit-transform: rotate(-5deg);
        transform: rotate(-5deg);
    }
}

@-o-keyframes icon-bounce {

    0%,
    100% {
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    25% {
        -moz-transform: rotate(15deg);
        -ms-transform: rotate(15deg);
        -webkit-transform: rotate(15deg);
        transform: rotate(15deg);
    }

    50% {
        -moz-transform: rotate(-15deg);
        -ms-transform: rotate(-15deg);
        -webkit-transform: rotate(-15deg);
        transform: rotate(-15deg);
    }

    75% {
        -moz-transform: rotate(5deg);
        -ms-transform: rotate(5deg);
        -webkit-transform: rotate(5deg);
        transform: rotate(5deg);
    }

    85% {
        -moz-transform: rotate(-5deg);
        -ms-transform: rotate(-5deg);
        -webkit-transform: rotate(-5deg);
        transform: rotate(-5deg);
    }
}

@keyframes changeScale {
    0% {
        transform: scale(1.1, 1.1);
        -o-transform: scale(1.1, 1.1);
        -ms-transform: scale(1.1, 1.1);
        -moz-transform: scale(1.1, 1.1);
        -webkit-transform: scale(1.1, 1.1);
        opacity: .2;
    }

    100% {
        transform: scale(1, 1);
        -o-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -webkit-transform: scale(1, 1);
        opacity: 1
    }
}

@-moz-keyframes changeScale {
    0% {
        transform: scale(1.1, 1.1);
        -o-transform: scale(1.1, 1.1);
        -ms-transform: scale(1.1, 1.1);
        -moz-transform: scale(1.1, 1.1);
        -webkit-transform: scale(1.1, 1.1);
        opacity: .2;
    }

    100% {
        transform: scale(1, 1);
        -o-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -webkit-transform: scale(1, 1);
        opacity: 1
    }
}

@-webkit-keyframes changeScale {
    0% {
        transform: scale(1.1, 1.1);
        -o-transform: scale(1.1, 1.1);
        -ms-transform: scale(1.1, 1.1);
        -moz-transform: scale(1.1, 1.1);
        -webkit-transform: scale(1.1, 1.1);
        opacity: .2;
    }

    100% {
        transform: scale(1, 1);
        -o-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -webkit-transform: scale(1, 1);
        opacity: 1
    }
}

@-o-keyframes changeScale {
    0% {
        transform: scale(1.1, 1.1);
        -o-transform: scale(1.1, 1.1);
        -ms-transform: scale(1.1, 1.1);
        -moz-transform: scale(1.1, 1.1);
        -webkit-transform: scale(1.1, 1.1);
        opacity: .2;
    }

    100% {
        transform: scale(1, 1);
        -o-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -webkit-transform: scale(1, 1);
        opacity: 1
    }
}