You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
128 lines
1.8 KiB
128 lines
1.8 KiB
.container {
|
|
background-color: #f5f5f5;
|
|
min-height: 100vh;
|
|
padding-bottom: 15px;
|
|
}
|
|
|
|
.user-info {
|
|
background: linear-gradient(135deg, #4CAF50 0%, #8BC34A 100%);
|
|
padding: 30px 20px;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.avatar {
|
|
width: 80px;
|
|
height: 80px;
|
|
border-radius: 50%;
|
|
background-color: white;
|
|
padding: 5px;
|
|
margin-right: 15px;
|
|
}
|
|
|
|
.avatar image {
|
|
width: 100%;
|
|
height: 100%;
|
|
border-radius: 50%;
|
|
}
|
|
|
|
.user-details {
|
|
color: white;
|
|
}
|
|
|
|
.username {
|
|
font-size: 20px;
|
|
font-weight: 600;
|
|
display: block;
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
.user-desc {
|
|
font-size: 14px;
|
|
opacity: 0.9;
|
|
}
|
|
|
|
.function-list {
|
|
background-color: white;
|
|
margin: 15px;
|
|
border-radius: 15px;
|
|
overflow: hidden;
|
|
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
|
|
}
|
|
|
|
.function-item {
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 15px 20px;
|
|
border-bottom: 1px solid #f5f5f5;
|
|
color: #333;
|
|
}
|
|
|
|
.function-item:last-child {
|
|
border-bottom: none;
|
|
}
|
|
|
|
.function-icon {
|
|
width: 30px;
|
|
height: 30px;
|
|
border-radius: 50%;
|
|
background-color: #e8f5e9;
|
|
color: #4CAF50;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
margin-right: 15px;
|
|
}
|
|
|
|
.function-icon .iconfont {
|
|
font-size: 18px;
|
|
}
|
|
|
|
.function-name {
|
|
flex: 1;
|
|
font-size: 16px;
|
|
}
|
|
|
|
.function-item .icon-arrow-right {
|
|
color: #ccc;
|
|
font-size: 16px;
|
|
}
|
|
|
|
.stats-card {
|
|
background-color: white;
|
|
margin: 0 15px;
|
|
border-radius: 15px;
|
|
padding: 20px;
|
|
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
|
|
}
|
|
|
|
.stats-title {
|
|
font-size: 18px;
|
|
font-weight: 600;
|
|
color: #333;
|
|
display: block;
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
.stats-grid {
|
|
display: flex;
|
|
justify-content: space-around;
|
|
}
|
|
|
|
.stats-item {
|
|
text-align: center;
|
|
flex: 1;
|
|
}
|
|
|
|
.stats-value {
|
|
font-size: 22px;
|
|
font-weight: 600;
|
|
color: #333;
|
|
display: block;
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
.stats-label {
|
|
font-size: 14px;
|
|
color: #666;
|
|
}
|
|
|