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.

65 lines
1.7 KiB

4 months ago
4 months ago
4 weeks ago
4 months ago
  1. /**
  2. * 这里是uni-app内置的常用样式变量
  3. *
  4. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  5. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  6. *
  7. */
  8. /**
  9. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  10. *
  11. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  12. */
  13. /* 颜色变量 */
  14. /* 行为相关颜色 */
  15. /* 文字基本颜色 */
  16. /* 背景颜色 */
  17. /* 边框颜色 */
  18. /* 尺寸变量 */
  19. /* 文字尺寸 */
  20. /* 图片尺寸 */
  21. /* Border Radius */
  22. /* 水平间距 */
  23. /* 垂直间距 */
  24. /* 透明度 */
  25. /* 文章场景相关 */
  26. .tit.data-v-ae16cb0d {
  27. font-size: 32rpx;
  28. font-weight: 700;
  29. padding: 20rpx 0;
  30. text-align: center;
  31. }
  32. .timeDesc.data-v-ae16cb0d {
  33. text-align: right;
  34. font-size: 28rpx;
  35. color: #999;
  36. padding: 30px 0;
  37. }
  38. .fileList.data-v-ae16cb0d {
  39. padding: 0 32rpx;
  40. }
  41. .fileList .file.data-v-ae16cb0d {
  42. display: flex;
  43. align-items: center;
  44. padding: 10rpx 0;
  45. }
  46. .fileList .file .link.data-v-ae16cb0d {
  47. font-size: 24rpx;
  48. color: #9C9C9C;
  49. flex: 1;
  50. }
  51. .fileList .file .lookLink.data-v-ae16cb0d {
  52. width: 132rpx;
  53. height: 44rpx;
  54. background: #DE3A26;
  55. border-radius: 22rpx;
  56. font-size: 24rpx;
  57. color: #fff;
  58. text-align: center;
  59. line-height: 44rpx;
  60. margin-left: 20rpx;
  61. }
  62. .fileList .file .lookLink.boder.data-v-ae16cb0d {
  63. border: 1px solid #DE3A26;
  64. color: #DE3A26;
  65. background-color: #fff;
  66. }