index.less 538 B

1234567891011121314151617181920212223242526272829303132
  1. .type {
  2. display: flex;
  3. flex-direction: row;
  4. height: 50px;
  5. align-content: center;
  6. align-items: center;
  7. justify-content: flex-start;
  8. padding-right: 10px;
  9. border-bottom: 1px solid #f8f8f8;
  10. .label {
  11. font-size: 14px;
  12. color: #666;
  13. width: 110px;
  14. padding-left: 15px;
  15. }
  16. .type-selsct {
  17. color: #666;
  18. font-size: 14px;
  19. width: 75%;
  20. }
  21. }
  22. .buttom_view {
  23. display: flex;
  24. flex-direction: column;
  25. justify-content: space-between;
  26. margin-top: 20px;
  27. align-items: center;
  28. align-content: center;
  29. }