sgin.less 671 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. /* pages/sgin/sgin.wxss */
  2. .sgin{
  3. padding-top: 100rpx;
  4. .img{
  5. width: 160rpx;
  6. height: 160rpx;
  7. border-radius: 50%;
  8. overflow: hidden;
  9. margin:100rpx auto 10rpx;
  10. }
  11. .box_b{
  12. padding: 60rpx;
  13. .label{
  14. font-size: 26rpx;
  15. font-weight: bold;
  16. text-align: center;
  17. }
  18. .title{
  19. text-align: center;
  20. color:#666;
  21. }
  22. .hr{
  23. display: flex;
  24. justify-content: center;
  25. align-items: center;
  26. .a{
  27. width: 100%;
  28. height: 1px;
  29. background-color: #ccc;
  30. }
  31. .b{
  32. padding: 20rpx;
  33. color: #aaa;
  34. }
  35. }
  36. .button{
  37. margin: 20rpx 0;
  38. }
  39. }
  40. }