1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- page {
- background-color: #161616;
- width: 100%;
- height: 100%;
- }
- .page {
- background-color: #161616;
- width: 100%;
- height:100vh;
- }
- .header {
- display: flex;
- flex-direction: row;
- justify-content: flex-start;
- align-items: center;
- width: 750rpx;height: 320rpx;
- padding-top: calc(var(--status-bar-height) + 0rpx);
- background: url('../../static/home/top_bg.png');
- background-size: 100% 100%;
- .left {
- display: flex;flex-direction: row;width:200rpx;height:120rpx;
- justify-content: center;
- padding-left:50rpx;
- image {
- width:84rpx;height:52rpx;
- }
- }
- }
- .thread {
- height: 20rpx;
- }
- .thread2 {
- height: 60rpx;
- }
- .tab_list {
- width:750rpx;display: flex;flex-direction: row;justify-content: space-around;align-items: center;margin-top:-120rpx;
- padding:0 50rpx;
- .item {
- display: flex;flex-direction: column;justify-content: center;align-items: center;
- font-weight: 400;
- font-size: 28rpx;
- color: #999999;
- .yuan {
- width: 96rpx;height: 96rpx;border-radius: 48rpx;
- border: 2rpx solid #404040;
- display: flex;flex-direction: row;justify-content: center;align-items: center;margin-bottom:10rpx;
- }
- .icon {
- width:64rpx;height:64rpx;
- }
- }
- .active {
- display: flex;flex-direction: column;justify-content: center;align-items: center;
- .yuan {
- background: linear-gradient( 180deg, #3E223E 0%, #857283 100%);
- }
- font-weight: 400;
- font-size: 28rpx;
- color: #FFFFFF;
- }
- }
- .no-content {
- display: flex;flex-direction: column;justify-content: center;align-items: center;
- image {
- width:276rpx;height:276rpx;
- }
- font-weight: 400;
- font-size: 24rpx;
- color: #999999;
- }
|