2 days ago 584860d11b454774b60c71b63d221b5481c0f3bd
src/page/list/detail.vue
@@ -14,6 +14,15 @@
    <!--placeholder="可输入股票代码或简拼"-->
    <!--&gt;-->
    <!--</mt-search>-->
    <div class="flex ">
      <div class="">
        <div></div>
        <div class="">
          <div class="detailName">黄金</div>
          <div class="detailCode">XAUSD</div>
        </div>
      </div>
    </div>
     <div class="page-part detail-part ">
                <!-- 明细 -->
                <div class="clearfix">
@@ -513,7 +522,7 @@
    display: block;
    content: "";
    height: 0.07rem;
    background-color: #1381a4;
    background-color: #00f0ff;
    width: 100%;
    left: 0;
    bottom: -0.25rem;
@@ -639,5 +648,25 @@
    }
  }
}
.flex{
  display: flex;
}
.justify-between{
  justify-content: space-between;
}
.flex-wrap{
  flex-wrap: wrap;
}
.align-center{
  align-items: center;
}
.detailName{
  font-size: 0.48rem;
  color: #000;
  font-weight: 700;
}
.detailCode{
  font-size: 0.16rem;
  color: #bbb;
}
</style>