contacts.wxss 806 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. /* pages/settled/contacts/contacts.wxss */
  2. .page-contacts{
  3. }
  4. .page-contacts .contacts-title{
  5. position: relative;
  6. font-size:40rpx;
  7. color:rgba(22,22,22,1);
  8. padding: 30rpx 50rpx;
  9. }
  10. .page-contacts .contacts-title:after{
  11. position: absolute;
  12. display: block;
  13. content: "";
  14. left: 0;
  15. top:50%;
  16. transform: translate(0,-50%);
  17. width:6rpx;
  18. height:40rpx;
  19. background:rgba(22,22,22,1);
  20. }
  21. .page-contacts .img-wrap{
  22. margin-bottom: 100rpx;
  23. }
  24. .page-contacts .img-wrap>image{
  25. display: block;
  26. width: 100%;
  27. }
  28. .button-text{
  29. display: block;
  30. width:420rpx;
  31. height:90rpx;
  32. line-height: 90rpx;
  33. margin: 0 auto;
  34. background:rgba(255,255,255,1);
  35. border:2rpx solid rgba(22,22,22,1);
  36. color: #161616;
  37. font-size: 32rpx;
  38. text-align: center;
  39. }