12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- .intr {
- position: relative;
- width: 100vw;
- box-sizing: border-box;
- background-color: #fff;
- padding: 20rpx 30rpx;
- .num {
- height: 40rpx;
- line-height: 40rpx;
- font-size: 32rpx;
- font-family: PingFang SC-Bold, PingFang SC;
- font-weight: bold;
- color: #333333;
- }
- .tags {
- margin-bottom: 15rpx;
- text {
- display: inline-block;
- height: 40rpx;
- line-height: 40rpx;
- background: #E7EEFF;
- border-radius: 20rpx;
- padding: 0 15rpx;
- font-size: 20rpx;
- color: #fff;
- margin-right: 10rpx;
- }
- }
- .exp {
- height: 34rpx;
- line-height: 34rpx;
- font-size: 26rpx;
- margin-bottom: 8rpx;
- color: #666;
- }
- }
- .footer {
- display: flex;
- justify-content: space-between;
- 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;
- z-index: 9999;
- padding-top: 10rpx;
- .price {
- line-height: 90rpx;
- view {
- font-size: 24rpx;
- color: rgb(163, 162, 162);
- }
- .count {
- font-size: 32rpx;
- font-weight: bold;
- color: var(--error);
- margin: 2rpx 0 10rpx 0;
- }
- }
- .but-box {
- .but {
- min-width: 156rpx;
- height: 90rpx;
- background: #3874F6;
- border-radius: 8rpx;
- font-size: 28rpx;
- font-family: PingFang SC-Bold, PingFang SC;
- font-weight: bold;
- color: #FFFFFF;
- }
- .delete {
- background: var(--warning);
- }
- }
- }
|