load.wxss 739 B

12345678910111213141516171819202122232425262728
  1. .container {
  2. display: flex;
  3. justify-content: center; /* 水平居中 */
  4. align-items: center; /* 垂直居中 */
  5. width: 100%; /* 容器宽度占满父容器 */
  6. }
  7. .auto-image {
  8. width: 50%; /* 图片宽度为父容器宽度的50% */
  9. margin-left: 10%;
  10. }
  11. /* 文字样式 */
  12. .text {
  13. /* 文字与图片的距离 */
  14. margin-top: -20%;
  15. font-size: 20px; /* 字体大小 */
  16. font-weight: bold; /* 字体加粗 */
  17. color: #000; /* 字体颜色(可选) */
  18. text-align: center; /* 文字水平居中 */
  19. }
  20. /* 副文字样式 */
  21. .subtext {
  22. margin-top: 10px; /* 与上方文字的距离 */
  23. font-size: 16px; /* 字体大小 */
  24. color: #888; /* 浅灰色,字体颜色变淡 */
  25. text-align: center; /* 文字水平居中 */
  26. }