index.wxss 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. .tabbar {
  2. position: fixed;
  3. bottom: 0;
  4. left: 0;
  5. right: 0;
  6. height: 120rpx;
  7. display: flex;
  8. background: #fff;
  9. border-radius: 30rpx 30rpx 0rpx 0rpx;
  10. padding: 12rpx 0 18rpx;
  11. box-sizing: border-box;
  12. }
  13. .tabbar-item {
  14. flex: 1;
  15. text-align: center;
  16. font-family: PingFangSC, PingFang SC;
  17. font-weight: 400;
  18. font-size: 24rpx;
  19. color: #666666;
  20. }
  21. .tabbar-item .icon {
  22. width: 52rpx;
  23. height: 52rpx;
  24. }
  25. .active {
  26. color: #FFA100;
  27. font-weight: 500;
  28. }
  29. /* 分享样式 */
  30. .share-container {
  31. background: #FFFFFF;
  32. }
  33. .share-options {
  34. display: flex;
  35. justify-content: space-evenly;
  36. margin: 70rpx 0 36rpx;
  37. }
  38. .share-item {
  39. display: inline-flex;
  40. flex-direction: column;
  41. align-items: center;
  42. background: transparent;
  43. border: none;
  44. padding: 0;
  45. margin: 0;
  46. width: 100% !important;
  47. }
  48. .share-icon {
  49. width: 76rpx;
  50. height: 76rpx;
  51. margin-bottom: 20rpx;
  52. }
  53. .share-text {
  54. font-family: PingFangSC, PingFang SC;
  55. font-weight: 400;
  56. font-size: 24rpx;
  57. color: #666666;
  58. line-height: 40rpx;
  59. }
  60. .share-cancel {
  61. margin-bottom: 60rpx;
  62. display: flex;
  63. }
  64. .share-cancel-img{
  65. width: 444rpx;
  66. height: 102rpx;
  67. margin: 0 auto;
  68. }
  69. .btn-hover {
  70. opacity: 0.7;
  71. }
  72. button::after {
  73. border: none;
  74. }