| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180 |
- .statistics-card {
- padding: 20px;
- line-height: 30px;
- color: #5e6c84;
- font-size: 16px;
- word-break: break-all;
- border-radius: 6px;
- background-color: white;
- box-sizing: border-box;
- background-position: center;
- background-repeat: no-repeat;
- background-size: cover;
- }
- .statistics-card_border {
- border: 1px solid #eaeaea;
- }
- .statistics-card_border:hover {
- border-color: #ffa264;
- }
- .statistics-card_shadow {
- box-shadow: 0px 3px 27px 0px rgba(218, 218, 218, 0.43);
- }
- .statistics-card_colourfull {
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- height: 180px;
- }
- .statistics-card_colourfull .statistics-card_count {
- align-self: flex-end;
- text-align: right;
- }
- .statistics-card_colourfull .statistics-card_title {
- color: #353535;
- }
- .statistics-card_title {
- margin-bottom: 16px;
- /* color: #aeaeb2; */
- }
- .statistics-card_title i {
- margin-left: 8px;
- }
- .statistics-card_count {
- font-size: 30px;
- }
- .member-rank {
- display: inline-block;
- width: 40px;
- height: 40px;
- line-height: 40px;
- color: #333333;
- font-size: 14px;
- text-align: center;
- border-radius: 2px;
- }
- /* .member-rank[round] {
- border-radius: 50%;
- }
- .member-rank[mini] {
- width: 30px;
- height: 30px;
- line-height: 30px;
- font-size: 12px;
- border-radius: 50%;
- } */
- .member-rank[data-rank="1"],
- .member-rank[data-rank="2"],
- .member-rank[data-rank="3"] {
- color: transparent;
- background-size: 24px 29px;
- background-repeat: no-repeat;
- background-position: center;
- }
- .member-rank[data-rank="1"] {
- background-image: url("images/first.png");
- }
- .member-rank[data-rank="2"] {
- background-image: url("images/second.png");
- }
- .member-rank[data-rank="3"] {
- background-image: url("images/third.png");
- }
- /* .member-rank[plain] {
- font-style: italic;
- color: #333;
- background-color: transparent;
- } */
- .panel {
- margin-bottom: 10px !important;
- border-radius: 10px;
- padding-left: 20px;
- }
- .panel .active a {
- background-color: #29ba9c !important;
- border-radius: 18px !important;
- color: #fff;
- }
- .panel a {
- border: none !important;
- background-color: #fff !important;
- }
- .content {
- background: #eff3f6;
- padding: 10px !important;
- }
- .con {
- padding-bottom: 40px;
- position: relative;
- border-radius: 8px;
- }
- .con .setting .block {
- padding: 10px;
- background-color: #fff;
- border-radius: 8px;
- }
- .con .setting .block .title {
- font-size: 18px;
- margin-bottom: 15px;
- display: flex;
- align-items: center;
- }
- .confirm-btn {
- width: calc(100% - 266px);
- position: fixed;
- bottom: 0;
- right: 0;
- margin-right: 10px;
- line-height: 63px;
- background-color: #ffffff;
- box-shadow: 0px 8px 23px 1px rgba(51, 51, 51, 0.3);
- background-color: #fff;
- text-align: center;
- }
- b {
- font-size: 14px;
- }
- .el-checkbox__inner {
- border: solid 1px #56be69 !important;
- }
- .upload-boxed .el-icon-close {
- position: absolute;
- top: -5px;
- right: -5px;
- color: #fff;
- background: #333;
- border-radius: 50%;
- cursor: pointer;
- }
- .component-statistics-card_title {
- display: flex;
- align-items: center;
- justify-content: space-between;
- margin-bottom: 30px;
- font-size: 24px;
- font-weight: bold;
- color: #333;
- }
- .component-statistics-card_title .el-form {
- margin: 0;
- }
- .component-statistics-card_title .el-form--inline .el-form-item {
- margin-bottom: 0;
- }
- .statistics-overall {
- display: flex;
- flex-wrap:wrap;
- column-gap:20px;
- row-gap:20px;
- }
- .statistics-overall li {
- min-width: 196px;
- }
|