packs_details.wxss 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  1. @charset "UTF-8";
  2. /**
  3. * 这里是uni-app内置的常用样式变量
  4. *
  5. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  6. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  7. *
  8. */
  9. /**
  10. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  11. *
  12. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  13. */
  14. /* 颜色变量 */
  15. /* 行为相关颜色 */
  16. /* 文字基本颜色 */
  17. /* 背景颜色 */
  18. /* 边框颜色 */
  19. /* 尺寸变量 */
  20. /* 文字尺寸 */
  21. /* 图片尺寸 */
  22. /* Border Radius */
  23. /* 水平间距 */
  24. /* 垂直间距 */
  25. /* 透明度 */
  26. /* 文章场景相关 */
  27. .footer {
  28. width: 100%;
  29. height: auto;
  30. display: -webkit-box;
  31. display: -webkit-flex;
  32. display: flex;
  33. position: fixed;
  34. bottom: 0;
  35. }
  36. .round {
  37. height: 45rpx;
  38. width: 50rpx;
  39. -webkit-border-radius: 50%;
  40. border-radius: 50%;
  41. background-color: #ececec;
  42. }
  43. .card {
  44. padding: 30rpx 30rpx;
  45. -webkit-box-sizing: border-box;
  46. box-sizing: border-box;
  47. }
  48. .card .card_view {
  49. width: 100%;
  50. background-color: #ffffff;
  51. -webkit-border-radius: 15rpx;
  52. border-radius: 15rpx;
  53. }
  54. .card .card_view .title {
  55. width: 100%;
  56. height: 20vh;
  57. display: -webkit-box;
  58. display: -webkit-flex;
  59. display: flex;
  60. -webkit-box-pack: center;
  61. -webkit-justify-content: center;
  62. justify-content: center;
  63. -webkit-box-align: end;
  64. -webkit-align-items: flex-end;
  65. align-items: flex-end;
  66. }
  67. .card .card_view .title .img {
  68. width: 90%;
  69. height: 90%;
  70. }
  71. .card .card_view .describe {
  72. width: 100%;
  73. height: 1;
  74. padding: 100rpx 40rpx 20rpx 40rpx;
  75. }
  76. .list {
  77. margin: 20rpx 0 10rpx 0;
  78. display: -webkit-box;
  79. display: -webkit-flex;
  80. display: flex;
  81. width: 100%;
  82. height: 200rpx;
  83. -webkit-border-radius: 15rpx;
  84. border-radius: 15rpx;
  85. background-color: #FFFFFF;
  86. -webkit-box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.08);
  87. box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.08);
  88. }
  89. .list .portrait {
  90. width: 30%;
  91. height: 100%;
  92. display: -webkit-box;
  93. display: -webkit-flex;
  94. display: flex;
  95. -webkit-box-pack: center;
  96. -webkit-justify-content: center;
  97. justify-content: center;
  98. -webkit-box-align: center;
  99. -webkit-align-items: center;
  100. align-items: center;
  101. }
  102. .list .portrait .img {
  103. width: 100rpx;
  104. height: 100rpx;
  105. -webkit-border-radius: 50%;
  106. border-radius: 50%;
  107. }
  108. .list .portrait .bun {
  109. text-align: center;
  110. width: 80rpx;
  111. height: 36rpx;
  112. background-color: #D92975;
  113. margin: 0 10rpx;
  114. -webkit-border-radius: 60rpx;
  115. border-radius: 60rpx;
  116. position: relative;
  117. top: -20rpx;
  118. font-size: 20rpx;
  119. color: #FFFFFF;
  120. padding: 3rpx 0;
  121. }
  122. .list .text {
  123. width: 70%;
  124. height: 100%;
  125. padding: 20rpx 0;
  126. }
  127. .list .text .name {
  128. font-size: 30rpx;
  129. font-weight: bold;
  130. display: -webkit-box;
  131. display: -webkit-flex;
  132. display: flex;
  133. -webkit-box-align: center;
  134. -webkit-align-items: center;
  135. align-items: center;
  136. }
  137. .list .text .name .label {
  138. font-weight: 400;
  139. margin-right: 15rpx;
  140. background-color: #E5F5FF;
  141. color: #0B73B9;
  142. width: 100rpx;
  143. height: 28rpx;
  144. font-size: 20rpx;
  145. -webkit-border-radius: 10rpx;
  146. border-radius: 10rpx;
  147. text-align: center;
  148. }
  149. .list .text .department {
  150. padding: 20rpx 0;
  151. color: #666666;
  152. }
  153. .list .text .department text {
  154. margin-right: 15rpx;
  155. }
  156. .list .text .option {
  157. display: -webkit-box;
  158. display: -webkit-flex;
  159. display: flex;
  160. }
  161. .list .text .option view {
  162. background-color: #E4E4E4;
  163. width: 100rpx;
  164. height: 48rpx;
  165. -webkit-border-radius: 12px;
  166. border-radius: 12px;
  167. margin-right: 15rpx;
  168. display: -webkit-box;
  169. display: -webkit-flex;
  170. display: flex;
  171. -webkit-box-pack: center;
  172. -webkit-justify-content: center;
  173. justify-content: center;
  174. -webkit-box-align: center;
  175. -webkit-align-items: center;
  176. align-items: center;
  177. }