You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
172 lines
2.4 KiB
172 lines
2.4 KiB
@media screen and (min-width: 320px) {
|
|
html {
|
|
font-size: 62.5%;
|
|
}
|
|
}
|
|
|
|
@media screen and (min-width: 360px) {
|
|
html {
|
|
font-size: 65%;
|
|
}
|
|
}
|
|
|
|
@media screen and (min-width: 384px) {
|
|
html {
|
|
font-size: 67.5%;
|
|
}
|
|
}
|
|
|
|
@media screen and (min-width: 400px) {
|
|
html {
|
|
font-size: 70%;
|
|
}
|
|
}
|
|
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
html,
|
|
body {
|
|
width: 100%;
|
|
moz-user-select: -moz-none;
|
|
-moz-user-select: none;
|
|
-o-user-select: none;
|
|
-khtml-user-select: none;
|
|
-webkit-user-select: none;
|
|
-ms-user-select: none;
|
|
user-select: none;
|
|
}
|
|
|
|
body {
|
|
background-color: #fff;
|
|
box-sizing: border-box;
|
|
}
|
|
.header {
|
|
width: 100%;
|
|
height: 48px;
|
|
background-color: #000;
|
|
}
|
|
.container {
|
|
width: 100%;
|
|
padding-bottom: 6rem;
|
|
}
|
|
.bg {
|
|
width: 100%;
|
|
}
|
|
.footer {
|
|
position: fixed;
|
|
bottom: 0;
|
|
left: 0;
|
|
z-index: 10;
|
|
}
|
|
.swiper-container {
|
|
width: 100%;
|
|
padding-bottom: 1rem;
|
|
}
|
|
.swiper-container img {
|
|
width: 100%;
|
|
}
|
|
.swiper-slide {
|
|
box-sizing: border-box;
|
|
padding: 1.2rem;
|
|
/* background-color: pink; */
|
|
}
|
|
.swiper-pagination {
|
|
}
|
|
.swiper-pagination-bullet {
|
|
width: 6px !important;
|
|
height: 6px !important;
|
|
background-color: rgba(0, 0, 0, 0.5) !important;
|
|
}
|
|
.swiper-pagination-bullet-active {
|
|
width: 1rem !important;
|
|
border-radius: 2.3rem !important;
|
|
background-color: #ababab !important;
|
|
}
|
|
|
|
.tips {
|
|
width: 100%;
|
|
text-align: center;
|
|
line-height: 2;
|
|
}
|
|
.top-header {
|
|
display: none;
|
|
width: 100%;
|
|
position: fixed;
|
|
top: -5px;
|
|
left: 0;
|
|
z-index: 2222;
|
|
}
|
|
|
|
.banner {
|
|
position: relative;
|
|
}
|
|
|
|
.banner .account {
|
|
position: absolute;
|
|
z-index: 11;
|
|
width: 4rem;
|
|
height: 4rem;
|
|
top: 17rem;
|
|
left: 13vw;
|
|
}
|
|
|
|
.mx {
|
|
position: absolute;
|
|
z-index: 11;
|
|
width: 4rem;
|
|
height: 4rem;
|
|
top: 17rem;
|
|
left: 55vw;
|
|
}
|
|
|
|
.billing {
|
|
width: 100%;
|
|
min-height: 100%;
|
|
left: 100%;
|
|
position: fixed;
|
|
z-index: 99;
|
|
background-color: #fff;
|
|
padding-top: 48px;
|
|
}
|
|
|
|
.billing:target {
|
|
left: 0;
|
|
transition: left 0.4s;
|
|
}
|
|
|
|
.account-header {
|
|
position: relative;
|
|
}
|
|
.account-back {
|
|
width: 4rem;
|
|
height: 4rem;
|
|
position: absolute;
|
|
left: 0;
|
|
top: 0.5rem;
|
|
z-index: 99;
|
|
}
|
|
|
|
.container:target .billing {
|
|
left: 100%;
|
|
transition: left 0.4s;
|
|
position: fixed;
|
|
}
|
|
|
|
.loading {
|
|
width: 3rem;
|
|
position: fixed;
|
|
z-index: 100;
|
|
top: 48%;
|
|
left: 50%;
|
|
margin-left: -1.5rem;
|
|
animation: move 2s linear infinite;
|
|
}
|
|
|
|
@keyframes move {
|
|
100% {
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|
|
|