title.wxss 858 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. .title {
  2. height: 13vh;
  3. background: #fff;
  4. border-bottom: 1.3vh solid #F1F4F7 ;
  5. position: fixed;
  6. left: 0;
  7. top: 0;
  8. width: 100%;
  9. box-sizing: border-box;
  10. padding: 0 30rpx;
  11. display: flex;
  12. align-items: center;
  13. }
  14. .title>.t_left {
  15. display: flex;
  16. align-items: center;
  17. height: 11.7vh;
  18. }
  19. .title>.t_left>navigator {
  20. width: 10px;
  21. height: 15px;
  22. margin-right: 30px;
  23. font-size: 0;
  24. }
  25. .title>.t_left>navigator>image {
  26. width: 10px;
  27. height: 15px;
  28. }
  29. .title>.t_left>text {
  30. font-size:15px;
  31. font-weight:800;
  32. color:rgba(51,51,51,1);
  33. }
  34. .t_left>image {
  35. width: 18px;
  36. height: 18px;
  37. margin-left: 10px;
  38. margin-top: -4px;
  39. }
  40. .t_right {
  41. display: flex;
  42. font-size:15px;
  43. font-weight:800;
  44. color:#3E2115;
  45. flex: 1;
  46. justify-content: center;
  47. }
  48. .t_right>.tab-item:nth-child(2) {
  49. margin: 0 100px;
  50. }
  51. .ti-active {
  52. color: #5286FE;
  53. }