审查视图

pages/shopdetail/shopdetail.wxss 8.8 KB
1  
lihongjuan authored
1
@import '../homepage/homepage.wxss';
lihongjuan authored
2 3 4 5 6
image {
  width: 100%;
  height: 100%;
}
1  
lihongjuan authored
7 8 9 10
page {
  overflow-x: hidden;
}
1  
lihongjuan authored
11 12 13 14
.box {
  overflow-x: hidden
}
lihongjuan authored
15 16 17 18 19 20 21 22 23 24 25
.taildot {
  width: 74rpx;
  height: 38rpx;
  background: rgba(140, 145, 152, 1);
  opacity: 0.77;
  border-radius: 180rpx;
  color: #fff;
  font-size: 26rpx;
  text-align: center;
  position: absolute;
  right: 32rpx;
1  
lihongjuan authored
26
  bottom:120rpx;
lihongjuan authored
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89
}

/* 轮播图 */

.swiper_image {
  width: 750rpx;
  height: 320rpx;
  font-size: 0;
  position: relative;
}

swiper {
  width: 750rpx;
  height: 320rpx;
}

.swiper_image image {
  width: 100%;
  height: 100%;
}

.swiper_item_img swiper-item {
  width: 750rpx;
  height: 320rpx;
}

.swiper_item_img swiper-item image {
  width: 100%;
  height: 100%;
}

.dots {
  height: 36rpx;
  display: flex;
  flex-direction: row;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 10rpx;
}

/*未选中时的小圆点样式 */

.dot {
  width: 20rpx;
  height: 20rpx;
  border-radius: 50%;
  margin-right: 26rpx;
  background-color: #b9c0f7;
}

/*选中以后的小圆点样式  */

.active {
  width: 16rpx;
  height: 16rpx;
  border-radius: 50%;
  background-color: #fff;
  border: 4rpx solid #fff;
}

.detailtop {
  width: 686rpx;
1  
lihongjuan authored
90
  /* height: 300rpx; */
lihongjuan authored
91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114
  background: rgba(255, 255, 255, 1);
  box-shadow: 0rpx 6rpx 12rpx rgba(41, 27, 6, 0.1);
  opacity: 1;
  border-radius: 8rpx;
  position: absolute;
  bottom: -268rpx;
  left: 32rpx;
  padding: 36rpx 40rpx;
  box-sizing: border-box;
}

.tailtopimg {
  width: 36rpx;
  height: 36rpx;
  font-size: 0;
}

.tailname {
  color: #06121e;
  font-size: 22rpx;
  margin-top: 4rpx;
}

.tailitem {
1  
lihongjuan authored
115
  width: 65rpx;
lihongjuan authored
116
  margin-right: 40rpx;
1  
lihongjuan authored
117 118 119 120
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center
lihongjuan authored
121 122 123 124 125 126 127 128 129 130
}

.tailitem:last-child {
  margin-right: 0;
}

.tailtopleft {
  color: #000;
  font-size: 36rpx;
  font-weight: bold;
1  
lihongjuan authored
131 132
     
lihongjuan authored
133 134 135 136 137 138 139 140 141 142 143 144
}

/* 菜系 */

.floweritem {
  width: 32rpx;
  height: 32rpx;
  font-size: 0;
  margin-left: 6rpx;
}

.huaname {
1  
lihongjuan authored
145 146 147 148 149 150 151 152 153 154 155 156 157
  padding: 0 10rpx;
      box-sizing: border-box;
      height: 42rpx;
      background: rgba(255, 255, 255, 1);
      border: 2rpx solid rgba(112, 112, 112, 1);
      opacity: 1;
      border-radius: 180rpx;
      color: #3d444d;
      font-size: 20rpx;
      text-align: center;
      line-height: 42rpx;
      margin-left:20rpx;
    
lihongjuan authored
158 159 160
}

.cai {
1  
lihongjuan authored
161
  margin-top: 10rpx;
lihongjuan authored
162 163 164 165 166 167 168 169 170 171 172 173 174
}

.sanleft {
  width: 36rpx;
  height: 36rpx;
  font-size: 0;
}

.star {
  margin-left: 16rpx;
}

.comment {
1  
lihongjuan authored
175
  margin-top: 20rpx;
lihongjuan authored
176 177 178
}

.fen {
1  
lihongjuan authored
179 180 181
  color: #fca052;
  font-size: 24rpx;
  font-weight: bold;  
lihongjuan authored
182 183 184 185 186 187 188 189 190 191
  margin-left: 16rpx;
}

.tiao {
  color: #8c9198;
  font-size: 24rpx;
  margin-left: 16rpx;
}

.commentone {
1  
lihongjuan authored
192
  margin-top: 20rpx;
lihongjuan authored
193 194 195
}

.jianintro {
1  
lihongjuan authored
196
  /* width: 686rpx; */
lihongjuan authored
197 198 199 200 201 202 203 204
  background: rgba(255, 255, 255, 1);
  opacity: 1;
  border-radius: 8rpx;
  margin: 24rpx auto 0;
  margin-top: 300rpx;
  padding: 40rpx;
  box-sizing: border-box;
}
1  
lihongjuan authored
205 206 207
.commentitem{
  margin-top:0
}
lihongjuan authored
208 209 210 211 212 213 214 215 216 217 218 219 220

page {
  background: #fbf8fb;
}

.jianintrotop {
  color: #000;
  font-size: 28rpx;
  font-weight: bold;
}

.jiantext {
  color: #707070;
1  
lihongjuan authored
221
  line-height: 2.5;
1  
lihongjuan authored
222
 
lihongjuan authored
223 224 225
}

.bodybox {
1  
lihongjuan authored
226
  padding: 0 24rpx;
lihongjuan authored
227 228 229 230 231 232 233 234 235 236 237 238 239 240
  box-sizing: border-box;
}

.xiang {
  color: #000;
  font-size: 36rpx;
  font-weight: bold;
}

.photo {
  margin-top: 24rpx;
}

.photobox {
1  
lihongjuan authored
241
  /* width: 686rpx; */
lihongjuan authored
242
  display: flex;
1  
lihongjuan authored
243
  flex-wrap: no-wrap;
lihongjuan authored
244 245 246
  align-items: center;
  padding: 40rpx 20rpx 40rpx 40rpx;
  margin-top: 22rpx;
1  
lihongjuan authored
247
  overflow-x: scroll;
lihongjuan authored
248 249 250
}

.photoitem {
1  
lihongjuan authored
251
  width: 245rpx;
lihongjuan authored
252 253
  height: 188rpx;
  font-size: 0;
1  
lihongjuan authored
254
  /* padding-right: 15rpx; */
lihongjuan authored
255
  margin-bottom: 20rpx;
1  
lihongjuan authored
256
  margin-right:15rpx;
1  
lihongjuan authored
257 258 259 260
  flex: 0 0 auto;
}

.photoitem:last-child {
1  
lihongjuan authored
261
  padding-right: 32rpx;
lihongjuan authored
262 263 264 265 266 267 268 269 270 271 272 273 274 275
}

.morename {
  color: #707070;
  font-size: 24rpx;
  margin-right: 16rpx;
}

/* 评论 */

.comleft {
  width: 74rpx;
  height: 74rpx;
  font-size: 0;
1  
lihongjuan authored
276 277 278 279 280
  border-radius: 50%;
}

.comleft image {
  border-radius: 50%;
lihongjuan authored
281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310
}

.comrname {
  color: rgb(103, 118, 138);
  font-size: 28rpx;
}

.comright {
  margin-left: 12rpx;
  flex: 1;
  width: 518rpx;
}

.comdate {
  color: #8c9198;
  font-size: 24rpx;
  margin-top: 12rpx;
}

.fenxia {
  margin-top: 16rpx;
}

.starone {
  margin-left: 0;
}

.text {
  color: #06121e;
  font-size: 24rpx;
1  
lihongjuan authored
311 312 313 314 315 316 317 318 319 320
  /* margin-top: 26rpx; */
  line-height: 1.47;
  display:block;
  /* height:138rpx; */
  overflow-y: hidden;
  display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 4;
overflow: hidden;
  
lihongjuan authored
321 322 323
}

.boxitem {
1  
lihongjuan authored
324 325
  width: 184rpx;
  height: 184rpx;
lihongjuan authored
326
  font-size: 0;
1  
lihongjuan authored
327 328
  margin-right: 10rpx;
  margin-bottom:10rpx;
lihongjuan authored
329 330 331
}

.textboximg {
1  
lihongjuan authored
332
  /* margin-top: 26rpx; */
lihongjuan authored
333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434
}

.clockwrap {
  width: 590rpx;
  height: 500rpx;
  background: rgba(255, 255, 255, 1);
  opacity: 1;
  border-radius: 8rpx;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.clockwrapy {
  height: 420rpx;
}

.gantanimg {
  width: 120rpx;
  height: 120rpx;
  font-size: 0;
  margin: 64rpx auto 0;
}

.shibai {
  color: #06121e;
  font-size: 32rpx;
  text-align: center;
  margin-top: 32rpx;
}

.shebei {
  color: #8c9198;
  font-size: 24rpx;
  margin-top: 18rpx;
  text-align: center;
}

.bot {
  padding: 0 76rpx;
  box-sizing: border-box;
  margin-top: 58rpx;
}

.botleft {
  width: 204rpx;
  height: 60rpx;
  border: 2rpx solid rgba(189, 196, 206, 1);
  opacity: 1;
  border-radius: 8rpx;
  color: #bdc4ce;
  font-size: 24rpx;
  text-align: center;
  line-height: 60rpx;
}

.botright {
  width: 204rpx;
  height: 60rpx;
  background: rgba(253, 170, 42, 1);
  opacity: 1;
  border-radius: 8rpx;
  color: #fff;
  font-size: 24rpx;
  text-align: center;
  line-height: 60rpx;
  margin-left: 30rpx;
}

.successname {
  color: #06121e;
  font-size: 32rpx;
  text-align: center;
  margin-top: 44rpx;
}

.clocksure {
  width: 204rpx;
  height: 60rpx;
  background: rgba(253, 170, 42, 1);
  opacity: 1;
  border-radius: 8rpx;
  color: #fff;
  font-size: 24rpx;
  text-align: center;
  line-height: 60rpx;
  margin: 38rpx auto 0;
}

/* 评论 */

.phoetopleft {
  width: 36rpx;
  height: 36rpx;
  font-size: 0;
}

.phonenumber {
  color: #000;
  font-size: 28rpx;
  margin-left: 22rpx;
1  
lihongjuan authored
435
  /* font-weight: bold; */
lihongjuan authored
436 437 438 439 440 441 442 443 444 445 446 447
}

.addresstop {
  margin-top: 12rpx;
}

.addbox {
  width: 686rpx;
  background: rgba(255, 255, 255, 1);
  opacity: 1;
  padding: 12rpx 16rpx 36rpx 36rpx;
  box-sizing: border-box;
1  
lihongjuan authored
448
  margin-top: 24rpx;
lihongjuan authored
449 450 451 452
}

.additem {
  padding: 20rpx 0;
1  
lihongjuan authored
453
  border-bottom: 1rpx solid rgb(216, 222, 230);
lihongjuan authored
454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477
}

.shouimg {
  width: 36rpx;
  height: 36rpx;
  font-size: 0;
}

.timebox {
  color: #8c9198;
  font-size: 28rpx;
  padding-left: 16rpx;
  margin-left: 26rpx;
  border-left: 1rpx solid #f5f5f5;
}

.yingshi {
  color: #000;
  font-size: 28rpx;
}

.pricepeopel {
  color: #000;
  font-size: 28rpx;
1  
lihongjuan authored
478 479 480 481 482
  line-height: 1
}

.pricepeopelk {
  margin-left: 22rpx;
lihongjuan authored
483
}
1  
lihongjuan authored
484 485

.canone {
lihongjuan authored
486
  font-size: 24rpx;
1  
lihongjuan authored
487
  margin-top: 16rpx;
lihongjuan authored
488
}
1  
lihongjuan authored
489 490

.cantwo {
lihongjuan authored
491
  font-size: 24rpx;
1  
lihongjuan authored
492
  margin-top: 6rpx;
lihongjuan authored
493
}
1  
lihongjuan authored
494 495 496

.cantext {
  color: #707070;
1  
lihongjuan authored
497
  font-size: 28rpx;
1  
lihongjuan authored
498
  margin-top: 20rpx;
1  
lihongjuan authored
499
  line-height: 1.5
lihongjuan authored
500
}
1  
lihongjuan authored
501 502

.yuyueitem {
lihongjuan authored
503 504
  padding: 2rpx 38rpx;
  box-sizing: border-box;
1  
lihongjuan authored
505
  color: #000;
lihongjuan authored
506
  font-size: 24rpx;
1  
lihongjuan authored
507 508 509
  border: 1rpx solid #8c9198;
  margin-right: 16rpx;
  border-radius: 8rpx;
lihongjuan authored
510
}
1  
lihongjuan authored
511 512 513

.boitem {
  display: flex;
lihongjuan authored
514 515 516 517 518
  flex-direction: column;
  justify-content: center;
  align-content: center;
  box-sizing: border-box;
}
1  
lihongjuan authored
519 520 521 522 523 524

.botitemtop {
  width: 48rpx;
  height: 48rpx;
  font-size: 0;
  margin: 0 auto;
lihongjuan authored
525
}
1  
lihongjuan authored
526 527 528

.botname {
  color: #000;
lihongjuan authored
529
  font-size: 22rpx;
1  
lihongjuan authored
530
  margin-top: 5rpx;
lihongjuan authored
531
}
1  
lihongjuan authored
532
lihongjuan authored
533
.botfix {
1  
lihongjuan authored
534
  padding: 14rpx 170rpx;
lihongjuan authored
535 536
  box-sizing: border-box;
  background: #fff;
1  
lihongjuan authored
537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565
}

.photoact {
  margin-top: 300rpx;
}

.recommend {
  color: #fc8083;
}

.shareitem {
  position: relative;
}

.share {
  width: 36rpx;
  height: 72rpx;
  position: absolute;
  top: 0;
  left: 0;
  background: transparent;
  border: none;
  outline: none;
}

button::after {
  border: none;
  outline: none;
}
1  
lihongjuan authored
566 567 568 569

.shopname {
  margin-top: 70rpx;
  line-height: 1
1  
lihongjuan authored
570
}
1  
lihongjuan authored
571 572 573

.yuyuelsit {
  margin-top: 26rpx;
1  
lihongjuan authored
574 575 576
}
.dianbox{
  margin-top:24rpx;
1  
lihongjuan authored
577 578
}
.flowername{
1  
lihongjuan authored
579 580 581
  color: #fca052;
  font-size: 24rpx;
  font-weight: bold;
1  
lihongjuan authored
582 583
  margin-right:10rpx;
}
1  
lihongjuan authored
584 585 586 587 588 589
.starnametext{
  color: #fca052;
  font-size: 24rpx;
  font-weight: bold;

}
1  
lihongjuan authored
590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608
.case-page{
  padding: 0;
  margin-top:24rpx;
}
.flowernamek{
  font-size:18rpx;
}
.introleft {
  font-size: 19rpx;
}
.goodbot{
  padding: 0 10rpx;
}
.noitem{
  box-shadow: none;
}

/* 海报图 */
.posterwrap{
1  
lihongjuan authored
609 610
  width:480rpx;
  /* height:646rpx; */
1  
lihongjuan authored
611 612 613 614 615 616
  font-size: 0;
  background: #fff;
  position: absolute;
  top:50%;
  left:50%;
  transform: translate(-50%,-50%);
1  
lihongjuan authored
617 618 619 620 621 622
}
.kuaizinum{
  color: #fca052;
font-size: 24rpx;
margin-right: 10rpx;
font-weight: bold;
1  
lihongjuan authored
623
1  
lihongjuan authored
624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651
}
.textboximg {
  flex-wrap: wrap;
  margin-top:20rpx;
}
.btnshare{
  width:480rpx;
  position:absolute ;
  top:76%;
  left:50%;
  transform: translateX(-50%);
}
.sharebtn{
  width:210rpx;
height:70rpx;
background:rgba(66,66,66,1);
border-radius:40rpx;
color:#ECD17C;
font-size: 28rpx;
text-align: center;
line-height: 70rpx;
}
.pingji{
  margin-left:20rpx;
}
.pingjiac{
  padding: 40rpx 0;
  box-sizing: border-box;
1  
lihongjuan authored
652
}