├── php-api/ # 改造后的PHP接口层 ├── java-ad-service/ # 若依框架微服务(广告+VIP+分账) ├── uniapp-reader/ # UniApp前端项目 │ ├── pages/ # 各端页面 │ └──
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

index.scss 511B

123456789101112131415161718192021222324252627282930313233
  1. // 基础样式重置
  2. * {
  3. margin: 0;
  4. padding: 0;
  5. box-sizing: border-box;
  6. }
  7. // 基础排版
  8. body {
  9. font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
  10. line-height: 1.6;
  11. }
  12. // 工具类
  13. .flex-center {
  14. display: flex;
  15. justify-content: center;
  16. align-items: center;
  17. }
  18. .text-ellipsis {
  19. white-space: nowrap;
  20. overflow: hidden;
  21. text-overflow: ellipsis;
  22. }
  23. // global
  24. @import "./global.scss";
  25. // color-ui
  26. @import "@/static/scss/colorui.css";
  27. // iconfont
  28. @import "@/static/font/iconfont.css";