@charset "utf-8";
/*---------------- html ----------------*/
*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	/* overflow: hidden; */
	list-style: none;
	text-decoration: none;
	box-sizing: border-box;
	font-weight: normal;
	font-family: "siyuan", "PingFangSC-Light", "Noto Sans CJK", "Helvetica Neue", sans-serif;
}

*:focus{
	outline: none;
}

img{
	display: inline-block;
	margin: 0;
	border: 0;
}

b, strong{
	font-weight: bold;
}

video {
    background-size: cover;
    display: table-cell;
    vertical-align: middle;
    width: 100%;
}

input{
    -webkit-appearance: none;
}

input:focus, textarea:focus{
    border-color: #585858;
}

::-webkit-input-placeholder {
    color: #939393;
    text-overflow: ellipsis;
}

::-moz-placeholder {
    color: #939393;
    text-overflow: ellipsis;
    opacity: 1;
}

::-ms-input-placeholder {
    color: #939393;
    text-overflow: ellipsis;
    opacity: 1;
}

html,body{
	width:100%;
	height:auto;
	min-height: 100%;
	overflow:auto;
	background: #f4f4f4;
    color: #000;
    font-size: 16px;
    font-weight: lighter;
    font-smoothing: antialiased;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -moz-osx-font-smoothing: grayscale;
}

a{
    color: #000;
}

a:hover, a:active, a:focus{
    color: #d80c24;
}

p{
    font-size: 16px;
}

h2{
	font-size: 40px;
	line-height: 48px;
}

h3{
    font-size: 30px;
}

h4{
    font-size: 26px;
}

h5{
    font-size: 20px;
}

h6{
    font-size: 14px;
}
/*---------------- layout ----------------*/
#wrapper{
	width: 100%;
	height: auto;
	position: relative;
}

.lg{
	display: block;
}

.md{
	display: block;
}

.sm{
	display: block;
}

.xs{
	display: none;
}

.container, .content, .main{
	height: auto;
	margin: 0 auto;
}

.max{
	width: 100%;
	height: auto;
	position: relative;
}

.max-pic{
	width: 100%;
	height: auto;
}

.max-pic img{
	display: block;
	margin: 0 0 0 50%;
	transform: translate(-50%,0);
	-webkit-transform: translate(-50%,0);
	-moz-transform: translate(-50%,0);
}


.box{
	width: 100%;
	height: auto;
	float: left;
	position: relative;
}

.fh{
	height: 100%;
}

.vb{
	overflow: visible;
}

.fl{
	float: left;
}

.fr{
	float: right;
}

.clear{
	clear: both;
}

.hide{
	display: none;
}


/*---------------- trans ----------------*/
.trans-03, .trans-03 *{
	transition: all .3s;
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-ms-transition: all .3s;
	-o-transition: all .3s;
}

.trans-04, .trans-04 *{
	transition: all .4s;
	-webkit-transition: all .4s;
	-moz-transition: all .4s;
	-ms-transition: all .4s;
	-o-transition: all .4s;
}

.trans-05, .trans-05 *{
	transition: all .5s;
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	-ms-transition: all .5s;
	-o-transition: all .5s;
}


/*---------------- overlay ----------------*/
#black{
	width:100%;
	height:100%;
	background: rgba(0,0,0,.8);
	position:absolute;
	left:0;
	top:0;
	z-index:2000;
	opacity:0;
	filter:alpha(opacity=0);
	display:none;
	transition: all .5s linear;
	-webkit-transition: all .5s linear;
	-moz-transition: all .5s linear;
}

#black.show{
	opacity:1;
	filter:alpha(opacity=100);
}

#mask{
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.5);
	position: absolute;
	left: 0;
	top: 0;
	z-index: 2000;
	opacity: 0;
	filter: alpha(opacity=0);
	-webkit-filter: alpha(opacity=0);
	display: none;
	transition: all .5s linear;
	-webkit-transition: all .5s linear;
	-moz-transition: all .5s linear;
	-ms-transition: all .5s linear;
	-o-transition: all .5s linear;
}

#mask.show{
	opacity: 1;
	filter: alpha(opacity=100);
	-webkit-filter: alpha(opacity=100);
}

/*---------------- public ----------------*/
.black{
	color: #000000;
}

.white{
	color: #ffffff;
}

/* link line */
.link-line{
	position: relative;
	overflow: visible;
	transition: all .4s ease-out;
	-webkit-transition: all .4s ease-out;
	-moz-transition: all .4s ease-out;
	-ms-transition: all .4s ease-out;
	-o-transition: all .4s ease-out;
}

.link-line::before{
	content: " ";
	width: 0px;
	height: 2px;
	display: block;
	background: #d80c24;
	position: absolute;
	left: 0;
	bottom: 0;
	transition: all .4s ease-out;
	-webkit-transition: all .4s ease-out;
	-moz-transition: all .4s ease-out;
	-ms-transition: all .4s ease-out;
	-o-transition: all .4s ease-out;
}

.link-line:hover{
	color: #d80c24;
}

.link-line:hover::before{
	width: 100%;
}

/* btn */
.btn{
	width: 120px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	overflow: visible;
	border: 1px solid #d9d9d9;
	color: #000000;
	font-size: 14px;
	font-family: "siyuan";
	transition: all .4s ease-out;
	-webkit-transition: all .4s ease-out;
	-moz-transition: all .4s ease-out;
	-ms-transition: all .4s ease-out;
	-o-transition: all .4s ease-out;
}

.btn.big{
	width: 160px;
}

.btn.btn-submit{
	width: 314px;
	height: 60px;
	background: #000000;
	color: #ffffff;
	font-size: 16px;
}

.btn.white{
	border-color: #ffffff;
	color: #ffffff;
}

.btn.xs-white{
	border-color: #ffffff;
	color: #ffffff;
}

.btn span{
	z-index: 2;
}

.btn span i{
	color: #d80c24;
	font-style: normal;
	transition: all .4s ease-out;
	-webkit-transition: all .4s ease-out;
	-moz-transition: all .4s ease-out;
	-ms-transition: all .4s ease-out;
	-o-transition: all .4s ease-out;
}

.btn:hover{
	background: rgba(255, 255, 255, 0);
	border-color: rgba(0, 0, 0, 0);
	color: #ffffff;
}

.btn:hover span i{
	color: #ffffff;
}

.btn::before{
	content: " ";
	width: 0;
	height: 100%;
	display: block;
	background: #d80c24;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	transition: all .4s ease-out;
	-webkit-transition: all .4s ease-out;
	-moz-transition: all .4s ease-out;
	-ms-transition: all .4s ease-out;
	-o-transition: all .4s ease-out;
}

.btn:hover::before{
	width: 100%;
}
/* ih */
.ih, .ih a, .ih div, .ih img, .ih p, .ih span, .ih h1, .ih h2, .ih h3, .ih h4, .ih h5, .ih *{
	transition: all .4s ease-in-out;
	-webkit-transition: all .4s ease-in-out;
	-moz-transition: all .4s ease-in-out;
	-ms-transition: all .4s ease-in-out;
	-o-transition: all .4s ease-in-out;
}

.ih:hover{
	background: #505050;
}

.ih:hover .zoom img{
	transform: scale(1.05);
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-ms-transform: scale(1.05);
	-o-transform: scale(1.05);
}

.ih:hover a, .ih:hover *, .ih:hover .info *{
	color: #ffffff;
}

.ih:hover a:hover{
	color: #d80c24;
}

/* zoom */
.zoom{
	width: 100%;
	height: auto;
	float: left;
}

.zoom img{
	width: 100%;
	display: block;
	transition: all .4s ease-in-out;
	-webkit-transition: all .4s ease-in-out;
	-moz-transition: all .4s ease-in-out;
	-ms-transition: all .4s ease-in-out;
	-o-transition: all .4s ease-in-out;
}

.zoom:hover img{
	transform: scale(1.05,1.05);
	-webkit-transform: scale(1.05,1.05);
	-moz-transform: scale(1.05,1.05);
	-ms-transform: scale(1.05,1.05);
	-o-transform: scale(1.05,1.05);
}

/* icon */
.icon{
	width: 50px;
	height: 50px;
	display: block;
	float: left;
	background: #2b2c27;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	text-align: center;
	line-height: 50px;
	transition: all .4s;
	-webkit-transition: all .4s;
	-moz-transition: all .4s;
	-ms-transition: all .4s;
	-o-transition: all .4s;
}

.icon i{
	color: #191919;
	font-size: 24px;
	transition: all .4s;
	-webkit-transition: all .4s;
	-moz-transition: all .4s;
	-ms-transition: all .4s;
	-o-transition: all .4s;
}

.icon:hover{
	background: #191919;
}

.icon:hover i{

	color: #ffffff;
}

/* dy select */
.dy-select{
	width: 280px;
	height: 56px;
	position: relative;
	overflow: visible;
}

.dy-select *{
	transition: all .5s ease-out;
	-webkit-transition: all .5s ease-out;
	-moz-transition: all .5s ease-out;
	-ms-transition: all .5s ease-out;
	-o-transition: all .5s ease-out;
}

.dy-select-title, .dy-select-title a{
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 2;
	background: #f0f0f0;
	line-height: 56px;
}

.dy-select.show .dy-select-title{
	z-index: 200;
}

.dy-select-title a span{
	float: left;
	padding: 0 20px;
	color: #000000;
	font-size: 16px;
}

.dy-select:hover .dy-select-title a span, .dy-select.show .dy-select-title a span{
	color: #d80c24;
}

.dy-select-title a i{
	width: 56px;
	height: 56px;
	display: block;
	float: right;
	background: url(../images/select-arrow-white.png) no-repeat 21px 23px #191919;
	background-size: 14px;
}

.dy-select:hover .dy-select-title a i, .dy-select.show .dy-select-title a i{
	background-color: #d80c24;
	background-position-y: 28px;
}

/* normal */
.dy-select-title.normal, .dy-select-title.normal a{
	background: #ffffff;
	line-height: 60px;
}

.dy-select-title.normal a{
	border-bottom: 2px solid #918c89;
}

.dy-select-title.normal a span{
	padding: 0;
}

.dy-select-title.normal a i{
	width: 14px;
	background: url(../images/select-arrow-gray.png) no-repeat 0 28px ;
	background-size: 14px;
}

.dy-select:hover .dy-select-title.normal a i, .dy-select.show .dy-select-title.normal a i{
	background-color: transparent;
	background-position-y: 30px;
}

/* dy select line */
.dy-select.line .dy-select-title, .dy-select .dy-select-title a, .dy-select.line .dy-select-title.normal a, .dy-select.line .dy-select-title.normal a{
	background: none;
}

.dy-select.line:hover .dy-select-title.normal a, .dy-select.line.show .dy-select-title.normal a{
	background: none;
	border-color: #d80c24;
}

.dy-select.line:hover .dy-select-title a i{
	background-image: url(../images/select-arrow-red.png);
}

.dy-select.line.show .dy-select-title a i{
	background-image: url(../images/select-arrow-red.png);
	transform: translate3d(0, 8px, 0) rotate(180deg);
	-webkit-transform: translate3d(0, 8px, 0) rotate(180deg);
	-moz-transform: translate3d(0, 8px, 0) rotate(180deg);
	-ms-transform: translate3d(0, 8px, 0) rotate(180deg);
	-o-transform: translate3d(0, 8px, 0) rotate(180deg);
}

/* select content */
.dy-select ul{
	width: 100%;
	height: auto;
	display: none;
	padding: 30px 0;
	position: absolute;
	left: 0;
	top: 56px;
	z-index: 1;
	background: #ffffff;
	box-shadow: 0 5px 10px -10px rgba(0, 0, 0, 0.6);
	opacity: 0;
	transform: translate3d(0, -20px, 0);
	-webkit-transform: translate3d(0, -20px, 0);
	-moz-transform: translate3d(0, -20px, 0);
	-ms-transform: translate3d(0, -20px, 0);
	-o-transform: translate3d(0, -20px, 0);
}

.dy-select.show ul{
	z-index: 100;
	opacity: 1;
	transform: translate3d(0, 0, 0);
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
}

.dy-select ul li{
	width: 100%;
	height: 30px;
	padding: 0 25px;
	font-size: 14px;
	line-height: 30px;
}

.dy-select.format ul li:nth-child(1) a{
	font-weight: bold;
}

.dy-select.format ul li:nth-child(5n+1){
	margin-bottom: 30px;
}

.dy-select.format-4 ul li:nth-child(1) a{
	font-weight: bold;
}

.dy-select.format-4 ul li:nth-child(4n+1){
	margin-bottom: 30px;
}

.dy-select ul li a{
	display: inline-block;
}

.dy-select ul li a:hover{
	transform: translate3d(10px, 0, 0);
	-webkit-transform: translate3d(10px, 0, 0);
	-moz-transform: translate3d(10px, 0, 0);
	-ms-transform: translate3d(10px, 0, 0);
	-o-transform: translate3d(10px, 0, 0);
	transition: all .3s ease-in-out;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
}

.dy-select ul li.on a{
	color: #d80c24;
}

/*---------------- bg ----------------*/
.bg-ff{
	background: #ffffff;
}

.bg-f6{
	background: #f6f6f6;
}

.bg-00{
	background: #000000;
}

.bg-d80c24{
	background: #d80c24;
}

.bg-f6c400{
	background: #f6c400;
}

.bg-0d15f9{
	background: #0d15f9;
}

.bg-6db926{
	background: #6db926;
}

/*---------------- color ----------------*/
.t-00, .btn.t-00{
	color: #000000;
}

.t-ff, .btn.t-ff{
	color: #ffffff;
}

/*---------------- animate ----------------*/