Soil Acidification.wxss 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. /* 普通文本样式 */
  2. .containe {
  3. padding: 5px 5px; /* 调整容器的内边距,减小文字与容器的距离 */
  4. line-height: 1; /* 调整行高,控制文字的垂直间距 */
  5. margin-bottom: 2px;
  6. }
  7. .regular-text {
  8. font-size: 14px; /* 设置字体大小 */
  9. color: #333333;
  10. }
  11. /* 父容器样式 */
  12. .container {
  13. display: flex;
  14. flex-direction: column; /* 垂直排列 */
  15. align-items: center; /* 居中对齐 */
  16. padding: 10px 0; /* 增加上下内边距 */
  17. margin: 1px 20px 20px 20px; /* 增加顶部外边距 */
  18. }
  19. /* 按钮样式 */
  20. .full-width-button {
  21. width: 100%; /* 按钮占满宽度 */
  22. padding: 5px 0; /* 按钮内边距,控制高度 */
  23. margin: 15px 0; /* 按钮间距 */
  24. background-color: #3EC01E; /* 按钮背景颜色 */
  25. color: white; /* 按钮文字颜色 */
  26. font-size: 18px; /* 按钮文字大小 */
  27. border: none; /* 去除按钮边框 */
  28. outline: none; /* 去除焦点边框 */
  29. text-align: center; /* 文字居中 */
  30. border-radius: 5px; /* 圆角效果 */
  31. }
  32. /* 按钮点击效果 */
  33. .full-width-button:active {
  34. background-color: #299A0C; /* 按下按钮时的颜色变化 */
  35. }
  36. .navigat-arrow {
  37. padding: 5px;
  38. width: 700rpx;
  39. height: 400rpx;
  40. }