stock.wxss 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. /* pages/stock/stock.wxss */
  2. page{
  3. padding: 30rpx;
  4. }
  5. scroll-view{
  6. height: calc(100vh - 140rpx);
  7. }
  8. image{
  9. width: 100%;
  10. border-radius: 8rpx;
  11. }
  12. .desc{
  13. font-size: 30rpx;
  14. line-height: 48rpx;
  15. margin: 30rpx 0;
  16. }
  17. .name{
  18. font-size: 32rpx;
  19. font-weight: 500;
  20. margin-bottom: 20rpx;
  21. }
  22. .name>text{
  23. color: #AAAAAA;
  24. font-size: 22rpx;
  25. border: 1px solid #AAAAAA;
  26. border-radius: 4rpx;
  27. font-weight: 400;
  28. padding: 0 4rpx;
  29. position: relative;
  30. top: -3rpx;
  31. }
  32. .name view{
  33. float: right;
  34. color: #CE994F;
  35. font-size: 22rpx;
  36. text-align: center;
  37. position: relative;
  38. top: -5rpx;
  39. }
  40. .info{
  41. font-size: 30rpx;
  42. padding: 10rpx 0;
  43. display: flex;
  44. }
  45. .info view{
  46. color: #666;
  47. width: 85%;
  48. vertical-align: top;
  49. }
  50. .info label{
  51. font-weight: 500;
  52. color: #333;
  53. }
  54. .info .tag{
  55. font-size: 28rpx;
  56. color: #CE994F;
  57. border: 1px solid #CE994F;
  58. border-radius: 8rpx;
  59. margin-right: 8rpx;
  60. font-weight: 400;
  61. padding: 0 8rpx;
  62. }
  63. .player{
  64. border-bottom: 1px solid #F5F5F5;
  65. padding: 30rpx 0;
  66. }
  67. .name view{
  68. float: right;
  69. color: #CE994F;
  70. font-size: 22rpx;
  71. text-align: center;
  72. position: relative;
  73. top: -5rpx;
  74. }
  75. .name view text{
  76. display: block;
  77. font-size: 32rpx;
  78. color: #CE994F;
  79. position: relative;
  80. top: -8rpx;
  81. }
  82. .search{
  83. position: relative;
  84. display: flex;
  85. justify-content: space-between;
  86. margin-bottom: 20rpx;
  87. }
  88. .search input{
  89. width: 88%;
  90. background: #F7F7F7;
  91. height: 68rpx;
  92. padding-left: 70rpx;
  93. border-radius: 8rpx;
  94. box-sizing: border-box;
  95. font-size: 30rpx;
  96. }
  97. .search text{
  98. font-size: 30rpx;
  99. line-height: 68rpx;
  100. }
  101. .search image{
  102. position: absolute;
  103. height: 40rpx;
  104. left: 20rpx;
  105. top: 0;
  106. bottom: 0;
  107. margin: auto;
  108. }
  109. .list{
  110. padding: 20rpx 0;
  111. }
  112. .num{
  113. font-size: 28rpx;
  114. color: #666;
  115. text-align: right;
  116. float: right;
  117. }
  118. .num text{
  119. font-size: 36rpx;
  120. font-weight: 500;
  121. }