/* credit.css */
.credit-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

.credit-header {
    position: relative;
    text-align: center;
    margin-bottom: 40px;
}

.back-btn {
    position: absolute;
    left: 0;
    color: #2d8cf0;
    text-decoration: none;
    font-size: 16px;
}

.title {
    font-size: 20px;
    color: #333;
    margin: 0;
}

.score-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    padding: 30px;
    margin-bottom: 30px;
    text-align: center;
}

.score-circle {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border: 3px solid #e0e8ff;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f8f9ff;
}

.score {
    font-size: 42px;
    color: #2d8cf0;
    font-weight: 600;
    line-height: 1;
}

.score-label {
    color: #666;
    font-size: 14px;
    margin-top: 8px;
}

.verification-status {
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    margin-top: 20px;
}

.verification-status.verified {
    background: #e8f5e9;
    color: #43a047;
}

.rating-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    padding: 20px;
    text-align: center;
}

.stat-number {
    font-size: 32px;
    color: #2d8cf0;
    font-weight: 500;
    margin-bottom: 8px;
}

.stat-label {
    color: #666;
    font-size: 14px;
}

/* 响应式设计 */
@media (max-width: 480px) {
    .score-circle {
        width: 120px;
        height: 120px;
    }
    
    .score {
        font-size: 36px;
    }
    
    .rating-stats {
        grid-template-columns: 1fr;
    }
}


/* credit.css 新增样式 */
#verificationStatus {
  padding: 15px;
  border-radius: 8px;
  font-size: 16px;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.verified {
  background: #e8f5e9;
  color: #43a047;
  border: 1px solid #c8e6c9;
}

.unverified {
  background: #fff3e0;
  color: #ef6c00;
  border: 1px solid #ffe0b2;
}

.status-icon {
  font-weight: bold;
  font-size: 20px;
}

.cert-date {
  font-size: 12px;
  color: #666;
  width: 100%;
  text-align: center;
}

.cert-link {
  color: #2d8cf0;
  text-decoration: none;
  margin-left: 8px;
  border-bottom: 1px dashed;
}
