|
@@ -0,0 +1,217 @@
|
|
|
+.floor {
|
|
|
+ display: -webkit-box;
|
|
|
+ display: -ms-flexbox;
|
|
|
+ display: flex;
|
|
|
+ -webkit-box-orient: horizontal;
|
|
|
+ -webkit-box-direction: normal;
|
|
|
+ -ms-flex-direction: row;
|
|
|
+ flex-direction: row;
|
|
|
+ -webkit-box-pack: start;
|
|
|
+ -ms-flex-pack: start;
|
|
|
+ justify-content: flex-start;
|
|
|
+ width: 100%;
|
|
|
+ height: 48px;
|
|
|
+ line-height: 48px;
|
|
|
+ background: #edeef0;
|
|
|
+ font-size: 14px;
|
|
|
+ color: #444;
|
|
|
+ -webkit-box-align: center;
|
|
|
+ -ms-flex-align: center;
|
|
|
+ align-items: center;
|
|
|
+ position: relative;
|
|
|
+ z-index: 1
|
|
|
+}
|
|
|
+
|
|
|
+.floor .remove {
|
|
|
+ background: #f85043;
|
|
|
+ margin-left: 164px
|
|
|
+}
|
|
|
+
|
|
|
+.floor .add, .floor .remove {
|
|
|
+ width: 98px;
|
|
|
+ height: 32px;
|
|
|
+ border-radius: 3px;
|
|
|
+ color: #fff;
|
|
|
+ line-height: 32px;
|
|
|
+ text-align: center;
|
|
|
+ cursor: pointer
|
|
|
+}
|
|
|
+
|
|
|
+.floor .add {
|
|
|
+ background: #14928a;
|
|
|
+ margin-left: 20px
|
|
|
+}
|
|
|
+
|
|
|
+.soundWrap {
|
|
|
+ width: 100%;
|
|
|
+ overflow: auto
|
|
|
+}
|
|
|
+
|
|
|
+.soundWrap .itemList {
|
|
|
+ display: -webkit-box;
|
|
|
+ display: -ms-flexbox;
|
|
|
+ display: flex;
|
|
|
+ -webkit-box-orient: horizontal;
|
|
|
+ -webkit-box-direction: normal;
|
|
|
+ -ms-flex-direction: row;
|
|
|
+ flex-direction: row;
|
|
|
+ -webkit-box-pack: start;
|
|
|
+ -ms-flex-pack: start;
|
|
|
+ justify-content: flex-start;
|
|
|
+ -ms-flex-wrap: nowrap;
|
|
|
+ flex-wrap: nowrap;
|
|
|
+ -webkit-box-flex: 1;
|
|
|
+ -ms-flex-positive: 1;
|
|
|
+ flex-grow: 1;
|
|
|
+ height: 300px;
|
|
|
+ max-height: 300px;
|
|
|
+ overflow: auto
|
|
|
+}
|
|
|
+
|
|
|
+.soundWrap .itemList .categroy {
|
|
|
+ width: 150px;
|
|
|
+ min-width: 150px
|
|
|
+}
|
|
|
+
|
|
|
+.soundWrap .itemList .categroy .el-checkbox {
|
|
|
+ height: 30px;
|
|
|
+ line-height: 30px;
|
|
|
+ display: block;
|
|
|
+ padding-left: 20px
|
|
|
+}
|
|
|
+
|
|
|
+.soundWrap .itemList .categroy p {
|
|
|
+ margin-bottom: 15px;
|
|
|
+ text-align: center
|
|
|
+}
|
|
|
+
|
|
|
+.soundSubP, .soundWrap .itemList .categroy p {
|
|
|
+ height: 40px;
|
|
|
+ line-height: 40px;
|
|
|
+ background-color: #edeef0
|
|
|
+}
|
|
|
+
|
|
|
+.soundSubP {
|
|
|
+ padding-left: 25px
|
|
|
+}
|
|
|
+
|
|
|
+.btnWrapss {
|
|
|
+ display: -webkit-box;
|
|
|
+ display: -ms-flexbox;
|
|
|
+ display: flex;
|
|
|
+ -webkit-box-orient: vertical;
|
|
|
+ -webkit-box-direction: normal;
|
|
|
+ -ms-flex-direction: column;
|
|
|
+ flex-direction: column;
|
|
|
+ -webkit-box-align: center;
|
|
|
+ -ms-flex-align: center;
|
|
|
+ align-items: center;
|
|
|
+ margin-top: 150px
|
|
|
+}
|
|
|
+
|
|
|
+.btnWrapss .dialogBtn {
|
|
|
+ width: 188px;
|
|
|
+ height: 40px;
|
|
|
+ background: #f97215;
|
|
|
+ border-radius: 4px;
|
|
|
+ line-height: 40px;
|
|
|
+ color: #fff;
|
|
|
+ text-align: center;
|
|
|
+ cursor: pointer
|
|
|
+}
|
|
|
+
|
|
|
+.reductionWrap {
|
|
|
+ width: 100%
|
|
|
+}
|
|
|
+
|
|
|
+.reductionWrap .lineWrap {
|
|
|
+ display: -webkit-box;
|
|
|
+ display: -ms-flexbox;
|
|
|
+ display: flex;
|
|
|
+ -webkit-box-orient: horizontal;
|
|
|
+ -webkit-box-direction: normal;
|
|
|
+ -ms-flex-direction: row;
|
|
|
+ flex-direction: row;
|
|
|
+ -ms-flex-pack: distribute;
|
|
|
+ justify-content: space-around;
|
|
|
+ height: 40px;
|
|
|
+ line-height: 40px;
|
|
|
+ margin-bottom: 10px
|
|
|
+}
|
|
|
+
|
|
|
+.reductionWrap .lineWrap .item {
|
|
|
+ width: 25%;
|
|
|
+ text-align: left
|
|
|
+}
|
|
|
+
|
|
|
+.pagination-container[data-v-31cb099a] {
|
|
|
+ background: #fff;
|
|
|
+ padding: 32px 16px;
|
|
|
+ width: 100%;
|
|
|
+ display: -webkit-box;
|
|
|
+ display: -ms-flexbox;
|
|
|
+ display: flex;
|
|
|
+ -webkit-box-orient: horizontal;
|
|
|
+ -webkit-box-direction: normal;
|
|
|
+ -ms-flex-direction: row;
|
|
|
+ flex-direction: row;
|
|
|
+ -webkit-box-pack: center;
|
|
|
+ -ms-flex-pack: center;
|
|
|
+ justify-content: center
|
|
|
+}
|
|
|
+
|
|
|
+.pagination-container.hidden[data-v-31cb099a] {
|
|
|
+ display: none
|
|
|
+}
|
|
|
+
|
|
|
+.topWrap[data-v-8407e71a] {
|
|
|
+ display: -webkit-box;
|
|
|
+ display: -ms-flexbox;
|
|
|
+ display: flex;
|
|
|
+ -webkit-box-orient: horizontal;
|
|
|
+ -webkit-box-direction: normal;
|
|
|
+ -ms-flex-direction: row;
|
|
|
+ flex-direction: row;
|
|
|
+ -webkit-box-pack: start;
|
|
|
+ -ms-flex-pack: start;
|
|
|
+ justify-content: flex-start
|
|
|
+}
|
|
|
+
|
|
|
+.topWrap div[data-v-8407e71a] {
|
|
|
+ margin-right: 10px
|
|
|
+}
|
|
|
+
|
|
|
+.left-code h2[data-v-8407e71a], .right-code h2[data-v-8407e71a] {
|
|
|
+ font-size: 18px;
|
|
|
+ text-align: center;
|
|
|
+ padding-bottom: 8px
|
|
|
+}
|
|
|
+
|
|
|
+.left-code .qrcode[data-v-8407e71a], .right-code .qrcode[data-v-8407e71a] {
|
|
|
+ display: -webkit-box;
|
|
|
+ display: -ms-flexbox;
|
|
|
+ display: flex;
|
|
|
+ -webkit-box-orient: vertical;
|
|
|
+ -webkit-box-direction: normal;
|
|
|
+ -ms-flex-direction: column;
|
|
|
+ flex-direction: column;
|
|
|
+ -webkit-box-align: center;
|
|
|
+ -ms-flex-align: center;
|
|
|
+ align-items: center
|
|
|
+}
|
|
|
+
|
|
|
+.left-code .qrcode img[data-v-8407e71a], .right-code .qrcode img[data-v-8407e71a] {
|
|
|
+ width: 200px;
|
|
|
+ height: 200px;
|
|
|
+ margin: 0 auto
|
|
|
+}
|
|
|
+
|
|
|
+.left-code .code-url[data-v-8407e71a], .right-code .code-url[data-v-8407e71a] {
|
|
|
+ font-size: 18px;
|
|
|
+ text-align: center;
|
|
|
+ padding: 15px 15px 0 15px
|
|
|
+}
|
|
|
+
|
|
|
+.testText[data-v-f6101440] {
|
|
|
+ color: transparent
|
|
|
+}
|