| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- /* 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;
- }
- .item_in{
- border: 1rpx solid rgb(78, 78, 78);
- margin: 10rpx 30rpx 10rpx 30rpx;
- border-radius: 34rpx;
- padding: 0rpx 0 50rpx 0;
- position: relative;
- }
- .add1{
- bottom: 0;
- left: 0;
- font-size: 60rpx;
- line-height: .9;
- text-align: center;
- color: rgb(57, 97, 231);
- }
- .delete1{
- display: flex;
- justify-content: center;
- align-items: center;
- bottom: 0;
- right: 0;
- color: red;
- }
- .btn1{
- position: absolute;
- width: 60rpx;
- height: 60rpx;
- border: 1rpx solid;
- border-radius: 50%;
- z-index: 900;
-
- }
|