index.less 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. .indexPage{
  2. position: relative;
  3. min-height: 100vh;
  4. background: #F5F5F5;
  5. z-index: 1;
  6. padding-bottom: 202px;
  7. .background{
  8. position: absolute;
  9. top: 0;
  10. z-index: -1;
  11. width: 100%;
  12. height: 300px;
  13. }
  14. .title{
  15. font-size: 37px;
  16. color: #393484;
  17. font-weight: bolder;
  18. padding: 35px 0 30px 25px;
  19. }
  20. .list{
  21. padding: 30px 23px 0 23px;
  22. .item{
  23. border-radius: 6px;
  24. padding: 21px 11px 31px 57px;
  25. background: #FFFFFF;
  26. display: flex;
  27. flex-flow: row nowrap;
  28. margin-bottom: 17px;
  29. .infor{
  30. padding-right: 26px;
  31. .name{
  32. font-size: 28px;
  33. color: #2F3742;
  34. font-weight: bolder;
  35. line-height: 39px;
  36. }
  37. .createTimes{
  38. display: inline;
  39. background: #A1B1F0;
  40. border-radius: 2px;
  41. font-size: 16px;
  42. margin-top: 19px;
  43. margin-bottom: 15px;
  44. padding: 5px;
  45. color: #4564DC;
  46. }
  47. .amount{
  48. display: flex;
  49. flex-flow: row nowrap;
  50. align-items: flex-end;
  51. font-size: 28px;
  52. font-weight: bolder;
  53. color: #FE3371;
  54. .money{
  55. padding-left: 10px;
  56. font-size: 20px;
  57. }
  58. }
  59. }
  60. .thumbnailUrl{
  61. width: 200px;
  62. height: auto;
  63. margin-left: auto;
  64. }
  65. }
  66. }
  67. }