Brak opisu

addCustomerFile.css 4.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306
  1. /*编辑,添加,查看用户信息页面样式*/
  2. ul {
  3. list-style: none;
  4. padding: 0;
  5. }
  6. .project_items {
  7. margin: 30px auto;
  8. display: none;
  9. }
  10. .project_items li label {
  11. height: 34px;
  12. line-height: 34px;
  13. }
  14. .project_items li textarea {
  15. resize: none;
  16. }
  17. .project_items_title {
  18. border-bottom: 1px dashed #e7e7e7;
  19. padding-bottom: 10px;
  20. }
  21. .crop_left {
  22. width: 40%;
  23. float: left;
  24. }
  25. .crop_right {
  26. width: 30%;
  27. float: right;
  28. margin-right: 25px;
  29. }
  30. .btnn {
  31. background: #2f4050;
  32. color: #fff;
  33. padding: 3px 10px;
  34. border: 0;
  35. border-radius: 3px;
  36. cursor: pointer;
  37. }
  38. .project_save {
  39. width: 20%;
  40. }
  41. .tab_head {
  42. position: relative;
  43. background-color: #fff;
  44. border-top: 1px solid #e7eaec;
  45. margin-bottom: 15px;
  46. }
  47. .tab_head_left {
  48. padding-left: 0;
  49. margin: 0;
  50. border-bottom: 1px solid #eef0f2;
  51. }
  52. .tab_head li {
  53. float: left;
  54. width: 10.5%;
  55. text-align: center;
  56. padding: 13px 0;
  57. font-size: 16px;
  58. color: #7b8a97;
  59. cursor: pointer;
  60. }
  61. .tab_head .tab_head_active {
  62. border-bottom: 3px solid #19aad0;
  63. margin-bottom: -2px;
  64. color: #19aad0;
  65. }
  66. .tab_head .tab_badge {
  67. display: inline-block;
  68. min-width: 15px;
  69. min-height: 15px;
  70. padding: 3px;
  71. margin-top: -20px;
  72. font-size: 14px;
  73. font-weight: 700;
  74. line-height: 1;
  75. color: #fff !important;
  76. text-align: center;
  77. white-space: nowrap;
  78. vertical-align: middle;
  79. background-color: #18abd1;
  80. border-radius: 50%;
  81. }
  82. .tabs_details {
  83. display: none;
  84. width: 100%;
  85. }
  86. .showtabs {
  87. display: block;
  88. }
  89. .form-horizontal .radio-inline {
  90. padding-top: 0;
  91. }
  92. .radio-inline input[type=radio],
  93. .checkbox-inline input[type=checkbox] {
  94. margin-top: 10px;
  95. }
  96. .form-horizontal .form-group {
  97. margin-left: 0;
  98. margin-right: 0;
  99. }
  100. li.form-group>label {
  101. text-align: right;
  102. }
  103. img.upload-img {
  104. margin-top: 10px;
  105. margin-bottom: 10px;
  106. width: 100%;
  107. height: 100%;
  108. }
  109. .seeAccountDetail .form-control[disabled],
  110. .seeAccountDetail .form-control[readonly] {
  111. background-color: transparent;
  112. }
  113. .seeAccountDetail input,
  114. .seeAccountDetail textarea,
  115. .seeAccountDetail select {
  116. border: none;
  117. outline: none;
  118. background: none;
  119. -webkit-box-shadow: none;
  120. box-shadow: none;
  121. }
  122. .seeAccountDetail select {
  123. appearance: none;
  124. -moz-appearance: none;
  125. /* Firefox */
  126. -webkit-appearance: none;
  127. /* Safari 和 Chrome */
  128. }
  129. .user_portrait {
  130. width: 100px;
  131. height: 100px;
  132. background-color: #EFEFEF;
  133. }
  134. .user_portrait img,
  135. .accountIdentification img,
  136. .accountOrganizationsPic img,
  137. .accountBusinessLicensePic img {
  138. width: 100%;
  139. height: 100%;
  140. font-size: 0;
  141. vertical-align: middle;
  142. }
  143. .accountIdentification {
  144. width: 240px;
  145. height: 151px;
  146. background-color: #EFEFEF;
  147. }
  148. .accountOrganizationsPic {
  149. width: 650px;
  150. height: 450px;
  151. background-color: #EFEFEF;
  152. }
  153. .accountBusinessLicensePic {
  154. width: 650px;
  155. height: 467px;
  156. background-color: #EFEFEF;
  157. }
  158. .text_require {
  159. color: red;
  160. vertical-align: middle;
  161. font-weight: 900;
  162. }
  163. .text-tips {
  164. color: red;
  165. line-height: 34px;
  166. }
  167. #upLinkImgs {
  168. display: none;
  169. }
  170. #upLinkImgs .crop_left {
  171. width: 60%;
  172. }
  173. /*#upLinkImgs .crop_left{
  174. width: 37%;
  175. margin-right: 0;
  176. margin-left: 25px;
  177. }*/
  178. .aeBtns {
  179. margin: 10px auto;
  180. height: auto;
  181. }
  182. .aeBtns .form-control {
  183. width: 280px;
  184. }
  185. .aeBtns li.form-group {
  186. float: left;
  187. width: 50%;
  188. margin-bottom: 5px;
  189. }
  190. .aeBtns textarea {
  191. resize: none;
  192. }
  193. .aeBtns .radio-inline input[type=radio] {
  194. margin-top: 2px;
  195. }
  196. .drop_down {
  197. position: relative;
  198. }
  199. .drop_down .caret {
  200. position: absolute;
  201. right: 24px;
  202. top: 15px;
  203. }
  204. .form-group {
  205. margin-bottom: 5px;
  206. }
  207. /*添加或修改菜单*/
  208. .icon-color {
  209. color: #1aaad0;
  210. padding-right: 5px;
  211. vertical-align: middle;
  212. font-size: 30px;
  213. }
  214. .select2-container--default .select2-results__option--highlighted[aria-selected] {
  215. background-color: rgba(0, 0, 0, .5) !important;
  216. }
  217. .add_or_edit_menu .form-group {
  218. margin-bottom: 5px;
  219. }
  220. #reginsTreeView {
  221. position: absolute;
  222. background-color: #fff;
  223. z-index: 4;
  224. width: 92%;
  225. max-height: 256px;
  226. overflow-y: auto;
  227. }
  228. .contactList_item {
  229. box-shadow: 0px 2px 7px #eee;
  230. border-radius: 2px;
  231. padding: 5px;
  232. margin-bottom: 10px;
  233. }
  234. .isMain{
  235. height: 30px;
  236. line-height: 32px;
  237. border-left: 1px solid #E5E6E7;
  238. padding-left: 10px;
  239. }
  240. #customerTreeView{
  241. position: absolute;
  242. left: 15px;
  243. width: 97%;
  244. top: 32px;
  245. background-color: #fff;
  246. z-index: 4;
  247. max-height: 256px;
  248. overflow-y: auto;
  249. }
  250. .office-title{
  251. width: 8.4%;
  252. }