12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- /* components/navbar/index.wxss */
- .navbar {
- width: 100%;
- overflow: hidden;
- position: relative;
- top: 0;
- left: 0;
- z-index: 10;
- background: #ffffff;
- }
- .nav_position {
- position: absolute;
- left: 24rpx;
- bottom: 24rpx;
- z-index: 100;
- color: #FFFFFF;
- display: flex;
- box-sizing: border-box;
- }
- .box {
- flex: auto;
- height: 40rpx;
- }
- .icon_position_image {
- width: 40rpx;
- height: 40rpx;
- }
- .icon_down_img {
- width: 40rpx;
- height: 40rpx;
- }
- .backhome {
- color: #FFFFFF;
- position: absolute;
- height: 40rpx;
- left: 30rpx;
- bottom: 24rpx;
- z-index: 100;
- color: #FFFFFF;
- display: flex;
- box-sizing: border-box;
- }
- .backimage {
- height: 40rpx;
- width: 40rpx;
- vertical-align: middle;
- }
- .navbar-title {
- width: 100%;
- height: 88rpx;
- line-height: 76rpx;
- text-align: center;
- position: absolute;
- bottom: 0;
- left: 0;
- z-index: 10;
- background-color: #ffffff;
- color:#000000;
- font-size: 34rpx;
- font-weight: normal;
- }
- .navbar-action-wrap {
- position: absolute;
- left: 20rpx;
- bottom: 14rpx;
- z-index: 100;
- line-height: 1;
- padding-top: 8rpx;
- padding-bottom: 8rpx;
- }
- .navbar-action-group {
- border: 2rpx solid #e8e8e8;
- border-radius: 40rpx;
- overflow: hidden
- }
- .navbar-action_item {
- padding: 6rpx 0;
- color: #333;
- }
- .navbar-action-group .navbar-action_item {
- border-right: 2rpx solid #e8e8e8;
- padding: 6rpx 24rpx;
- }
|