123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- .tabbar {
- position: fixed;
- bottom: 0;
- left: 0;
- right: 0;
- height: 120rpx;
- display: flex;
- background: #fff;
- border-radius: 30rpx 30rpx 0rpx 0rpx;
- padding: 12rpx 0 18rpx;
- box-sizing: border-box;
- }
- .tabbar-item {
- flex: 1;
- text-align: center;
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- font-size: 24rpx;
- color: #666666;
- }
- .tabbar-item .icon {
- width: 52rpx;
- height: 52rpx;
- }
- .active {
- color: #FFA100;
- font-weight: 500;
- }
- /* 客服弹框样式 */
- .dialog-box{
- padding: 32rpx;
- display: flex;
- flex-direction: column;
- align-items: center;
- }
- .box-code{
- width: 264rpx;
- height: 264rpx;
- border-radius: 20rpx;
- }
- .box-text{
- font-weight: 400;
- font-size: 24rpx;
- color: #8D8D8D;
- line-height: 34rpx;
- margin-top: 32rpx;
- }
- .confirm-btn{
- width: 100% !important;
- color: #FDA233 !important;
- }
|