| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- Page {
- background-color: #f6f6f6;
- }
- .top-view {
- position: sticky;
- z-index: 999;
- top: 0;
- }
- .goodscard {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- flex-wrap: wrap;
- align-items: center;
- align-content: center;
- margin: 5px;
-
- .goodscard-item {
- width: 48%;
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- background-color: white;
- border-radius: 10px;
- margin-top: 5px;
- box-shadow: 10px 10px 10px #ddd;
- .goods-icon {
- width: 100%;
- height: 600px;
- border-radius: 10px 10px 0px 0px;
- }
- .goods-title {
- font-size: 13px;
- color: #333;
- margin: 10px 10px 0px 10px;
- text-align: left;
- }
- .goods-price {
- font-size: 16px;
- color: orange;
- margin: 10px 0px 20px 10px;
- }
- }
- }
|