123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241 |
- .workbench {
- width: 100%;
- .header {
- background: #f4f7f9;
- ul {
- display: flex;
- width: 100%;
- :last-child {
- margin-right: 0;
- }
- li {
- width: 20%;
- height: 150px;
- padding: 30px 24px 30px 20px;
- margin-right: 20px;
- display: flex;
- justify-content: space-between;
- position: relative;
- color: white;
- font-size: 14px;
- border-radius: 6px;
- }
- }
- }
- .header-left {
- display: flex;
- .header-left-top {
- display: flex;
- .header-icon {
- width: 4px;
- height: 12px;
- border-radius: 2px;
- background: white;
- margin-right: 10px;
- }
- :last-child {
- line-height: 14px;
- }
- }
- }
- .header-number {
- position: absolute;
- bottom: 20px;
- left: 20px;
- font-size: 40px;
- }
- .header-right {
- // display: flex;
- // flex-direction: column;
- // justify-content: end;
- // text-align: end;
- // margin-right: 10px;
- // margin-left: 200px;
- // padding-left: 200px;
- position: absolute;
- right: 20px;
- bottom: 40px;
- img {
- width: 64px;
- height: 64px;
- }
- }
- .center-left {
- background: white;
- width: 50%;
- border-radius: 4px;
- margin-right: 20px;
- .center-left-text {
- padding: 15px 20px;
- border-bottom: 1px solid #ccc;
- color: #424656;
- font-size: 14px;
- font-weight: 600;
- }
- ul {
- padding: 30px 0;
- display: flex;
- :last-child {
- border-right: none;
- }
- li {
- width: 20%;
- text-align: center;
- border-right: 1px solid #ccc;
- span {
- color: #747d87;
- font-size: 16px;
- margin-top: 10px;
- }
- }
- }
- }
- .center {
- margin: 20px 0;
- display: flex;
- // width: 100%;
- // display: flex;
- // justify-content: space-around;
- .center-right {
- margin-right: 0;
- ul {
- width: 100%;
- li {
- width: 33%;
- padding: 10px 20px 30px 20px;
- position: relative;
- .center-right-text {
- font-size: 14px;
- color: #747d87;
- }
- .center-icon {
- background-image: linear-gradient(0deg, #488fff, #65dcff);
- }
- .center-number {
- bottom: 13px;
- padding-left: 10px;
- }
- .center-right-image {
- display: flex;
- justify-content: end;
- align-items: flex-end;
- margin-top: 10px;
- padding-bottom: 20px;
- div {
- width: 6px;
- height: 20px;
- background: #ddf4ff;
- border-top-left-radius: 3px;
- }
- }
- }
- }
- }
- }
- .footer {
- display: flex;
- width: 100%;
- .footer-left {
- background: white;
- width: 50%;
- min-height: 440px;
- max-height: 440px;
- border-radius: 4px;
- margin-right: 20px;
- overflow: hidden;
- .footer-left-text {
- display: flex;
- justify-content: space-between;
- padding: 15px 20px;
- border-bottom: 1px solid #ccc;
- color: #424656;
- font-size: 14px;
- font-weight: 600;
- :last-child {
- color: #747d87;
- font-size: 12px;
- font-weight: normal;
- &:hover {
- cursor: pointer;
- }
- }
- }
- ul {
- width: 100%;
- padding: 17px 20px;
- font-size: 12px;
- color: #424656;
- li {
- margin-bottom: 10px;
- display: flex;
- justify-content: space-between;
- &:hover {
- color: #0eaeff;
- }
- &:active {
- color: #0eaeff;
- }
- }
- }
- }
- }
- li:hover {
- cursor: pointer;
- }
- a {
- text-decoration: none;
- color: white;
- }
- .router-link-active {
- text-decoration: none;
- }
- .router-link-exact-active {
- color: white;
- }
- .no-data {
- margin: 70px auto;
- text-align: center;
- color: #8e8e8e;
- }
- /deep/ .footer-content {
- display: flex;
- font-size: 12px;
- /deep/ div,
- p,
- h1,
- h2,
- h3,
- h4,
- h5,
- h6,
- span {
- font-size: 12px !important;
- font-size: 12pt !important;
- line-height: 12px;
- vertical-align: middle;
- }
- :last-child {
- margin-left: 5px;
- width: 467px;
- height: 17px;
- overflow: hidden;
- text-overflow: ellipsis;
- }
- /deep/ img {
- height: 15px;
- max-width: 50px !important;
- }
- .wscnph {
- width: 50px !important;
- vertical-align: middle;
- }
- }
- }
|