You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
72 lines
1.2 KiB
72 lines
1.2 KiB
/* pages/detail/detail.wxss */
|
|
page{
|
|
background-color: rgb(228, 227, 227);
|
|
}
|
|
.detail {
|
|
box-sizing: border-box;
|
|
width: 94%;
|
|
padding: 25px;
|
|
background-color: #fff;
|
|
border-radius: 15rpx;
|
|
margin: 10px auto;
|
|
}
|
|
.detail .title {
|
|
font-size: 40rpx;
|
|
color: black;
|
|
margin-bottom: 10rpx;
|
|
font-weight: bold;
|
|
}
|
|
.detail .shop {
|
|
font-size: 14px;
|
|
color: rgb(127, 120, 120);
|
|
margin-bottom: 20rpx;
|
|
}
|
|
.detail .price {
|
|
color: red;
|
|
font-size: 16px;
|
|
}
|
|
.comment{
|
|
box-sizing: border-box;
|
|
width: 94%;
|
|
background-color: #fff;
|
|
border-radius: 15rpx;
|
|
font-size: 15px;
|
|
padding: 15px 25px;
|
|
margin: 0 auto;
|
|
}
|
|
.comment_detail{
|
|
padding: 15px 0;
|
|
border-bottom: rgb(211, 206, 206) solid 1px;
|
|
}
|
|
.buttom{
|
|
box-sizing: border-box;
|
|
position: fixed;
|
|
bottom: 0;
|
|
height: 60px;
|
|
width: 100%;
|
|
background-color: #fff;
|
|
border-radius: 25px 25px 0 0;
|
|
box-shadow: rgb(173, 173, 173) 0 0 20px;
|
|
}
|
|
.buttom button{
|
|
display: block;
|
|
float: left;
|
|
padding: 0;
|
|
height: 40px;
|
|
background-color: rgb(102, 190, 241);
|
|
border-radius: 25px;
|
|
font-weight: normal;
|
|
color: #fff;
|
|
line-height: 40px;
|
|
font-size: 14px;
|
|
}
|
|
.left{
|
|
position: fixed;
|
|
bottom: 10px;
|
|
left: 10px;
|
|
}
|
|
.right{
|
|
position: fixed;
|
|
bottom: 10px;
|
|
right: 10px;
|
|
} |