12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- /* StepPage/pages/second/second.wxss *//* 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;
- justify-content: space-between;
- }
- .item_content_shop{
- letter-spacing: 2pt;
- background:-webkit-linear-gradient(top,rgb(255, 255, 255),rgb(231, 229, 229),rgb(192, 189, 189));
- width: 100%;
- text-align: center;
- height: 30pt;
- line-height: 30pt;
- border-radius: 10pt;
- margin: 5pt 0;
- }
- .item_content_shop:nth-child(2n+1){
- margin-right: 20pt;
- }
- .item_content_shop_child{
- letter-spacing: 2pt;
- background:-webkit-linear-gradient(top,rgb(255, 255, 255),rgb(231, 229, 229),rgb(192, 189, 189));
- width: 100%;
- text-align: center;
- height: 30pt;
- line-height: 30pt;
- border-radius: 10pt;
- margin: 5pt 0;
- }
- .choose{
- color: rgb(170, 165, 165);
- }
- .unchoose{
- color: black;
- }
- .btn{
- text-align: center;
- margin-top: 20pt;
- }
- .btn_item{
- margin: 20pt;
- border-radius: 10pt !important;
- }
- .font_item{
- color: black;
- }
|