| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- .title {
- height: 13vh;
- background: #fff;
- border-bottom: 1.3vh solid #F1F4F7 ;
- position: fixed;
- left: 0;
- top: 0;
- width: 100%;
- box-sizing: border-box;
- padding: 0 30rpx;
- display: flex;
- align-items: center;
- }
- .title>.t_left {
- display: flex;
- align-items: center;
- height: 11.7vh;
-
- }
- .title>.t_left>navigator {
- width: 10px;
- height: 15px;
- margin-right: 30px;
- font-size: 0;
- }
- .title>.t_left>navigator>image {
- width: 10px;
- height: 15px;
- }
- .title>.t_left>text {
- font-size:15px;
- font-weight:800;
- color:rgba(51,51,51,1);
- }
- .t_left>image {
- width: 18px;
- height: 18px;
- margin-left: 10px;
- margin-top: -4px;
- }
- .t_right {
- display: flex;
- font-size:15px;
- font-weight:800;
- color:#3E2115;
- flex: 1;
- justify-content: center;
- }
- .t_right>.tab-item:nth-child(2) {
- margin: 0 100px;
- }
- .ti-active {
- color: #5286FE;
- }
|