123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231 |
- @import '../../app.less';
- .module.panel {
- .header {
- text-align: center;
- color: @night-blue;
- height: 44px;
- line-height: 44px;
- border-bottom: 1px solid @line_color;
- .assets {
- transform: translateY(-1px);
- margin-left: 5px;
- }
- .qa {
- cursor: pointer;
- }
- .qa:hover {
- color: @theme_color;
- }
- }
- .body {
- min-height: 256px;
- padding: 32px 44px;
- padding-right: 30px;
- .chart-info {
- height: 110px;
- margin-bottom: 24px;
- .pie-chart {
- width: 110px;
- height: 110px;
- margin-right: 22px;
- display: inline-block;
- }
- .info {
- display: inline-block;
- vertical-align: top;
- padding-top: 10px;
- .desc-wrapper {
- margin-bottom: 5px;
- .desc {
- font-size: 12px;
- color: #8897A8;
- }
- }
- .item {
- display: inline-block;
- margin-right: 24px;
- .title {
- color: @bluey-grey;
- font-size: 12px;
- }
- .data {
- color: @bluey-grey;
- font-size: 12px;
- .text {
- font-size: 18px;
- color: @night-blue;
- margin-right: 2px;
- }
- }
- }
- }
- }
- .list {
- .item {
- display: inline-block;
- }
- }
- .list.col-3 {
- margin: 0 -9px -12px;
- .item {
- width: 120px;
- margin-bottom: 12px;
- margin-left: 9px;
- margin-right: 9px;
- padding: 11px 0;
- text-align: center;
- white-space: nowrap;
- }
- }
- .list.col-4 {
- margin: 0 -10px -12px;
- .item {
- width: 84px;
- margin-bottom: 12px;
- margin-left: 10px;
- margin-right: 10px;
- padding: 11px 0;
- text-align: center;
- white-space: nowrap;
- }
- }
- }
- }
- .module.wait-panel {
- .body {
- position: relative;
- .chart-info {
- .info {
- padding-top: 0;
- .text {
- color: #050930;
- font-size: 16px;
- margin-bottom: 5px;
- }
- }
- }
- .button {
- width: 120px;
- position: absolute;
- top: 30px;
- right: 46px;
- }
- }
- }
- .module.buy-panel {
- .body {
- height: 256px;
- padding: 40px 10px;
- position: relative;
- .text {
- position: absolute;
- right: 60px;
- top: 90px;
- font-size: 10px;
- color: #fff;
- }
- .button {
- position: absolute;
- right: 68px;
- top: 120px;
- }
- }
- }
- .module.small-panel {
- .body {
- min-height: 166px;
- padding: 20px 30px 0;
- overflow: hidden;
- .chart-info {
- .info {
- padding-top: 20px;
- .item {
- margin-right: 20px;
- }
- .date {
- padding-top: 20px;
- font-size: 12px;
- color: #8897A8;
- }
- }
- }
- }
- }
- .module.small-wait-panel {
- .body {
- min-height: 166px;
- padding: 20px 30px;
- .title {
- margin-top: 15px;
- margin-bottom: 10px;
- text-align: center;
- font-size: 16px;
- color: #5E677B;
- }
- .btn {
- text-align: center;
- .button {
- font-size: 14px;
- font-weight: 500;
- line-height: 24px;
- }
- }
- }
- }
- .module.small-buy-panel {
- .body {
- min-height: 166px;
- padding: 10px 10px 20px;
- position: relative;
- .assets {
- width: 100%;
- height: 100%;
- }
- .button {
- position: absolute;
- right: 25px;
- top: 60px;
- }
- }
- }
|