123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154 |
- <template>
- <div id="app">
- <Header></Header>
- <Banner></Banner>
- </div>
- </template>
- <script>
- import Header from '@/common/headers.vue'
- import Banner from '@/components/resource/list.vue'
- export default {
- components: {
- Header,
- Banner
- },
- data() {
- return {
- }
- },
- mounted() {
-
- }
- }
- </script>
- <style scoped>
- html, body, #app {
- height: 100% !important;
- /*-moz-user-select: none; /*火狐 firefox*/
- /*-webkit-user-select: none;/ /*webkit浏览器*/
- /*-ms-user-select: none;*/ /*IE10+*/
- /*user-select: none;*/
- }
- .main-content {
- position: relative;
- width: 100%;
- min-width: 1200px;
- min-height: 768px;
- background: url("http://chq.dygl.pujiaoyun.cn/static/img/banner.071530a.jpg") center 100% no-repeat;
- height: 100%;
- display: flex;
- flex-direction: column;
- align-items: center;
- padding-top: 50px;
- }
- .center {
- display: flex;
- flex-direction: row;
- justify-content: center;
- align-items: center;
- }
- .centerCol {
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- }
- .overlay-wrap {
- padding: 20px 10px;
- background-color: rgba(218, 218, 218, 0.08);
- margin-top: 50px;
- }
- .logo {
- width: 200px;
- height: 200px;
- margin-bottom: 50px;
- }
- .btn-login {
- width: 150px;
- margin-top: 15px;
- background-color: rgba(204,204,204,.37) !important;
- border-color: #87888a !important;
- }
- .suc-text {
- color: #fff;
- font-size: 14px;
- font-weight: 200;
- }
- .user-wrap {
- position: absolute;
- right: 50px;
- top: 50px;
- color: white;
- font-size: 14px;
- font-weight: 200;
- }
- .ivu-avatar {
- background-color: #30a6e1 !important;
- margin-right: 10px;
- }
- .btn-exit {
- font-size: 12px;
- cursor: pointer;
- margin-left: 15px;
- }
- .select-role {
- margin-top: 15px;
- }
- .select-role /deep/ .ivu-select {
- color: #000 !important;
- width: 150px !important;
- }
- .select-role .ivu-select-selection {
- background-color: rgba(255,255,255,.18) !important;
- border-color: #373737 !important;
- }
- .select-role-wrap {
- background-color: rgba(218, 218, 218, 0.08);
- padding: 5px;
- justify-content: normal;
- flex-wrap: wrap;
- max-width: 930px;
- }
- .role-item {
- width: 210px;
- height: 210px;
- background-color: rgba(179,179,179,.15);
- margin: 10px;
- color: #c5c5c5;
- font-size: 14px;
- font-weight: 200;
- cursor: pointer;
- }
- .role-item:hover {
- background: rgba(179,179,179,.42);
- color: #fff;
- }
- .title {
- font-size: 26px;
- font-weight: 200;
- color: #fff;
- margin-bottom: 20px;
- }
- .role-name {
- margin-top: 10px;
- }
- </style>
|