index.less 305 B

1234567891011121314151617181920
  1. .from{
  2. display: flex;
  3. justify-content: center;
  4. align-items: center;
  5. margin-bottom: 20px;
  6. >span:nth-child(1){
  7. width: 100px;
  8. text-align: right;
  9. }
  10. >span:nth-child(2){
  11. width: 300px;
  12. }
  13. >div{
  14. }
  15. }
  16. .flex{
  17. display: flex;
  18. flex-flow: column;
  19. }