index.wxss 878 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. page view {
  2. box-sizing: border-box;
  3. }
  4. .popup-content {
  5. background-color: white;
  6. color: #222427;
  7. border-radius: 20rpx 20rpx 0 0;
  8. overflow: hidden;
  9. }
  10. .popup-content .header {
  11. height: 100rpx;
  12. line-height: 100rpx;
  13. text-align: center;
  14. vertical-align: middle;
  15. font-size: 32rpx;
  16. font-weight: bold;
  17. position: relative;
  18. }
  19. .popup-content .options {
  20. max-height: 60vh;
  21. overflow-y: scroll;
  22. -webkit-overflow-scrolling: touch;
  23. }
  24. .popup-content .options .cell {
  25. height: 100rpx;
  26. align-items: center;
  27. font-size: 30rpx;
  28. color: #333333;
  29. }
  30. .popup-content .button-bar {
  31. width: 100%;
  32. padding: 20rpx 30rpx;
  33. display: flex;
  34. flex-wrap: nowrap;
  35. align-items: center;
  36. justify-content: space-between;
  37. }
  38. .popup-content .button-bar .btn {
  39. width: 100%;
  40. background: #fa4126;
  41. color: #fff;
  42. border-radius: 48rpx;
  43. }
  44. .button-bar .btnWrapper {
  45. width: 100%;
  46. }