123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127 |
- .person_info {
- position: relative;
- padding: 30rpx 40rpx;
- background: #fff;
- margin-top: 22rpx;
- font-size: 30rpx;
- }
- .person_info::after,.order_list::after {
- content: "";
- position: absolute;
- bottom: 0;
- left: 0;
- right: 0;
- height: 2rpx;
- background: #d9d9d9;
- -webkit-transform: scaleY(0.5);
- transform: scaleY(0.5);
- }
- .person_info .person_avatar_image {
- width: 122rpx;
- height: 118rpx;
- margin-right: 32rpx;
- border-radius: 10rpx;
- vertical-align: middle;
- }
- .order_list {
- position: relative;
- margin-top: 22rpx;
- font-size: 30rpx;
- background: #ffffff;
- }
- .order_list .order_title {
- position: relative;
- display: flex;
- height: 104rpx;
- box-sizing: border-box;
- line-height: 104rpx;
- padding: 0 40rpx;
- }
- .order_list .order_title text {
- flex: 1;
- }
- .order_list .order_title .look_all_order {
- text-align: right;
- color: #999;
- }
- .order_list .order_info {
- display: flex;
- padding: 40rpx;
- }
- .order_list .order_info>view {
- flex: 1;
- text-align: center;
- font-size: 20rpx;
- color: #999;
- }
- .order_list .order_info image {
- vertical-align: middle;
- }
- .order_list .order_info text {
- display: inline-block;
- height: 30rpx;
- margin-top: 10rpx;
- }
- .person_info_cell {
- margin-top: 22rpx;
- background: #ffffff;
- position: relative;
- }
- .person_info_cell::after {
- content: "";
- position: absolute;
- bottom: 0;
- left: 0;
- right: 0;
- height: 2rpx;
- background: #d9d9d9;
- -webkit-transform: scaleY(0.5);
- transform: scaleY(0.5);
- }
- .person_info_cell .item {
- padding: 40rpx;
- font-size: 30rpx;
- }
- .person_info_cell .item image {
- margin-right: 25rpx;
- }
- .person_info_cell .item text {
- display: inline-block;
- width: 615rpx;
- }
- .bonus_item {
- font-size: 30rpx;
- padding: 10rpx 40rpx;
- }
- .bonus_item text {
- display: inline-block;
- width: 50%;
- }
- .bonus_item text.total {
- color: #eb4e4f;
- text-align: right;
- }
- .bonus_list {
- overflow: hidden;
- }
- .show {
- max-height: 999rpx;
- -webkit-transition: max-height .5s;
- transition: max-height .5s;
- }
- .hide {
- max-height: 0;
- -webkit-transition: max-height .5s;
- transition: max-height .5s;
- }
- .arrow_down {
- -webkit-transform: rotate(45deg);
- transform: rotate(45deg);
- }
|