123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- .com-selectBox{
- width: 100%;
- }
- .com-sContent{
- border-bottom: 1rpx solid #e2e2e2;
- background: white;
- font-size: 26rpx;
- position: relative;
- height: 90rpx;
- line-height: 90rpx;
- }
- .com-sImg{
- position: absolute;
- right: 0;
- top: 24rpx;
- width: 40rpx;
- height: 40rpx;
- transition: all .3s ease;
- }
- .com-sTxt{
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- padding:0 40rpx 0 0;
- font-size: 42rpx;
- color: #2b2b2b;
- }
- .com-sTxt.noText{
- font-size: 26rpx;
- color: #848799;
- }
- .com-sList{
- background: white;
- width: 660rpx;
- position: absolute;
- border-bottom: 1rpx dotted #e2e2e2;
- /* border-top: none; */
- box-sizing: border-box;
- z-index: 3;
- max-height: 300rpx;
- overflow: auto;
- }
- .com-sItem{
- /* left: 15rpx;
- right: 15rpx; */
- height: 90rpx;
- line-height: 90rpx;
- border-top: 1rpx solid #e2e2e2;
- padding: 0 12rpx;
- text-align: left;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- font-size: 26rpx;
- }
- .com-sItem:first-child{
- border-top: none;
- }
|