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

159 lines
2.8 KiB
Plaintext

page {
padding: 30rpx;
box-sizing: border-box;
background-color: #f6f6f6;
}
.baseTitle {
margin-bottom: 50rpx;
font-size: 26rpx;
}
.baseTitle text {
display: block;
font-weight: 600;
font-size: 32rpx;
margin-bottom: 10rpx;
}
.baseWrite {
background-color: #ffffff;
padding: 30rpx;
box-sizing: border-box;
border-radius: 20rpx;
box-shadow: 0 0 10rpx rgba(0, 0, 0, .1);
margin-bottom: 30rpx;
}
.baseWrite-title {
margin-bottom: 30rpx;
display: flex;
}
.baseWrite-title-name {
flex: 1;
}
.baseWrite-title text {
color: red;
padding-left: 5rpx;
}
.baseWrite-birthday {
border: 2rpx solid #e7e7e7;
margin-top: 30rpx;
border-radius: 20rpx;
position: relative;
line-height: 74rpx;
padding: 0 30rpx;
box-sizing: border-box;
font-size: 30rpx;
}
.baseWrite-birthday-icon {
width: 34rpx;
height: 34rpx;
position: absolute;
right: 30rpx;
top: 20rpx;
}
.baseBtn {
text-align: center;
background-color: #528cff;
color: #ffffff;
line-height: 100rpx;
margin-top: 80rpx;
border-radius: 20rpx;
font-weight: 600;
font-size: 32rpx;
box-shadow: 0 0 10rpx rgba(12, 83, 223, .5);
}
/* 饮水量弹出 */
.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: #f6f9fb;
border-radius: 20rpx;
box-sizing: border-box;
position: relative;
}
.refertoCont-ls {
width: 200rpx;
}
.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: 30rpx 60rpx;
box-sizing: border-box;
}
.refertoCont-tips text {
color: #528cff;
font-weight: 600;
padding-right: 10rpx;
}
.publicPop-btn {
line-height: 80rpx;
font-size: 32rpx;
display: flex;
border-top: 2rpx solid #e6e6e6;
padding: 30rpx 50rpx;
box-sizing: border-box;
}
.publicPop-btn-go {
width: 100%;
color: #ffffff;
background-color: #528cff;
text-align: center;
height: 90rpx;
line-height: 90rpx;
font-size: 30rpx;
border-radius: 90rpx;
}