base.css 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. * {
  2. margin: 0;
  3. padding: 0;
  4. box-sizing: border-box;
  5. }
  6. .App {
  7. min-width: 1500px;
  8. min-height: 800px;
  9. overflow-y: auto;
  10. }
  11. .AppM {
  12. width: 100vw;
  13. max-width: 500px;
  14. margin: 0 auto;
  15. overflow: hidden;
  16. }
  17. html {
  18. height: 100%;
  19. font-size: 14px;
  20. user-select: none;
  21. }
  22. body {
  23. font: 1em/1.4 'Microsoft Yahei', 'PingFang SC', 'Avenir', 'Segoe UI', 'Hiragino Sans GB', 'STHeiti', 'Microsoft Sans Serif', 'WenQuanYi Micro Hei', sans-serif;
  24. height: 100%;
  25. color: #333;
  26. }
  27. a {
  28. text-decoration: none;
  29. color: #333;
  30. outline: none;
  31. }
  32. i {
  33. font-style: normal;
  34. }
  35. img {
  36. max-width: 100%;
  37. max-height: 100%;
  38. vertical-align: middle;
  39. }
  40. ul {
  41. list-style: none;
  42. }
  43. /*修改提示文字的颜色*/
  44. /* .ant-input::-webkit-input-placeholder {
  45. color: rgba(0, 0, 0, 0.6);
  46. }
  47. .ant-input:-moz-placeholder {
  48. color: rgba(0, 0, 0, 0.6);
  49. }
  50. .ant-input::-moz-placeholder {
  51. color: rgba(0, 0, 0, 0.6);
  52. }
  53. .ant-input:-ms-input-placeholder {
  54. color: rgba(0, 0, 0, 0.6);
  55. } */
  56. /* .ant-input-affix-wrapper {
  57. background-color: rgba(255, 255, 255, 0.7000);
  58. border: none;
  59. } */
  60. /*
  61. .ant-input-affix-wrapper:focus,
  62. .ant-input-affix-wrapper-focused {
  63. border-color: transparent;
  64. }
  65. .ant-input-affix-wrapper:not(.ant-input-affix-wrapper-disabled):hover {
  66. border-color: transparent;
  67. }
  68. .ant-input {
  69. background-color: transparent;
  70. } */
  71. .ant-pagination-item-active {
  72. color: #741A1A;
  73. border: none;
  74. }
  75. .ant-pagination-item-active {
  76. background-color: transparent;
  77. pointer-events: none;
  78. }
  79. .ant-pagination-item-active a {
  80. color: #741A1A;
  81. }
  82. .ant-pagination-item-active:hover a {
  83. color: #741A1A;
  84. }
  85. .ant-pagination-item:hover a {
  86. color: #741A1A;
  87. }
  88. .ant-pagination-prev:hover .ant-pagination-item-link,
  89. .ant-pagination-next:hover .ant-pagination-item-link {
  90. color: #741A1A;
  91. }
  92. .ant-pagination {
  93. display: flex;
  94. align-items: center;
  95. }
  96. .ant-pagination-item {
  97. display: flex;
  98. align-items: center;
  99. width: 24px !important;
  100. height: 24px !important;
  101. line-height: 24px !important;
  102. }
  103. .lodingApp {
  104. width: 100vw;
  105. height: 100vh;
  106. display: flex;
  107. justify-content: center;
  108. align-items: center;
  109. font-size: 30px;
  110. color: #741A1A;
  111. }
  112. /* h5页面的样式调整 */
  113. #root .nullRightTxtH5 .ifrBox {
  114. height: calc(100% - 30px);
  115. }
  116. #root .nullRightTxtH5 .model_title {
  117. background-image: none;
  118. }
  119. #root .nullRightTxtH5 .rightTxt {
  120. display: none;
  121. }
  122. #root .nullRightTxtH5 .flootBtnBox {
  123. bottom: 30px;
  124. }