product.scss 1.5 KB

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