123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217 |
- <template>
- <div id="app">
- <router-view />
- </div>
- </template>
- <script>
- export default {
- name: 'App'
- }
- </script>
- <style >
- * {
- margin: 0;
- padding: 0;
- touch-action: none !important;
- }
- body {
- background-color: #eef4f9;
- }
- /* 出去多选框中的关闭按钮 */
- .el-select__tags .el-tag__close.el-icon-close {
- display: none;
- }
- </style>
- <style lang="scss">
- .el-tabs__content {
- overflow: auto;
- }
- input::-webkit-outer-spin-button,
- input::-webkit-inner-spin-button {
- -webkit-appearance: none;
- }
- input[type="number"] {
- -moz-appearance: textfield;
- }
- .el-tabs__item.is-active {
- color: #14928a !important;
- // font-size: 14px;
- font-weight: 600;
- }
- .el-tabs__item:hover {
- color: #14928a !important;
- // font-size: 14px;
- font-weight: 600;
- }
- // 选择框组件
- .el-form-item__content {
- font-size: 14px !important;
- }
- .el-select {
- width: 150px !important;
- }
- .multiple.el-select {
- width: 150px !important;
- }
- .searchBtn {
- width: 100px;
- height: 36px;
- line-height: 36px;
- background-color: #f85043;
- color: #fff;
- font-size: 14px;
- text-align: center;
- border-radius: 4px;
- position: relative;
- top: 3px;
- cursor: pointer;
- }
- .newBand {
- width: 100px;
- height: 36px;
- line-height: 36px;
- margin-bottom: 20px;
- background-color: #14928a;
- border: 1px solid #14928a;
- cursor: pointer;
- color: #fff;
- font-size: 14px;
- text-align: center;
- border-radius: 4px;
- position: relative;
- top: 3px;
- }
- // 公用的搜索组件
- .searchWrap {
- display: flex;
- flex-direction: row;
- justify-content: flex-start;
- align-items: center;
- font-size: 14px;
- font-weight: 500;
- color: rgba(119, 119, 119, 1);
- height: 30px;
- margin-bottom: 30px;
- p {
- font-size: 14px;
- padding-left: 4px;
- }
- .searchItem {
- margin-left: 20px;
- position: relative;
- box-sizing: border-box;
- min-width: 116px;
- padding: 0 25px;
- height: 30px;
- line-height: 30px;
- background: rgba(246, 246, 246, 1);
- border-radius: 15px;
- color: #777;
- font-size: 14px;
- .el-icon-close {
- position: absolute;
- right: 5px;
- top: 8px;
- }
- }
- }
- .headWrap {
- padding: 40px 0;
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- align-items: center;
- .left {
- // width: 1000px;
- display: flex;
- flex-direction: row;
- justify-content: flex-start;
- align-items: center;
- flex-wrap: wrap;
- .headItem {
- width: 364px;
- height: 30px;
- color: #444;
- border-right: 1px solid #979797;
- p {
- font-size: 14px;
- line-height: 30px;
- span {
- font-size: 22px;
- line-height: 30px;
- }
- }
- &:nth-child(1) {
- width: 256px;
- }
- &:nth-child(2n) {
- text-align: center;
- }
- &:nth-child(3n) {
- border-right: 1px solid #fff;
- text-align: center;
- }
- &:nth-child(4n) {
- text-align: left !important;
- width: 256px;
- }
- }
- }
- }
- // 公用编剧模板
- .m-container {
- box-sizing: border-box;
- background-color: #fff;
- padding: 18px 60px 40px;
- // height: calc(100vh- 80px) !important;
- height: calc(100vh - 70px);
- width: 100;
- min-width: 1440px;
- overflow: auto;
- .m-core {
- margin-top: 10px;
- background-color: #fff;
- position: relative;
- }
- h2 {
- height: 48px;
- line-height: 48px;
- position: relative;
- // padding-left: 30px;
- font-size: 32px;
- font-weight: 600;
- margin-bottom: 10px;
- display: flex;
- flex-direction: row;
- justify-content: flex-start;
- align-items: center;
- .term {
- height: 32px;
- line-height: 32px;
- border-radius: 24px;
- width: 100px;
- color: #14928a;
- border: 1px solid rgba(20, 146, 138, 1);
- font-size: 14px;
- text-align: center;
- margin-right: 12px;
- &:nth-child(1) {
- margin-left: 47px;
- }
- }
- .term.active {
- color: #fff;
- background-color: #14928a;
- }
- .squrt {
- position: absolute;
- left: -25px;
- top: 8px;
- height: 34px;
- width: 8px;
- background-color: #14928a;
- }
- }
- }
- </style>
|