index.less 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  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: 100%;
  37. margin: 5px 0px;
  38. &__item {
  39. display: flex;
  40. flex-direction: column;
  41. align-items: center;
  42. align-content: center;
  43. padding-top: 10px;
  44. margin-bottom: 5px;
  45. text {
  46. font-size: 12px;
  47. padding: 2.5px 5px;
  48. text-align: center;
  49. }
  50. }
  51. }
  52. .title {
  53. font-size: 14px;
  54. width: 80px;
  55. color: #666;
  56. }
  57. .value {
  58. font-size: 14px;
  59. color: #333;
  60. }
  61. }
  62. .content {
  63. width: 95%;
  64. background-color: #f0f0f0;
  65. border-radius: 10px;
  66. padding: 10px 0px;
  67. &__item {
  68. height: 30px;
  69. padding-left: 5px;
  70. }
  71. &__item:nth-last-child(1) {
  72. height: 50px;
  73. }
  74. .title {
  75. font-size: 14px;
  76. width: 70px;
  77. color: #666;
  78. }
  79. .value {
  80. font-size: 14px;
  81. color: #333;
  82. }
  83. }
  84. }
  85. .button-view {
  86. display: flex;
  87. justify-content: space-between;
  88. margin: 10px;
  89. justify-content: center;
  90. justify-items: center;
  91. van-button {
  92. height: 40px;
  93. width: 95%;
  94. }
  95. }
  96. }