123456789101112131415161718192021222324252627282930 |
- /* StepPage/pages/first/first.wxss */
- .title{
- border-radius: 8pt;
- height: 30pt;
- line-height: 30pt;
- letter-spacing: 3pt;
- text-align: center;
- width: 90%;
- margin: 10pt auto;
- background:-webkit-linear-gradient(top,rgb(255, 255, 255),rgb(231, 229, 229),rgb(192, 189, 189));
- }
- .item_content{
-
- width: 90%;
- margin:0 auto;
- display: flex;
- flex-wrap: wrap;
- }
- .item_content_shop{
- background:-webkit-linear-gradient(top,rgb(255, 255, 255),rgb(231, 229, 229),rgb(192, 189, 189));
- width: 46%;
- text-align: center;
- height: 30pt;
- line-height: 30pt;
- border-radius: 10pt;
- margin: 5pt 0;
- }
- .item_content_shop:nth-child(2n+1){
- margin-right: 20pt;
- }
|