common-head.scss 656 B

123456789101112131415161718192021222324252627282930313233
  1. .head {
  2. display: flex;
  3. align-items: center;
  4. width: 100vw;
  5. height: 120rpx;
  6. padding: 0 20rpx 0 30rpx;
  7. box-sizing: border-box;
  8. .count {
  9. font-size: 28rpx;
  10. font-family: PingFang SC-Regular, PingFang SC;
  11. color: #333333;
  12. }
  13. .expand {
  14. flex: 1;
  15. display: flex;
  16. justify-content: flex-end;
  17. .but {
  18. display: flex;
  19. align-items: center;
  20. justify-content: center;
  21. width: 80rpx;
  22. height: 80rpx;
  23. background: #FFFFFF;
  24. border-radius: 8rpx;
  25. border: 2rpx solid #CCCCCC;
  26. margin-left: 20rpx;
  27. color: #666666;
  28. }
  29. }
  30. }