1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- *,
- *::before,
- *::after {
- box-sizing: border-box;
- margin: 0;
- }
- #app{
- background: url('../images/page-bg.png') center center no-repeat;
- background-size: 100% 100%;
- height: 100vh;
- }
- #header {
- height: 70px;
- line-height: 70px;
- background: url('../images/header-bg.png') center center no-repeat;
- background-size: 100% 100%;
- text-align: center;
- font-weight: bold;
- font-size: 32px;
- color: #1CCBFF;
- position: relative;
- }
- .header-time{
- position: absolute;
- right: 70px;
- font-size: 18px;
- }
- .main{
- height: calc(100vh - 70px);
- padding: 15px;
- }
- .panel-title{
- position: relative;
- text-align: center;
- height: 50px;
- line-height: 50px;
- }
- .panel-title-text{
- font-size: 20px;
- font-weight: 600;
- color: #1CCBFF;
- position: relative;
- display: inline;
- }
- .panel-title-text::before{
- content: "";
- position: absolute;
- top: 10px;
- left: -40px;
- width: 30px;
- height: 10px;
- background: url(../images/title-left.png) no-repeat;
- }
- .panel-title-text::after{
- content: "";
- position: absolute;
- top: 10px;
- right: -40px;
- width: 30px;
- height: 10px;
- background: url(../images/title-right.png) no-repeat;
- }
- .panel-content{
- width: 100%;
- height: calc(100% - 50px);
- }
|