common.scss 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. view,image,text,rich-text,progress,button,input,form,label,textarea{
  2. box-sizing: border-box;
  3. margin: 0;
  4. padding: 0;
  5. }
  6. page,
  7. uni-page-body{
  8. box-sizing: border-box;
  9. height: 100%;
  10. background: $bg-color;
  11. padding-bottom: 80rpx;
  12. }
  13. .hidden{
  14. display: flex;
  15. visibility: hidden;
  16. }
  17. .logo-black{
  18. background: url("/static/image/login/logo.png") no-repeat center;
  19. background-size: 100%;
  20. width: 120rpx;
  21. height: 120rpx;
  22. }
  23. .logo-white{
  24. width: 180rpx;
  25. height: 180rpx;
  26. border-radius: 50%;
  27. position: relative;
  28. background: url("/static/image/login/logo-white.png") #000 no-repeat center;
  29. background-size: 60%;
  30. }
  31. .icon{
  32. width: 40rpx;
  33. height: 40rpx;
  34. background-position: center;
  35. background-repeat: no-repeat;
  36. background-size: contain;
  37. &.icon-file{
  38. width: 36rpx;
  39. height: 36rpx;
  40. background-image: url("/static/image/icon/file.png");
  41. }
  42. &.icon-close{
  43. background-image: url("/static/image/icon/close.png");
  44. }
  45. &.icon-copy{
  46. background-image: url("/static/image/icon/copy.png");
  47. }
  48. &.icon-up{
  49. width: 32rpx;
  50. height: 32rpx;
  51. background-image: url("/static/image/icon/up.png");
  52. }
  53. &.icon-down{
  54. width: 32rpx;
  55. height: 32rpx;
  56. background-image: url("/static/image/icon/down.png");
  57. }
  58. &.icon-download{
  59. width: 30rpx;
  60. height: 34rpx;
  61. background-image: url("/static/image/icon/download.png");
  62. }
  63. &.icon-eye{
  64. width: 32rpx;
  65. height: 32rpx;
  66. background-image: url("/static/image/icon/eye.png");
  67. }
  68. &.icon-phone{
  69. background-image: url("/static/image/icon/phone.png");
  70. }
  71. &.icon-wechat{
  72. background-image: url("/static/image/icon/wechat.png");
  73. }
  74. &.icon-float-btn{
  75. width: 100rpx;
  76. height: 100rpx;
  77. background-image: url("/static/image/icon/float-btn.png");
  78. }
  79. }