:root{
	--public-color: #F04A88;
	--font: #fff;
	--yellow: #F4A45F;
	--white: #fff;
}
img{vertical-align: middle;}
#offCanvasContentScroll{}
.fly-nav{background: url("https://arc-live.oss-cn-hongkong.aliyuncs.com/mobile/top_bg.png") no-repeat;
background-size:100% 100%;
 position: fixed; height:90px;padding-top:20px; color:#fff;
}
.clear{clear: both;}
.fly-nav .mui-title img{width:70px;}
.mui-bar .mui-btn-link{color:var(--font); line-height:30px;}
header a{color:var(--font);}
.menu-head{text-align: center; background-color: var(--public-color);
clip-path: polygon( 0 0, 100% 0, 100% 100%, 0% calc(95% - 32px) );}
.menu-head img{width:70%; margin:38px auto;}
.menu-left ul li a span{margin-right:16px;}
.menu-left .mui-collapse-content{background-color: #242424 !important; margin-top:0px !important; padding-top:0px !important;}
.menu-left .mui-collapse-content ul{list-style:none;}
.menu-left .mui-collapse-content ul li a{color:var(--font);}.pc-banner {
	background:var(--yellow);
	width: 100%;
	margin-top:-5px;
	padding-bottom:0.5vh;
}
.index-footer{margin-top:8px;}
.index-footer P{font-size:.9em; color:#fff;padding:3px 0px;}
.index-footer P:last-child{margin:0px;padding:0px;}
.index-footer ul{width: 50vw; margin: 0 auto; padding:0px 0px;padding-bottom: 12px;}
.index-footer ul li{list-style: none; float:left; width:16.66%;text-align: center;}
.index-footer ul li img{width:1.4em;}

/* 联系我们 */
.contact{background-color: #363437;}
.contact form{background-color: #363437;}
.contact-title{background-color: #363437;color:var(--white);text-align: center; padding:18px 0px;
font-size:1.3em; line-height: 1.9em;}
.contact-title img{width:1em; line-height: 0;}
.contact .mui-input-group .mui-input-row{
    margin-bottom: 18px;
    width: 90vw;
    margin-left: 3vw;
    border-radius: 8px;}
.index-footer{background-color: #363437;}
.index-footer p{text-align: center;}
.contact .contact-btn {background: #F04A88;border:0;width:90vw;font-size:1em; letter-spacing: 3px;border-radius: 8px;padding:1.1vh 0vw;}
/*  覆盖 重置mui相关样式 */
.mui-content-padded{margin:0px;}
.mui-button-row{padding-top:0px;}
.mui-table-view-chevron .mui-table-view-cell>a:not(.mui-btn){margin-right: 0px;}
.mui-table-view-chevron .mui-table-view-cell,
.mui-table-view-cell.mui-collapse .mui-table-view.mui-table-view-chevron{margin-right:0px !important;padding-right:0px}
.mui-bar .mui-icon{padding-top:0px;}
.mui-bar .mui-btn-link{line-height: none;}
.mui-table-view-cell.mui-collapse .mui-table-view .mui-table-view-cell:after{background-color: #222;}
.mui-scroll{position: unset;}
.mui-input-group:after,.mui-input-group:before,.mui-input-group .mui-input-row:after{background-color: #363437;}
.mui-input-group input, .mui-input-group textarea,.mui-input-group .mui-input-row:after{background-color: var(--white);}


/*面包屑*/
.breadcrumb-bg{background-color: var(--public-color);}
.breadcrumb {
    box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.35);
    overflow: hidden;
    border-radius: 5px;
}

.breadcrumb a {
	text-decoration: none;
	text-align: center;
	outline: none;
	margin:12px 0;
	display: block;
	float: left;
	font-size: 12px;
	line-height: 36px;
	color: white;
	/*need more margin on the left of links to accomodate the numbers*/
	padding: 0 10px 0 30px;
	background: #666;
	background: linear-gradient(#666, #333);
	position: relative;
}
/*since the first link does not have a triangle before it we can reduce the left padding to make it look consistent with other links*/
.breadcrumb a:first-child {
	margin-left:5vw;
	padding-left: 10px;
	border-radius: 5px 0 0 5px; /*to match with the parent's radius*/
}
.breadcrumb a:first-child:before {
	left: 6px;
}
.breadcrumb a:last-child {
	border-radius: 0 5px 5px 0; /*this was to prevent glitches on hover*/
	padding-right: 15px;
}

/*hover/active styles*/
.breadcrumb a.active, .breadcrumb a:hover{
	background: #333;
	background: linear-gradient(#333, #000);
}
.breadcrumb a.active:after, .breadcrumb a:hover:after {
	background: #333;
	background: linear-gradient(135deg, #333, #000);
}

/*adding the arrows for the breadcrumbs using rotated pseudo elements*/
.breadcrumb a:after {
	content: '';
	position: absolute;
	top: 2px; 
	right: -16px; /*half of square's length*/
	/*same dimension as the line-height of .breadcrumb a */
	width: 32px; 
	height: 32px;
	/*as you see the rotated square takes a larger height. which makes it tough to position it properly. So we are going to scale it down so that the diagonals become equal to the line-height of the link. We scale it to 70.7% because if square's: 
	length = 1; diagonal = (1^2 + 1^2)^0.5 = 1.414 (pythagoras theorem)
	if diagonal required = 1; length = 1/1.414 = 0.707*/
	transform: scale(0.707) rotate(45deg);
	/*we need to prevent the arrows from getting buried under the next link*/
	z-index: 1;
	/*background same as links but the gradient will be rotated to compensate with the transform applied*/
	background: #666;
	background: linear-gradient(135deg, #666, #333);
	/*stylish arrow design using box shadow*/
	box-shadow: 
		2px -2px 0 2px rgba(0, 0, 0, 0.4), 
		3px -3px 0 2px rgba(255, 255, 255, 0.1);
	/*
		5px - for rounded arrows and 
		50px - to prevent hover glitches on the border created using shadows*/
	border-radius: 0 5px 0 50px;
}
/*we dont need an arrow after the last link*/
.breadcrumb a:last-child:after {
	content: none;
}
.menu-left ul li img{    width: 1.2em;
    margin-right: 3vw;}

.flat a, .flat a:after {
	background: white;
	color: black;
	transition: all 0.5s;
}
.flat a:before {
	background: white;
	box-shadow: 0 0 0 1px #ccc;
}
.flat a:hover, .flat a.active, 
.flat a:hover:after, .flat a.active:after{
	background: #9EEB62;
}

.zixun{
    display:block;padding:5px 18px;margin:10px 0px 5px 4px;font-size:0.9em;width:42%; min-width:130px;text-align:center;
    background-color: #EA4A86;color:#fff; border-radius: 18px;letter-spacing:2px;
}
.contact{padding-bottom:18px;}
	.pink{color:var(--public-color) !important;}
header .wechat-copy{background:none; border:0;color:#fff;}