123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- @import "../public-view.wxss";
- Page {
- background-color: white;
- }
- .bg-view {
- width: 200%;
- height: 100%;
- display: flex;
- }
- .bg-scroll-view {
- background-color: white;
- }
- /* header */
- .header {
- width: 100%;
- height: 100rpx;
- background-color: #F1F8FF;
- }
- .header text {
- font-size: 24rpx;
- line-height: 100rpx;
- color: #666666;
- }
- .header>text:first-child {
- margin-left: 30rpx;
- }
- .header>text:nth-child(2) {
- color: #FF5E5E;
- }
- /* no-discount */
- .no-discount {
- width: 100%;
- display: flex;
- flex-direction: column;
- }
- .no-discount>view {
- width: 100%;
- height: 340rpx;
- }
- .no-discount>text {
- width: 100%;
- font-size: 28rpx;
- text-align: center;
- color: #999999;
- }
- /* tab-view */
- .tab-view {
- width: 750rpx;
- height: 100rpx;
- background-color: white;
- position: fixed;
- top: 0;
- display: flex;
- flex-direction: column;
- }
- .tab-view>view:first-child {
- width: 100%;
- height: 100rpx;
- display: flex;
- }
- .tab-view>view:first-child>view {
- font-size: 32rpx;
- line-height: 100rpx;
- width: 50%;
- text-align: center;
- }
- .tab-view>view:last-child>view {
- width: 50%;
- height: 4rpx;
- display: flex;
- }
- .tab-view>view:last-child>view>view {
- width: 120rpx;
- height: 4rpx;
- margin: 0 auto;
- background-color: #3296FB;
- }
- .tab-text-s {
- color: #3296FB;
- }
- .tab-text-n {
- color: #666666;
- }
|