index.less 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. @import "~@less/mixin.less";
  2. @import "~@less/variables.less";
  3. .treat-wrapper{
  4. .maskZIndex;
  5. position: fixed;
  6. width: 100%;
  7. height: 100%;
  8. left: 0;
  9. top: 0;
  10. }
  11. .close {
  12. .contentZIndex1;
  13. position: absolute;
  14. top: 0;
  15. right: 0;
  16. cursor: pointer;
  17. }
  18. .treat-mask {
  19. .maskZIndex;
  20. position: fixed;
  21. width: 100%;
  22. height: 100%;
  23. top: 0;
  24. left: 0;
  25. background: #000;
  26. opacity: 0.6;
  27. filter:alpha(opacity=60);
  28. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(opacity=60);";
  29. }
  30. .treat-box {
  31. .maskContentZIndex1;
  32. position: fixed;
  33. background: #fff;
  34. width: 680px;
  35. left: 50%;
  36. top: 10%;
  37. height: 80%;
  38. margin-left: -340px;
  39. padding-top: 40px;
  40. padding-bottom: 80px;
  41. box-shadow: 0px 0px 5px -2px #7d7c7c;
  42. }
  43. .treat-title {
  44. width: 100%;
  45. position: absolute;
  46. top: 0px;
  47. background: #fff;
  48. height: 40px;
  49. line-height: 40px;
  50. border-bottom: 1px solid #e0e2e4;
  51. padding-left: 20px;
  52. cursor: move;
  53. moz-user-select: -moz-none;
  54. -moz-user-select: none;
  55. -o-user-select:none;
  56. -khtml-user-select:none;
  57. -webkit-user-select:none;
  58. -ms-user-select:none;
  59. user-select:none;
  60. img{
  61. float: right;
  62. cursor: pointer;
  63. font-size: 18px;
  64. line-height: 30px;
  65. color: @text-color;
  66. }
  67. }
  68. .treat-inner-box {
  69. width: 100%;
  70. height: 100%;
  71. padding: 10px 20px 0 20px;
  72. overflow-y: auto;
  73. }
  74. .bottom {
  75. position: absolute;
  76. width: 100%;
  77. height: 80px;
  78. line-height: 40px;
  79. background: #fff;
  80. }
  81. .prescription-btn,.determine-btn {
  82. .btnCom;
  83. position: absolute;
  84. display: block;
  85. width: 80px;
  86. height: 34px;
  87. line-height: 34px;
  88. top: 20px;
  89. }
  90. .prescription-btn {
  91. left: 340px;
  92. border: 1px solid #333333;
  93. }
  94. .determine-btn {
  95. left: 440px;
  96. background: #3B9ED0;
  97. border-radius: 4px;
  98. color: #fff;
  99. }