index.scss 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. view {
  2. box-sizing: border-box;
  3. }
  4. .container {
  5. min-height: 100vh;
  6. background:#F7F8FB ;
  7. .list{
  8. padding: 24rpx 30rpx;
  9. .item{
  10. // height: 242rpx;
  11. background: #FFFFFF;
  12. box-shadow: 0rpx 4rpx 16rpx -8rpx rgba(0,103,104,0.16);
  13. border-radius: 32rpx;
  14. padding: 40rpx 24rpx;
  15. margin-bottom: 24rpx;
  16. .top{
  17. display: flex;
  18. justify-content: space-between;
  19. padding-bottom: 24rpx;
  20. border-bottom: 1rpx solid #E6E7E8;
  21. .name{
  22. font-size: 28rpx;
  23. font-family: PingFang-SC, PingFang-SC;
  24. font-weight: bold;
  25. color: #333333;
  26. }
  27. .money{
  28. font-size: 32rpx;
  29. font-family: PingFang-SC, PingFang-SC;
  30. font-weight: bold;
  31. color: #333333;
  32. }
  33. }
  34. .bot{
  35. padding-top: 24rpx;
  36. .refuseBox{
  37. // height: 112rpx;
  38. background: #F4F4F4;
  39. border-radius: 12rpx;
  40. padding: 18rpx 24rpx;
  41. font-size: 26rpx;
  42. font-family: PingFang-SC, PingFang-SC;
  43. font-weight: 500;
  44. color: #333333;
  45. margin-bottom: 32rpx;
  46. }
  47. .item1{
  48. display: flex;
  49. justify-content: space-between;
  50. .left{
  51. font-size: 26rpx;
  52. font-family: PingFang-SC, PingFang-SC;
  53. font-weight: 500;
  54. color: #333333;
  55. }
  56. .right{
  57. font-size: 26rpx;
  58. font-family: PingFang-SC, PingFang-SC;
  59. font-weight: 500;
  60. color: #EF8116;
  61. }
  62. .rb{
  63. color: #333333;
  64. }
  65. }
  66. .item1:first-child{
  67. margin-bottom: 32rpx;
  68. }
  69. }
  70. }
  71. }
  72. }