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.
|
- /* package_A/pages/riverDetail/index.wxss */
- .detail_container {
- width: 100%;
- display: flex;
- flex-direction: column;
- justify-content: flex-start;
- align-items: flex-start;
- }
- .river_img {
- width: 100%;
- height: 300rpx;
- }
- .river_message {
- width: 100%;
- padding: 20rpx 0;
- display: flex;
- flex-direction: column;
- justify-content: flex-start;
- align-items: flex-start;
- }
- .message_item {
- width: 100%;
- padding: 20rpx 30rpx;
- display: flex;
- justify-content: space-between;
- }
- .item_label {
- width: 170rpx;
- flex-shrink: 0;
- font-size: 30rpx;
- color: #666666;
- }
- .item_value {
- flex: 1;
- text-align: end;
- word-wrap: break-word;
- word-break: break-all;
- font-size: 26rpx;
- color: #333333;
- }
- .note_box {
- width: 100%;
- padding: 20rpx 30rpx;
- display: flex;
- flex-direction: column;
- justify-content: flex-start;
- align-items: flex-start;
- }
- .note {
- font-size: 26rpx;
- color: #333333;
- margin-top: 20rpx;
- text-align: start;
- word-break: break-all;
- }
|