product.wxss 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. page {
  2. overflow-y: auto;
  3. width: 100%;
  4. overflow-x: hidden;
  5. }
  6. .container {
  7. width: 100%;
  8. overflow-x: hidden;
  9. overflow-y: auto;
  10. }
  11. .container .product-img {
  12. width: 100%;
  13. padding-bottom: 10rpx;
  14. border-bottom: 1px solid #ebeef5;
  15. box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
  16. }
  17. .container .product-img image {
  18. width: 100%;
  19. height: 500rpx;
  20. }
  21. .container .product-img > view {
  22. margin: 10rpx 0 0 20rpx;
  23. }
  24. .container .product-desc {
  25. margin-top: 10rpx;
  26. width: 100%;
  27. }
  28. .container .product-desc image {
  29. width: 100%;
  30. height: 100%;
  31. }
  32. .container .comments {
  33. width: 100%;
  34. margin-top: 10rpx;
  35. }
  36. .container .comments .comment-title {
  37. display: flex;
  38. justify-content: space-between;
  39. padding: 15rpx 25rpx;
  40. border-bottom: 1px solid #ebeef5;
  41. }
  42. .container .comments .all-comments {
  43. padding-top: 5rpx;
  44. padding-right: 30rpx;
  45. position: relative;
  46. }
  47. .container .comments .all-comments .comments-icon {
  48. position: absolute;
  49. right: 0;
  50. top: 3rpx;
  51. }
  52. .container .appointment {
  53. width: 90%;
  54. height: 100rpx;
  55. margin: 10rpx auto;
  56. background-color: #DF3361;
  57. color: #fff;
  58. }
  59. .container .appointment .btn {
  60. font-size: 17px;
  61. line-height: 100rpx;
  62. text-align: center;
  63. letter-spacing: 2rpx;
  64. }
  65. .container .appointment-hover {
  66. background-color: #fff;
  67. border: 2rpx solid #DF3361;
  68. color: #363636;
  69. }