拓恒河湖长制全民护河平台WEB端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

83 lines
1.6KB

  1. /* components/exchangeInfo/index.wxss */
  2. .exchange_info {
  3. width: 100%;
  4. background-color: #ffffff;
  5. display: flex;
  6. flex-direction: column;
  7. justify-content: flex-start;
  8. align-items: flex-end;
  9. border-bottom: 2rpx solid #eeeeee;
  10. }
  11. .info_head {
  12. width: 100%;
  13. padding: 40rpx 35rpx;
  14. display: flex;
  15. justify-content: flex-start;
  16. align-items: flex-start;
  17. border-bottom: 1rpx solid #D3DCE6;
  18. }
  19. .exchange_img {
  20. width: 155rpx;
  21. height: 155rpx;
  22. flex-shrink: 0;
  23. }
  24. .info_box {
  25. margin-left: 25rpx;
  26. display: flex;
  27. flex-direction: column;
  28. justify-content: flex-start;
  29. align-items: flex-start;
  30. }
  31. .goods_title {
  32. width: 100%;
  33. display: flex;
  34. justify-content: space-between;
  35. align-items: center;
  36. }
  37. .goods_name {
  38. width: calc(100vw - 420rpx);
  39. font-size: 32rpx;
  40. font-weight: bold;
  41. }
  42. .status_tab {
  43. width: 100rpx;
  44. padding: 8rpx 10rpx;
  45. font-size: 26rpx;
  46. }
  47. .info_item {
  48. width: calc(100vw - 300rpx);
  49. margin-top: 20rpx;
  50. font-size: 26rpx;
  51. color: #5B5B5B;
  52. }
  53. .points_box {
  54. margin-top: 20rpx;
  55. font-size: 28rpx;
  56. }
  57. .info_foot {
  58. width: 100%;
  59. padding: 32rpx 35rpx 10rpx 35rpx;
  60. border-bottom: 1rpx solid #D3DCE6;
  61. display: flex;
  62. flex-direction: column;
  63. justify-content: flex-start;
  64. align-items: flex-start;
  65. }
  66. .stores_info {
  67. width: 100%;
  68. display: flex;
  69. justify-content: flex-start;
  70. align-items: center;
  71. margin-bottom: 30rpx;
  72. }
  73. .store_icon {
  74. width: 40rpx;
  75. height: 40rpx;
  76. margin-right: 20rpx;
  77. flex-shrink: 0;
  78. }
  79. .goods_name, .info_item, .store_text {
  80. overflow: hidden;
  81. white-space: nowrap;
  82. text-overflow: ellipsis;
  83. }