1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- /* StepPage/pages/lin/lin.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: 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;
- display: inline-block;
- width: 100rpx;
- }
|