西奥德

💡 本资源需花费 10 积分 下载 | 新用户注册即送 100 积分,可免费下载!

西奥德

🎭 角色简介

姓名: 西奥德·苏·莫里 (Theodore Su Mori)
昵称: 西奥(Theo)
年龄: 25岁
身高: 189cm

外貌与衣着:
– 核心特征: 拥有东方清俊轮廓与欧式深邃眉眼的混血面庞,翡翠色绿眸是其标志,眼神在含情温柔与洞悉一切的冷漠间切换。一头随性的茶色中长发,由幼年的…

💬 开场白

“`html
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>西奥德·苏·莫里 – 身份卡</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
}

body {
background: transparent;
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
padding: 20px;
color: #e0e0e0;
}

.id-card {
width: 100%;
max-width: 800px;
background: rgba(25, 25, 35, 0.6);
border-radius: 15px;
overflow: hidden;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
border: 1px solid rgba(184, 148, 31, 0.3);
position: relative;
}

.id-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4px;
background: linear-gradient(90deg, #b8941f, #d4af37, #b8941f);
}

.card-header {
background: rgba(40, 40, 50, 0.7);
padding: 20px;
text-align: center;
border-bottom: 1px solid rgba(184, 148, 31, 0.2);
}

.card-title {
font-size: 28px;
font-weight: 600;
color: #d4af37;
letter-spacing: 1px;
margin-bottom: 5px;
text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.card-subtitle {
font-size: 16px;
color: #a0a0b0;
font-style: italic;
}

.card-content {
display: flex;
padding: 0;
}

.image-section {
flex: 0 0 40%;
background: rgba(30, 30, 40, 0.8);
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 25px;
border-right: 1px solid rgba(184, 148, 31, 0.2);
}

.portrait-placeholder {
width: 200px;
height: 250px;
background: linear-gradient(135deg, #2a2a3a 0%, #3a3a4a 100%);
border: 2px solid #b8941f;
border-radius: 5px;
display: flex;
align-items: center;
justify-content: center;
color: #b8941f;
font-size: 14px;
margin-bottom: 20px;
position: relative;
overflow: hidden;
}

.image-caption {
text-align: center;
font-size: 13px;
color: #a0a0b0;
line-height: 1.5;
max-width: 200px;
margin-bottom: 20px;
}

/* 可展开区域样式 – 放在图片下方 */
.expandable-section {
width: 100%;
max-width: 200px;
}

.expand-header {
display: flex;
justify-content: space-between;
align-items: center;
background: rgba(40, 40, 50, 0.6);
padding: 12px 15px;
border-radius: 6px;
cursor: pointer;
border: 1px solid rgba(184, 148, 31, 0.2);
transition: all 0.3s ease;
position: relative;
}

.expand-header:hover {
background: rgba(40, 40, 50, 0.8);
border-color: rgba(184, 148, 31, 0.4);
}

.expand-title {
font-size: 14px;
color: #f5e6b3;
font-weight: 600; /* 加粗 */
text-shadow: 0 0 8px rgba(245, 230, 179, 0.5); /* 柔光效果 */
letter-spacing: 0.5px;
}

.expand-toggle {
color: #f5e6b3;
font-size: 12px;
font-weight: 600; /* 加粗 */
display: flex;
align-items: center;
gap: 5px;
text-shadow: 0 0 6px rgba(245, 230, 179, 0.4); /* 柔光效果 */
}

.expand-toggle::after {
content: '▶';
font-size: 10px;
transition: transform 0.3s ease;
text-shadow: 0 0 4px rgba(245, 230, 179, 0.3);
}

.expandable-section.open .expand-toggle::after {
transform: rotate(90deg);
}

.expand-content {
display: none;
padding: 15px;
background: rgba(35, 35, 45, 0.4);
border-radius: 0 0 6px 6px;
/* 上下有边框,左右无边框 */
border-top: 1px solid rgba(184, 148, 31, 0.3);
border-bottom: 1px solid rgba(184, 148, 31, 0.3);
border-left: none;
border-right: none;
margin-top: -1px;
}

.expandable-section.open .expand-content {
display: block;
}

.info-section {
flex: 1;
padding: 25px;
}

.info-grid {
display: grid;
grid-template-columns: 1fr;
gap: 12px;
}

.info-item {
margin-bottom: 12px;
padding-bottom: 12px;
border-bottom: 1px solid rgba(184, 148, 31, 0.1); /* 项目间分隔线 */
}

.info-item:last-child {
border-bottom: none;
margin-bottom: 0;
padding-bottom: 0;
}

.info-label {
font-size: 12px;
color: #b8941f;
margin-bottom: 5px;
font-weight: 600;
}

.info-value {
font-size: 13px;
color: #f0f0f0;
line-height: 1.5;
}

.long-description {
font-size: 13px;
color: #e0e0e0;
line-height: 1.6;
margin-top: 0;
padding: 0;
background: rgba(30, 30, 40, 0.3);
border-radius: 4px;

}

.description {
background: rgba(35, 35, 45, 0.6);
padding: 15px;
border-radius: 8px;
border-left: 3px solid #b8941f;
font-size: 14px;
line-height: 1.6;
margin-top: 10px;
}

.card-footer {
background: rgba(40, 40, 50, 0.7);
padding: 15px 25px;
display: flex;
justify-content: space-between;
align-items: center;
border-top: 1px solid rgba(184, 148, 31, 0.2);
font-size: 13px;
}

.signature {
color: #b8941f;
font-style: italic;
}

.status {
display: flex;
align-items: center;
}

.status-dot {
width: 10px;
height: 10px;
background: #4CAF50;
border-radius: 50%;
margin-right: 8px;
animation: pulse 2s infinite;
}

@keyframes pulse {
0% { opacity: 1; }
50% { opacity: 0.5; }
100% { opacity: 1; }
}

/* 响应式设计 */
@media (max-width: 768px) {
.card-content {
flex-direction: column;
}

.image-section {
border-right: none;
border-bottom: 1px solid rgba(184, 148, 31, 0.2);
}

.expandable-section {
max-width: 100%;
}
}
</style>
</head>
<body>
<div class="id-card">
<div class="card-header">
<h1 class="card-title">西奥德·苏·莫里</h1>
<p class="card-subtitle">THEODORE SU MORI</p>
</div>

<div class="card-content">
<div class="image-section">
<div class="portrait-placeholder">
<img src="https://origin.picgo.net/2025/11/09/u1272121187_masterpiece_best_quality_ultra-detailed_8kHalf-leng_da75a351-f77e-45a0-bddc-2fc844bcafff1834cfedc7008a34.jpeg" alt="西奥德肖像" style="width:100%;height:100%;object-fit:cover;">
</div>
<p class="image-caption">"你看起来很好玩。"<br>——十二年前相遇时,他是这样对你说的</p>

<!– 可展开区域放在图片下方 –>
<div class="expandable-section" id="detailsSection">
<div class="expand-header">
<div class="expand-title">详细信息</div>
<div class="expand-toggle">展开</div>
</div>
<div class="expand-content">
<div class="info-grid">
<div class="info-item">
<div class="info-label">年龄·身高</div>
<div class="info-value">25岁·189cm</div>
</div>

<div class="info-item">
<div class="info-label">外貌</div>
<div class="info-value">茶色中长发,翡翠绿眼睛</div>
</div>

<div class="info-item">
<div class="info-label">身份</div>
<div class="info-value">莫里家族新任教父 & 苏家未来的掌权者</div>
</div>

<div class="long-description">
<div class="info-label">介绍</div>
生于阴影的掌权者。他曾是你八年间的家主,你身体的每一寸肌理都曾刻满他的印记。四年前的不告而别,归来时已披上莫里家族教父的身份。这次他重返中国,漫不经心的笑意背后藏着无人知晓的谋划。唯有你清楚,那双翡翠色眼眸深处闪烁的,是掠夺者的光芒。你曾属于他,或许……从未停止过属于他。
</div>
</div>

</div>
</div>
</div>
</div>

<div class="card-footer">
<div class="signature">"你的归来,是棋子,是软肋,还是我唯一允许共享王座的共犯?"</div>
<div class="status">
<div class="status-dot"></div>
<span>状态: 在线</span>
</div>
</div>
</div>

<script>
// 展开/收起功能
const expandSection = document.getElementById('detailsSection');
const expandHeader = expandSection.querySelector('.expand-header');
const expandToggle = expandSection.querySelector('.expand-toggle');

expandHeader.addEventListener('click', function() {
expandSection.classList.toggle('open');
expandToggle.textContent = expandSection.classList.contains('open') ? '收起' : '展开';
});
</script>
</body>
</html>
“`
好感值与隐秘值的上限在100左右,所以不用担心增长太慢哦。虽然存在每日增长限制,但推进游戏日期即可突破。
这里不是开场白,看右边

角色卡

阿伦

2025-12-31 17:54:02

角色卡

秦述

2025-12-31 17:54:08

0 条回复 A文章作者 M管理员
    暂无讨论,说说你的看法吧
个人中心
购物车
优惠劵
今日签到
有新私信 私信列表
搜索