index.wxss 505 B

12345678910111213141516171819202122232425262728293031
  1. /* components/item/index.wxss */
  2. /* 导航 */
  3. .nav{
  4. padding: 30rpx;
  5. border-bottom: 1rpx solid #efefef;
  6. display: flex;
  7. align-items: center;
  8. background: white;
  9. }
  10. /* .nav-icon{
  11. line-height: 0;
  12. } */
  13. .nav-icon {
  14. width:34rpx;
  15. }
  16. .nav-content{
  17. margin-left: 20rpx;
  18. display: flex;
  19. justify-content: space-between;
  20. align-items: center;
  21. width: 100%;
  22. }
  23. .nav-content text{
  24. font-size: 30rpx;
  25. color: #333;
  26. }
  27. .nav-content image{
  28. width: 14rpx;
  29. height: 26rpx;
  30. /* margin-right: 30rpx; */
  31. }