| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- /* 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: 1pt;
- background:-webkit-linear-gradient(top,rgb(255, 255, 255),rgb(231, 229, 229),rgb(192, 189, 189));
- width: 100%;
- text-align: center;
- height: auto;
- line-height: 30pt;
- border-radius: 10pt;
- margin: 5pt 0;
- }
- .choose{
- color: rgb(170, 165, 165);
- }
- .unchoose{
- color: black;
- }
- .btn{
- text-align: center;
- margin-top: 10pt;
- }
- .btn_item{
- margin:0 20pt;
- border-radius: 10pt !important;
- }
- .font_item{
- color: black;
- }
- .show_box{
- width: 100%;
- height: 90%;
- position: absolute;
- bottom: 0;
- background-color: #fff;
- }
- .show_item{
- height: 60rpx;
- padding: 15rpx;
- margin: 0 20rpx;
- font-size: 40rpx;
- color: rgb(97, 92, 92);
- text-align: center;
- border-bottom:1rpx solid rgb(167, 163, 163)
- }
- .show_title{
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
|