index.less 846 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. @import "../styles/mixins/index.less";
  2. @import "../styles/themes/index.less";
  3. .@{wux-prefix}-result {
  4. padding-top: 0;
  5. text-align: center;
  6. &__bd {
  7. padding: @result-bd-padding;
  8. }
  9. &__icon {
  10. padding-top: 36px;
  11. text-align: center;
  12. }
  13. &__title {
  14. margin-bottom: 5px;
  15. font-weight: 400;
  16. font-size: @result-title-font-size;
  17. }
  18. &__desc {
  19. font-size: @font-size-base;
  20. color: @text-color-secondary;
  21. }
  22. &__buttons {
  23. margin-top: 30px;
  24. }
  25. &__ft {
  26. font-size: @font-size-base;
  27. color: @text-color-secondary;
  28. }
  29. &--fixed &__ft {
  30. position: fixed;
  31. left: 0;
  32. bottom: 0;
  33. width: 100%;
  34. padding: @result-ft-padding;
  35. text-align: center;
  36. box-sizing: border-box;
  37. }
  38. }