123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215 |
- .icon {
- position: absolute;
- top: 15px;
- right: 18px;
- display: flex;
- .iconDiffFilled,
- .iconFundFilled {
- width: 37px;
- height: 41px;
- cursor: pointer;
- background: url('@/assets/iconDiffFilled.png') no-repeat;
- }
- .iconFundFilled {
- margin-left: 28px;
- background-image: url('@/assets/iconFundFilled.png');
- }
- }
- .logoInfo {
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- position: relative;
- .logo {
- background: url('@/assets/defense.png') no-repeat center;
- background-size: 100% 100%;
- width: 144px;
- height: 159px;
- margin-bottom: 6px;
- }
- .logoTitle {
- font-size: 28px;
- font-weight: 400;
- color: #6e6e6e;
- line-height: 38px;
- display: flex;
- }
- .logoTime {
- font-size: 22px;
- font-weight: 400;
- color: #6e6e6e;
- line-height: 28px;
- margin-top: 10px;
- }
- .logoFont {
- position: absolute;
- display: flex;
- align-items: center;
- right: 0;
- bottom: 0;
- font-size: 28px;
- font-weight: 400;
- color: #6e6e6e;
- line-height: 38px;
- .iconSetting {
- margin-left: 10px;
- width: 28px;
- height: 28px;
- background: url('@/assets/icon-setting.png') no-repeat;
- background-size: 100% 100%;
- }
- }
- }
- .insbtn {
- display: flex;
- position: relative;
- width: 100%;
- justify-content: center;
- margin-top: 20px;
- :global {
- .ant-btn-primary {
- font-size: 24px;
- width: 140px;
- height: 46px;
- cursor: pointer;
- }
- }
- }
- .item {
- height: 80px;
- display: flex;
- align-items: center;
- position: relative;
- padding: 0 30px;
- .right {
- position: absolute;
- right: 0;
- margin-right: 30px;
- font-size: 28px;
- }
- .warningText {
- margin-left: 40px;
- font-size: 28px;
- font-weight: 400;
- color: #fe5850;
- line-height: 38px;
- }
- .itemName {
- font-size: 28px;
- font-weight: 500;
- color: #4a4a4a;
- line-height: 38px;
- font-weight: bold;
- }
- }
- .btns {
- float: right;
- }
- .warningItem {
- // border-bottom: 2px solid #555;
- height: 80px;
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding: 0 30px;
- border-bottom: 1px solid rgba(219, 219, 219, 1);
- &:last-child {
- border-bottom: none;
- }
- span {
- font-size: 28px;
- }
- }
- .iconSuccess {
- width: 38px;
- height: 30px;
- background: url('@/assets/icon-success.png') no-repeat;
- background-size: 100% 100%;
- }
- .reportBtn {
- margin-top: 40px;
- width: 100%;
- height: 86px;
- display: block;
- font-size: 30px;
- font-weight: 400;
- color: #ffffff;
- }
- .itemMain {
- background-size: 100% 100%;
- border: 1px;
- border-radius: 12px;
- margin-bottom: 20px;
- margin-top: 20px;
- padding: 0 10px;
- }
- .itemMain2 {
- .itemMain;
- padding: 20px 10px;
- }
- .statisticsText {
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- flex: 1;
- .num {
- color: #f5af3a;
- font-size: 40px;
- margin-bottom: 8px;
- font-weight: bold;
- letter-spacing: 2px;
- line-height: 56px;
- }
- .label {
- color: #555;
- font-size: 24px;
- }
- }
- .dialogBtns {
- display: flex;
- flex-direction: row;
- align-items: center;
- margin-top: 30px;
- margin-left: 40px;
- :global {
- .ant-btn.ant-btn-danger {
- color: #4a4a4a;
- background: #d5d5d5;
- border-color: transparent;
- }
- }
- }
- .dialog {
- // background: url('@/assets/newUI/eqDialog.png') no-repeat center;
- width: 762px;
- height: 234px;
- .close {
- // background: url('@/assets/newUI/close.png') no-repeat center;
- background-size: 100% 100%;
- }
- }
- .tabs {
- display: flex;
- // flex-direction: row-reverse;
- display: flex;
- color: #555;
- font-size: 22px;
- justify-content: center;
- .item {
- padding: 4px 20px;
- border: 1px solid #02a7f0;
- font-size: 20px;
- color: #fff;
- cursor: pointer;
- &:nth-child(1) {
- border-left: 1px solid #02a7f0;
- }
- &.active {
- background-color: #02a7f0;
- }
- }
- }
|