| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228 |
- .customerProfile {
- min-height: calc(100vh - 30px);
- background: #F5F5F5;
- padding-bottom: 30px;
- .titleContent {
- position: relative;
- // background: white;
- // padding: 20px 20px;
- // border-bottom: 1px #dadada solid;
- .content {
- .name {
- font-size: 32px;
- color: #1E90FF;
- font-weight: bolder;
- padding-bottom: 10px;
- display: flex;
- flex-direction: row;
- flex-wrap: wrap;
- align-items: flex-start;
- justify-content: space-between;
- background: white;
- padding: 20px;
- margin-bottom: 20px;
- .bod {
- // border-bottom: 2px solid #1E90FF;
- // padding-bottom: 10px;
- }
- .share {
- margin: 0;
- padding: 0;
- font-size: 26px;
- line-height: 24px;
- color: #1E90FF;
- padding: 10px 30px;
- border: 1px solid #1E90FF;
- border-radius: 30px;
- }
- }
- .button {
- display: flex;
- flex-direction: row-reverse;
- padding: 20px 20px 0;
- background: white;
- .but {
- background: #1E90FF;
- padding: 10px 15px;
- color: #FFFFFF;
- font-size: 26px;
- border-radius: 8px;
- margin-left: 20px;
- }
- }
- .row {
- background: white;
- display: flex;
- flex-direction: row;
- align-items: center;
- justify-content: space-between;
- padding: 20px 20px;
- .code {
- font-size: 26px;
- color: #767272;
- }
- .time {
- font-size: 26px;
- color: #767272;
- }
- }
- .first {
- background: #facd91;
- padding: 20px 20px;
- }
- .two {
- background: #81d3f8;
- padding: 20px 20px;
- }
- .title {
- font-weight: bolder;
- margin: 20px 0 10px 0;
- }
- .tit {
- display: flex;
- flex-direction: row;
- align-items: baseline;
- justify-content: space-between;
- font-size: 28px;
- font-weight: bolder;
- margin-top: 15px;
- margin-bottom: 5px;
- .up {
- background: #70B603;
- color: #FFFFFF;
- padding: 10px 20px;
- font-size: 26px;
- border-radius: 8px;
- font-weight: 400;
- }
- .txt {
- color: red;
- font-weight: 400;
- font-size: 20px;
- }
- }
- .val {
- position: relative;
- font-size: 26px;
- margin-bottom: 5px;
- .num {
- font-weight: bolder;
- color: #1E90FF;
- }
- .mask {
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- width: 100%;
- height: 100%;
- background: #facd91;
- z-index: 99;
- }
- }
- }
- }
- }
- .selectTitle {
- font-weight: bolder;
- margin-bottom: 10px;
- font-size: 28px;
- display: flex;
- flex-direction: row;
- }
- .additem {
- display: flex;
- flex-direction: row;
- align-items: center;
- justify-content: space-between;
- font-size: 22px;
- color: #4395ff;
- margin-bottom: 15px;
- .txt {
- width: 16%;
- display: flex;
- // flex: 1;
- }
- .mobile {
- width: 30%;
- }
- .bt {
- padding: 4px 10px;
- background: #4395ff;
- color: #FFFFFF;
- border-radius: 6px;
- margin-left: 15px;
- }
- .bts {
- padding: 4px 10px;
- color: #4395ff;
- margin-left: 15px;
- }
- }
- .selproject {
- margin-left: 32px;
- display: flex;
- flex-direction: row;
- align-items: center;
- flex-wrap: wrap;
- margin-bottom: 20px;
- .selptxt {
- background: #f50;
- padding: 6px 16px;
- margin: 6px;
- border-radius: 8px;
- color: #fff;
- }
- }
- .at-input {
- padding: 4rpx 0;
- margin-left: 0rpx;
- }
|