Files
sykl-new/pages/record/index.wxss
2023-12-15 17:53:08 +08:00

243 lines
4.1 KiB
Plaintext

/* 顶部 */
.navigation {
position: fixed;
top: 0;
left: 0;
z-index: 999;
width: 100%;
height: 90rpx;
background-color: transparent;
transition: .5s;
}
.navigation.active {
background-color: #ffffff;
}
.navigation-arrow {
width: 120rpx;
margin-left: 40rpx;
}
.recordBack {
width: 100vw;
height: 100vh;
display: block;
}
.recordCont {
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-box-pack: center;
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
z-index: 9;
text-align: center;
padding: 0 100rpx 40rpx;
box-sizing: border-box;
overflow-y: scroll;
}
.recordCont-title {
font-weight: 600;
font-size: 86rpx;
letter-spacing: 2px;
padding-top: 100rpx;
}
.recordCont-tips {
display: inline-block;
border: 2rpx solid #2e2f2f;
font-size: 28rpx;
padding: 0 30rpx;
border-radius: 90rpx;
line-height: 50rpx;
margin-top: 30rpx;
position: relative;
margin-bottom: 40rpx;
}
.recordCont-tips::after {
position: absolute;
content: '';
left: calc(50% - 45rpx);
bottom: -40rpx;
width: 90rpx;
height: 4rpx;
background-color: #2e2f2f;
}
.recordCont-img {
width: 100%;
}
.recordCont-text text {
display: block;
line-height: 54rpx;
font-size: 30rpx;
}
.recordCont-btn {
background-color: #000000;
color: #ffffff;
display: inline-block;
height: 100rpx;
line-height: 100rpx;
padding: 0 130rpx;
font-size: 38rpx;
margin: 50rpx 0 30rpx;
border-radius: 100rpx;
}
.recordCont-record {
font-size: 30rpx;
}
/* 饮水量弹出 */
.captureEject {
position: fixed;
width: 100vw;
height: 100vh;
left: 0;
top: 0;
background-color: rgba(0, 0, 0, .6);
z-index: 10000;
display: none;
}
.captureEject.active {
display: block;
}
.captureCont {
-webkit-box-orient: vertical;
-webkit-box-pack: center;
position: fixed;
left: 0;
right: 0;
top: 0;
bottom: 0;
z-index: 100000;
padding: 0 15%;
box-sizing: border-box;
text-align: center;
display: none;
}
.captureCont.active {
display: -webkit-box;
}
.captureCont-write {
background-color: #ffffff;
border-radius: 20rpx;
padding: 50rpx;
box-sizing: border-box;
}
.captureCont-write-img {
width: 60%;
}
.captureCont-write-text {
color: #528cff;
font-weight: 600;
margin-top: 20rpx;
}
/* 完善信息弹出 */
.refertoEject {
position: fixed;
width: 100vw;
height: 100vh;
left: 0;
top: 0;
background-color: rgba(0, 0, 0, .6);
z-index: 10000;
display: none;
}
.refertoEject.active {
display: block;
}
.refertoCont {
-webkit-box-orient: vertical;
-webkit-box-pack: center;
position: fixed;
left: 0;
right: 0;
top: 0;
bottom: 0;
z-index: 100000;
padding: 0 15%;
box-sizing: border-box;
text-align: center;
display: none;
}
.refertoCont.active {
display: -webkit-box;
}
.refertoCont-text {
background-color: #ffffff;
border-radius: 20rpx;
box-sizing: border-box;
position: relative;
}
.refertoCont-ls {
width: 260rpx;
}
.refertoCont-title {
text-align: center;
font-weight: 600;
padding: 40rpx 0;
font-size: 34rpx;
box-sizing: border-box;
}
.refertoCont-tips {
line-height: 48rpx;
text-align: center;
padding: 0 60rpx 30rpx;
box-sizing: border-box;
}
.publicPop-btn {
line-height: 80rpx;
font-size: 32rpx;
display: flex;
border-top: 2rpx solid #e6e6e6;
}
.publicPop-btn-go {
width: 50%;
text-align: center;
height: 100rpx;
line-height: 100rpx;
font-size: 30rpx;
}
.publicPop-btn-border {
color: #528cff;
position: relative;
}
.publicPop-btn-border::after {
position: absolute;
content: '';
left: 0;
top: 0;
width: 2rpx;
height: 100rpx;
background-color: #e6e6e6;
}