| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- * {
- margin: 0;
- padding: 0;
- box-sizing: border-box;
- }
- 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;
- object-fit: cover;
- }
- ul {
- list-style: none;
- }
- body {
- overflow-y: overlay;
- }
- /* 文本域取消下拉 */
- textarea {
- resize: none !important;
- }
- /* 主题色 */
- :root {
- --themeColor: #9f1927;
- }
- a {
- color: var(--themeColor);
- }
- [hidden] {
- display: none !important;
- }
- /* 兼容360浏览器的下拉框 */
- .ant-select-selector {
- position: relative;
- background-color: #ffffff;
- border: 1px solid #d9d9d9;
- transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
- }
- #root {
- width: 100vw;
- height: 100vh;
- min-width: 1600px;
- min-height: 900px;
- overflow-y: auto;
- /* 按钮的危险颜色 */
- /* antd分页器样式 */
- /* antd图片预览组件 */
- }
- #root .ant-btn-text.ant-btn-dangerous {
- color: var(--themeColor);
- }
- #root .ant-image {
- display: none !important;
- }
- /* 找不到页面 */
- .noFindPage {
- opacity: 0;
- transition: opacity 0.5s;
- }
|