minorcontrol.scss 1.17 KB
.listBox{
	position: relative;
	z-index: 1;
}
.content {
	width: 100%;
}
.topimg {
	margin: 25rpx;
	image {
		width: 100%;
		border-radius: 20rpx;
	}
}
.titleall-box {
	display: flex;
	justify-content: space-between;
	padding: 40rpx 20rpx 20rpx 0;
	.titleall-left {
		font-size: 32rpx;
		font-weight: bold;
		display: flex;
		align-items: center;
		.titleall-left-line {
			width: 14rpx;
			height: 36rpx;
			border-radius: 0 10rpx 10rpx 0;
			background-color: #667FFF;
			box-shadow: 0 0 10rpx 5rpx #d1d9ff;
			margin-right: 20rpx;
		}
	}
}
/* 列表 */
.message-list{
	background-color: #FFFFFF;
	border-radius: 20rpx;
	font-size: 26rpx;
	margin: 25rpx;
	.list{
		display: flex;
		align-items: center;
		justify-content: space-between;
		height: 100rpx;
		border-bottom: 2rpx solid #eceff4;
		margin: 0 35rpx;
		.icon-data{
			display: flex;
			align-items: center;
			width: 30%;
			.data{
				.title{
					display: flex;
					width: 100%;
					text{
						color: #909090;
					}
				}
			}
		}
		.more{
			display: flex;
			align-items: center;
			justify-content: flex-end;
		}
	}
	.list:last-child {
		border-bottom: 0;
	}
}