head.wxss 1.6 KB

.headBoxBox {
	width: 100%;
}
.headBox,
.state,
.nav {
	width: 750rpx;
}

/* 头部整体内容 */
.headBox {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
}

/* 状态栏 */
.state {
	position: relative;
}

/* 导航栏 */
.nav {
	display: flex;
	align-items: center;
	position: relative;
}
.searchImg {
	width: 32rpx;
	height: 32rpx;
}
.backBtnBlack {
	margin-left: 32rpx;
	right: 50rpx;
	top: 150rpx;
	content: "";
	display: inline-block;
	height: 20rpx;
	width: 20rpx;
	border-width: 0 0 2px 2px;
	border-color: #000;
	border-style: solid;
	transform: matrix(0.71, 0.71, -.71, 0.71, 0, 0);
	-webkit-transform: matrix(0.71, 0.71, -.71, 0.71, 0, 0);
}
.backBtnWhite {
	margin-left: 32rpx;
	right: 50rpx;
	top: 150rpx;
	content: "";
	display: inline-block;
	height: 20rpx;
	width: 20rpx;
	border-width: 0 0 2px 2px;
	border-color: #fff;
	border-style: solid;
	transform: matrix(0.71, 0.71, -.71, 0.71, 0, 0);
	-webkit-transform: matrix(0.71, 0.71, -.71, 0.71, 0, 0);
}
.bottomBtn {
	right: 50rpx;
	top: 150rpx;
	content: "";
	display: inline-block;
	height: 16rpx;
	width: 16rpx;
	border-width: 0 2px 2px 0;
	border-color: #fff;
	border-style: solid;
	transform: matrix(0.71, 0.71, -.71, 0.71, 0, 0);
	-webkit-transform: matrix(0.71, 0.71, -.71, 0.71, 0, 0);
}
.address {
	display: flex;
	align-items: center;
	margin-left: 32rpx;
}
.addressText {
	color: #fff;
	font-weight: 600;
	width: 96rpx;
	overflow: hidden;
	white-space: nowrap;
}
.title {
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
}