demo.scss 634 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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. .mypopup {
  25. }
  26. .w-full {
  27. width: 100%;
  28. }
  29. .u-page {
  30. padding: 15px 15px 40px 15px;
  31. }
  32. .u-demo-block {
  33. flex: 1;
  34. margin-bottom: 23px;
  35. &__content {
  36. @include flex(column);
  37. }
  38. &__title {
  39. font-size: 14px;
  40. color: rgb(143, 156, 162);
  41. margin-bottom: 8px;
  42. @include flex;
  43. }
  44. }