@charset "utf-8";
.header{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 94px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 17px 0 38px;
	z-index: 50;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}
.header .back{
	
}
.header .back a{
	display: flex;
	align-items: center;
	cursor: pointer;
	height: 22px;
}
.header .back a img{
	width: 18px;
	margin-right: 10px;
}
.header .back a span{
	font-size: 14px;
	color: #EEE3AF;
	font-family: 'PingFang SC Thin';
}
.header .icon{
	
}
.header .icon li{
	width: 64px;
	height: 51px;
	cursor: pointer;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
	transition: all .3s;
}
.header .icon li.language{
	background-size: 22px 21px;
	transition: all .3s;
}
.header .icon li.language:after{
	content: '';
	display: inline-block;
	position: absolute;
	opacity: 0;
	visibility: hidden;
	z-index: 999;
	transition: all .3s;
	width: 100%;
	height: 14px;
	left: 0;
	bottom: 0;
	transform: translate(0,50%);
	-ms-transform: translate(0,50%);
	-o-transform: translate(0,50%);
	-moz-transform: translate(0,50%);
	-webkit-transform: translate(0,50%);
	background: transparent;
}
.header .icon li.search_button{
	background-size: 21px 21px;
}
.header .icon li.menu{
	background-size: 20px 20px;
}
.header .icon li.language .list{
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	background: #2e0b0e;
	padding: 3px 0 23px;
	transition: all .3s;
	opacity: 0;
	visibility: hidden;
}
.header .icon li.language .list a{
	display: block;
	font-family: 'PingFang SC Thin';
	font-size: 12px;
	color: #7D785A;
	height: 26px;
	line-height: 26px;
	padding: 0 0 0 22px;
	position: relative;
	transition: all .3s;
}
.header .icon li.language .list a:after{
	content: '';
	display: inline-block;
	position: absolute;
	width: 5px;
	height: 1px;
	background: #A79F75;
	left: 8px;
	top: 50%;
	transform: translate(0,-50%);
	-ms-transform: translate(0,-50%);
	-o-transform: translate(0,-50%);
	-moz-transform: translate(0,-50%);
	-webkit-transform: translate(0,-50%);
	transition: all .3s;
}
.header .icon li.language .list a:hover,
.header .icon li.language .list a.active{
	color: #EEE3AF;
}
.header .icon li.language .list a:hover:after,
.header .icon li.language .list a.active:after{
	background: #EEE3AF;
}

.header .icon li.language:hover{
	box-shadow:0 3px 13px 0 rgba(0,0,0,0.50);
	background-color:#2e0b0e;
}
.header .icon li.language:hover .list{
	opacity: 1;
	visibility: visible;
	box-shadow:0 3px 13px 0 rgba(0,0,0,0.50);
}
.header .icon li.language:hover:after{
	opacity: 1;
	visibility: visible;
	background: #2e0b0e;
}

.header .header_logo{
	font-size: 0;
	position: fixed;
	z-index: 40;
	left: 38px;
	bottom: 46px;
}
.header .header_logo a{
	display: block;
}
.header .header_logo img{
	height: 54px;
}

.header .header_title{
	font-family: 'PingFang SC Thin';
	font-size: 49px;
	color: #EEE3AF;
	position: fixed;
	z-index: 40;
	left: 272px;
	bottom: 40px;
}

.header .arrow{
	font-size: 0;
	position: fixed;
	z-index: 40;
	right: 36px;
	bottom: 38px;
    padding: 20px 0;
    cursor: pointer;
}
.header .arrow a{
	display: block;
}
.header .arrow img{
	height: 18px;
}

.mask{
	display: none;
	position: fixed;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background: rgba(0,0,0,.95);
	z-index: 60;
}
.nav{
	display: none;
	position: fixed;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	z-index: 65;
	padding-top: 170px;
	padding-left: 42px;
	padding-right: 70px;
	overflow: hidden;
}
.nav .close{
	background: url(../images/close.png) no-repeat center;
	background-size: cover;
	width: 20px;
	height: 19px;
	position: absolute;
	top: 37px;
	right: 39px;
	font-size: 0;
	cursor: pointer;
}
.nav .nav_logo{
	font-size: 0;
	width: 16.5%;
}
.nav .nav_logo a{
	display: block;
}
.nav .nav_logo img{
	height: 57px;
}
.nav .nav_list{
	width: 70%;
}
.nav .nav_list .item:nth-child(1){
	width: 27%;
}
.nav .nav_list .item:nth-child(2){
	width: 23%;
}
.nav .nav_list .item:last-child{
	width: 50%;
}
.nav .nav_list .item .list{
	margin-top: 102px;
}
.nav .nav_list .item .list:first-child{
	margin-top: 0;
}
.nav .nav_list .item .list .title{
	font-size: 22px;
	color: #EEE3AF;
	margin-bottom: 25px;
	font-family: 'PingFang SC Thin';
	letter-spacing: 2px;
}
.nav .nav_list .item .list li{
	font-size: 15px;
	color: #A79F75;
	margin-bottom: 20px;
	padding-left: 20px;
	position: relative;
	font-family: 'PingFang SC Thin';
	letter-spacing: 2px;
	transition: all .3s;
}
.nav .nav_list .item .list li:before{
	content: '';
	display: inline-block;
	position: absolute;
	width: 8px;
	height: 1px;
	background: #A79F75;
	left: 0;
	top: 10px;
	transition: all .3s;
}
.nav .nav_list .item .list li a{
	color: #A79F75;
	font-family: 'PingFang SC Thin';
	letter-spacing: 2px;
	transition: all .3s;
}
.nav .nav_list .item .list li:hover{
	color: #EEE3AF;
}
.nav .nav_list .item .list li:hover:before{
	background: #EEE3AF;
}
.nav .nav_list .item .list li:hover a{
	color: #EEE3AF;
}
.nav .nav_list .item .xyd{
	margin-top: 102px;
}
.nav .nav_list .item .xyd .title{
	font-size: 22px;
	color: #EEE3AF;
	margin-bottom: 25px;
	font-family: 'PingFang SC Thin';
	cursor: pointer;
}
.nav .nav_list .item .xyd .xing{
	width: 63px;
	height: 53px;
	background: url(../images/Stroke.png) no-repeat center;
	background-size: cover;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	color: #a69b72;
	margin-left: 23.5px;
	margin-top: 20px;
	cursor: pointer;
}
.nav .nav_list .item .guanzhu{
	display: none;
}
.nav .guanzhu{
	width: 13.5%;
	padding-top: 55px;
}
.nav .guanzhu p{
	font-size: 15px;
	color: #A79F75;
	font-family: 'PingFang SC Thin';
	letter-spacing: 2px;
}
.nav .guanzhu .ewm{
	font-size: 0;
	margin-top: 20px;
}
.nav .guanzhu .ewm a{
	display: block;
}
.nav .guanzhu .ewm img{
	width: 109px;
	height: 109px;
}

@media (min-width:1024px) and (max-width:1439px) {
	.nav{
		padding-right: 90px;
	}
	.nav .nav_logo{
		width: 26%;
	}
	.nav .nav_list{
		width: 74%;
	}
	.nav .nav_list .item:last-child .list{
		height: 261px;
	}
	.nav .guanzhu{
		display: none;
	}
	.nav .nav_list .item .guanzhu{
		display: block;
		width: 100%;
		padding-top: 0;
		margin-top: 40px;
		padding-left: 20px;
	}
	.header .header_title{
		 left: 202px;
	}
}

@media (min-width:601px) and (max-width:1023px) {
	.nav{
		padding-right: 30px;
		padding-top: 60px;
		padding-left: 30%;
	}
	.nav .close{
		top: 35px;
		right: 20px;
	}
	.nav .nav_logo{
		width: 100px;
		position: absolute;
		left: 42px;
		top: 34px;
	}
	.nav .nav_list{
		width: 100%;
	}
	.nav .nav_list .item:nth-child(1){
		width: 58%;
	}
	.nav .nav_list .item:nth-child(2){
		width: 42%;
	}
	.nav .nav_list .item .list{
		margin-top: 72px;
	}
	.nav .nav_list .item .xyd{
		margin-top: 72px;
	}
	.nav .nav_list .item:last-child{
		width: 100%;
		overflow: hidden;
		margin-top: 30px;
	}
	.nav .nav_list .item:last-child .list{
		width: 58%;
		float: left;
		padding-right: 20px;
	}
	.nav .guanzhu{
		display: none;
	}
	.nav .nav_list .item .guanzhu{
		display: block;
		width: 100%;
		padding-top: 0;
		margin-top: 54px;
	}
	.header .header_title{
		 left: 157px;
	}
}
@media screen and (max-width:600px) {
	.mask{
		right: 10%;
	}
	.nav{
		right: 10%;
		padding: 60px 0 0 0;
		overflow-y: scroll;
	}
	.nav .close{
		top: 0;
		right: 0;
        background-size: 20px 20px;
        width: 60px;
        height: 60px;
	}
	.nav .nav_logo{
		display: none;
	}
	.nav .nav_list{
		width: 100%;
	}
	.nav .nav_list .item{
		width: 100%!important;
		padding-left: 15px;
	}
	.nav .nav_list .item .list{
		margin-top: 0;
	}
	.nav .nav_list .item .list li{
		display: none;
	}
	.nav .nav_list .item .list .title{
		margin: 0;
		height: 60px;
		display: flex;
		align-items: center;
		border-top: 1px solid rgba(167,159,117,.5);
		font-size: 15px;
		font-family: 'PingFang SC Thin';
	}
	.nav .nav_list .item:first-child .list:first-child .title{
		border-top: none;
	}
	.nav .nav_list .item .xyd{
		margin-top: 0;
	}
	.nav .nav_list .item .xyd .title{
		margin: 0;
		height: 60px;
		display: flex;
		align-items: center;
		border-top: 1px solid rgba(167,159,117,.5);
		font-size: 15px;
		font-family: 'PingFang SC Thin';
		letter-spacing: 2px;
	}
	.nav .nav_list .item:last-child .list li{
		display: block;
		font-size: 12px;
		margin-bottom: 10px;
	}
	.nav .nav_list .item .xyd .xing{
		display: none;
	}
	.nav .guanzhu{
		display: none;
	}
	.nav .nav_list .item .guanzhu{
		display: block;
		width: 100%;
		padding-top: 0;
		padding-left: 20px;
	}
	.nav .guanzhu p{
		font-size: 12px;
	}
	.nav .guanzhu .ewm{
		margin-top: 17px;
	}
	.nav .guanzhu .ewm img{
		width: 70px;
		height: 70px;
	}
	.header .header_title{
		 left: 14px;
		 font-size: 36px;
		 bottom: 34px;
	}
}


.search_main{
	display: none;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 65;
	overflow: hidden;
}
.search_main .close{
	background: url(../images/close.png) no-repeat center;
	width: 20px;
	height: 19px;
	position: absolute;
	top: 37px;
	right: 39px;
	font-size: 0;
	cursor: pointer;
}
.search_main .main{
	margin: 0 auto;
	width: 100%;
	max-width: 690px;
}
.search_main .main .form{
	display: block;
	width: 100%;
	position: relative;
	padding-top: 20px;
}
.search_main .main .form .input{
	display: block;
	width: 100%;
	height: 50px;
	line-height: 50px;
	background: transparent;
	border: none;
	border-bottom: 1px solid #A79F75;
	font-size: 32px;
	color: #A79F75;
	text-align: center;
	transition: all .2s;
	font-family:'HanaMinA';
}
.search_main .main .form .input::-moz-placeholder{
	color: #A79F75;
}
.search_main .main .form .input::-webkit-input-placeholder{
	color: #A79F75;
}
.search_main .main .form .input::-ms-input-placeholder{
	color: #A79F75;
}
.search_main .main .form .submit{
	position: absolute;
	right: 0;
	bottom: 0;
	cursor: pointer;
	width: 50px;
	height: 50px;
	background: transparent url(../images/search.png) no-repeat center;
	background-size: 22px 22px;
	border: none;
	font-size: 0;
}
.search_main .main  .search{
	
}
.search_main .main  .search .noSearch{
	display: none;
	font-size: 22px;
	color: #A79F75;
	height: 100px;
	line-height: 100px;
	text-align: center;
	border-bottom: 1px solid #A79F75;
}
.search_main .main  .search .hasSearch{
	display: none;
}
.search_main .main  .search .hasSearch .cate{
	display: flex;
	align-items: center;
	justify-content: space-around;
	border-bottom: 1px solid #A79F75;
}
.search_main .main  .search .hasSearch .cate .item{
	font-size: 22px;
	color: #A79F75;
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100px;
	position: relative;
	cursor: pointer;
}
.search_main .main  .search .hasSearch .cate .item span{
	font-family: 'Bodoni 72';
}
.search_main .main  .search .hasSearch .cate .item.active{
	color: #EEE3AF;
}
.search_main .main  .search .hasSearch .cate .item:after{
	content: '';
	display: inline-block;
	position: absolute;
	width: 1px;
	height: 30px;
	background: #A79F75;
	right: 0;
}
.search_main .main  .search .hasSearch .cate .item:last-child:after{
	display: none;
}
.search_main .main  .search .hasSearch .qiehuan{
	overflow-x: hidden;
}
.search_main .main  .search .hasSearch .qiehuan .scroll{
	display: none;
	overflow-y: scroll;
	margin-right: -17px;
	padding-bottom: 30px;
}
.search_main .main  .search .hasSearch .qiehuan .scroll:first-child{
	display: block;
}
.search_main .main  .search .hasSearch .qiehuan ul{
	
}
.search_main .main  .search .hasSearch .qiehuan .list_pro{
	
}
.search_main .main  .search .hasSearch .qiehuan .list_pro .item{
	display: flex;
	align-items: center;
	justify-content: space-between;
	transition: all .3s;
}
.search_main .main  .search .hasSearch .qiehuan .list_pro .item .pic{
	width: 50%;
	height: 200px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}
.search_main .main  .search .hasSearch .qiehuan .list_pro .item .content{
	width: 50%;
	height: 200px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	border-bottom: 1px solid #A79F75;
	padding: 0 15px 0 0;
}
.search_main .main  .search .hasSearch .qiehuan .list_pro .item .content .title{
	font-size: 16px;
	color: #A79F75;
	margin-bottom: 1px;
	letter-spacing: 2px;
	font-family: 'HanaMinA';
}
.search_main .main  .search .hasSearch .qiehuan .list_pro .item .content .desc{
	display: none;
	font-size: 16px;
	color: #EEE3AF;
}
.search_main .main  .search .hasSearch .qiehuan .more{
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 80px;
}
.search_main .main  .search .hasSearch .qiehuan .more a{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 312px;
	height: 56px;
	border: 1px solid #A79F75;
	font-size: 16px;
	color: #A79F75;
}
.search_main .main  .search .hasSearch .qiehuan .list_news{
	
}
.search_main .main  .search .hasSearch .qiehuan .list_news .item{
	padding-top: 50px;
	padding-bottom: 30px;
	border-bottom: 1px solid #A79F75;
}
.search_main .main  .search .hasSearch .qiehuan .list_news .item .title{
	font-size: 0;
	margin-bottom: 25px;
}
.search_main .main  .search .hasSearch .qiehuan .list_news .item .title a{
	font-size: 22px;
	color: #A79F75;
}
.search_main .main  .search .hasSearch .qiehuan .list_news .item .desc{
	font-size: 16px;
	color: #A79F75;
	line-height: 28px;
}

/* 新增：搜索弹层高度与滚动设置，确保结果区可滚动 */
.search_main .main{
  /* 占满视窗高度，内部使用flex分配空间 */
  height: 100vh;
  max-height: 100vh;
  display: flex;
  flex-direction: column;
}
.search_main .main .search{
  /* 结果区域占满剩余空间 */
  flex: 1;
  overflow: hidden;
}
.search_main .main .search .hasSearch{
  /* 保证内部切换区能用满空间 */
  height: 100%;
  display: block; /* 显隐由JS控制 */
}
.search_main .main .search .hasSearch .qiehuan{
  height: calc(100% - 100px); /* 扣除分类tab高度（PC为100px，移动端会变矮） */
  overflow: hidden;
}
.search_main .main .search .hasSearch .qiehuan .scroll{
  height: 100%;
  overflow-y: auto;        /* 允许内部滚动 */
  margin-right: 0;         /* 覆盖原 -17px，避免产生不可用滚动 */
  padding-right: 6px;      /* 保留一点内边距避免贴边 */
}

/* 移动端适配：分类tab更矮，调整可视高度 */
@media screen and (max-width:600px) {
  .search_main .main{
    height: 100vh;
    max-height: 100vh;
    display: flex;
    flex-direction: column;
  }
  .search_main .main .search{
    flex: 1;
    overflow: hidden;
  }
  .search_main .main .search .hasSearch .qiehuan{
    height: calc(100% - 50px); /* 移动端tab约50px */
  }
  .search_main .main .search .hasSearch .qiehuan .scroll{
    height: 100%;
    overflow-y: auto;
    margin-right: 0;
  }
}


.m_search_item,
.m_language_item{
	display: none;
}


@media (min-width:601px) and (max-width:1023px) {
	.search_main .main{
		max-width: 400px;
	}
	.search_main .main .form .input{
		font-size: 26px;
	}
	.search_main .main .search .hasSearch .cate .item{
		height: 60px;
		font-size: 18px;
	}
	.search_main .main .search .hasSearch .qiehuan .list_pro .item .pic{
		background-size: auto 45%;
	}
}


@media screen and (max-width:600px) {
	.header{
		height: 62px;
		padding: 0 0 0 14px;
	}
	.header .header_logo{
		top: 13px;
		left: 50%;
		bottom: auto;
		transform: translate(-50%,0);
		-ms-transform: translate(-50%,0);
		-o-transform: translate(-50%,0);
		-moz-transform: translate(-50%,0);
		-webkit-transform: translate(-50%,0);
	}
	.header .header_logo img{
		height: 36px;
	}
	.header .icon li:nth-child(1),
	.header .icon li:nth-child(2){
		display: none;
	}
	.header .back a span{
		display: none;
	}
	.header .arrow{
		right: 13px;
		bottom: 30px;
	}
	.header .arrow img{
		height: 11px;
	}
	
	.m_search_item,
	.m_language_item{
		display: block;
		padding-left: 15px;
	}
	.m_search_item .m_search_form{
		border-top: 1px solid #eee3af;
		border-bottom: 1px solid #eee3af;
		padding: 12px 0 12px 35px;
		background: transparent url(../images/search.png) no-repeat left center;
		background-size: 22px 22px;
	}
	.m_search_item .m_search_form .input{
		display: block;
		width: 100%;
		height: 35px;
		line-height: 35px;
		background: transparent;
		border: none;
		color: #A79F75;
		font-size: 16px;
		font-family:'HanaMinA';
	}
	.m_search_item .m_search_form .input::-moz-placeholder{
		color: #A79F75;
	}
	.m_search_item .m_search_form .input::-webkit-input-placeholder{
		color: #A79F75;
	}
	.m_search_item .m_search_form .input::-ms-input-placeholder{
		color: #A79F75;
	}
	
	.m_language_item .m_language{
		border-bottom: 1px solid #eee3af;
		padding: 0 0 0 35px;
		background: transparent url(../images/language.png) no-repeat left top 19px;
		background-size: 22px 21px;
	}
	.m_language_item .m_language .title{
		font-size: 15px;
		font-family: 'PingFang SC Thin';
		letter-spacing: 2px;
		color: #EEE3AF;
		height: 59px;
		line-height: 59px;
	}
	.m_language_item .m_language .list{
		display: none;
	}
	.m_language_item .m_language .list a{
		width: 100%;
		height: 60px;
		display: flex;
		align-items: center;
		border-top: 1px solid rgba(167,159,117,.5);
		color: #eee3af;
		font-size: 15px;
		font-family: 'PingFang SC Thin';
		letter-spacing: 2px;
	}
	
	.search_main .main .form{
		padding-top: 10px;
	}
	.search_main .main .form .input{
		font-size: 20px;
	}
	.search_main .main .form .submit{
		display: none;
	}
	.search_main .close{
		width: 50px;
		height: 50px;
		z-index: 999;
		top: 10px;
		right: 0;
		background-size: 20px 21px;
	}
	.search_main .main .search .hasSearch .cate .item{
		height: 50px;
		font-size: 16px;
	}
	.search_main .main .search .hasSearch .qiehuan .scroll{
		margin-right: 0;
	}
	.search_main .main .search .hasSearch .qiehuan .list_pro .item .pic{
		width: 40%;
		height: 100px;
	}
	.search_main .main .search .hasSearch .qiehuan .list_pro .item .content{
		width: 60%;
		height: 100px;
		padding: 0 12px 0 0;
	}
	.search_main .main .search .hasSearch .qiehuan .list_pro .item .content .desc{
		display: none;
		font-size: 12px;
		height: 32px;
		overflow: hidden;
	}
}

.page_bg{
	display: block;
	width: 100%;
	height: 538px;
	overflow: hidden;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
}
.page_bg .title{
	padding: 10px 0;
	font-size: 0;
	text-align: center;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	-o-transform: translate(-50%,-50%);
	-moz-transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
}
.page_bg .title:after{
	content: '';
	display: inline-block;
	position: absolute;
	width: 1px;
	height: 80px;
	background: #EEE3AF;
	top: 0px;
	left: 50%;
	transform: translate(-50%,0);
	-ms-transform: translate(-50%,0);
	-o-transform: translate(-50%,0);
	-moz-transform: translate(-50%,0);
	-webkit-transform: translate(-50%,0);
}
.page_bg .title .text{
	display: inline-block;
	vertical-align: top;
	width: 116px;
	height: 60px;
	line-height: 58px;
	border: 1px solid #EEE3AF;
	font-size: 36px;
	position: relative;
	color: #EEE3AF;
	font-family:'HanaMinA';
}
.page_bg .title .text:before{
	content: '';
	display: inline-block;
	position: absolute;
	width: 18px;
	height: 1px;
	background: #CFC8A3;
	left: 0;
	top: 29.5px;
}
.page_bg .title .text:after{
	content: '';
	display: inline-block;
	position: absolute;
	width: 18px;
	height: 1px;
	background: #CFC8A3;
	right: 0;
	top: 29.5px;
}
.page_bg .title .text:nth-child(1){
	border-right: none;
}
.page_bg .title .text:nth-child(2){
	border-left: none;
}
@media screen and (max-width:600px) {
	.page_bg{
		height: 140px;
	}
	.page_bg .title{
		display: none;
	}
}

.page_bg .title_about{
	font-size: 48px;
	color: #EEE3AF;
	font-family: 'HanaMinA';
	position: absolute;
	width: 100%;
	text-align: center;
	top: 50%;
	left: 50%;
	transform: translate(-50%,0);
	-ms-transform: translate(-50%,0);
	-o-transform: translate(-50%,0);
	-moz-transform: translate(-50%,0);
	-webkit-transform: translate(-50%,0);
}

.page_bg .container{
	height: 100%;
	position: relative;
}
.page_bg .img{
	position: absolute;
	left: 0;
	bottom: 30px;
	max-width: 119px;
}
.page_bg .img1{
	bottom: 88px;
	left: 100%;
	max-width: 130px;
}


.blank_30{
	display: block;
	width: 100%;
	height: 30px;
}
.blank_6{
	display: block;
	width: 100%;
	height: 6px;
}
.footer{
	width: 100%;
	background: #82111F url(../images/pro_bg.png) repeat;
	background-size: 15%;
	padding-bottom: 220px;
	position: relative;
}
.footer .top{
	width: 100%;
	max-width: 1100px;
	padding: 60px 15px 0 15px;
	margin: 0 auto;
}
.footer .title{
	font-size: 16px;
	color: #eee3af;
	font-family: 'PingFang SC Thin';
	cursor: pointer;
}
.footer .flogo{
	font-size: 0;
	width: 20%;
}
.footer .flogo a{
	display: block;
}
.footer .flogo img{
	height: 51px;
}
.footer .flist1{
	width: 20%;
}
.footer .flist1 .xyd{
	
}
.footer .flist1 .xyd .xing{
	width: 63px;
	height: 53px;
	background: url(../images/Stroke.png) no-repeat center;
	background-size: cover;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	color: #a69b72;
	margin-left: 8.5px;
	margin-top: 20px;
	cursor: pointer;
}
.footer .flist1 .yqlj{
	margin-top: 45px;
}
.footer .flist1 .yqlj .list{
	margin-top: 20px;
}
.footer .flist1 .yqlj .list li{
	margin-bottom: 20px;
	padding-left: 20px;
	position: relative;
}
.footer .flist1 .yqlj .list li:before{
	content: '';
	display: inline-block;
	position: absolute;
	width: 6px;
	height: 1px;
	background: #9a6c56;
	left: 0;
	top: 50%;
	transform: translate(0,-50%);
	-ms-transform: translate(0,-50%);
	-moz-transform: translate(0,-50%);
	-webkit-transform: translate(0,-50%);
	-o-transform: translate(0,-50%);
}
.footer .flist1 .yqlj .list li:last-child{
	margin-bottom: 0;
}
.footer .flist1 .yqlj .list li a{
	font-size: 12px;
	color: #A79F75;
	font-family: 'PingFang SC Thin';
}
.footer .flist1 .flist2_1{
	display: none;
	float: none;
	width: 100%;
	margin-top: 45px;
}
.footer .flist2{
	width: 20%;
}
.footer .flist2 .ewm{
	font-size: 0;
	padding: 3px;
	background: #A79F75;
	width: 54px;
	height: 54px;
	margin-top: 20px;
	margin-left: 13px;
}
.footer .flist2 .ewm a{
	display: block;
}
.footer .flist2 .ewm img{
	width: 48px;
	height: 48px;
}
.footer .flist3{
	width: 40%;
}
.footer .flist3 .list{
	margin-top: 20px;
}
.footer .flist3 .list li{
	font-size: 12px;
	color: #A79F75;
	margin-bottom: 20px;
	padding-left: 20px;
	position: relative;
	font-family: 'PingFang SC Thin';
}
.footer .flist3 .list li:before{
	content: '';
	display: inline-block;
	position: absolute;
	width: 6px;
	height: 1px;
	background: #A79F75;
	left: 0;
	top: 50%;
	transform: translate(0,-50%);
	-ms-transform: translate(0,-50%);
	-moz-transform: translate(0,-50%);
	-webkit-transform: translate(0,-50%);
	-o-transform: translate(0,-50%);
}
.footer .flist3 .list li:last-child{
	margin-bottom: 0;
}
.footer .bottom{
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 140px;
	background: rgba(99,7,13,.6);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	color: #A79F75;
	border-top: 1px solid #A79F75;
	font-family: 'PingFang SC Thin';
}
.footer .bottom a{
	color: #A79F75;
}
.footer .bottom .up{
	width: 140px;
	height: 139px;
	background: rgba(80,10,10,.8) url(../images/up.png) no-repeat center;
	position: absolute;
	right: 0;
	bottom: 0;
	border-left: 1px solid #A79F75;
	cursor: pointer;
}

@media (min-width:700px) and (max-width:768px) {
	.footer .flogo{
		width: 30%;
		padding-left: 10%;
	}
	.footer .flist1{
		width: 20%;
	}
	.footer .flist2{
		display: none;
	}
	.footer .flist1 .flist2_1{
		display: block;
	}
	.footer .flist3{
		width: 50%;
	}
}
@media screen and (max-width:699px) {
	.footer .flogo{
		width: 100%;
		margin-bottom: 50px;
	}
	.footer .flist1{
		width: 40%;
	}
	.footer .flist2{
		display: none;
	}
	.footer .flist1 .flist2_1{
		display: block;
	}
	.footer .flist3{
		width: 60%;
	}
	.footer .bottom{
		height: 75px;
	}
	.footer .bottom .up{
		height: 74px;
		width: 65px;
		background-size: 50%;
	}
}