index.wxss 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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. margin: 10px 0 0 0;
  25. }
  26. .main .two .list {
  27. float: left;
  28. width: 95%;
  29. background-color: #fff;
  30. border-radius: 5px;
  31. padding: 10px;
  32. margin: 0 0 10px 0;
  33. }
  34. .main .two .list .name {
  35. float: left;
  36. width: 100%;
  37. font-size: 14px;
  38. font-weight: bold;
  39. margin: 0 0 5px 0;
  40. }
  41. .main .two .list .other {
  42. float: left;
  43. width: 100%;
  44. margin: 0 0 5px 0;
  45. }
  46. .main .two .list .other .otherInfo {
  47. float: left;
  48. width: 100%;
  49. font-size: 12px;
  50. margin: 0 0 5px 0;
  51. }
  52. .main .two .list .other .otherInfo text:nth-child(1) {
  53. color: #666;
  54. }
  55. .dialog_one {
  56. float: left;
  57. width: 100%;
  58. }
  59. .dialog_one .content {
  60. float: left;
  61. width: 100%;
  62. border-bottom: 1px solid #ccc;
  63. padding: 10px 0;
  64. font-size: 14px;
  65. }
  66. .dialog_one .content .label {
  67. float: left;
  68. width: 20%;
  69. }
  70. .dialog_one .content .value {
  71. float: left;
  72. width: 80%;
  73. text-align: right;
  74. }
  75. .dialog_one .btn {
  76. float: left;
  77. width: 100%;
  78. text-align: center;
  79. margin: 10px 0 0 0;
  80. }
  81. .dialog_one .btn button {
  82. font-size: 14px;
  83. }