123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218 |
- .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;
- border-radius: 50%;
- }
- .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 {
- color: #666;
- flex: 1;
- }
- .order_list .order_title .look_all_order {
- font-size: 24rpx;
- 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;
- /* 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);
- }
- /* 新增 card */
- .person_header {
- position: relative;
- height: 406rpx;
- background-image: linear-gradient(-180deg, #FFE4A6 13%, rgba(255,238,213,0.00) 100%);
- }
- .card {
- position: absolute;
- left: 0;
- right: 0;
- top: 40rpx;
- margin: auto;
- width: 600rpx;
- height: 320rpx;
- text-align: center;
- }
- .card_bg, .card_content {
- position: absolute;
- left: 0;
- top: 0;
- width: 100%;
- height: 100%;
- }
- .card_content {
- z-index: 1;
- }
- .card_title {
- padding: 40rpx 0 18rpx;
- font-size: 30rpx;
- color: #FFFFFF;
- line-height: 44rpx;
- }
- .bonus_balance {
- font-size: 70rpx;
- color: #FFEEA6;
- height: 80rpx;
- line-height: 80rpx;
- }
- .bonus_balance_detail {
- position: relative;
- padding: 8rpx 34rpx;
- font-size: 24rpx;
- color: #FFEEA6;
- line-height: 44rpx;
- }
- .bonus_balance_detail::after {
- content: '';
- position: absolute;
- top: 0;
- left: 0;
- width: 200%;
- height: 200%;
- transform: scale(.5);
- transform-origin: 0 0;
- pointer-events: none;
- box-sizing: border-box;
- border: 0 solid #FFEEA6;
- border-radius: 100rpx;
- border-width: 1px;
- box-shadow: 0 4rpx 20rpx 0 rgba(77,17,17,0.10);
- }
- .use_bonus_rules {
- margin-right: 20rpx;
- margin-top: 60rpx;
- font-size: 22rpx;
- color: #FFFFFF;
- text-align: right;
- line-height: 44rpx;
- text-decoration: underline;
- }
- .sub_count {
- position: absolute;
- z-index: 1;
- /* padding: 5rpx 10rpx; */
- width: 36rpx;
- height: 36rpx;
- line-height: 40rpx;
- left: 50%;
- top: -18rpx;
- background: #2b2b2b;
- color: #fff;
- font-size: 20rpx;
- border-radius: 50%;
- transform: scale(.8);
- }
|