businessVideoManage.scss 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180
  1. .nav-wrap {
  2. position: fixed;
  3. left: 0;
  4. top: 0;
  5. z-index: 10;
  6. width: 100%;
  7. .nav {
  8. width: 100%;
  9. background: rgba(255, 255, 255, 1);
  10. font-size: 0;
  11. }
  12. .nav-item {
  13. display: inline-block;
  14. width: 150rpx;
  15. text-align: center;
  16. }
  17. text {
  18. position: relative;
  19. left: 0;
  20. top: 0;
  21. display: inline-block;
  22. height: 98rpx;
  23. line-height: 98rpx;
  24. color: rgba(51, 51, 51, 1);
  25. font-size: 28rpx;
  26. }
  27. text.active {
  28. font-weight: 500;
  29. color: rgba(107, 133, 89, 1);
  30. }
  31. text.active:after {
  32. position: absolute;
  33. left: -15rpx;
  34. right: -15rpx;
  35. bottom: 0;
  36. content: '';
  37. height: 4rpx;
  38. background: rgba(107, 133, 89, 1);
  39. }
  40. }
  41. .main {
  42. position: absolute;
  43. left: 0;
  44. top: 98rpx;
  45. right: 0;
  46. bottom: 0;
  47. width: 100%;
  48. background: #F6F6F6;
  49. }
  50. .list {
  51. width: 690rpx;
  52. min-height: 370rpx;
  53. border-radius: 24rpx;
  54. overflow: hidden;
  55. margin: 30rpx auto 0;
  56. background: rgba(255, 255, 255, 1);
  57. box-shadow: 0 0 20rpx 0 rgba(0, 0, 0, 0.1);
  58. }
  59. .top {
  60. display: flex;
  61. justify-content: space-between;
  62. align-items: center;
  63. height: 65rpx;
  64. padding: 0 30rpx 0 25rpx;
  65. border-bottom: 1rpx solid rgba(231, 231, 231, 1);
  66. view {
  67. line-height: 38rpx;
  68. font-size: 24rpx;
  69. color: rgba(51, 51, 51, 1);
  70. }
  71. .col-1 {
  72. color: rgba(255, 141, 26, 1);
  73. }
  74. .col-2 {
  75. color: rgba(145, 179, 121, 1);
  76. }
  77. .col-3 {
  78. color: rgba(212, 48, 48, 1);
  79. }
  80. }
  81. .middle {
  82. display: flex;
  83. padding: 32rpx 19rpx 34rpx;
  84. border-bottom: 1rpx solid rgba(231, 231, 231, 1);
  85. }
  86. .photo-wrap {
  87. width: 132rpx;
  88. height: 134rpx;
  89. border-radius: 12rpx;
  90. overflow: hidden;
  91. image {
  92. display: block;
  93. width: 100%;
  94. height: 100%;
  95. background: pink;
  96. }
  97. }
  98. .name-wrap {
  99. width: calc(100% - 132rpx);
  100. padding-left: 21rpx;
  101. .name {
  102. width: 100%;
  103. line-height: 46rpx;
  104. font-size: 24rpx;
  105. color: rgba(51, 51, 51, 1);
  106. word-break: break-all;
  107. word-wrap: break-word;
  108. }
  109. .box {
  110. display: flex;
  111. align-items: center;
  112. margin-top: 33rpx;
  113. }
  114. .stock,
  115. .price {
  116. line-height: 36rpx;
  117. font-size: 24rpx;
  118. color: rgba(153, 153, 153, 1);
  119. }
  120. .price {
  121. margin-left: 20rpx;
  122. }
  123. }
  124. .bottom {
  125. display: flex;
  126. justify-content: flex-end;
  127. align-items: center;
  128. padding: 23rpx 21rpx 21rpx;
  129. button {
  130. width: 127rpx;
  131. height: 58rpx;
  132. margin-left: 34rpx;
  133. border-radius: 29rpx;
  134. border: 2rpx solid rgba(153, 153, 153, 1);
  135. font-size: 24rpx;
  136. color: rgba(153, 153, 153, 1);
  137. &:nth-of-type(1) {
  138. margin-left: 0;
  139. }
  140. }
  141. button[type="default"] {
  142. background-color: transparent;
  143. }
  144. }
  145. button.btn-jump[type="primary"] {
  146. width: 627rpx;
  147. height: 80rpx;
  148. margin: 0 auto;
  149. border-radius: 40rpx;
  150. background-color: rgba(145, 179, 121, 1);
  151. font-size: 36rpx;
  152. font-weight: 500;
  153. color: rgba(255, 255, 255, 1);
  154. }