mobileclient/orderDetails/orderCss.css

228 lines
3.5 KiB
CSS

* {
margin: 0;
padding: 0;
font-family: HYQiHei;
list-style: none;
color: #333333;
}
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%;
height: 100%;
background: #f0f5ff;
box-sizing: border-box;
position: relative;
}
#app .banner {
width: 100%;
max-height: 100%;
}
#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;
position: absolute;
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);
display: block;
}
#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 {
background: #5983FF;
}
#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 {
display: flex;
align-items: center;
padding: 0.12rem 0.16rem;
background: #fff;
border-radius: 0.1rem;
width: 90%;
margin: 0 auto;
margin-top: 0.2rem;
box-sizing: border-box;
justify-content: space-between;
}
#app .c-item div {
display: flex;
align-items: center;
}
#app .c-item .num {
margin-left: 0.1rem;
}
#app .c-item img {
width: 0.15rem;
height: 0.15rem;
}
#app .mt30 {
margin-top: 0.4rem;
}