common.scss 713 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. .content {
  2. width: 100%;
  3. border-bottom: 1px solid #E8EBF0;
  4. margin-top: 10px;
  5. .item {
  6. display: flex;
  7. justify-content: space-between;
  8. font-size: 14px;
  9. align-items: center;
  10. border-bottom: 0;
  11. .title {
  12. width: 120px;
  13. border: 1px solid #E8EBF0;
  14. line-height: 36px;
  15. text-align: center;
  16. background-color: #F9F9F9;
  17. border-bottom: 0;
  18. border-right: 0;
  19. display: flex;
  20. align-items: center;
  21. justify-content: center;
  22. align-self: stretch;
  23. }
  24. .val {
  25. width: calc(100% - 135px);
  26. height: 100%;
  27. display: block;
  28. color: #585F70;
  29. text-align: left;
  30. line-height: 36px;
  31. padding-left: 15px;
  32. border: 1px solid #E8EBF0;
  33. border-bottom: 0;
  34. min-height: 36px;
  35. }
  36. }
  37. }