salary.wxss 742 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. @import "../../public/page/order-item.wxss";
  2. .bg-view {
  3. width: 200%;
  4. height: 100%;
  5. display: flex;
  6. }
  7. /* tab-view */
  8. .tab-view {
  9. width: 750rpx;
  10. height: 100rpx;
  11. background-color: white;
  12. position: fixed;
  13. top: 0;
  14. display: flex;
  15. flex-direction: column;
  16. }
  17. .tab-view>view:first-child {
  18. width: 100%;
  19. height: 100rpx;
  20. display: flex;
  21. }
  22. .tab-view>view:first-child>view {
  23. font-size: 32rpx;
  24. line-height: 100rpx;
  25. width: 50%;
  26. text-align: center;
  27. }
  28. .tab-view>view:last-child>view {
  29. width: 50%;
  30. height: 4rpx;
  31. display: flex;
  32. }
  33. .tab-view>view:last-child>view>view {
  34. width: 120rpx;
  35. height: 4rpx;
  36. margin: 0 auto;
  37. background-color: #3296FB;
  38. }
  39. .tab-text-s {
  40. color: #3296FB;
  41. }
  42. .tab-text-n {
  43. color: #666666;
  44. }