index.wxss 934 B

123456789101112131415161718192021222324252627
  1. .red-bg{background:#EE3A43;color: white;padding: 40rpx;}
  2. .title {display: flex;justify-content: space-between;padding: 20rpx;}
  3. .tips, .tips text{display: inline-block;line-height: 60rpx;}
  4. .tips:before {
  5. content: "";
  6. border-radius: 4rpx;
  7. background: #ee3a43;
  8. width: 6rpx;
  9. height: 40rpx;
  10. vertical-align: top;
  11. margin-top: 10rpx;
  12. margin-right: 12rpx;
  13. display: inline-block;
  14. }
  15. .select{background: #EFEFEF; border-radius: 40rpx; height: 60rpx; line-height: 60rpx; position: relative; font-size: 24rpx; padding: 0 20rpx;}
  16. .select .picker{width:320rpx;overflow: hidden; line-height: 60rpx; display: inline-block;}
  17. .select::after{content: '\e991'; font-family: 'icomoon'; font-size: 24rpx; position: absolute; right: 20rpx; top: 45%; line-height: 0;}
  18. .item {
  19. padding: 20rpx;
  20. display: flex;
  21. line-height: 48rpx;
  22. justify-content: space-between;
  23. border-bottom: 2rpx solid #dcdddd;
  24. }
  25. .text-right {
  26. text-align: right;
  27. }