|
@@ -0,0 +1,200 @@
|
|
|
+* {
|
|
|
+ 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: black;
|
|
|
+}
|
|
|
+a {
|
|
|
+ text-decoration: none;
|
|
|
+ color: black;
|
|
|
+ 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: auto;
|
|
|
+ overflow-y: overlay;
|
|
|
+}
|
|
|
+/* 文本域取消下拉 */
|
|
|
+textarea {
|
|
|
+ resize: none !important;
|
|
|
+ min-height: 100px !important;
|
|
|
+}
|
|
|
+/* 主题色 */
|
|
|
+:root {
|
|
|
+ --themeColor: rgb(185, 12, 12);
|
|
|
+}
|
|
|
+/* 找不到页面 */
|
|
|
+.noFindPage {
|
|
|
+ opacity: 0;
|
|
|
+ transition: opacity 0.5s;
|
|
|
+}
|
|
|
+/* 兼容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: auto;
|
|
|
+ overflow-y: overlay;
|
|
|
+ /* 普通文字按钮的颜色 */
|
|
|
+ /* 按钮的危险颜色 */
|
|
|
+ /* antd分页器样式 */
|
|
|
+ /* 表格的图片居中 */
|
|
|
+ /* antd图片预览组件 */
|
|
|
+ /* antd表格居中 */
|
|
|
+}
|
|
|
+#root .ant-btn-text {
|
|
|
+ color: var(--themeColor);
|
|
|
+}
|
|
|
+#root .ant-btn-text:disabled {
|
|
|
+ cursor: not-allowed;
|
|
|
+ color: rgba(0, 0, 0, 0.25);
|
|
|
+}
|
|
|
+#root .ant-btn-text.ant-btn-dangerous {
|
|
|
+ color: #ff4d4d;
|
|
|
+}
|
|
|
+#root .ant-pagination {
|
|
|
+ margin: 40px 0;
|
|
|
+}
|
|
|
+#root .ant-pagination .ant-pagination-item {
|
|
|
+ border-radius: 50%;
|
|
|
+ border: 1px solid #999;
|
|
|
+ background-color: transparent !important;
|
|
|
+}
|
|
|
+#root .ant-pagination .ant-pagination-item-active {
|
|
|
+ background-color: var(--themeColor) !important;
|
|
|
+}
|
|
|
+#root .ant-pagination .ant-pagination-item-active a {
|
|
|
+ color: #fff !important;
|
|
|
+}
|
|
|
+#root .ant-pagination .ant-pagination-item:hover {
|
|
|
+ background-color: var(--themeColor) !important;
|
|
|
+}
|
|
|
+#root .ant-pagination .ant-pagination-item:hover a {
|
|
|
+ color: #fff !important;
|
|
|
+}
|
|
|
+#root .ant-pagination-prev {
|
|
|
+ border-radius: 50% !important;
|
|
|
+ border: 1px solid #999;
|
|
|
+}
|
|
|
+#root .ant-pagination-prev:hover {
|
|
|
+ background-color: var(--themeColor);
|
|
|
+}
|
|
|
+#root .ant-pagination-prev:hover button {
|
|
|
+ color: #fff;
|
|
|
+}
|
|
|
+#root .ant-pagination-next {
|
|
|
+ border-radius: 50% !important;
|
|
|
+ border: 1px solid #999;
|
|
|
+}
|
|
|
+#root .ant-pagination-next:hover {
|
|
|
+ background-color: var(--themeColor);
|
|
|
+}
|
|
|
+#root .ant-pagination-next:hover button {
|
|
|
+ color: #fff;
|
|
|
+}
|
|
|
+#root .ant-pagination-disabled {
|
|
|
+ border: 1px solid #ccc;
|
|
|
+}
|
|
|
+#root .ant-pagination-disabled:hover {
|
|
|
+ background-color: transparent;
|
|
|
+}
|
|
|
+#root .tableImgAuto {
|
|
|
+ display: flex;
|
|
|
+ justify-content: center;
|
|
|
+}
|
|
|
+#root .ant-image {
|
|
|
+ display: none;
|
|
|
+}
|
|
|
+#root .ant-table-cell {
|
|
|
+ text-align: center !important;
|
|
|
+}
|
|
|
+#root .ant-table {
|
|
|
+ border-radius: 0;
|
|
|
+ /* background: red; */
|
|
|
+ border: 1px solid rgb(226, 224, 224);
|
|
|
+
|
|
|
+ .ant-table-header {
|
|
|
+ border-radius: 0;
|
|
|
+ }
|
|
|
+ .ant-table-bordered {
|
|
|
+ >.ant-table-container {
|
|
|
+ border: none;
|
|
|
+ border-radius: 0;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ #root .ant-table-wrapper >table {
|
|
|
+ border-radius: 0;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+}
|
|
|
+[hidden] {
|
|
|
+ display: none !important;
|
|
|
+}
|
|
|
+#upInput {
|
|
|
+ display: none;
|
|
|
+}
|
|
|
+#upInput2 {
|
|
|
+ display: none;
|
|
|
+}
|
|
|
+.pageTitle {
|
|
|
+ font-size: 18px;
|
|
|
+ font-weight: 700;
|
|
|
+ color: var(--themeColor);
|
|
|
+ margin-bottom: 10px;
|
|
|
+}
|
|
|
+.pageTitle::before {
|
|
|
+ content: '';
|
|
|
+ width: 3px;
|
|
|
+ height: 19px;
|
|
|
+ background-color: var(--themeColor);
|
|
|
+ display: inline-table;
|
|
|
+ margin-right: 5px;
|
|
|
+ vertical-align: middle;
|
|
|
+ margin-bottom: 3px;
|
|
|
+}
|
|
|
+.mySorrl::-webkit-scrollbar {
|
|
|
+ /*滚动条整体样式*/
|
|
|
+ width: 5px;
|
|
|
+ /*高宽分别对应横竖滚动条的尺寸*/
|
|
|
+ height: 1px;
|
|
|
+}
|
|
|
+.mySorrl::-webkit-scrollbar-thumb {
|
|
|
+ /*滚动条里面小方块*/
|
|
|
+ border-radius: 10px;
|
|
|
+ -webkit-box-shadow: inset 0 0 5px transparent;
|
|
|
+ background: var(--themeColor);
|
|
|
+}
|
|
|
+.mySorrl::-webkit-scrollbar-track {
|
|
|
+ /*滚动条里面轨道*/
|
|
|
+ -webkit-box-shadow: inset 0 0 5px transparent;
|
|
|
+ border-radius: 10px;
|
|
|
+ background: transparent;
|
|
|
+}
|