123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- .nav {
- background: white;
- position: fixed;
- top: 0rpx;
- z-index: 999;
- // background: #7F56B2;
- width: 100vw;
- .shop {
- display: flex;
- align-items: center;
- >view {
- font-size: 33rpx;
- font-weight: bold;
- margin: 0 10rpx;
- }
- }
- .search {
- height: 60rpx;
- overflow: hidden;
- align-items: center;
- background: whitesmoke;
- padding: 5rpx 10rpx;
- border-radius: 100rpx;
- display: flex;
- align-items: center;
- input {
- margin-left: 10rpx;
- height: 100rpx;
- font-size: 28rpx;
- }
- }
- }
- .wang-cardbox{
- padding: 20rpx;
- width: 100%;
- background-color: white;
- overflow-y: hidden;
- padding-bottom: 40rpx;
- column-count: 2; /* 设置列数 */
- column-gap: 16rpx; /* 设置列间距 */
- .wang-card{
- break-inside: avoid; /* 防止卡片在列之间断裂 */
- margin-bottom: 20rpx; /* 设置卡片底部间距 */
- width: 100%; /* 确保卡片宽度为100% */
-
- image{
- width: 100%;
- height: 204rpx;
- border-radius: 10rpx;
- }
- .wang-catex{
- font-size: 26rpx;
- font-weight: 400;
- height: 76rpx;
- }
- .wang-numbox{
- width: 100%;
- display: flex;
- align-items: center;
- .wang-num{
- display: flex;
- justify-content: flex-end;
- align-items: flex-end;
- color: #C5262Ced;
- font-size: 30rpx;
- .wang-num1{
- font-size: 32rpx;
- }
- .wang-num2{
- font-size: 40rpx;
- }
- }
- .wang-submit{
- width: 102rpx;
- height: 48rpx;
- font-size: 28rpx;
- color: white;
- background-color: #F8DA7F;
- border-radius: 15rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- margin-left: auto;
- }
- }
- }
- }
|