index.wxss 1000 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. .select_box {
  2. width: 45%;
  3. height: 70%;
  4. border-radius: 14rpx;
  5. position: relative;
  6. }
  7. .select_box .select {
  8. box-sizing: border-box;
  9. width: 100%;
  10. height: 100%;
  11. border-radius: 8rpx;
  12. display: flex;
  13. align-items: center;
  14. padding: 0 10rpx;
  15. }
  16. .select_box .select .select_text {
  17. font-size: 26rpx;
  18. color: #777777;
  19. line-height: 28rpx;
  20. flex: 1;
  21. }
  22. .select_box .select .select_img {
  23. width: 30rpx;
  24. height: 30rpx;
  25. display: block;
  26. transition: transform 0.3s;
  27. }
  28. .select_box .select .select_img_rotate {
  29. transform: rotate(180deg);
  30. }
  31. .select_box .option_box {
  32. position: absolute;
  33. top: calc(100% - 1px);
  34. width: 100%;
  35. box-sizing: border-box;
  36. height: 0;
  37. overflow-y: auto;
  38. background: #fff;
  39. transition: height 0.3s;
  40. border-left: 1px solid #efefef;
  41. border-right: 1px solid #efefef;
  42. }
  43. .select_box .option_box .option {
  44. display: block;
  45. line-height: 30rpx;
  46. font-size: 26rpx;
  47. border-top: 1px solid #efefef;
  48. border-bottom: 1px solid #efefef;
  49. padding: 10rpx;
  50. }