index.less 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. .title-view {
  2. background-color: #f0f0f0;
  3. padding: 10px 0px;
  4. display: flex;
  5. justify-content: space-around;
  6. align-items: center;
  7. border-bottom: 1px solid #f0f0f0;
  8. .title-view-text {
  9. font-size: 12px;
  10. color: #666;
  11. text-align: center;
  12. border-right: 1px solid #f0f0f0;
  13. }
  14. }
  15. .list-item {
  16. display: flex;
  17. justify-content: space-between;
  18. margin: 5px 10px 15px 10px;
  19. flex-direction: row;
  20. align-content: center;
  21. align-items: center;
  22. height: 110px;
  23. border-bottom: 1px solid #ddd;
  24. .list-item-left, .list-item-right {
  25. display: flex;
  26. flex-direction: column;
  27. align-items: center;
  28. align-content: center;
  29. }
  30. .list-item-left {
  31. width: 60%;
  32. }
  33. .list-item-right {
  34. border-left: 1px solid #ddd;
  35. padding-left: 15px;
  36. width: 100%;
  37. }
  38. .list-item-left, .list-item-right {
  39. text {
  40. margin: 2.5px;
  41. width: 100%;
  42. text-align: left;
  43. font-size: 14px;
  44. color: #333;
  45. }
  46. }
  47. }
  48. .submit-view {
  49. display: flex;
  50. flex-direction: row;
  51. justify-content: space-between;
  52. margin-top: 20px;
  53. button {
  54. width: 45%;
  55. color: white;
  56. }
  57. button:nth-child(1) {
  58. background-color: red;
  59. }
  60. button:nth-child(2) {
  61. background-color: purple;
  62. }
  63. }