/* 全局共用 */

* {
	padding: 0;
	margin: 0;
	touch-action: pan-y;
}

body, html {
	width: 100%;
	min-width: 1240px;
}

body, td, input, textarea, button {
	color: #444;
	font: 12px 微软雅黑, Microsoft Yahei;
	line-height: 24px;
}

a:link, a:active, a:visited {
	color: #444;
	text-decoration: none;
}

a:hover, a:focus {
	text-decoration: underline;
	-moz-transition: background-color, color, 0.3s;
	-o-transition: background-color, color, 0.3s;
	-webkit-transition: background-color, color, 0.3s;
	transition: background-color, color, 0.3s;
	color: #b58c3c;
}

img {
	border: none;
}

form {
	margin: 0px;
	padding: 0px;
}

input:focus, textarea:focus, a:focus, select:focus {
	outline: none;
}

ul, li {
	margin: 0px;
	padding: 0px;
	list-style-type: none;
}

.nowrap {
	white-space: nowrap;
	text-overflow: ellipsis;
	-o-text-overflow: ellipsis;
	overflow: hidden;
}

.clear {
	clear: both;
}

.hide {
	display: none;
}

.right {
	float: right;
}

.left {
	float: left;
}

.hand {
	cursor: pointer;
}

.tips {
	height: auto;
	padding: 5px 20px;
	background: #666;
	color: #fff;
	line-height: 18px;
	position: fixed;
	z-index: 1000;
	top: 40%;
	left: 50%;
	FILTER: alpha(opacity=0);
	opacity: 0;
	font-size: 0.75em;
	text-align: center;
	border-radius: 15px;
}

.maskbg {
	width: 100%;
	height: 100%;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 1000;
	background: rgba(0, 0, 0, 0.6);
	display: none;
	overflow: auto;
}
.maskbgc {
	width: 100%;
	height: 100%;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 1000;
	background: rgba(0, 0, 0, 1);
	display: none;
	overflow: auto;
}

/* placeholder颜色 */

::-webkit-input-placeholder {
	color: #999;
}

:-moz-placeholder {
	color: #999;
}

::-moz-placeholder {
	color: #999;
}

:-ms-input-placeholder {
	color: #999;
}

/* 头部 */

.head {
	width: 100%;
	height: 110px;
	background: rgba(255, 255, 255, 0.95);
	position: relative;
	display: block;
}

.logo {
	width: 400px;
    height: 110px;
	display: flex;
    justify-content: center;
    align-items: center;

	overflow: hidden;
	/* margin: 32px 0 0 270px; */
	float: left;
}
.logobox img{
	width: 100%;

}
.logobox{

	width: 150px;


}

/*导航栏*/

.navi, .navi ul, .navi ul li, .navi ul li a {
	margin: 0;
	padding: 0;
	border: 0;
	list-style: none;
	line-height: 1;
	display: block;
	position: relative;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.navi {
	height: 60px;
	float: left;
	padding-top: 38px;
}

.navi>ul>li {
	float: left;
	margin: 0 38px;
}

.navi>ul>li:after {
	content: "";
	position: absolute;
	width: 2px;
	height: 1px;
	left: 0;
	top: 5px;
	z-index: 9;
	background: transparent;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.navi>ul>li:hover,.navi>ul>li.on {
	color: #b58c3c;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.navi>ul>li:hover:after,.navi>ul>li.on:after {
	width: 100%;
	background: #cfa346;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.navi>ul>li>a {
	font-size: 15px;
	line-height: 65px;
	text-decoration: none;
	text-transform: uppercase;
	-webkit-transition: color .3s ease;
	-moz-transition: color .3s ease;
	-ms-transition: color .3s ease;
	-o-transition: color .3s ease;
	transition: color .3s ease;
}

.navi>ul>li:hover>a,.navi>ul>li.on>a {
	color: #b58c3c;
}

.navi ul ul {
	width: 180px;
	position: absolute;
	left: -9999px;
	z-index: 1000;
}

.navi li:hover>ul {
	left: -30px;
}

.navi ul ul ul {
	margin-left: 100%;
	top: 0;
}

.navi ul ul li {
	height: 0;
	-webkit-transition: height .3s ease;
	-moz-transition: height .3s ease;
	-ms-transition: height .3s ease;
	-o-transition: height .3s ease;
	transition: height .3s ease;
}

.navi ul ul li:after {
	content: "";
	background: url(https://file.suofeiya.com.cn/v/ac103cf2-4443-44b4-a9d1-a65b84bf8a81) left center no-repeat;
	position: absolute;
	width: 1px;
	height: 7px;
	right: 10px;
	top: 22px;
	z-index: 9;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.navi ul li:hover>ul>li {
	height: 50px;
}

.navi ul ul li a {
	padding: 20px 0 20px 30px;
	font-size: 14px;
	background: #f1e8da;
	text-decoration: none;
	color: #775043;
	-webkit-transition: color .3s ease;
	-moz-transition: color .3s ease;
	-ms-transition: color .3s ease;
	-o-transition: color .3s ease;
	transition: color .3s ease;
}

.navi ul ul li:hover>a, .navi ul ul li a:hover, .navi ul ul li.on a {
	color: #fff;
	background: #b49c8e;
	font-weight: bold;
}

.navi ul ul li:hover:after, .navi ul ul li.on:after {
	width: 36px;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
.navi ul ul li.on:after {
	width: 0px;
}

.topbar {
	height: 33px;
	padding-top: 5px;
	width: 700px;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 100;
	font-size: 12px;
}
.topbar img {
	height: 18px;
	vertical-align: middle;
	margin-right: 10px;
}
.toplang {
	width: 150px;
	height: 30px;
	line-height: 30px;
	float: right;
}
.topseek {
	width: 90px;
	line-height: 30px;
	float: right;
	margin-right: 20px;
	overflow: hidden;
	position: relative;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
.topseek input {
	display: block;
	width: 0px;
	height: 28px;
	line-height: 28px;
	padding: 0 5px;
	border: 0;
	background: transparent;
	border-radius: 3px;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
.topseek span {
	display: block;
	width: 90px;
	height: 28px;
	cursor: pointer;
	overflow: hidden;
	position: absolute;
	top: 0;
	right: 0;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
.topseek.on {
	width: 160px;
}
.topseek.on input {
	width: 148px;
	border: 1px solid #ddd;
	background: #fff;
}
.topseek.on span {
	width: 25px;
}
.topm {
	float: right;
	padding-right: 30px;
	position: relative;
	line-height: 30px;
	cursor: pointer;
}
.topmli {
	width: 150px;
	height: auto;
	overflow: hidden;
	display: none;
	border: 1px solid #ddd;
	border-radius: 3px;
	position: absolute;
	left: -20px;
	top: 30px;
	background: #fff;
	padding: 10px 0;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
.topm:hover .topmli {
	display: block;
}
.topmli a {
	display: block;
	text-decoration: none;
	line-height: 30px;
	text-align: center;
}

/* 页脚 */

.footbox {
	width: 100%;
	height: auto;
	overflow: hidden;
	background: #2d2d2d;
}
.foot {
	width: 100%;
	height: auto;
	padding: 30px 0;
	text-align: center;
	overflow: hidden;
	font-size: 0;
}

.foot ul {
	width: 130px;
	height: auto;
	display: inline-block;
	vertical-align: top;
	border-left: 1px solid #555;
	padding-left: 10px;
	padding-bottom: 10px;
}

.foot ul li {
	height: 30px;
	line-height: 30px;
	overflow: hidden;
	text-align: left;
	color: #ccc;
	font-size: 12px;
}

.foot ul li.father {
	margin-bottom: 10px;
	font-size: 15px;
	line-height: 20px;
	font-weight: bold;
}

.foot ul li a {
	text-decoration: none;
	color: #ccc;
	padding: 0 5px;
}

.foot ul li a:hover {
	background: #775c39;
}

.fbq {
	width: 100%;
	height: 35px;
	overflow: hidden;
	background: rgba(0, 0, 0, 0.7);
	color: #aaa;
	text-align: center;
	line-height: 35px;
}

.fbq a {
	color: #ccc;
}

/* 右侧浮动bar */

.kfbar {
	width: 65px;
	height: auto;
	position: fixed;
	right: 20px;
	top: 50%;
	margin-top: -120px;
	background: rgba(255, 255, 255, 0.9);
	border: 1px dashed #996c33;
	border-radius: 10px;
	z-index: 100;
}
/* 公共导航栏样式 */
.kfbox {
	width: 65px;
	height: 100%;
	float: right;
	position: relative;

}
.kfbar.hidesol{
	width: 34px;
	border: none;
	right: 0;
	background: rgba(255, 255, 255, 0.6);
	visibility: hidden;
	border-radius: 10px 0 0 10px ;
	-webkit-border-radius: 10px 0 0 10px ;
	-moz-border-radius: 10px 0 0 10px ;
	-ms-border-radius: 10px 0 0 10px ;
	-o-border-radius: 10px 0 0 10px ;
}
.kfbar.hidesol .kfitem {
	right: 36px;
}
.kfbar.hidesol .kfico{
	height: 47px;
}
.kfboxclose {
	position: absolute;
    width: 20px;
    height: 20px;
	right: 0;
	top: 5px;
	background: url(https://file.suofeiya.com.cn/v/6db3d5e5-e2d7-4c64-bcd2-f1e93efcce28) no-repeat ;
	z-index: 555;
}
.kfboxshow{
	text-align: center;
    font-size: 20px;
    letter-spacing: -6px;
    color: #ab8557;
	cursor: pointer;
	padding-bottom: 10px;

}
.kfico {
	height: 55px;
	width: 65px;
	padding: 15px 0 5px;
	cursor: pointer;
}
.kfico img.kficon {
	display: block;
	height: 22px;
	margin: 0 auto;
}
.kfbar.hidesol img.kficon{
	/* width: 34px; */
	/* padding-left: 36px; */
}
.kfbar.hidesol .kfbox,.kfbar.hidesol .kfico{
	width: auto;
}
.kfico span {
	display: block;
	padding-top: 3px;
	height: 30px;
	line-height: 30px;
	color: #996c33;
	text-align: center;
}

.kfitem {
	width: 190px;
	height: 300px;
	position: absolute;
	top: 0;
	right: 65px;
	display: none;
}

.kftel {
	width: 180px;
	height: 300px;
	border: 1px solid #b49c8e;
	border-radius: 5px;
	background: #f4efe7;
	overflow: hidden;
}
.kftelt,.kfmat {
	height: 45px;
	line-height: 45px;
	color: #fff;
	background: #b49c8e;
	text-align: center;
	font-size: 16px;
}
.kftelt {
	background: #b49c8e url(https://file.suofeiya.com.cn/v/0f1f4b47-cb67-43b6-8310-74c5f9498c16) 15px center no-repeat;
	background-size: 22px;
}
.kftelc {
	height: auto;
	padding: 20px 0 0 20px;
	font-size: 12px;
	color: #5f4d4a;
	line-height: 200%;
}

.kftel img {
	width: 140px;
	height: auto;
	display: block;
	margin: 20px auto;
}

.kfico:hover .kfitem {
	display: block;
}

.kfico:hover span {
	font-weight: bold;
}

.kfsmall {
	width: 40px;
	height: 40px;
	overflow: hidden;
	position: fixed;
	right: 5px;
	top: 50%;
	background: rgba(255, 255, 255, 0.9);
	border: 1px dashed #ccc;
	border-radius: 50%;
	z-index: 100;
	display: none;
	font-size: 26px;
	text-align: center;
	color: #999;
	cursor: pointer;
}

/* 报名表单 */

.formbox {
	width: 370px;
	height: 480px;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -180px;
	margin-top: -240px;
	background: url(https://file.suofeiya.com.cn/v/1e63858d-35f1-4dac-952e-c4ea41552cbe) left top no-repeat;
	-moz-box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.3);
	-webkit-box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.3);
	box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.3);
	overflow: hidden;
}

.formclose {
	display: block;
	position: absolute;
	width: 32px;
	height: 32px;
	top: 20px;
	right: 20px;
	cursor: pointer;
}

.formrow {
	height: auto;
	overflow: hidden;
	margin: 0 0 15px 35px;
}

.formrow span {
	display: block;
	float: left;
	width: 55px;
	height: 30px;
	line-height: 30px;
	font-size: 14px;
	font-weight: bold;
}

.formrow input {
	display: block;
	width: 240px;
	height: 28px;
	line-height: 30px;
	overflow: hidden;
	border: 0;
	border-bottom: 1px solid #ddd;
	font-size: 14px;
	float: left;
}

.formrow.disclaimerBox {
    width: 80%;
    background: #fff;
}

.disclaimerBox input {
    width: 28px;
    height: 20px;
}

.disclaimerBox span {
    width: auto;
    height: 20px;
    line-height: 20px;
    font-size: 12px;
    font-weight: bold;
}
.disclaimerBox span a {
   color: #26a3eb;
   text-decoration:underline;
    cursor: pointer;
}

.selectrow {
	width: 240px;
	height: auto;
	overflow: hidden;
	border-bottom: 1px solid #ddd;
	float: left;
}

.selectrow select {
	display: block;
	float: left;
	width: 75px;
	height: 28px;
	line-height: 28px;
	border: 0;
	font-size: 14px;
	margin-right: 3px;
	color: #666;
}

.selectrow b {
	display: block;
	height: 28px;
	line-height: 28px;
	padding: 0 13px;
	background: #eee;
	font-size: 14px;
	float: left;
	margin-right: 5px;
	margin-bottom: 5px;
	cursor: pointer;
	font-weight: normal;
}

.selectrow b.on {
	background: #d2ae58;
	color: #fff;
}

.formbtn {
	width: 200px;
	height: 38px;
	line-height: 38px;
	margin: 30px auto;
	border-radius: 20px;
	background: #7d543a;
	color: #fff;
	font-size: 16px;
	text-align: center;
	cursor: pointer;
}

.readDisclaimerContent {
    width: 50%;
    height: 60%;
    position: absolute;
    left: 25%;
    top: 25%;
    background: #fff;
    overflow: hidden;
    border-radius: 10px;
}

.DisclaimerClose {
    display: block;
    position: absolute;
    width: 32px;
    height: 32px;
    top: 10px;
    right: 30px;
    cursor: pointer;
}
.readDisclaimerContent iframe{
    width: 98%;
    height: 98%;
    margin-right: 2%;
    margin-top: 2%;
    border: none;
}

.coverimg img {
	transition: all 0.5s;
}
.coverimg img:hover {
    transform: scale(1.05);
    -ms-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -o-transform: scale(1.05);
}

@media screen and (max-width: 1680px) {
	.logo {
		width: 330px;
		/* margin: 30px 0 0 180px; */
	}
}
@media screen and (max-width: 1500px) {
	.logo {
		width: 350px;
		/* margin: 30px 0 0 150px; */
	}
	.navi>ul>li {
		margin: 0 35px;
	}
	.navi ul ul li a {
		padding: 15px 0 15px 30px;
		font-size: 12px;
	}
	.navi ul li:hover>ul>li {
		height: 40px;
	}
	.navi ul ul li:after {
		top: 15px;
	}
	.navi ul ul {
		width: 160px;
	}
	.topbar img {
		height: 16px;
	}
}
@media screen and (max-width: 1366px) {
	.head {
		height: 100px;
	}
	.logo {
		width: 220px;
		/* margin: 25px 0 0 80px; */
	}
	.navi {
		padding-top: 28px;
	}
	.navi>ul>li {
		margin: 0 30px;
	}
	.navi>ul>li>a {
		font-size: 14px;
	}
}
