1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- /**index.wxss**/
- @import '../../../app.wxss';
-
- .SubContainer {
- min-height: 100%;
- overflow-y: scroll;
- -webkit-overflow-scrolling: touch;
- transform: translateZ(0);
- -webkit-transform: translateZ(0);
- }
-
- .nav {
- width: 100%;
- position: relative;
- text-align: center;
- padding: 32rpx 0;
- }
-
- .nav > view {
- display: inline-block;
- white-space: nowrap;
- border: 1rpx solid #bb9c79;
- background: #fff;
- border-radius: 70rpx;
- position: relative;
- overflow: hidden;
- box-shadow: 0 0 20rpx 6rpx rgba(0, 0, 0, 0.1);
- }
-
- .nav text {
- display: inline-block;
- font-size: 26rpx;
- color: #848484;
- line-height: 70rpx;
- padding: 0 36rpx;
- }
-
- .nav text.active {
- background: #bb9c79;
- color: #fff;
- }
-
- .content {
- width: 100%;
- position: relative;
- overflow: visible;
- }
-
- .content > view {
- padding: 0 25rpx;
- position: relative;
- overflow: visible;
- }
|