12345678910111213141516171819202122232425262728293031323334 |
- .My_inform_box {
- background-color: #ffffff;
- }
- /* 可选是否底部边框 */
- .My_inform_box_botBorder {
- border-bottom: 1px solid #E4E4E4;
- background-color: #ffffff;
- }
- .My_inform_row {
- display: flex;
- justify-content: space-between;
- height: 100rpx;
- line-height: 100rpx;
- border-bottom: 1px solid #E4E4E4;
- }
- .My_inform_row .title {
- font-size: 34rpx;
- margin-left: 25rpx;
- color: #000;
- }
- .My_inform_row .title .title_img {
- float: right;
- height: 50rpx;
- margin-left: 15rpx;
- margin-top: 25rpx;
- }
- .My_inform_row .but-r {
- margin-right: 25rpx;
- }
|