index.less 1.6 KB

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