:root {
  --primary-color: #ffd6e0;
  --secondary-color: #ffb6c1;
  --accent-color: #ff85a1;
  --accent-hover: #ff5c8a;
  --text-light: #ffffff;
  --text-dark: #4a4a4a;
  --card-bg: rgba(255, 214, 224, 0.8);
  --card-hover: rgba(255, 182, 193, 0.9);
  --gradient-start: #ffd6e0;
  --gradient-end: #ffb6c1;
}

body {
  font-family: 'Poppins', 'Microsoft YaHei', sans-serif;
  background-color: var(--primary-color);
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(255, 133, 161, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(255, 182, 193, 0.2) 0%, transparent 50%),
    linear-gradient(to bottom, var(--gradient-start), var(--gradient-end));
  background-attachment: fixed;
  color: var(--text-dark);
  line-height: 1.6;
  background-size: 200% 200%;
  animation: gradientBackground 15s ease infinite;
}

/* 顶部导航栏 */
.header {
  background-color: rgba(255, 133, 161, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 182, 193, 0.5);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(255, 133, 161, 0.3);
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  color: black !important;
  display: flex;
  align-items: center;
}

.navbar-brand i {
  margin-right: 10px;
  font-size: 1.8rem;
  background: linear-gradient(135deg, #ff0066, #ff9900);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: float 3s ease-in-out infinite;
}

.navbar-dark .navbar-nav .nav-link {
  color: var(--text-dark);
  font-weight: 600;
  padding: 0.8rem 1rem;
  position: relative;
  transition: all 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: var(--accent-color);
}

.navbar-dark .navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navbar-dark .navbar-nav .nav-link:hover::after,
.navbar-dark .navbar-nav .nav-link.active::after {
  width: 80%;
}

/* 搜索框 */
.search-form {
  position: relative;
}

.search-form .form-control {
  background-color: rgba(255, 255, 255, 0.8);
  border: 2px solid var(--accent-color);
  color: var(--text-dark);
  border-radius: 50px;
  padding-left: 20px;
  padding-right: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(255, 133, 161, 0.2);
}

.search-form .form-control:focus {
  background-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(91, 192, 190, 0.25);
  border-color: var(--accent-color);
}

.search-form .btn {
  position: absolute;
  right: 5px;
  top: 5px;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: white;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(255, 133, 161, 0.3);
}

.search-form .btn:hover {
  background-color: var(--accent-hover);
  transform: scale(1.05);
}

/* 侧边栏 */
.sidebar {
  background-color: rgba(255, 214, 224, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(255, 133, 161, 0.3);
  height: calc(100vh - 100px);
  position: sticky;
  top: 80px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-color) var(--secondary-color);
  border: 2px solid rgba(255, 182, 193, 0.5);
}

.sidebar::-webkit-scrollbar {
  width: 6px;
}

.sidebar::-webkit-scrollbar-track {
  background: var(--secondary-color);
}

.sidebar::-webkit-scrollbar-thumb {
  background-color: var(--accent-color);
  border-radius: 6px;
}

.sidebar-title {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(91, 192, 190, 0.3);
}

.category-menu .nav-link {
  color: var(--text-dark);
  padding: 10px 15px;
  border-radius: 15px;
  margin-bottom: 8px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 182, 193, 0.3);
}

.category-menu .nav-link:hover,
.category-menu .nav-link.active {
  background-color: rgba(255, 133, 161, 0.2);
  color: var(--accent-color);
  transform: translateX(8px);
  border-color: var(--accent-color);
  box-shadow: 0 4px 10px rgba(255, 133, 161, 0.3);
}

/* 为不同分类添加不同的颜色 */
.category-menu .nav-link:nth-child(3n+1) i {
  color: #ff85a1;
}

.category-menu .nav-link:nth-child(3n+2) i {
  color: #ffaaa5;
}

.category-menu .nav-link:nth-child(3n+3) i {
  color: #ffd3b6;
}

.category-menu .nav-link i {
  margin-right: 10px;
  width: 20px;
  text-align: center;
}

/* 主内容区 */
.main-container {
  padding: 20px 0;
}

.main-content {
  background-color: rgba(255, 214, 224, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 6px 25px rgba(255, 133, 161, 0.3);
  border: 2px solid rgba(255, 182, 193, 0.5);
}

.section-title {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(255, 182, 193, 0.5);
  display: flex;
  align-items: center;
  text-shadow: 1px 1px 2px rgba(255, 133, 161, 0.2);
}

.section-title i {
  margin-right: 10px;
  font-size: 1.5rem;
}

/* 网站卡片 */
.website-card {
  background-color: var(--card-bg);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid rgba(255, 182, 193, 0.4);
  box-shadow: 0 4px 12px rgba(255, 133, 161, 0.15);
  position: relative;
  text-align: center;
}

.website-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(255, 133, 161, 0.25);
  background-color: var(--card-hover);
  border-color: var(--accent-color);
}

.website-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 182, 193, 0.1) 0%, transparent 100%);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.website-card:hover::before {
  opacity: 1;
}

.website-card a {
  color: var(--text-dark);
  text-decoration: none;
  display: block;
  height: 100%;
  padding: 15px;
  position: relative;
  z-index: 2;
  text-align: center;
}

.website-logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 1.6rem;
  color: var(--accent-color);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 182, 193, 0.5);
  overflow: hidden;
}

.website-card:hover .website-logo {
  transform: scale(1.05);
  background-color: rgba(255, 255, 255, 0.9);
  border-color: var(--accent-color);
}

.website-name {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 6px;
  color: var(--text-dark);
  transition: all 0.3s ease;
  text-align: center;
}

.website-card:hover .website-name {
  color: var(--accent-color);
}

.website-desc {
  font-size: 0.8rem;
  color: var(--text-dark);
  margin-bottom: 0;
  text-align: center;
  opacity: 0.8;
}

.website-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: rgba(255, 133, 161, 0.2);
  color: var(--text-dark);
  font-size: 0.7rem;
  padding: 3px 8px;
  border-radius: 10px;
  font-weight: 500;
  box-shadow: 0 2px 5px rgba(255, 133, 161, 0.1);
  transform: none;
}

/* 分页 */
.pagination {
  margin-top: 30px;
  justify-content: center;
}

.pagination .page-item .page-link {
  color: var(--text-dark);
  background-color: rgba(255, 214, 224, 0.8);
  border-color: rgba(255, 182, 193, 0.5);
  margin: 0 5px;
  border-radius: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(255, 133, 161, 0.2);
}

.pagination .page-item.active .page-link,
.pagination .page-item .page-link:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--text-dark);
  transform: scale(1.05);
}

/* 页脚 */
.footer {
  background-color: rgba(255, 133, 161, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 40px 0;
  margin-top: 40px;
  border-top: 2px solid rgba(255, 182, 193, 0.5);
  border-radius: 30px 30px 0 0;
}

.footer h5 i {
  background: linear-gradient(135deg, #ff0066, #ff9900);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: float 3s ease-in-out infinite;
}

.footer h5 {
  color: black;
  font-weight: 600;
  margin-bottom: 15px;
}

.footer p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 5px;
}

/* 响应式调整 */
@media (max-width: 991.98px) {
  .sidebar {
    height: auto;
    position: relative;
    top: 0;
    margin-bottom: 20px;
  }
  
  .main-content {
    margin-top: 20px;
  }
  
  .websites-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
  }
}

@media (max-width: 576px) {
  .websites-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
  }
  
  .website-logo {
    width: 40px;
    height: 40px;
    font-size: 1.4rem;
  }
  
  .website-name {
    font-size: 0.9rem;
  }
}

/* 动画效果 */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 133, 161, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 133, 161, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 133, 161, 0);
  }
}

@keyframes gradientBackground {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin: 0 auto 30px;
}

.category-icon {
  font-size: 2rem;
  margin-bottom: 15px;
  color: var(--accent-color);
}

/* 网站卡片网格布局 */
.websites-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

/* 加载动画 */
.loading {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.loading div {
  position: absolute;
  border: 4px solid var(--accent-color);
  opacity: 1;
  border-radius: 50%;
  animation: loading 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.loading div:nth-child(2) {
  animation-delay: -0.5s;
}

@keyframes loading {
  0% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    top: 0px;
    left: 0px;
    width: 0;
    height: 0;
    opacity: 1;
  }
}

/* 返回顶部按钮 */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--accent-color);
  color: var(--text-dark);
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 999;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background-color: var(--accent-hover);
  transform: translateY(-5px);
}

/* 无结果样式 */
.no-results {
  text-align: center;
  padding: 50px 20px;
}

.no-results-icon {
  font-size: 4rem;
  color: var(--accent-color);
  opacity: 0.5;
  margin-bottom: 20px;
}

.no-results h3 {
  color: var(--text-light);
  margin-bottom: 15px;
}

.no-results p {
  color: rgba(255, 255, 255, 0.7);
}

.no-results a {
  color: var(--accent-color);
  text-decoration: none;
}

.no-results a:hover {
  text-decoration: underline;
}

/* 搜索结果页样式 */
.search-title {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 10px;
}

.search-info {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.search-keyword {
  color: var(--accent-color);
  font-weight: 500;
}

.search-count {
  background-color: rgba(91, 192, 190, 0.2);
  padding: 3px 10px;
  border-radius: 20px;
  margin-left: 10px;
  font-size: 0.9rem;
}

.btn-filter {
  background-color: rgba(28, 37, 65, 0.8);
  color: var(--text-light);
  border: 1px solid rgba(91, 192, 190, 0.3);
  transition: all 0.3s ease;
}

.btn-filter:hover, .btn-filter.active {
  background-color: var(--accent-color);
  color: var(--text-dark);
}

/* 分类页面样式 */
.category-title {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.category-description {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

/* 搜索引擎风格首页样式 */
.search-engine-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0 40px;
}

.search-engine-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/city-pink-bg.svg') no-repeat center bottom;
  background-size: cover;
  opacity: 0.3;
  z-index: -1;
}

.search-engine-logo {
  margin-bottom: 30px;
}

.search-engine-logo i {
  font-size: 4rem;
  color: var(--accent-color);
  margin-bottom: 15px;
  display: block;
  animation: pulse 2s infinite;
}

.search-engine-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(255, 133, 161, 0.3);
}

.search-input-container {
  position: relative;
  max-width: 650px;
  margin: 0 auto;
}

.search-input {
  height: 60px;
  border-radius: 30px;
  padding: 0 60px 0 30px;
  font-sivar(--text-dark)rlid var(--accent-color);
  background-color: rgba(255, 259);23,3, 1
1 -0.h)a(255, 133, 161, 0.3);
  background-color: rgba(255, 255, 255, 1);
}

.btn-search-large {
  position: absolute;
  right: 8px;
  top: 8px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--accent-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  transition: all 0.3s ease;
}

.btn-search-large:hover {
  background-color: var(--accent-hover);
  transform: scale(1.05);
}

.search-stats {
  margin-top: 40px;
}

.stat-item-inline {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin: 0 15px;
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 15px;
  transition: all 0.3s ease;
  min-width: 100px;
}

.stat-item-inline:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(255, 133, 161, 0.3);
}

.stat-item {
  border-radius: 10px;
  padding: 20px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 133, 161, 0.2);
  background-color: rgba(255, 255, 255, 0.7);
  text-align: center;
}

.stat-item:hover {
  transform: translateY(-5px);
  border-color: var(--accent-color);
}

.stat-icon {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 10px;
}

.stat-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-dark);
}

.stat-label {
  color: var(--text-dark);
  opacity: 0.7;
}

/* 动画效果 */
.website-card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease, background-color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.website-card.show {
  opacity: 1;
  transform: translateY(0);
}

/* 暗黑模式切换 */
.form-check-input {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}

.form-check-input:checked {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

/* 加载动画 */
.loading-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 200px;
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 5px solid rgba(91, 192, 190, 0.2);
  border-radius: 50%;
  border-top-color: var(--accent-color);
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
/* 网站详情页样式 */
.website-detail {
  padding: 20px 0;
}

.website-category {
  margin-bottom: 8px;
  text-align: center;
}

.website-category .badge {
  font-size: 0.7rem;
  padding: 3px 8px;
  border-radius: 10px;
  background-color: rgba(255, 133, 161, 0.2);
  color: var(--accent-color);
  font-weight: 500;
  display: inline-block;
  margin-bottom: 5px;
}

.website-logo-large {
  width: 100px;
  height: 100px;
  border-radius: 15px;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--accent-color);
  border: 1px solid rgba(91, 192, 190, 0.3);
  overflow: hidden;
}

.website-logo-large img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.website-title {
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 10px;
}


.website-logo {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  border-radius: 10px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.8);
}

.website-info {
  width: 100%;
  text-align: center;
}

.website-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.website-logo-large img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* SVG特殊处理 */
.website-logo img[src$=".svg"], .website-logo-large img[src$=".svg"] {
  padding: 5px;
  background-color: transparent;
}



.website-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.website-badges .badge {
  padding: 6px 12px;
  font-weight: 500;
  font-size: 0.85rem;
}

.website-description {
  margin-top: 20px;
  color: var(--text-dark);
  line-height: 1.7;
  font-size: 1.1rem;
}

.cyber-card {
  background-color: rgba(28, 37, 65, 0.7);
  border-radius: 10px;
  border: 1px solid rgba(91, 192, 190, 0.3);
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.cyber-card:hover {
  border-color: var(--accent-color);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.cyber-card .card-title {
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(91, 192, 190, 0.3);
}

.website-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.info-item {
  padding: 10px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.info-item:hover {
  background-color: rgba(91, 192, 190, 0.1);
}

.info-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-bottom: 5px;
}

.info-value {
  color: var(--text-light);
  font-weight: 500;
  word-break: break-all;
}

.website-url {
  color: var(--accent-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.website-url:hover {
  color: var(--accent-hover);
  text-decoration: underline;
}

.website-features {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

.website-actions {
  display: flex;
  align-items: center;
  position: relative;
}

.share-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: rgba(28, 37, 65, 0.95);
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  padding: 10px;
  z-index: 100;
  display: none;
  border: 1px solid rgba(91, 192, 190, 0.3);
  min-width: 150px;
}

.share-dropdown.show {
  display: block;
  animation: fadeIn 0.3s ease;
}

.share-item {
  display: block;
  padding: 8px 15px;
  color: var(--text-light);
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
  margin-bottom: 5px;
  text-align: left;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
}

.share-item:last-child {
  margin-bottom: 0;
}

.share-item:hover {
  background-color: rgba(91, 192, 190, 0.2);
  color: var(--accent-color);
}

.qrcode-container {
  padding: 10px;
}

.qrcode {
  max-width: 200px;
  border-radius: 10px;
  border: 1px solid rgba(91, 192, 190, 0.3);
  padding: 10px;
  background-color: white;
}

.related-websites {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.related-website-item {
  display: flex;
  align-items: center;
  padding: 10px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  text-decoration: none;
}

.related-website-item:hover {
  background-color: rgba(91, 192, 190, 0.1);
  transform: translateX(5px);
}

.related-website-logo {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--accent-color);
  margin-right: 15px;
  overflow: hidden;
  flex-shrink: 0;
}

.related-website-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-website-info {
  flex-grow: 1;
}

.related-website-name {
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 5px;
}

.related-website-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  margin-bottom: 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 网站提交页面样式 */
.submit-form-container {
  padding: 20px 0;
}

.submit-title {
  color: var(--accent-color);
  font-weight: 700;
}

.submit-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
}

.submit-form .form-label {
  color: var(--text-light);
  font-weight: 500;
}

.submit-form .form-control,
.submit-form .form-select {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(91, 192, 190, 0.3);
  color: var(--text-light);
  padding: 12px 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.submit-form .form-control:focus,
.submit-form .form-select:focus {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.25rem rgba(91, 192, 190, 0.25);
}

.submit-form .form-text {
  color: rgba(255, 255, 255, 0.5);
}

.submit-form .form-check-input {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(91, 192, 190, 0.3);
}

.submit-form .form-check-input:checked {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.submit-form .form-check-label {
  color: var(--text-light);
}

.submit-form .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--text-dark);
  font-weight: 500;
  padding: 12px 25px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.submit-form .btn-primary:hover {
  background-color: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.submit-tips {
  background-color: rgba(28, 37, 65, 0.7);
  border-radius: 10px;
  padding: 20px;
  border: 1px solid rgba(91, 192, 190, 0.3);
}

.submit-tips h3 {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.submit-tips ul {
  color: rgba(255, 255, 255, 0.8);
  padding-left: 20px;
}

.submit-tips li {
  margin-bottom: 10px;
}

.submit-tips li:last-child {
  margin-bottom: 0;
}

/* 已在上方定义了website-logo样式，此处删除重复定义 */