index.scss 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. .search {
  2. background-color: #f5f5f5;
  3. }
  4. .total {
  5. padding: 10rpx 20rpx;
  6. font-size: 24rpx;
  7. color: #999;
  8. background-color: #f5f5f5;
  9. border-bottom: 1rpx solid #e8e8e8;
  10. }
  11. .list-item {
  12. background-color: #fff;
  13. margin-bottom: 10rpx;
  14. }
  15. .main {
  16. display: flex;
  17. padding: 20rpx;
  18. position: relative;
  19. }
  20. .checkbox {
  21. margin-right: 20rpx;
  22. display: flex;
  23. align-items: center;
  24. }
  25. .dec {
  26. flex: 1;
  27. }
  28. .title {
  29. font-size: 32rpx;
  30. font-weight: bold;
  31. color: #333;
  32. margin-bottom: 10rpx;
  33. }
  34. .subfield {
  35. font-size: 24rpx;
  36. color: #666;
  37. margin-bottom: 8rpx;
  38. }
  39. .line-1 {
  40. overflow: hidden;
  41. text-overflow: ellipsis;
  42. white-space: nowrap;
  43. }
  44. .footer {
  45. position: fixed;
  46. bottom: 0;
  47. left: 0;
  48. right: 0;
  49. display: flex;
  50. justify-content: space-between;
  51. align-items: center;
  52. padding: 20rpx;
  53. background-color: #fff;
  54. border-top: 1rpx solid #e8e8e8;
  55. box-shadow: 0 -2rpx 10rpx rgba(0, 0, 0, 0.1);
  56. }
  57. .count {
  58. font-size: 28rpx;
  59. color: #333;
  60. }
  61. .but {
  62. width: 180rpx;
  63. height: 80rpx;
  64. line-height: 80rpx;
  65. border-radius: 8rpx !important;
  66. font-size: 32rpx;
  67. background-color: #3874F6;
  68. color: #fff;
  69. }