40 lines
861 B
SCSS
40 lines
861 B
SCSS
/* 设置全局背景色 */
|
|
page {
|
|
background-color: #fff;
|
|
}
|
|
|
|
/** 顶部导航栏右侧按钮样式 */
|
|
.public-navbar__right-btn {
|
|
font-family: PingFang SC, PingFang SC;
|
|
font-weight: 500;
|
|
font-size: 28rpx;
|
|
color: #ffffff;
|
|
font-style: normal;
|
|
text-transform: none;
|
|
background: linear-gradient(0deg, #00d993 0%, #00d9c5 100%);
|
|
padding: 12rpx 36rpx;
|
|
border-radius: 8rpx;
|
|
}
|
|
|
|
/** uni-swipe-action 滑动右边样式 */
|
|
.public-uni-swipe-action-right {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
background: rgb(47, 194, 17);
|
|
width: 130rpx;
|
|
.iocn-name {
|
|
font-family: PingFang SC, PingFang SC;
|
|
font-weight: 500;
|
|
font-size: 28rpx;
|
|
color: #fff;
|
|
text-align: left;
|
|
font-style: normal;
|
|
text-transform: none;
|
|
}
|
|
&:last-child {
|
|
background: rgb(206, 59, 22);
|
|
}
|
|
}
|