解锁内容
- 等级 1: 奖励内容占位
- 等级 2: 奖励内容占位
- 等级 3: 奖励内容占位
- 等级 4: 奖励内容占位
- 等级 5: 奖励内容占位
- 等级 6: 奖励内容占位
- 等级 7: 奖励内容占位
- 等级 8: 奖励内容占位
- 等级 9: 奖励内容占位
- 等级 10: 奖励内容占位
- 等级 11: 奖励内容占位
- 等级 12: 奖励内容占位
- 等级 13: 奖励内容占位
- 等级 14: 奖励内容占位
- 等级 15: 奖励内容占位
{{#css:
/* Basic reset */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Arial', sans-serif;
background-color: #111;
color: #fff;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
overflow: hidden;
}
/* Container styles */
.container {
display: flex;
background-color: #222;
border: 3px solid #ff0000;
border-radius: 10px;
width: 90%;
max-width: 1400px;
overflow: hidden;
box-shadow: 0 0 15px rgba(255, 0, 0, 0.6);
}
/* Sidebar styles */
.sidebar {
width: 20%;
background-color: #333;
padding: 20px;
border-right: 3px solid #ff0000;
overflow-y: auto;
}
.sidebar h2 {
margin-bottom: 20px;
font-size: 1.5em;
color: #ff0000;
}
.sidebar ul {
list-style: none;
}
.sidebar ul li a {
display: block;
padding: 10px 0;
text-decoration: none;
color: #fff;
font-size: 1.2em;
border-bottom: 1px solid #444;
transition: background-color 0.3s, color 0.3s;
}
.sidebar ul li a:hover,
.sidebar ul li a.active {
background-color: #ff0000;
color: #000;
}
/* Main content styles */
.main-content {
flex-grow: 1;
padding: 20px;
position: relative;
}
/* Character display */
.character-display {
position: absolute;
top: 0;
right: 0;
width: 45%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
overflow: hidden;
z-index: 1;
}
.character-background {
position: absolute;
width: 100%;
height: 100%;
background: radial-gradient(circle, #ff0000, #111);
border-radius: 50%;
z-index: -1;
}
.character-art {
max-width: 100%;
max-height: 100%;
object-fit: cover;
opacity: 1;
}
/* Details section */
.details {
position: relative;
background-color: rgba(0, 0, 0, 0.7);
padding: 20px;
border-radius: 10px;
z-index: 2;
margin-right: 50%;
}
/* Rewards list */
.rewards-list {
max-height: 200px;
overflow-y: auto;
display: grid;
grid-template-columns: repeat(1, 1fr);
gap: 10px;
}
.rewards-list li {
margin-bottom: 10px;
font-size: 1.2em;
background-color: rgba(255, 0, 0, 0.6);
padding: 10px;
border-radius: 5px;
}
/* Header styles */
.header h1 {
font-size: 2.5em;
color: #ff0000;
margin-bottom: 20px;
}
/* Button styles */
.button-container {
margin-top: 30px;
z-index: 2;
position: relative;
}
.submit-button {
padding: 15px 30px;
background-color: #ff0000;
border: none;
border-radius: 5px;
font-size: 1.5em;
color: #fff;
cursor: pointer;
transition: background-color 0.3s, transform 0.2s;
}
.submit-button:hover {
background-color: #d40000;
transform: scale(1.05);
}
}}