.shop-content { background: #f8f3e9; min-height: 200rpx; padding: 20rpx; height: 680rpx; display: flex; flex-direction: column; .shop-tabs { display: flex; margin-bottom: 20rpx; background: #8b5e3c; border-radius: 8rpx; padding: 10rpx; .tab-item { flex: 1; text-align: center; padding: 15rpx 0; font-size: 28rpx; color: #f8f3e9; background: #6b4423; margin: 0 5rpx; border-radius: 6rpx; &.active { background: #f8f3e9; color: #6b4423; font-weight: bold; } } } .shop-items { flex: 1; overflow-y: auto; .shop-item { width: 100%; padding: 0 10rpx; margin-top: 10rpx; margin-bottom: 20rpx; height: 220rpx; &:last-child { margin-bottom: 0; } } .item-card { background: #fff; border-radius: 12rpx; padding: 5px; position: relative; border: 2rpx solid #ddd; display: flex; height: 100%; .new-tag { position: absolute; top: -10rpx; left: -10rpx; background: #ff6b6b; color: white; padding: 4rpx 12rpx; border-radius: 20rpx; font-size: 20rpx; } .item-left { display: flex; flex-direction: column; align-items: center; margin-right: 20rpx; width: 80rpx; padding-left: 10rpx; .item-icon { width: 80rpx; height: 80rpx; margin-bottom: 28rpx; } .owned-text { font-size: 22rpx; color: #666; white-space: nowrap; } } .item-info { padding-left: 80rpx; flex: 1; position: relative; display: flex; flex-direction: column; .item-name { font-size: 26rpx; color: #933; font-weight: bold; margin-bottom: 8rpx; } .item-details { font-size: 20rpx; color: #666; padding-left: 10rpx; .detail-text { display: block; } } .item-bottom { display: flex; align-items: center; justify-content: space-between; margin-top: auto; margin-bottom: 10rpx; position: absolute; bottom: 0; left: 80rpx; right: 0; .item-price { display: flex; align-items: center; gap: 4rpx; margin-top: 25rpx; .currency-icon { width: 24rpx; height: 24rpx; } text { font-size: 24rpx; color: #ff9500; font-weight: bold; } } .buy-btn { background: #8b5e3c; color: white; font-size: 24rpx; padding: 4rpx 16rpx; border-radius: 30rpx; border: none; margin-right: 10rpx; } } } } } }