This commit is contained in:
eric
2026-03-10 04:41:20 -05:00
parent 82e79110fc
commit 0093294472
31 changed files with 5541 additions and 73 deletions

231
app/index.module.css Normal file
View File

@@ -0,0 +1,231 @@
/* markdown-body from github-markdown-css */
.markVip {
padding-left: 50px;
padding-right: 50px;
}
.markVip img {
display: block;
margin: 10px auto;
max-width: 100%;
height: auto;
border-radius: 6px;
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.markVip p,
.markVip li,
.markVip h1,
.markVip h2,
.markVip h3 {
font-size: 15px;
}
.index {
height: 100vh;
}
.indexBook {
min-height: 150px;
display: flex;
flex-direction: column-reverse;
align-items: center;
justify-content: space-between;
}
.indexBookLeft {
min-width: 300px;
min-height: 150px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-around;
}
.leftTitle {
font-size: 25px;
font-weight: 700;
color: #69b1ff;
margin-top: 5px;
}
.card {
margin-top: 10px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.cardItem {
padding: 10px;
width: 250px;
margin-bottom: 10px;
display: flex;
flex-direction: row;
background-color: #f0f5ff;
border-radius: 10px;
}
.cardItemLeft {
display: flex;
flex-direction: column;
margin-right: 20px;
}
.cardItemLeftImg {
width: 40px;
height: 40px;
}
.cardItemRight {
flex: 1;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.cardItemRightUp {
width: 100%;
height: 40px;
display: flex;
flex-direction: row;
font-weight: 700;
font-size: 17px;
}
.cardItemRightDown {
width: 100%;
flex: 1;
display: flex;
flex-direction: row;
font-size: 15px;
flex-wrap: wrap;
color: #262626;
}
.leftBtn {
margin-top: 15px;
margin-bottom: 15px;
}
.startRead {
width: 250px;
padding: 8px 16px;
font-size: 14px;
font-weight: 500;
color: white;
background: linear-gradient(135deg, #69b1ff 0%, #4096ff 100%);
border: none;
border-radius: 9999px;
cursor: pointer;
}
.startRead:hover {
opacity: 0.9;
}
.indexBookImg {
margin-top: 15px;
width: 200px;
height: 200px;
}
.bookImg {
width: 100%;
height: auto;
}
.svgItems {
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-around;
margin-top: 20px;
}
/* H5 下隐藏「解锁vip」按钮下方模块无人直播、RPA自动化、聊天机器人 */
@media (max-width: 768px) {
.svgItems {
display: none;
}
}
.svgItem {
width: 100%;
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-around;
}
.bookImgItem {
width: 350px;
height: 350px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.bookImgText {
margin-top: 20px;
font-size: 30px;
}
.vipcode {
display: flex;
flex-direction: column;
align-items: center;
font-size: 15px;
}
.vipcode button {
margin: 8px 0;
padding: 8px 16px;
cursor: pointer;
}
@media (min-width: 1536px) {
.index {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
position: relative;
}
.indexBook {
width: 100%;
max-width: 1400px;
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
background-color: #f0f5ff;
border-radius: 20px;
}
.indexBookLeft .card {
display: none;
}
.indexBookLeft .leftBtn .startRead {
width: 100px;
}
.indexBookImg .bookImg {
margin-bottom: 40px;
}
.svgItems {
width: 100%;
max-width: 1400px;
margin-top: 80px;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
}
}