12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- .public {
- display: flex;
- flex-direction: column;
- align-items: center;
- }
- .image_top {
- margin-top: 40rpx;
- height: 40vw;
- width: 60vw;
- }
- .top_item_public_add {
- display: -webkit-flex;
- display: flex;
- margin-top: 40rpx;
- align-items: center;
- justify-content: flex-start;
- flex-wrap: wrap;
- width: 100%;
- }
- .top_item_public {
- justify-content: center;
- flex: 0 0 auto;
- width: 50%;
- text-align: center;
- color: #797979;
- padding: 40rpx 0;
- font-size: 30rpx;
- }
- .top_image {
- height: 20vw;
- }
- .action_public {
- display: flex;
- }
- .center_public {
- width: 50vw;
- margin-left: 30rpx;
- justify-content: start;
- }
- .bottom_public {
- position: fixed;
- bottom: 54rpx;
- width: 100vw;
- justify-content: center;
- }
- /* .bottom_public {
- } */
- .action_public>view {
- display: flex;
- justify-content: center;
- align-items: center;
- width: 520rpx;
- height: 80rpx;
- background: #999999;
- border-radius: 45rpx;
- font-size: 36rpx;
- font-weight: 400;
- color: #FFFFFF;
- }
- .action_public>view.action {
- background: #6547A3;
- }
|