12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- /* components/select/select.wxss */
- .xk-select {
- width: 522rpx;
- }
- .xk-select-content {
- background: white;
- font-size: 28rpx;
- position: relative;
- height: 70rpx;
- line-height: 70rpx;
- border-radius: 4rpx;
- border: 2rpx solid rgba(238, 238, 238, 1);
- }
- .xk-select-icon {
- position: absolute;
- right: 20rpx;
- top: 30rpx;
- width: 16rpx;
- height: 10rpx;
- transform: rotate(180deg);
- }
- .xk-select-icon.down {
- transform: rotate(0deg);
- }
- .xk-select-txt {
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- padding: 0 40rpx 0 20rpx;
- font-size: 28rpx;
- }
- .xk-select-options {
- background: white;
- width: inherit;
- position: absolute;
- border: 2rpx solid #e2e2e2;
- border-top: none;
- box-sizing: border-box;
- z-index: 3;
- max-height: 200rpx;
- overflow: auto;
- }
- .xk-select-options-item {
- height: 60rpx;
- line-height: 60rpx;
- padding: 0 20rpx;
- text-align: left;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- font-size: 28rpx;
- }
|