myEnter.wxss 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. /* pages/myEnter/myEnter.wxss */
  2. page{
  3. padding:0;
  4. }
  5. .tab{
  6. display: flex;
  7. height:80rpx;
  8. line-height:80rpx;
  9. background:#ffffff;
  10. }
  11. .tab view{
  12. flex:1;
  13. text-align: center;
  14. color:#333333;
  15. font-size:26rpx;
  16. }
  17. .tab .active{
  18. background:#3780CD;
  19. color:#ffffff;
  20. }
  21. swiper{
  22. height:1100rpx;
  23. overflow: scroll;
  24. }
  25. .main{
  26. margin:28rpx;
  27. background:#ffffff;
  28. border-radius: 18rpx;
  29. }
  30. .main .main-item{
  31. height:230rpx;
  32. padding:28rpx;
  33. border-bottom: 2rpx solid #eee;
  34. display: flex;
  35. }
  36. .main .main-item .item-img{
  37. width:134rpx;
  38. height:178rpx;
  39. margin-right:28rpx;
  40. }
  41. .main .main-item .item-img image{
  42. width:100%;
  43. height:100%;
  44. }
  45. .main .main-item .item-content{
  46. flex:1;
  47. position:relative;
  48. }
  49. .main .main-item .title{
  50. font-size: 28rpx;
  51. color: #333333;
  52. }
  53. .main .main-item .middle text{
  54. font-size: 22rpx;
  55. color: #666666;
  56. }
  57. .main .main-item .middle text:last-child{
  58. float: right;
  59. }
  60. .main .main-item .content{
  61. position:absolute;
  62. height:60rpx;
  63. bottom:0;
  64. font-size:26rpx;
  65. color:#666666;
  66. }