/* index.css */
body {
  font-family: 'OPPOSans', sans-serif;
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, #1e3c72, #2a5298);
  color: #fff;
}

.page-body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}

.page-center {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 20px;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

.header h1 {
  text-align: center;
  font-size: 24px;
  margin: 0;
  color: #fff;
}

.top-line {
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 10px 0;
}

.nomp {
  margin: 0;
}

.panel-content {
  display: flex;
  flex-direction: column;
}

.panel-section {
  width: 100%;
}

.title-info {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.title-i svg {
  margin-right: 10px;
}

.title-t {
  font-size: 18px;
  font-weight: bold;
}

.panel-box .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

.text p {
  margin: 0;
}

.p1 {
  font-size: 16px;
  font-weight: bold;
}

.p1span, .p1span2, .p2span {
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 5px;
}

.p1span {
  background: #ff4d4f;
  color: white;
}

.p1span2 {
  background: #52c41a;
  color: white;
}

.p2span {
  background: #1890ff;
  color: white;
}

.p2 {
  font-size: 14px;
  color: #ccc;
}

.btn, .btn-down {
  padding: 8px 16px;
  background: #1890ff;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 32px;
}

.btn:hover, .btn-down:hover {
  background: #40a9ff;
}

.icon-text {
  display: flex;
  align-items: center;
}

.icon-text .ico {
  margin-right: 10px;
}