select.wxss 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. .com-selectBox{
  2. width: 100%;
  3. }
  4. .com-sContent{
  5. border-bottom: 1rpx solid #e2e2e2;
  6. background: white;
  7. font-size: 26rpx;
  8. position: relative;
  9. height: 90rpx;
  10. line-height: 90rpx;
  11. }
  12. .com-sImg{
  13. position: absolute;
  14. right: 0;
  15. top: 24rpx;
  16. width: 40rpx;
  17. height: 40rpx;
  18. transition: all .3s ease;
  19. }
  20. .com-sTxt{
  21. overflow: hidden;
  22. text-overflow: ellipsis;
  23. white-space: nowrap;
  24. padding:0 40rpx 0 0;
  25. font-size: 42rpx;
  26. color: #2b2b2b;
  27. }
  28. .com-sTxt.noText{
  29. font-size: 26rpx;
  30. color: #848799;
  31. }
  32. .com-sList{
  33. background: white;
  34. width: 660rpx;
  35. position: absolute;
  36. border-bottom: 1rpx dotted #e2e2e2;
  37. /* border-top: none; */
  38. box-sizing: border-box;
  39. z-index: 3;
  40. max-height: 300rpx;
  41. overflow: auto;
  42. }
  43. .com-sItem{
  44. /* left: 15rpx;
  45. right: 15rpx; */
  46. height: 90rpx;
  47. line-height: 90rpx;
  48. border-top: 1rpx solid #e2e2e2;
  49. padding: 0 12rpx;
  50. text-align: left;
  51. overflow: hidden;
  52. text-overflow: ellipsis;
  53. white-space: nowrap;
  54. font-size: 26rpx;
  55. }
  56. .com-sItem:first-child{
  57. border-top: none;
  58. }