56 lines
761 B
Plaintext
56 lines
761 B
Plaintext
|
|
/**app.wxss**/
|
||
|
|
view,
|
||
|
|
cover-view,
|
||
|
|
scroll-view,
|
||
|
|
swiper,
|
||
|
|
swiper-item,
|
||
|
|
movable-area,
|
||
|
|
movable-view,
|
||
|
|
button,
|
||
|
|
input,
|
||
|
|
textarea,
|
||
|
|
label,
|
||
|
|
navigator {
|
||
|
|
box-sizing: border-box;
|
||
|
|
}
|
||
|
|
|
||
|
|
page {
|
||
|
|
--safe-bottom: env(safe-area-inset-bottom);
|
||
|
|
}
|
||
|
|
|
||
|
|
.container {
|
||
|
|
position: relative;
|
||
|
|
display: flex;
|
||
|
|
flex-direction: column;
|
||
|
|
align-items: center;
|
||
|
|
width: 100vw;
|
||
|
|
height: 100vh;
|
||
|
|
padding-bottom: var(--safe-bottom);
|
||
|
|
}
|
||
|
|
|
||
|
|
.header {
|
||
|
|
width: 100%;
|
||
|
|
}
|
||
|
|
|
||
|
|
.header button {
|
||
|
|
font-size: 16px;
|
||
|
|
line-height: 40px;
|
||
|
|
width: 100% !important;
|
||
|
|
border-bottom: 1px solid #dfdfdf;
|
||
|
|
}
|
||
|
|
|
||
|
|
.device_item {
|
||
|
|
padding: 15px;
|
||
|
|
border-bottom: 1px solid #dfdfdf;
|
||
|
|
}
|
||
|
|
|
||
|
|
.weight {
|
||
|
|
width: 100%;
|
||
|
|
margin: 15px;
|
||
|
|
padding-bottom: 15px;
|
||
|
|
text-align: center;
|
||
|
|
font-size: 18px;
|
||
|
|
font-weight: 700;
|
||
|
|
border-bottom: 1px solid #dfdfdf;
|
||
|
|
}
|