123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- /* 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{
- padding-bottom: 150rpx;
- 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: 44%;
- text-align: center;
- height: auto;
- padding: 4pt;
- /* line-height: 30pt; */
- border-radius: 10pt;
- margin: 15rpx 0;
- }
- .item_content_shop:nth-child(2n+1){
- margin-right: 30rpx;
- }
- .show_box{
- width: 100%;
- height: 90%;
- position: absolute;
- bottom: 0;
- background-color: #fff;
- }
- .show_item{
- height: auto;
- padding: 15rpx;
- font-size: 40rpx;
- margin:0 20rpx;
- color: rgb(97, 92, 92);
- text-align: center;
- border-bottom:1rpx solid rgb(167, 163, 163)
- }
- .btn{
- text-align: center;
- margin-top: 20pt;
- }
- .show_title{
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .btn_item{
- width: 200pt;
- margin: 10pt;
- }
- .font_item{
- color: black;
- }
|