*{
	margin:0;
	padding:0;
	box-sizing: border-box;
}
body{
	background: #FFF;
	color:#333;
	font-family: PingFangSC-Regular, PingFang SC;
}
img{
	vertical-align: top;
}
a {
	text-decoration: none;
	color: inherit;
}
#app{
	font-size:1.2rem;
}


.flex {
	display: flex;
}
.flex-center {
	display: flex;
	align-items: center;
}
.flex-center2 {
	display: flex;
	align-items: center;
	justify-content: center;
}
.flex-bt {
	display: flex;
	justify-content: space-between;
}
.flex-btc {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.flex-item {
	flex: 1;
	overflow: hidden;
}

.primary {
	color: #30ADFE;
}
.dark {
    color: #333;
}
.gray2 {
    color: #646464;
}
.success {
	color: #00BC43;
}
.danger {
	color: #FF4747;
}
.whilte {
	color: #fff;
}
.bold {
	font-weight: bold;
	color: #333;
}

.img-cover {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/*按钮样式*/
.app-btn {
	border: 1px solid #EDEDED;
	background: #fff;
	min-width: 8rem;
	line-height: 2.6rem;
	padding: 0 1.2rem;
	color:#333;
	text-align: center;
	cursor: pointer;
	border-radius: 0.3rem;
	font-size: 1.2rem;
}
.app-btn.info {
	background: #EDEDED;
}
.app-btn.primary {
	background: #30ADFE;
	color: #fff;
	border: 0;
}
.app-btn.round {
	border-radius: 1.3rem;
}

.b-dialog {
	background: #F6F6F6;
	padding: 3rem 2rem;
}

.b-h-zw {
	height: 4.8rem;
}
.b-header-box {
	/* z-index: 999; */
	position: relative;
}
.b-header {
	background: #30ADFE;
	height: 4.8rem;
	padding: 0 1.4rem;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	text-align: center;
	z-index: 998;
}
.b-h-logo {
	height: 2.1rem;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}
.b-h-menu {
	position: absolute;
	left: 1.4rem;
	top: 50%;
	height: 1.8rem;
	transform: translateY(-50%);
}

.b-menu-box {
	z-index: 999;
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	padding-top: 4.8rem;
}
.b-menu {
	padding: 2.3rem 1.4rem;
	background: #F6F6F6;
	position: relative;
	left: 0;
	right: 0;
	width: 24rem;
	height: 100%;
	overflow-y: auto;
	color: #646464;
}
.ac-user-box {
	flex-direction: column;
	margin-top: 1.6rem;
}
.ac-user-img {
	width: 7.5rem;
	height: 7.5rem;
	border-radius: 50%;
	background: #fff;
}
.ac-user-img img {
	width: 2.5rem;
}
.ac-name {
	margin-top: 1.2rem;
}
.ac-email {
	margin-top: 0.5rem;
}
.ac-menu {
	padding: 1rem 0 0 2rem;
}
.ac-menu-item {
	padding-top: 3rem;
	align-items: flex-start;
}
.ac-menu-icon {
	width: 1.5rem;
	height: 1.5rem;
	position: relative;
}
.ac-menu-icon img {
	width: 100%;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}
.ac-menu-ul {
	padding-left: 0.7rem;
	flex: 1;
}
.ac-menu-title {
	font-weight: 600;
	cursor: pointer;
	/* border-right: 2px solid transparent; */
}
.ac-menu-title.on, .ac-menu-title:hover {
	color: #30ADFE;
	/* border-right: 2px solid #30ADFE; */
}
.ac-menu-sub {
	padding-top: 0.2rem;
}
.ac-menu-sub-title {
	cursor: pointer;
	margin-top: 1rem;
	/* border-right: 2px solid transparent; */
}
.ac-menu-sub-title.on, .ac-menu-sub-title:hover {
	color: #30ADFE;
	/* border-right: 2px solid #30ADFE; */
}