123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144 |
- @import "fragmentsRecordItem.wxss";
- Page {
- height: 100%;
- width: 100%;
- background-color: #f9f9fb;
- }
- .head-bg {
- width: 100%;
- height: 108rpx;
- background-color: #413668;
- display: flex;
- flex-direction: row;
- }
- .switch-button-left-normal, .switch-button-center-normal, .switch-button-right-normal, .switch-button-left-selected, .switch-button-center-selected, .switch-button-right-selected {
- width: 200rpx;
- height: 72rpx;
- border-radius: 36rpx;
- font-size: 28rpx;
- letter-spacing: 2rpx;
- text-align: center;
- line-height: 72rpx;
- margin-top: 20rpx;
- }
- .switch-button-left-normal,.switch-button-left-selected {
- margin-left: 50rpx;
- margin-right: auto;
- }
- .switch-button-center-normal, .switch-button-center-selected {
- margin-left: auto;
- margin-right: auto;
- }
- .switch-button-right-normal, .switch-button-right-selected {
- margin-left: auto;
- margin-right: 50rpx;
- }
- .switch-button-left-normal, .switch-button-center-normal, .switch-button-right-normal {
- background-color: transparent;
- color: #bfbdff;
- opacity: 0.7;
- }
- .switch-button-left-selected, .switch-button-center-selected, .switch-button-right-selected {
- background-color: #8c5aeb;
- color: white;
- }
- .scroll-view-bg, .scroll-view-bg-o {
- position: absolute;
- top: 108rpx;
- left: 0px;
- width: 100%;
- /* display: flex;
- flex-direction: row; */
- white-space: nowrap;
- }
- .scroll-view-bg {
- bottom: 190rpx;
- }
- .scroll-view-bg-o {
- bottom: 86rpx;
- }
- .ranking-view, .ranking-view-o {
- background-color: white;
- width: 100%;
- height: 86rpx;
- position: absolute;
- line-height: 86rpx;
- font-size: 26rpx;
- color: #808080;
- text-align: center;
- }
- .ranking-view {
- bottom: 104rpx;
- }
- .ranking-view-o {
- bottom: 0px;
- }
- .scroll-item-view {
- display: inline-block;
- width: 750rpx;
- height: 100%;
- }
- .scroll-view {
- position: absolute;
- width: 750rpx;
- height: 100%;
- }
- .group-view {
- width: 750rpx;
- height: 100%;
- position: absolute;
- }
- .group-view-img {
- display: block;
- margin: 30% auto 0px;
- width: 204rpx;
- height: 204rpx;
- }
- .group-view-tips {
- margin-top: 22rpx;
- color: #999999;
- font-size: 32rpx;
- text-align: center;
- }
- .group-view-button-view {
- margin: 36rpx auto auto;
- width: 380rpx;
- height: 88rpx;
- border-radius: 44rpx;
- background-color: #8c5aeb;
- color: white;
- font-size: 30rpx;
- text-align: center;
- line-height: 88rpx;
- display: flex;
- flex-direction: column;
- }
- .group-view-button {
- width: 100%;
- height: 88rpx;
- margin-top: -88rpx;
- }
|