问星数据小程序

app.wxss 869B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. /**app.wxss**/
  2. page{
  3. background: #F3F3F3;
  4. }
  5. scroll-view {
  6. box-sizing: border-box;
  7. }
  8. .container {
  9. height: 100%;
  10. width: 100%;
  11. min-height: 100vh;
  12. overflow: hidden;
  13. box-sizing: border-box;
  14. padding-bottom: 40rpx;
  15. background: #ffffff;
  16. }
  17. .echartsDiv{
  18. width: 100%;
  19. height: 560rpx;
  20. position: relative;
  21. background: #fff;
  22. }
  23. view,text {
  24. box-sizing: border-box;
  25. }
  26. .searchPlaceholder{
  27. font-size: 24rpx;
  28. color: #ffffff;
  29. vertical-align: middle;
  30. }
  31. button::after,button::before{
  32. border: none;
  33. height: 0;
  34. }
  35. .desc {
  36. position: fixed;
  37. bottom: 0;
  38. left: 0;
  39. width: 100%;
  40. height: 50rpx;
  41. line-height: 50rpx;
  42. text-align: center;
  43. font-size: 20rpx;
  44. color: #333333;
  45. background: #F3F3F3;
  46. z-index: 999;
  47. }
  48. canvas {
  49. z-index: 1;
  50. }
  51. .goTop {
  52. position: fixed;
  53. bottom: 180rpx;
  54. right: 40rpx;
  55. width: 60rpx;
  56. height: 60rpx;
  57. z-index: 22;
  58. }