app.wxss 970 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. /**app.wxss**/
  2. page{
  3. min-height: 100%;
  4. background: #ffffff;
  5. -webkit-overflow-scrolling : touch;
  6. }
  7. view, text {
  8. font-family:PingFang SC;
  9. box-sizing: border-box;
  10. }
  11. .no-wrapper{
  12. overflow: hidden;
  13. text-overflow:ellipsis;
  14. white-space: nowrap;
  15. }
  16. .main-title {
  17. font-weight: bold;
  18. color: #111;
  19. font-size: 40rpx;
  20. }
  21. .footer {
  22. position: fixed;
  23. bottom: 0;
  24. width: 100%;
  25. display: flex;
  26. }
  27. .mask {
  28. width: 100%;
  29. height: 100%;
  30. background: #000;
  31. opacity: 0.6;
  32. position: fixed;
  33. top: 0;
  34. left: 0;
  35. z-index: 100;
  36. }
  37. .no-data {
  38. color: #A3A4A5;
  39. text-align: center;
  40. padding-top: 50px;
  41. }
  42. .more {
  43. font-size: 22rpx;
  44. color: #909090;
  45. position: relative;
  46. }
  47. .clearfix {
  48. zoom: 1;
  49. }
  50. .clearfix::after {
  51. content: '';
  52. display: block;
  53. height: 0;
  54. clear: both;
  55. }
  56. .fl {
  57. float: left;
  58. }
  59. .fr {
  60. float: right;
  61. }
  62. .container {
  63. padding: 0 46rpx;
  64. margin-top: 16rpx;
  65. }
  66. .is-iphoneX {
  67. padding-bottom: 50rpx;
  68. }
  69. @import './assets/font/iconfont.wxss'