pay-employee/src/pages/me/style.scss

74 lines
1.7 KiB
SCSS
Raw Normal View History

2025-07-08 16:49:39 +08:00
.me_page {
background: linear-gradient(180deg, #44ba04 0%, #44ba04 300rpx, #fff 650rpx);
}
.me_data_item {
display: flex;
align-items: center;
margin: 30rpx 40rpx 10rpx 40rpx;
border-radius: 10rpx;
text-align: center;
.items {
flex: 1;
padding: 30rpx 0;
font-size: 28rpx;
.label {
font-size: 23rpx;
padding-bottom: 10rpx;
color: #999;
}
.value {
color: #f00;
font-size: 33rpx;
font-weight: 600;
}
}
}
.menu_list {
padding: 30rpx;
.items {
display: flex;
align-items: center;
justify-content: space-between;
padding: 30rpx;
margin-bottom: 30rpx;
font-size: 26rpx;
box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.1);
background-color: #fff;
border-radius: 16rpx;
.items_label {
display: flex;
align-items: center;
}
image {
width: 48rpx;
height: 48rpx;
margin: 0 20rpx 0 0;
}
.contact_btn {
width: 100%;
display: flex;
align-items: center;
justify-content: space-between;
padding: 0;
}
}
}
.contact_btn {
border: none !important; /* 去掉边框 */
background-color: transparent; /* 去掉背景色 */
padding: 0; /* 去掉内边距 */
line-height: 1; /* 设置行高 */
color: inherit; /* 继承父元素的颜色 */
font-size: inherit; /* 继承父元素的字体大小 */
display: inline-flex; /* 设置为行内弹性盒子,以便更好地控制布局 */
align-items: center; /* 垂直居中 */
justify-content: center; /* 水平居中 */
outline: none; /* 去掉轮廓 */
box-shadow: none; /* 去掉阴影 */
}
button:after {
border: none !important; /* 去掉边框 */
}