#app{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    height: calc(100vh - 57px);
    overflow: hidden;
}
.wallet{
    display: flex    ;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;    
    width: 100%;
}
.wallet .w_top{
    padding: 12px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    height: 60px;
    border-bottom: #e5e5e5 solid 1px;
}
.wallet .caidan{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    margin-top: 16px;
    border-bottom: #e5e5e5 solid 1px;
    padding-bottom: 12px;
}
.wallet .caidan div{
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 12px;
}
.zhang{
    color: #31bd65;
}
.die{
    color: #eb4b6d;
}

.wallet .txt{    
    padding: 9px;
    font-size: 16px;    
    background-color: #f7f7f7;
    border-bottom: #e5e5e5 solid 1px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.wallet .money_list{
    height: calc(100vh - 292px);
    overflow-y: scroll;
}
.wallet .yue{
    margin-top: 12px;
    padding: 12px;
    font-size: 36px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    flex-direction: column;
}
.wallet .w_top .w_t_r{
    display: flex;
    flex-direction: column;
    flex: 1;
}
.cmr_item{
    padding: 8px;
    font-size: 12px;
    font-weight: 100;
    border-bottom: #f1f1f1 solid 1px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: background-color 0.3s; /* 平滑过渡效果 */

}
.cmr_item:hover {
    background-color: #f1f1f1 !important;
}
.cmr_item .it_r .buy_btn{
    font-size: 12px;
    background-color: red;
    color: #ffffff;
    padding: 4px;
    border-radius: 3px;
}
.cmr_item .it_r .sell_btn{
    font-size: 12px;
    background-color: #004eff;
    color: #ffffff;
    padding: 4px;
    border-radius: 3px;
}
.cmr_item_on{
    background-color: #000000;
    color: white;
}
.cmr_item .it_l{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.cmr_item .it_l .it_l_r{
    margin-left: 5px;
}
.cmr_item .it_l .it_l_r .symbol{
    font-size: 14px;
}
.cmr_item .it_l .it_l_r .coinName{
    font-size: 12px;
    margin-top: 6px;
    color: #777;
}
.lay-split-panel-item{
	display: flex;
	font-size: 12px;
	font-weight: bold;
	justify-content: center;
	align-items: center;
}
.cmr_item .it_r{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.cmr_item .it_r .blocktime{
   color: #3175b1;
   margin-top: 6px;
}
.card-container {
  background: whitesmoke;
  width: 100%;
  height: 100%;
}
.card-container .layui-card {
    height: 100%;
}
.card-container .layui-card .layui-card-body {
    padding: 1px;
    line-height: 16px;
}

/* 针对整个文档 */
::-webkit-scrollbar {
    width: 1px;
}
 
 
 
/* 滚动条轨道 */
::-webkit-scrollbar-track {
    background: #f1f1f1; /* 轨道颜色 */
}