|
@@ -0,0 +1,238 @@
|
|
|
+@import './variables.scss';
|
|
|
+@import './mixin.scss';
|
|
|
+@import './transition.scss';
|
|
|
+@import './element-ui.scss';
|
|
|
+@import './sidebar.scss';
|
|
|
+body {
|
|
|
+ height: 100%;
|
|
|
+ -moz-osx-font-smoothing: grayscale;
|
|
|
+ -webkit-font-smoothing: antialiased;
|
|
|
+ text-rendering: optimizeLegibility;
|
|
|
+ font-family: Helvetica Neue, Helvetica, PingFang SC, Hiragino Sans GB, Microsoft YaHei, Arial, sans-serif;
|
|
|
+}
|
|
|
+
|
|
|
+label {
|
|
|
+ font-weight: 700;
|
|
|
+}
|
|
|
+
|
|
|
+html {
|
|
|
+ height: 100%;
|
|
|
+ box-sizing: border-box;
|
|
|
+}
|
|
|
+
|
|
|
+#app {
|
|
|
+ height: 100%;
|
|
|
+}
|
|
|
+
|
|
|
+*,
|
|
|
+*:before,
|
|
|
+*:after {
|
|
|
+ box-sizing: inherit;
|
|
|
+}
|
|
|
+
|
|
|
+a:focus,
|
|
|
+a:active {
|
|
|
+ outline: none;
|
|
|
+}
|
|
|
+
|
|
|
+a,
|
|
|
+a:focus,
|
|
|
+a:hover {
|
|
|
+ cursor: pointer;
|
|
|
+ color: inherit;
|
|
|
+ text-decoration: none;
|
|
|
+}
|
|
|
+
|
|
|
+div:focus {
|
|
|
+ outline: none;
|
|
|
+}
|
|
|
+
|
|
|
+.clearfix {
|
|
|
+ &:after {
|
|
|
+ visibility: hidden;
|
|
|
+ display: block;
|
|
|
+ font-size: 0;
|
|
|
+ content: " ";
|
|
|
+ clear: both;
|
|
|
+ height: 0;
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+// main-container global css
|
|
|
+.mb-20 {
|
|
|
+ margin-bottom: 20px
|
|
|
+}
|
|
|
+
|
|
|
+.mr-30 {
|
|
|
+ margin-right: 30px
|
|
|
+}
|
|
|
+
|
|
|
+.mt-20 {
|
|
|
+ margin-top: 20px
|
|
|
+}
|
|
|
+
|
|
|
+.mt-40 {
|
|
|
+ margin-top: 40px
|
|
|
+}
|
|
|
+
|
|
|
+.mt-60 {
|
|
|
+ margin-top: 60px
|
|
|
+}
|
|
|
+
|
|
|
+.font-16 {
|
|
|
+ font-size: 16px
|
|
|
+}
|
|
|
+
|
|
|
+.padding-20 {
|
|
|
+ padding: 20px
|
|
|
+}
|
|
|
+
|
|
|
+.text-center {
|
|
|
+ text-align: center
|
|
|
+}
|
|
|
+
|
|
|
+.delete-text {
|
|
|
+ color: #F80000
|
|
|
+}
|
|
|
+
|
|
|
+.app-container {
|
|
|
+ padding: 20px;
|
|
|
+ // width: 100%;
|
|
|
+ width: calc(100% - 40px);
|
|
|
+ height: 100%;
|
|
|
+ margin: 20px;
|
|
|
+ background: #fff;
|
|
|
+ min-height: calc(100vh - 140px)
|
|
|
+}
|
|
|
+
|
|
|
+.filter-container {
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+ display: flex;
|
|
|
+ -webkit-box-pack: justify;
|
|
|
+ -webkit-justify-content: space-between;
|
|
|
+ -ms-flex-pack: justify;
|
|
|
+ justify-content: space-between;
|
|
|
+ vertical-align: middle;
|
|
|
+ .el-button+.el-button {
|
|
|
+ margin-left: 30px!important;
|
|
|
+ }
|
|
|
+ .filter-item {
|
|
|
+ margin-right: 30px;
|
|
|
+ display: inline-block;
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+.el-input__inner {
|
|
|
+ height: 36px;
|
|
|
+ line-height: 36px
|
|
|
+}
|
|
|
+
|
|
|
+.el-button {
|
|
|
+ padding: 10px 12px;
|
|
|
+}
|
|
|
+
|
|
|
+.el-table td,
|
|
|
+.el-table th {
|
|
|
+ padding: 10px 0
|
|
|
+}
|
|
|
+
|
|
|
+// 弹框样式start
|
|
|
+.el-dialog__header {
|
|
|
+ background: #f8f8f8;
|
|
|
+ padding: 16px 20px 16px;
|
|
|
+}
|
|
|
+
|
|
|
+.el-form-item {
|
|
|
+ width: 400px;
|
|
|
+ margin: 0 auto 20px;
|
|
|
+}
|
|
|
+
|
|
|
+// 弹框样式end
|
|
|
+// 台区列表
|
|
|
+.siteTitle {
|
|
|
+ font-size: 16px;
|
|
|
+ padding: 10px 20px 30px 20px;
|
|
|
+ text-align: center;
|
|
|
+ position: relative;
|
|
|
+ .goBack {
|
|
|
+ position: absolute;
|
|
|
+ left: 0;
|
|
|
+ top: 0
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+.status.el-avatar {
|
|
|
+ width: 14px;
|
|
|
+ height: 14px;
|
|
|
+ background: #04F21C
|
|
|
+}
|
|
|
+
|
|
|
+// 基本信息
|
|
|
+.basicInfo {
|
|
|
+ width: 100%;
|
|
|
+ height: calc(100vh - 193px);
|
|
|
+ // border: 1px solid pink;
|
|
|
+ display: block;
|
|
|
+ overflow-y: auto;
|
|
|
+}
|
|
|
+
|
|
|
+.siteManage-main {
|
|
|
+ padding: 20px;
|
|
|
+ .el-form-item.basic-info-page {
|
|
|
+ margin-left: 0px
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+.goArchive {
|
|
|
+ color: #056FFF;
|
|
|
+ text-decoration: underline;
|
|
|
+}
|
|
|
+
|
|
|
+.blockTitle {
|
|
|
+ font-weight: bold
|
|
|
+}
|
|
|
+
|
|
|
+// input长度
|
|
|
+.el-form-item__content {
|
|
|
+ width: 250px;
|
|
|
+}
|
|
|
+
|
|
|
+.el-date-editor.el-input,
|
|
|
+.el-date-editor.el-input__inner {
|
|
|
+ width: 250px;
|
|
|
+}
|
|
|
+
|
|
|
+.el-select {
|
|
|
+ width: 100%
|
|
|
+}
|
|
|
+
|
|
|
+// 单选框样式
|
|
|
+.el-radio {
|
|
|
+ // 图片上传样式 start
|
|
|
+ .el-upload--picture-card {
|
|
|
+ width: 90px;
|
|
|
+ height: 90px;
|
|
|
+ }
|
|
|
+ .el-upload {
|
|
|
+ width: 90px;
|
|
|
+ height: 90px;
|
|
|
+ line-height: 100px;
|
|
|
+ }
|
|
|
+ .el-upload-list--picture-card .el-upload-list__item {
|
|
|
+ width: 92px;
|
|
|
+ height: 92px;
|
|
|
+ line-height: 92px;
|
|
|
+ text-align: center
|
|
|
+ }
|
|
|
+ .el-upload-list--picture-card .el-upload-list__item-thumbnail {
|
|
|
+ width: 90px;
|
|
|
+ height: 90px;
|
|
|
+ line-height: 90px;
|
|
|
+ }
|
|
|
+ .avatar {
|
|
|
+ width: 90px;
|
|
|
+ height: 90px;
|
|
|
+ }
|
|
|
+ margin-right: 24px
|
|
|
+}
|