renewList.wxss 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. page {
  2. width: 100%;
  3. height: 100%;
  4. background-color: #f7f7f7;
  5. }
  6. @charset "UTF-8";
  7. /**
  8. * 这里是uni-app内置的常用样式变量
  9. *
  10. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  11. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  12. *
  13. */
  14. /**
  15. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  16. *
  17. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  18. */
  19. /* 颜色变量 */
  20. /* 行为相关颜色 */
  21. /* 文字基本颜色 */
  22. /* 背景颜色 */
  23. /* 边框颜色 */
  24. /* 尺寸变量 */
  25. /* 文字尺寸 */
  26. /* 图片尺寸 */
  27. /* Border Radius */
  28. /* 水平间距 */
  29. /* 垂直间距 */
  30. /* 透明度 */
  31. /* 文章场景相关 */
  32. .handle-fix-box.data-v-14f2ab8a {
  33. width: 100%;
  34. height: 60px;
  35. padding: 10px 15px;
  36. position: fixed;
  37. z-index: 2;
  38. bottom: 0px;
  39. left: 0px;
  40. background-color: #FFFFFF;
  41. box-sizing: border-box;
  42. }
  43. .content.data-v-14f2ab8a {
  44. width: 100%;
  45. float: left;
  46. }
  47. .content .swiper-box.data-v-14f2ab8a {
  48. height: calc(100vh - 34px);
  49. }
  50. .content .swiper-box .swiper-item.data-v-14f2ab8a {
  51. height: calc(100vh - 34px);
  52. }
  53. .content .swiper-box .swiper-item .scroll-box.data-v-14f2ab8a {
  54. width: 100%;
  55. height: calc(100vh - 34px);
  56. box-sizing: border-box;
  57. padding-bottom: 10px;
  58. }
  59. .content .swiper-box .swiper-item .scroll-box .class-card.data-v-14f2ab8a {
  60. border-bottom: 1px solid #cccccc;
  61. }
  62. .content .swiper-box .swiper-item .scroll-box .class-card .class-content.data-v-14f2ab8a {
  63. padding: 5px 15px;
  64. display: -webkit-box;
  65. display: -webkit-flex;
  66. display: flex;
  67. -webkit-box-align: center;
  68. -webkit-align-items: center;
  69. align-items: center;
  70. }
  71. .content .swiper-box .swiper-item .scroll-box .class-card .class-content .class-info-img.data-v-14f2ab8a {
  72. width: 50px;
  73. height: 50px;
  74. margin-right: 5px;
  75. display: -webkit-box;
  76. display: -webkit-flex;
  77. display: flex;
  78. -webkit-box-align: center;
  79. -webkit-align-items: center;
  80. align-items: center;
  81. -webkit-box-pack: center;
  82. -webkit-justify-content: center;
  83. justify-content: center;
  84. }
  85. .content .swiper-box .swiper-item .scroll-box .class-card .class-content .class-info-text.data-v-14f2ab8a {
  86. line-height: 20px;
  87. font-size: 14px;
  88. -webkit-box-flex: 1;
  89. -webkit-flex: 1;
  90. flex: 1;
  91. }
  92. .content .swiper-box .swiper-item .scroll-box .class-card.data-v-14f2ab8a:last-child {
  93. border-bottom: none;
  94. }