wechat.css 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467
  1. .rf-select-list {
  2. margin: 0;
  3. }
  4. .rf-select-list .img-box {
  5. position: relative;
  6. overflow: hidden;
  7. width: 230px;
  8. height: 150px;
  9. vertical-align: middle;
  10. text-align: center;
  11. cursor: pointer;
  12. border: 1px #efefed solid;
  13. color: #76838f;
  14. }
  15. .rf-select-list .img-box img {
  16. width: auto;
  17. height: 100%;
  18. margin: 0 auto;
  19. opacity: 1;
  20. }
  21. /** 关于素材库/自定义菜单 **/
  22. /** ====================================重载==================================== **/
  23. a {
  24. color: inherit;
  25. }
  26. /** ====================================间距==================================== **/
  27. .postToolbar {
  28. font-size: 15px;
  29. }
  30. /*!*小盒子内容区的样式,display:inline-block:实现 效果*!*/
  31. .inlineBlockContainer .normalPaddingRight {
  32. width: 100%;
  33. display: inline-block
  34. }
  35. .separateFromNextBlock {
  36. margin-bottom: 10px;
  37. }
  38. .separateFromNextBlockFar {
  39. margin-bottom: 20px;
  40. }
  41. .separateFromNextInlineBlock {
  42. margin-right: 10px;
  43. }
  44. .separateFromNextInlineBlockFurther {
  45. margin-right: 20px;
  46. }
  47. .separateChildrenWithLine > *:not(:last-child) {
  48. border-bottom: 1px solid #e7eaec;
  49. }
  50. .separateChildren.further > * {
  51. margin-bottom: 20px;
  52. }
  53. .separateInlineChildren > *:not(:last-child) {
  54. margin-right: 10px;
  55. }
  56. .separateInlineChildren.includeLastOne > *:last-child {
  57. margin-right: 10px;
  58. }
  59. .separateInlineChildren.closer > * {
  60. margin-right: 5px;
  61. }
  62. .separateInlineChildren.closer.includeLastOne > *:last-child {
  63. margin-right: 5px;
  64. }
  65. .normalPaddingTop {
  66. padding-top: 5px;
  67. }
  68. .normalPadding {
  69. padding: 10px;
  70. }
  71. .normalPaddingJustH {
  72. padding-left: 10px;
  73. padding-right: 10px;
  74. }
  75. .normalPaddingJustV {
  76. padding-top: 10px;
  77. padding-bottom: 10px;
  78. }
  79. .normalPaddingRight {
  80. padding-right: 10px;
  81. }
  82. .noPaddingH {
  83. padding-left: 0;
  84. padding-right: 0;
  85. }
  86. .noPaddingV {
  87. padding-top: 0;
  88. padding-bottom: 0;
  89. }
  90. .farPadding {
  91. padding: 20px;
  92. }
  93. .farPaddingJustH {
  94. padding-left: 20px;
  95. padding-right: 20px;
  96. }
  97. .farPaddingJustV {
  98. padding-top: 20px;
  99. padding-bottom: 20px;
  100. }
  101. /** ====================================边框==================================== **/
  102. .borderColorGray {
  103. border: 1px solid #e7eaec !important;
  104. }
  105. .borderBottomColorGray {
  106. border-bottom: 1px solid #e7eaec !important;
  107. }
  108. .borderRightColorGray {
  109. border-right: 1px solid #e7eaec !important;
  110. }
  111. /** ====================================布局==================================== **/
  112. .displayAsBlock {
  113. display: block;
  114. }
  115. .displayAsInlineBlock {
  116. display: inline-block;
  117. }
  118. .relativePosition {
  119. position: relative;
  120. }
  121. .absolutePosition {
  122. position: absolute;
  123. }
  124. .fullWidth {
  125. width: 100%;
  126. }
  127. .fullHeight {
  128. height: 100%;
  129. }
  130. .maxWidthFull {
  131. max-width: 100%;
  132. }
  133. .maxHeightFull {
  134. max-height: 100%;
  135. }
  136. .absoluteFullSize {
  137. position: absolute;
  138. left: 0;
  139. right: 0;
  140. bottom: 0;
  141. top: 0;
  142. }
  143. .hAbsoluteCenter {
  144. position: absolute;
  145. left: 50%;
  146. transform: translateX(-50%);
  147. }
  148. .vAbsoluteMiddle {
  149. position: absolute;
  150. top: 50%;
  151. transform: translateY(-50%);
  152. }
  153. .absoluteCenter {
  154. position: absolute;
  155. left: 50%;
  156. top: 50%;
  157. transform: translateX(-50%) translateY(-50%);
  158. }
  159. /** 伸缩盒子布局 **/
  160. .flex-row {
  161. display: flex;
  162. }
  163. .flex-row > * {
  164. display: block;
  165. }
  166. .flex-col {
  167. flex: 1;
  168. }
  169. .flex-hAlignCenter {
  170. justify-content: center;
  171. }
  172. .flex-hAlignBalance {
  173. justify-content: space-between;
  174. }
  175. .flex-autoWidthRowElem {
  176. flex: initial;
  177. width: auto;
  178. }
  179. .flex-vAlignCenter {
  180. align-items: center;
  181. }
  182. .flex-vAlignEnd {
  183. align-items: flex-end;
  184. }
  185. .flex-vDirection {
  186. flex-direction: column;
  187. }
  188. .hAlignCenter {
  189. text-align: center;
  190. }
  191. .overflowHidden {
  192. overflow: hidden;
  193. }
  194. .inlineBlockContainer {
  195. font-size: 0;
  196. }
  197. .inlineBlockContainer > * {
  198. font-size: 13px;
  199. display: inline-block;
  200. box-sizing: border-box;
  201. }
  202. .inlineBlockContainer.vAlignTop > * {
  203. vertical-align: top;
  204. }
  205. .inlineBlockContainer.col2 > * {
  206. width: 50%;
  207. }
  208. .inlineBlockContainer.col3 > * {
  209. width: 33.3%;
  210. }
  211. .inlineBlockContainer.col4 > * {
  212. width: 25%;
  213. }
  214. .inlineBlockContainer.col5 > * {
  215. width: 20%;
  216. }
  217. /** ==================================背景================================== **/
  218. .whiteBG {
  219. background-color: white;
  220. }
  221. .backgroundCover {
  222. background-size: cover;
  223. background-position: center center;
  224. }
  225. .backgroundCover a {
  226. color: #76838f;
  227. }
  228. .halfOpacityBlackBG {
  229. background-color: rgba(0, 0, 0, 0.5);
  230. }
  231. /** ==================================文本================================== **/
  232. .fontSizeXS {
  233. font-size: 12px !important;
  234. }
  235. .fontSizeS {
  236. font-size: 13px !important;
  237. }
  238. .fontSizeM {
  239. font-size: 14px !important;
  240. }
  241. .fontSizeMM {
  242. font-size: 15px !important;
  243. }
  244. .fontSizeL {
  245. font-size: 16px !important;
  246. }
  247. .fontSizeXL {
  248. font-size: 18px !important;
  249. }
  250. .fontSizeXXL {
  251. font-size: 20px !important;
  252. }
  253. .fontSizeXXXL {
  254. font-size: 22px !important;
  255. }
  256. .fontColorGray {
  257. color: #999 !important;
  258. }
  259. .fontColorWhite {
  260. color: #fff !important;
  261. }
  262. /** ====================================组件==================================== **/
  263. .cursorPointer {
  264. cursor: pointer;
  265. }
  266. .appInput {
  267. border: none;
  268. padding: 5px 10px;
  269. }
  270. .appInput.largeSize {
  271. line-height: 46px;
  272. font-size: 22px;
  273. }
  274. .appTextarea {
  275. padding: 5px;
  276. -webkit-appearance: none;
  277. resize: none;
  278. box-sizing: border-box;
  279. border: 1px solid #e7eaec;
  280. }
  281. .tabBarItem {
  282. line-height: 50px;
  283. width: 10em;
  284. display: inline-block;
  285. border-bottom: 3px solid transparent;
  286. text-align: center;
  287. cursor: pointer;
  288. }
  289. .tabBarItem.active {
  290. color: #428bca;
  291. border-bottom: 3px solid #428bca;
  292. }
  293. .bottomBar {
  294. position: absolute;
  295. bottom: 0;
  296. left: 0;
  297. width: 100%;
  298. background-color: rgba(0, 0, 0, 0.5);
  299. color: white;
  300. padding: 10px;
  301. }
  302. .appFileInput {
  303. width: 0;
  304. height: 0;
  305. -webkit-appearance: none;
  306. }
  307. input[type=file].appFileInput:focus {
  308. outline: none;
  309. outline-offset: initial;
  310. }
  311. /** ==================================== 通用 ==================================== **/
  312. .mainPostCover {
  313. background-color: #ececec;
  314. }
  315. .subPostCover {
  316. display: inline-block;
  317. width: 80px;
  318. height: 80px;
  319. background-color: #ececec;
  320. }
  321. /** ==================================== 自定义菜单 ==================================== **/
  322. .menuView {
  323. height: 500px;
  324. position: relative;
  325. background-color: white;
  326. }
  327. .menuView .btn-white {
  328. line-height: 25px;
  329. font-size: 14px;
  330. margin-bottom: 0;
  331. border-radius: 0;
  332. background: #FAFAFA;;
  333. }
  334. .menuView .btn-white:hover {
  335. border: 1px solid #62a8ea;
  336. background-color: #fff;
  337. color: #62a8ea;
  338. }
  339. .custommenu {
  340. position: relative;
  341. }
  342. .custommenu_sub_container {
  343. position: absolute;
  344. width: 100%;
  345. bottom: 100%;
  346. }
  347. .ng-binding {
  348. font-size: 15px;
  349. line-height: 30px;
  350. }
  351. .phone-header {
  352. position: relative;
  353. background: transparent url(../img/bg_mobile_head_default.png);
  354. background-position: 0 0;
  355. overflow: hidden;
  356. text-align: center;
  357. padding-top: 30px;
  358. font-size: 15px;
  359. color: #fff;
  360. border: 1px solid #e7e7eb;
  361. }
  362. .phone-foot {
  363. position: absolute;
  364. bottom: 0;
  365. left: 0;
  366. right: 0;
  367. border-top: 1px solid #e7e7eb;
  368. background: url(../img/bg-mobile-foot-default.png);
  369. background-position: 0 -3px;
  370. background-repeat: no-repeat;
  371. padding-left: 43px;
  372. margin-bottom: 0;
  373. }
粤ICP备19079148号