* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: #ccd3de;
}

.popup {
  position: fixed;
  bottom: 15%;
  left: 50%;
  transform: translate(-50%,-50%);
  background: rgba(0,0,0,.8);
  color: #fff;
  padding: 14px 24px;
  border-radius: 12px;
  font-size: 14px;
  display: none;
}

#banner {
  border-radius: 5px;
}

body {
  background: #0b0f1a;
  color: #fff;
  /* font-family: 'Arial', sans-serif; */
  /* font-weight: 400; */
}

.app {
  padding: 8px;
  min-height: 100vh;
}
#no-data-tip {
  padding: 5px 10px;
  display: none;
}
#no-data-tip svg {
  width: 15px;
}
#home-page {
  padding-bottom: 80px;
}

h2 {
  font-size: 24px;
  margin-bottom: 10px;
  text-align: center;
}

input {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  background: #111827;
  border: none;
  border-radius: 5px;
  color: #fff;
  font-size: 16px;
}

.market-item {
  display: flex;
  justify-content: space-between;
  padding: 12px;
  margin: 10px 0;
  border-bottom: 1px solid #27303e;
  border-radius: 5px;
  cursor: pointer;
  background: #111827;
}

.green {
  color: #22c55e;
}

.red {
  color: #ef4444;
}
#favList svg {
  width: 15px;
}

#trade-page {
  padding-bottom: 90px;
}
#trade-header {
  padding: 5px;
  display: flex;
  justify-content: space-between;
}
#trade-info {
  display: flex;
  flex-direction: column;
}
#trade-info :first-child {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}
#trade-info :nth-child(2), #trade-info :nth-child(3) {
  font-size: 14px;
  filter: brightness(.85);
}

.periods {
  display: flex;
  justify-content: space-between;
  margin: 15px 0;
}

.periods span {
  padding: 6px 15px;
  background: #1f2937;
  cursor: pointer;
  border-radius: 5px;
  font-size: 13px;
}

#chart {
  width: 100%;
  height: 550px;
}

.actions {
  display: flex;
  flex-direction: column;
  margin-top: 7px;
  /* justify-content: center; */
}

button {
  display: flex;
  background: #2169de;
  color: #eaecef;
  border: none;
  padding: 7px 20px;
  border-radius: 2px;
  cursor: pointer;
  font-size: 15px;
  /* align-items: center; */
  gap: 2px;
}
button svg {
  width: 15px;
}

button:hover {
  background: #2169de;
}

/* 底部导航 */
.nav-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #1f2937;
  display: flex;
  justify-content: space-around;
  padding: 15px 0;
  font-size: 16px;
}

.nav-bar span {
  cursor: pointer;
}
.nav-bar svg {
  width: 15px;
  margin-right: 5px;
}

/* 全屏模式 */
.fullscreen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: #000;
}
/* Banner */
#banner { height:188px; background:url('./banner.jpg') center/cover no-repeat; margin-bottom:2vw; border-radius:none; }