123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121 |
- /* pages/homepage/homepage.wxss */
- .container {
- min-height: 100vh;
- background-color: #f5f7fa;
- padding-bottom: 120rpx;
- }
- .header {
- position: relative;
- width: 100%;
- height: 320rpx;
- margin-top: -32rpx;
- }
- .background {
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- }
- .logo {
- position: absolute;
- left: 32rpx;
- bottom: 80rpx;
- width: 280rpx;
- height: 90rpx;
- z-index: 2;
- }
- .welcome-card {
- position: relative;
- margin: -60rpx 32rpx 0;
- border-radius: 16rpx;
- overflow: hidden;
- background: #fff;
- }
- .card-bg {
- position: absolute;
- right: 0;
- bottom: 0;
- width: 160rpx;
- height: 160rpx;
- opacity: 0.8;
- z-index: 1;
- }
- .card-content {
- position: relative;
- padding: 40rpx 32rpx;
- z-index: 2;
- }
- .title {
- font-size: 36rpx;
- font-weight: 500;
- color: #333;
- margin-bottom: 12rpx;
- }
- .subtitle {
- font-size: 26rpx;
- color: #999;
- margin-bottom: 32rpx;
- letter-spacing: 4rpx;
- }
- .bind-button {
- width: 200rpx !important;
- height: 80rpx;
- line-height: 80rpx;
- background: #4080FF;
- color: #fff;
- font-size: 30rpx;
- border-radius: 40rpx;
- padding: 0;
- }
- .bind-button::after {
- border: none;
- }
- .notice-list {
- margin: 32rpx;
- color: #666;
- }
- .notice-item {
- font-size: 26rpx;
- line-height: 1.8;
- margin-bottom: 16rpx;
- color: #999;
- }
- .tab-bar {
- position: fixed;
- bottom: 0;
- width: 100%;
- height: 100rpx;
- background: #fff;
- display: flex;
- padding-bottom: env(safe-area-inset-bottom);
- border-top: 1rpx solid #eee;
- }
- .tab-item {
- flex: 1;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- font-size: 24rpx;
- color: #999;
- }
- .tab-item.active {
- color: #4080FF;
- }
|