index.wxss 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. .main {
  2. position: relative;
  3. width: 100%;
  4. }
  5. .main .one {
  6. float: left;
  7. width: 100%;
  8. text-align: center;
  9. background-color: #fff;
  10. padding: 5px 0;
  11. margin: 0 0 10px 0;
  12. overflow-x: hidden;
  13. }
  14. .main .one button {
  15. font-size: 14px;
  16. background-color: #409eff;
  17. color: #fff;
  18. }
  19. .main .two {
  20. float: left;
  21. width: 95%;
  22. padding: 0 10px;
  23. overflow-x: hidden;
  24. }
  25. .main .two .list {
  26. float: left;
  27. width: 95%;
  28. background-color: #fff;
  29. border-radius: 5px;
  30. padding: 10px;
  31. margin: 0 0 10px 0;
  32. }
  33. .main .two .list .name {
  34. float: left;
  35. width: 100%;
  36. font-size: 14px;
  37. font-weight: bold;
  38. margin: 0 0 5px 0;
  39. }
  40. .main .two .list .other {
  41. float: left;
  42. width: 100%;
  43. margin: 0 0 5px 0;
  44. }
  45. .main .two .list .other .other_1 {
  46. float: left;
  47. width: 100%;
  48. font-size: 12px;
  49. margin: 0 0 5px 0;
  50. }
  51. .main .two .list .other .other_1 text:nth-child(1) {
  52. color: #666;
  53. }
  54. .main .two .list .btn {
  55. float: left;
  56. width: 100%;
  57. text-align: center;
  58. }
  59. .main .two .list .btn button {
  60. margin: 0 5px;
  61. padding: 0 20px;
  62. font-size: 14px;
  63. }
  64. .dialog_one {
  65. float: left;
  66. width: 100%;
  67. margin: 10px 0 0 0;
  68. }
  69. .dialog_one .one_1 {
  70. float: left;
  71. width: 91%;
  72. border: 1px solid #ccc;
  73. border-radius: 5px;
  74. margin: 0 0 10px 0;
  75. padding: 10px;
  76. }
  77. .dialog_one .one_1 text {
  78. color: #666;
  79. font-size: 14px;
  80. }
  81. .dialog_one .one_1 text:nth-child(2) {
  82. float: right;
  83. color: #000;
  84. }
  85. .dialog_one .one_1 image {
  86. float: right;
  87. width: 60px;
  88. height: 60px;
  89. }
  90. .dialog_two {
  91. float: left;
  92. width: 100%;
  93. }
  94. .dialog_two .content {
  95. float: left;
  96. width: 100%;
  97. border-bottom: 1px solid #ccc;
  98. padding: 10px 0;
  99. margin: 0 0 10px 0;
  100. font-size: 14px;
  101. }
  102. .dialog_two .content .label {
  103. float: left;
  104. width: 20%;
  105. }
  106. .dialog_two .content .value {
  107. float: left;
  108. width: 80%;
  109. text-align: right;
  110. }
  111. .dialog_two .btn {
  112. float: left;
  113. width: 100%;
  114. text-align: center;
  115. }
  116. .dialog_two .btn button {
  117. font-size: 14px;
  118. }