2024-02-04 14:32:16 +08:00
|
|
|
* {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
font-family: HYQiHei;
|
|
|
|
list-style: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
html {
|
|
|
|
font-size: 26.66666667vw;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
-webkit-text-size-adjust: 100% !important;
|
|
|
|
text-size-adjust: 100% !important;
|
|
|
|
-moz-text-size-adjust: 100% !important;
|
|
|
|
font-size: 0.14rem;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (min-width: 900px) {
|
|
|
|
html {
|
|
|
|
transform: scale(0.3);
|
|
|
|
background: #fff;
|
|
|
|
transform-origin: 50% 0px 0px;
|
|
|
|
height: calc(100vh);
|
|
|
|
}
|
|
|
|
#app {
|
|
|
|
height: 6rem !important;
|
|
|
|
background: #f4f6f9;
|
|
|
|
overflow-y: scroll;
|
|
|
|
}
|
|
|
|
.mask {
|
|
|
|
height: 6rem !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#app {
|
|
|
|
width: 100%;
|
2024-03-01 10:00:02 +08:00
|
|
|
min-height: 100%;
|
2024-02-04 14:32:16 +08:00
|
|
|
background: #f0f5ff;
|
|
|
|
box-sizing: border-box;
|
|
|
|
position: relative;
|
2024-03-01 10:00:02 +08:00
|
|
|
padding-bottom: 0.2rem;
|
2024-02-04 14:32:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#app .banner {
|
|
|
|
width: 100%;
|
|
|
|
max-height: 100%;
|
|
|
|
}
|
|
|
|
|
2024-03-01 10:00:02 +08:00
|
|
|
#app .mask {
|
|
|
|
position: fixed;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
background-color: rgba(0, 0, 0, 0.2);
|
|
|
|
text-align: center;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
z-index: 999;
|
|
|
|
}
|
|
|
|
|
|
|
|
#app .loading,
|
|
|
|
#app .loading > div {
|
|
|
|
position: relative;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
|
|
|
#app .loading {
|
|
|
|
display: block;
|
|
|
|
font-size: 0;
|
|
|
|
color: #5983ff;
|
|
|
|
}
|
|
|
|
|
|
|
|
#app .loading.la-dark {
|
|
|
|
color: #333;
|
|
|
|
}
|
|
|
|
|
|
|
|
#app .loading > div {
|
|
|
|
display: inline-block;
|
|
|
|
float: none;
|
|
|
|
background-color: currentColor;
|
|
|
|
border: 0 solid currentColor;
|
|
|
|
}
|
|
|
|
|
|
|
|
#app .loading {
|
|
|
|
width: 0.34rem;
|
|
|
|
height: 0.34rem;
|
|
|
|
animation: ball-spin-rotate 2s infinite linear;
|
|
|
|
}
|
|
|
|
|
|
|
|
#app .loading > div {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
width: 60%;
|
|
|
|
height: 60%;
|
|
|
|
border-radius: 100%;
|
|
|
|
animation: ball-spin-bounce 2s infinite ease-in-out;
|
|
|
|
}
|
|
|
|
|
|
|
|
#app .loading > div:last-child {
|
|
|
|
top: auto;
|
|
|
|
bottom: 0;
|
|
|
|
animation-delay: -1s;
|
|
|
|
}
|
|
|
|
|
|
|
|
#app .loading.la-sm {
|
|
|
|
width: 0.16rem;
|
|
|
|
height: 0.16rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
#app .loading.la-2x {
|
|
|
|
width: 0.64rem;
|
|
|
|
height: 0.64rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
#app .loading.la-3x {
|
|
|
|
width: 0.96rem;
|
|
|
|
height: 0.96rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes ball-spin-rotate {
|
|
|
|
100% {
|
|
|
|
transform: rotate(360deg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes ball-spin-bounce {
|
|
|
|
0%,
|
|
|
|
100% {
|
|
|
|
transform: scale(0);
|
|
|
|
}
|
|
|
|
50% {
|
|
|
|
transform: scale(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-02-04 14:32:16 +08:00
|
|
|
#app .main {
|
|
|
|
position: relative;
|
|
|
|
width: 90%;
|
|
|
|
background: #fff;
|
|
|
|
margin: 0 auto;
|
|
|
|
margin-top: -0.24rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
#app .main .product-box {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: space-between;
|
|
|
|
padding: 0.2rem 0.2rem 0.1rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
#app .main .product-box .product {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
#app .main .product-box .product img {
|
|
|
|
max-width: 0.8rem;
|
|
|
|
max-height: 0.8rem;
|
|
|
|
border-radius: 0.06rem;
|
|
|
|
margin-right: 0.1rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
#app .main .product-box .product .p-title {
|
|
|
|
font-weight: bold;
|
|
|
|
margin-bottom: 0.08rem;
|
|
|
|
font-size: 0.16rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
#app .main .product-box .product .p-user {
|
|
|
|
color: #666666;
|
|
|
|
font-size: 0.12rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
#app .main .footer {
|
|
|
|
padding: 0rem 0.2rem 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#app .main .footer .time-box {
|
|
|
|
color: #666666;
|
|
|
|
font-size: 0.14rem;
|
|
|
|
margin-top: 0.18rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
#app .main .footer .time-box .time {
|
|
|
|
display: inline-block;
|
|
|
|
margin-left: 0.06rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
#app .main .footer .copy-box {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: space-between;
|
|
|
|
}
|
|
|
|
|
|
|
|
#app .main .footer .copy-box img {
|
|
|
|
margin-top: 0.18rem;
|
|
|
|
width: 0.15rem;
|
|
|
|
height: 0.15rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
#app .main .dashedline {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#app .main .bottom-img {
|
|
|
|
width: 100%;
|
|
|
|
margin-bottom: -0.14rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
#app .prompt {
|
|
|
|
display: inline-block;
|
|
|
|
min-width: 40%;
|
|
|
|
padding: 0.08rem;
|
|
|
|
box-sizing: border-box;
|
|
|
|
background: rgba(0, 0, 0, 0.3);
|
|
|
|
border-radius: 0.2rem;
|
|
|
|
color: #fff;
|
2024-02-04 15:17:19 +08:00
|
|
|
position: absolute;
|
2024-02-04 14:32:16 +08:00
|
|
|
top: 5%;
|
|
|
|
left: -40%;
|
|
|
|
text-align: center;
|
|
|
|
font-size: 0.14rem;
|
|
|
|
transition: left 0.2s;
|
|
|
|
z-index: 99999;
|
|
|
|
}
|
|
|
|
|
|
|
|
#app .show {
|
|
|
|
left: calc(50% - 40% / 2);
|
2024-02-04 15:17:19 +08:00
|
|
|
display: block;
|
2024-02-04 14:32:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#app .back {
|
|
|
|
position: fixed;
|
|
|
|
top: 0.1rem;
|
|
|
|
left: 0.1rem;
|
|
|
|
width: 0.36rem;
|
|
|
|
height: 0.36rem;
|
|
|
|
z-index: 99999;
|
|
|
|
}
|
|
|
|
|
|
|
|
#app .but {
|
|
|
|
font-size: 0.18rem;
|
|
|
|
width: 90%;
|
|
|
|
background: #ff5d5d;
|
|
|
|
margin: 0 auto;
|
|
|
|
margin-top: 0.6rem;
|
|
|
|
color: #fff;
|
|
|
|
border-radius: 1rem;
|
|
|
|
text-align: center;
|
|
|
|
padding: 0.1rem 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#app .refresh {
|
2024-03-25 11:46:47 +08:00
|
|
|
background: #5983ff;
|
2024-02-04 14:32:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#app .card {
|
|
|
|
text-align: center;
|
|
|
|
padding-top: 0.2rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
#app .card .logo {
|
|
|
|
display: block;
|
|
|
|
max-width: 1.2rem;
|
|
|
|
max-height: 1.2rem;
|
|
|
|
margin: 0 auto 0.1rem;
|
|
|
|
border-radius: 0.1rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
#app .card .p-title {
|
|
|
|
margin-top: 0.1rem;
|
|
|
|
font-weight: bold;
|
|
|
|
margin-bottom: 0.08rem;
|
|
|
|
font-size: 0.16rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
#app .card .p-time {
|
|
|
|
color: #666666;
|
|
|
|
font-size: 0.12rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
#app .c-item {
|
|
|
|
padding: 0.12rem 0.16rem;
|
|
|
|
background: #fff;
|
|
|
|
border-radius: 0.1rem;
|
|
|
|
width: 90%;
|
|
|
|
margin: 0 auto;
|
|
|
|
margin-top: 0.2rem;
|
|
|
|
box-sizing: border-box;
|
2024-03-25 11:46:47 +08:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2024-02-04 14:32:16 +08:00
|
|
|
justify-content: space-between;
|
|
|
|
}
|
|
|
|
|
|
|
|
#app .c-item div {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
#app .c-item .num {
|
|
|
|
margin-left: 0.1rem;
|
2024-03-25 11:46:47 +08:00
|
|
|
width: 2.1rem;
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
2024-02-04 14:32:16 +08:00
|
|
|
}
|
|
|
|
|
2024-03-01 10:00:02 +08:00
|
|
|
#app .c-item .copy {
|
2024-02-04 14:32:16 +08:00
|
|
|
width: 0.15rem;
|
|
|
|
height: 0.15rem;
|
|
|
|
}
|
|
|
|
|
2024-03-25 11:46:47 +08:00
|
|
|
#app .c-item .card-copy {
|
|
|
|
display: flex;
|
|
|
|
justify-content: right;
|
|
|
|
}
|
|
|
|
|
2024-02-27 16:46:39 +08:00
|
|
|
#app .detail_url {
|
|
|
|
display: block;
|
|
|
|
margin: 0 auto;
|
|
|
|
max-width: 100%;
|
|
|
|
max-height: 100%;
|
|
|
|
}
|
|
|
|
|
2024-02-04 14:32:16 +08:00
|
|
|
#app .mt30 {
|
|
|
|
margin-top: 0.4rem;
|
|
|
|
}
|
2024-03-25 13:59:34 +08:00
|
|
|
|
|
|
|
#app .tip-card {
|
|
|
|
font-size: 0.12rem;
|
2024-03-25 14:02:32 +08:00
|
|
|
color: #acbeeb;
|
2024-03-25 13:59:34 +08:00
|
|
|
/* padding-left: 0.2rem; */
|
2024-03-25 14:02:32 +08:00
|
|
|
padding-top: 1rem;
|
2024-03-25 13:59:34 +08:00
|
|
|
text-align: center;
|
|
|
|
}
|