1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- page {
- background: #ededed;
- }
- .container {
- padding-bottom: 160rpx;
- .content{
- .topIcon{
- display: flex;
- flex-direction: column;
-
- align-items: center;
- height:800rpx;
- justify-content: center;
- image{
- width: 100rpx;
- height: 100rpx;
- border-radius: 50%;
- }
- .txt{
- margin-top: 50rpx;
- font-size: 34rpx;
- color:#26B3A0 ;
- }
-
- }
- .btn{
- width:90%;
- background: #26B3A0;
- height: 100rpx;
- border-radius: 20rpx;
- font-size: 30rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- color: #fff;
- // font-weight: 600;
- margin-left: 50%;
- transform: translateX(-50%);
- }
- }
-
- }
-
-
|