Overview.wxss 649 B

123456789101112131415161718192021
  1. /* 页面整体背景 */
  2. .green-box {
  3. background-color: #4caf50; /* 绿色背景 */
  4. padding: 10px 20px; /* 减小上下内边距,控制高度 */
  5. text-align: center;
  6. display: flex;
  7. flex-direction: column; /* 设置垂直方向布局 */
  8. justify-content: center;
  9. align-items: center;
  10. max-height: 100rpx; /* 限制最大高度 */
  11. max-width: calc(100% - 10px); /* 宽度最大100%,两边各留5px */
  12. margin-left: 15px; /* 左边留5px */
  13. margin-right: 15px; /* 右边留5px */
  14. box-sizing: border-box; /* 确保 padding 和 margin 不影响宽度计算 */
  15. }
  16. .title-en {
  17. font-size: 16px;
  18. color: #fff;
  19. display: block;
  20. }