1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- html,
- body {
- margin: 0;
- padding: 0;
- font-size: 100px;
- line-height: 1;
- font-family: "Source Han Sans CN" !important;
- color: #333;
- box-sizing: border-box;
- background-color: #F5F7F9;
- user-select: none;
- }
- .header_root {
- position: fixed;
- width: 100%;
- color: #fff;
- background-color: transparent;
- z-index: 9999;
- }
- .header_root.bg_white {
- color: #333;
- background-color: #fff;
- }
- .header_root:hover {
- color: #333;
- background-color: #fff;
- }
- .header_root:hover .header_box .header_left .left_white,
- .header_root.bg_white .header_box .header_left .left_white {
- display: none;
- }
- .header_root:hover .header_box .header_left .left_gray,
- .header_root.bg_white .header_box .header_left .left_gray {
- display: inline-block;
- }
- .footer_root {
- background-color: #F5F7F9;
- }
- .header_info {
- position: absolute;
- top: 0.8rem;
- left: 0;
- right: 0;
- bottom: 0;
- margin: auto;
- width: 13rem;
- height: 0.84rem;
- color: white;
- }
-
- .header_title {
- font-size: 0.36rem;
- font-weight: 700;
- }
-
- .header_stitle {
- padding-top: 0.3rem;
- font-size: 0.16rem;
- }
|