123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129 |
- @import "../../style/common";
- .header_screen{
- width: 100%;
- height: 100%;
- }
- .flex {
- display: flex;
- flex-direction: column;
- box-sizing: border-box;
- }
- :host{
- width: 100%;
- height: 100%;
- overflow: hidden;
- }
- .flex-1{
- flex-grow: 1;
- }
- .flex-shrink-0{
- flex-shrink: 0;
- }
- .header_header{
- padding-left: 15px;
- padding-right: 15px;
- z-index: 999;
- }
- .relative{
- position: relative;
- }
- .absolute{
- position: absolute;
- }
- .header-title-model{
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- }
- .header-border{
- border-bottom: 1rpx solid #eee;
- }
- .flex-all-1{
- flex: 1;
- }
- .header-left{
- z-index: 10;
- }
- .aCenter,.center{
- align-items: center;
- }
- .jCenter,.center{
- justify-content: center;
- }
- .header-watch-scroll{
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- }
- .header-title{
- font-size: 16px;
- line-height: 24px;
- color: #000;
- max-width: 180px;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- font-family: PingFang SC;
- }
- .header-back{
- width: 20px;
- margin-left: 4px;
- }
- .header-load{
- width: 16px;
- height: 16px;
- border: 1.2px solid #000;
- border-top-color: transparent !important;
- border-radius: 50%;
- }
- .flat-load-animate{
- animation: rotate .7s infinite linear forwards;
- }
- .row{
- flex-direction: row;
- width: auto;
- }
- @keyframes rotate {
- 0%{
- transform: rotate(0);
- }
- 100%{
- transform: rotate(360deg);
- }
- }
- .immersion-header{
- top: 0;
- left: 0;
- width: 100%;
- z-index: 9999999;
- }
- .header-fail{
- color: red;
- }
- .header-fail-white{
- color: #fff;
- }
- .header-back-image{
- width: 9px;
- height: 16px;
- }
- .header-logo-image{
- width: 100px;
- height: 0;
- /*height: 25px;*/
- }
- .header-service{
- width: 100upx !important;
- height: 100upx !important;
- right: 30upx;
- bottom: 200upx;
- z-index: 99999999;
- }
|