index.less 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  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. .title {
  31. font-size: 14px;
  32. width: 80px;
  33. color: #666;
  34. }
  35. .value {
  36. font-size: 14px;
  37. color: #333;
  38. }
  39. }
  40. .content {
  41. width: 95%;
  42. background-color: #f0f0f0;
  43. border-radius: 10px;
  44. padding: 10px 0px;
  45. &__item {
  46. height: 30px;
  47. padding-left: 5px;
  48. }
  49. .title {
  50. font-size: 14px;
  51. width: 70px;
  52. color: #666;
  53. }
  54. .value {
  55. font-size: 14px;
  56. color: #333;
  57. }
  58. }
  59. }
  60. .button-view {
  61. display: flex;
  62. justify-content: space-between;
  63. margin: 10px;
  64. justify-content: center;
  65. justify-items: center;
  66. van-button {
  67. height: 40px;
  68. width: 80%;
  69. }
  70. }
  71. }