12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- /* component/statusBar/statusBar.wxss */
- .flex_center {
- position: fixed;
- width: 100%;
- top: 0;
- left: 0;
- height: 91rpx;
- background: #12C962;
- z-index: 999;
- display: flex;
- }
- .custom .iconv {
- max-width: 150rpx;
- min-width: 80rpx;
- text-align: center;
- display: flex;
- border-radius: 60rpx;
- margin: 12rpx 10rpx;
- justify-content: space-around;
- align-items: center;
- padding: 0 10rpx;
- }
- .custom .iconv .back{
- width: 17rpx;
- height: 30rpx;
- }
- .custom .iconv .text {
- color: #fff;
- font-size: 30rpx;
- margin-right: 12rpx;
- }
- .custom .iconv .arrow {
- margin-top: -11rpx;
- width: 19rpx;
- height: 19rpx;
- border-right: solid 2rpx #fff;
- border-bottom: solid 2rpx #fff;
- transform: rotate(45deg);
- }
- .custom .title {
- color: #fff;
- font-size: 36rpx;
- font-weight: 400;
- min-width: 350rpx;
- max-width: 420rpx;
- line-height: 45px;
- text-align: center;
- text-overflow: ellipsis;
- overflow: hidden;
- white-space: nowrap;
- }
- .custom .titlev {
- color: #333;
- font-size: 34rpx;
- font-weight: 500;
- width: 500rpx;
- line-height: 45px;
- text-align: center;
- text-overflow: ellipsis;
- overflow: hidden;
- white-space: nowrap;
- margin-left: 50rpx;
- }
- .empty_custom {
- height: 46px;
- width: 100%;
- background: #12C962;
- }
|