
:root {
  --bg-color: #f7f8fa;
  --card-bg: #ffffff;
  --text-main: #333333;
  --text-secondary: #666666;
  --accent-color: #007aff;
  --border-color: #eeeeee;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background-color: var(--bg-color);
  margin: 0;
  padding: 20px;
  color: var(--text-main);
  line-height: 1.6;
}
.loading-wrap{
  position: absolute;
  inset:0;
  z-index: 9;
  background: #fff;
}
.logo-css{
    position: absolute;
    width:200px;
    height: 168.75px;
    top: 50%;
    left: 50%;
    margin-left: -100px;
    margin-top: -100px;
}
.loading{
    position: absolute;
    width:150px;
    height: 30px;
    top: 50%;
    left: 50%;
    margin-left: -75px;
    margin-top: -15px;
}
.spinner {
  margin: 100px auto 0;
  width: 150px;
  text-align: center;
}
 
.spinner > div {
  width: 30px;
  height: 30px;
  background-color: #67CF22;
 
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: bouncedelay 1.4s infinite ease-in-out;
  animation: bouncedelay 1.4s infinite ease-in-out;
  /* Prevent first frame from flickering when animation starts */
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
 
.spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
 
.spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}
 
@-webkit-keyframes bouncedelay {
  0%, 80%, 100% { -webkit-transform: scale(0.0) }
  40% { -webkit-transform: scale(1.0) }
}
 
@keyframes bouncedelay {
  0%, 80%, 100% {
    transform: scale(0.0);
    -webkit-transform: scale(0.0);
  } 40% {
    transform: scale(1.0);
    -webkit-transform: scale(1.0);
  }
}
.main{
  overflow: hidden;
}

.header {
    text-align: center;
    margin-bottom: 25px;
}

.header h1 {
    font-size: 20px;
    margin-bottom: 15px;
}

.contact-info {
    font-size: 14px;
    color: var(--text-main);
    text-align: left;
    margin-bottom: 20px;
}

.section-title {
    text-align: center;
    font-weight: bold;
    margin: 15px 0;
    font-size: 16px;
}

/* 卡片样式 */
.card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 0 15px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* 列表项样式 */
.list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    text-decoration: none;
    color: inherit;
}

.list-item:last-child {
    border-bottom: none;
}

.list-item span {
    font-size: 15px;
}

/* 红色文字强调 */
.text-danger {
    color: #d93025;
}

/* 箭头符号 */
.arrow {
    color: #ccc;
    font-size: 18px;
    font-weight: lighter;
}

/* 虚线分割 */
.divider {
    border-top: 1px dashed #ccc;
    margin: 20px 0;
}