12345678910111213141516171819202122232425262728 |
- /* pages/detailed/detailed.wxss */
- .detailed{
- padding: 10rpx 20rpx;
- .container{
- background-color: #fff;
- padding: 20rpx;
- border-radius: 20rpx;
- .item{
- padding: 20rpx 0;
- border-bottom: 1px solid #eee;
- .flex{
- display: flex;justify-content: space-between;align-items: center;
- margin-bottom: 10rpx;
- .right{
- font-weight: 600;
- }
- }
- .detail{
- font-size: 14px;
- color: #777;
- text-align: justify;
- }
- }
- &>.item:last-child{
- border: 0;
- }
- }
- }
|