style.scss 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. @import "../../style/common";
  2. .header_screen{
  3. width: 100%;
  4. height: 100%;
  5. }
  6. .flex {
  7. display: flex;
  8. flex-direction: column;
  9. box-sizing: border-box;
  10. }
  11. :host{
  12. width: 100%;
  13. height: 100%;
  14. overflow: hidden;
  15. }
  16. .flex-1{
  17. flex-grow: 1;
  18. }
  19. .flex-shrink-0{
  20. flex-shrink: 0;
  21. }
  22. .header_header{
  23. padding-left: 15px;
  24. padding-right: 15px;
  25. z-index: 999;
  26. }
  27. .relative{
  28. position: relative;
  29. }
  30. .absolute{
  31. position: absolute;
  32. }
  33. .header-title-model{
  34. top: 0;
  35. left: 0;
  36. right: 0;
  37. bottom: 0;
  38. }
  39. .header-border{
  40. border-bottom: 1rpx solid #eee;
  41. }
  42. .flex-all-1{
  43. flex: 1;
  44. }
  45. .header-left{
  46. z-index: 10;
  47. }
  48. .aCenter,.center{
  49. align-items: center;
  50. }
  51. .jCenter,.center{
  52. justify-content: center;
  53. }
  54. .header-watch-scroll{
  55. top: 0;
  56. left: 0;
  57. right: 0;
  58. bottom: 0;
  59. }
  60. .header-title{
  61. font-size: 16px;
  62. line-height: 24px;
  63. color: #000;
  64. max-width: 180px;
  65. white-space: nowrap;
  66. overflow: hidden;
  67. text-overflow: ellipsis;
  68. font-family: PingFang SC;
  69. }
  70. .header-back{
  71. width: 20px;
  72. margin-left: 4px;
  73. }
  74. .header-load{
  75. width: 16px;
  76. height: 16px;
  77. border: 1.2px solid #000;
  78. border-top-color: transparent !important;
  79. border-radius: 50%;
  80. }
  81. .flat-load-animate{
  82. animation: rotate .7s infinite linear forwards;
  83. }
  84. .row{
  85. flex-direction: row;
  86. width: auto;
  87. }
  88. @keyframes rotate {
  89. 0%{
  90. transform: rotate(0);
  91. }
  92. 100%{
  93. transform: rotate(360deg);
  94. }
  95. }
  96. .immersion-header{
  97. top: 0;
  98. left: 0;
  99. width: 100%;
  100. z-index: 9999999;
  101. }
  102. .header-fail{
  103. color: red;
  104. }
  105. .header-fail-white{
  106. color: #fff;
  107. }
  108. .header-back-image{
  109. width: 9px;
  110. height: 16px;
  111. }
  112. .header-logo-image{
  113. width: 100px;
  114. height: 0;
  115. /*height: 25px;*/
  116. }
  117. .header-service{
  118. width: 100upx !important;
  119. height: 100upx !important;
  120. right: 30upx;
  121. bottom: 200upx;
  122. z-index: 99999999;
  123. }