123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151 |
- html,
- body {
- height: 100%;
- font-family: PingFangSC-Regular;
- color: #333333;
- }
- .content{
- box-sizing: border-box;
- padding-bottom: 90rpx;
- }
- .content-X{
- box-sizing: border-box;
- padding-bottom: 158rpx;
- }
- .header {
- width: 100%;
- height: 240rpx;
- background: #28aff0;
- color: #ffffff;
- box-sizing: border-box;
- padding-left: 32rpx;
- overflow: hidden;
- position: relative;
- }
- .header > view:first-child {
- font-size: 36rpx;
- margin: 48rpx 0 8rpx;
- }
- .header > view:nth-child(2) {
- font-size: 24rpx;
- }
- .header > image {
- width: 212rpx;
- height: 148rpx;
- position: absolute;
- top: 32rpx;
- right: 44rpx;
- }
- .personBox {
- width: 100%;
- box-sizing: border-box;
- padding: 0 24rpx;
- position: relative;
- top: -60rpx;
- }
- .personBox > .item {
- width: 100%;
- height: 200rpx;
- background: #ffffff;
- box-shadow: 0 4rpx 8rpx 0 rgba(0, 0, 0, 0.03);
- border-radius: 8rpx;
- box-sizing: border-box;
- padding: 52rpx 40rpx;
- /* display: flex;
- align-items: center; */
- margin-bottom: 24rpx;
- }
- .personBox > .pItem > view{
- float: left;
- }
- .personBox > .pItem > view:first-child {
- width: 96rpx;
- background: #28aff0;
- border-radius: 50%;
- color: #ffffff;
- text-align: center;
- line-height: 96rpx;
- font-family: PingFangSC-Semibold;
- font-size: 30rpx;
- margin-right: 30rpx;
- }
- .personBox > .pItem > view:nth-child(2) {
- display: flex;
- flex-direction: column;
- }
- .personBox > .pItem > view:nth-child(2) > text:first-child {
- font-family: PingFangSC-Medium;
- font-size: 34rpx;
- color: #333333;
- }
- .personBox > .pItem > view:nth-child(2) > text:last-child {
- font-size: 28rpx;
- color: #808080;
- }
- .personBox > .pItem > .selectBox{
- margin-top: 24rpx;
- float: right;
- }
- .personBox > .pItem > .selectBox > image {
- width: 48rpx;
- height: 48rpx;
- }
- .personBox > .pItem .selectBox image:first-child{
- display: block;
- }
- .personBox > .pItem .selectBox image:last-child{
- display: none;
- }
- .personBox > .selected .selectBox image:first-child{
- display: none;
- }
- .personBox > .selected .selectBox image:last-child{
- display: block;
- }
- /* .personBox > .pItem>.editBox{
- margin-left: 144rpx;
- }
- .personBox > .pItem>.editBox>image{
- width: 32rpx;
- height: 32rpx;
- }
- .personBox > .pItem>.editBox>image:first-child{
- margin-right: 56rpx;
- } */
- .personBox > .addItem{
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .personBox > .addItem image {
- width: 20rpx;
- height: 20rpx;
- margin-right: 16rpx;
- }
- .personBox > .addItem > view {
- margin: 0 auto;
- font-size: 30rpx;
- color: #3296fb;
- }
- .btnBox,.btnBox-X {
- width: 100%;
- background: #ffffff;
- box-sizing: border-box;
- padding: 0 32rpx;
- position: fixed;
- bottom: 0;
- z-index: 100;
- }
- .btnBox-X {
- padding-bottom: 68rpx;
- }
- .btn {
- height: 90rpx;
- background: #3296fb;
- border-radius: 45rpx;
- color: #ffffff;
- font-family: PingFangSC-Medium;
- font-size: 32rpx;
- text-align: center;
- line-height: 90rpx;
- }
|