picker-item.wxss 672 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. .t-float-left {
  2. float: left;
  3. }
  4. .t-float-right {
  5. float: right;
  6. }
  7. @keyframes tdesign-fade-out {
  8. from {
  9. opacity: 1;
  10. }
  11. to {
  12. opacity: 0;
  13. }
  14. }
  15. .hotspot-expanded.relative {
  16. position: relative;
  17. }
  18. .hotspot-expanded::after {
  19. content: '';
  20. display: block;
  21. position: absolute;
  22. left: 0;
  23. top: 0;
  24. right: 0;
  25. bottom: 0;
  26. transform: scale(1.5);
  27. }
  28. :host {
  29. display: flex;
  30. flex: 1;
  31. }
  32. .t-picker-item__group {
  33. height: 400rpx;
  34. overflow: hidden;
  35. flex: 1;
  36. }
  37. .t-picker-item__wrapper {
  38. padding: 160rpx 0;
  39. }
  40. .t-picker-item__item {
  41. display: flex;
  42. align-items: center;
  43. justify-content: center;
  44. height: 80rpx;
  45. line-height: 80rpx;
  46. color: #000;
  47. }