index.css 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321
  1. /*common*/
  2. *{
  3. margin: 0;
  4. padding: 0;
  5. }
  6. .pull-right{
  7. float: right;
  8. }
  9. .pull-left{
  10. float: left;
  11. }
  12. ul li{
  13. list-style: none;
  14. }
  15. body{
  16. min-width: 1000px;
  17. color: #222;
  18. }
  19. .wrapper{
  20. width: 1025px;
  21. padding: 25px 0 88px;
  22. margin-left: auto;
  23. margin-right: auto;
  24. background: #fff;
  25. }
  26. a{
  27. text-decoration: none;
  28. }
  29. .error{
  30. padding-top: 5px;
  31. padding-left: 90px;
  32. color: #e15f63;
  33. margin: 0;
  34. }
  35. /*展示部分*/
  36. .card_title{
  37. font-size: 16px;
  38. height: 30px;
  39. width: 100%;
  40. padding: 0 50px 0 30px;
  41. }
  42. .card_title div{
  43. border-bottom: 1px solid #efefef;
  44. line-height: 40px;
  45. }
  46. .preview{
  47. position: fixed;
  48. top: 190px;
  49. float: left;
  50. width: 318px;
  51. margin-left:30px;
  52. padding-bottom: 150px;
  53. overflow: hidden;
  54. background-color:#f6f6f8;
  55. border: 1px solid #e7e7eb;
  56. }
  57. .cart-top{
  58. width: 100%;
  59. height: auto;
  60. background: #fff;
  61. }
  62. .cart-top img{
  63. width: 100%;
  64. height: 100%;
  65. vertical-align: middle;
  66. }
  67. .preview .title{
  68. padding: 15px 10px;
  69. background: #fff;
  70. }
  71. .preview .title i{
  72. color: #000;
  73. }
  74. .preview .title .back{
  75. font-size: 20px;
  76. }
  77. .preview .title .more{
  78. font-size: 24px;
  79. }
  80. .preview .panel{
  81. background: #fff;
  82. border-radius: 5px;
  83. }
  84. .logo-area{
  85. width: 273px;
  86. height: 140px;
  87. background: #55bd47;
  88. margin: 0 auto;
  89. border-radius: 10px;
  90. padding: 24px 20px;
  91. color: #fff;
  92. margin-bottom: 20px;
  93. }
  94. .logo-area div{
  95. float: left;
  96. }
  97. .logo-area .bot{
  98. height: 20px;
  99. width: 100%;
  100. margin-top: 25px;
  101. }
  102. .logo-area .logo{
  103. width: 40px;
  104. height: 40px;
  105. margin-right: 10px;
  106. }
  107. .logo-area .logo img{
  108. width: 100%;
  109. height: 100%;
  110. border-radius: 50%;
  111. border: 2px solid #fff;
  112. }
  113. .logo-area .code{
  114. width: 36px;
  115. height: 36px;
  116. float: right;
  117. }
  118. /*适用门店 公众号*/
  119. .card-other{
  120. padding:0px 10px 0px 10px;
  121. margin-bottom: 15px;
  122. background: #fff;
  123. }
  124. .card-other ul li{
  125. padding: 10px 0;
  126. border-bottom: 1px solid #e7e7eb;
  127. }
  128. .card-other ul li:last-child{
  129. border: 0;
  130. }
  131. .go.icon{
  132. font-weight: bolder;
  133. color: #c8c8c8;
  134. }
  135. .control{
  136. float: left;
  137. margin-left: 20px;
  138. /*width: 800px;*/
  139. /*border: 1px solid #e7e7eb;*/
  140. /*background-color: #f4f5f9;*/
  141. background: #f5f7f9;
  142. margin-right: 20px;
  143. }
  144. .control.control-cover{
  145. width: 1160px;
  146. margin: 0 auto;
  147. }
  148. .control .con-label{
  149. margin-bottom: 20px;
  150. }
  151. .control .editor_section{
  152. margin-bottom: 20px;
  153. padding: 0px 20px 0 20px;
  154. }
  155. .control .title{
  156. font-size: 14px;
  157. height: 34px;
  158. line-height: 34px;
  159. border-bottom: 1px solid #e6e9eb;
  160. font-weight: normal;
  161. margin-bottom: 20px;
  162. }
  163. .control-group{
  164. margin-top: 30px;
  165. margin-bottom: 30px;
  166. padding-bottom: 0;
  167. }
  168. .control-group.user{
  169. height: 120px;
  170. }
  171. .control-group.color{
  172. height: 30px;
  173. }
  174. .control-group.limit{
  175. height: 70px;
  176. }
  177. .control-group.caption{
  178. height: 75px;
  179. }
  180. .control-group.date{
  181. height: 75px;
  182. }
  183. .control-group.receive{
  184. height: 50px;
  185. }
  186. .control-group.use{
  187. height: 220px;
  188. }
  189. .control-group .frm_label{
  190. width: 90px;
  191. height: 32px;
  192. line-height: 32px;
  193. }
  194. .control-group .frm-image{
  195. width: 50px;
  196. height: 50px;
  197. display: inline-block;
  198. }
  199. .control-group .frm_controls{
  200. margin-left: 90px;
  201. margin-bottom: 5px;
  202. vertical-align: middle;
  203. }
  204. .control-group .frm_controls .frm_controls_name{
  205. vertical-align: top;
  206. }
  207. .control-group input{
  208. margin-right: 5px;
  209. }
  210. .frm_tip{
  211. padding-top:5px;
  212. color: #8d8d8d
  213. }
  214. .frm_tip a{
  215. color: #459ae9;
  216. }
  217. .card_tip{
  218. padding-top:5px;
  219. padding-left: 90px;
  220. color: #8d8d8d
  221. }
  222. .control-group .frm-image img{
  223. width: 100%;
  224. height: 100%;
  225. }
  226. .control-group .caret{
  227. display: inline-block;
  228. margin: 10px 10px;
  229. color: #000;
  230. }
  231. /*卡券颜色*/
  232. .bootstrap-colorpalette {
  233. padding-left:4px;
  234. padding-right:4px;
  235. white-space: normal;
  236. line-height:1;
  237. }
  238. .bootstrap-colorpalette div {
  239. line-height:0;
  240. }
  241. .bootstrap-colorpalette .btn-color {
  242. width: 25px;
  243. height: 25px;
  244. border: 1px solid #fff;
  245. margin: 2px;
  246. padding: 0;
  247. }
  248. .bootstrap-colorpalette .btn-color:hover {
  249. border: 1px solid #000;
  250. }
  251. .btn-groups.btn-group.btns{
  252. vertical-align: middle;
  253. width: 116px;
  254. background: #fff;
  255. border: 1px solid #eee;
  256. }
  257. .btns a{
  258. display: inline-block;
  259. width: 116px;
  260. height: 20px;
  261. padding: 5px;
  262. }
  263. .btns a i{
  264. display: inline-block;
  265. width: 20px;
  266. height: 20px;
  267. background: rgb(99, 179, 89);
  268. }
  269. /**/
  270. .frm_controls .input{
  271. height: 32px;
  272. background: #fff;
  273. border: 1px solid #eee;
  274. padding-left: 5px;
  275. color: #222;
  276. }
  277. .frm_controls .chose{
  278. display: inline-block;
  279. height: 32px;
  280. width: 116px;
  281. background: #fff;
  282. border: 1px solid #eee;
  283. padding-left: 5px;
  284. color: #222;
  285. vertical-align: middle;
  286. }
  287. /*封面*/
  288. .cover .control {
  289. padding: 10px;
  290. }
  291. .cover .upload{
  292. margin-left: 90px;
  293. }
  294. textarea{
  295. text-indent: 15px;
  296. padding: 5px 10px;
  297. }
  298. .control-group.cover{
  299. height: 35px;
  300. }
  301. /*自定义入口*/
  302. .way-open{
  303. width: 300px;
  304. margin: 20px 0;
  305. }
  306. .way-open .open-on{
  307. margin-right:20px ;
  308. }
  309. /*.user-defined{
  310. height: 80px;
  311. }*/
  312. /*OTEzNzAyMDIzNTAzMjQyOTE0*/