103 lines
1.5 KiB
Plaintext
103 lines
1.5 KiB
Plaintext
/* packageE/healthy/healthyIndex/healthyIndex.wxss */
|
|
|
|
view,
|
|
input,
|
|
text {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.search {
|
|
width: 100%;
|
|
padding: 10rpx 26rpx 33rpx 24rpx;
|
|
background-color: #fff;
|
|
}
|
|
|
|
.search .searchWrapper {
|
|
display: flex;
|
|
align-items: center;
|
|
width: 100%;
|
|
height: 72rpx;
|
|
padding-left: 24rpx;
|
|
background-color: #f6f7f9;
|
|
border-radius: 4rpx;
|
|
}
|
|
|
|
.search .searchWrapper icon {
|
|
width: 31rpx;
|
|
height: 31rpx;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.search .searchWrapper input {
|
|
margin-left: 22rpx;
|
|
flex: 1;
|
|
font-size: 28rpx;
|
|
letter-spacing: 2rpx;
|
|
color: #000;
|
|
}
|
|
|
|
.banner {
|
|
background: #fff;
|
|
padding: 0 26rpx 40rpx 24rpx;
|
|
}
|
|
|
|
.banner image {
|
|
width: 700rpx;
|
|
height: 299rpx;
|
|
border-radius: 22rpx;
|
|
}
|
|
|
|
.active {
|
|
padding: 32rpx 0 27rpx 24rpx;
|
|
}
|
|
|
|
.active text {
|
|
font-size: 36rpx;
|
|
font-weight: bold;
|
|
letter-spacing: 3rpx;
|
|
color: #000;
|
|
}
|
|
|
|
.activeWrapper {
|
|
display: grid;
|
|
padding-left: 25rpx;
|
|
padding-bottom: 30rpx;
|
|
grid-template-columns: repeat(2, 336rpx);
|
|
grid-column-gap: 25rpx;
|
|
grid-row-gap: 20rpx;
|
|
}
|
|
|
|
.activeWrapper image {
|
|
width: 336rpx;
|
|
height: 470rpx;
|
|
border-radius: 28rpx;
|
|
}
|
|
|
|
.cursor {
|
|
position: fixed;
|
|
bottom: 115rpx;
|
|
right: 25rpx;
|
|
width: 120rpx;
|
|
height: 120rpx;
|
|
background-image:
|
|
linear-gradient(
|
|
0deg,
|
|
#3eca9b 0%,
|
|
#43d7a5 100%
|
|
),
|
|
linear-gradient(
|
|
#00c481,
|
|
#00c481
|
|
);
|
|
background-blend-mode:
|
|
normal,
|
|
normal;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
color: #fff;
|
|
border-radius: 50%;
|
|
}
|