index.wxss 849 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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. .dialog-box{
  31. padding: 32rpx;
  32. display: flex;
  33. flex-direction: column;
  34. align-items: center;
  35. }
  36. .box-code{
  37. width: 264rpx;
  38. height: 264rpx;
  39. border-radius: 20rpx;
  40. }
  41. .box-text{
  42. font-weight: 400;
  43. font-size: 24rpx;
  44. color: #8D8D8D;
  45. line-height: 34rpx;
  46. margin-top: 32rpx;
  47. }
  48. .confirm-btn{
  49. width: 100% !important;
  50. color: #FDA233 !important;
  51. }