html.css 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779
  1. /* 针对金宇商城设置的css */
  2. [v-cloak] {
  3. display: none;
  4. }
  5. body {
  6. background-color: #e0ebf4 !important;
  7. }
  8. em {
  9. font-style: normal;
  10. }
  11. .zmq-img-nodata {
  12. width: 70vw;
  13. height: 70vw;
  14. margin-left: 15vw;
  15. margin-top:5rem;
  16. }
  17. .zmq-model-bg {
  18. background-color: #000000;
  19. opacity: 0.2;
  20. position: fixed;
  21. width: 100%;
  22. height: 100%;
  23. left: 0;
  24. z-index: 20;
  25. }
  26. /* 直线 */
  27. .zmq-line-versial {
  28. width: 1px !important;
  29. height: 2rem;
  30. margin-top: 0.5rem
  31. }
  32. .zmq-line-level {
  33. height: 1px !important;
  34. }
  35. /*********** 美化选择框 *************/
  36. /* 美化input type=checkbox */
  37. /* 第二种解决方案:图片代替checkbox */
  38. .check .input_check+ label {
  39. background-image: url('../image/drawable-xhdpi/check.png') !important;
  40. background-size: 100% 100%;
  41. }
  42. .aui-radio, .aui-checkbox {
  43. width: 1.2rem;
  44. height: 1.2rem;
  45. background-color: #ffffff;
  46. border: solid 0px #dddddd !important;
  47. -webkit-border-radius: 0.6rem;
  48. border-radius: 0.6rem;
  49. font-size: 0.8rem;
  50. margin: 0;
  51. padding: 0;
  52. position: relative;
  53. display: inline-block;
  54. vertical-align: top;
  55. cursor: default;
  56. -webkit-appearance: none;
  57. -webkit-user-select: none;
  58. user-select: none;
  59. -webkit-transition: background-color ease 0.1s;
  60. transition: background-color ease 0.1s;
  61. }
  62. .aui-checkbox span {
  63. position: relative;
  64. }
  65. .aui-checkbox .input_check {
  66. position: absolute;
  67. width: 30px;
  68. height: 30px;
  69. visibility: hidden;
  70. position: absolute;
  71. margin-top: 0.7rem;
  72. }
  73. .aui-checkbox .input_check+ label {
  74. display: inline-block;
  75. width: 30px;
  76. height: 30px;
  77. background-position: -0px -0px;
  78. background-image: url('../image/drawable-xhdpi/nocheck.png');
  79. background-size: 100% 100%;
  80. border-radius: 50%;
  81. }
  82. .aui-checkbox .input_check:checked+ label {
  83. background-position: 0;
  84. }
  85. /*********** 美化结束 **************/
  86. /*--- 优化input ----*/
  87. .zmq-input-noborder {
  88. border: 0px solid #fff !important;
  89. }
  90. /*------ 图标配置 -------*/
  91. .zmq-icon-inline-user {
  92. width: 1.3rem !important;
  93. display: inline;
  94. margin-right: 0.4rem;
  95. }
  96. .zmq-icon-inline-middle {
  97. width: 0.7rem !important;
  98. display: inline;
  99. margin-right: 0.4rem;
  100. }
  101. .zmq-icon-inline {
  102. width: 0.5rem !important;
  103. display: inline;
  104. margin-right: 0.2rem;
  105. }
  106. .zmq-icon-inline-big {
  107. width: 1.5rem !important;
  108. height: 1.5rem !important;
  109. display: inline;
  110. margin-right: 0.2rem;
  111. }
  112. .zmq-icon-right {
  113. width: 0.5rem;
  114. height: 0.9rem;
  115. margin-top: 2px;
  116. margin-left: 5px;
  117. }
  118. /*----- 直线 -----*/
  119. .zmq-line-3 {
  120. background-color: #e0ebf4 !important;
  121. height: 3px;
  122. }
  123. /**----------- 一行显示 -----------**/
  124. /* 文字竖着排 */
  125. .zmq-text-vertical {
  126. width: 1rem;
  127. padding-left: 0.15rem;
  128. box-sizing: border-box;
  129. font-size: 0.6rem !important;
  130. margin-left: 0.6rem;
  131. line-height: 1rem;
  132. text-align: center;
  133. }
  134. .zmq-line-1 {
  135. overflow: hidden;/*超出部分隐藏*/
  136. white-space: nowrap;/*不换行*/
  137. text-overflow: ellipsis;/*超出部分省略号显示*/
  138. }
  139. .zmq-flex {
  140. display: flex;
  141. display: -webkit-flex;
  142. }
  143. .zmq-inline {
  144. display: inline !important;
  145. }
  146. .zmq-flex-start {
  147. justify-content: flex-start !important;
  148. }
  149. .zmq-flex-end {
  150. justify-content: flex-end !important;
  151. }
  152. .zmq-flex-between {
  153. justify-content: space-between !important;
  154. }
  155. .zmq-warp {
  156. flex-wrap: wrap;
  157. }
  158. .zmq-flex-1 {
  159. flex: 1;
  160. }
  161. /* --浮动-- */
  162. .zmq-float-left {
  163. float: left;
  164. }
  165. .zmq-float-right {
  166. float: right;
  167. }
  168. .zmq-position-absolute {
  169. position: absolute !important;
  170. right: 10px;
  171. }
  172. /* ---- 宽度整理 ---- */
  173. .zmq-width-100 {
  174. width: 100% !important;
  175. }
  176. .zmq-width-80 {
  177. width: 80% !important;
  178. }
  179. .zmq-width-70 {
  180. width: 70% !important;
  181. }
  182. .zmq-width-60 {
  183. width: 60% !important;
  184. }
  185. .zmq-width-50 {
  186. width: 50% !important;
  187. }
  188. .zmq-width-40 {
  189. width: 40% !important;
  190. }
  191. .zmq-width-30 {
  192. width: 30% !important;
  193. }
  194. .zmq-width-20 {
  195. width: 20% !important;
  196. }
  197. .zmq-width-10 {
  198. width: 10% !important;
  199. }
  200. /* 背景格式 */
  201. .zmq-bg-shallow {
  202. background-color: #dcfeff !important;
  203. }
  204. .zmq-bg-danger {
  205. background-color: #f00 !important;
  206. }
  207. .zmq-bg-white {
  208. background-color: #fff !important;
  209. }
  210. .zmq-bg-transparent {
  211. background-color: transparent !important;
  212. }
  213. .zmq-bg-noraml {
  214. background-color: #067974 !important;
  215. }
  216. /* 字体格式 */
  217. .zmq-font-weight {
  218. font-weight: bold !important;
  219. }
  220. .zmq-text-value {
  221. color: #2cacb5 !important;
  222. }
  223. .zmq-text-white {
  224. color: #fff !important;
  225. }
  226. .zmq-text-font-12 {
  227. font-size: 1.2rem !important;
  228. }
  229. .zmq-text-font-10 {
  230. font-size: 1rem !important;
  231. }
  232. .zmq-text-font-09 {
  233. font-size: 0.9rem !important;
  234. }
  235. .zmq-text-font-08 {
  236. font-size: 0.8rem !important;
  237. }
  238. .zmq-text-font-07 {
  239. font-size: 0.7rem !important;
  240. }
  241. .zmq-text-font-06 {
  242. font-size: 0.6rem !important;
  243. }
  244. .zmq-text-font-05 {
  245. font-size: 0.55rem !important;
  246. }
  247. .zmq-text-black {
  248. color: #000 !important;
  249. }
  250. .zmq-text-normal {
  251. color: #757575 !important;
  252. font-size: 0.6rem !important;
  253. }
  254. .zmq-text-repose {
  255. color: #d7d7d7 !important;
  256. }
  257. .zmq-text-msg {
  258. color: #067974 !important;
  259. }
  260. .zmq-text-done {
  261. color: #999 !important;
  262. }
  263. .zmq-text-right {
  264. text-align: right;
  265. padding: 10px 0 5px 10px;
  266. }
  267. .zmq-text-explain {
  268. color: #999 !important;
  269. font-size: 0.6rem !important;
  270. }
  271. .zmq-text-success {
  272. color: #009944 !important;
  273. }
  274. .zmq-text-danger {
  275. color: #FF0000 !important;
  276. }
  277. .zmq-textAlign-center {
  278. text-align: center !important;
  279. }
  280. /* 圆角 */
  281. .zmq-radius-5 {
  282. border-radius: 5px;
  283. }
  284. .zmq-radius-top-10 {
  285. border-radius: 10px 10px 0 0;
  286. }
  287. .zmq-radius-top-5 {
  288. border-radius: 5px 5px 0 0;
  289. }
  290. .zmq-radius-bottom-5 {
  291. border-radius: 0 0 5px 5px;
  292. }
  293. .zmq-radius-bottom-10 {
  294. border-radius: 0 0 10px 10px;
  295. }
  296. .zmq-radius-10 {
  297. border-radius: 10px;
  298. }
  299. .zmq-border-none {
  300. border: 0px !important;
  301. }
  302. .zmq-border-top-1 {
  303. border-top: 1px solid #ddd;
  304. }
  305. .zmq-img-border {
  306. border: 1px solid #067974;
  307. border-radius: 5px;
  308. }
  309. /* 边距 */
  310. .zmq-padding-doneBtn {
  311. padding: 5px 15px;
  312. }
  313. .zmq-padding-left-10 {
  314. padding-left: 10px;
  315. }
  316. .zmq-padding-btn {
  317. padding: 10px 10px !important;
  318. }
  319. .zmq-padding-status {
  320. padding: 2px 5px !important;
  321. }
  322. .zmq-margin-bottom-5 {
  323. margin-bottom: 5px;
  324. }
  325. .zmq-margin-right-10 {
  326. margin-right: 10px !important;
  327. }
  328. .zmq-margin-level-2 {
  329. margin-left: 2px;
  330. margin-right: 2px;
  331. }
  332. .zmq-margin-level-10 {
  333. margin-left: 10px;
  334. margin-right: 10px;
  335. }
  336. .zmq-margin-level-5 {
  337. margin-left: 5px;
  338. margin-right: 5px;
  339. }
  340. .zmq-margin-vertical-2 {
  341. margin-top: 2px;
  342. margin-bottom: 2px;
  343. }
  344. .zmq-margin-vertical-5 {
  345. margin-top: 5px;
  346. margin-bottom: 5px;
  347. }
  348. .zmq-margin-top-5 {
  349. margin-top: 5px !important;
  350. }
  351. .zmq-margin-top-10 {
  352. margin-top: 10px !important;
  353. }
  354. .zmq-margin-top-15 {
  355. margin-top: 15px !important;
  356. }
  357. .zmq-width-90 {
  358. width: 96% !important;
  359. margin-left: 2% !important;
  360. box-sizing: border-box;
  361. }
  362. .zmq-padding-vertical-5 {
  363. padding-top: 5px;
  364. padding-bottom: 5px;
  365. }
  366. .zmq-padding-vertical-10 {
  367. padding-top: 10px;
  368. padding-bottom: 10px;
  369. }
  370. /* 内边距 */
  371. .zmq-padding-top-10 {
  372. padding-top: 10px;
  373. }
  374. /*------- 底部按钮 -------*/
  375. .zmq-footer-fixed {
  376. position: fixed;
  377. bottom: 0px;
  378. left: 0;
  379. width: 100%;
  380. padding-bottom: 5px;
  381. background-color: #fff;
  382. padding-top: 5px;
  383. }
  384. .zmq-header-fiexd {
  385. position: fixed;
  386. top: 0px;
  387. left: 0;
  388. width: 100%;
  389. }
  390. /* 按钮格式 */
  391. .zmq-btn {
  392. width: 100%;
  393. display: block;
  394. padding: 4% 0;
  395. border: 0;
  396. font-size: 1em;
  397. font-family: "Microsoft YaHei";
  398. color: #fff;
  399. text-align: center;
  400. }
  401. .zmq-btn-img {
  402. background-image: url(../image/drawable-xhdpi/btnbg.png);
  403. background-size: 100% 100%;
  404. }
  405. .zmq-input-border {
  406. background-color: #fff !important;
  407. border: 1px solid #067974 !important;
  408. border-radius: 5px !important;
  409. }
  410. .zmq-input-border-read {
  411. background-color: #067974 !important;
  412. border: 1px solid #fff !important;
  413. border-radius: 5px !important;
  414. }
  415. .zmq-btn-border {
  416. background-color: #fff !important;
  417. border: 1px solid #067974 !important;
  418. border-radius: 15px !important;
  419. }
  420. .zmq-btn-border-danger {
  421. background-color: #fff !important;
  422. border: 1px solid #f00 !important;
  423. border-radius: 15px !important;
  424. }
  425. .zmq-btn-border-success {
  426. background-color: #fff !important;
  427. border: 1px solid #009944 !important;
  428. border-radius: 15px !important;
  429. }
  430. .zmq-btn-border-done {
  431. background-color: #fff !important;
  432. border: 1px solid #fff !important;
  433. border-radius: 15px !important;
  434. }
  435. /**-------------- 边框 ---------------**/
  436. .zmq-border-bottom-1 {
  437. border-bottom: 1px solid #ddd;
  438. }
  439. /* 登录页 */
  440. .zmq-form {
  441. background-color: #fff;
  442. width: 80%;
  443. padding: 15px 15px;
  444. box-shadow: 1px 1px 5px #ddd;
  445. border-radius: 10px;
  446. }
  447. /*----------------------- 输入框背景 -------------------*/
  448. .zmq-input-img {
  449. width: 1rem;
  450. height: 1.2rem;
  451. position: absolute;
  452. margin-left: 0.3rem;
  453. }
  454. .zmq-input-parent {
  455. background-color: #f0f0f0 !important;
  456. margin-top: 10px;
  457. border-radius: 5px !important;
  458. padding: 4.5% 0 4.5% 3% !important;
  459. }
  460. .zmq-input {
  461. font-size: 0.9rem !important;
  462. line-height: 1rem !important;
  463. margin-left: 1.8rem !important;
  464. color: #000 !important;
  465. }
  466. /*----------------- 卡片配置 -------------------*/
  467. .zmq-card {
  468. background-color: #fff;
  469. }
  470. .zmq-card-nomal {
  471. width: 96%;
  472. margin-left: 2%;
  473. border-radius: 5px;
  474. margin-top: 0.6rem;
  475. }
  476. /*----------- 顶部配置 -------------*/
  477. .zmq-header {
  478. width: 100%;
  479. height: 50px;
  480. box-sizing: border-box;
  481. padding: 8px 15px;
  482. background-image: url(../image/drawable-xhdpi/topbg.png) !important;
  483. }
  484. .zmq-header .zmq-header-logo {
  485. color: #fff;
  486. font-weight: bold;
  487. line-height: 35px;
  488. }
  489. .zmq-logo-img {
  490. width: 70px;
  491. height: 16px;
  492. margin-top: 10px;
  493. }
  494. .zmq-search-img {
  495. width: 1.5rem;
  496. box-sizing: border-box;
  497. padding: 5px;
  498. position: absolute;
  499. margin-left: -1.5rem;
  500. margin-top: 0.25rem;
  501. }
  502. .zmq-header-search {
  503. width: 73%;
  504. height: 35px;
  505. margin-left: 3%;
  506. background-image: url(../image/drawable-xhdpi/searchbg.png) !important;
  507. background-size: 100% 100%;
  508. line-height: 35px;
  509. text-align: center;
  510. font-size: 0.8rem;
  511. color: #f0f0f0;
  512. }
  513. .zmq-btn-title .zmq-btn-img {
  514. width: 1rem;
  515. height: 1rem;
  516. margin-right: 0.3rem;
  517. position: absolute;
  518. margin-left: -1.3rem;
  519. margin-top: 0.2rem;
  520. }
  521. .zmq-btn-title {
  522. background-color: #32b6bb;
  523. display: inline;
  524. padding: 5px 10px;
  525. border-radius: 5px;
  526. padding-left: 2rem;
  527. box-shadow: #999 1px 1px 5px;
  528. }
  529. .zmq-btn-msg em {
  530. margin-top: 85%;
  531. text-align: center;
  532. font-size: 0.8rem !important;
  533. }
  534. /* 边框虚化 **/
  535. .zmq-box-normal {
  536. box-shadow: 1px 1px 5px #067974;
  537. }
  538. /* ----------- 我的 -----------*/
  539. .zmq-my-header {
  540. width: 100%;
  541. height: 38%;
  542. }
  543. .zmq-my-headerbg {
  544. width: 100%;
  545. height: 80%;
  546. background-image: url(../image/drawable-xhdpi/bg01.png);
  547. background-size: 100% 100%;
  548. }
  549. .zmq-my-body {
  550. width: 100%;
  551. padding-bottom: 10%;
  552. // padding-top: 5%;
  553. position: absolute;
  554. top: 10%;
  555. }
  556. .zmq-my-body .zmq-my-info {
  557. background-image: url(../image/drawable-xhdpi/myBody.png);
  558. height: 80%;
  559. margin-top: 2%;
  560. width: 94%;
  561. margin-left: 3%;
  562. border-radius: 10px;
  563. }
  564. .zmq-my-userinfo {
  565. width: 100%;
  566. height: 40%;
  567. padding: 15px 20px;
  568. }
  569. .zmq-my-userinfo img {
  570. width: 60px;
  571. height: 60px;
  572. }
  573. .zmq-my-userinfo-name {
  574. margin-left: 0.8rem;
  575. padding-top: 5px;
  576. }
  577. .zmq-my-userinfo-name p:first-of-type {
  578. font-size: 0.9rem !important;
  579. }
  580. .zmq-my-userinfo-name p {
  581. margin-top: 5px;
  582. font-size: 0.7rem;
  583. color: #fffff4;
  584. }
  585. .zmq-jifen-bg {
  586. position: absolute;
  587. right: 7%;
  588. margin-top: 1rem;
  589. color: #fffff4;
  590. background-image: url(../image/drawable-xhdpi/jifenbg.png);
  591. background-size: 100% 100%;
  592. padding: 5px;
  593. font-size: 0.6rem;
  594. padding-left: 1.45rem;
  595. }
  596. .zmq-jifen-bg img {
  597. width: 0.7rem;
  598. height: 0.7rem;
  599. margin: 2px 5px 0 0;
  600. position: absolute;
  601. margin-left: -1.1rem;
  602. }
  603. /****--------- 订单管理 -------***/
  604. .zmq-orderCode-img {
  605. display: inline !important;
  606. width: 0.7rem;
  607. height: 0.8rem;
  608. margin-right: 5px;
  609. }
  610. .zmq-img-bgcolor {
  611. background-color: #e0ebf4 !important;
  612. border-radius: 0px !important;
  613. }
  614. /*-------------- 积分页面 --------------*/
  615. .zmq-jifen-hedaer {
  616. background-image: url(../image/drawable-xhdpi/jifenheader.png);
  617. background-size: 100% 100%;
  618. }
  619. .zmq-hot-bg {
  620. background-image: url(../image/drawable-xhdpi/hotbg.png);
  621. background-size: 100% 100%;
  622. width: 100%;
  623. height: 20px;
  624. }
  625. .zmq-hot-img {
  626. padding: 20px;
  627. background-color: #e0ebf4 !important;
  628. }
  629. .zmq-conpamy-photo {
  630. width: 60px;
  631. height: 60px;
  632. }
  633. .zmq-qypp {
  634. background-image: url(../image/drawable-xhdpi/qypp.png);
  635. background-size: 100% 100%;
  636. height: 4rem;
  637. width: 20%;
  638. max-width: 30px !important;
  639. }
  640. .zmq-inline-img {
  641. width: 0.8rem;
  642. height: 0.9rem;
  643. margin-right: 10px;
  644. margin-top: 3px;
  645. }
  646. .zmq-btn-right {
  647. margin-right: 20px;
  648. margin-top: 5px;
  649. }
  650. .zmq-fujin-img {
  651. width: 5rem;
  652. height: 5rem;
  653. margin-top: 5px;
  654. }
  655. /*-------- 客户消费记录 ------*/
  656. .zmq-bg-info {
  657. background-image: url(../image/drawable-xhdpi/kehuinfo.png);
  658. background-size: 100% 100%;
  659. }
  660. .zmq-carInfo-right {
  661. background-image: url(../image/drawable-xhdpi/rightCode.png);
  662. background-size: 100% 100%;
  663. position: absolute;
  664. right: -3px;
  665. width: 5rem;
  666. height: 1.6rem;
  667. text-align: center;
  668. line-height: 1.6rem
  669. }
  670. .zmq-info-header {
  671. width: 100%;
  672. height: 120px
  673. }
  674. .zmq-user-infoBlock {
  675. margin-top: 0.2rem;
  676. background-color: #fff;
  677. padding-top: 1rem;
  678. padding-bottom: 0.5rem;
  679. }
  680. .zmq-img-user {
  681. width: 3rem;
  682. height: 3rem;
  683. margin: 0 auto;
  684. border: 1px solid #ddd;
  685. border-radius: 50%;
  686. padding: 5px;
  687. margin-top: -1.5rem;
  688. }
  689. .zmq-user-name {
  690. margin-top: -5.5rem;
  691. left: 0
  692. }
  693. .zmq-btn-circle {
  694. padding : 5px 10px;border-radius: 10px;border: 1px solid#067974;
  695. }
  696. .zmq-bg-chart img {
  697. width : 1.5rem;
  698. height: 1.5rem;
  699. }
  700. .zmq-bg-chart {
  701. background-color: #41cdd3;
  702. padding : 8px;
  703. box-sizing: border-box;
  704. }
  705. .zmq-chart-msg .zmq-chart-msg-title{
  706. font-family: "Yahei";
  707. font-size: 0.7rem;
  708. color: #999;
  709. }
  710. .zmq-chart-msg .zmq-chart-msg-info {
  711. font-size: 0.9rem;
  712. font-weight : bold;
  713. }
  714. .zmq-chart-msg .zmq-chart-msg-info em {
  715. font-size : 0.6rem;
  716. color: #999;
  717. font-weight : 100;
  718. }
  719. /* 物流信息 */
  720. .zmq-wuliu-status {
  721. font-size : 0.8rem;
  722. padding-left: 2rem;
  723. }
  724. .zmq-wuliu-status img {
  725. width : 0.8rem;
  726. height: 1rem;
  727. position : absolute;
  728. margin-left: -1.1rem;
  729. margin-top: -1px;
  730. }
  731. .zmq-wuliu-msg {
  732. padding-left : 2.1rem;
  733. font-size : 0.6rem;
  734. padding-top : 0.3rem;
  735. }
  736. .zmq-title {
  737. color: #00787B;
  738. font-weight: bold;
  739. border-bottom : 1px solid#005AA9;
  740. }
  741. /***----------- 弹出层 ----------***/
  742. .zmq-alert {
  743. position: fixed;
  744. z-index: 9999;
  745. top : 25%;
  746. width: 80%;
  747. left: 10%;
  748. padding : 5px 10px;
  749. box-sizing: border-box;
  750. box-shadow: 1px 1px 2px #999;
  751. }
  752. .zmq-alert-title {
  753. padding: 5px 0 8px 0;
  754. text-align: center;
  755. }
  756. .zmq-alert-msg {
  757. padding-bottom : 5px;
  758. }
  759. .zmq-alert-input {
  760. background-color: #ddd;
  761. border-radius: 5px;
  762. padding : 5px 10px;
  763. margin: 5px 0;
  764. }
  765. .zmq-alert-input input {
  766. // color: #2cacb5;
  767. font-size: 0.6rem;
  768. height: 1.5rem;
  769. }
  770. .zmq-alert-btn .zmq-alert-btn-item {
  771. padding : 10px 0;
  772. margin : 15px 0 0px 0;
  773. border-top: 1px solid#ddd;
  774. font-size: 0.65rem;
  775. }
  776. .zmq-alert-btn .zmq-alert-btn-item:last-of-type {
  777. border-left: 1px solid#ddd;
  778. color: #2cacb5;
  779. }