index.wxss 659 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. .wrapper {
  2. left: 0;
  3. right: 0;
  4. bottom: 0;
  5. padding: 15rpx;
  6. padding-top: 20px;
  7. position: fixed;
  8. z-index: 20;
  9. background-color: rgba(100,100,100, 1);
  10. border-top-left-radius: 1em;
  11. border-top-right-radius: 1em;
  12. min-height: 100px;
  13. }
  14. .area{
  15. width: 100%;
  16. height: 50px;
  17. padding: 3px;
  18. color: #efefef;
  19. }
  20. .tab{
  21. display: flex;
  22. margin-bottom: 5px;
  23. }
  24. .tab .tab-item{
  25. flex: 1;
  26. padding: 3px 5px;
  27. }
  28. .tab .tab-item .item{
  29. border: 1px solid rgba(80,80,80, 1);
  30. border-radius: 3px;
  31. color: #efefef;
  32. font-size: 14px;
  33. text-align: center;
  34. background-color: rgba(80,80,80, 1);
  35. }
  36. .tab .tab-item .itemborder{
  37. border-color: #fe2a54;
  38. }