/* 全局 */

* {
	padding: 0;
	margin: 0;
}

::-webkit-scrollbar {
	width: 10px;
	height: 10px;
}

::-webkit-scrollbar-thumb {
	background: #555;
}

::-webkit-scrollbar-track {
	/*滚动条里面轨道*/
	background: #ddd;
}

/* @font-face {
    font-family: 'en';
    src: url('../fonts/en.eot'),url('../fonts/en.woff') format('woff'),url('../fonts/en.ttf') format('truetype'),url('../fonts/en.svg') format('svg');
    font-weight: normal;
    font-style: normal;
} */

body, html {
	width: 100%;
	min-width: 1200px;
	height: auto;
	min-height: 100vh;
	background: #f5f5f5;
	font-family: 微软雅黑, Microsoft Yahei, msyh, PingFangSC-Regular, Helvetica, Arial, sans-serif;
	font-size: 16px;
	color: #333;
	-webkit-overflow-scrolling: touch;
	-webkit-box-orient: vertical;
	-webkit-box-align: stretch;
	-webkit-touch-callout: none;
	-webkit-text-size-adjust: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

header, section, footer, aside, nav, main, article, figure { 
    display: block; 
}

button, input, select, textarea {
	color: #333;
	font: 0.875rem 微软雅黑, Microsoft Yahei, PingFangSC-Regular, Helvetica, Arial, sans-serif;
	outline: none;
}

a {
	text-decoration: none;
	outline: none;
	color: #333;
}

a:hover, a:focus {
	color: #222;
}

img {
	border: none;
}
/* .svg图片先占位隐藏，待格式化后再显示，避免格式化前因为填充色不一致显示的问题 */
.svg {
	visibility: hidden;
}

form {
	margin: 0px;
	padding: 0px;
}

input:focus, textarea:focus, a:focus, select:focus, button:focus {
	outline: none;
}

ul, ol, li {
	margin: 0px;
	padding: 0px;
	list-style-type: none;
}

.nowrap, ul.nowraps li {
	white-space: nowrap;
	text-overflow: ellipsis;
	-o-text-overflow: ellipsis;
	overflow: hidden;
}

.clear {
	clear: both;
}

.hide {
	display: none;
}

.right {
	float: right;
}

.left {
	float: left;
}

.center {
	text-align: center;
}

.bold, .b {
	font-weight: bold;
}

.hand, .linka {
	cursor: pointer;
}

.tips {
	max-width: 80%;
	height: auto;
	padding: 5px 20px;
	background: rgba(0, 0, 0, 0.7);
	color: #fff;
	font-size: 0.875rem;
	line-height: 180%;
	position: fixed;
	z-index: 1000;
	top: 40%;
	left: 50%;
	opacity: 0;
	text-align: center;
	border-radius: 20px;
}

.maskbg {
	width: 100%;
	height: 100%;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 1000;
	background: rgba(0, 0, 0, 0.7);
	display: none;
	overflow: hidden;
}

.coverimg img, .coverthis {
	transition: all 0.5s;
}

.coverimg:hover img, .coverthis: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);
}

.fit-cover {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.fit-contain {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.shadow {
	-moz-box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.1);
	-webkit-box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.1);
	box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.1);
}

.shadow2 {
	-moz-box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.2);
	-webkit-box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.2);
	box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.2);
}

.trans3 {
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.trans5 {
	-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;
}

.trans10 {
	-webkit-transition: all 1s ease;
	-moz-transition: all 1s ease;
	-ms-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease;
}

.border-box {
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/* placeholder颜色 */

::-webkit-input-placeholder {
	color: #bbb;
}

:-moz-placeholder {
	color: #bbb;
}

::-moz-placeholder {
	color: #bbb;
}

:-ms-input-placeholder {
	color: #bbb;
}

/* loader样式 */
.loading {
	width: 100%;
	height: 100%;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 1000;
	background: rgba(0, 0, 0, .5);
}

.nb-spinner {
	width: 70px;
	height: 70px;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -100px;
	margin-top: -100px;
	background: transparent;
	border-top: 3px solid #64b4f6;
	border-right: 3px solid transparent;
	border-radius: 50%;
	-webkit-animation: 1s spin linear infinite;
	animation: 1s spin linear infinite;
}

@-webkit-keyframes spin {
	from {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	to {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes spin {
	from {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	to {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

/* 自定义alert/confirm */

.alertbox,
.confirmbox {
    display: block;
}
.alert {
    width: 460px;
    height: auto;
    overflow: hidden;
    border-radius: 5px;
    background: #fff;
    margin: calc(50vh - 150px) auto 0 auto;
}
.alert_title {
    width: 100%;
    line-height: 45px;
    text-align: center;
    background-color: #f0f0f0;
    font-size: 1rem;
    font-weight: bold;
    border-bottom: 1px solid #e0e0e0;
}
.alert_cont {
    padding: 30px 20px;
    text-align: center;
    font-size: 0.875rem;
    line-height: 180%;
}
.alert_btn {
    width: 80px;
    line-height: 28px;
    border: 1px solid #999;
    font-size: 0.875rem;
    border-radius: 3px;
    margin: 0 auto 30px auto;
    cursor: pointer;
    text-align: center;
}
.confirm_btn {
    height: auto;
    overflow: hidden;
    text-align: center;
}
.confirm_btn span {
    display: inline-block;
    line-height: 28px;
    border: 1px solid #999;
    font-size: 0.875rem;
    border-radius: 3px;
    cursor: pointer;
    margin: 0 10px 30px 10px;
    padding: 0 20px;
    vertical-align: top;
}

/* 头部 ----------------------------------------------------*/

.headbox {
	width: 100%;
	height: 0;
}
.head {
	width: 100%;
	height: 4.5vw;
	background: rgba(255, 255, 255, 0);
	position: fixed;
	left: 0;
	top: 0;
	z-index: 200;
}
.logo {
	width: 11.5VW;
	height: 2.7vw;
	margin-left: 6%;
    margin-top: 1vw;
	float: left;
	overflow: hidden;
}
.logo img, .logo .svg {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.logo .svg path {
	fill: #b4926a;
}

nav {
    float: right;
    margin-right: 5vw;
}
.navi {
	padding-top: 1.2vw;
	text-align: center;
}

.navi a {
	display: block;
}

.navi>li {
	position: relative;
	margin: 0 2px;
	float: left;
}

.navi>li>a {
    color: #fff;
	font-size: 0.875rem;
	line-height: 2.5rem;
	padding: 0 1.5vw;
	position: relative;
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
}
.navi>li>a.shop {
    padding: 0 1vw;
}
.navi>li.on>a::before {
	content: '';
	width: 0.875rem;
	height: 2px;
	background: #b4926a;
	position: absolute;
	left: 1.5vw;
	top: 0;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.navi>li>a.shop::before {
    content: '';
    width: 1.6rem;
    height: 1.6rem;
    background: url(/static/images/app/shop.png) center no-repeat;
    background-size: contain;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}
.navi>li:hover>a {
	background: #b4926a;
	color: #fff;
	font-weight: bold;
}
.navi>li.s:hover>a {
	background: none;
	color: #fff;
}

.navi>li:hover>a::before {
	width: calc(100% - 3vw);
}
.navi>li:hover>a.shop::before {
    width: 1.6rem;
    background: url(/static/images/app/shop2.png) center no-repeat;
    background-size: contain;
}

.navi>li>ul {
	width: 100%;
	height: auto;
	overflow: hidden;
	background: none;
	border-bottom-left-radius: 3px;
	border-bottom-right-radius: 3px;
	-moz-box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.10);
	-webkit-box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.10);
	box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.10);
}

.navi>li>ul>li>a {
	height: 0;
	line-height: 2vw;
	font-size: 0.75rem;
	color: #fff;
	text-align: center;
	opacity: 0;
}

.navi>li:hover>ul {
	padding-bottom: 1vw;
	background: #b4926a;
}

.navi>li:hover>ul>li>a {
	height: 2vw;
	opacity: 1;
}

.navi>li>ul>li>a:hover {
	background-image: linear-gradient(to right, rgba(180, 146, 106, 0), rgba(165, 127, 82, 1), rgba(180, 146, 106, 0));
	color: #fff;
	font-weight: bold;
}

.head.out {
    background: rgba(255, 255, 255, 1);
    height: 3.6vw;
    -moz-box-shadow: 0 5px 5px rgba(0, 0, 0, 0.04);
	-webkit-box-shadow: 0 5px 5px rgba(0, 0, 0, 0.04);
	box-shadow: 0 5px 5px rgba(0, 0, 0, 0.04);
}
.head.out .logo {
    height: 2.4vw;
    margin-top: 0.6vw;
}
.head.out .navi {
    padding-top: 0.8vw;
}
.head.out .navi>li:hover>a {
	color: #fff;
}
.head.out .navi>li>a, .head.out .navi>li.s:hover>a {
    color: #333;
}

section {
	width: 100%;
	height: auto;
	position: relative;
	overflow: hidden;
}
.bkbox {
	width: 84%;
	margin: 0 auto;
}
.bkt {
    height: auto;
    overflow: hidden;
    padding-top: 3vw;
}
.bktt {
    float: left;
}
.bktt1, .bktt2 {
    display: block;
    color: #444;
    position: relative;
}
.bktt1 {
    font-size: 2.625rem;
    line-height: 160%;
}
.bktt1::before {
    content: '';
    width: 2rem;
    height: 2px;
    background: #b4926a;
    position: absolute;
    left: 0;
    bottom: 0;
}
.bktt1::after {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #555;
    display: inline-block;
    margin-left: 10px;
}
.bktt2 {
    padding-left: 0.5rem;
    font-size: 1.5rem;
    line-height: 200%;
}
a.bkmore {
    display: block;
    float: right;
    font-size: 1rem;
    color: #b4926a;
    line-height: 180%;
    padding-right: 50px;
    margin-top: 20px;
    background: url(/static/images/ryb.png) right center no-repeat;
}
a.bkmore.m2 {
    margin-right: 8%;
}
.bgp {
    display: block;
    width: 100%;
    height: auto;
}


/* 通用轮播 */

.dalislide {
	width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
}
.slidep {
    width: 100%;
    height: 100%;
    position: relative;
	overflow: hidden;
}
.slidep li {
    width: 100%;
    height: auto;
    position: absolute;
    overflow: hidden;
    left: 0;
    top: 0;
    z-index: 0;
    display: none;
}
/* 第一张图静态定位撑开盒子高度 */
.slidep li.static {
	position: static;
	display: block;
}
.slidep li img, .slidep li video {
    width: 100%;
    height: auto;
    display: block;
}
/* 需要图片自动裁切的html端给slidep加上cover类，不加就是自适应宽高比例 */
.slidep.cover li {
	height: 100%;
}
.slidep.cover li img, .slidep.cover li video {
	height: 100%;
	object-fit: cover;
}

.slideb {
	width: 100%;
	height: auto;
	position: absolute;
	z-index: 10;
	bottom: 20px;
	text-align: center;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.slideb em {
	display: inline-block;
	width: 12px;
	height: 12px;
	margin: 0 5px;
    font-size: 0;
	background: rgba(255, 255, 255, .7);
	cursor: pointer;
	border-radius: 50%;
	-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;
}

.slideb em.on {
	background: #b4926a;
}
.slideleft,.slideright {
	width: 60px;
	height: 60px;
	position: absolute;
	top: 50%;
	margin-top: -30px;
	opacity: 0;
	z-index: 100;
	cursor: pointer;
	transition: All 0.3s ease-in-out;
	-webkit-transition: All 0.3s ease-in-out;
	-moz-transition: All 0.3s ease-in-out;
	-o-transition: All 0.3s ease-in-out;
}
.slideleft {
	left: -50px;
	background: url(/static/images/aleft.png) center no-repeat;
}
.slideright {
	left: calc(100% + 50px);
	background: url(/static/images/aright.png) center no-repeat;
}
.dalislide:hover .slideleft {
	left: 50px;
	opacity: .6;
}
.dalislide:hover .slideright {
	left: calc(100% - 100px);
	opacity: .6;
}
.dalislide:hover .slideleft:hover, .dalislide:hover .slideright:hover {
	opacity: 1;
}

/* 通用滚动 */
.scrollbox {
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
}
.scrollu {
    width: 100%;
    height: auto;
    overflow: hidden;
    white-space: nowrap;
    font-size: 0;
}

/* 独立视频 dalislide轮播内用playbtn，其他用vodbtn */

.playbtn, .vodbtn {
    width: 70px;
    height: 70px;
    cursor: pointer;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -35px 0 0 -35px;
    z-index: 20;
    opacity: .7;
    background: url(/static/images/play.png) center no-repeat;
	background-size: contain;
}
.playbtn:hover, .vodbtn:hover {
    width: 80px;
    height: 80px;
    margin: -40px 0 0 -40px;
    opacity: 1;
}
.playbox, .vodbox {
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 200;
    display: none;
    background: #000;
    overflow: hidden;
}
.playbox video, .vodbox video {
    width: 100%;
    height: 100%;
}

.playbox img.closevod, .vodbox img.vodclose {
    display: block;
    width: 37px;
    height: 37px;
    cursor: pointer;
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 200;
}

/* 侧边 */
.rightbar {
	width: 60px;
	height: auto;
	overflow: hidden;
	position: fixed;
	right: 20px;
	bottom: 30px;
	z-index: 100;
}

.rightbar img {
	display: block;
	width: 60px;
	height: 60px;
	cursor: pointer;
}


/* 页码 */
.pagebox {
	padding: 4vw 0;
}

.pagination {
	height: auto;
	padding: 10px 0px;
	overflow: hidden;
	text-align: center;
	font-size: 0;
}

.pagination a, .pagination p, .pagination span {
	display: inline-block;
	margin-right: 3px;
	padding: 0 15px;
	border: 1px #efefef solid;
	text-decoration: none;
	color: #808080;
	font-size: 1.125rem;
	line-height: 40px;
	border-radius: 3px;
}
/* .pagination a#pagefirst, .pagination a#pagelast {
	display: none;
} */

.pagination span {
	cursor: pointer;
}

.pagination p.pageGo {
	border-left: 0;
	cursor: pointer;
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
	padding-left: 5px;
	display: none;
}

.pagination input {
	/* display: inline-block; */
	display: none;
	padding: 0;
	border: 1px solid #ddd;
	border-right: 0;
	background: #fff;
	color: #808080;
	font-size: 14px;
	line-height: 40px;
	border-top-left-radius: 3px;
	border-bottom-left-radius: 3px;
	width: 40px;
	text-align: center;
}

.pagination a:hover {
	border: 1px #b28f68 solid;
	color: #b28f68;
}

.pagination a.cur, .pagination p.cur {
	color: #b28f68;
	font-weight: bold;
}

.pagination p.pageRemark {
	display: none;
	margin: 10px auto 0 auto;
	border: none;
	background: none;
	color: #666;
}

.pagination p.pageEllipsis {
	border: none;
	background: none;
	color: #808080;
	padding: 0 12px;
}

.ckbox-remove {
	width: 90px;
	line-height: 26px;
	background: rgba(16, 140, 255, 0.6);
	color: #fff;
	font-size: 14px;
	text-align: center;
	border-radius: 15px;
	position: absolute;
	right: 200px;
	bottom: 10px;
	cursor: pointer;
}

footer {
	width: 100%;
	height: auto;
	overflow: hidden;
	background: #fbfbfb;
	position: relative;
	z-index: 100;
}
.footrow {
    width: 100%;
	height: auto;
    margin-top: 3vw;
	display: table;
}
.fl {
    width: 25%;
	display: table-cell;
	vertical-align: bottom;
    padding-left: 5%;
}
.fr {
	display: table-cell;
    text-align: right;
    font-size: 0;
}
.fl span {
    display: block;
    margin-bottom: 10px;
    font-size: 0.875rem;
    color: #666;
}
img.qr {
    width: 90px;
    height: 90px;
    margin-right: 10px;
    border: 1px solid #eee;
}
.fl span.tel {
    font-size: 1.875rem;
	font-family: 'Times New Roman', Times, serif;
	font-weight: bold;
}
.fnav {
    display: inline-block;
	width: 10vw;
	height: auto;
	overflow: hidden;
    vertical-align: top;
}
.fnav li {
	margin: 5px 0;
	white-space: nowrap;
	text-overflow: ellipsis;
	-o-text-overflow: ellipsis;
	overflow: hidden;
    text-align: left;
    font-size: 0.875rem;
	line-height: 180%;
    color: #666;
}
.fnav li a {
	color: #666;
}
.fnav li.t {
    margin-bottom: 20px;
	font-size: 1rem;
	font-weight: bold;
}
.fnav li a:hover {
	color: #333;
}

.footbq {
	width: 90%;
	height: auto;
    margin: 40px auto 0 auto;
	overflow: hidden;
	padding: 20px 0;
	border-top: 1px solid #e5e5e5;
}
.footbq .left {
	line-height: 30px;
	font-size: 1.125rem;
	letter-spacing: 5px;
}
.footbq .right {
	font-size: 0.75rem;
	color: #666;
	line-height: 200%;
    text-align: right;
}
.footbq .right a:hover {
	text-decoration: underline;
}

.jmbk {
    width: 84%;
    height: auto;
    overflow: visible;
    position: absolute;
    left: 8%;
    top: 7vw;
}
.jmbk .bktt span {
    color: #fff;
}
.jmbox {
    width: 45%;
    height: auto;
    overflow: visible;
    float: left;
    margin-top: 1vw;
    margin-left: 5vw;
    color: #fff;
}
.jmc {
    height: auto;
    overflow: hidden;
    opacity: .7;
    font-size: 1rem;
    line-height: 200%;
}
.jmi {
    height: auto;
    overflow: hidden;
    margin-top: 3vw;
}
.jmi input.inp {
    display: block;
    float: left;
    width: calc(50% - 10px);
    margin-right: 10px;
    background: rgba(255, 255, 255, .3);
    border-radius: 5px;
    line-height: 2.5vw;
    color: #fff;
    padding: 0 0.5vw;
    border: 1px solid rgba(255, 255, 255, .7);
    font-size: 1rem;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.jmi input.inp::-webkit-input-placeholder, .jmi textarea::-webkit-input-placeholder {
	color: #fff;
}
.jmi input.inp:-moz-placeholder, .jmi textarea {
	color: #fff;
}
.jmi input.inp::-moz-placeholder, .jmi textarea {
	color: #fff;
}
.jmi input.inp:-ms-input-placeholder, .jmi textarea {
	color: #fff;
}
.jmi select {
    display: block;
    float: left;
    width: calc(50% - 10px);
    margin-right: 10px;
    height: 2.5vw;
    line-height: 2.5vw;
    margin-top: 10px;
    padding: 0 0.5vw;
    font-size: 1rem;
    color: #fff;
    background: rgba(255, 255, 255, .3);
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 5px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.jmi select option {
    color: #333;
}
.jmi select#district {
    width: calc(100% - 10px);
}
.jmi textarea {
    width: calc(100% - 10px);
    float: left;
    height: 6vw;
    font-size: 1rem;
    color: #fff;
    background: rgba(255, 255, 255, .3);
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 5px;
    margin-top: 15px;
    padding: 5px 0.5vw;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.joinbtn {
    width: 160px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    background: #b4926a;
    border-radius: 25px;
    color: #fff;
    cursor: pointer;
    margin-top: 2vw;
    float: left;
    font-weight: bold;
}

@media screen and (max-width: 1680px) {
	body, html {
		font-size: 15px;
	}
	.rightbar {
		width: 50px;
	}
	.rightbar img {
		width: 50px;
		height: 50px;
	}
}

@media screen and (max-width: 1440px) {
	body, html {
		font-size: 14px;
	}
	.rightbar {
		width: 40px;
		right: 20px;
	}
	.rightbar img {
		width: 40px;
		height: 40px;
	}
}

@media screen and (max-width: 1280px) {
	body, html {
		font-size: 12px;
	}
}
