index.scss 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. .container{
  2. background-color: #F7F7F7;
  3. width: 100vw;
  4. min-height: 100vh;
  5. .list{
  6. padding: 60px 16px 0px 16px;
  7. background-color: #ffffff;
  8. .list-item{
  9. padding:16px 0px;
  10. background-color: #ffffff;
  11. border-top: 1px solid #EEEEEE;
  12. display: flex;
  13. justify-content: space-between;
  14. align-items: center;
  15. &:nth-of-type(1){
  16. border: none;
  17. }
  18. .li-left{
  19. .li-info{
  20. font-size: 15px;
  21. font-family: PingFangSC-Regular, PingFang SC;
  22. font-weight: 400;
  23. color: #333333;
  24. }
  25. .li-time{
  26. font-size: 13px;
  27. font-family: PingFangSC-Regular, PingFang SC;
  28. font-weight: 400;
  29. color: #999999;
  30. margin-top: 6px;
  31. }
  32. }
  33. .li-right{
  34. font-size: 18px;
  35. font-family: PingFangSC-Medium, PingFang SC;
  36. font-weight: bolder;
  37. }
  38. }
  39. }
  40. .null{
  41. width: 100%;
  42. display: flex;
  43. justify-content: center;
  44. align-items: center;
  45. flex-direction: column;
  46. padding-top: 252px;
  47. .null-img{
  48. width: 147px;
  49. height: 100px;
  50. }
  51. .null-text{
  52. font-size: 12px;
  53. font-family: PingFangSC-Regular, PingFang SC;
  54. font-weight: 400;
  55. color: #CCCCCC;
  56. margin-top: 10px;
  57. }
  58. }
  59. .no-more{
  60. font-size: 12px;
  61. font-family: PingFangSC-Regular, PingFang SC;
  62. font-weight: 400;
  63. color: #AAAAAA;
  64. text-align: center;
  65. padding: 20px 0px;
  66. }
  67. }