app.wxss 693 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. /**app.wxss**/
  2. page {
  3. font-family: "微软雅黑", "Microsoft Yahei";
  4. height: 100%;
  5. }
  6. .app-bg {
  7. width: 100%;
  8. min-height: 100%;
  9. background-color: #f2f4f6;
  10. }
  11. .fl {
  12. float: left;
  13. }
  14. .fr {
  15. float: right;
  16. }
  17. .clean {
  18. clear: both;
  19. }
  20. .clear {
  21. clear: both;
  22. }
  23. .container {
  24. width: 100%;
  25. height: 100%;
  26. }
  27. .ellipsis {
  28. overflow: hidden;
  29. text-overflow: ellipsis;
  30. white-space: nowrap;
  31. word-wrap: normal;
  32. }
  33. .ellipsisLn {
  34. overflow: hidden;
  35. text-overflow: ellipsis;
  36. display: -webkit-box;
  37. -webkit-box-orient: vertical;
  38. /*-webkit-line-clamp: @line;*/
  39. }
  40. button::after {
  41. border: 0;
  42. }
  43. button {
  44. border-radius: 0;
  45. border: 0;
  46. margin: 0;
  47. padding: 0;
  48. background: none;
  49. }