| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187 |
- .PersonnelSalaryBudget {
- height: 97vh;
- padding: 16px;
- background: #fff;
- .cardWrap {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- align-items: center;
- // margin-top: 16px;
- margin-bottom: 16px;
- .card {
- width: 32.5%;
- height: 100px;
- padding: 24px;
- border-radius: 4px;
- &>span {
- position: relative;
- z-index: 9;
- display: inline-block;
- height: 15px;
- font-size: 14px;
- font-family: SourceHanSansCN-Normal, SourceHanSansCN;
- font-weight: 400;
- color: #7A8599;
- line-height: 15px;
- margin-bottom: 10px;
- }
- .count {
- position: relative;
- z-index: 9;
- height: 30px;
- font-size: 28px;
- font-family: SourceHanSansCN-Medium, SourceHanSansCN;
- font-weight: 500;
- color: #527ACC;
- line-height: 30px;
- }
- &:nth-child(1) {
- position: relative;
- height: 100px;
- background: linear-gradient(270deg, #D9E5FF 0%, #F2F7FF 100%);
- &::after {
- position: absolute;
- top: 0;
- z-index: 1;
- right: 8px;
- display: block;
- content: '';
- width: 130px;
- height: 100px;
- background: url('../../../../static/A@2x.png');
- background-size: cover;
- }
- }
- &:nth-child(2) {
- position: relative;
- height: 100px;
- background: linear-gradient(270deg, #D4F4FA 0%, #E8F9FC 100%);
- .count {
- color: #52B8CC;
- }
- &::after {
- position: absolute;
- top: 0;
- z-index: 1;
- right: 8px;
- display: block;
- content: '';
- width: 130px;
- height: 100px;
- background: url('../../../../static/B@2x.png');
- background-size: cover;
- }
- }
- &:nth-child(3) {
- position: relative;
- height: 100px;
- background: linear-gradient(270deg, #D9F2FF 0%, #EBF8FF 100%);
- .count {
- color: #51A3CC;
- }
- &::after {
- position: absolute;
- top: 0;
- z-index: 1;
- right: 8px;
- display: block;
- content: '';
- width: 130px;
- height: 100px;
- background: url('../../../../static/C@2x.png');
- background-size: cover;
- }
- }
- }
- }
- .countBtn {
- cursor: pointer;
- text-align: center;
- height: 40px;
- line-height: 40px;
- background: #FAFCFF;
- border-radius: 4px;
- border: 1px solid #DAE2F2;
- font-size: 14px;
- font-family: SourceHanSansCN-Normal, SourceHanSansCN;
- font-weight: 400;
- color: #17181A;
- margin-bottom: 32px;
- }
- .subTitle {
- height: 17px;
- font-size: 16px;
- font-family: SourceHanSansCN-Medium, SourceHanSansCN;
- font-weight: 500;
- color: #17181A;
- line-height: 17px;
- margin-bottom: 24px;
- }
- .func {
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- &>span {
- display: inline-block;
- height: 15px;
- font-size: 14px;
- font-family: SourceHanSansCN-Normal, SourceHanSansCN;
- font-weight: 400;
- color: #17181A;
- line-height: 15px;
- margin-bottom: 16px;
- }
- .input {
- width: 240px;
- height: 40px;
- background: #FFF;
- border-radius: 4px;
- border: 1px solid #CFD7E6;
- }
- }
- .midLine {
- display: flex;
- flex-direction: row;
- justify-content: center;
- align-items: center;
- height: 24px;
- line-height: 24px;
- background: #F0FCFC;
- font-size: 12px;
- color: #515866;
- font-family: SourceHanSansCN-Normal, SourceHanSansCN;
- font-weight: 400;
- margin-top: 24px;
- margin-bottom: 15px;
- &>span {
- cursor: pointer;
- font-size: 12px;
- font-family: SourceHanSansCN-Medium, SourceHanSansCN;
- font-weight: 500;
- color: #00B3B3;
- padding-right: 4px;
- }
- }
- }
|