49 lines
793 B
Plaintext
49 lines
793 B
Plaintext
|
/* components/topnav/topnav.wxss */
|
||
|
/* .top-bar-bg {
|
||
|
width: 750rpx;
|
||
|
height: 200rpx;
|
||
|
position: fixed;
|
||
|
top: 0;
|
||
|
background: linear-gradient(90deg,rgba(95, 153, 252, 1),rgba(57, 125, 242, 1));
|
||
|
z-index: 100;
|
||
|
} */
|
||
|
.top-bar {
|
||
|
width: 100%;
|
||
|
box-sizing: border-box;
|
||
|
position: fixed;
|
||
|
z-index: 100;
|
||
|
background-color: transparent;
|
||
|
}
|
||
|
|
||
|
.common-back {
|
||
|
padding-left:30rpx;
|
||
|
width: 30rpx;
|
||
|
height: 30rpx;
|
||
|
}
|
||
|
|
||
|
.common-back-icon {
|
||
|
width: 30rpx;
|
||
|
height: 30rpx;
|
||
|
}
|
||
|
|
||
|
.top-bar-title {
|
||
|
padding-left: 30rpx;
|
||
|
font-size: 32rpx;
|
||
|
color: #fff;
|
||
|
}
|
||
|
|
||
|
.flex {
|
||
|
display: -webkit-flex;
|
||
|
display: flex;
|
||
|
}
|
||
|
|
||
|
.flex-justify-spacebetween {
|
||
|
-webkit-justify-content: space-between;
|
||
|
justify-content: space-between;
|
||
|
}
|
||
|
|
||
|
.flex-alignitem-center {
|
||
|
-webkit-align-items: center;
|
||
|
align-items: center;
|
||
|
}
|