123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- page {
- overflow-y: auto;
- width: 100%;
- overflow-x: hidden;
- }
- .container {
- width: 100%;
- overflow-x: hidden;
- overflow-y: auto;
- }
- .container .product-img {
- width: 100%;
- padding-bottom: 10rpx;
- border-bottom: 1px solid #ebeef5;
- box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
- }
- .container .product-img image {
- width: 100%;
- height: 500rpx;
- }
- .container .product-img > view {
- margin: 10rpx 0 0 20rpx;
- }
- .container .product-desc {
- margin-top: 10rpx;
- width: 100%;
- }
- .container .comments {
- width: 100%;
- margin-top: 10rpx;
- }
- .container .comments .comment-title {
- display: flex;
- justify-content: space-between;
- padding: 15rpx 25rpx;
- border-bottom: 1px solid #ebeef5;
- }
- .container .comments .all-comments {
- padding-top: 5rpx;
- padding-right: 30rpx;
- position: relative;
- }
- .container .comments .all-comments .comments-icon {
- position: absolute;
- right: 0;
- top: 3rpx;
- }
- .container .appointment {
- width: 90%;
- height: 100rpx;
- margin: 10rpx auto;
- background-color: #DF3361;
- color: #fff;
- }
- .container .appointment .btn {
- font-size: 17px;
- line-height: 100rpx;
- text-align: center;
- letter-spacing: 2rpx;
- }
- .container .appointment-hover {
- background-color: #fff;
- border: 2rpx solid #DF3361;
- color: #363636;
- }
|