beautyPlanList.wxss 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. page {
  2. background: #F9F9F9;
  3. }
  4. .tabs-bgc {
  5. padding: 30rpx 28rpx;
  6. /* background: #FA7D22; */
  7. /* background: linear-gradient(180deg, #FA7D22 0%, rgba(255, 202, 224, 0) 100%); */
  8. }
  9. .tabs-radius {
  10. background: #fff;
  11. opacity: 0.8;
  12. border-radius: 24rpx;
  13. }
  14. .tabs-wrap {
  15. height: 96rpx;
  16. background: #fff;
  17. justify-content: space-around;
  18. }
  19. .tabs-wrap .item {
  20. /* width: 33.33%; */
  21. height: 100%;
  22. font-size: 28rpx;
  23. color: #666666;
  24. position: relative;
  25. }
  26. .tabs-wrap .item.line::before {
  27. content: '';
  28. position: absolute;
  29. right: -80rpx;
  30. top: 26rpx;
  31. width: 2rpx;
  32. height: 44rpx;
  33. background-color: #EEEEEE;
  34. border-radius: 16rpx;
  35. }
  36. .tabs-wrap .item.active {
  37. font-family: PingFangSC-Semibold;
  38. font-size: 28rpx;
  39. color: #333;
  40. /* color: #85DBD8; */
  41. border-bottom: 6rpx solid #FA7D22;
  42. }
  43. .tabs-content .item {
  44. margin: 20rpx 30rpx;
  45. /* background: #fff; */
  46. /* height: 172rpx; */
  47. border-radius: 8rpx;
  48. box-sizing: border-box;
  49. overflow: hidden;
  50. box-shadow: 0px 4rpx 20rpx 0px rgba(0, 0, 0, 0.06);
  51. }
  52. .tabs-content .item .padding {
  53. background-color: #fff;
  54. height: 144rpx;
  55. padding: 18rpx 26rpx;
  56. box-sizing: border-box;
  57. }
  58. .tabs-content .item .line {
  59. height: 100%;
  60. width: 2rpx;
  61. background: #F0F0F0;
  62. border-radius: 24rpx;
  63. margin: 0 30rpx;
  64. }
  65. .tabs-content .item .btn {
  66. width: 122rpx;
  67. height: 70rpx;
  68. background: #FA7D22;
  69. border-radius: 35rpx;
  70. color: #fff;
  71. margin-left: 20rpx;
  72. }