12345678910111213141516171819202122232425262728293031323334353637 |
- /* 联系人 */
- .contacts {
- display: flex;
- align-items: center;
- width: 100vw;
- height: 112rpx;
- background-color: #ffffff;
- padding: 0 30rpx;
- box-sizing: border-box;
- .circle {
- width: 64rpx;
- height: 64rpx;
- line-height: 64rpx;
- text-align: center;
- border-radius: 50%;
- background-color: #3874F6;
- font-size: 26rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #FFFFFF;
- margin-right: 20rpx;
- }
- .text {
- flex: 1;
- font-size: 30rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #333333;
- .tag {
- height: 48rpx;
- padding: 0 15rpx;
- margin-right: 10rpx;
- border-radius: 24rpx;
- }
- }
- }
|