jeeplus.scss 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  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. .u-form{
  45. padding-top: 25rpx;
  46. padding-left: 30rpx;
  47. padding-right: 30rpx;
  48. }
  49. .padding-xl {
  50. padding: 50upx;
  51. }
  52. .lines-gray {
  53. color: #aaaaaa;
  54. }
  55. .text-sm {
  56. font-size: 22upx;
  57. }
  58. .ellipsis-description {
  59. font-size: 22upx;
  60. display: -webkit-box;/*作为弹性伸缩盒子模型显示*/
  61. -webkit-line-clamp: 1; /*显示的行数;如果要设置2行加...则设置为2*/
  62. overflow: hidden; /*超出的文本隐藏*/
  63. text-overflow: ellipsis; /* 溢出用省略号*/
  64. -webkit-box-orient: vertical;/*伸缩盒子的子元素排列:从上到下*/
  65. }
  66. .text-bold {
  67. font-weight: bold;
  68. }
  69. .text-center {
  70. text-align: center;
  71. }
  72. uni-button.buttonBox {
  73. border-radius: 0 !important;
  74. }
  75. uni-button.buttonBox:after {
  76. border-radius: 0 !important;
  77. }
  78. .bottom-wrap{
  79. position: fixed;
  80. left: 0;
  81. bottom: 0;
  82. width: 100%;
  83. background: rgba(0,0,0,.50);
  84. -webkit-box-shadow: 0 -3px 5px 0 rgba(0,0,0,.12);
  85. box-shadow: 0 -3px 5px 0 rgba(0,0,0,.12);
  86. z-index: 999;
  87. }
  88. .flex {
  89. display: flex;
  90. }
  91. .flex-sub {
  92. flex: 1;
  93. }