app.wxss 730 B

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