workbench.scss 2.51 KB
.page{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
.my-top{
	position: absolute;
	width: 100%;
	height: 300rpx;
	/* #ifdef MP */
	height: 360rpx;
	/* #endif */
	overflow: hidden;
	.head{
		position: fixed;
		left: 0;
		top: 0;
		z-index: 100;
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 100%;
		height: 100rpx;
		/* #ifdef APP-PLUS */
		height: calc(100rpx + var(--status-bar-height));
		padding-top: var(--status-bar-height);
		/* #endif */
		/* #ifdef MP */
		height: calc(120rpx + var(--status-bar-height));
		padding-top: calc(40rpx + var(--status-bar-height));
		/* #endif */
		background-color: rgba(255,255,255,0);
		.logo-title{
			width: 40%;
			color: #fff;
			padding-left: 20rpx;
			image {
				width: 169rpx;
				height: 40rpx;
				margin-left: 10rpx;
			}
		}
		.setting-mess{
			width: 20%;
			display: flex;
			align-items: center;
			height: 100%;
			margin-right: 20rpx;
			.setting{
				display: flex;
				justify-content: center;
				align-items: center;
				width: 80rpx;
				height: 100%;
				text{
					font-size: 38rpx;
				}
			}
			.mess{
				display: flex;
				justify-content: center;
				align-items: center;
				width: 80rpx;
				height: 100%;
				text{
					font-size: 38rpx;
				}
			}
		}
	}
}
.main {
	position: relative;
	top: 90rpx;
	padding-bottom: 20px;
	/* #ifdef MP */
	top: 170rpx;
	padding-bottom: 20px;
	/* #endif */
	margin: 0 20rpx;
}
.banner {
	height: 330rpx;
	image {
		width: 100%;
		border-radius: 20rpx;
	}
}
.bg-white {
	background-color: #fff;
	border-radius: 20rpx;
	margin-top: 20rpx;
}
.bidding-title {
	display: flex;
	align-items: center;
	font-size: 30rpx;
	font-weight: bold;
	padding: 40rpx;
	color: #000;
	.bidding-title-line {
		width: 14rpx;
		height: 30rpx;
		border-radius: 80rpx;
		background: -webkit-gradient(linear, top top, bottom top, from(#30a738), to(#4dcc56));
		background: -o-linear-gradient(top, #30a738, #4dcc56);
		background: linear-gradient(to top, #30a738, #4dcc56);
		margin-right: 20rpx;
		box-shadow: 0 5rpx 10rpx #ace2b0;
	}
}
.wallet-info{
	display: flex;
	width: 100%;
	margin-top: 20rpx;
	flex-wrap: wrap;
	.list{
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		width: 25%;
		margin-bottom: 40rpx;
		.icon{
			position: relative;
			display: flex;
			align-items: center;
			image {
				width: 80rpx;
				height: 80rpx;
			}
		}
		.title{
			display: flex;
			align-items: center;
			margin-top: 20rpx;
			text{
				color: #888888;
				font-size: 24rpx;
			}
		}
	}
}