|
@@ -1,55 +1,53 @@
|
|
.base-layout-container {
|
|
.base-layout-container {
|
|
- header {
|
|
|
|
- width: 100%;
|
|
|
|
- height: 60px;
|
|
|
|
- background: #003a8c;
|
|
|
|
- box-shadow: 0px 1px 4px 0px rgba(0, 21, 41, 0.12);
|
|
|
|
- box-sizing: border-box;
|
|
|
|
- display: flex;
|
|
|
|
- justify-content: space-between;
|
|
|
|
- padding: 0 14px 0 30px;
|
|
|
|
- align-items: center;
|
|
|
|
- position: sticky;
|
|
|
|
- top: 0;
|
|
|
|
- z-index: 2001;
|
|
|
|
- background-image: url('../../assets/bg_jgxt.jpg');
|
|
|
|
- background-repeat: no-repeat;
|
|
|
|
-
|
|
|
|
- .title-content {
|
|
|
|
- display: flex;
|
|
|
|
- align-items: center;
|
|
|
|
- flex: 1;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- .title {
|
|
|
|
- font-size: 24px;
|
|
|
|
- font-family: PingFangSC, PingFangSC-Semibold;
|
|
|
|
- font-weight: 600;
|
|
|
|
- text-align: left;
|
|
|
|
- color: #ffffff;
|
|
|
|
- line-height: 60px;
|
|
|
|
- margin-right: 10px;
|
|
|
|
- }
|
|
|
|
- .action {
|
|
|
|
- display: flex;
|
|
|
|
- align-items: center;
|
|
|
|
- color: #ffffff;
|
|
|
|
- > span {
|
|
|
|
- padding-right: 14px;
|
|
|
|
- }
|
|
|
|
- .el-icon {
|
|
|
|
- padding: 10px;
|
|
|
|
- cursor: pointer;
|
|
|
|
- transition: color 0.3s;
|
|
|
|
- &:hover {
|
|
|
|
- color: #f0f0f0;
|
|
|
|
|
|
+ header {
|
|
|
|
+ width: 100%;
|
|
|
|
+ height: 60px;
|
|
|
|
+ background: #003a8c;
|
|
|
|
+ box-shadow: 0px 1px 4px 0px rgba(0, 21, 41, 0.12);
|
|
|
|
+ box-sizing: border-box;
|
|
|
|
+ display: flex;
|
|
|
|
+ justify-content: space-between;
|
|
|
|
+ padding: 0 14px 0 30px;
|
|
|
|
+ align-items: center;
|
|
|
|
+ position: sticky;
|
|
|
|
+ top: 0;
|
|
|
|
+ z-index: 2001;
|
|
|
|
+ background-image: url('../../assets/bg_jgxt.jpg');
|
|
|
|
+ background-repeat: no-repeat;
|
|
|
|
+ .title-content {
|
|
|
|
+ display: flex;
|
|
|
|
+ align-items: center;
|
|
|
|
+ flex: 1;
|
|
|
|
+ }
|
|
|
|
+ .title {
|
|
|
|
+ font-size: 24px;
|
|
|
|
+ font-family: PingFangSC, PingFangSC-Semibold;
|
|
|
|
+ font-weight: 600;
|
|
|
|
+ text-align: left;
|
|
|
|
+ color: #ffffff;
|
|
|
|
+ line-height: 60px;
|
|
|
|
+ margin-right: 10px;
|
|
}
|
|
}
|
|
- }
|
|
|
|
|
|
+ .action {
|
|
|
|
+ display: flex;
|
|
|
|
+ align-items: center;
|
|
|
|
+ color: #ffffff;
|
|
|
|
+ >span {
|
|
|
|
+ padding-right: 14px;
|
|
|
|
+ }
|
|
|
|
+ .el-icon {
|
|
|
|
+ padding: 10px;
|
|
|
|
+ cursor: pointer;
|
|
|
|
+ transition: color 0.3s;
|
|
|
|
+ &:hover {
|
|
|
|
+ color: #f0f0f0;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ main {
|
|
|
|
+ display: flex;
|
|
|
|
+ flex-direction: column;
|
|
|
|
+ min-height: calc(100vh - 60px);
|
|
}
|
|
}
|
|
- }
|
|
|
|
- main {
|
|
|
|
- display: flex;
|
|
|
|
- flex-direction: column;
|
|
|
|
- min-height: calc(100vh - 60px);
|
|
|
|
- }
|
|
|
|
-}
|
|
|
|
|
|
+}
|