12345678910111213141516171819202122232425262728293031323334353637383940 |
- /* pages/sgin/sgin.wxss */
- .sgin{
- padding-top: 100rpx;
- .img{
- width: 160rpx;
- height: 160rpx;
- border-radius: 50%;
- overflow: hidden;
- margin:100rpx auto 10rpx;
- }
- .box_b{
- padding: 60rpx;
- .label{
- font-size: 26rpx;
- font-weight: bold;
- text-align: center;
- }
- .title{
- text-align: center;
- color:#666;
- }
- .hr{
- display: flex;
- justify-content: center;
- align-items: center;
- .a{
- width: 100%;
- height: 1px;
- background-color: #ccc;
- }
- .b{
- padding: 20rpx;
- color: #aaa;
- }
- }
- .button{
- margin: 20rpx 0;
- }
- }
- }
|