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