12345678910111213141516171819202122232425262728293031323334353637383940 |
- /* pages/settled/contacts/contacts.wxss */
- .page-contacts{
- }
- .page-contacts .contacts-title{
- position: relative;
- font-size:40rpx;
- color:rgba(22,22,22,1);
- padding: 30rpx 50rpx;
- }
- .page-contacts .contacts-title:after{
- position: absolute;
- display: block;
- content: "";
- left: 0;
- top:50%;
- transform: translate(0,-50%);
- width:6rpx;
- height:40rpx;
- background:rgba(22,22,22,1);
- }
- .page-contacts .img-wrap{
- margin-bottom: 100rpx;
- }
- .page-contacts .img-wrap>image{
- display: block;
- width: 100%;
- }
- .button-text{
- display: block;
- width:420rpx;
- height:90rpx;
- line-height: 90rpx;
- margin: 0 auto;
- background:rgba(255,255,255,1);
- border:2rpx solid rgba(22,22,22,1);
- color: #161616;
- font-size: 32rpx;
- text-align: center;
- }
|