Model Selection.wxss 618 B

1234567891011121314151617181920212223242526272829303132
  1. .container {
  2. padding: 20px;
  3. margin-bottom: 200px;
  4. }
  5. .radio-group {
  6. display: flex;
  7. justify-content: space-between; /* 让选择框左右分开 */
  8. margin-bottom: 20px;
  9. }
  10. .radio-item {
  11. display: flex;
  12. align-items: center;
  13. justify-content: center;
  14. }
  15. .submit-container {
  16. display: flex;
  17. justify-content: center; /* 居中按钮 */
  18. margin-top: 30px; /* 给按钮增加上边距 */
  19. }
  20. .submit-btn {
  21. width: 100px; /* 设置按钮宽度 */
  22. padding: 1px; /* 给按钮添加内边距 */
  23. background-color: #3EC01E;
  24. color: white;
  25. border-radius: 5px;
  26. text-align: center;
  27. font-size: 16px;
  28. }