123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164 |
- Page {
- width: 100%;
- height: 100%;
- background-color: #F7F7F7;
- }
- .container {
- width: 100%;
- height: 100%;
- background-color: #F7F7F7;
- /* 门店的标题 */
- .shop {
- border-top: 1rpx solid #ECECEC;
- width: 100%;
- background-color: #F7F7F7;
- position: fixed;
- z-index: 99;
- >.title {
- display: flex;
- justify-content: space-between;
- padding: 0 40rpx;
- height: 80rpx;
- line-height: 80rpx;
- background-color: #fff;
- .title-left {
- position: relative;
- padding-left: 40rpx;
- .shop-icon {
- width: 40rpx;
- height: 40rpx;
- position: absolute;
- top: 50%;
- left: -10rpx;
- transform: translateY(-50%);
- }
- }
- }
- .shop-info {
- width: 100%;
- height: 500rpx;
- >image {
- width: 100%;
- }
- }
- /* 未获得授权时显示获取授权按钮 */
- .user-location-btn {
- width: 100%;
- height: 220rpx;
- border-top: 1rpx solid #ECECEC;
- background-color: #fff;
- position: relative;
- .location-btn {
- background-color: #ECECEC;
- padding: 0;
- width: 50%;
- height: 50%;
- line-height: 100rpx;
- color: #21ad50;
- position: absolute;
- left: 50%;
- top: 28%;
- transform: translate(-50%);
- }
- }
- }
- .product {
- overflow-y: auto;
- padding-top: 590rpx;
- /* .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: 550rpx;
- padding: 10rpx 0;
- margin: 0 auto;
- .product-item {
- width: 100%;
- height: 550rpx;
- display: flex;
- flex-direction: column;
- margin-bottom: 20rpx;
- .product-img {
- width: 100%;
- height: 400rpx;
- }
- .product-desc {
- height: 150rpx;
- letter-spacing: 2rpx;
- font-weight: 100;
- display: flex;
- flex-direction: column;
- .product-name {
- line-height: 70rpx;
- }
- .price {
- display: flex;
- justify-content: flex-start;
- line-height: 50rpx;
- & :last-child {
- margin-left: 20rpx;
- }
- }
- }
- }
- &:first-child {
- margin-top: 10rpx;
- }
- }
- }
- }
- .fw700 {
- font-weight: 500;
- font-size: 17px;
- }
- .gold {
- font-size: 15px;
- color: #b1a384;
- }
- .gray {
- font-size: 13px;
- color: #999;
- }
|