12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- .top_item_public_add {
- /*
- margin-top: 50rpx; */
- /* 垂直布局 */
- /* flex-direction: column; */
- /* 垂直居中 */
- /* justify-content: center; */
- display: -webkit-flex;
- display: flex;
- margin-top: 40rpx;
- align-items: center;
- justify-content: flex-start;
- flex-wrap: wrap;
- width: 100%;
- }
- .top_item_public {
- /* display: flex;
- flex: 1; */
- justify-content: center;
- flex: 0 0 auto;
- width: 33.33333333%;
- text-align: center;
- color: #797979;
- padding: 40rpx 0;
- font-size: 30rpx;
- }
- .top_image {
- height: 70rpx;
- }
- .setting_public {
- margin: 200rpx 0 0rpx 40rpx;
- font-size: 40rpx;
- font-weight: 500;
- }
- .bottom_public {
- display: flex;
- font-size: 40rpx;
- margin: 60rpx 40rpx 40rpx 40rpx;
- justify-content: space-between;
- align-items: center;
- }
- .bottom_item {
- display: flex;
- align-items: center;
- }
- .bottom_item_image {
- height: 70rpx;
- margin-right: 20rpx;
- }
|