You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

60 lines
1.1 KiB

.container {
width: 100%;
min-height: 100vh;
display: flex;
flex-direction: column;
}
.cover-section {
width: 100%;
position: relative;
}
.cover-bg {
width: 100%;
height: auto;
}
.cover-title {
position: absolute;
top: 30%;
left: 50%;
transform: translate(-50%, -50%);
font-size: 48rpx;
color: #2c1810;
font-weight: bold;
text-shadow: 2rpx 2rpx 4rpx #fff;
}
.cover-subtitle {
position: absolute;
top: 40%;
left: 50%;
transform: translate(-50%, -50%);
font-size: 28rpx;
color: #5c3a2e;
font-style: italic;
}
.menu-section {
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: space-around;
padding: 40rpx 0;
}
.menu-item {
width: 40%;
display: flex;
flex-direction: column;
align-items: center;
margin-bottom: 40rpx;
text-decoration: none;
}
.menu-icon {
width: 120rpx;
height: 120rpx;
margin-bottom: 20rpx;
border-radius: 50%;
box-shadow: 0 4rpx 8rpx rgba(0,0,0,0.2);
}
.menu-text {
font-size: 28rpx;
color: #2c1810;
font-weight: 500;
}