123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123 |
- @import (reference) '~antd/es/style/themes/index';
- .container {
- .itemLeft {
- box-sizing: border-box;
- height: 100%;
- padding: 40px 0 30px 30px;
- overflow: hidden;
- color: #fff;
- background: url('../../public/assets/book-bg.jpg');
- background-size: cover;
- border-radius: 20px;
- .leftTitle {
- font-size: 20px;
- }
- .imgBox {
- display: flex;
- align-items: center;
- justify-content: center;
- width: 90px;
- height: 90px;
- margin: 40px 0 20px;
- background-color: #fff;
- border-radius: 20px;
- box-shadow: 0 10px 20px rgb(0 0 0 / 14%);
- }
- .leftNumber {
- overflow: hidden;
- font-size: 62px;
- }
- }
- .itemCenter {
- height: 100%;
- padding: 40px;
- background: #f2f8f3;
- border-radius: 25px;
- .itemImg {
- display: flex;
- align-items: center;
- justify-content: center;
- width: 70px;
- height: 70px;
- margin: 0 auto;
- background: #fff;
- border-radius: 20px;
- img {
- width: 50px;
- height: 50px;
- }
- }
- .itemValue {
- margin-top: 40px;
- font-weight: bold;
- font-size: 28px;
- text-align: center;
- }
- .itemTitle {
- overflow: hidden;
- color: #1a1a37;
- font-size: 15px;
- white-space: nowrap;
- text-align: center;
- }
- }
- .itemRight {
- display: flex;
- flex-wrap: wrap;
- height: 100%;
- .imgRightBox {
- display: flex;
- flex-direction: column;
- box-sizing: border-box;
- width: 48%;
- height: 47%;
- margin: 10px;
- padding: 25px;
- border-radius: 30px;
- .itemRightImg {
- display: flex;
- align-items: center;
- justify-content: center;
- width: 70px;
- height: 70px;
- margin-bottom: 10px;
- background-color: #fff;
- border-radius: 19px;
- img {
- width: 33px;
- height: 33px;
- }
- }
- .itemRightVal {
- margin-bottom: 4px;
- color: #1a1a37;
- font-weight: bold;
- font-size: 28px;
- }
- .itemRightTitle {
- overflow: hidden;
- color: #1a1a37;
- font-size: 15px;
- white-space: nowrap;
- }
- }
- .itemRightBg1 {
- background: #e8faea url('../../public/icons/1-bg.png');
- background-size: 100% 100%;
- }
- .itemRightBg2 {
- background: #e7e1fb url('../../public/icons/2-bg.png');
- background-size: 100% 100%;
- }
- .itemRightBg3 {
- background: #fdf3e9 url('../../public/icons/3-bg.png');
- background-size: 100% 100%;
- }
- .itemRightBg4 {
- background: #f0f5fb url('../../public/icons/4-bg.png');
- background-size: 100% 100%;
- }
- }
- }
|