12345678910111213141516171819202122232425262728293031 |
- /* components/item/index.wxss */
- /* 导航 */
- .nav{
- padding: 30rpx;
- border-bottom: 1rpx solid #efefef;
- display: flex;
- align-items: center;
- background: white;
- }
- /* .nav-icon{
- line-height: 0;
- } */
- .nav-icon {
- width:34rpx;
- }
- .nav-content{
- margin-left: 20rpx;
- display: flex;
- justify-content: space-between;
- align-items: center;
- width: 100%;
- }
- .nav-content text{
- font-size: 30rpx;
- color: #333;
- }
- .nav-content image{
- width: 14rpx;
- height: 26rpx;
- /* margin-right: 30rpx; */
- }
|