|
@@ -1,332 +1,397 @@
|
|
|
// public
|
|
|
-/* flex */
|
|
|
-.public-flex {
|
|
|
- display: flex;
|
|
|
- align-items: center;
|
|
|
- }
|
|
|
-
|
|
|
- .public-flex-around {
|
|
|
- display: flex;
|
|
|
- align-items: center;
|
|
|
- justify-content: space-around;
|
|
|
- }
|
|
|
-
|
|
|
- .public-flex-center {
|
|
|
+// 搜索区域
|
|
|
+.searchCollapse {
|
|
|
+ border-top: none !important;
|
|
|
+ border-bottom: none !important;
|
|
|
+
|
|
|
+ .el-collapse-item__header {
|
|
|
+ line-height: 30px !important;
|
|
|
+ border-bottom: none !important;
|
|
|
+ }
|
|
|
+
|
|
|
+ .el-collapse-item__wrap {
|
|
|
+ border-bottom: none !important;
|
|
|
+ }
|
|
|
+
|
|
|
+ .is-active>.el-collapse-item__wrap {
|
|
|
+ overflow: visible !important;
|
|
|
+ transition: overflow 0.3s;
|
|
|
+ }
|
|
|
+
|
|
|
+ .el-icon-arrow-right:before {
|
|
|
+ content: "\e6df";
|
|
|
+ }
|
|
|
+
|
|
|
+ .el-collapse-item__arrow {
|
|
|
+ position: absolute;
|
|
|
+ top: 20px;
|
|
|
+ right: 20px;
|
|
|
+ width: 30px;
|
|
|
+ height: 30px;
|
|
|
+ background: #42b983;
|
|
|
+ border-radius: 50%;
|
|
|
+ overflow: hidden;
|
|
|
display: flex;
|
|
|
align-items: center;
|
|
|
justify-content: center;
|
|
|
+ color: #fff;
|
|
|
+ font-size: 14px;
|
|
|
+ font-weight: 900;
|
|
|
}
|
|
|
-
|
|
|
- .public-flex-between {
|
|
|
- display: flex;
|
|
|
- align-items: center;
|
|
|
- justify-content: space-between;
|
|
|
- }
|
|
|
-
|
|
|
- .public-flex-end {
|
|
|
- display: flex;
|
|
|
- align-items: center;
|
|
|
- justify-content: flex-end;
|
|
|
- }
|
|
|
-
|
|
|
- .public-flex-column {
|
|
|
- display: flex;
|
|
|
- flex-direction: column;
|
|
|
- justify-content: center;
|
|
|
- }
|
|
|
-
|
|
|
- .public-flex-around-column {
|
|
|
- display: flex;
|
|
|
- justify-content: space-around;
|
|
|
- flex-direction: column;
|
|
|
- }
|
|
|
-
|
|
|
- .public-flex-between-column {
|
|
|
- display: flex;
|
|
|
- justify-content: space-between;
|
|
|
- flex-direction: column;
|
|
|
- }
|
|
|
-
|
|
|
- .public-flex-center-column {
|
|
|
- display: flex;
|
|
|
- justify-content: center;
|
|
|
- flex-direction: column;
|
|
|
- align-items: center;
|
|
|
- }
|
|
|
-
|
|
|
- .flex {
|
|
|
- flex: 1;
|
|
|
- }
|
|
|
-
|
|
|
- .public-color {
|
|
|
- color: #e85298;
|
|
|
- }
|
|
|
-
|
|
|
- .white {
|
|
|
- color: #fff !important;
|
|
|
- }
|
|
|
-
|
|
|
- .public-font-size-12 {
|
|
|
- font-size: 12px !important;
|
|
|
- }
|
|
|
-
|
|
|
- .public-font-size-14 {
|
|
|
- font-size: 14px !important;
|
|
|
- }
|
|
|
-
|
|
|
- .public-font-size-15 {
|
|
|
- font-size: 15px !important;
|
|
|
- }
|
|
|
-
|
|
|
- .public-font-size-16 {
|
|
|
- font-size: 16px !important;
|
|
|
- }
|
|
|
-
|
|
|
- .public-font-size-17 {
|
|
|
- font-size: 17px !important;
|
|
|
- }
|
|
|
-
|
|
|
- .public-font-size-18 {
|
|
|
- font-size: 18px !important;
|
|
|
- }
|
|
|
-
|
|
|
- .public-font-size-20 {
|
|
|
- font-size: 20px !important;
|
|
|
- }
|
|
|
-
|
|
|
- .public-font-size-22 {
|
|
|
- font-size: 22px !important;
|
|
|
- }
|
|
|
-
|
|
|
- .public-font-size-24 {
|
|
|
- font-size: 24px !important;
|
|
|
- }
|
|
|
-
|
|
|
- /* 边距 */
|
|
|
- /*内外边距类*/
|
|
|
- .public-padded-0 {
|
|
|
- padding: 0 !important;
|
|
|
- }
|
|
|
-
|
|
|
- .public-padded-5 {
|
|
|
- padding: 5px !important;
|
|
|
- }
|
|
|
-
|
|
|
- .public-padded-10 {
|
|
|
- padding: 10px !important;
|
|
|
- }
|
|
|
-
|
|
|
- .public-padded-15 {
|
|
|
- padding: 15px !important;
|
|
|
- }
|
|
|
- .public-padded-20 {
|
|
|
- padding: 20px !important;
|
|
|
- }
|
|
|
- .public-padded-30 {
|
|
|
- padding: 30px !important;
|
|
|
- }
|
|
|
-
|
|
|
- .public-padded-t-0 {
|
|
|
- padding-top: 0 !important;
|
|
|
- }
|
|
|
-
|
|
|
- .public-padded-t-5 {
|
|
|
- padding-top: 5px !important;
|
|
|
- }
|
|
|
-
|
|
|
- .public-padded-t-10 {
|
|
|
- padding-top: 10px !important;
|
|
|
- }
|
|
|
-
|
|
|
- .public-padded-t-15 {
|
|
|
- padding-top: 15px !important;
|
|
|
- }
|
|
|
- .public-padded-t-20 {
|
|
|
- padding-top: 20px !important;
|
|
|
- }
|
|
|
- .public-padded-b-0 {
|
|
|
- padding-bottom: 0 !important;
|
|
|
- }
|
|
|
-
|
|
|
- .public-padded-b-5 {
|
|
|
- padding-bottom: 5px !important;
|
|
|
- }
|
|
|
-
|
|
|
- .public-padded-b-10 {
|
|
|
- padding-bottom: 10px !important;
|
|
|
+
|
|
|
+ .el-collapse-item__arrow.is-active {
|
|
|
+ transform: rotate(180deg);
|
|
|
}
|
|
|
-
|
|
|
- .public-padded-b-15 {
|
|
|
- padding-bottom: 15px !important;
|
|
|
- }
|
|
|
- .public-padded-b-20 {
|
|
|
- padding-bottom: 20px !important;
|
|
|
- }
|
|
|
- .public-padded-b-30 {
|
|
|
- padding-bottom: 30px !important;
|
|
|
- }
|
|
|
-
|
|
|
- .public-padded-l-0 {
|
|
|
- padding-left: 0 !important;
|
|
|
- }
|
|
|
-
|
|
|
- .public-padded-l-5 {
|
|
|
- padding-left: 5px !important;
|
|
|
- }
|
|
|
-
|
|
|
- .public-padded-l-10 {
|
|
|
- padding-left: 10px !important;
|
|
|
- }
|
|
|
-
|
|
|
- .public-padded-l-15 {
|
|
|
- padding-left: 15px !important;
|
|
|
- }
|
|
|
- .public-padded-l-20 {
|
|
|
- padding-left: 20px !important;
|
|
|
- }
|
|
|
- .public-padded-l-30 {
|
|
|
- padding-left: 30px !important;
|
|
|
- }
|
|
|
-
|
|
|
- .public-padded-r-0 {
|
|
|
- padding-right: 0 !important;
|
|
|
- }
|
|
|
-
|
|
|
- .public-padded-r-5 {
|
|
|
- padding-right: 5px !important;
|
|
|
- }
|
|
|
-
|
|
|
- .public-padded-r-10 {
|
|
|
- padding-right: 10px !important;
|
|
|
- }
|
|
|
-
|
|
|
- .public-padded-r-15 {
|
|
|
- padding-right: 15px !important;
|
|
|
- }
|
|
|
- .public-padded-r-20 {
|
|
|
- padding-right: 20px !important;
|
|
|
- }
|
|
|
- .public-padded-r-30 {
|
|
|
- padding-right: 30px !important;
|
|
|
- }
|
|
|
-
|
|
|
- .public-margin-0 {
|
|
|
- margin: 0 !important;
|
|
|
- }
|
|
|
-
|
|
|
- .public-margin-5 {
|
|
|
- margin: 5px !important;
|
|
|
- }
|
|
|
-
|
|
|
- .public-margin-10 {
|
|
|
- margin: 10px !important;
|
|
|
- }
|
|
|
-
|
|
|
- .public-margin-15 {
|
|
|
- margin: 15px !important;
|
|
|
- }
|
|
|
- .public-margin-20 {
|
|
|
- margin: 20px !important;
|
|
|
- }
|
|
|
- .public-margin-30 {
|
|
|
- margin: 30px !important;
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
- .public-margin-t-0 {
|
|
|
- margin-top: 0px !important;
|
|
|
- }
|
|
|
-
|
|
|
- .public-margin-t-5 {
|
|
|
- margin-top: 5px !important;
|
|
|
- }
|
|
|
-
|
|
|
- .public-margin-t-10 {
|
|
|
- margin-top: 10px !important;
|
|
|
- }
|
|
|
-
|
|
|
- .public-margin-t-15 {
|
|
|
- margin-top: 15px !important;
|
|
|
- }
|
|
|
- .public-margin-t-20 {
|
|
|
- margin-top: 20px !important;
|
|
|
- }
|
|
|
- .public-margin-t-30 {
|
|
|
- margin-top: 30px !important;
|
|
|
- }
|
|
|
-
|
|
|
- .public-margin-b-0 {
|
|
|
- margin-bottom: 0 !important;
|
|
|
- }
|
|
|
-
|
|
|
- .public-margin-b-5 {
|
|
|
- margin-bottom: 5px !important;
|
|
|
- }
|
|
|
-
|
|
|
- .public-margin-b-10 {
|
|
|
- margin-bottom: 10px !important;
|
|
|
- }
|
|
|
-
|
|
|
- .public-margin-b-15 {
|
|
|
- margin-bottom: 15px !important;
|
|
|
- }
|
|
|
- .public-margin-b-20 {
|
|
|
- margin-bottom: 20px !important;
|
|
|
- }
|
|
|
- .public-margin-b-30 {
|
|
|
- margin-bottom: 30px !important;
|
|
|
- }
|
|
|
- .public-margin-l-0 {
|
|
|
- margin-left: 0 !important;
|
|
|
- }
|
|
|
-
|
|
|
- .public-margin-l-5 {
|
|
|
- margin-left: 5px !important;
|
|
|
- }
|
|
|
-
|
|
|
- .public-margin-l-10 {
|
|
|
- margin-left: 10px !important;
|
|
|
- }
|
|
|
-
|
|
|
- .public-margin-l-15 {
|
|
|
- margin-left: 15px !important;
|
|
|
- }
|
|
|
- .public-margin-l-20 {
|
|
|
- margin-left: 20px !important;
|
|
|
- }
|
|
|
- .public-margin-l-30 {
|
|
|
- margin-left: 30px !important;
|
|
|
- }
|
|
|
-
|
|
|
- .public-margin-r-0 {
|
|
|
- margin-right: 0 !important;
|
|
|
- }
|
|
|
-
|
|
|
- .public-margin-r-5 {
|
|
|
- margin-right: 5px !important;
|
|
|
- }
|
|
|
-
|
|
|
- .public-margin-r-10 {
|
|
|
- margin-right: 10px !important;
|
|
|
- }
|
|
|
-
|
|
|
- .public-margin-r-15 {
|
|
|
- margin-right: 15px !important;
|
|
|
- }
|
|
|
- .public-margin-r-20 {
|
|
|
- margin-right: 20px !important;
|
|
|
- }
|
|
|
- .public-margin-r-30 {
|
|
|
- margin-right: 30px !important;
|
|
|
- }
|
|
|
-
|
|
|
- .zhezhao {
|
|
|
- width: 100%;
|
|
|
- height: 100%;
|
|
|
- position: fixed;
|
|
|
- top: 0;
|
|
|
- left: 0;
|
|
|
- background: rgba(0, 0, 0, 0.7);
|
|
|
- z-index: 4;
|
|
|
- }
|
|
|
-
|
|
|
+}
|
|
|
+
|
|
|
+/* flex */
|
|
|
+.public-flex {
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+}
|
|
|
+
|
|
|
+.public-flex-around {
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: space-around;
|
|
|
+}
|
|
|
+
|
|
|
+.public-flex-center {
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: center;
|
|
|
+}
|
|
|
+
|
|
|
+.public-flex-between {
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: space-between;
|
|
|
+}
|
|
|
+
|
|
|
+.public-flex-end {
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: flex-end;
|
|
|
+}
|
|
|
+
|
|
|
+.public-flex-column {
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ justify-content: center;
|
|
|
+}
|
|
|
+
|
|
|
+.public-flex-around-column {
|
|
|
+ display: flex;
|
|
|
+ justify-content: space-around;
|
|
|
+ flex-direction: column;
|
|
|
+}
|
|
|
+
|
|
|
+.public-flex-between-column {
|
|
|
+ display: flex;
|
|
|
+ justify-content: space-between;
|
|
|
+ flex-direction: column;
|
|
|
+}
|
|
|
+
|
|
|
+.public-flex-center-column {
|
|
|
+ display: flex;
|
|
|
+ justify-content: center;
|
|
|
+ flex-direction: column;
|
|
|
+ align-items: center;
|
|
|
+}
|
|
|
+
|
|
|
+.flex {
|
|
|
+ flex: 1;
|
|
|
+}
|
|
|
+
|
|
|
+.public-color {
|
|
|
+ color: #e85298;
|
|
|
+}
|
|
|
+
|
|
|
+.white {
|
|
|
+ color: #fff !important;
|
|
|
+}
|
|
|
+
|
|
|
+.public-font-size-12 {
|
|
|
+ font-size: 12px !important;
|
|
|
+}
|
|
|
+
|
|
|
+.public-font-size-14 {
|
|
|
+ font-size: 14px !important;
|
|
|
+}
|
|
|
+
|
|
|
+.public-font-size-15 {
|
|
|
+ font-size: 15px !important;
|
|
|
+}
|
|
|
+
|
|
|
+.public-font-size-16 {
|
|
|
+ font-size: 16px !important;
|
|
|
+}
|
|
|
+
|
|
|
+.public-font-size-17 {
|
|
|
+ font-size: 17px !important;
|
|
|
+}
|
|
|
+
|
|
|
+.public-font-size-18 {
|
|
|
+ font-size: 18px !important;
|
|
|
+}
|
|
|
+
|
|
|
+.public-font-size-20 {
|
|
|
+ font-size: 20px !important;
|
|
|
+}
|
|
|
+
|
|
|
+.public-font-size-22 {
|
|
|
+ font-size: 22px !important;
|
|
|
+}
|
|
|
+
|
|
|
+.public-font-size-24 {
|
|
|
+ font-size: 24px !important;
|
|
|
+}
|
|
|
+
|
|
|
+/* 边距 */
|
|
|
+/*内外边距类*/
|
|
|
+.public-padded-0 {
|
|
|
+ padding: 0 !important;
|
|
|
+}
|
|
|
+
|
|
|
+.public-padded-5 {
|
|
|
+ padding: 5px !important;
|
|
|
+}
|
|
|
+
|
|
|
+.public-padded-10 {
|
|
|
+ padding: 10px !important;
|
|
|
+}
|
|
|
+
|
|
|
+.public-padded-15 {
|
|
|
+ padding: 15px !important;
|
|
|
+}
|
|
|
+
|
|
|
+.public-padded-20 {
|
|
|
+ padding: 20px !important;
|
|
|
+}
|
|
|
+
|
|
|
+.public-padded-30 {
|
|
|
+ padding: 30px !important;
|
|
|
+}
|
|
|
+
|
|
|
+.public-padded-t-0 {
|
|
|
+ padding-top: 0 !important;
|
|
|
+}
|
|
|
+
|
|
|
+.public-padded-t-5 {
|
|
|
+ padding-top: 5px !important;
|
|
|
+}
|
|
|
+
|
|
|
+.public-padded-t-10 {
|
|
|
+ padding-top: 10px !important;
|
|
|
+}
|
|
|
+
|
|
|
+.public-padded-t-15 {
|
|
|
+ padding-top: 15px !important;
|
|
|
+}
|
|
|
+
|
|
|
+.public-padded-t-20 {
|
|
|
+ padding-top: 20px !important;
|
|
|
+}
|
|
|
+
|
|
|
+.public-padded-b-0 {
|
|
|
+ padding-bottom: 0 !important;
|
|
|
+}
|
|
|
+
|
|
|
+.public-padded-b-5 {
|
|
|
+ padding-bottom: 5px !important;
|
|
|
+}
|
|
|
+
|
|
|
+.public-padded-b-10 {
|
|
|
+ padding-bottom: 10px !important;
|
|
|
+}
|
|
|
+
|
|
|
+.public-padded-b-15 {
|
|
|
+ padding-bottom: 15px !important;
|
|
|
+}
|
|
|
+
|
|
|
+.public-padded-b-20 {
|
|
|
+ padding-bottom: 20px !important;
|
|
|
+}
|
|
|
+
|
|
|
+.public-padded-b-30 {
|
|
|
+ padding-bottom: 30px !important;
|
|
|
+}
|
|
|
+
|
|
|
+.public-padded-l-0 {
|
|
|
+ padding-left: 0 !important;
|
|
|
+}
|
|
|
+
|
|
|
+.public-padded-l-5 {
|
|
|
+ padding-left: 5px !important;
|
|
|
+}
|
|
|
+
|
|
|
+.public-padded-l-10 {
|
|
|
+ padding-left: 10px !important;
|
|
|
+}
|
|
|
+
|
|
|
+.public-padded-l-15 {
|
|
|
+ padding-left: 15px !important;
|
|
|
+}
|
|
|
+
|
|
|
+.public-padded-l-20 {
|
|
|
+ padding-left: 20px !important;
|
|
|
+}
|
|
|
+
|
|
|
+.public-padded-l-30 {
|
|
|
+ padding-left: 30px !important;
|
|
|
+}
|
|
|
+
|
|
|
+.public-padded-r-0 {
|
|
|
+ padding-right: 0 !important;
|
|
|
+}
|
|
|
+
|
|
|
+.public-padded-r-5 {
|
|
|
+ padding-right: 5px !important;
|
|
|
+}
|
|
|
+
|
|
|
+.public-padded-r-10 {
|
|
|
+ padding-right: 10px !important;
|
|
|
+}
|
|
|
+
|
|
|
+.public-padded-r-15 {
|
|
|
+ padding-right: 15px !important;
|
|
|
+}
|
|
|
+
|
|
|
+.public-padded-r-20 {
|
|
|
+ padding-right: 20px !important;
|
|
|
+}
|
|
|
+
|
|
|
+.public-padded-r-30 {
|
|
|
+ padding-right: 30px !important;
|
|
|
+}
|
|
|
+
|
|
|
+.public-margin-0 {
|
|
|
+ margin: 0 !important;
|
|
|
+}
|
|
|
+
|
|
|
+.public-margin-5 {
|
|
|
+ margin: 5px !important;
|
|
|
+}
|
|
|
+
|
|
|
+.public-margin-10 {
|
|
|
+ margin: 10px !important;
|
|
|
+}
|
|
|
+
|
|
|
+.public-margin-15 {
|
|
|
+ margin: 15px !important;
|
|
|
+}
|
|
|
+
|
|
|
+.public-margin-20 {
|
|
|
+ margin: 20px !important;
|
|
|
+}
|
|
|
+
|
|
|
+.public-margin-30 {
|
|
|
+ margin: 30px !important;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.public-margin-t-0 {
|
|
|
+ margin-top: 0px !important;
|
|
|
+}
|
|
|
+
|
|
|
+.public-margin-t-5 {
|
|
|
+ margin-top: 5px !important;
|
|
|
+}
|
|
|
+
|
|
|
+.public-margin-t-10 {
|
|
|
+ margin-top: 10px !important;
|
|
|
+}
|
|
|
+
|
|
|
+.public-margin-t-15 {
|
|
|
+ margin-top: 15px !important;
|
|
|
+}
|
|
|
+
|
|
|
+.public-margin-t-20 {
|
|
|
+ margin-top: 20px !important;
|
|
|
+}
|
|
|
+
|
|
|
+.public-margin-t-30 {
|
|
|
+ margin-top: 30px !important;
|
|
|
+}
|
|
|
+
|
|
|
+.public-margin-b-0 {
|
|
|
+ margin-bottom: 0 !important;
|
|
|
+}
|
|
|
+
|
|
|
+.public-margin-b-5 {
|
|
|
+ margin-bottom: 5px !important;
|
|
|
+}
|
|
|
+
|
|
|
+.public-margin-b-10 {
|
|
|
+ margin-bottom: 10px !important;
|
|
|
+}
|
|
|
+
|
|
|
+.public-margin-b-15 {
|
|
|
+ margin-bottom: 15px !important;
|
|
|
+}
|
|
|
+
|
|
|
+.public-margin-b-20 {
|
|
|
+ margin-bottom: 20px !important;
|
|
|
+}
|
|
|
+
|
|
|
+.public-margin-b-30 {
|
|
|
+ margin-bottom: 30px !important;
|
|
|
+}
|
|
|
+
|
|
|
+.public-margin-l-0 {
|
|
|
+ margin-left: 0 !important;
|
|
|
+}
|
|
|
+
|
|
|
+.public-margin-l-5 {
|
|
|
+ margin-left: 5px !important;
|
|
|
+}
|
|
|
+
|
|
|
+.public-margin-l-10 {
|
|
|
+ margin-left: 10px !important;
|
|
|
+}
|
|
|
+
|
|
|
+.public-margin-l-15 {
|
|
|
+ margin-left: 15px !important;
|
|
|
+}
|
|
|
+
|
|
|
+.public-margin-l-20 {
|
|
|
+ margin-left: 20px !important;
|
|
|
+}
|
|
|
+
|
|
|
+.public-margin-l-30 {
|
|
|
+ margin-left: 30px !important;
|
|
|
+}
|
|
|
+
|
|
|
+.public-margin-r-0 {
|
|
|
+ margin-right: 0 !important;
|
|
|
+}
|
|
|
+
|
|
|
+.public-margin-r-5 {
|
|
|
+ margin-right: 5px !important;
|
|
|
+}
|
|
|
+
|
|
|
+.public-margin-r-10 {
|
|
|
+ margin-right: 10px !important;
|
|
|
+}
|
|
|
+
|
|
|
+.public-margin-r-15 {
|
|
|
+ margin-right: 15px !important;
|
|
|
+}
|
|
|
+
|
|
|
+.public-margin-r-20 {
|
|
|
+ margin-right: 20px !important;
|
|
|
+}
|
|
|
+
|
|
|
+.public-margin-r-30 {
|
|
|
+ margin-right: 30px !important;
|
|
|
+}
|
|
|
+
|
|
|
+.zhezhao {
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+ position: fixed;
|
|
|
+ top: 0;
|
|
|
+ left: 0;
|
|
|
+ background: rgba(0, 0, 0, 0.7);
|
|
|
+ z-index: 4;
|
|
|
+}
|