jeeplus.scss 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. .u-block{
  2. padding: 14px;
  3. &__section{
  4. margin-bottom:10px;
  5. }
  6. &__title {
  7. margin-top:10px;
  8. font-size: 15px;
  9. color: $u-content-color;
  10. margin-bottom:10px;
  11. }
  12. &__flex{
  13. /* #ifndef APP-NVUE */
  14. display: flex;
  15. /* #endif */
  16. }
  17. }
  18. // 使用了cell组件的icon图片样式
  19. .u-cell-icon {
  20. width: 36rpx;
  21. height: 36rpx;
  22. margin-right: 8rpx;
  23. }
  24. .u-page {
  25. padding: 15px 15px 40px 15px;
  26. }
  27. .u-demo-block {
  28. flex: 1;
  29. margin-bottom: 23px;
  30. &__content {
  31. @include flex(column);
  32. }
  33. &__title {
  34. font-size: 14px;
  35. color: rgb(143, 156, 162);
  36. margin-bottom: 8px;
  37. @include flex;
  38. }
  39. }
  40. .bg-blue {
  41. background-color: #0081ff !important;
  42. color: #ffffff;
  43. }
  44. .bg-blue_default {
  45. background-color: #36a7f3 !important;
  46. color: #ffffff;
  47. }
  48. .u-form{
  49. padding-top: 25rpx;
  50. padding-left: 30rpx;
  51. padding-right: 30rpx;
  52. }
  53. .padding-xl {
  54. padding: 50upx;
  55. }
  56. .lines-gray {
  57. color: #aaaaaa;
  58. }
  59. .text-sm {
  60. font-size: 22upx;
  61. }
  62. .ellipsis-description {
  63. font-size: 22upx;
  64. display: -webkit-box;/*作为弹性伸缩盒子模型显示*/
  65. -webkit-line-clamp: 1; /*显示的行数;如果要设置2行加...则设置为2*/
  66. overflow: hidden; /*超出的文本隐藏*/
  67. text-overflow: ellipsis; /* 溢出用省略号*/
  68. -webkit-box-orient: vertical;/*伸缩盒子的子元素排列:从上到下*/
  69. }
  70. .text-bold {
  71. font-weight: bold;
  72. }
  73. .text-center {
  74. text-align: center;
  75. }
  76. uni-button.buttonBox {
  77. border-radius: 0 !important;
  78. }
  79. uni-button.buttonBox:after {
  80. border-radius: 0 !important;
  81. }
  82. .bottom-wrap{
  83. position: fixed;
  84. left: 0;
  85. bottom: 0;
  86. width: 100%;
  87. background: rgba(0,0,0,.50);
  88. -webkit-box-shadow: 0 -3px 5px 0 rgba(0,0,0,.12);
  89. box-shadow: 0 -3px 5px 0 rgba(0,0,0,.12);
  90. z-index: 999;
  91. }
  92. .flex {
  93. display: flex;
  94. }
  95. .flex-sub {
  96. flex: 1;
  97. }