queue.wxss 867 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. .list-box{
  2. width: 700rpx;
  3. margin: 20rpx auto;
  4. padding-bottom: 20rpx;
  5. border-bottom: 1rpx solid #eee;
  6. display: flex;
  7. }
  8. .list-img{
  9. width: 120rpx;
  10. height: 120rpx;
  11. margin-right: 30rpx;
  12. }
  13. .list-img image{
  14. width: 100%;
  15. height: 100%;
  16. }
  17. .list-name{
  18. font-size: 32rpx;
  19. font-weight: bold;
  20. margin: 20rpx 0 10rpx;
  21. display: flex;
  22. }
  23. .gender-img{
  24. width: 40rpx;
  25. height: 40rpx;
  26. margin-left: 20rpx;
  27. padding-top: 2rpx;
  28. }
  29. .gender-img image{
  30. width: 100%;
  31. height: 100%;
  32. }
  33. .list-time{
  34. color: #999;
  35. }
  36. .boyImg{
  37. transform: rotate(135deg);
  38. }
  39. .queueBtn{
  40. width: 400rpx;
  41. height: 80rpx;
  42. line-height: 80rpx;
  43. background: #cc6031;
  44. color: #FFF;
  45. border-radius: 80rpx;
  46. text-align: center;
  47. margin: 20rpx 175rpx;
  48. position: absolute;
  49. bottom: 20rpx;
  50. }
  51. .cancelBtn{
  52. background: #999;
  53. }
  54. .list-view{
  55. padding-bottom: 100rpx;
  56. }