12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- /* component/fauleInfoItem/faultInfoItem.wxss */
- .round {
- width: 18rpx;
- height: 18rpx;
- background: #c6c6c6;
- border-radius: 50%;
- }
- .itemLayout {
- width: 710rpx;
- display: flex;
- flex-direction: column;
- margin-bottom: 30rpx;
- }
- .itemTextLayout {
- flex-direction: row;
- display: flex;
- align-items: center;
- }
- .itemTitleText {
- margin-left: 19rpx;
- font-size: 30rpx;
- font-weight: 500;
- color: #666666;
- }
- .contentLayout {
- width: 660rpx;
- margin-left: 38rpx;
- }
- .contentLayoutText {
- font-size: 24rpx;
- color: #666666;
- line-height: 40rpx
- }
- .itemImgScroll {
- height: 87rpx;
- width: 660rpx;
- margin-left: 31rpx;
- margin-top: 10rpx;
- white-space: nowrap;
- }
- .itemScrollItem {
- display: flex;
- flex-direction: row;
- display: inline-block;
- }
- .itemScrollItemImg {
- width: 154rpx;
- height: 87rpx;
- background-color: teal;
- margin-right: 10rpx;
- }
|