1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- @charset "UTF-8";
- .tn-custom-nav-bar__back.data-v-2c1eab8a {
- width: 60%;
- height: 100%;
- position: relative;
- display: flex;
- justify-content: space-evenly;
- align-items: center;
- box-sizing: border-box;
- border-radius: 1000rpx;
- border: 1rpx solid rgba(255, 255, 255, 0.5);
- font-size: 18px;
- }
- .tn-custom-nav-bar__back .icon.data-v-2c1eab8a {
- display: block;
- flex: 1;
- margin: auto;
- text-align: center;
- }
- .tn-custom-nav-bar__back.data-v-2c1eab8a:before {
- content: " ";
- width: 1rpx;
- height: 110%;
- position: absolute;
- top: 22.5%;
- left: 0;
- right: 0;
- margin: auto;
- -webkit-transform: scale(0.5);
- transform: scale(0.5);
- -webkit-transform-origin: 0 0;
- transform-origin: 0 0;
- pointer-events: none;
- box-sizing: border-box;
- opacity: 0.7;
- background-color: #FFFFFF;
- }
|