index.less 2.0 KB

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