123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396 |
- * {
- margin: 0;
- padding: 0;
- }
- html{
- background-color: #131623;
- }
- #app{
- height: 100vh;
- width: 100vw;
- overflow-y: scroll;
- overflow-x: hidden;
- -webkit-overflow-scrolling: touch;
- }
- .head{
- padding: 10px;
- }
- .price{
- display: flex;
- align-items: center;
- }
- .price-label{
- font-size: 26px;
- font-weight: bold;
- color: #38ad70;
- }
- .price-value{
- margin-left: 10px;
- font-size: 12px;
- color: #fff;
- margin-top: 4px;
- }
- .head-item{
- margin-top: 5px;
- display: flex;
- align-items: center;
- justify-content: space-between;
- }
- .head-item-cell{
- display: flex;
- flex-direction: row;
- align-items: center;
- }
- .hic-label{
- font-size: 10px;
- color: rgba(255,255,255,0.38);
- }
- .hic-value{
- margin-left: 5px;
- font-size: 10px;
- color: rgba(255,255,255,0.7);
- }
- .tabs{
- display: flex;
- flex-direction: row;
- align-items: center;
- border-bottom: 1px solid rgba(255,255,255,0.1);
- padding: 0 10px;
- }
- .tabs-item{
- margin-right: 20px;
- display: flex;
- flex-direction: column;
- align-items: center;
- }
- .tabs-item-text{
- font-size: 12px;
- line-height: 24px;
- color: rgba(255,255,255,0.38);
- }
- .tabs-item-text-active{
- color: #fff;
- }
- .tabs-item-bar{
- width: 0;
- height: 2px;
- background-color: transparent;
- transition: all .2s;
- }
- .tabs-item-bar-active{
- width: 16px;
- background-color: #fff;
- }
- .category{
- position: sticky;
- top: 0;
- z-index: 999;
- background-color: #131623;
- margin-top: 10px;
- display: flex;
- flex-direction: row;
- align-items: center;
- justify-content: center;
- border-bottom: 1px solid rgba(255,255,255,0.1);
- padding: 0 10px;
- }
- .category-item-wrap{
- flex: 1;
- display: flex;
- flex-direction: row;
- justify-content: center;
- }
- .category-item{
- display: flex;
- flex-direction: column;
- align-items: center;
- }
- .category-item-text{
- font-size: 14px;
- line-height: 28px;
- color: rgba(255,255,255,0.38);
- }
- .category-item-text-active{
- color: #fff;
- }
- .category-item-bar{
- width: 0;
- height: 2px;
- background-color: transparent;
- transition: all .2s;
- }
- .category-item-bar-active{
- width: 100%;
- background-color: #fff;
- }
- .category-main{
- padding: 10px;
- }
- .depth-head{
- display: flex;
- flex-direction: row;
- align-items: center;
- justify-content: space-between;
- }
- .depth-head-left{
- flex: 1;
- display: flex;
- flex-direction: row;
- align-items: center;
- }
- .depth-head-center{
- flex: 1;
- display: flex;
- flex-direction: row;
- align-items: center;
- justify-content: center;
- }
- .depth-head-right{
- flex: 1;
- display: flex;
- flex-direction: row;
- align-items: center;
- justify-content: flex-end;
- }
- .depth-head-label{
- font-size: 10px;
- color: rgba(255,255,255,0.38);
- }
- .depth-head-left-index{
- width: 30px;
- margin-right: 10px;
- text-align: left;
- }
- .depth-head-right-index{
- width: 30px;
- margin-left: 10px;
- text-align: right;
- }
- .depth-main{
- margin-top: 15px;
- display: flex;
- flex-direction: row;
- }
- .depth-main-item{
- flex: 1;
- }
- .dmi-cell{
- position: relative;
- height: 30px;
- display: flex;
- flex-direction: row;
- }
- .dmi-cell-item{
- position: absolute;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- display: flex;
- flex-direction: row;
- align-items: center;
- }
- .dmi-cell-item-right{
- justify-content: flex-end;
- }
- .dmi-cell-bg{
- background-color: red;
- width: 0;
- height: 100%;
- }
- .dmi-cell-index{
- width: 30px;
- font-size: 12px;
- color: #fff;
- }
- .dmi-cell-num{
- flex: 1;
- margin: 0 10px;
- font-size: 12px;
- color: #fff;
- }
- .dmi-cell-price{
- font-size: 12px;
- color: #fff;
- }
- .transaction{
-
- }
- .transaction-head{
- display: flex;
- flex-direction: row;
- align-items: center;
- justify-content: space-between;
- }
- .transaction-head-item{
- color: rgba(255,255,255,0.38);
- font-size: 10px;
- }
- .transaction-main{
- margin-top: 10px;
- }
- .transaction-main-cell{
- display: flex;
- flex-direction: row;
- align-items: center;
- justify-content: space-between;
- }
- .tmc-label{
- color: #fff;
- font-size: 12px;
- height: 30px;
- line-height: 30px;
- }
- .tmc-time{
- width: 30%;
- }
- .tmc-type{
- text-align: center;
- width: 20%;
- }
- .tmc-price{
- text-align: center;
- width: 20%;
- }
- .tmc-num{
- text-align: right;
- width: 30%;
- }
- .introduction{
-
- }
- .introduction-name{
- color: #fff;
- font-size: 16px;
- font-weight: bold;
- padding-bottom: 20px;
- }
- .introduction-cell{
- margin-top: 20px;
- display: flex;
- flex-direction: row;
- align-items: center;
- justify-content: space-between;
- }
- .introduction-cell-label{
- color: rgba(255,255,255,0.38);
- font-size: 12px;
- }
- .introduction-cell-value{
- color: #fff;
- font-size: 12px;
- font-weight: bold;
- }
- .introduction-label{
- margin-top: 40px;
- color: #fff;
- font-size: 16px;
- font-weight: bold;
- }
- .introduction-value{
- margin-top: 20px;
- color: #fff;
- font-size: 14px;
- }
- .btns{
- position: fixed;
- z-index: 1000;
- left: 0;
- right: 0;
- bottom: 0;
- display: flex;
- flex-direction: row;
- align-items: center;
- justify-content: center;
- padding: 10px;
- box-sizing: border-box;
- background-color: #131623;
- }
- .btn{
- flex: 1;
- height: 40px;
- border-radius: 4px;
- line-height: 40px;
- text-align: center;
- color: #fff;
- font-size: 16px;
- }
- .btn-green{
- margin-right: 20px;
- background-color: #38ad70;
- }
- .btn-red{
- background-color: #fe5c57;
- }
- .charts-border {
- position: relative;
- }
- .charts {
- width: 100vw;
- height: 420px;
- }
- .charts-label {
- position: absolute;
- left: 10px;
- top: 5px;
- font-size: 10px;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .charts-label div {
- margin-right: 14px;
- }
- .charts-MA5 {
- color: #eef4ba;
- }
- .charts-MA10 {
- color: #83c1c5;
- }
- .charts-MA30 {
- color: #b39cd8;
- }
- .charts-bar-label {
- position: absolute;
- left: 10px;
- top: 76%;
- font-size: 10px;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .charts-bar-label div {
- margin-right: 14px;
- }
- .charts-tooltip-row {
- display: flex;
- flex-direction: row;
- align-items: center;
- justify-content: space-between;
- padding: 5px 0;
- }
- .ctr-label {
- color: #51617b;
- }
- .ctr-value {
- color: #acbadf;
- margin-left: 30px;
- }
- .price-green{
- color: #38ad70;
- }
- .price-red{
- color: #fe5c57;
- }
|