| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129 |
- * {
- margin: 0;
- padding: 0;
- box-sizing: border-box;
- }
- .App {
- min-width: 1500px;
- min-height: 800px;
- overflow-y: auto;
- }
- .AppM {
- width: 100vw;
- max-width: 500px;
- margin: 0 auto;
- overflow: hidden;
- }
- html {
- height: 100%;
- font-size: 14px;
- user-select: none;
- }
- body {
- font: 1em/1.4 'Microsoft Yahei', 'PingFang SC', 'Avenir', 'Segoe UI', 'Hiragino Sans GB', 'STHeiti', 'Microsoft Sans Serif', 'WenQuanYi Micro Hei', sans-serif;
- height: 100%;
- color: #333;
- }
- a {
- text-decoration: none;
- color: #333;
- outline: none;
- }
- i {
- font-style: normal;
- }
- img {
- max-width: 100%;
- max-height: 100%;
- vertical-align: middle;
- }
- ul {
- list-style: none;
- }
- /*修改提示文字的颜色*/
- /* .ant-input::-webkit-input-placeholder {
- color: rgba(0, 0, 0, 0.6);
- }
- .ant-input:-moz-placeholder {
- color: rgba(0, 0, 0, 0.6);
- }
- .ant-input::-moz-placeholder {
- color: rgba(0, 0, 0, 0.6);
- }
- .ant-input:-ms-input-placeholder {
- color: rgba(0, 0, 0, 0.6);
- } */
- /* .ant-input-affix-wrapper {
- background-color: rgba(255, 255, 255, 0.7000);
- border: none;
- } */
- /*
- .ant-input-affix-wrapper:focus,
- .ant-input-affix-wrapper-focused {
- border-color: transparent;
- }
- .ant-input-affix-wrapper:not(.ant-input-affix-wrapper-disabled):hover {
- border-color: transparent;
- }
- .ant-input {
- background-color: transparent;
- } */
- .ant-pagination-item-active {
- color: #741A1A;
- border: none;
- }
- .ant-pagination-item-active {
- background-color: transparent;
- pointer-events: none;
- }
- .ant-pagination-item-active a {
- color: #741A1A;
- }
- .ant-pagination-item-active:hover a {
- color: #741A1A;
- }
- .ant-pagination-item:hover a {
- color: #741A1A;
- }
- .ant-pagination-prev:hover .ant-pagination-item-link,
- .ant-pagination-next:hover .ant-pagination-item-link {
- color: #741A1A;
- }
- .ant-pagination {
- display: flex;
- align-items: center;
- }
- .ant-pagination-item {
- display: flex;
- align-items: center;
- width: 24px !important;
- height: 24px !important;
- line-height: 24px !important;
- }
- .lodingApp {
- width: 100vw;
- height: 100vh;
- display: flex;
- justify-content: center;
- align-items: center;
- font-size: 30px;
- color: #741A1A;
- }
- /* h5页面的样式调整 */
- #root .nullRightTxtH5 .ifrBox {
- height: calc(100% - 30px);
- }
- #root .nullRightTxtH5 .model_title {
- background-image: none;
- }
- #root .nullRightTxtH5 .rightTxt {
- display: none;
- }
- #root .nullRightTxtH5 .flootBtnBox {
- bottom: 30px;
- }
|