Unit Team Profile.wxss 1012 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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. }
  21. /* 父容器样式 */
  22. .container {
  23. padding: 15px;
  24. background-color: #f4f4f4;
  25. display: block;
  26. }
  27. /* 标题样式 */
  28. .title {
  29. font-size: 22px;
  30. font-weight: bold;
  31. }
  32. .content {
  33. font-size: 16px;
  34. }
  35. /* 使每个段落独立 */
  36. .content {
  37. text-indent: 2em; /* 段落首行缩进 */
  38. }
  39. .navigat-arrow {
  40. padding: 5px;
  41. width: 730rpx;
  42. height: 400rpx;
  43. }