微信小程序
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

3 年前
3 年前
3 年前
3 年前
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. /**app.wxss**/
  2. @import '/style/main.wxss';
  3. @import "./templates/global/global.wxss";
  4. @import "/style/iconfont.wxss";
  5. Page {
  6. font-size: 28rpx;
  7. line-height: 35rpx;
  8. background-color: #F4F4F4;
  9. color: #444;
  10. }
  11. view,
  12. scroll-view,
  13. swiper,
  14. movable-view,
  15. icon,
  16. text,
  17. progress,
  18. button,
  19. checkbox,
  20. form,
  21. input,
  22. label,
  23. picker,
  24. picker-view,
  25. radio,
  26. slider,
  27. switch,
  28. textarea,
  29. navigator,
  30. audio,
  31. image,
  32. video,
  33. map,
  34. canvas,
  35. contact-button {
  36. -webkit-box-sizing: border-box;
  37. box-sizing: border-box;
  38. }
  39. .Al_shenhui_text_color {
  40. color: #8b8686;
  41. }
  42. .singleLinHidenEllipsis
  43. {
  44. overflow: hidden;
  45. text-overflow: ellipsis;
  46. white-space: nowrap;
  47. }
  48. .ns {
  49. width: 100%;
  50. text-align:center;
  51. z-index: 999;
  52. position: fixed;
  53. top: 0;
  54. background: linear-gradient(to right, #429a68, #9ecf67);
  55. }
  56. .ns image{
  57. position: absolute;
  58. left: 3%;
  59. width: 10px;
  60. z-index: 9;
  61. }
  62. .ns text{
  63. position: relative;
  64. top: 30px;
  65. margin-right: 30px;
  66. display: block;
  67. color: #eee;
  68. text-align: center;
  69. width: 100%;
  70. font-size: 16px;
  71. }
  72. .pure_top {
  73. width: 100%;
  74. height: 120px;
  75. position: absolute;
  76. z-index: -1;
  77. overflow: hidden
  78. }
  79. .pure_top::after {
  80. content: '';
  81. width: 140%;
  82. height: 120px;
  83. position: absolute;
  84. left: -20%;
  85. top: 0;
  86. z-index: -1;
  87. border-radius: 0 0 50% 50%;
  88. background: linear-gradient(to right, #2C8E68, #B3DB62);
  89. }