12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- @media screen and (max-width: 750px) {
- html {
- font-size: calc(100vw / 7.5);
- }
- }
-
- @media screen and (min-width: 750px) {
- html {
- font-size: calc(450px / 7.5);
- }
- }
- html, body, div, ul, li, p {
- padding: 0;
- margin: 0;
- }
- ul, li {
- list-style: none;
- }
- .containers{
- width: 7.5rem;
- margin: auto;
- background-image: url('../img/yunActivity/bgc0.png');
- background-size: 100% 100%;
- }
- .banner-wrap{
- width: 7.5rem;
- height: 25.67rem;
- position: relative;
- }
- .banner-img {
- position: fixed;
- width: 7.5rem;
- height: 1.28rem;
- top: 0;
- z-index: 1;
- }
- .downlond-img {
- position: fixed;
- top: 0.3rem;
- right: 0.3rem;
- width: 2.2rem;
- height: 0.7rem;
- z-index: 1;
- }
- .downlond-midimg {
- position: absolute;
- top: 10.8rem;
- left: 50%;
- margin-left: -2.15rem;
- width: 4.3rem;
- height: 1.12rem;
- }
- #toast-container>.toast-error {
- background-image: none !important;
- border-radius: 0.2rem;
- }
-
- .toast-error {
- background-color: rgba(0, 0, 0, 0.8);
- border-radius: 0.2rem;
- }
-
- #toast-container>div {
- font-size: 14px;
- min-width: 80px !important;
- padding: 12px !important;
- box-shadow: none;
- border-radius: 0.2rem;
- }
-
- .toast-center-center {
- position: fixed;
- min-width: 220px;
- top: 50%;
- left: 50%;
- text-align: center;
- transform: translateX(-50%);
- color: #FFFFFF;
- border-radius: 0.2rem;
- }
-
- @media (max-width: 480px) and (min-width: 241px) {
- #toast-container>div {
- min-width: 80px !important;
- width: auto;
- }
- }
|