fa-dropdown.ttss 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. @charset "UTF-8";
  2. /**
  3. * 下方引入的为uView UI的集成样式文件,为scss预处理器,其中包含了一些"u-"开头的自定义变量
  4. * uView自定义的css类名和scss变量,均以"u-"开头,不会造成冲突,请放心使用
  5. */
  6. .u-dropdown.data-v-70bebccc {
  7. flex: 1;
  8. width: 100%;
  9. position: relative;
  10. }
  11. .u-dropdown__menu.data-v-70bebccc {
  12. display: flex;
  13. flex-direction: row;
  14. position: relative;
  15. z-index: 11;
  16. height: 80rpx;
  17. }
  18. .u-dropdown__menu__item.data-v-70bebccc {
  19. flex: 1;
  20. display: flex;
  21. flex-direction: row;
  22. justify-content: center;
  23. align-items: center;
  24. min-width: 25%;
  25. }
  26. .u-dropdown__menu__item__text.data-v-70bebccc {
  27. font-size: 28rpx;
  28. color: #606266;
  29. }
  30. .u-dropdown__menu__item__arrow.data-v-70bebccc {
  31. margin-left: 6rpx;
  32. transition: -webkit-transform .3s;
  33. transition: transform .3s;
  34. transition: transform .3s, -webkit-transform .3s;
  35. align-items: center;
  36. display: flex;
  37. flex-direction: row;
  38. }
  39. .u-dropdown__menu__item__arrow--rotate.data-v-70bebccc {
  40. -webkit-transform: rotate(180deg);
  41. transform: rotate(180deg);
  42. }
  43. .u-dropdown__content.data-v-70bebccc {
  44. position: absolute;
  45. z-index: 8;
  46. width: 100%;
  47. left: 0px;
  48. bottom: 0;
  49. overflow: hidden;
  50. }
  51. .u-dropdown__content__mask.data-v-70bebccc {
  52. position: absolute;
  53. z-index: 9;
  54. background: rgba(0, 0, 0, 0.3);
  55. width: 100%;
  56. left: 0;
  57. top: 0;
  58. bottom: 0;
  59. }
  60. .u-dropdown__content__popup.data-v-70bebccc {
  61. position: relative;
  62. z-index: 10;
  63. transition: all 0.3s;
  64. -webkit-transform: translate3D(0, -100%, 0);
  65. transform: translate3D(0, -100%, 0);
  66. overflow: hidden;
  67. }