|
|
@@ -0,0 +1,342 @@
|
|
|
+* {
|
|
|
+ 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;
|
|
|
+}
|
|
|
+
|
|
|
+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: #69c790;
|
|
|
+ --themeColor: #042b8f;
|
|
|
+ --themeColor2: #69c690;
|
|
|
+}
|
|
|
+
|
|
|
+/* 找不到页面 */
|
|
|
+.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);
|
|
|
+}
|
|
|
+
|
|
|
+// 气泡框闪烁问题
|
|
|
+.ant-popconfirm {
|
|
|
+ width: 240px;
|
|
|
+}
|
|
|
+
|
|
|
+// 重置antd样式
|
|
|
+#root {
|
|
|
+ // max-width: 500px;
|
|
|
+ margin: 0 auto;
|
|
|
+ width: 100vw;
|
|
|
+ height: 100vh;
|
|
|
+ overflow: auto;
|
|
|
+ overflow-y: overlay;
|
|
|
+
|
|
|
+ & > div {
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+ }
|
|
|
+
|
|
|
+ a {
|
|
|
+ text-decoration: none;
|
|
|
+ color: black;
|
|
|
+ outline: none;
|
|
|
+ }
|
|
|
+
|
|
|
+ // ?的提示
|
|
|
+ .iconHoverTit {
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: center;
|
|
|
+ }
|
|
|
+
|
|
|
+ .iconHoverTitTxt {
|
|
|
+ background-color: var(--themeColor);
|
|
|
+ color: #fff;
|
|
|
+ width: 16px;
|
|
|
+ height: 16px;
|
|
|
+ line-height: 16px;
|
|
|
+ text-align: center;
|
|
|
+ font-size: 12px;
|
|
|
+ border-radius: 50%;
|
|
|
+ }
|
|
|
+
|
|
|
+ // a {
|
|
|
+ // color: var(--themeColor);
|
|
|
+ // }
|
|
|
+
|
|
|
+ /* 普通文字按钮的颜色 */
|
|
|
+ .ant-btn-text {
|
|
|
+ color: var(--themeColor);
|
|
|
+ }
|
|
|
+
|
|
|
+ .ant-btn-text:disabled {
|
|
|
+ cursor: not-allowed;
|
|
|
+ color: rgba(0, 0, 0, 0.25);
|
|
|
+ }
|
|
|
+
|
|
|
+ /* 按钮的危险颜色 */
|
|
|
+ .ant-btn-text.ant-btn-dangerous {
|
|
|
+ color: #ff4d4d;
|
|
|
+ }
|
|
|
+
|
|
|
+ /* antd分页器样式 */
|
|
|
+ // .ant-pagination .ant-pagination-item {
|
|
|
+ // border-radius: 50%;
|
|
|
+ // border: 1px solid #999;
|
|
|
+ // background-color: transparent !important;
|
|
|
+ // }
|
|
|
+
|
|
|
+ // .ant-pagination .ant-pagination-item-active {
|
|
|
+ // background-color: var(--themeColor) !important;
|
|
|
+ // }
|
|
|
+
|
|
|
+ // .ant-pagination .ant-pagination-item-active a {
|
|
|
+ // color: #fff !important;
|
|
|
+ // }
|
|
|
+
|
|
|
+ // .ant-pagination .ant-pagination-item:hover {
|
|
|
+ // background-color: var(--themeColor) !important;
|
|
|
+ // }
|
|
|
+
|
|
|
+ // .ant-pagination .ant-pagination-item:hover a {
|
|
|
+ // color: #fff !important;
|
|
|
+ // }
|
|
|
+
|
|
|
+ // .ant-pagination-prev {
|
|
|
+ // border-radius: 50% !important;
|
|
|
+ // border: 1px solid #999;
|
|
|
+ // }
|
|
|
+
|
|
|
+ // .ant-pagination-prev:hover {
|
|
|
+ // background-color: var(--themeColor);
|
|
|
+ // }
|
|
|
+
|
|
|
+ // .ant-pagination-prev:hover button {
|
|
|
+ // color: #fff;
|
|
|
+ // }
|
|
|
+
|
|
|
+ // .ant-pagination-next {
|
|
|
+ // border-radius: 50% !important;
|
|
|
+ // border: 1px solid #999;
|
|
|
+ // }
|
|
|
+
|
|
|
+ // .ant-pagination-next:hover {
|
|
|
+ // background-color: var(--themeColor);
|
|
|
+ // }
|
|
|
+
|
|
|
+ // .ant-pagination-next:hover button {
|
|
|
+ // color: #fff;
|
|
|
+ // }
|
|
|
+
|
|
|
+ // .ant-pagination-disabled {
|
|
|
+ // border: 1px solid #ccc;
|
|
|
+ // }
|
|
|
+
|
|
|
+ // .ant-pagination-disabled:hover {
|
|
|
+ // background-color: transparent;
|
|
|
+ // }
|
|
|
+
|
|
|
+ /* 表格的图片居中 */
|
|
|
+ .tableImgAuto {
|
|
|
+ display: flex;
|
|
|
+ justify-content: center;
|
|
|
+ }
|
|
|
+
|
|
|
+ /* antd图片预览组件 */
|
|
|
+ .ant-image {
|
|
|
+ display: none;
|
|
|
+ }
|
|
|
+
|
|
|
+ /* antd表格居中 */
|
|
|
+
|
|
|
+ .ant-table-cell {
|
|
|
+ text-align: center !important;
|
|
|
+ }
|
|
|
+
|
|
|
+ // 树型 表格 定制化
|
|
|
+ #A2Table3 {
|
|
|
+ .ant-table-row-expand-icon {
|
|
|
+ background-color: var(--themeColor);
|
|
|
+ color: #fff;
|
|
|
+ }
|
|
|
+
|
|
|
+ .ant-table-cell-with-append {
|
|
|
+ display: flex;
|
|
|
+ justify-content: flex-start;
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+[hidden] {
|
|
|
+ display: none !important;
|
|
|
+}
|
|
|
+
|
|
|
+#upInput {
|
|
|
+ display: none;
|
|
|
+}
|
|
|
+
|
|
|
+#upInput2 {
|
|
|
+ display: none;
|
|
|
+}
|
|
|
+
|
|
|
+#upInputAudio {
|
|
|
+ display: none;
|
|
|
+}
|
|
|
+
|
|
|
+// 页面标题
|
|
|
+.pageTitle {
|
|
|
+ font-size: 18px;
|
|
|
+ font-weight: 700;
|
|
|
+ position: absolute;
|
|
|
+ z-index: 11;
|
|
|
+ top: -56px;
|
|
|
+ left: -18px;
|
|
|
+ padding-left: 40px;
|
|
|
+
|
|
|
+ &::before {
|
|
|
+ position: absolute;
|
|
|
+ left: 20px;
|
|
|
+ top: 50%;
|
|
|
+ transform: translateY(-50%);
|
|
|
+ content: '';
|
|
|
+ width: 6px;
|
|
|
+ height: 20px;
|
|
|
+ background-color: var(--themeColor);
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+// 滚动条
|
|
|
+.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;
|
|
|
+}
|
|
|
+.ant-image-preview-operations {
|
|
|
+ background-color: rgba(0, 0, 0, 0.8) !important;
|
|
|
+}
|
|
|
+.ant-image-preview-mask {
|
|
|
+ z-index: 9999 !important;
|
|
|
+}
|
|
|
+.ant-image-preview-wrap {
|
|
|
+ z-index: 9999 !important;
|
|
|
+}
|
|
|
+.ant-image-preview-operations-wrapper {
|
|
|
+ z-index: 9999 !important;
|
|
|
+}
|
|
|
+
|
|
|
+.ant-notification-notice {
|
|
|
+ max-height: 500px !important;
|
|
|
+ overflow-y: auto !important;
|
|
|
+}
|
|
|
+
|
|
|
+// 多日期选择器居中 挡住 按钮(即必须失焦才能点击确定)
|
|
|
+.ant-picker-dropdown {
|
|
|
+ text-align: center;
|
|
|
+}
|
|
|
+.ant-picker-selection-item-remove {
|
|
|
+ display: none !important;
|
|
|
+}
|
|
|
+// .ant-picker-year-btn,
|
|
|
+// .ant-picker-header-super-prev-btn,
|
|
|
+// .ant-picker-header-super-next-btn {
|
|
|
+// display: none;
|
|
|
+// }
|
|
|
+
|
|
|
+// 横屏 竖屏的切换
|
|
|
+#ScreenChange {
|
|
|
+ position: fixed;
|
|
|
+ top: 0;
|
|
|
+ left: 0;
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+ z-index: 10000;
|
|
|
+ background-color: rgba(0, 0, 0, 0.8);
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ justify-content: center;
|
|
|
+ align-items: center;
|
|
|
+ opacity: 0;
|
|
|
+ pointer-events: none;
|
|
|
+ transition: all 0.5s;
|
|
|
+
|
|
|
+ & > img {
|
|
|
+ width: 200px;
|
|
|
+ }
|
|
|
+
|
|
|
+ & > p {
|
|
|
+ margin-top: 20px;
|
|
|
+ color: #fff;
|
|
|
+ font-size: 18px;
|
|
|
+ height: 40px;
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+/*横屏*/
|
|
|
+@media screen and (orientation: landscape) {
|
|
|
+ #ScreenChange {
|
|
|
+ opacity: 1;
|
|
|
+ pointer-events: auto;
|
|
|
+ }
|
|
|
+}
|