new_file.css 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  1. html,body{
  2. width:100%;
  3. height:100%;
  4. margin:0;
  5. padding:0;
  6. background: #E6E6E6;
  7. }
  8. *{
  9. box-sizing: border-box;
  10. font-size: 16px;
  11. }
  12. .containerBox{
  13. width:100%;
  14. height:100%;
  15. }
  16. .left-box{
  17. width:250px;
  18. padding:0;
  19. background: #fff;
  20. position: relative;
  21. }
  22. .photo-msg{
  23. width:100%;
  24. padding:15px 30px;
  25. }
  26. .photo-msg p{
  27. margin:0;
  28. padding-left:5px;
  29. border-left:4px solid #167AA1;
  30. color:#666;
  31. }
  32. .radio-box{
  33. width:250px;
  34. height:40px;
  35. line-height: 40px;
  36. text-align: center;
  37. color:#fff;
  38. background: rgb(64,103,255);
  39. cursor: pointer;
  40. }
  41. .picture-list{
  42. width:250px;
  43. background: #fff;
  44. height:calc(100% - 200px);
  45. overflow-y: auto;
  46. text-align: center;
  47. }
  48. .picture-list img{
  49. width:160px;
  50. margin:20px 0;
  51. }
  52. .edit-box{
  53. width:250px;
  54. height:110px;
  55. border-top:1px solid #ccc;
  56. background: #fff;
  57. display: flex;
  58. justify-content: space-around
  59. }
  60. .edit-box div{
  61. text-align: center;
  62. cursor: pointer;
  63. }
  64. .edit-box img{
  65. margin-top:15px;
  66. width: 24px;
  67. }
  68. .edit-box p{
  69. margin-top:5px;
  70. }
  71. .margin{
  72. margin:20px 0;
  73. height:3px;
  74. width:100%;
  75. background: #ccc;
  76. }
  77. .right-box{
  78. height:100%;
  79. border-left:2px solid #ccc;
  80. background: #FFFFFF;
  81. position: relative;
  82. }
  83. .handle-box{
  84. width:100%;
  85. display: flex;
  86. align-items: center;
  87. border-bottom:2px solid #ccc;
  88. }
  89. .handle-box div{
  90. height:40px;
  91. padding:0px 15px;
  92. display: flex;
  93. align-items: center;
  94. text-align: center;
  95. border-right:1px solid #ccc;
  96. cursor: pointer;
  97. }
  98. .handle-box div img{
  99. transform: translateY(-2px);
  100. margin-right: 5px;
  101. width: 20px;
  102. }
  103. .camera-box{
  104. height:calc(100% - 40px);
  105. width:100%;
  106. display: flex;
  107. overflow: hidden;
  108. }
  109. .camera-box .camera-left{
  110. width:calc(100% - 300px);
  111. background: #ccc;
  112. height:100%;
  113. position: relative;
  114. }
  115. .active_photo,.active_rotate{
  116. position: absolute;
  117. right:50px;
  118. top:40%;
  119. cursor: pointer;
  120. z-index: 30000;
  121. background-color: #fff;
  122. width: 80px;
  123. height: 90px;
  124. border-radius: 8px;
  125. margin: 10px 0;
  126. }
  127. .active_photo img,.active_rotate img{
  128. margin: 27px 19px;
  129. width: 40px;
  130. }
  131. .active_rotate{
  132. top:calc(40% + 120px);
  133. }
  134. .camera-box .camera-right{
  135. width:300px;
  136. height:100%;
  137. }
  138. .camera-right .camera-title{
  139. width:100%;
  140. padding-left:15px;
  141. margin-top:10px;
  142. margin-bottom:10px;
  143. }
  144. .camera-right .camera-title span{
  145. color:rgb(64,103,255)
  146. }
  147. .camera-box .tree-box{
  148. height:500px;
  149. overflow-y: scroll;
  150. margin-top:20px;
  151. }
  152. .camera-box .tree-box div{
  153. margin-top:10px;
  154. }
  155. .treeItem {
  156. padding-left: 5px;
  157. font-size: 14px;
  158. margin: 12px 8px;
  159. }
  160. .treeItem input{
  161. margin-left:15px;
  162. }
  163. .itemIcon {
  164. display: inline-block;
  165. width: 18px;
  166. height: 18px;
  167. line-height: 16px;
  168. color: white;
  169. font-weight: bolder;
  170. text-align: center;
  171. font-size: 16px;
  172. border-radius: 50%;
  173. background: rgb(85, 141, 213);
  174. margin-right: 10px;
  175. cursor: pointer;
  176. }