index.wxss 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. .block-line>view {
  2. width: 50%;
  3. text-align: center;
  4. color: #fff;
  5. height: 220rpx;
  6. }
  7. .block-line:first-child>view:first-child {
  8. background: #27ae60;
  9. }
  10. .block-line:first-child>view:last-child {
  11. background: #27ae60;
  12. }
  13. .block-line:last-child>view:first-child {
  14. background: #e67e22;
  15. }
  16. .block-line:last-child>view:last-child {
  17. background: #2980b9;
  18. }
  19. .block-line>view>view:first-child {
  20. margin-top: 40rpx;
  21. margin-bottom: 30rpx;
  22. }
  23. .search {
  24. border: 1rpx solid grey;
  25. width: 80%;
  26. background: #fff;
  27. }
  28. .tabs {
  29. width: 100%;
  30. height: 100rpx;
  31. background: #fff;
  32. box-shadow: rgb(209, 206, 206) 5rpx 5rpx 10rpx
  33. }
  34. .tabs>view {
  35. width: 100rpx;
  36. height: 60rpx;
  37. }
  38. .tools {
  39. height: calc(100vh - 480rpx);
  40. }
  41. .tools>view {
  42. height: 50%;
  43. }
  44. .tools>view>view {
  45. width: 50vw;
  46. text-align: center;
  47. }
  48. .tools>view>view>image {
  49. width: 25vw;
  50. height: 25vw;
  51. margin-top: 20%;
  52. }
  53. .go-to {
  54. position: relative;
  55. }
  56. .badge {
  57. position: absolute;
  58. width: 50rpx;
  59. height: 50rpx;
  60. text-align: center;
  61. line-height: 50rpx;
  62. background: #f86065;
  63. border-radius: 25rpx;
  64. color: #fff;
  65. font-size: 30rpx;
  66. top: 12vw;
  67. right: 12vw;
  68. }