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

59 lines
1.1 KiB
Plaintext

.container.data-v-b10942e8 {
box-sizing: border-box; /* 关键! */
padding: 20rpx;
background: linear-gradient(to bottom, #1a365d, #2c5282);
height: 100vh;
overflow: hidden;
}
.header.data-v-b10942e8 {
text-align: center;
margin: 40rpx 0;
}
.page-title.data-v-b10942e8 {
font-size: 44rpx;
font-weight: bold;
color: #fff;
}
.paragraph.data-v-b10942e8 {
font-size: 30rpx;
line-height: 1.6;
color: #fff;
display: block;
margin-bottom: 30rpx;
opacity: 0;
transform: translateY(20px);
transition: all 0.8s ease;
}
.team-img.data-v-b10942e8 {
width: 100%;
border-radius: 16rpx;
margin-top: 20rpx;
opacity: 0;
transform: translateY(20px);
transition: all 0.8s ease;
}
.footer.data-v-b10942e8 {
text-align: center;
margin-top: 60rpx;
color: #94a3b8;
font-size: 24rpx;
position: absolute;
bottom: 30rpx;
width: 100%;
opacity: 0;
transform: translateY(20px);
transition: all 0.8s ease;
}
/* 添加动画类 */
.fadeInUp.data-v-b10942e8 {
animation: fadeInUp-b10942e8 1s forwards;
}
@keyframes fadeInUp-b10942e8 {
to {
opacity: 1;
transform: translateY(0);
}
}