shopadmin.css 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564
  1. body {
  2. font: 12px/1.5 "\u5fae\u8f6f\u96c5\u9ed1", "\5FAE\8F6F\96C5\9ED1",
  3. tahoma, arial, "\5b8b\4f53", sans-serif;
  4. }
  5. a:hover,a:focus {
  6. color: #f60;
  7. text-decoration: underline;
  8. }
  9. .text-inverse {
  10. color: #f60;
  11. }
  12. .navbar {
  13. margin-bottom: 0;
  14. border-radius: 0;
  15. }
  16. .navbar-right {
  17. margin-right: 0;
  18. }
  19. .dropdown>.dropdown-toggle {
  20. border-style: solid;
  21. border-width: 0 1px;
  22. border-color: transparent;
  23. }
  24. .dropdown:hover>.dropdown-toggle {
  25. position: relative;
  26. background-color: #ffffff !important;
  27. border: 1px solid #ccc;
  28. border-top: 0;
  29. border-bottom: 0;
  30. margin: 0;
  31. z-index: 1001;
  32. }
  33. .dropdown>.dropdown-menu {
  34. padding: 0;
  35. }
  36. .dropdown:hover>.dropdown-menu {
  37. display: block;
  38. position: absolute;
  39. margin-top: -1px;
  40. min-width: 120px;
  41. font-size: 12px;
  42. }
  43. .dropdown-menu>li>a {
  44. font-size: 14px;
  45. color: #666;
  46. padding: 8px 25px;
  47. border-bottom: 1px solid #ebebeb;
  48. }
  49. .dropdown:hover .caret,.dropdown-toggle:hover .caret {
  50. border-bottom: 4px solid !important;
  51. border-top: none;
  52. }
  53. .dropdown-submenu {
  54. position: relative;
  55. }
  56. .dropdown-submenu>.dropdown-menu {
  57. top: 0;
  58. left: 100%;
  59. padding: 0;
  60. margin-top: -1px;
  61. margin-left: -1px;
  62. -webkit-border-radius: 0 3px;
  63. -moz-border-radius: 0 3px;
  64. border-radius: 0 3px;
  65. }
  66. .dropdown-submenu:hover>.dropdown-menu {
  67. display: block;
  68. min-width: 0;
  69. min-height: 0;
  70. font-size: 12px;
  71. }
  72. .nav-tabs li {
  73. cursor: pointer;
  74. }
  75. .alert {
  76. position: relative;
  77. }
  78. /*arrow*/
  79. .arrow:before,.arrow:after {
  80. content: '';
  81. position: absolute;
  82. width: 0;
  83. height: 0;
  84. border: 18px solid transparent;
  85. }
  86. .arrow-top-right:before {
  87. top: 30%;
  88. margin-top: -16px;
  89. left: -37px;
  90. border-top-color: #faebcc;
  91. border-right-color: #faebcc;
  92. }
  93. .arrow-top-right:after {
  94. top: 30%;
  95. margin-top: -15px;
  96. left: -35px;
  97. border-top-color: #fcf8e3;
  98. border-right-color: #fcf8e3;
  99. }
  100. .arrow-bottom-right:before {
  101. top: 30%;
  102. margin-top: -15px;
  103. left: -37px;
  104. border-bottom-color: #faebcc;
  105. border-right-color: #faebcc;
  106. }
  107. .arrow-bottom-right:after {
  108. top: 30%;
  109. margin-top: -16px;
  110. left: -35px;
  111. border-bottom-color: #fcf8e3;
  112. border-right-color: #fcf8e3;
  113. }
  114. .arrow-bottom:before {
  115. top: 0;
  116. margin-top: -36px;
  117. left: 36px;
  118. border-bottom-color: #faebcc;
  119. }
  120. .arrow-bottom:after {
  121. top: 0;
  122. margin-top: -35px;
  123. left: 36px;
  124. border-bottom-color: #fcf8e3;
  125. }
  126. /*10格栅栏*/
  127. .col-10-1,.col-10-2,.col-10-3,.col-10-4,.col-10-5,.col-10-6,.col-10-7,.col-10-8,.col-10-9,.col-10-10
  128. {
  129. float: left;
  130. position: relative;
  131. min-height: 1px;
  132. padding-left: 15px;
  133. padding-right: 15px;
  134. }
  135. .col-10-1 {
  136. width: 10%;
  137. }
  138. .col-10-2 {
  139. width: 20%;
  140. }
  141. .col-10-3 {
  142. width: 30%;
  143. }
  144. .col-10-4 {
  145. width: 40%;
  146. }
  147. .col-10-5 {
  148. width: 50%;
  149. }
  150. .col-10-6 {
  151. width: 60%;
  152. }
  153. .col-10-7 {
  154. width: 70%;
  155. }
  156. .col-10-8 {
  157. width: 80%;
  158. }
  159. .col-10-9 {
  160. width: 90%;
  161. }
  162. .col-10-10 {
  163. width: 100%;
  164. }
  165. /*top nav*/
  166. #top {
  167. background-color: #f5f5f5;
  168. }
  169. #top.navbar-default {
  170. border-bottom: 1px solid #ddd;
  171. }
  172. #top .navbar-nav>li>a {
  173. padding: 20px 25px;
  174. font-size: 14px;
  175. font-weight: 700;
  176. color: #6c6c6c;
  177. width: 120px;
  178. }
  179. #top .dropdown-menu {
  180. width: 120px;
  181. }
  182. #top .navbar-nav>li>a:hover,#top .navbar-nav>li.active>a {
  183. color: #f60;
  184. }
  185. #top .navbar-header {
  186. width: 300px;
  187. }
  188. #top .navbar-header .navbar-brand {
  189. padding: 0 15px;
  190. height: 60px;
  191. line-height: 60px;
  192. font-family: "\5FAE\8F6F\96C5\9ED1";
  193. font-size: 23px;
  194. font-weight: 600;
  195. color: #666;
  196. text-transform: uppercase;
  197. text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
  198. height: 60px;
  199. }
  200. #top .navbar-header .title {
  201. background: url("../img/all/logo_shop.png") no-repeat;
  202. width: 76px;
  203. height: 60px;
  204. }
  205. #top .navbar-header b {
  206. display: block;
  207. width: 1px;
  208. height: 14px;
  209. margin-top: 23px;
  210. z-index: 100;
  211. float: left;
  212. background: #999;
  213. margin-right: 10px;
  214. }
  215. #top .navbar-header span {
  216. float: left;
  217. height: 60px;
  218. line-height: 60px;
  219. color: #666;
  220. font-family: "Microsoft Yahei";
  221. font-size: 16px;
  222. font-weight: 700;
  223. }
  224. /*main*/
  225. #main {
  226. width: 100%;
  227. margin: 0 auto;
  228. }
  229. #main .nav-left {
  230. position: absolute;
  231. top: 60px;
  232. left: 0;
  233. width: 180px;
  234. }
  235. #main .main-container {
  236. position: relative;
  237. margin-left: 180px;
  238. }
  239. .nav-left .panel-group .panel+.panel {
  240. margin-top: 0;
  241. }
  242. .nav-left .panel-group {
  243. margin-bottom: 0;
  244. }
  245. .nav-left .panel {
  246. border-top: none;
  247. border-radius: 0;
  248. }
  249. .nav-left .panel-heading {
  250. padding: 8px 15px;
  251. cursor: pointer;
  252. }
  253. .nav-left .panel-heading .panel-title a {
  254. font-size: 13px;
  255. font-weight: 700;
  256. color: #3c3c3c;
  257. display: block;
  258. text-decoration: none;
  259. }
  260. .nav-left .panel-heading .panel-title i.fa,.nav-left .panel-heading .panel-title span.glyphicon
  261. {
  262. float: right;
  263. }
  264. .nav-left .panel-body {
  265. padding: 0;
  266. }
  267. .nav-left .panel-body .list-group {
  268. margin-bottom: 0;
  269. }
  270. .nav-left .panel-body a.list-group-item {
  271. border-left: none;
  272. border-right: none;
  273. border-radius: 0;
  274. padding: 8px 15px 8px 20px;
  275. cursor: pointer;
  276. color: #6d6d6d;
  277. }
  278. .nav-left .panel-body a.list-group-item:hover {
  279. color: #ff3700;
  280. margin-left: 5px;
  281. -webkit-transition: margin 0.3s ease-out;
  282. -moz-transition: margin 0.3s ease-out;
  283. -o-transition: margin 0.3s ease-out;
  284. -ms-transition: margin 0.3s ease-out;
  285. transition: margin 0.3s ease-out;
  286. }
  287. .nav-left .panel-body .list-group>.list-group-item:first-child {
  288. border-top: none;
  289. }
  290. .nav-left .panel-body .list-group>.list-group-item:last-child {
  291. border-bottom: none;
  292. }
  293. .nav-left .panel-body .list-group-item:hover {
  294. background: #fff1d0;
  295. }
  296. .nav-left .panel-body .list-group-item:hover .glyphicon {
  297. color: #ff7300;
  298. }
  299. .main-container .page-operator {
  300. padding: 4px 4px 3px 4px;
  301. border-bottom: 1px solid #ddd;
  302. background-color: #f5f5f5;
  303. border-bottom: 1px solid #ddd;
  304. }
  305. .main-container .page-operator a {
  306. padding: 2px 10px;
  307. }
  308. .main-container .shop-header,.main-container .shop-content {
  309. margin-left: -15px;
  310. margin-right: -15px;
  311. }
  312. .main-container .shop-header {
  313. position: relative;
  314. min-width: 950px;
  315. border-bottom: 1px solid #ccc;
  316. }
  317. .main-container .shop-header .container,.main-container .shop-sign .container
  318. {
  319. width: 950px;
  320. }
  321. .main-container .shop-sign {
  322. position: relative;
  323. margin: 0 auto;
  324. }
  325. .main-container .shop-sign-mark {
  326. height: 30px;
  327. line-height: 30px;
  328. color: #666;
  329. background-color: #f5f5f5;
  330. text-align: center;
  331. }
  332. .main-container .footer {
  333. width: 990px;
  334. padding-top: 10px;
  335. border-top: 1px solid #c9c9c9;
  336. }
  337. /*page setting*/
  338. .page-setting .alert dt {
  339. margin-top: 20px;
  340. margin-bottom: 10px;
  341. }
  342. /*page layout*/
  343. /*减小间距*/
  344. .alert.alert-sm {
  345. padding: 5px 15px;
  346. margin-bottom: 5px;
  347. }
  348. .panel.panel-sm {
  349. margin-bottom: 10px;
  350. }
  351. .panel.panel-sm .panel-body {
  352. padding: 5px 15px;
  353. min-height: 50px;
  354. }
  355. .page-layout,.page-setting {
  356. margin: 30px;
  357. }
  358. .page-layout-add {
  359. background-color: #fff1d0;
  360. padding: 5px;
  361. border-radius: 4px;
  362. border: 1px dashed #ff9831;
  363. margin-bottom: 5px;
  364. }
  365. .page-layout-static {
  366. background-color: #d9edf7;
  367. padding: 5px;
  368. border-radius: 4px;
  369. border: 1px solid #bce8f1;
  370. margin-bottom: 5px;
  371. }
  372. .page-layout-unit {
  373. margin-bottom: 5px;
  374. position: relative;
  375. }
  376. .page-layout-unit .row {
  377. margin-left: 0;
  378. margin-right: 0;
  379. }
  380. .page-layout-unit [class^=col-] {
  381. color: #31708f;
  382. text-align: center;
  383. }
  384. .page-layout-add p,.page-layout-add ul,.page-layout-static p,.page-layout-static ul,.page-layout-unit p,.page-layout-unit ul
  385. {
  386. margin-bottom: 0;
  387. }
  388. .page-layout-ex,.page-module-ex {
  389. height: 500px;
  390. overflow-y: auto;
  391. }
  392. .page-layout-ex .row,.page-module-ex .row {
  393. margin: 0 15px 5px 15px;
  394. color: #777;
  395. }
  396. .page-module-ex [class^=col-] {
  397. padding: 5px;
  398. }
  399. .page-module-ex .thumbnail {
  400. margin-bottom: 0;
  401. }
  402. .layout-ex-unit {
  403. padding: 5px 0;
  404. background-color: #f5f5f5;
  405. border: 1px solid #ddd;
  406. text-align: center;
  407. }
  408. .layout-unit-module {
  409. padding: 5px 0;
  410. border: 1px solid #ddd;
  411. position: relative;
  412. }
  413. .layout-unit-module.added {
  414. background-color: #d9edf7;
  415. }
  416. .layout-unit-tools {
  417. padding: 4px 10px;
  418. background-color: #000000;
  419. opacity: 0.5;
  420. filter: alpha(opacity = 50);
  421. position: absolute;
  422. top: 0;
  423. right: -30px;
  424. z-index: 10;
  425. }
  426. .layout-unit-tools a,.layout-unit-tools .dropdown-menu a {
  427. cursor: pointer;
  428. font-size: 14px;
  429. color: #fff;
  430. }
  431. .layout-unit-tools .dropdown-menu {
  432. background-color: #000000;
  433. }
  434. .layout-unit-tools .dropdown-menu>li>a:hover {
  435. background-color: transparent;
  436. color: #ff3700;
  437. }
  438. /*panel边角*/
  439. .panel-corner {
  440. position: relative;
  441. }
  442. .panel-corner .top-left,.panel-corner .top-right,.panel-corner .bottom-left,.panel-corner .bottom-right
  443. {
  444. position: absolute;
  445. z-index: 10;
  446. display: block;
  447. padding: 4px 8px;
  448. font-size: 12px;
  449. color: #777;
  450. cursor: pointer;
  451. background-color: #fff;
  452. border: 1px solid #ddd;
  453. }
  454. .panel-corner .top-left {
  455. top: 0;
  456. left: 0;
  457. border-radius: 4px 0 4px 0;
  458. }
  459. .panel-corner .top-right {
  460. top: 0;
  461. right: 0;
  462. border-radius: 0 4px 0 4px;
  463. }
  464. .panel-corner .bottom-left {
  465. bottom: 10px;
  466. left: 0;
  467. border-radius: 0 4px 0 4px;
  468. }
  469. .panel-corner .bottom-right {
  470. bottom: 10px;
  471. right: 0;
  472. border-radius: 4px 0 4px 0;
  473. }