File size: 1,235 Bytes
e636070 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 |
/* profile-style.css */
/* 标题样式 */
.profiles-title {
font-size: 1.2em;
color: #5f3737;
margin: 0 0 10px 0;
padding-bottom: 5px;
border-bottom: 1px solid #5f3737;
}
/* 角色卡片容器 */
.profiles-container {
display: flex;
flex-wrap: wrap;
gap: 10px;
padding: 5px;
position: relative;
}
/* 角色卡片 */
.character-card {
display: flex;
width: 100%;
background-color: #fff;
border: 1px solid #ddd;
border-radius: 8px;
padding: 8px;
cursor: pointer;
transition: all 0.3s ease;
}
.character-card:hover {
transform: translateY(-2px);
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
/* 角色头像 */
.character-icon {
width: 30px;
height: 30px;
border-radius: 50%;
overflow: hidden;
margin-right: 10px;
flex-shrink: 1;
}
.character-icon img {
width: 100%;
height: 100%;
object-fit: cover;
}
/* 角色信息 */
.character-info {
flex: 1;
}
.character-name {
font-weight: bold;
color: #5f3737;
margin-bottom: 4px;
}
.character-description {
font-size: 0.9em;
color: #666;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}
|