number.wxss 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. /* pages/number/number.wxss */
  2. page{
  3. padding: 0;
  4. background: #F1F4F6;
  5. }
  6. .top{
  7. display: flex;
  8. padding: 40rpx 80rpx 40rpx 40rpx;
  9. background: -webkit-linear-gradient(bottom, #F1F4F6, #73BFFF);
  10. }
  11. .top>image{
  12. width: 30%;
  13. margin-right: 30rpx;
  14. }
  15. .name{
  16. color: #fff;
  17. font-size: 36rpx;
  18. height: 120rpx;
  19. }
  20. .code{
  21. color: #fff;
  22. font-size: 30rpx;
  23. }
  24. .tab{
  25. margin-top: 50rpx;
  26. display: flex;
  27. justify-content: space-between;
  28. padding: 0 20rpx;
  29. }
  30. .tab text{
  31. color: #666;
  32. font-size: 36rpx;
  33. }
  34. .tab .active{
  35. color: #3780CD;
  36. border-bottom: 2px solid #3780CD;
  37. padding-bottom: 20rpx;
  38. }
  39. .today{
  40. width: 90%;
  41. margin: 20rpx auto;
  42. background: #fff;
  43. border-radius: 20rpx;
  44. padding: 0 20rpx;
  45. display: flex;
  46. justify-content: space-between;
  47. box-shadow: 0 0 15px rgba(0, 0, 0, .2)
  48. }
  49. .today view{
  50. font-size: 30rpx;
  51. color: #333;
  52. font-weight: bold;
  53. line-height: 100rpx;
  54. }
  55. .today text{
  56. font-size: 24rpx;
  57. color: #666;
  58. line-height: 100rpx;
  59. }
  60. .tab1{
  61. text-align: center;
  62. border-bottom: 1px solid #DBDBDB;
  63. }
  64. .tab1 view{
  65. display: inline-block;
  66. margin: 0 40rpx;
  67. line-height: 100rpx;
  68. }
  69. .tab1 .active{
  70. color: #3780CD;
  71. border-bottom: 2px solid #3780CD;
  72. }
  73. .content{
  74. padding: 20rpx;
  75. }
  76. .content view{
  77. line-height: 56rpx;
  78. color: #666;
  79. }
  80. .container {
  81. position: relative;
  82. display: flex;
  83. flex-direction: column;
  84. align-items: center;
  85. justify-content: space-between;
  86. box-sizing: border-box;
  87. background: #fff;
  88. margin-bottom: 16rpx;
  89. }
  90. ec-canvas {
  91. width: 100%;
  92. height: 400rpx;
  93. }