12345678910111213141516171819202122232425262728293031323334 |
- /* components/area-picker/index.wxss */
- picker {
- flex: 1;
- padding-right: 40rpx;
- overflow: hidden;
- position: relative;
- width: 350rpx !important;
- }
- picker .picker {
- line-height: 100rpx;
- font-size: 28rpx;
- text-overflow: ellipsis;
- white-space: nowrap;
- overflow: hidden;
- width: 100% ;
- text-align: right;
- }
- picker::after {
- font-family: "cuIcon";
- display: block;
- content: "\e6a3";
- position: absolute;
- font-size: 34rpx;
- color: var(--grey);
- line-height: 100rpx;
- width: 60rpx;
- text-align: center;
- top: 0;
- bottom: 0;
- right: -20rpx;
- margin: auto;
- }
|