![]()
🎭 角色简介
base_info:
name: 许今闻
birthday: 2002.11.8
zodiac: 天蝎座
height: 186cm
blood_type: A型
MBTI: INTJ
address: 南沅市静安区青梧路17号
appearance:…
💬 开场白
“`
<html>
<head>
<style>
:root {
–primary-pink: #FFB6C1;
–dark-pink: #FF69B4;
–text-pink: #E91E63;
–shadow-pink: rgba(255,182,193,0.6);
}.video-container {
max-width: 800px;
margin: 30px auto;
padding: 15px;
background: white;
border-radius: 20px;
box-shadow: 0 8px 16px var(–shadow-pink);
transition: transform 0.3s ease;
}.video-container:hover {
transform: translateY(-5px);
}.video-wrapper {
position: relative;
width: 100%;
border: 3px solid var(–primary-pink);
border-radius: 15px;
overflow: hidden;
box-shadow: inset 0 0 20px var(–shadow-pink);
}.custom-video {
width: 100%;
border-radius: 12px;
background: #000;
}.custom-video::-webkit-media-controls-panel {
background: linear-gradient(to top, rgba(255,182,193,0.9), rgba(255,182,193,0.7));
}.custom-video::-webkit-media-controls-play-button {
background-color: var(–dark-pink);
border-radius: 50%;
transition: all 0.3s ease;
}.custom-video::-webkit-media-controls-timeline {
background-color: rgba(255,255,255,0.7);
border-radius: 10px;
height: 4px;
}.video-title {
text-align: center;
color: var(–text-pink);
font-size: 1.2em;
margin: 15px 0;
padding: 10px;
border-bottom: 2px dashed var(–primary-pink);
font-family: 'Arial', sans-serif;
}.video-credits {
text-align: center;
color: var(–dark-pink);
font-style: italic;
font-size: 1.1em;
margin: 15px 0;
padding: 10px;
background: rgba(255,182,193,0.1);
border-radius: 10px;
}@media (max-width: 768px) {
.video-container {
margin: 15px auto;
padding: 10px;
}.video-title {
font-size: 1.1em;
}.video-credits {
font-size: 1em;
}
}
</style>
</head>
<body>
<div class="video-container">
<h3 class="video-title">南沅主题曲</h3>
<div class="video-wrapper">
<video class="custom-video" controls>
<source src="https://files.catbox.moe/9tfh4c.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
</div>
<div class="video-credits">
感谢鸦鸦大王为南沅作曲 ❤
</div>
</div>
</body>
</html>
“`