auto.wxss 1.7 KB

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