1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- 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 .product-desc image {
- width: 100%;
- height: 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;
- }
|