| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143 |
- :root {
- --z-index-normal: 1;
- --z-index-top: 1000;
- --z-index-popper: 2000;
- --z-hot-popper: 3000;
- --design-width: 1920;
- --design-height: 920;
- --swiper-theme-color: white;
- --swiper-pagination-bullet-inactive-color: white;
- }
- body,
- ol,
- ul,
- h1,
- h2,
- h3,
- h4,
- h5,
- h6,
- p,
- th,
- td,
- dl,
- dd,
- form,
- fieldset,
- legend,
- input,
- textarea,
- select {
- margin: 0;
- padding: 0;
- }
- * {
- box-sizing: border-box;
- user-select: none;
- }
- html,
- body,
- #app {
- width: 100%;
- height: 100%;
- overflow: hidden;
- }
- body {
- margin: 0px;
- font-size: 14px;
- color: rgba(255, 255, 255, 0.9);
- font-family: 'Source Han Sans CN-Medium';
- -webkit-tap-highlight-color: transparent;
- }
- a {
- color: #fff;
- cursor: pointer;
- text-decoration: none;
- }
- em {
- font-style: normal;
- }
- li {
- list-style: none;
- }
- img {
- border: 0;
- vertical-align: middle;
- }
- table {
- border-collapse: collapse;
- border-spacing: 0;
- }
- p {
- word-wrap: break-word;
- }
- iframe {
- border: none;
- }
- @font-face {
- font-family: 'Source Han Sans CN-Regular';
- src: url('/fonts/SourceHanSansCN-Regular.otf');
- }
- @font-face {
- font-family: 'Source Han Sans CN-Bold';
- src: url('/fonts/SourceHanSansCN-Bold.otf');
- }
- @font-face {
- font-family: 'Source Han Sans CN-Medium';
- src: url('/fonts/SourceHanSansCN-Medium.otf');
- }
- @font-face {
- font-family: 'SourceHanSerifCN-Bold';
- src: url('/fonts/SOURCEHANSERIFCN-BOLD.OTF');
- }
- @font-face {
- font-family: 'SourceHanSerifCN-Regular';
- src: url('/fonts/SOURCEHANSERIFCN-REGULAR.OTF');
- }
- .limit-line {
- display: -webkit-box;
- overflow: hidden;
- text-overflow: ellipsis;
- -webkit-line-clamp: 1;
- -webkit-box-orient: vertical;
- word-break: break-all;
- word-wrap: break-word;
- }
- .line-2 {
- -webkit-line-clamp: 2;
- }
- .line-3 {
- -webkit-line-clamp: 3;
- }
- .hidden {
- display: none !important;
- visibility: hidden !important;
- }
- .darkGlass {
- background-color: rgba(0, 0, 0, 0.5);
- }
- .message-outer {
- position: absolute;
- display: table;
- height: 100%;
- width: 100%;
- * {
- transition: all 0.3s;
- }
- }
- @media only screen and (max-width: 600px) {
- :root {
- --design-width: 750;
- --design-height: 1440;
- }
- }
|