.tx_left{
	text-align: left;
}
.font12 {
	font-size: 12px;
}

.font14 {
	font-size: 14px;
}
.font15{
	font-size: 15px;
}
.font16 {
	font-size: 16px;
}

.font18 {
	font-size: 18px;
}

.font20 {
	font-size: 20px;
}
.font21{
	font-size: 21px;
}
.font22 {
	font-size: 22px;
}

.font25 {
	font-size: 25px;
}

.font26 {
	font-size: 26px;
}

.font27 {
	font-size: 27px;
}

.font28 {
	font-size: 28px;
}

.font32 {
	font-size: 32px;
}

.font36 {
	font-size: 36px;
}

.font30 {
	font-size: 30px;
}

.font34 {
	font-size: 34px;
}

.font24 {
	font-size: 24px;
}

.font40 {
	font-size: 40px;
}
.font42 {
	font-size: 42px;
}

.font45 {
	font-size: 45px;
}
.font46 {
	font-size: 46px;
}

.font48 {
	font-size: 48px;
}
.font50 {
	font-size: 50px;
}

.font54 {
	font-size: 54px;
}

.font60 {
	font-size: 60px;
}

.font80 {
	font-size: 80px;
}

.f0 {

	color: #000;
}

.f3 {
	color: #333333;
}

.f6 {
	color: #666666;
}

.f9 {
	color: #999999;
}

.fa3 {
	color: #a3a3a3;
}

.fd3 {
	color: #d35336;
}

.fe6 {
	color: #e60012;
}

.fw {
	color: #FFFFFF;
}

.fc {
	color: #CCCCCC;
}

.f12 {
	color: #12957f;
}

.flex {
	display: flex;
	justify-content: center;
	align-items: center;
}

.flex2 {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.fontS {
	writing-mode: vertical-rl;
	writing-mode: tb-rl;
}
.line24 {
	line-height: 24px;
}
.line28 {
	line-height: 28px;
}

.line30 {
	line-height: 30px;
}
.line36 {
	line-height: 36px;
}
.mt5 {
	margin-top: 5px;
}
.mt10 {
	margin-top: 10px;
}

.mt15 {
	margin-top: 15px;
}

.mt20 {
	margin-top: 20px;
}

.mt25 {
	margin-top: 25px;
}

.mt30 {
	margin-top: 30px;
}

.mt40 {
	margin-top: 40px;
}

.mt50 {
	margin-top: 50px;
}

.mt60 {
	margin-top: 60px;
}

.mt70 {
	margin-top: 70px;
}

.mt80 {
	margin-top: 80px;
}
.mt90{
	margin-top: 90px;
}
.mt100 {
	margin-top: 100px;
}

.mt110 {
	margin-top: 110px;
}

.mt130 {
	margin-top: 130px;
}

.mt160 {
	margin-top: 160px;
}

.mt120 {
	margin-top: 120px;
}

.relative {
	position: relative;
}

.absolute {
	position: absolute;
}

.none {
	display: none;
}

.bgnone {
	background: none;
}

.block {
	display: block;
}

.bw {
	background: #FFFFFF;
}

.center {
	text-align: center;
}

.border_c {
	border: 1px #ccc solid;
}
.border0{
	border-bottom: 0;
}

.red {
	color: #c60909;
}

.green {
	color: #008c6c;
}

.shadow {
	box-shadow: 5px 8px 10px #eee;
}

.none {
	display: none;
}

.blue {
	color: #0966bd;
}
.opc5{
	opacity: 0.5;
}
.upp{
	text-transform: uppercase;
}



#animat {

	animation: mymove 0.5s infinite;
	-webkit-animation: mymove 0.5s infinite;
	/*Safari and Chrome*/
	animation-direction: alternate;
	/*轮流反向播放动画。*/
	animation-timing-function: ease-in-out;
	/*动画的速度曲线*/
	/* Safari 和 Chrome */
	-webkit-animation: mymove 0.5s infinite;
	-webkit-animation-direction: alternate;
	/*轮流反向播放动画。*/
	-webkit-animation-timing-function: ease-in-out;
	/*动画的速度曲线*/
}

@keyframes mymove {
	0% {
		margin-top: 0;
	}

	100% {
		margin-top: 10px;
	}
}

@-webkit-keyframes mymove {
	0% {
		margin-top: 0;
	}

	100% {
		margin-top: 10px;
	}
}

#animat2 {
	animation: mymove2 0.5s infinite;
	-webkit-animation: mymove2 0.5s infinite;
	/*Safari and Chrome*/
	animation-direction: alternate;
	/*轮流反向播放动画。*/
	animation-timing-function: ease-in-out;
	/*动画的速度曲线*/
	/* Safari 和 Chrome */
	-webkit-animation: mymove2 0.5s infinite;
	-webkit-animation-direction: alternate;
	/*轮流反向播放动画。*/
	-webkit-animation-timing-function: ease-in-out;
	/*动画的速度曲线*/
}

@keyframes mymove2 {
	0% {
		right: -50px;
	}

	100% {
		right: -55px;
	}
}

@-webkit-keyframes mymove2 {
	0% {
		right: -50px;
	}

	100% {
		right: -55px;
	}
}

#animat3 {

	animation: mymove3 10s linear infinite;
	-webkit-animation: mymove3 10s linear infinite;
}

@keyframes mymove3 {
	0% {
		-webkit-transform: rotate(0deg);
	}

	25% {
		-webkit-transform: rotate(90deg);
	}

	50% {
		-webkit-transform: rotate(180deg);
	}

	75% {
		-webkit-transform: rotate(270deg);
	}

	100% {
		-webkit-transform: rotate(360deg);
	}
}

@-webkit-keyframes mymove3 {
	0% {
		-webkit-transform: rotate(0deg);
	}

	25% {
		-webkit-transform: rotate(90deg);
	}

	50% {
		-webkit-transform: rotate(180deg);
	}

	75% {
		-webkit-transform: rotate(270deg);
	}

	100% {
		-webkit-transform: rotate(360deg);
	}
}
.wid50{
	width: 50%;
}
.wid100{
	width: 100%;
}
.deng{
	/* font-family: "等线"; */
}
.bold{
	font-weight: bold;
}
.radio10{
	border-radius: 10px;
}
.space0{
	letter-spacing: 0;
}
.space1{
	letter-spacing: 1px;
}
.space2{
	letter-spacing: 2px;
}
.space3{
	letter-spacing:3px;
}
.space4{
	letter-spacing: 4px;
}


@media screen and (max-width:767px) {
	.font16{
		font-size: 14px;
	}
	.line36{
		line-height: 28px;
	}
	.font20,
	.font21,
	.font22,
	.font24,
	.font25,
	.font26,
	.font27,
	.font45,
	.font46,
	.font50{
		font-size: 16px;
	}

	.font30,
	.font32,
	.font34,
	.font36,
	.font40,
	.font48,
	.font60 {
		font-size: 22px;
	}

	.mt30,
	.mt40,
	.mt50,
	.mt60 {
		margin-top: 20px;
	}

	.mt70,
	.mt80,
	.mt90,
	.mt100,
	.mt110,
	.mt120,
	.mt130 {
		margin-top: 25px;
	}

	.mt160 {
		margin-top: 35px;
	}
}

@media screen and (min-width: 768px) and (max-width:992px) {

	.font20,
	.font21,
	.font22,
	.font24,
	.font25,
	.font27,
	.font45 {
		font-size: 16px;
	}

	.font30,
	.font32,
	.font35,
	.font34,
	.font40,
	.font46,
	.font48,
	.font50,
	.font60 {
		font-size: 28px;
	}

	.mt30,
	.mt40,
	.mt50,
	.mt60 {
		margin-top: 20px;
	}

	.mt70,
	.mt80,
	.mt90,
	.mt100,
	.mt110,
	.mt120,
	.mt130 {
		margin-top: 25px;
	}
}
