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