index.module.less 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. .container{
  2. :global{
  3. .van-nav-bar .van-icon {
  4. color:#333;
  5. }
  6. .van-nav-bar__text{
  7. color:#01C1B5
  8. }
  9. }
  10. min-height: 100vh;
  11. display: flex;
  12. flex-direction: column;
  13. .content{
  14. flex: 1;
  15. background-color: #F5F5F5;
  16. padding: 12px;
  17. .arrow {
  18. font-size: 18px;
  19. width: 20px;
  20. height: 20px;
  21. }
  22. .title{
  23. color: #333333;
  24. font-size: 18px;
  25. font-weight: 500;
  26. display: flex;
  27. align-items: center;
  28. &::before{
  29. content: '';
  30. display: block;
  31. width: 4px;
  32. height: 18px;
  33. border-radius: 2px;
  34. background-color: #01C1B5;
  35. margin-right: 6px;
  36. }
  37. }
  38. .items{
  39. display: flex;
  40. align-items: center;
  41. flex-wrap: wrap;
  42. >div{
  43. margin-top: 20px;
  44. width: 33.333%;
  45. max-width: 180px;
  46. text-align: center;
  47. .inner {
  48. width: 105px;
  49. margin: 0 auto;
  50. }
  51. .img{
  52. margin-top: 0;
  53. }
  54. :global {
  55. .van-image, .van-image__error,.van-image__loading {
  56. width: 105px;
  57. min-height: 134px;
  58. }
  59. }
  60. >div{
  61. margin-top: 7px;
  62. font-size: 14px;
  63. font-weight: 500;
  64. color: #1A1A1A;
  65. line-height: 20px;
  66. }
  67. }
  68. }
  69. }
  70. }