| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- .content_x {
- width: 100%;
- display: inline-block;
- padding-bottom: 170rpx;
- }
- .doc_info {
- position: relative;
- padding: 30rpx;
- display: flex;
- align-items: center;
- background-color: #fff;
- margin-bottom: 20rpx;
- }
- .right {
- position: absolute;
- right: 30rpx;
- top: 0;
- bottom: 0;
- margin: auto 0;
- width: 12rpx;
- height: 24rpx;
- }
- .info_item .right {
- position: inherit;
- margin-left: 12rpx;
- }
- .doc_img {
- width: 88rpx;
- height: 88rpx;
- flex-shrink: 0;
- margin-right: 24rpx;
- border-radius: 50%;
- }
- .doc_con {
- width: 100%;
- }
- .doc_name {
- font-size: 32rpx;
- font-family: PingFang SC;
- font-weight: bold;
- color: #333;
- line-height: 18rpx;
- margin-bottom: 15rpx;
- }
- .doc_tip {
- font-size: 26rpx;
- font-family: PingFang SC;
- color: #999;
- }
- .info_list {
- background-color: #fff;
- display: inline-block;
- width: 100%;
- margin-bottom: 20rpx;
- padding: 0 30rpx;
- }
- .info_item {
- display: flex;
- align-items: center;
- justify-content: space-between;
- font-size: 32rpx;
- font-family: PingFang SC;
- color: #333;
- }
- .info_item_val {
- padding: 38rpx 0;
- display: flex;
- align-items: center;
- }
- .info_item_tip {
- font-size: 28rpx;
- font-family: PingFang SC;
- color: #999;
- line-height: 42rpx;
- padding: 25rpx 30rpx;
- background: #f7f7f7;
- border-radius: 10rpx;
- position: relative;
- margin-bottom: 30rpx;
- }
- .info_item_tip::after {
- display: block;
- content: "";
- width: 20rpx;
- height: 20rpx;
- background-color: #f7f7f7;
- transform-origin: 50%;
- transform: rotateZ(45deg);
- position: absolute;
- left: 30rpx;
- top: -10rpx;
- }
- .info_item_val{
- font-size: 32rpx;
- font-family: PingFang SC;
- color: #666666;
- line-height: 38rpx;
- }
- .picker{
- margin: 0 20rpx;
- }
|