Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.
 
 
 

65 рядки
1.0 KiB

  1. /* 全局公共样式,App.vue 中引入 */
  2. page {
  3. min-height: 100%;
  4. color: $ai-text;
  5. background: $ai-page;
  6. font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  7. }
  8. /* 卡片 */
  9. .card {
  10. margin: 0 $ai-gutter;
  11. border-radius: $ai-radius;
  12. background: $ai-panel;
  13. box-shadow: $ai-shadow;
  14. box-sizing: border-box;
  15. }
  16. /* 区块标题 */
  17. .section-title {
  18. display: flex;
  19. align-items: center;
  20. justify-content: space-between;
  21. margin: 34rpx $ai-gutter 20rpx;
  22. font-size: 34rpx;
  23. font-weight: 700;
  24. .section-action {
  25. font-size: 26rpx;
  26. font-weight: 400;
  27. color: $ai-muted;
  28. }
  29. }
  30. .muted {
  31. color: $ai-muted;
  32. }
  33. .chevron {
  34. color: #8f98a6;
  35. font-size: 44rpx;
  36. line-height: 1;
  37. }
  38. /* 主色按钮 */
  39. .btn-primary {
  40. display: flex;
  41. align-items: center;
  42. justify-content: center;
  43. height: 88rpx;
  44. border-radius: 44rpx;
  45. color: #fff;
  46. font-size: 32rpx;
  47. background: $ai-accent;
  48. &:active {
  49. opacity: 0.9;
  50. }
  51. }
  52. /* 安全区 */
  53. .safe-bottom {
  54. padding-bottom: env(safe-area-inset-bottom);
  55. }