1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- ion-card {
- margin: 10px; /* 卡片之间的间距 */
- border-radius: 10px; /* 圆角效果 */
- box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* 阴影效果 */
- }
- .content-center {
- display: flex;
- justify-content: center;
- align-items: center;
- --background: #ffffff; /* 白色背景 */
- --background: url('https://nova-cloud.obs.cn-south-1.myhuaweicloud.com/storage/aigc/imagine/4RHC2Jhp2l-0.png') no-repeat fixed !important;
- --background-size: cover;
- height: 100%; /* 确保内容区域占满整个高度 */
- overflow: hidden; /* 禁用滚动 */
- }
- .expect-message {
- font-size: 2rem; /* 放大字体 */
- color: gray; /* 灰色文字 */
- opacity: 0.7; /* 透明度 */
- text-align: center; /* 文本居中 */
- height: 100%; /* 确保内容区域占满整个高度 */
- }
- /* 确保按钮文本正常横排 */
- ion-button {
- white-space: nowrap;
- }
- ion-title {
- font-size: 24px; /* 增大字体大小 */
- font-weight: bold; /* 加粗 */
- }
- ion-button {
- font-size: 15px; /* 增大字体大小 */
- margin-top: 8px; /* 上间距,仅在需要时添加 */
- text-transform: none; /* 按钮文字不变形 */
- height: 35px;
- }
- ion-toolbar {
- position: relative; /* 相对定位 */
- z-index: 1; /* 确保工具栏在最上层 */
- }
- .title-text {
- position: absolute;
- left: 50%;
- transform: translateX(-50%);
- top: 10px;
- }
|