1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- /* pages/myEnter/myEnter.wxss */
- page{
- padding:0;
- }
- .tab{
- display: flex;
- height:80rpx;
- line-height:80rpx;
- background:#ffffff;
- }
- .tab view{
- flex:1;
- text-align: center;
- color:#333333;
- font-size:26rpx;
- }
- .tab .active{
- background:#3780CD;
- color:#ffffff;
- }
- swiper{
- height:1100rpx;
- overflow: scroll;
- }
- .main{
- margin:28rpx;
- background:#ffffff;
- border-radius: 18rpx;
- }
- .main .main-item{
- height:230rpx;
- padding:28rpx;
- border-bottom: 2rpx solid #eee;
- display: flex;
- }
- .main .main-item .item-img{
- width:134rpx;
- height:178rpx;
- margin-right:28rpx;
- }
- .main .main-item .item-img image{
- width:100%;
- height:100%;
- }
- .main .main-item .item-content{
- flex:1;
- position:relative;
- }
- .main .main-item .title{
- font-size: 28rpx;
- color: #333333;
- }
- .main .main-item .middle text{
- font-size: 22rpx;
- color: #666666;
- }
- .main .main-item .middle text:last-child{
- float: right;
- }
- .main .main-item .content{
- position:absolute;
- height:60rpx;
- bottom:0;
- font-size:26rpx;
- color:#666666;
-
- }
|