index.wxss 563 B

12345678910111213141516171819202122232425262728293031323334
  1. /* components/area-picker/index.wxss */
  2. picker {
  3. flex: 1;
  4. padding-right: 40rpx;
  5. overflow: hidden;
  6. position: relative;
  7. width: 350rpx !important;
  8. }
  9. picker .picker {
  10. line-height: 100rpx;
  11. font-size: 28rpx;
  12. text-overflow: ellipsis;
  13. white-space: nowrap;
  14. overflow: hidden;
  15. width: 100% ;
  16. text-align: right;
  17. }
  18. picker::after {
  19. font-family: "cuIcon";
  20. display: block;
  21. content: "\e6a3";
  22. position: absolute;
  23. font-size: 34rpx;
  24. color: var(--grey);
  25. line-height: 100rpx;
  26. width: 60rpx;
  27. text-align: center;
  28. top: 0;
  29. bottom: 0;
  30. right: -20rpx;
  31. margin: auto;
  32. }