index.less 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. .main {
  2. position: relative;
  3. width: 100%;
  4. .one {
  5. float: left;
  6. width: 100%;
  7. text-align: center;
  8. border-bottom: 1px dashed #000000;
  9. }
  10. .one button {
  11. margin: 10px;
  12. }
  13. .two {
  14. float: left;
  15. width: 95%;
  16. padding: 10px;
  17. .list {
  18. float: left;
  19. width: 100%;
  20. margin: 0 0 8px 0;
  21. background-color: #f9f9f9;
  22. border-radius: 5px;
  23. padding: 8px 0;
  24. .name {
  25. font-size: 16px;
  26. margin: 0 0 5px 0;
  27. padding: 0 10px;
  28. }
  29. .btn {
  30. text-align: center;
  31. }
  32. .btn button {
  33. margin: 0 5px;
  34. }
  35. }
  36. .other {
  37. .otherInfo {
  38. margin: 0 0 5px 0;
  39. font-size: 14px;
  40. color: #666666;
  41. padding: 0 10px;
  42. }
  43. .otherInfo text {
  44. color: #000000;
  45. }
  46. }
  47. }
  48. }
  49. .dialog {
  50. min-height: 30px;
  51. max-height: 320px;
  52. overflow-y: auto;
  53. padding: 0 8px;
  54. .content {
  55. float: left;
  56. width: 100%;
  57. padding: 8px 0;
  58. border-radius: 6px;
  59. margin: 0 0 5px 0;
  60. background-color: #f1f1f1;
  61. .left {
  62. float: left;
  63. margin: 0 0 0 10px;
  64. }
  65. .left text {
  66. font-size: 14px;
  67. color: #666666;
  68. }
  69. .right input {
  70. font-size: 12px;
  71. }
  72. }
  73. }
  74. .van-dialog__header {
  75. padding-top: 0 !important;
  76. padding: 10px 0 !important;
  77. }