| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119 | 
							- @import "./index.skeleton.wxss";
 
- page {
 
- 	height: 100vh;
 
- 	overflow: hidden;
 
- }
 
- .total {
 
- 	height: 60rpx;
 
- 	line-height: 60rpx;
 
- 	font-size: 24rpx;
 
- 	font-family: PingFang SC-Regular, PingFang SC;
 
- 	color: #666666;
 
- 	padding-left: 30rpx;
 
- }
 
- .product {
 
- 	display: flex;
 
- 	align-items: center;
 
- 	width: 100vw;
 
- 	padding: 20rpx 30rpx;
 
- 	background: #fff;
 
- 	border-bottom: 1rpx solid #ddd;
 
- 	box-sizing: border-box;
 
- 	overflow: hidden;
 
- 	.image-box {
 
- 		font-size: 0;
 
- 		width: 176rpx;
 
- 		height: 176rpx;
 
- 		border-radius: 16rpx;
 
- 		overflow: hidden;
 
- 		margin-right: 30rpx;
 
- 		flex-shrink: 0;
 
- 		.text {
 
- 			display: inline-block;
 
- 			width: 176rpx;
 
- 			height: 176rpx;
 
- 			line-height: 172rpx;
 
- 			font-size: 24rpx;
 
- 			text-align: center;
 
- 			color: #666;
 
- 			border: 1rpx solid #ddd;
 
- 			border-radius: 16rpx;
 
- 			box-sizing: border-box;
 
- 		}
 
- 	}
 
- 	.right-box {
 
- 		width: 480rpx;
 
- 		.title {
 
- 			height: 40rpx;
 
- 			line-height: 40rpx;
 
- 			font-size: 28rpx;
 
- 			font-weight: 600;
 
- 			color: #333333;
 
- 		}
 
- 		.type {
 
- 			height: 34rpx;
 
- 			line-height: 34rpx;
 
- 			font-size: 24rpx;
 
- 			color: #888888;
 
- 			margin-top: 8rpx;
 
- 		}
 
- 		.tags {
 
- 			display: flex;
 
- 			height: 32rpx;
 
- 			margin-top: 8rpx;
 
- 			width: 100%;
 
- 			>view {
 
- 				flex-shrink: 0;
 
- 				height: 32rpx;
 
- 				line-height: 32rpx;
 
- 				padding: 0 10rpx;
 
- 				font-size: 20rpx;
 
- 				color: #FFFFFF;
 
- 				margin-right: 8rpx;
 
- 				border-radius: 6rpx;
 
- 			}
 
- 		}
 
- 	}
 
- }
 
- .footer {
 
- 	display: flex;
 
- 	justify-content: space-between;
 
- 	align-items: center;
 
- 	padding: 0 30rpx;
 
- 	position: fixed;
 
- 	width: 100vw;
 
- 	height: 130rpx;
 
- 	background: #FFFFFF;
 
- 	box-shadow: 0px -4rpx 16rpx 2rpx rgba(150, 157, 165, 0.16);
 
- 	bottom: 0;
 
- 	box-sizing: border-box;
 
- 	.count {
 
- 		font-size: 28rpx;
 
- 		font-family: PingFang SC-Regular, PingFang SC;
 
- 		color: #333333;
 
- 	}
 
- 	.but {
 
- 		width: 156rpx;
 
- 		height: 90rpx;
 
- 		background: #3874F6;
 
- 		border-radius: 8rpx;
 
- 		font-size: 28rpx;
 
- 		font-family: PingFang SC-Bold, PingFang SC;
 
- 		font-weight: bold;
 
- 		color: #FFFFFF;
 
- 	}
 
- }
 
 
  |