app.wxss 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. /**app.wxss**/
  2. .container {
  3. font-family:"Microsoft Yahei",Tahoma,Arial,Helvetica,STHeiti;
  4. display: flex;
  5. flex-direction: column;
  6. justify-content: space-between;
  7. box-sizing: border-box;
  8. }
  9. page {
  10. background-color: #e2e2e2;
  11. }
  12. .no_border{
  13. border:0px none;
  14. }
  15. .clearfix{
  16. clear:both;
  17. zoom: 1;
  18. }
  19. .clearfix:after {
  20. content: "";
  21. height: 0;
  22. display: block;
  23. overflow: hidden;
  24. clear: both;
  25. }
  26. .navigator-hover{
  27. background-color: transparent;
  28. opacity: 1;
  29. }
  30. /* button - share */
  31. button[plain] {
  32. color:#353535;
  33. border:0px none;
  34. background-color:transparent;
  35. }
  36. /* 提示弹窗 */
  37. .modal_wrap{
  38. position: fixed;
  39. top:0;
  40. left:0;
  41. z-index: 999999;
  42. width: 100%;
  43. height: 100%;
  44. display: flex;
  45. justify-content: center;
  46. align-items: center;
  47. }
  48. .modal{
  49. max-width: 600rpx;
  50. font-size: 28rpx;
  51. color:#fff;
  52. padding:15rpx 20rpx;
  53. background-color: rgba(0,0,0,0.6);
  54. }
  55. .hidden{
  56. display: none;
  57. }
  58. .modal_bg{
  59. width: 100%;
  60. height: 100%;
  61. position: fixed;
  62. top:0;
  63. left:0;
  64. z-index: 11;
  65. background-color: rgba(0,0,0,0.5);
  66. }
  67. .loading{
  68. text-align: center;
  69. font-size: 30rpx;
  70. line-height: 60rpx;
  71. color: #c8c8c8;
  72. }
  73. /* 返回首页 */
  74. .back_btn{
  75. position: fixed;
  76. right: 22rpx;
  77. bottom:118rpx ;
  78. z-index: 20;
  79. }
  80. .back_btn_hidden{
  81. display: none;
  82. }
  83. .back_btn_icon{
  84. display: block;
  85. width: 80rpx;
  86. height: 80rpx;
  87. }
  88. button.form_button{
  89. background-color: transparent;
  90. padding: 0;
  91. margin: 0;
  92. display: inline;
  93. position: static;
  94. border: 0;
  95. font-size:0;
  96. color:transparent;
  97. }
  98. button.form_button::after{
  99. content:'';
  100. width:0;
  101. height: 0;
  102. -webkit-transform:scale(1);
  103. transform:scale(1);
  104. display:none;
  105. background-color:transparent;
  106. }
  107. /* 定制的公共样式 */
  108. @import './style/customized.wxss'