page-updating.component_20241228143211.scss 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. ion-card {
  2. margin: 10px; /* 卡片之间的间距 */
  3. border-radius: 10px; /* 圆角效果 */
  4. box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* 阴影效果 */
  5. }
  6. ion-card-title {
  7. font-weight: bold;
  8. }
  9. .content-center {
  10. display: flex;
  11. justify-content: center;
  12. align-items: center;
  13. height: 100%; /* 确保内容区域占满整个高度 */
  14. --background: #ffffff; /* 白色背景 */
  15. --background: url('https://nova-cloud.obs.cn-south-1.myhuaweicloud.com/storage/aigc/imagine/4RHC2Jhp2l-0.png') no-repeat fixed !important;
  16. --background-size: cover;
  17. }
  18. .expect-message {
  19. font-size: 2rem; /* 放大字体 */
  20. color: gray; /* 灰色文字 */
  21. opacity: 0.7; /* 透明度 */
  22. display: flex;
  23. justify-content: center;
  24. align-items: center;
  25. }
  26. .content-section {
  27. flex-grow: 1;
  28. }
  29. .button-section {
  30. margin-left: 10px;
  31. }
  32. /* 确保按钮文本正常横排 */
  33. ion-button {
  34. white-space: nowrap;
  35. }
  36. /* 设置列表项的样式 */
  37. ion-item {
  38. margin: 5px 0; /* 列表项之间的间距 */
  39. }
  40. ion-title {
  41. font-size: 24px; /* 增大字体大小 */
  42. font-weight: bold; /* 加粗 */
  43. }
  44. /* 设置卡片的样式 */
  45. ion-list {
  46. margin: 10px; /* 卡片之间的间距 */
  47. border-radius: 10px; /* 圆角效果 */
  48. box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* 阴影效果 */
  49. }
  50. ion-button {
  51. font-size: 15px; /* 增大字体大小 */
  52. margin-top: 8px; /* 上间距,仅在需要时添加 */
  53. text-transform: none; /* 按钮文字不变形 */
  54. height: 35px;
  55. }
  56. /* 设置按钮的样式(如果按钮不在顶部方框内) */
  57. ion-toolbar {
  58. margin: auto;
  59. }
  60. .title-text {
  61. position: absolute;
  62. display: flex;
  63. left: 50%;
  64. transform: translateX(-50%);
  65. margin: auto;
  66. top: 10px;
  67. }