/************************************************************************************
 ＳＴＡＲＴ　页面通用样式，适用于整个网站 
*************************************************************************************/

/* RESET */
html, body, address, blockquote, div, dl, form, h1, h2, h3, h4, h5, h6, ol, p, pre, table, ul,
dd, dt, li, tbody, td, tfoot, th, thead, tr, button, del, ins, map, object,
a, abbr, acronym, b, bdo, big, br, cite, code, dfn, em, i, img, kbd, q, samp, small, span,
strong, sub, sup, tt, var, legend, fieldset {
	margin: 0;
	padding: 0;
}

html, body, address, blockquote, div, dl, form, ol, p, pre, table, ul,
dd, dt, li, tbody, td, tfoot, th, thead, tr, button, del, ins, map, object,
a, abbr, acronym, b, bdo, big, br, cite, code, dfn, em, i, img, kbd, q, samp, small, span,
strong, sub, sup, tt, var, legend, fieldset, h1, h2, h3, h4, h5, h6 {
	font-family: "Heiti SC,黑体,Arial,Helvetica,sans-serif";
}

html,
body {
    min-height: 100vh;
	width: 100%;
	height: 100%;
}

img, fieldset {
	border: 0;
}

/* set image max width to 100% */
img {
	width: 100%;
	height: auto;
}

/* set html5 elements to block */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { 
    display: block;
	padding: 0;
	margin: 0;
}

* {
    box-sizing: border-box;
}


/* 页 面 基 本 设 置 样 式 */

/*页面分列 共计12列*/
[class*="col-"] {
    float: left;
    border: 0px solid #e7e7e7;
}
.col-1 {width: 8.33%;}
.col-2 {width: 16.66%;}
.col-3 {width: 25%;}
.col-4 {width: 33.33%;}
.col-5 {width: 41.66%;}
.col-6 {width: 50%;}
.col-7 {width: 58.33%;}
.col-8 {width: 66.66%;}
.col-9 {width: 75%;}
.col-10 {width: 83.33%;}
.col-11 {width: 91.66%;}
.col-12 {width: 100%;}

/*页面容器*/
#pagewrap {
	width: 100%;
	margin: 0 auto;
}

.backtop {
	position: fixed;
	bottom: 15%;
	right: 5%;
	padding: 10px 20px;
	border-radius: 100px;
	background-color: #e6e6e6 ;
	z-index: 999;
	box-shadow: 2px 1px 1px #dcdcdc;
	text-align: center;
	cursor: pointer;
	display: none;
}
.backtop img {
	width: 80px;
	height: 80px;
}
.backtop a, .backtop a:active {
	font-size: 14px;
	color: #b5b5b5;
	text-decoration: none;
}


/* 页面头部样式*/
header {
	position: sticky;
	position: -webkit-sticky; /* Safari */
	top: 0px;
	z-index: 999;
	background-color: rgba(255, 255, 255, 0.96);
	height: 80px;
	border-bottom: 1px solid #f1f1f1;
}
.naviBar {
	max-width: 1230px;
	margin: 0 auto;
}
/* 网站标志区域样式 */
.logo {
	width: 12.5%;
	height: 100%;
	padding: 23px 0;
}
.logo img{
	max-width: 98px;
	max-height: 53px;
}

/*网站主导航区样式*/
.menu {
	vertical-align: middle;
	text-align: center;
}
#main-nav {
	width: 100%;
	list-style-type:none;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-around;
	-ms-justify-content: space-around;
	-moz-justify-content: space-around;
	-o-justify-content: space-around;
	justify-content: space-around;
}
#main-nav li {
	list-style: none;
	position: relative;
	cursor: pointer;
	margin: 0 15px;
}
#main-nav li:first-child {
	margin-left: 0px;
}
#main-nav li a, .dropbtn {
	font-size: 0.875rem;
	color: #000000;
	display: inline-block;
	transition: all 0.3s ease;
	padding: 28px 0px;
	text-decoration: none;
}
#main-nav li a:hover, .dropbtn:hover {
	color: #d000d0;
	background: rgba(0,0,0,0);
	border-bottom: 3px solid #d000d0;
}
#main-nav li a.active {
    color: #9c9c9c;
	border-bottom: 4px solid rgba(0,0,0,0);
}
#main-nav li a.active:hover, .dropbtn.dropactive:hover {
    color: #9c9c9c;
	display: block;
}
.dropactive {
	color: #9c9c9c;
	border-bottom: 4px solid rgba(0,0,0,0);
}

/* 下拉菜单 dropdown Menu*/

#main-nav li .dropdown-content {
	text-align: center;
	display: block;
	box-shadow: 2px 1px 5px #a5a5a5;
}

#main-nav li .dropdown-content a {
	font-size: 1rem;
    color: #000000;
	padding: 10px 5px;
    text-decoration: none;
    display: block;
}

#main-nav li .dropdown-content a:hover {
	color: #d000d0;
	border: none;
}

#main-nav li.tooltip {
	display: inline-block;
    position: relative;
}
.toumin {
	background: rgba(0,0,0,0);
	position: absolute;
	z-index: 99;
	width: 100px;
	height: 5px;
	top: 100%;
	left: 0%;
}

#main-nav li.tooltip .tooltiptext {
	display: none;
    width: 140px;
    background-color: white;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    
    /* 定位 */
    position: absolute;
    z-index: 1;
    top: 110%;
    left: 40%;
    margin-left: -60px;
}

#main-nav li.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    margin-left: -10px;
    border-width: 10px;
    border-style: solid;
    border-color: transparent transparent white transparent;
}

#main-nav li.tooltip:hover .tooltiptext {
    display: block;
}

/* 搜索框 searchform */
.search {
	height: 80px;
	padding: 20px 1% 24px;
}

.searchform {
	position: absolute;
	padding-top: 5px;
}

.searchform .s {
	height: 30px;
	border: none;
	padding: 10px 6px 10px 50px;
	color:#999999;
	background-color: #f5f5f5;
	/* border radius */
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	/* box shadow */
	/*-webkit-box-shadow: 1px 1px 1px rgba(0,0,0,.2);*/
	/*-moz-box-shadow: 1px 1px 1px rgba(0,0,0,.2);*/
	/*box-shadow: 1px 1px 1px rgba(0,0,0,.2);*/
	/* transition */
	-webkit-transition: width .7s;
	-moz-transition: width .7s;
	transition: width .7s;
	background-repeat:no-repeat;
	background-position:right;
	margin-left: 20px;
	outline: none;
}
.searchform input::-webkit-input-placeholder{
    color:#cccccc;
}
.searchform input::-moz-placeholder{   /* Mozilla Firefox 19+ */
    color:#cccccc;
}
.searchform input:-moz-placeholder{    /* Mozilla Firefox 4 to 18 */
    color:#cccccc;
}
.searchform input:-ms-input-placeholder{  /* Internet Explorer 10-11 */ 
    color:#cccccc;
}

.headPic {
	position: relative;
}
h1.headTitle {
	position: absolute;
	top: 0%;
	right: 1%;
	z-index: 2;
	font-size: calc(8vw);
	color: rgba(255,255,255,0.2);
	-ms-transform:rotate(8deg); /* IE 9 */
	-webkit-transform:rotate(8deg); /* Safari and Chrome */
	transform:rotate(8deg);
}

.inner-nav {
	display: none;
}

/* START 页面底部信息样式 */

footer {
	width: 100%;
	background-color: #333333;
}
.baseline:after {
	content: "";
	display: table;
	clear: both;
}

.baseline {
	width: 100%;
	background-color: #404040;
	border-bottom: 1px solid #555555;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
}
.basetop {
	width: 1230px;
	margin: 0 auto;
	padding: 24px 0;
}
.baseinfo {
	padding: 23px 20px;
	width: 615px;
	line-height: 300%;
	font-weight: 300;
	font-size: 0.875rem;
	color: #DDDDDD;
	letter-spacing: 2px;
	float: left;
	text-align: left;
}
.baseQR {
	width: 615px;
	padding: 20px;
	float: right;
}

.basepic {
	margin: 7% 3% 1% 2%;
	float: right;
	text-align: center;
}
.basepic p {
	font-size: 0.75rem;
	color: #ececec;
	margin-top: 5px;
	word-spacing: -.08rem;
}
.basepic img {
	width: 100px;
	height: 100px;
	border: 3px solid #FFFFFF;
}
.basenav {
	background-color: #404040;
	height: 120px;
	padding: 15px 20px 0;
	text-align: right;
}

.basenav ul {
	display: flex;
	flex-direction: row;
	justify-content: right;
	height: 100%;

	width: 1230px;
	margin: 0 auto;
	list-style-type: none;
}

.basenav ul li {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	color: #FFFFFF;
	font-size: 0.875rem;
	font-weight: 300;
	padding: 10px 0 0 0;
	letter-spacing: 2px;
	margin-left: 38px;
}
.basenav ul li:nth-child(5){
	margin-left: 20px;
}
.basenav ul li a{
	display: block;
	text-decoration: none;
	color: #9e9e9e;
	font-size: 0.7rem;
	margin-bottom: 10px;
}
.basenav ul li a:first-child{
	color: #fff;
	font-size: 0.875rem;

}
/*.umenu {*/
/*    position: relative;*/
/*}*/
/*li a.umlist0 {*/
/*	text-decoration: none;*/
/*	color: #FFFFFF;*/
/*}*/
/*li a.umlist1 {*/
/*    !*position: absolute;*!*/
/*    !*left: 12px;*!*/
/*    !*top: 100%;*!*/
/*    font-size: 0.7rem;*/
/*	color: #9e9e9e;*/
/*	!*text-decoration: none;*!*/
/*}*/
/*li a.umlist2 {*/
/*    !*position: absolute;*!*/
/*    !*left: 12px;*!*/
/*    !*top: 150%;*!*/
/*    font-size: 0.7rem;*/
/*	color: #9e9e9e;*/
/*	!*text-decoration: none;*!*/
/*}*/
.basecopyright {
	width: 1230px;
	margin: 0 auto;
	padding: 20px 0;
	text-align: left;
}

.basecopyright span {
	margin: 10px;
	font-size: 0.75rem;
	color: #CCCCCC;
}

/*END 页面底部样式*/


/*START 基础信息样式*/

.container:after {
	content: "";
	display: table;
	clear: both;
}

.container {
	width: 100%;
	height: 100%;
	text-align: center;
	position: relative;
}

div.container:nth-child(7){
	margin-bottom: 25px;
}
.comBG {
	background-color: #ffffff;
	
}
.hisBG {
	background-color: #efefef;
}
.newsBG {
	background-color: #F9F9F9;
}

.hotTitle {
	font-size: 1.75rem;
	font-weight: 500;
	color: #565656;
	padding-top: 90px;
	padding-bottom: 75px;
	letter-spacing: 3px;
}

.englishTitle {
	font-size: 1.2rem;
	font-family: "Arial,Helvetica,sans-serif";
	color: #b1b1b1;
	padding-bottom: 40px;
	display: none;
}
.searchTitle {
	font-size: 1.5rem;
	color: #565656;
	padding-top: 15px;
	letter-spacing: 10px;
}
/************************************************************************************
CLEARFIX
*************************************************************************************/
.clearfix:after { visibility: hidden; display: block; font-size: 0; content: " "; clear: both; height: 0; }
.clearfix { display: inline-block; }
.clearfix { display: block; zoom: 1; }
/*END 基础信息样式*/

/*START 整站滚动条设置样式*/
/* 设置滚动条的样式 */
::-webkit-scrollbar {
width: 4px;
}
/* 滚动槽 */
/*::-webkit-scrollbar-track {*/
/*-webkit-box-shadow:inset 0 0 6px rgba(0,0,0,0.3);*/
/*border-radius:8px;*/
/*}*/
/* 滚动条滑块 */
::-webkit-scrollbar-thumb {
border-radius:4px;
background:rgba(0,0,0,0.1);
-webkit-box-shadow:inset 0 0 6px rgba(0,0,0,0.5);
}
::-webkit-scrollbar-thumb:window-inactive {
background:rgba(255,0,0,0.4);
}
::-webkit-scrollbar-corner {
	background:rgba(0,0,0,0);
}
/*END 整站滚动条设置样式*/

/************************************************************************************
 ＥＮＤ页面通用样式，适用于整个网站 
*************************************************************************************/


/************************************************************************************
 ＳＴＲＡＴ网站首页页面样式
*************************************************************************************/

/* START 首页新闻推荐样式 */
.grid {
	overflow: hidden;
	margin: 0 auto 0;
	width: 1230px;
	list-style: none;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-around;
	justify-content: space-around;	
}

.grid figure {
	z-index: 1;
	display: inline-block;
	overflow: hidden;
	margin: -0.135em;
	/*width: 31%;*/
	/*height: calc(31% * 0.5625);*/
	background: #ffffff;
	text-align: left;
	cursor: pointer;
}
.card{
	border-radius: 8px;
	/*border:1px solid #eee;*/
	box-shadow: 3px 3px 6px 0 rgba(0,0,0,.1);
	overflow: hidden;
	width: 32%;
	padding: 10px 10px 30px;
	margin-bottom: 10px;
	/*-webkit-box-shadow: 2px 2px 2px rgba(0,0,0,.2);*/
	/*-moz-box-shadow: 2px 2px 2px rgba(0,0,0,.2);*/
	/*box-shadow: 2px 2px 2px rgba(0,0,0,.2);*/
	/*background-color: #fffffa;*/
}
.grid figure img {
	position: relative;
	display: block;
	overflow: hidden;
	width: 374px;
	height: calc(400px * 0.5625);
	z-index: -9;
	padding: 0;
}
.grid figure video {
	position: relative;
	display: block;
	width: 374px;
	height: calc(400px * 0.5625);
	z-index: -9;
	padding: 0;
}
.grid figure figcaption {
	background-color: #ffffff;
	overflow: hidden;
}
.grid figure a {
	position: absolute;
	top: 70%;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1000;
	text-indent: 200%;
	white-space: nowrap;
	font-size: 0;
	opacity: 0;
}

figure.hotnews {
	-webkit-perspective: 1000px;
	perspective: 1000px;
	/*-webkit-box-shadow: 1px 1px 1px rgba(0,0,0,.2);*/
	/*-moz-box-shadow: 1px 1px 1px rgba(0,0,0,.2);*/
	/*box-shadow: 1px 1px 1px rgba(0,0,0,.2);*/
}

/*figure.hotnews img {*/
/*	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;*/
/*	transition: opacity 0.35s, transform 0.35s;*/
/*	-webkit-transform: translate3d(0,0,300px);*/
/*	transform: translate3d(0,0,300px);*/
/*}*/

figure.hotnews p {
	margin: 15px 0 5px;
	font-size: 0.8rem;
	text-align: right;
	color: #666;
	padding-right: 10px;
}
figure.hotnews h4 {
	font-size: 0.875rem;
	padding: 5px 10px;
	font-weight: 500;
	cursor: pointer;
	color: #333333;
}
figure.hotnews:hover img {
	opacity: 0.8;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}
figure.hotnews:hover h4 {
	color: #aa00ff;
}

ul.newsDot {
    display: none;
}

/* END 首页新闻推荐样式 */

/* START 首页品牌推荐样式 */
.brandHome {
	width: 1230px;
	height: auto;
	margin: 0 auto 2vw;
}

ul.brandNav {
	width: 100%;
	margin: 5px auto 0;
	color: #444444;
	list-style: none;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
}
ul.brandNav li {
	position: relative;
	display: inline;
	float: left;
	color: #444444;
	margin: 0 6% 15px 0;
	right: 3.3%;
}
ul.brandNav li a {
	font-size: 0.875rem;
	color: #666666;
	text-decoration: none;
}
ul.brandNav li:last-child {
	color: #e7e7e7;
}
ul.brandNav li a:hover {
	color: #d000d0;
}
ul.brandNav li a.acted1 {
	color: #d000d0;
}
.brandNav li span {
	visibility: hidden;
	position: absolute;
    bottom: 15%;
    left: -5px;
	width: 1px;
	height: 1px;
    margin-left: -7px;
    border-width: 7px;
    border-style: solid;
    border-color: transparent transparent transparent #d000d0;
}
.brandNav li:hover span {
	visibility: visible;
}
.brandNav li span.acted2 {
	visibility: visible;
	position: absolute;
	bottom: 15%;
	left: -5px;
	width: 1px;
	height: 1px;
	margin-left: -7px;
	border-width: 7px;
	border-style: solid;
	border-color: transparent transparent transparent #d000d0;
}
.sceneShow {
	width: 800px;
	float: left;
	margin-bottom: 2vw;
}
.sceneShow img {
	width: 800px;
	height: 550px;
}
.brandShow {
	background-color: #FAFAFA;
	width: 430px;
	height: 550px;
	text-align: center;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-align-content: space-around;
	align-content: space-around;
	margin-bottom: 1vw;
}
figure.brandPic {
	margin: 15px 20px;
	width: 170px;
	height: 110px;
	line-height: 110px;
	border: 1px solid #dfdfdf;
	background-color: #FFFFFF;
	float: left;
}
.brandPic img {
	height: auto;
	max-width: 90%;
	max-height: 90%;
    vertical-align: middle;
}
/* END 首页品牌推荐样式 */


/* START 首页业态介绍推荐样式 */
img.bformatA {
	width: 1230px;
	margin-bottom: 2vw;
}
img.bformatB {
	display:none;
}
/* END 首页业态介绍推荐样式 */


/* START 首页服务承诺样式 */
.serviceHome {
	margin: 0 auto 0;
	width: 1230px;
	text-align: center;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-align-content: space-between;
	align-content: space-between;
}

.servicePart {
	width: 30%;
	margin: 0 1% 1% 2%;
	padding: 2% 1%;
	float: left;
	/*box-shadow: 3px 3px 6px 0 rgba(0,0,0,.1);*/
	/*border-radius: 8px;*/
}
/*.serviceHome .servicePart:nth-child(4),.serviceHome .servicePart:nth-child(5),.serviceHome .servicePart:nth-child(6){*/
/*	box-shadow:none;*/
/*}*/
.servicePart img {
	width: 20%;
	height: auto;
}
.servicePart p {
	font-size: 0.875rem;
	margin: 1vw 0;
	padding: 2vw 5vw;
}
.moreService {
	font-size: 1rem;
	margin: 5vw auto;
}
.moreService a {
	color: #d000d0;
	text-decoration: none;
}
/* END 首页服务承诺样式 */

/************************************************************************************
 ＥＮＤ　网站首页页面样式
*************************************************************************************/


/************************************************************************************
了解蓝景 页面布局
*************************************************************************************/

/*企业介绍图文样式*/

.companyIntro {
	width: 65%;
	margin: 0 auto 30px;
	/*-moz-column-count:2; !* Firefox *!*/
	/*-webkit-column-count:2; !* Safari and Chrome *!*/
	/*column-count:2;*/
	-moz-column-gap:40px; /* Firefox */
	-webkit-column-gap:40px;/* Safari and Chrome */
	column-gap:30px;
}

.companyIntro img {
	padding: 40px 20px;
}
.companyIntro p {
	font-size: 1rem;
	padding: 3px 20px;
	text-align: left;
	line-height: 180%;
	/*text-indent: 32px;*/
}

img.history-row {
	width: 1200px;
	margin: 30px 2% 20px;
	padding: 0 0 50px;
}

img.history-col {
	display: none;
}

.awardList {
	width: 1230px;
	margin: 30px auto;
	padding: 5px;
}

.awardSingle {
	width: 23%;
	background-color: #EFEFEF;
	font-size: 1rem;
	float: left;
}

.awardSingle h5 {
	background-color: #EFEFEF ;
	padding: 10px;
	color: #424242;
}

/*企业荣誉分页列表 点按钮样式*/
ul.dotNav {
    display: inline-block;
    padding: 0;
    margin: 20px calc((100% - 462px) / 2);
}

ul.dotNav li {
	display: inline;
}

ul.dotNav li a {
    float: left;
	margin: 0 5px;
    padding: 5px;
    text-decoration: none;
    border-radius: 5px;
	background-color: #f7f7f7;
}

ul.dotNav li a.active {
    background-color: #ea47ff;
	padding: 5px 10px;
    border-radius: 5px;
}

ul.dotNav li a:hover:not(.active) {background-color: #ddd;}


/************************************************************************************
END  了解蓝景 页面布局
*************************************************************************************/


/************************************************************************************
新闻列表页 页面布局
*************************************************************************************/

/*最新活动和品牌文化两个子类 导航按钮样式*/
ul.newsNav {
	width: 1230px;
    margin: 30px auto;
	padding: 50px 16px 25px;
    list-style: none;
	text-align: center;
	border-bottom: 1px solid #E7E7E7;
}
ul.newsNav li {
	display: inline;
	color: #333333;
	padding: 0 10%;
}

ul.newsNav li a {
	text-decoration: none;
	color: #333333;
	font-size: 1.3rem;
	padding: 22px 0px;
}

.newsNav li a.active {
	border-bottom: 3px solid #d000d0;
    color: #d000d0;
}

.newslist {
	overflow: hidden;
	width: 1230px;
	margin: 10px auto;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
.newslist figure {
	z-index: 1;
	display: inline-block;
	overflow: hidden;
	margin: -0.135rem -0.135rem 0.5rem -0.135rem;
	width: 370px;
	background: #ffffff;
	text-align: left;
	cursor: pointer;
	float: left;
}
.newslist figure img {
	position: relative;
	display: block;
	width: 100%;
	height: calc(370px * 0.5625);
	z-index: -9;
}
.newslist figure figcaption {
	background-color: #ffffff;
	overflow: hidden;
}
.newslist figure a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1000;
	text-indent: 200%;
	white-space: nowrap;
	font-size: 0;
	opacity: 0;
}

figure.newslink {
	-webkit-perspective: 1000px;
	perspective: 1000px;
	margin: 1.5% 1%;
	border: 25px solid #FFFFFF;
	box-shadow: 1px 1px 10px rgba(0,0,0,0.2);
	border-radius: 5px;
	color: #333333;
}
figure.newslink:hover{
	color: #d000d0;
}
/*figure.newslink img {*/
/*	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;*/
/*	transition: opacity 0.35s, transform 0.35s;*/
/*	-webkit-transform: translate3d(0,0,300px);*/
/*	transform: translate3d(0,0,300px);*/
/*}*/
figure.newslink p {
	margin: 10px 0 5px;
	font-size: 0.875rem;
	line-height: 1.5rem;
	height: 72px;
	overflow: hidden;
}
figure.newslink h4 {
	padding: 20px 0 0;
	font-size: 1rem;
	line-height: 1.6rem;
	cursor: pointer;
	max-height: 45px;
	overflow: hidden;
}
figure.newslink:hover img {
	opacity: 0.8;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

ul.pageNav {
    display: inline-block;
    padding: 0;
    margin: 50px calc((100% - 462px) / 2);
}

ul.pageNav li {
	display: inline;
}

ul.pageNav li a {
    color: black;
    float: left;
	margin: 0 5px;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 5px;
	background-color: #f7f7f7;
}

ul.pageNav li a.active {
    background-color: #ea47ff;
    color: white;
    border-radius: 5px;
}

ul.pageNav li a:hover:not(.active) {background-color: #ddd;}

.moreBtn {
	display: none;
}
/* END 新闻列表页面样式*/



/************************************************************************************
新闻详情页 页面 左右分栏布局
*************************************************************************************/

/*BREAD CRUMB 面包屑导航*/
ul.breadcrumb {
	width: 1230px;
	margin: 0 auto;
    padding: 20px 10px 10px;
    list-style: none;
	text-align: left;
}
ul.breadcrumb li {
	display: inline;
	color: #a3a3a3;
}
ul.breadcrumb li+li:before {
    padding: 2px;
    color: #a3a3a3;
    content: ">\00a0";
}
ul.breadcrumb li a {
	text-decoration: none;
	color: #a3a3a3;
	font-size: .75rem;
}
ul.breadcrumb li{
	font-size: .75rem;
}
.articleArea {
	width: 1230px;
	margin: 0 auto;
}
/* CONTENT 左边新闻详情显示 */
.content {
	background-color: #FFFFFF;
	margin: 10px 1% 20px;
	padding: 40px 55px;
	width: 66%;
	text-align: left;
	float: left;
	/* rounded corner */
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	/* box shadow */
	-webkit-box-shadow: 0 1px 2px rgba(0,0,0,.1);
	-moz-box-shadow: 0 1px 2px rgba(0,0,0,.1);
	box-shadow: 0 1px 2px rgba(0,0,0,.1);
	color: #333333;
}
.content p{
	font-size: .875rem;
	line-height: 220%;
	margin: 0 0 30px;
}
.content p:first-child{
	margin-bottom: 0;
}

.content br{
	display: none;
}

/* post 新闻发布相关*/
.post {
	margin-bottom: 40px;
}
.post-title {
	margin: 20px 0 40px;
	padding: 10px 0 0;
	/*text-align: center;*/
	font: bold 1.75rem Arial, Helvetica, sans-serif;
}
.post-meta {
	/*margin: 20px;*/
	/*padding: 10px 0;*/
	text-align: right;
	font-size: .875rem;
	color: #afafaf;
}
.post-brief {
	position: relative;
	text-indent: 30px;
	line-height:170%;
	padding: 30px 40px;
	letter-spacing: 3px;
	background-color: #87aa5a;
	margin: 10px 20px 50px;
	border-radius: 2px;
	font-weight: 600;
	text-align: left;
	box-shadow: 10px 10px 3px #a5a5a5;
	display: none;
}

.briefTitle{
	position: absolute;
	font-size: 4rem;
	color: rgba(255,255,255,0.3);
	left: -40px;
	top: 20px;
	z-index: 9;
	-ms-transform:rotate(-20deg); /* IE 9 */
	-webkit-transform:rotate(-20deg); /* Safari and Chrome */
	transform:rotate(-20deg);
}
/* post image 新闻发布图片*/
.post-image {
	margin: 10px 20px;
}

/* post article 新闻发布文章*/
.post-article {
	text-indent: 30px;
	line-height:170%;
	letter-spacing: 2px;
	margin: 20px;
	text-align: left;
}


/* SIDEBAR 右侧推荐新闻列表 */
.sidebar {
	width: 30%;
	float: right;
	margin: 10px 1% 30px;
}

.widget {
	background: #fff;
	margin: 0 0 20px;
	padding: 10px 20px;
	/* rounded corner */
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	/* box shadow */
	-webkit-box-shadow: 0 1px 2px rgba(0,0,0,.1);
	-moz-box-shadow: 0 1px 2px rgba(0,0,0,.1);
	box-shadow: 0 1px 2px rgba(0,0,0,.1);
}

.widgettitle {
	margin: 20px 0 35px;
	padding: 0;	
	font-size: 1.2rem;
	letter-spacing: 3px;
}
.widgettitle h3 {
	float: left;
	font-size: 1.125rem;
}
.widgettitle span {
	display: inline;
	float: right;
}
.widgettitle span a {
	text-decoration: none;
	color: #6A6A6A;
	font-size: 0.9rem;
}
.widget ul {
	margin-top: 20px;
	padding: 0;
	text-align: left;
}
.widget ul :first-child {
	border-top: none;
	margin-top: 64px;
}

.widget li {
	margin: 0;
	padding: 14px 0;
	font-size: 1rem;
	list-style: none;
	clear: both;
	border-top: dotted 1px #eee;
	line-height: 130%;
}

.widget ul a {
	text-decoration: none;
	color: #2f2f2f;
	font-size: .875rem;
}

.widget ul a:hover {
	color: #e600e6;
}

.bnlBtn {
	/*margin: 10px calc((100% - 152px) / 2);*/
	padding: 5px 40px;
	color: #616161;
	background-color: #eeeeee;
	font-size: .8rem;
	border: none;
	border-radius: 15px;
}
.bnlBtn:hover{
	color: #d000d0;
}
/*END 新闻详情页面样式*/


/************************************************************************************
消费者中心 页面布局
*************************************************************************************/

/*START 服务承诺、招商合作信样式*/

/*START 服务承诺列表效果样式*/
.sercommList {
	width: 800px;
	margin: 10px auto 50px;
	text-align: center;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-align-content: space-around;
	-ms-align-content: space-around;
	-moz-align-content: space-around;
	-o-align-content: space-around;
	align-content: space-around;
}
/*END 服务承诺列表效果样式*/

/*START 单个服务承诺介绍效果样式*/
.sercommUnit {
	/*position: relative;*/
	width: 110px;
	padding: 10px 0;
	margin: 20px 10px;
	box-shadow: 3px 3px 6px 0 rgba(0,0,0,.1);
	border-radius: 10px;
	color: #444444;
}
.sercommUnit img{
	width: 80%;
}
.sercommUnit span {
	margin: 3px auto;
	display: block;
	font-weight: 500;
	font-size: 0.7em;
	cursor: pointer;
	text-align: center;
}
.sercommUnit:hover {
	color: #A41DB0;
}
.sercommUnit:hover .sercommPicb{
	opacity: 1;
}
/*.sercommUnit span:hover .sercommPicb{*/
/*	opacity: 1;*/
/*}*/
/*END 单个服务承诺介绍效果样式*/

/*START 服务承诺图标说明文字效果样式*/
.sercommTerm {
    font-size: 1em;
	display: block;
}
.termtip {
	display: inline-block;
    /*position: relative;*/
}
.termtip .termtiptext {
    visibility: hidden;
    width: 250px;
    background-color: white;
    color: #7c7c7c;
    text-align: left;
	border: 1px solid #EBEBEB;
    border-radius: 6px;
    padding: 10px 14px;
	line-height: 150%;
    /* 定位 */
    position: absolute;
    z-index: 1;
    /*top: 130%;*/
    /*left: -50%;*/
    /*margin-left: -60px;*/
}
.termtip .termtiptext h4 {
	padding: 5px;
	color: #A41DB0;
}
.termtip .termtiptext span {
	font-size: 0.9em;
	text-align: left;
}
.termtip:hover .termtiptext {
    visibility: visible;
}
/*END 服务承诺图标说明文字效果样式*/


/*START 服务承诺图标效果切换样式*/
.sercommPica {
	position: relative;
	width: 87px;
	margin: 0 auto;
	cursor: pointer;
}
.sercommPicb {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 87px;
	height: 87px;
	cursor: pointer;
	z-index: 999;
	opacity: 0;
	transition: width 0s, height 0s, opacity 0s;
}
/*.sercommPicb:hover {*/
/*	opacity: 1;*/
/*}*/
/*END 服务承诺图标效果切换样式*/

/*END 服务承诺样式*/




/*START 服务体系板块样式*/
.hisBG {
	background-color: #efefef;
}

.serviceContent {
	width: 1230px;
	margin: 10px auto 50px;
}

.leftNotice {
	margin: 0 2% 50px;
	width: 46%;
	float: left;
	background-color: #FFFFFF;
	border-radius: 8px;
}

.leftNotice h3 {
	padding: 30px 0 10px;
}
.noticeText {
	font-size: 1em;
	height: 600px;
	color: #666666;
	text-align: left;
	line-height: 160%;
	letter-spacing: 2px;
	padding: 10px 30px;
	overflow-y: scroll;
}

.noticeText p, .postsaletext p {
	padding: 5px 0;
	text-indent: 2em;
	font-size: .875rem;
}

.rightNotice {
	width: 46%;
	margin: 0 2%;
	float: left;
}
.postsale {
	border-radius: 8px;
	background-color: #FFFFFF;
}
.postsaletext {
	font-size: 1em;
	height: 460px;
	color: #666666;
	text-align: left;
	line-height: 160%;
	letter-spacing: 2px;
	padding: 10px 30px;
	overflow-y: scroll;
}
.postsale h3 {
	padding: 30px 0 10px;
}
.postsaleTel {
	margin: 30px 0;
	background-color: #A41DB0;
	border-radius: 8px;
}
.postsaleTel span{
	display: block;
	letter-spacing: 3px;
	color: #FFFFFF;
}
.span-1{
		padding: 20px 0 5px;
		font-size: 1em;
}
.span-2{
		padding: 5px 0 30px;
		font-size: 1.5em;
}

/*END 服务体系板块样式*/

/*START 停车服务板块样式*/
img.parking {
	width: 1230px;
	margin: 10px auto 20px;
	padding: 0 0 50px;
}
/*END 停车服务板块样式*/


/*START 服务反馈板块样式*/
.serviceFeedback {
	width: 30%;
	font-size: 1em;
	margin: 10px 35% 100px;
	padding: 20px 16px;
	color: #949494;
	border: 1px solid #A41DB0;
	cursor: pointer;
	border-radius: 10px;
}

.serviceFeedback a {
	color: #949494;
	text-decoration: none;
}

.serviceFeedback:hover {
	outline: 1px solid #A41DB0;
}
/*END 服务反馈板块样式*/


/*START 服务反馈页面和招商合作信息填写表格样式*/

/*START 投诉和意见、招商合作大框样式*/
.feedbackArea {
	width: 1230px;
	background-color: #FFFFFF;
	margin: 0 auto 50px;
	padding: 10px;
}
/*END和意见、招商合作大框样式*/

/* START 投诉和意见分项导航*/
ul.feedbackNav {
    margin: 0 1%;
	padding: 30px 16px 12px;
    list-style: none;
	text-align: center;
	border-bottom: 1px solid #E7E7E7;
}
ul.feedbackNav li {
	display: inline;
	color: #a3a3a3;
	padding: 0 10%;
}

ul.feedbackNav li a {
	text-decoration: none;
	color: #424242;
	font-size: 1.3em;
	font-weight: bold;
	padding: 8px 0px;
}

.feedbackNav li a.active {
	border-bottom: 4px solid #d000d0;
    color: #d000d0;
}
/* END 投诉和意见分项导航*/

/*START 服务反馈、招商合作表单样式*/
.feedbackTable {
	width: 96%;
	margin: 0 2%;
	padding: 10px 0;
	text-align: left;
	margin-top: 40px;
}
.feedbackTable>div{
	margin: 0 4%;
}
.feedbackTable>div:last-child{
	text-align: center;
}
.row {
	margin: 10px 5px;
}

.oneLine {
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: baseline;
	align-items: baseline;
}
.oneLine div.col-4{
	width: calc(50% - 168px);
}
.col-name {
	margin: 5px 0px;
	font-size: .875em;
	color:  #282828;
	font-weight: bold;
}
form div.row:first-child label{
	margin-right: 20px;
}
form div.row label{
	width: 84px;
}
.col-time {
	text-align: center;
}
.col-content {
	margin: 5px 0;
	border: none;
	font-size: .875em;
	color: #ccc;
}
p.col-10{
	width: 70%;
}
.col-height {
	height: 300px;
}
input[type=text].col-content, textarea.col-content {
  margin: 5px 0;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  resize: vertical;
}
input[type=button].upPic {
  width: 240px;
  height: 150px;
  padding: 8px 25px;
  color: #f1f1f1;
  font-size: 1em;
  background-color: #A41DB0;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  float: left;
}
input[type=button].upPic:hover {
	background-color: #85178f; 
}
.upPic {
	position: relative;
	vertical-align: bottom;
	border-radius: 4px;
	border: 1px solid #ECECEC;
	width: 240px;
	height: 150px;
	float: left;
	margin: 10px 10px 10px 0;
	padding: 3px;
	overflow: hidden;
}
input[type=button].delPic {
    position: absolute;
    bottom: 2px;
    right: 2px;
    font-size: 0.75em;
	border-radius: 4px;
	background: #A41DB0;
	color: #FFFFFF;
	padding: 3px 5px;
	text-decoration: none;
	border: 0;
	cursor: pointer;
}

input[type=button].delPic:hover {
	background-color: #4bb14f;
}

input[type=button].getcode {
    font-size: 0.9em;
	border-radius: 4px;
	background: #A41DB0;
	color: #FFFFFF;
	margin: 5px;
	padding: 8px 5px;
	text-decoration: none;
	border: none;
	cursor: pointer;
}

input[type=button].getcode:hover {
	background-color: #891893;
}
.telwidth {
	width:calc(100% - 100px);
}
.btnConform {
	margin: 30px 10px;
	font-size: .875em;
	font-weight: bold;
	color: #FFFFFF;
	padding: 6px 40px;
	border-radius: 8px;
	background-color: #A41DB0;
	border: none;
	cursor: pointer;
}
 .btnBack {
	 margin: 30px 10px;
	 font-size: .875em;
	 color: #ffffff;
	 font-weight: bold;
	 padding: 6px 40px;
	 border-radius: 8px;
	 background-color: #bdbdbd;
	 border: none;
	 cursor: pointer;
 }
.btnConform:hover {
	background-color: #891893;
}
.btnBack:hover {
	 background-color: #969696;

 }

/* 清除浮动 */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/*END 服务反馈、招商合作表单样式*/

/*END 服务反馈招商合作信页面样式*/


/************************************************************************************
招商合作页面 布局
*************************************************************************************/
/*START 招商负责人板块样式*/
.feedbackArea h2 {
	margin: 45px 0 30px;
	letter-spacing: 2px;
	color: #333333;
}

.contactorList {
	width: 96%;
	margin: 5px 2%;
	padding-bottom: 20px;
	display: table;
	clear: both;
	/*border-bottom: 1px solid #dddddd;*/
	overflow: scroll;
}
.okuang {
	display: none;
}
.kuang {
	width: 100%;
}
.contactZone {
	width: 25%;
	margin: 10px calc(24% / 6);
	padding-bottom: 10px;
	font-size: 1em;
	color: #666666;
	background-color: #F9F9F9;
	text-align: left;
	border-radius: 8px;
	float: left;
}
.contactTite {
	padding: 26px 32px 6px;
	/*background-color: #f5f5f5;*/
	font-weight: 600;
	border-radius: 8px 8px 0 0;
	color: #333333;
}
.productType {
	margin: 10px;
	padding: 20px 24px;
	height: 150px;
	color: #333333;
	/*border-bottom: 1px solid #F3F3F3;*/
}
.contactorName, .contactorTel {
	display: -webkit-flex;
	display: flex;
	/*-webkit-justify-content: center;*/
	/*justify-content: center;*/
	margin: 20px 30px;
	color: #666666;
}
.contactorName img, .contactorTel img {
	width: 23px;
	height: 23px;
	position: relative;
	top: 4px;
	margin-right: 5px;
}

.contactorName span, .contactorTel span {
	font-size: 1em;
	padding-top: 5px;
	/*color: #3D3D3D;*/
	font-weight: bold;
}

/*END招商负责人板块样式*/

/*START 业态介绍信息效果样式*/

.busiFormat {
	margin: 10px auto 30px;
	width: 1230px;
	height: 400px;
	padding: 50px 0;
}
header~div:nth-child(3)>div.busiFormat{
	padding-top: 0;
 }
.busiFormatimg {
	width: 615px;
	float: left;
}
.busiText {
	width: 615px;
	height: 334px;
	float: left;
	overflow-y: scroll;
}
.busicont{
	padding: 30px;
	text-align: left;
	line-height: 180%;
	letter-spacing: 2px;
	font-size: .875rem;
}
.busiText h3 {
	padding: 10px 0 10px;
	font-size: 1rem;
}
/*隐藏文字滚动条*/
.busiText::-webkit-scrollbar-thumb {
	border-radius:8px;
	background:rgba(0,0,0,0);
	-webkit-box-shadow:inset 0 0 6px rgba(0,0,0,0);
}
/*END 业态介绍信息效果样式*/

/*START 招聘信息效果样式*/
.jobContainer {
	width: 1230px;
	margin: 0 auto;
}
.jobLeft {
	margin: 10px 1% 50px 2%;
	width: 70%;
	float: left;
}
.jobUnit {
	margin-bottom: 20px;
	background-color: #FFFFFF;
	padding: 15px 25px;
	/* rounded corner */
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
	text-align: left;
	letter-spacing: 2px;
}
.jobUnit span:first-child {
	font-size: 1em;
	font-weight: bold;
}
.jobUnit span {
	display: block;
	line-height: 200%;
	font-size: .8125em;
}

.jobRight {
	width: 24%;
	float: right;
	margin: 10px 2% 0 1%;
}

.jobList {
	background: #fff;
	margin: 0 0 20px;
	padding: 10px 20px;
	/* rounded corner */
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
	text-align: left;
}

.jobList h3 {
	margin: 20px 6px;
	padding: 0;	
	font-size: 1em;
	letter-spacing: 5px;
}

.jobList ul {
	margin-top: 10px;
	padding: 0;
}
.jobList ul :first-child {
	border-top: none;
}

.jobList li {
	color: #747474;
	margin: 0;
	padding: 14px 6px;
	font-size: .8125em;
	font-weight: 500;
	list-style: none;
	clear: both;
	border-top: dotted 1px #eee;
	line-height: 200%;
}

.jobList ul a {
	text-decoration: none;
	color: #747474;
	letter-spacing: 3px;
}

.jobList ul a:hover {
	color: #e600e6;
}

.jobContact {
	margin-bottom: 20px;
	background-color: #FFFFFF;
	padding: 15px 25px;
	/* rounded corner */
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
	text-align: left;

}
.jobContact span:first-child {
	font-size: 1em;
	font-weight: bold;	
	letter-spacing: 2px;
}
.jobContact span:last-child {
	border-top: dotted 1px #eee;
}
 .jobContact span {
	display: block;
	line-height: 300%;
	 font-size: .8125em;
}
/*END 招聘信息效果样式*/

/* 商场导航  页面布局 */
/* 动画定义 */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.circle {
    border-radius: 50%;
    width: 25px;
    height: 25px; 
    /* 宽度和高度需要相等 */
}
/* 旋转，渐变色 */
 .advanced {
    width: 25px;
    height: 25px;
    background-image: -moz-radial-gradient(20px 20px 20deg, circle cover, #CFBBBC 0%, #CC00CC 100%, red 95%);
    background-image: -webkit-radial-gradient(20px 20px, circle cover, #CFBBBC,#CC00CC );
    background-image: radial-gradient(20px 20px 20deg, circle cover, #CFBBBC 0%, #CC00CC 100%, red 95%);
    animation-name: spin; 
    animation-duration: 3s; /* 3 seconds */
    animation-iteration-count: infinite; 
    animation-timing-function: linear;
}
/*包含大图小图品牌图*/
.img_div{
    position: relative;
    margin: 0 auto;
    width: 1360px;
    height: 754px;
}
/*包含弹窗内容*/
#show_message_1{
/*border: 1px solid red;*/
    display: flex;
    width: 535px;
    position:absolute;
    /*top:66px;
    left:60px;*/
}      
/*紫色小圆点*/
.advanced{
    margin-top: 20px;
}
/*紫色框外横线*/
.img_line{
    width: 35px;
    border-top: 3px solid #CC00CC;
    margin-top: 32px;
}
/*品牌大框*/
.mallBrandlist{
    -webkit-box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
    -moz-box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
    box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
    width: 460px;
	height: 320px;
    display: -webkit-flex;
    display: flex;
	-webkit-align-items: center;
	align-items: center;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
    -webkit-justify-content: space-around;
    justify-content: space-around;
    background-image: url(../img/brandBG.png);
	padding: 80px 20px 20px;
}
/*品牌图片框*/
.mallBrandlist figure {
	background-color: #FFFFFF;
    width: 130px;
    height: 90px;
	margin: 10px 0;
    border: 1px solid #999;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: space-around;
	justify-content: space-around;
	-webkit-box-shadow: 1px 1px 1px rgba(0,0,0,0.1);
	-moz-box-shadow: 1px 1px 1px rgba(0,0,0,0.1);
	box-shadow: 1px 1px 1px rgba(0,0,0,0.1);
}
.mallBrandlist figure img {
	height: auto;
	max-width: 90%;
	max-height: 90%;
}

/*右上小圆点显示样式 start*/
#show_message_2{
    /*border: 1px solid red;*/
    display: flex;
    width: 535px;
    position:absolute;
    /*top:40px;
    left:512px;*/
}
/*右上小圆点显示样式 end*/
#show_message_1,#show_message_2{display: none;}
.pot{
    padding: 3px 10px;
    border: 1px solid #999;
    margin-left: 20px;
}        

/*START 场景图片及标签基本布局样式*/
.scene {
	margin: 0 auto;
	width: 1230px;
	height: 690px;
	background-image: url(../img/mg_bg01.png);
	background-size:100% 100%;
}
.scene2 {
	margin: 0 auto;
	width: 1230px;
	height: 820px;
	background-image: url(../img/mg_bg02.png);
	background-size:100% 100%;
}
.sceneTitle {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: start;
	justify-content: start;
	-webkit-align-items: center;
	align-items: center;
	padding: 30px 10px;
	width: 500px;
	margin-left: 400px;

}
.sceneTitle2 {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	padding: 30px 10px;
	width: 400px;
	margin-left: 480px;
}

.sceneTitle li {
	list-style-type: none;
}
.sceneTitle li:first-child, .sceneTitle2 li:last-child {
	font-size: 1.5rem;
	color: #3D3D3D;
	margin-right: 10px;
}
.scene2 ul {
	text-align: left;
	display: block;
}

.sceneTitle2 li {
	list-style-type: none;
}

li.dot1, li.dot2, li.dot3, li.dot4, li.dot5{
	width: 10px;
	height: 10px;
	border-radius: 10px;
	margin: 0 10px;
}
.sceneTitle2 li.dot1, .sceneTitle2 li.dot2, .sceneTitle2 li.dot3, .sceneTitle2 li.dot4, .sceneTitle2 li.dot5{
	margin: 10px 15px;
}

li.dot1 {
	background-color: #696969;
}
li.dot2  {
	background-color: #7C7C7C;
}
li.dot3  {
	background-color: #9C9C9C;
}
li.dot4  {
	background-color: #B9B9B9;
}
li.dot5  {
	background-color: #DFDFDF;
}
.sceneContainer {
	width: 100%;
	height: auto;
	margin: 5px 0;
}
.sceneLeft {
	width: 860px;
	height: 530px;
	float: left;
}
.sceneRight {
	width: 370px;
	height: 530px;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: column;
	flex-direction: column;
	-webkit-justify-content: flex-end;
	justify-content: flex-end;
}
.sceneLeft2 {
	width: 370px;
	height: 530px;
	float: left;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: column;
	flex-direction: column;
	-webkit-justify-content: flex-end;
	justify-content: flex-end;
}
.sceneRight2 {
	width: 860px;
	height: 530px;
	float: right;
}
.scene img, .scene2 img {
	height: 530px;
}
.sceneTags {
	width: 100%;
	padding: 10px;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: space-around;
	justify-content: space-around;
}
.tagMore {
	width: 100%;
	color: #7b7f29;
	text-align: right;
}
.tagMore a {
	margin-right: 10px;
	color: #7b7f29;
	text-decoration: none;
}

/*END 场景图片及标签基本布局样式*/

/*START 场景图片指示小点样式*/
.dotContainer {
	position: relative;
}
.dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	cursor: pointer;
	background-color: #e423f1;
	outline: 8px solid rgba(255, 0, 255, 0.1);
	-webkit-transition: background-color 1s outline 1s; /* For Safari 3.1 to 6.0 */
	transition: background-color 1s, outline 1s;
	animation: dotlight 2s linear 1s infinite alternate running;
	-webkit-animation: dotlight 2s linear 1s infinite alternate running; /* Safari and Chrome */
}
@keyframes dotlight
{
	50% {outline: 4px solid rgba(255, 0, 255, 0.1); }
}

@-webkit-keyframes myfirst /* Safari and Chrome */
{
	50% {outline: 4px solid rgba(255, 0, 255, 0.1);}
}
.dot:hover {
	background-color: #FFFFFF;
	outline: 7px solid rgba(255, 255, 255, 0.6);
}
.dotXY1 {
	position: absolute;
	left: 6%;
	top: 12%;
}
.dotXY2 {
	position: absolute;
	left: 37%;
	top: 48%;
}
.dotXY3 {
	position: absolute;
	left: 70%;
	top: 16%;
}
/*END 场景图片指示小点样式*/

/*START 场景图片上显示层样式*/
.tagwindow {
	cursor: pointer;
	opacity: 0;
	transition: opacity 0s;
}
.tagwindow:hover {
	border: 1px solid #e423f1;
	border-radius: 5px;
	padding: 8px 32px ;
	background-color: #FFFFFF;
	font-size: 1em;
	z-index: 2;
	opacity: 1;
	float: left;
}
.winXY1 {
	position: absolute;
	left: 20%;
	top: calc(30% - 16px);
}
.winXY2 {
	position: absolute;
	left: 70%;
	top: calc(30% - 16px);
}
/*END 场景图片上显示层样式*/

/*START 标签按钮效果样式*/
.tagBtn {
	background-color: #ffffff; 
    color: #A59564; 
    border: none;
    width: 28%;
	padding: 8px 2%;
	float: left;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 1em;
    margin: 10px 0;
    cursor: pointer;
}

.tagBtn:hover{
    background-color: #A59564;
    color: white;
}

/*END  标签按钮效果样式*/


/* START 品牌展示样式*/

ul.sceneNav {
	width: 1230px;
	margin: 60px auto 20px;
	list-style: none;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: flex-end;
	justify-content: flex-end;
}
ul.sceneNav li {
	position: relative;
	display: inline;
	float: left;
	color: #444444;
	margin: 0 5% 0 0;
}
ul.sceneNav li a {
	font-size: 1rem;
	font-weight: 600;
	color: #484848;
	text-decoration: none;
}
ul.sceneNav li a:hover {
	color: #d000d0;
}
ul.sceneNav li a.acted1 {
	color: #d000d0;
}
.sceneNav li span {
	visibility: hidden;
	position: absolute;
    bottom: 15%;
    left: -5px;
	width: 1px;
	height: 1px;
    margin-left: -7px;
    border-width: 7px;
    border-style: solid;
    border-color: transparent transparent transparent #d000d0;
}
.sceneNav li:hover span {
	visibility: visible;
}
.sceneNav li span.acted2 {
	visibility: visible;
	position: absolute;
	bottom: 15%;
	left: -5px;
	width: 1px;
	height: 1px;
	margin-left: -7px;
	border-width: 7px;
	border-style: solid;
	border-color: transparent transparent transparent #d000d0;
}

.brandTags {
	width: 1230px;
	margin: 0 auto;
	padding: 10px;
	background-color: #E3E3E3 ;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
}
.brandTags button {
	background-color: #ffffff; 
    color: #A59564; 
    border: none;
    width: 120px;
	padding: 8px 5px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 1em;
    margin: 10px 5px;
    cursor: pointer;
}
.brandTags button:hover, .brandTags button.active{
    background-color: #A59564;
    color: white;
}

.brandList {
		display: none;
		width: 1230px;
		margin: 20px auto;
		border: 1px solid #dfdfdf;
		background-color: #FFFFFF;
		padding: 5px;
		display: -webkit-flex;
		display: flex;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-align-content: space-around;
		align-content: space-around;
}
.brandList figure {
	width: 200px;
	height: 150px;
	line-height: 150px;
	margin: 10px;
	border: 1px solid #dfdfdf;
	background-color: #FFFFFF;
}
.brandList figure img {
	width: auto;
	height: auto;
	max-width: 90%;
	max-height: 90%;
    vertical-align: middle;
}
/* END 品牌展示样式*/

/* START 搜索结果页面样式*/
.searchPage {
	width: 1230px;
	margin: 0 auto 20px;
	height: auto;
	float: float;
	background-color: #FFFFFF;
}

.searchResult {
	width: 66%;
	margin-top: 10px;
	padding: 20px 50px;
	float: left;
	background-color: #FFFFFF;
}


.searchResult ul {

	text-align: left;
}
.searchResult ul li a {
	color: #0D1424;
	font-size: 1rem;
	text-decoration: none;
	line-height: 300%;
}
.searchResult ul li span {
	color: #00aaff;
}
.searchResult ul li a:hover, .searchResult ul li:hover span{
	color: #D000D0;
}
.searchResult h1 {
	color: #666666;
}

.searchRight {
	border-left: 1px solid #e3e3e3;
}

/*弹出遮罩层*/
.scanBG {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0px;
	overflow: hidden;
	z-index: 1999;
}

/*计算验证弹出层*/
.popUp {
	position:fixed;
	top:30%;
	right:30%;
	width: 30vw;
	height: 200px;
	background-color: #f8f8f8;
	border: 1px solid #e2e2e2;
	border-radius: 5px;
	box-shadow: 2px 2px 5px #d6d6d6;
}
.popuphead {
	padding: 5px 0;
	font-size: 1.25em;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}

.popupcancel {
	margin-right: 6px;
	color: #cfcfcf;
	cursor: pointer;
	border: 0;
}
.contentArea {
	font-size: 0.9em;
	color: #666666;
	height: 180px;
	margin-left: 5vw;
	padding: 15px 2px;
}
.contentArea span {
	display: block;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
}
.contentArea p {
	font-size: 0.7rem;
	color: #FF060A;
	padding: 15px 2px 0;
}
.contentArea img {
	width: 68px;
	height: 28px;
}
.contentArea input[type=text] {
	width: 15vw;
	padding: 8px 5px;
	border-radius: 5px;
	border: 1px solid #A3A3A3;
	margin-right: 10px;
}
.popupButton {
	margin-top: 25px;
	padding: 0 calc((100% - 100px) / 2);
}

input[type=button].Comfirm {
	font-size: 1rem;
	width: 100px;
	height: 32px;
	color: #FFFFFF;
	background-color: #00aaff;
	border-radius: 15px;
	border: 0px;
	cursor: pointer;
	padding: 0;
	text-decoration: none;
	margin: 0;
}
input[type=button].Comfirm:hover {
	background-color: #2974ff;
}

.sucessNotice {
	width: 1230px;
	background-color: #FFFFFF;
	margin: 10px auto 50px;
	padding: 10px;
}

.sucessNotice h1 {
	margin: 40px 0;
	letter-spacing: 2px;
}
.sucessNotice span {
	display: block;
	font-size: 1.5rem;
	margin: 30px 5%;
	padding: 20px;
	line-height: 300%;
}
#lj_select{
	width:28px;
	height: 20px;
	position: relative;
	bottom: 25px;
	left: 35px;
	cursor: pointer;
}
.companyIntro h2{
	font-size: 1.375rem;
	font-weight: 500;
	padding-bottom: 30px ;
}
.complaint_type{
	padding: 15px 0 15px 10px;
	width: 200px;
	display: inline-block;
}
.service_issues{
	margin-right: 15px;
}
.ship_to{
	width: calc(83.33% - 200px);
}

/* 网页自适应样式开始 */
/* 适应不同浏览器宽度 所对应的其他样式变化 */

@media screen and (max-width: 1280px) {
	/* disable webkit text size adjust (for iPhone) */
	html {
		-webkit-text-size-adjust: none;
	}
	.naviBar {
		width: 98%;
		margin: 0 auto;
	}

	.logo {
		padding: 23px 0 10px;
	}
	#main-nav li {
		margin: 0 10px;
	}
	#main-nav li a, .dropbtn {
		font-size: 0.75rem;

		padding: 29px 0;
	}
	.grid {
		overflow: hidden;
		margin: 0 0 0;
		width: 100%;
		list-style: none;
		display: -webkit-flex;
		display: flex;
		-webkit-justify-content: space-around;
		justify-content: space-around;	
	}
	.grid figure img {
		width: 100%;
		height: calc(31vw * 0.625);
	}
	.grid figure video {
		width: 100%;
		height: calc(31vw * 0.625);
	}
	.brandHome {
		width: 97vw;
		height: auto;
		margin: 0 1.5vw 2vw 1.5vw;
		text-align: center;
	}
	.sceneShow {
		width: calc(65vw);
		float: left;
		margin-bottom: 2vw;
	}
	.sceneShow img {
		width: 100%;
		height: calc(40vw);
	}
	.brandShow {
		background-color: #FAFAFA;
		width: calc(32vw);
		height: calc(40vw);
		text-align: center;
		display: -webkit-flex;
		display: flex;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-align-content: space-around;
		align-content: space-around;
		margin-bottom: 1vw;
	}
	figure.brandPic {
		margin: 1% 2% 0 3%;
		width: 14vw;
		height: 9vw;
		line-height: 9vw;
		border: 1px solid #dfdfdf;
		background-color: #FFFFFF;
	}
	.brandPic img {
		width: auto;
	    vertical-align: middle;
	}
	img.bformatA {
		width: 97vw;
		margin-bottom: 2vw;
	}
	.serviceHome {
		margin: 0 0 0;
		width: 100%;
		text-align: center;
		display: -webkit-flex;
		display: flex;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-align-content: space-between;
		align-content: space-between;
	}
	.searchPage {
		width: 96%;
		margin: 0 2% 20px;
		height: auto;
		float: left;
		background-color: #FFFFFF;
		padding: 5px;
	}
	.basetop {
		width: 100%;
	}
	.baseinfo {
		padding: 20px;
		width: 50%;
		line-height: 300%;
		font-weight: 300;
		font-size: 0.875rem;
		color: #DDDDDD;
		letter-spacing: 2px;
		float: left;
		text-align: left;
	}
	.baseQR {
		width: 50%;
		padding: 20px;
		float: right;

	}
	.basenav ul {
		width: 100%;
	}
	.basecopyright {
		width: 100%;
	}
	/*.companyIntro {*/
	/*	width: 96%;*/
	/*	margin: 30px 2%;*/
	/*}*/
	img.history-row {
		width: 96%;
		margin: 30px 2% 20px;
		padding: 0 0 50px;
	}
	.awardList {
		width: 96%;
		margin: 10px auto;
		padding: 5px;
	}
	ul.newsNav {
		width: 96%;
	    margin: 30px 2%;
	}
	.newslist {
		overflow: hidden;
		width: 98%;
		margin: 10px 1%;
	}
	.newslist figure {
		z-index: 1;
		display: inline-block;
		overflow: hidden;
		/*margin: -0.135rem -0.135rem 0.5rem -0.135rem;*/
		margin: 1.5% 1.5%;
		width: 30%;
		height: calc(30% * 0.625);
		background: #ffffff;
		text-align: left;
		cursor: pointer;
	}
	.newslist figure img{
		height: calc(30vw * .5625);
	}
	ul.breadcrumb {
		width: 100%;
	}
	.articleArea {
		width: 100%;
		margin: 0 auto;
	}
	.sercommList {
		margin: 10px auto 50px;
	}
	.serviceContent {
		width: 96%;
		margin: 10px 2% 50px;
	}
	img.parking {
		width: 90%;
		margin: 10px 3% 20px;
		padding: 0 0 50px;
	}
	.feedbackArea {
		width: 96%;
		background-color: #FFFFFF;
		margin: 10px 2% 50px;
		padding: 10px;
	}
	.busiFormat {
		margin: 10px 5% 30px;
		width: 90%;
		height:  calc(30vw);
		padding: 50px 0;
	}
	.busiFormatimg {
		width: 50%;
		float: left;
	}
	.busiText {
		width: 50%;
		height:  calc(24vw + 5px);
		float: left;
		overflow: scroll;
	}
	.jobContainer {
		width: 100%;
	}
	.contactZone {
		width: calc((100% - 6%) / 3);
		margin: 10px 1%;
	}
	.contentArea {
		margin-left: 4vw;
	}
	.scene {
		margin: 0 1vw;
		width: 98vw;
		height: 56vw;
		background-image: url(../img/mg_bg01.png);
		background-size:100% 100%;
	}
	.scene2 {
		margin: 0 1vw;
		width: 98vw;
		height: 67vw;
		background-image: url(../img/mg_bg02.png);
		background-size:100% 100%;
	}
	.sceneLeft {
		width: 70%;
		height: 43vw;
		float: left;
	}
	.sceneRight {
		width: 30%;
		height: 43vw;
		display: -webkit-flex;
		display: flex;
		-webkit-flex-direction: column;
		flex-direction: column;
		-webkit-justify-content: flex-end;
		justify-content: flex-end;
	}
	.sceneLeft2 {
		width: 30%;
		height: 43vw;
		float: left;
		display: -webkit-flex;
		display: flex;
		-webkit-flex-direction: column;
		flex-direction: column;
		-webkit-justify-content: flex-end;
		justify-content: flex-end;
	}
	.sceneRight2 {
		width: 70%;
		height: 43vw;
		float: right;
	}
	.scene img, .scene2 img {
		height: 43vw;
	}
	.sceneTitle {
		margin: 0 36%;
	}
	.sceneTitle2 {
		margin: 0 38.5%;
	}
	ul.sceneNav {
		margin: 60px 0 20px;
		width: 98%;
	}
	.brandTags {
		width: 98%;
		margin: 0 1%;
	}
	.brandList {
		width: 98%;
		margin: 20px 1%;
	}
	.sucessNotice {
		width: 96%;
		margin: 10px 2% 50px;
	}
	#main-nav li .dropdown-content a{
		font-size: 0.875rem;
	}
	ul.brandNav li {
		right: 2%;
	}
}

@media screen and (max-width: 1150px) {
	/* disable webkit text size adjust (for iPhone) */
	html {
		-webkit-text-size-adjust: none;
	}
	.scene {
		height: 58vw;
	}
	.scene2 {
		height: 66vw;
	}
	.sceneTitle {
		margin: 0 35%;
	}
	.sceneTitle2 {
		margin: 0 38.5%;
	}
	.sceneTitle li:first-child, .sceneTitle2 li:last-child {
		font-size: 2.5rem;
	}
	.searchform .s {
		width: calc(15vw);
	}
	li.dot1, li.dot2, li.dot3, li.dot4, li.dot5{
		width: 12px;
		height: 12px;
		border-radius: 12px;
		margin: 0 8px;
	}
}

@media screen and (max-width: 1100px) {
	/* disable webkit text size adjust (for iPhone) */
	html {
		-webkit-text-size-adjust: none;
	}
	.scene {
		height: 58vw;
	}
	.scene2 {
		height: 67vw;
	}
	.sceneTitle {
		margin: 0 35%;
	}
	.sceneTitle2 {
		margin: 0 38.5%;
	}
	.sceneTitle li:first-child, .sceneTitle2 li:last-child {
		font-size: 2.5rem;
	}
	li.dot1, li.dot2, li.dot3, li.dot4, li.dot5{
		width: 12px;
		height: 12px;
		border-radius: 12px;
		margin: 0 8px;
	}
	ul.brandNav li {
		right: 2.6%;
	}
}

@media screen and (max-width: 1024px) {
	.sercommList{
		width: 75%;
	}
	.sercommUnit{
		margin: 20px calc(12.5% - 55px);
	}
	.termtip .termtiptext{
		width: 25%;
		min-width: 220px;
	}
	/* disable webkit text size adjust (for iPhone) */
	html {
		-webkit-text-size-adjust: none;
	}
	.scene {
		height: 58vw;
	}
	.scene2 {
		height: 70vw;
	}
	.sceneShow {
		width: calc(97vw);
		margin-bottom: 0;
	}
	.sceneShow img {
		width: 100%;
		height: calc(60vw);
	}
	.brandShow {
		width: calc(97vw);
	}
	figure.brandPic {
		margin: 2.5% 2% 0 2%;
		width: 20vw;
		height: 15vw;
		line-height: 15vw;
	}
	.serviceFeedback {
		width: 300px;
		margin: 10px calc((100% - 300px) / 2) 100px;
	}
	.contentArea {
		margin-left: 3vw;
	}
}

@media screen and (max-width: 993px) {

	/* disable webkit text size adjust (for iPhone) */
	html {
		-webkit-text-size-adjust: none;
	}
	.productType {
		padding: 10px 12px;
		height: 150px;
	}
	#main-nav li {
		margin: 0 5px;
	}
}

@media screen and (max-width: 900px) {
	#main-nav li {
		margin: 0 2px;
	}
	#main-nav li a, .dropbtn {
		font-size: 0.75rem;
		padding: 29px 0;
	}
	#main-nav li .dropdown-content a{
		font-size: 0.7rem;
	}
	.baseinfo {
		width: 100%;
		clear: both;
		text-align: center;
	}
	.baseQR {
		display: none;
	}
	.linenext{
		display: inline;
		padding: 10px;
	}
	.basenav {
		height: auto;
		padding: 20px 8px;
		text-align: center;
	}
	.basenav ul {
		clear: both;
	}
	.umlist1, .umlist2 {
		display: none;
	}
	.basecopyright {
		text-align: center;
	}
	.scene {
		height: 60vw;
	}
	.scene2 {
		height: 73vw;
	}
	.sceneTitle {
		margin: 0 34.5%;
	}
	.sceneTitle2 {
		margin: 0 38%;
	}
	.sceneTitle li:first-child, .sceneTitle2 li:last-child {
		font-size: 2.2rem;
	}
	li.dot1, li.dot2, li.dot3, li.dot4, li.dot5{
		width: 10px;
		height: 10px;
		border-radius: 10px;
		margin: 0 5px;
	}
}
.flex{
	display: flex;
	flex-direction: row;
}
.flex img{
	width: 50%;
}

@media screen and (max-width: 800px) {
	/* disable webkit text size adjust (for iPhone) */
	html {
		-webkit-text-size-adjust: none;
	}
	header {
		height: 80px;
		display: -webkit-flex;
		display: flex;
		-webkit-justify-content: center;
		justify-content: center;
	}
	.col-2, .col-4, .col-8 {
		width: 100%;
	}
	
	.logo {
		padding: 23px 0;
		text-align: center;
	}
	.light-swiper .dots span {
	    width: 1rem;
	}
	.menu {
		display: none;
	}
	.search {
		display: none;
	}
	.searchResult{
		width: 100%;
	}
	/*页面宽度小于800px时，出现移动菜单点击汉堡样式*/
	.inner-header{
		background-color: rgba(255,255,255,0);
		height: 50px;
		position: absolute;
		top: 10px;
		right: 0;
	}
	.inner-header-icon{
		color: #000000;
		height: 50px;
		font-size:25px;
		text-align: center;
		float:right;
		width: 50px;
		position: relative;
		-webkit-transition: background 0.5s;
		-ms-transition: background 0.5s;
		-moz-transition: background 0.5s;
		-o-transition: background 0.5s;
		transition: background 0.5s;
	}
	.inner-header-icon:hover{
		background-color: rgba(0,0,0,0);
		cursor: pointer;
	}
	.inner-header-icon span{
		position: absolute;
		left: calc((100% - 25px) / 2);
		top: calc((100% - 1px) / 2);
		width: 25px;
		height: 1px;
		background-color: rgba(0,0,0,1);
	}
	.inner-header-icon span:nth-child(1){
		-webkit-transform: translateY(4px) rotate(0deg);
		-ms-transform: translateY(4px) rotate(0deg);
		-moz-transform: translateY(4px) rotate(0deg);
		-o-transform: translateY(4px) rotate(0deg);
		transform: translateY(4px) rotate(0deg);
	}
	 
	.inner-header-icon span:nth-child(2){
		opacity: 0;
		filter:alpha(opacity=0); /* IE8 及其更早版本 */
	}
	 
	.inner-header-icon span:nth-child(3){
		-webkit-transform: translateY(-4px) rotate(0deg);
		-ms-transform: translateY(-4px) rotate(0deg);
		-moz-transform: translateY(-4px) rotate(0deg);
		-o-transform: translateY(-4px) rotate(0deg);
		transform: translateY(-4px) rotate(0deg);
	}
	 	 
	.inner-header-icon-click span:nth-child(1){
		-webkit-animation: clickfirst 0.5s both;
		-ms-animation: clickfirst 0.5s both;
		-moz-animation: clickfirst 0.5s both;
		-o-animation: clickfirst 0.5s both;
		animation: clickfirst 0.5s both;
		}
	 
	.inner-header-icon-click span:nth-child(2){
		-webkit-animation: clicksecond 0.5s both;
		-ms-animation: clicksecond 0.5s both;
		-moz-animation: clicksecond 0.5s both;
		-o-animation: clicksecond 0.5s both;
		animation: clicksecond 0.5s both;
	}
	 
	.inner-header-icon-click span:nth-child(3){
		-webkit-animation: clickthird 0.5s both;
		-ms-animation: clickthird 0.5s both;
		-moz-animation: clickthird 0.5s both;
		-o-animation: clickthird 0.5s both;
		animation: clickthird 0.5s both;
		}
	 
	 
	/*第一条线旋转动画*/
	@keyframes clickfirst {
	  0% {
		  -webkit-transform: translateY(4px) rotate(0deg);
		  -ms-transform: translateY(4px) rotate(0deg);
		  -moz-transform: translateY(4px) rotate(0deg);
		  -o-transform: translateY(4px) rotate(0deg);
		  transform: translateY(4px) rotate(0deg);
	}
	 
	  100% {
	    -webkit-transform: translateY(0) rotate(45deg);
		-ms-transform: translateY(0) rotate(45deg);
		-moz-transform: translateY(0) rotate(45deg);
		-o-transform: translateY(0) rotate(45deg);
		transform: translateY(0) rotate(45deg);
	  }
	}
	/*第二条线淡入淡出动画动画*/
	@keyframes clicksecond {
		0% {
			opacity: 1;
			filter:alpha(opacity=100); /* IE8 及其更早版本 */
		}
		100% {
			opacity: 0;
			filter:alpha(opacity=0); /* IE8 及其更早版本 */
		}
	}
	 
	/*第三条线旋转动画*/
	@keyframes clickthird {
	  0% {
		  -webkit-transform: translateY(-4px) rotate(0deg);
		  -ms-transform: translateY(-4px) rotate(0deg);
		  -moz-transform: translateY(-4px) rotate(0deg);
		  -o-transform: translateY(-4px) rotate(0deg);
		  transform: translateY(-4px) rotate(0deg);
	  }
	 
	  100% {
	    -webkit-transform: translateY(0) rotate(-45deg);
		-ms-transform: translateY(0px) rotate(-45deg);
		-moz-transform: translateY(0px) rotate(-45deg);
		-o-transform: translateY(0px) rotate(-45deg);
		transform: translateY(0px) rotate(-45deg);
	  }
	}	
	 
	.inner-header-icon-out span:nth-child(1){
		-webkit-animation: outfirst 0.2s both;
		-ms-animation: outfirst 0.2s both;
		-moz-animation: outfirst 0.2s both;
		-o-animation: outfirst 0.2s both;
		animation: outfirst 0.2s both;
		}
	 
	.inner-header-icon-out span:nth-child(2){
		-webkit-animation: outsecond 0.2s both;
		-ms-animation: outsecond 0.2s both;
		-moz-animation: outsecond 0.2s both;
		-o-animation: outsecond 0.2s both;
		animation: outsecond 0.2s both;
	}
	.inner-header-icon-out span:nth-child(3){
		-webkit-animation: outthird 0.2s both;
		-ms-animation: outthird 0.2s both;
		-moz-animation: outthird 0.2s both;
		-o-animation: outthird 0.2s both;
		animation: outthird 0.2s both;
		}
	 
	@keyframes outfirst {
	  0% {
	    -webkit-transform: translateY(0) rotate(-45deg);
		-ms-transform: translateY(0) rotate(-45deg);
		-moz-transform: translateY(0) rotate(-45deg);
		-o-transform: translateY(0) rotate(-45deg);
		transform: translateY(0) rotate(-45deg);
	  }
	 
	  100% {
	    -webkit-transform: translateY(-4px) rotate(0deg);
		-ms-transform: translateY(-4px) rotate(0deg);
		-moz-transform: translateY(-4px) rotate(0deg);
		-o-transform: translateY(-4px) rotate(0deg);
		transform: translateY(-4px) rotate(0deg);
	  }
	}
	 
	@keyframes outsecond {
	  0% {
	    opacity: 0;
		filter:alpha(opacity=0); /* IE8 及其更早版本 */
	  }
	 
	  100% {
		  opacity: 1;
		  filter:alpha(opacity=100); /* IE8 及其更早版本 */
	  }
	}
	 
	@keyframes outthird {
		0% {
			-webkit-transform: translateY(0) rotate(45deg);
			-ms-transform: translateY(0) rotate(45deg);
			-moz-transform: translateY(0) rotate(45deg);
			-o-transform: translateY(0) rotate(45deg);
			transform: translateY(0) rotate(45deg);
		}
	 
		100% {
			-webkit-transform: translateY(4px) rotate(0deg);
			-ms-transform: translateY(4px) rotate(0deg);
			-moz-transform: translateY(4px) rotate(0deg);
			-o-transform: translateY(4px) rotate(0deg);
			transform: translateY(4px) rotate(0deg);
		}
	}
	 
	.inner-nav{
		background-color: #FFFFFF;
		width: 100%;
		height: calc(100vh - 80px);
		position: absolute;
		top: 80px;
		left: 0px;
		padding-top: 20px;
		padding-bottom: 20%;
		overflow: scroll;
	}
	.inner-nav li a {
		display: inline-block;
		line-height: 50px;
		text-decoration: none;
		width: 80%;
		margin-left: 5%;
		color: #4d4d4d;
		border-bottom: solid 1px rgba(0,0,0,0.3);
		-webkit-transition: all 0.5s;
		-ms-transition: all 0.5s;
		-moz-transition: all 0.5s;
		-o-transition: all 0.5s;
		transition: all 0.5s;
		font-weight: 300;
	}
	.inner-nav li a:hover{
		color: rgba(0,0,0,0.4);
		border-bottom: solid 1px rgba(0,0,0,0.1);
	}
	.undernav {
		line-height: 40px;
		padding-left: 8%;
		font-size: 90%;
	}
	.inner-nav input[type=text] {
		width:70%;
		height: 46px;
		float: left;
		border: 1px solid #ebebeb ;
		margin: 20px 10%;
		padding: 6px 10px;
		/* border radius */
		-webkit-border-radius: 20px;
		-ms-border-radisu: 20px;
		-moz-border-radius: 20px;
		-o-border-radisu: 20px;
		border-radius: 20px;
		/* box shadow */
		-webkit-box-shadow: 1px 1px 1px rgba(0,0,0,.2);
		-ms-box-shadow: 1px 1px 1px rgba(0,0,0,.2);
		-moz-box-shadow: 1px 1px 1px rgba(0,0,0,.2);
		-o-box-shadow: 1px 1px 1px rgba(0,0,0,.2);
		box-shadow: 1px 1px 1px rgba(0,0,0,.2);
		/* transition */
		-webkit-transition: width .7s;
		-ms-transition: width .7s;
		-moz-transition: width .7s;
		-o-transition: width .7s;
		transition: width .7s;
		background-image:url('../img/searchbg.png');
		background-repeat:no-repeat;
		background-position:right;
	}
/*移动菜单汉堡样式结束*/
	
	.hotTitle{
		font-size: 1.5rem;
		padding-top: 40px;
		padding-bottom: 20px;
	}
	.englishTitle {
		font-size: 0.75rem;
		padding-top: 5px;
		padding-bottom: 10px;
		display: none;
	}

	.grid figure:first-child {
		margin: -0.135rem -0.135rem 0.5rem -0.135rem;
		width: 96%;
		height: calc(96% * 0.625);
		background: #ffffff;
	}
	.grid figure:nth-child(2) {
		display: none;
	}
	.grid figure:last-child {
		display: none;
	}
	.grid figure img {
		width: 96%;
		height: calc(96vw * 0.625);
		
	}
	.grid figure video {
		width: 96%;
		height: calc(96vw * 0.625);
	}
	/*ul.brandNav li a {*/
	/*	font-size: 1rem;*/
	/*	color: #666666;*/
	/*	text-decoration: none;*/
	/*}*/
	
	img.bformatA {
		display:none;
	}
	img.bformatB {
		display: inline-block;
		width: 97vw;
		margin-bottom: 2vw;
	}
	.serviceHome .servicePart:nth-child(4), .serviceHome .servicePart:last-child {
		display: none;
	}
	.servicePart {
		width: 45%;
		margin: 0 2% 1% 2%;
		padding: 0 1%;
		text-align: center;
	}
	.servicePart img {
		width: 30%;
	}
	.servicePart p {
		font-size: 0.875rem;
		margin: 1vw 0;
	}
	.servicePart span {
		display: block;
	}
	.moreService a {
		background-color: #e6e6e6;
		color: #282828;
		font-size: 0.8rem;
		border-radius: 8px;
		text-align: center;
		margin: 24px 0;
		padding: 20px;
	}
	
	ul.newsDot {
	    display: inline-block;
	    padding: 0;
	    margin: 10px calc((100% - 100px) / 2);
	}
	
	ul.newsDot li {
		display: inline;
	}
	
	ul.newsDot li a {
	    float: left;
		margin: 0 5px;
	    padding: 5px;
	    text-decoration: none;
	    border-radius: 5px;
		background-color: #f7f7f7;
	}
	
	ul.newsDot li a.active {
	    background-color: #ea47ff;
		padding: 5px 10px;
	    border-radius: 5px;
	}
	
	ul.newsDot li a:hover:not(.active) {background-color: #ddd;}
	
	/* disable webkit text size adjust (for iPhone) */
	html {
		-webkit-text-size-adjust: none;
	}
	/*.companyIntro {*/
	/*	!*margin: 10px 2%;*!*/
	/*	!*-moz-column-count:1; !* Firefox *!*!*/
	/*	!*-webkit-column-count:1; !* Safari and Chrome *!*!*/
	/*	!*column-count:1;*!*/
	/*}*/
	.companyIntro img {
		padding: 20px 10px;
	}
	.companyIntro p {
		padding: 10px;
		text-align: left;
		line-height: 180%;
		text-indent: 29px;
	}
	img.history-row {
		display: none;
	}
	
	img.history-col {
		display: inline-block;
		width: 96%;
		margin: 10px 2% 20px;
		padding: 0 0 30px;
	}
	
	.awardSingle {
		width: 48%;
		margin: 15px 0;
	}

	/*新闻列表页面*/
	.newslist {
		overflow: hidden;
		width: 100%;
		margin: 10px 0%;
		display: -webkit-flex;
		display: flex;
		-webkit-flex-direction: column;
		flex-direction: column;
		-webkit-align-items: center;
		align-items: center;	
	}
	.newslist figure {
		z-index: 1;
		display: inline-block;
		overflow: hidden;
		margin: -0.135rem -0.135rem 0.5rem -0.135rem;
		width: 90%;
		height: calc(96% * 0.625);
		background: #ffffff;
		text-align: left;
		cursor: pointer;
	}
	.newslist figure img {
		height: 47vw;
	}
	figure.newslink  {
		margin: 20px;
		border: 25px solid #FFFFFF;
	}
	ul.pageNav {
		display: none; 
	}
	.moreBtn {
		display: inline-block;
		margin: 50px calc((100% - 182px) / 2);
		padding: 10px 50px;
		color: #616161;
		background-color: #eeeeee;
		font-size: 1rem;
		border: none;
		border-radius: 15px;
	}
	/*新闻详情页面*/
	.breadcrumb {
		display: none;
	}
	/* content   &  sidebar */
	.content, .sidebar {
		width: 96%;
		margin: 15px 2%;
	}
	
	.post {
		font-size: 100%;
	}
	
	.widget {
		font-size: 100%;
	}
	
	.widget li {
		font-size: 100%;
		padding: 6px 0;
	}
	.sercommList {
		width: 70%;
	}
	.sercommUnit {
		margin: 20px calc(16.66% - 55px);
	}

	.termtip .termtiptext {
		width: 22%;
		min-width: 185px;
	}
	.termtip .termtiptext span{
		font-size: .75rem;
	}
	.leftNotice {
		width: 96%;
		clear: both;
	}
	.rightNotice {
		width: 96%;
		clear: both;
	}
	img.parking {
		width: 94%;
		min-height: 400px;
		object-fit: cover;
		object-position: 50% 50%;
		margin: 10px 3% 20px;
		padding: 0 0 50px;
	}
	.col-3, .col-4, .col-10, .col-11 {
		width: 100%;
	}
	.col-name {
		width: 100%;
		margin: 8px 0 4px;
	}
	.col-time {
		padding-left: 0px;
		text-align: left;
	}
	input[type=text].col-content, textarea.col-content {
	  border: none;
	  border-bottom: 1px solid #ccc;
	}
	.col-height {
		height: 80px;
	}
	.row {
		width: 100%;
		content: "";
		display: table;
		clear: both;
	}
	.okuang {
		display: block;
		overflow: scroll;
	}
	
	.okuang::-webkit-scrollbar-thumb {
	border-radius:8px;
	background:rgba(0,0,0,0);
	-webkit-box-shadow:inset 0 0 6px rgba(0,0,0,0.5);
	}
	
	.kuang {
		display: none;
	}
	
	/*页面小于800px时，统一更换为先图后文字的顺序*/
	.busiFormat {
		padding: 30px 0;
		height: calc(50vw * 2);
		display: table;
	}
	.busiFormatimg {
		width: 100%;
		display: table-header-group;
		float: none;
	}
	.busiText {
		width: 100%;
		height:  calc(45vw);
		display: table-footer-group;
		float: none;
	}
	/*招聘信息效果样式*/
	.jobLeft {
		width: 96%;
		margin: 0 2% 10px;
	}
	.jobRight {
		width: 96%;
		margin: 10px 2% 20px;
	}
	.jobList li {
		line-height: 150%;
		padding: 5px 6px;
	}
		
	.tagBtn {
	    padding: 4px 12px;
	    font-size: 0.85em;
	}
	
	.searchRight {
		border-top: 1px solid #e3e3e3;
		border-left: none;
	}
	.popUp {
		width: 250px;
	}
	.contentArea input[type=text] {
		width: 120px;
	}
	.backtop{
		border-radius: 50%;
		padding: 5px 8px;
		width: 80px;
		height: 80px;
		display: none;
	}
	.backtop>a>p{
		font-size: 12px;
	}
	.backtop img{
		width: 40px;
		height: 40px;
	}
	.flex{
		flex-direction: column;
	}
	.flex img{
		width: 100%;
	}
	.mobile-btn, .navBG {
		display: none;
	}
	.inner-nav a {
		display: none;
	}
	.hotTitle {
		font-size: 1.5rem;
	}
	.oneLine div.col-4{
		width: 95%;
	}
	form div.row input.col-2,form div.row textarea.col-10{
		width: 95%;
	}
	form div.row label,p.col-10{
		width: 100%;
	}
	.ship_to,.col-4{
		width: 95%;
	}
}

@media screen and (max-width: 768px) {
	.brandShow {
		background-color: #FAFAFA;
		width: calc(97vw);
		height: calc(85vw);
		text-align: center;
		float: left;
		margin-bottom: 10vw;
	}
	figure.brandPic {
		margin: 4% 2% 0 2%;
		width: 28vw;
		height: 21vw;
		line-height: 21vw;
	}
	.scene {
		height: 61vw;
	}
	.scene2 {
		height: 75vw;
	}
	.sceneTitle {
		margin: 0 33.5%;
	}
	.sceneTitle2 {
		margin: 0 37.5%;
		width: 20vw;
	}
	.sceneTitle li:first-child, .sceneTitle2 li:last-child {
		font-size: 2rem;
	}
	li.dot1, li.dot2, li.dot3, li.dot4, li.dot5{
		width: 8px;
		height: 8px;
		border-radius: 8px;
		margin: 0 3px;
	}
}
@media screen and (max-width: 700px) {
	.baseinfo {
		line-height: 200%;
		font-size: 0.875rem;
	}
	.basenav ul {
		font-size: 0.7rem;
		font-weight: 100;
		text-align: center;
	}
	.scene {
		height: 62vw;
	}
	.scene2 {
		height: 77vw;
	}
	.sceneTitle {
		margin: 0 34.5%;
	}
	.sceneTitle2 {
		margin: 0 37%;
	}
	.brandList figure {
		width: 30vw;
		height: 22.5vw;
		margin: 10px 0.5vw;
		line-height: 20vw;
	}
}

@media screen and (max-width: 600px) {
	.light-swiper .dots span {
	    width: 0.7rem;
	}
	/* disable webkit text size adjust (for iPhone) */
	html {
		-webkit-text-size-adjust: none;
	}
	.awardSingle {
		/*width: 98%;*/
		margin: 15px 0;
	}
	.awardList .awardSingle:nth-child(2),
	.awardList .awardSingle:nth-child(3),
	.awardList .awardSingle:nth-child(4),
	.awardList .awardSingle:nth-child(5),
	.awardList .awardSingle:nth-child(6),
	.awardList .awardSingle:nth-child(7),
	.awardList .awardSingle:last-child {
		display: none;
	}
	.scene {
		height: 65vw;
	}
	.scene2 {
		height: 80vw;
	}
	.sceneTitle {
		margin: 0 35%;
	}
	.sceneTitle2 {
		margin: 0 36%;
	}
	/*ul.brandNav li a {*/
	/*	font-size: 0.8rem;*/
	/*	color: #666666;*/
	/*	text-decoration: none;*/
	/*}*/
}
@media screen and (max-width: 540px) {
	.servicePart {
		width: 40%;
		margin: 0 4% 1% 4%;
		padding: 0 1%;
	}

}
@media screen and (max-width: 500px) {
	.brandShow {
		background-color: #FAFAFA;
		width: calc(97vw);
		height: calc(160vw);
		text-align: center;
		float: left;
		margin-bottom: 10vw;
	}
	figure.brandPic {
		margin: 5% 2% 0 5%;
		width: 40vw;
		height: 30vw;
		line-height: 30vw;
	}
	.brandNav li span, .brandNav li span.acted2 {
	    margin-left: -5px;
	    border-width: 5px;
	}
	.brandList figure {
		width: 40vw;
		height: 30vw;
		margin: 10px 3vw;
		line-height: 30vw;
	}
	ul.brandNav li{
		margin: 0 4% 15px 0;
		right: .5%;
	}
	ul.brandNav li a{
		font-size: .75rem;
	}
	footer{
		background-color:#404040;
	}
	.baseline,.basenav{
		width: 90%;
		margin: 0 5%;
	}
	.baseinfo{
		text-align: left;
		padding: 20px 0;
		font-size: .75rem;
	}
	.baseinfo p:nth-child(2) span:first-child{
		display: block;
	}
	.baseinfo p:nth-child(2) span:last-child{
		padding:5px;
	}
	.basenav{
		padding: 20px 0;
	}
	.basenav ul{
		display: block;
		height: 100px;
	}
	.basenav ul li{
		float: left;
		text-align: left ;
		height: 80px;
		margin-left: calc(25% - 72px);
		letter-spacing: 0;
		min-width: 48px;
	}
	.basenav ul li:first-child{
		display: none;
	}
	.basenav ul li:nth-child(2){
		margin-left: 0;
	}
	.basenav ul li a:first-child{
		font-size: .75rem;

	}
	.basecopyright{
		background-color: #333333;
	}
	.companyIntro{
		width: 90%;
	}
	.basenav ul li:nth-child(6){
		display: none;
	}
	.hotTitle{
		font-size: 1.25rem;
	}
	.serviceHome{
		margin: 0 0 50px;
	}
	.companyIntro h2{
		font-size: 1.125rem;
		padding-bottom: 19px;
	}
	.companyIntro p{
		font-size: .875rem;
	}
	ul.newsNav li a{
		font-size: .9375rem;
	}
	.content{
		padding: 30px;
	}
	.post-title{
		font-size: 1.25rem;
	}
	.widgettitle h3,.feedbackArea h2{
		font-size: 1.1875rem;
	}
	.widget li{
		font-size: 81.25%;
	}
	.widget ul :first-child{
		margin-top: 68px;
	}
	.feedbackTable>div{
		margin: 10px 0;
	}
	form div.row input.col-2,.oneLine div.col-4{
		width: 100%;
	}
	.telwidth{
		width: calc(100% - 92px);
	}
	form div.row div.col-4{
		display: flex;
		flex-direction: row;
		justify-content: space-between;
	}
	.jobList li,.jobUnit span{
		font-size: .8125rem;
	}
	.jobList h3,.jobUnit span:first-child{
		font-size: 1.0625rem;
		margin-bottom: 10px;
	}
	.jobUnit{
		padding-top: 30px;
		padding-bottom: 30px;
	}
	.jobList ul{
		margin-bottom: 20px;
	}
	.termtip .termtiptext{
		width: 72vw;
	}
	.brandTags{
		justify-content: space-around;
	}
	.sercommList{
		width: 85%;
		min-width: 300px;
	}
	.sercommUnit{
		width: 87px;
		margin:20px calc(16.66% - 44px);
	}
	.sercommList .termtip:nth-child(3n+1) .termtiptext{
		left: 7.5%;
	}
	.sercommList .termtip:nth-child(3n+2) .termtiptext{
		left: 14%;
	}
	.sercommList .termtip:nth-child(3n+3) .termtiptext{
		left: 20.5%;
	}
}
@media screen and (max-width: 414px){
	/*.sercommUnit{*/
	/*	float: left;*/
	/*}*/
	ul.sceneNav li a{
		font-size: .93em;
	}
}

@media screen and (max-width: 360px) {
	.moreService a {
		background-color: #e6e6e6;
		color: #282828;
		font-size: 0.6rem;
		border-radius: 8px;
		text-align: center;
		margin: 0;
		padding: 10px;
	}
	.servicePart h4 {
		font-size: 0.5rem;
	}
	.brandPic img {
		width: 60%;
	}
	.brandList figure {
		width: 40vw;
		height: 30vw;
		margin: 5px 2vw;
		line-height: 30vw;
	}
	/*ul.brandNav li a {*/
	/*	font-size: 0.4rem;*/
	/*	color: #666666;*/
	/*	text-decoration: none;*/
	/*}*/
	ul.feedbackNav li a{
		font-size: 1rem;
	}
}

.companyIntro ul{
	text-align: left;
	line-height: 25px;
}
.basenav>ul>li:nth-child(4)>a:nth-child(2){
	left: 0;
}
.icon{
	width: 35px;
	height: 35px;
	margin-right: 35px;
}
.code{
	width: 120px;
	height: 138px;
	margin-right: 135px;
	display: none;
	border: 1px solid #404040;
}
.baseQR>div{
	display: flex;
	flex-direction: row;
	justify-content: right;
}
.baseQR>div:first-child{
	width: 100%;
	height: 75px;
	margin-bottom: 5px;
	position: relative;
	bottom: 65px;
}

.margin_bottom{
	margin-bottom: 100px;
}

