134 lines
1.9 KiB
Plaintext
134 lines
1.9 KiB
Plaintext
page {
|
|
background-color: #F5F7F6;
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
|
|
}
|
|
|
|
.container {
|
|
min-height: 100vh;
|
|
padding-bottom: 32rpx;
|
|
}
|
|
|
|
/* 顶部导航栏 */
|
|
.nav-bar {
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 120rpx 32rpx 20rpx 32rpx;
|
|
background: #FFFFFF;
|
|
}
|
|
|
|
.nav-logo {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.logo-icon {
|
|
width: 56rpx;
|
|
height: 56rpx;
|
|
border-radius: 16rpx;
|
|
background: #FFFFFF;
|
|
padding: 4rpx;
|
|
}
|
|
|
|
.logo-text {
|
|
font-size: 36rpx;
|
|
font-weight: 700;
|
|
color: #1F2937;
|
|
margin-left: 16rpx;
|
|
}
|
|
|
|
/* Header区域 */
|
|
.header {
|
|
background: #FFFFFF;
|
|
padding: 24rpx 32rpx 40rpx 32rpx;
|
|
margin-bottom: 20rpx;
|
|
}
|
|
|
|
.title {
|
|
display: block;
|
|
font-size: 40rpx;
|
|
font-weight: 700;
|
|
color: #1F2937;
|
|
}
|
|
|
|
.subtitle {
|
|
display: block;
|
|
font-size: 26rpx;
|
|
color: #9CA3AF;
|
|
margin-top: 12rpx;
|
|
}
|
|
|
|
/* 加载和空状态 */
|
|
.loading,
|
|
.empty {
|
|
text-align: center;
|
|
padding: 120rpx 32rpx;
|
|
color: #9CA3AF;
|
|
font-size: 28rpx;
|
|
}
|
|
|
|
/* 列表区域 */
|
|
.list {
|
|
padding: 0 32rpx;
|
|
}
|
|
|
|
.item {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
background: #FFFFFF;
|
|
border-radius: 24rpx;
|
|
padding: 32rpx;
|
|
margin-bottom: 20rpx;
|
|
box-shadow: 0 4rpx 20rpx rgba(0, 0, 0, 0.06);
|
|
border: 2rpx solid #F0F0F0;
|
|
}
|
|
|
|
.info {
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex: 1;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.name {
|
|
font-size: 30rpx;
|
|
font-weight: 700;
|
|
color: #1F2937;
|
|
line-height: 1.4;
|
|
margin-bottom: 16rpx;
|
|
word-wrap: break-word;
|
|
}
|
|
|
|
.phones {
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-wrap: wrap;
|
|
gap: 12rpx;
|
|
}
|
|
|
|
.phone-wrap {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 12rpx;
|
|
padding: 12rpx 20rpx;
|
|
background: #F5F7F6;
|
|
border-radius: 12rpx;
|
|
width: fit-content;
|
|
}
|
|
|
|
.phone {
|
|
font-size: 28rpx;
|
|
color: #2D6A4F;
|
|
line-height: 1.4;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.action {
|
|
margin-left: 24rpx;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.icon {
|
|
font-size: 40rpx;
|
|
}
|