index.wxss 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. /* pages/tabber/builds/index.wxss */
  2. page {
  3. width: 750rpx;
  4. min-height: 100vh;
  5. background: #F8F8F8;
  6. }
  7. .contioner {
  8. background: #FFFFFF;
  9. padding: 30rpx;
  10. }
  11. .contioner .input {
  12. width: 690rpx;
  13. height: 80rpx;
  14. background: #F6F6F6;
  15. border-radius: 8rpx;
  16. font-size: 28rpx;
  17. padding: 0 30rpx;
  18. color: #666666;
  19. }
  20. .contioner .input .icon {
  21. width: 36rpx;
  22. height: 36rpx;
  23. }
  24. .contioner .box {
  25. width: 210rpx;
  26. height: 112rpx;
  27. background: #F8F8F8;
  28. border-radius: 8rpx;
  29. flex-direction: column;
  30. }
  31. .contioner .box .tit {
  32. font-size: 40rpx;
  33. color: #333333;
  34. }
  35. .contioner .box .tips {
  36. font-size: 24rpx;
  37. color: #999999;
  38. }
  39. .contioner .le {
  40. font-size: 30rpx;
  41. font-weight: 500;
  42. color: #333333;
  43. }
  44. .contioner .lr {
  45. font-size: 26rpx;
  46. color: #999999;
  47. }
  48. .contioner .list {
  49. padding: 10rpx 0;
  50. flex-wrap: wrap;
  51. }
  52. .contioner .list .item {
  53. flex-direction: column;
  54. width: 20%;
  55. margin-bottom: 40rpx;
  56. }
  57. .contioner .list .item .top {
  58. width: 80rpx;
  59. height: 80rpx;
  60. border: 1rpx solid #CCCCCC;
  61. border-radius: 50%;
  62. line-height: 80rpx;
  63. font-size: 50rpx;
  64. font-weight: 600;
  65. color: #333333;
  66. text-align: center;
  67. }
  68. .contioner .list .item .foot {
  69. font-size: 26rpx;
  70. color: #333333;
  71. }
  72. .contioner .list .item .foot.blue{
  73. color: #4699FF;
  74. }
  75. .contioner .list .item .foot.green{
  76. color: #0F8800;
  77. }