index.less 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. .container {
  2. display: flex;
  3. flex-direction: column;
  4. .attribute-info {
  5. border-top: 10px solid #f0f0f0;
  6. }
  7. .attribute-info, .seller-info {
  8. width: 100%;
  9. display: flex;
  10. flex-direction: column;
  11. align-content: center;
  12. align-items: center;
  13. margin-bottom: 10px;
  14. .title {
  15. padding: 10px 5px;
  16. width: 100%;
  17. color: #333;
  18. font-size: 20px;
  19. }
  20. .attribute-info__item, .content__item {
  21. width: 100%;
  22. padding-left: 15px;
  23. height: 50px;
  24. border-bottom: 1px solid #f0f0f0;
  25. display: flex;
  26. flex-direction: row;
  27. justify-content: start;
  28. align-items: center;
  29. align-content: center;
  30. &__step {
  31. display: flex;
  32. flex-direction: row;
  33. justify-content: start;
  34. align-items: center;
  35. align-content: center;
  36. width: 97%;
  37. margin: 5px 0px;
  38. white-space: nowrap;
  39. &__item {
  40. display: inline-flex;
  41. flex-direction: column;
  42. align-items: center;
  43. align-content: center;
  44. padding-top: 5px;
  45. margin-bottom: 5px;
  46. text {
  47. font-size: 12px;
  48. padding: 2.5px 5px;
  49. text-align: center;
  50. }
  51. }
  52. }
  53. .title {
  54. font-size: 14px;
  55. width: 80px;
  56. color: #666;
  57. }
  58. .value {
  59. font-size: 14px;
  60. color: #333;
  61. }
  62. }
  63. .content {
  64. width: 95%;
  65. background-color: #f0f0f0;
  66. border-radius: 10px;
  67. padding: 2.5px 0px;
  68. &__item {
  69. height: 30px;
  70. padding-left: 5px;
  71. }
  72. &__item:nth-last-child(1) {
  73. height: 50px;
  74. }
  75. .title {
  76. font-size: 14px;
  77. width: 70px;
  78. color: #666;
  79. }
  80. .value {
  81. font-size: 14px;
  82. color: #333;
  83. }
  84. }
  85. }
  86. .button-view {
  87. display: flex;
  88. justify-content: space-between;
  89. margin: 10px;
  90. justify-content: center;
  91. justify-items: center;
  92. van-button {
  93. height: 40px;
  94. width: 95%;
  95. }
  96. }
  97. }