/* 引入初始化样式*/
.foot-nav {
	position: fixed;
	bottom: 0;
	width: 100vw;
	height: 1.1rem;
	background-color: #fff;
	z-index: 999;
	text-align: center;
	box-shadow: 5px 5px 5px 5px #4c5059;
	box-sizing: border-box;
	padding-top: 0.1rem;
	font-size: 0.16rem;
	/* opacity: 0.9; */
}

.foot-nav a {
	color: #4a4a4a;
}
.foot-nav .active a{
	color: #007AFF!important;
}
.foot-nav p {
	margin-top: 0.05rem;
}
.foot-nav img{
	width: .56rem;
	height: .56rem;
}

footer {
	height: 4rem;
	background-color: #4c5059;
	box-sizing: border-box;
	padding: 0.8rem 0.3rem 0;
	color: #c8c8c8;
	font-size: 0.12rem;
}

footer img {
	width: 3.41rem;
	height: 1rem;
}

.a-box {
	width: 1.5rem;
}

.a-box a {
	display: block;
	color: #c8c8c8;
	font-size: 0.24rem;
	line-height: 0.4rem;
}

.foo-phone {
	line-height: 0.5rem;
}

header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 8;
	width: 100vw;
	height: 0.9rem;
	padding: 0 0.32rem;
	box-sizing: border-box;
	background-color: #4c5059;
}

header .logo {
	width: 2.46rem;
	height: 0.72rem;
}

header .menu {
	width: 0.26rem;
	height: 0.26rem;
}

.mode-box {
	width: 100vh;
	height: 100vh;
	position: fixed;
	top: 0;
	background-color: rgba(0, 0, 0, 0.7);
	z-index: 9;
	display: none;
}

.mode {
	position: fixed;
	width: 5rem;
	height: 100vh;
	left: 7.5rem;
	top: 0;
	background-color: rgba(255, 255, 255, 0.9);
	z-index: 99;
	transition: all 0.2s;
	opacity: 0;
}

.mode-top {
	height: 1rem;
	border-bottom: 1px solid #ededed;
	padding: 0 0.23rem;
	background-color: #4c5059;
}

.mode-top img {
	width: 2.3rem;
	height: 0.75rem;
}

.mode-top span {
	font-size: 0.58rem;
	color: #999;
	transform: rotate(45deg);
}

.mode-list {
	height: 0.9rem;
	border-bottom: 1px solid #c8c8c8;
	padding-left: 0.3rem;
}

.mode-list a {
	color: #333;
	display: block;
	width: 100%;
	height: 100%;
	line-height: 0.9rem;
}

.mode-foot {
	position: absolute;
	bottom: 1.3rem;
	left: 0.3rem;
}

/* 清除浮动 */
.clear {
	zoom: 1;
}

.clear:after {
	clear: both;
	content: "";
	height: 0;
	visibility: hidden;
	line-height: 0;
}

/* 文字溢出 */
/* 文字一行溢出 */
.oneline {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
}

/* 文字两行溢出 */
.twoline {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

/* 文字三行溢出 */
.thline {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
}

/* 转换成flex容器 */
.flex {
	display: flex;
}

/* 竖直排列 */
.flexv {
	flex-direction: column;
}

/* 自动填充 */
.flex1 {
	flex: 1;
}

/* 自动换行 */
.flex-wrap {
	display: flex;
	flex-wrap: wrap;
}

/* 水平居中 */
.jus-c {
	display: flex;
	justify-content: center;
}

/* 水平两端对齐 */
.jus-b {
	display: flex;
	justify-content: space-between;
}

/* 水平相等间距 */
.jus-a {
	display: flex;
	justify-content: space-around;
}

/* 主轴终端对齐 */
.jus-e {
	display: flex;
	justify-content: flex-end;
}

/* 竖直居中 */
.ali-c {
	display: flex;
	align-items: center;
}

/* 水平垂直居中 */
.flexc {
	display: flex;
	justify-content: center;
	align-items: center;
}

.greybody {
	background: #f4f4f4;
}

/* 图片宽高100% */
.fill {
	width: 100%;
	height: 100%;
	display: block;
}

/* 图片宽度100%，高度自动 */
.fill-auto {
	display: block;
	width: 100%;
	height: auto;
}

/* 底部占位符 */
.foot-seat {
	height: 1rem;
}

/* 文本靠右 */
.tr {
	text-align: right;
}

/* 文本居中 */
.tc {
	text-align: center;
}

/* vant的Toast提示宽度由内容撑开 */
.van-toast--text {
	min-width: auto;
}

/* animate.css中提取的tada动画 */
@-webkit-keyframes tada {
	from {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}

	10%,
	20% {
		-webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
		transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
	}

	30%,
	50%,
	70%,
	90% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
	}

	40%,
	60%,
	80% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
	}

	to {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
}

@keyframes tada {
	from {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}

	10%,
	20% {
		-webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
		transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
	}

	30%,
	50%,
	70%,
	90% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
	}

	40%,
	60%,
	80% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
	}

	to {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
}

.tada {
	-webkit-animation-name: tada;
	animation-name: tada;
}

.mt2 {
	margin-top: 40rpx;
}

.bg-grey {
	background-color: #f3f5f7;
}

/* 页面公共背景色 */
.pub-page-bg {
	background: #f0f0f0;
	min-height: 100vh;
}

/* 确认弹窗样式 */
.confirm-box {
	width: 75%;
	border-radius: .16rem;
}


.confirm-box .van-dialog__message {
	padding: .5rem .3rem;
	text-align: center;
	font-size: .36rem;
	color: #000;
}

.confirm-box .van-dialog__message p {
	margin: 0 auto 0.1rem;
	text-align: left;
	font-size: 0.28rem;
	color: #999999;
}

.confirm-box .van-dialog__message .info {
	width: 3.04rem;
}

.confirm-box .van-hairline--top::after {
	border: 0 solid #ddd;
	border-top-width: 1px;
}

.confirm-box .van-hairline--top .van-button::before {
	background-color: #f6f6f6;
}

.confirm-box .van-hairline--top .van-dialog__confirm,
.confirm-box .van-hairline--top .van-dialog__confirm:active {
	color: #ff5000;
}

.van-hairline--bottom::after {
	border-color: #e5e5e5 !important;
}

/* 背部固定 */
.noscroll {
	position: fixed;
}

.list-detail {
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	max-height: 100vh;
	overflow-x: hidden;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	z-index: 99;
}

.pfixed {
	position: fixed;
	z-index: 999;
}

.fade-enter {
	opacity: 0;
}

.fade-enter-active {
	transition: opacity 1s;
}

.fade-leave-active {
	transition: opacity 1s;
}

.fade-leave-to {
	opacity: 0;
}

/* 创建父级盒子样式 */
.f {
	background-color: #fff
}

.fm {
	background-color: #fff;
	margin-top: 20rpx
}

.fpm {
	background-color: #fff;
	padding-left: 30rpx;
	padding-right: 30rpx;
	margin-top: 20rpx
}

.fp {
	background-color: #fff;
	padding-left: 30rpx;
	padding-right: 30rpx;
}

.fpb {
	background-color: #fff;
	padding-left: 30rpx;
	padding-right: 30rpx;
	border-bottom: 1rpx solid #ececec
}

.betit {
	font-size: 32rpx;
	color: #333;
	line-height: 85rpx;
	font-weight: 900;
	padding-left: 20rpx
}

.betit::before {
	display: inline-block;
	content: '';
	width: 6rpx;
	height: 32rpx;
	background-color: #3172f5;
	position: relative;
	top: 5rpx;
	left: -18rpx;
}

.no-data {
	line-height: 100rpx;
	text-align: center;
	color: #999;
}
