123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- Page {
- width: 100%;
- height: 100%;
- background-color: #F7F7F7;
- }
- .container {
- width: 100%;
- height: 100%;
- background-color: #F7F7F7;
- /* 门店的标题 */
- .shop {
- background-color: #fff;
- border-top: 1rpx solid #ECECEC;
- margin-top: 20rpx;
- >.title {
- display: flex;
- justify-content: space-between;
- padding: 0 40rpx;
- height: 80rpx;
- line-height: 80rpx;
- }
- }
- .product {
- .weui-tabs {
- .weui-tabs-bar__wrp {
- .weui-tabs-bar__content {
- height: 100rpx;
- line-height: 99rpx;
- white-space: nowrap;
- display: flex;
- justify-content: space-around;
- border-bottom: 1rpx solid #ECECEC;
- }
- }
- }
- .productinfo {
- width: 95%;
- height: 380rpx;
- padding: 10rpx 0;
- margin: 0 auto;
- .product-item {
- position: relative;
- width: 100%;
- height: 380rpx;
- border-radius: 20rpx;
- background-size: cover;
- .product-desc {
- height: 380rpx;
- color: #fff;
- position: absolute;
- color: #fff;
- top: 210rpx;
- left: 20rpx;
- letter-spacing: 2rpx;
- font-weight: 100;
- }
- .order {
- position: absolute;
- right: 40rpx;
- bottom: 20rpx;
- width: 100rpx;
- height: 100rpx;
- border-radius: 50%;
- background-color: #098932;
- color: #fff;
- >view {
- width: 70rpx;
- height: 70rpx;
- line-height: 35rpx;
- letter-spacing: 5rpx;
- text-align: center;
- font-size: 14px;
- margin: 18rpx;
- }
- }
- .gray {
- background-color: #999;
- }
- }
- &:first-child {
- margin-top: 10rpx;
- }
- }
- }
- }
- .fw700 {
- font-weight: 500;
- font-size: 18px;
- }
|