index.scss 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. /* prsx/select/area/index.wxss */
  2. .header {
  3. height: 90rpx;
  4. line-height: 90rpx;
  5. width: 100vw;
  6. text-align: center;
  7. font-size: 28rpx;
  8. font-family: PingFang SC-Bold, PingFang SC;
  9. font-weight: bold;
  10. color: #333333;
  11. border-bottom: 1rpx solid #dddddd;
  12. box-sizing: border-box;
  13. position: fixed;
  14. top: 0;
  15. }
  16. .tab-class {
  17. font-size: 28rpx;
  18. font-family: PingFang SC-Bold, PingFang SC;
  19. font-weight: bold;
  20. color: #999999;
  21. }
  22. .tab-active-class {
  23. font-family: PingFang SC-Bold, PingFang SC;
  24. font-weight: bold !important;
  25. color: #3874F6 !important;
  26. }
  27. .content-item-class {
  28. font-size: 28rpx !important;
  29. font-family: PingFang SC-Regular, PingFang SC !important;
  30. color: #000000;
  31. }
  32. .content-active-class {
  33. color: #3874F6 !important;
  34. }
  35. .footer {
  36. position: fixed;
  37. width: 100vw;
  38. height: 130rpx;
  39. display: flex;
  40. justify-content: center;
  41. align-items: center;
  42. bottom: 0;
  43. background-color: #fff;
  44. z-index: 9;
  45. }
  46. .footer .but {
  47. width: 500rpx;
  48. height: 90rpx;
  49. background: #3874F6;
  50. border-radius: 100rpx;
  51. font-size: 28rpx;
  52. font-family: PingFang SC-Bold, PingFang SC;
  53. font-weight: bold;
  54. color: #FFFFFF;
  55. }