| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125 |
- /* components/jianli/jianli.wxss */
- .edit {
- color: #0177FF;
- font-size: 30rpx;
- }
- .header,
- .experience,
- .intention {
- margin-top: 10rpx;
- background: #fff;
- position: relative;
- }
- .edit-content {
- width: 120rpx;
- height: 80rpx;
- position: absolute;
- right: 30rpx;
- top: 38rpx;
- display: flex;
- justify-content: flex-end;
- z-index: 99;
- }
- .info {
- height: 280rpx;
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding: 0 30rpx;
- border-bottom: 1rpx solid #f5f5f5;
- }
- .info-content {
- flex: 1;
- display: flex;
- justify-content: space-around;
- flex-direction: column;
- }
- .name {
- font-size: 48rpx;
- margin-bottom: 10rpx;
- }
- .info-detail {
- color: #666666;
- font-size: 30rpx;
- }
- .cell {
- min-height: 86rpx;
- font-size: 30rpx;
- color: #000;
- padding: 15rpx 30rpx;
- box-sizing: border-box;
- display: flex;
- align-items: center;
- justify-content: space-between;
- border-bottom: 1rpx solid #f5f5f5;
- }
- .cell-title {
- color: #666;
- }
- .cell-content {
- flex: 1;
- margin-left: 15rpx;
- }
- .title {
- height: 116rpx;
- padding: 0 30rpx;
- box-sizing: border-box;
- border-bottom: 1rpx solid #f5f5f5;
- display: flex;
- align-items: center;
- justify-content: space-between;
- position: relative;
- }
- .title-edit {
- height: 100%;
- width: 100%;
- padding: 0 30rpx;
- box-sizing: border-box;
- display: flex;
- align-items: center;
- justify-content: flex-end;
- position: absolute;
- left: 0;
- top: 0;
- z-index: 99;
- }
- .add-experience {
- font-size: 34rpx;
- color: #006BE7;
- height: 100rpx;
- background: #fff;
- margin-bottom: 20rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- position: relative;
- }
- .add-experience-image {
- height: 35rpx;
- width: 35rpx;
- margin-right: 30rpx;
- }
- .add-experience-content {
- height: 100%;
- width: 100%;
- position: absolute;
- left: 0;
- top: 0;
- z-index: 99;
- }
|