auto.less 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. .main {
  2. height: 88.8vh;
  3. .one {
  4. width: 96vw;
  5. .content {
  6. background-color: #ffffff;
  7. border-bottom: 1px solid #cccccc;
  8. display: flex;
  9. flex-direction: row;
  10. justify-content: space-between;
  11. padding: 2vw;
  12. width: 92vw;
  13. .label {
  14. text-align: left;
  15. font-size: 16px;
  16. }
  17. .value {
  18. width: 65vw;
  19. text-align: right;
  20. font-size: 16px;
  21. textarea {
  22. width: 65vw;
  23. }
  24. }
  25. }
  26. .btn {
  27. margin: 2vw 0 0 0;
  28. text-align: center;
  29. button {
  30. margin: 0 2vw;
  31. }
  32. }
  33. }
  34. .two {
  35. width: 96vw;
  36. .two_1 {
  37. display: flex;
  38. flex-direction: column;
  39. .list {
  40. background-color: #ffffff;
  41. margin: 0 0 2vw 0;
  42. padding: 2vw;
  43. width: 92vw;
  44. border: 1px solid #f1f1f1;
  45. .name {
  46. display: flex;
  47. flex-direction: row;
  48. justify-content: space-between;
  49. margin: 0 0 1vw 0;
  50. .name_1 {
  51. font-size: 18px;
  52. font-weight: bold;
  53. }
  54. .name_2 {
  55. button {
  56. font-size: 14px;
  57. }
  58. }
  59. }
  60. .person {
  61. display: flex;
  62. flex-direction: row;
  63. justify-content: space-between;
  64. flex-wrap: wrap;
  65. .personList {
  66. border: 1px solid #f1f1f1;
  67. padding: 2vw;
  68. width: 25vw;
  69. margin: 0 0 2vw 0;
  70. text-align: center;
  71. .icon {
  72. width: 100%;
  73. height: 80px;
  74. border-radius: 5px;
  75. }
  76. .name {
  77. text-align: center;
  78. font-size: 15px;
  79. font-weight: normal;
  80. }
  81. .btn {
  82. text-align: center;
  83. button {
  84. font-size: 14px;
  85. padding: 0 5vw;
  86. }
  87. }
  88. }
  89. }
  90. }
  91. }
  92. }
  93. }