/* 文章和网址模板公共样式 */

/* ===== 文章模板样式 ===== */

/* 文章列表样式 */
.art-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.art-item {
  background: #fff;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.art-item:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  transform: translateY(-2px);
}

.art-thumb {
  width: 120px;
  height: 90px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}

.art-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.art-item:hover .art-thumb img {
  transform: scale(1.05);
}

.art-detail {
  flex: 1;
  min-width: 0;
}

.art-title {
  margin: 0 0 10px 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
}

.art-title a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.art-title a:hover {
  color: #007bff;
}

.art-meta {
  margin-bottom: 10px;
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

.art-meta p {
  margin: 0 0 5px 0;
}

.art-meta .label {
  color: #999;
  margin-right: 5px;
}

.art-desc {
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.art-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.art-actions .btn {
  padding: 6px 12px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 12px;
  transition: all 0.3s ease;
}

.art-actions .btn-primary {
  background: #007bff;
  color: #fff;
}

.art-actions .btn-primary:hover {
  background: #0056b3;
}

.art-actions .btn-default {
  border: 1px solid #ddd;
  color: #666;
  background: transparent;
}

.art-actions .btn-default:hover {
  background: #f8f9fa;
  border-color: #007bff;
  color: #007bff;
}

.art-tags {
  margin-top: 10px;
}

.art-tags .tag {
  display: inline-block;
  background: #f8f9fa;
  color: #666;
  padding: 2px 8px;
  border-radius: 12px;
  margin-right: 8px;
  margin-bottom: 5px;
  text-decoration: none;
  font-size: 11px;
  transition: all 0.3s ease;
}

.art-tags .tag:hover {
  background: #007bff;
  color: #fff;
}

/* 文章搜索页样式 */
.art-search-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.art-search-item {
  background: #fff;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.art-search-item:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  transform: translateY(-2px);
}

.art-search-thumb {
  width: 120px;
  height: 90px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}

.art-search-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.art-search-item:hover .art-search-thumb img {
  transform: scale(1.05);
}

.art-search-detail {
  flex: 1;
  min-width: 0;
}

.art-search-title {
  margin: 0 0 10px 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
}

.art-search-title a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.art-search-title a:hover {
  color: #007bff;
}

.art-search-meta {
  margin-bottom: 10px;
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

.art-search-meta p {
  margin: 0 0 5px 0;
}

.art-search-meta .label {
  color: #999;
  margin-right: 5px;
}

.art-search-desc {
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.art-search-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.art-search-actions .btn {
  padding: 6px 12px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 12px;
  transition: all 0.3s ease;
}

.art-search-actions .btn-primary {
  background: #007bff;
  color: #fff;
}

.art-search-actions .btn-primary:hover {
  background: #0056b3;
}

.art-search-actions .btn-default {
  border: 1px solid #ddd;
  color: #666;
  background: transparent;
}

.art-search-actions .btn-default:hover {
  background: #f8f9fa;
  border-color: #007bff;
  color: #007bff;
}

.art-search-tags {
  margin-top: 10px;
}

.art-search-tags .tag {
  display: inline-block;
  background: #f8f9fa;
  color: #666;
  padding: 2px 8px;
  border-radius: 12px;
  margin-right: 8px;
  margin-bottom: 5px;
  text-decoration: none;
  font-size: 11px;
  transition: all 0.3s ease;
}

.art-search-tags .tag:hover {
  background: #007bff;
  color: #fff;
}

/* 文章详情页样式 */
.art-detail-header {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.art-detail-header .art-thumb {
  width: 200px;
  height: 150px;
  border-radius: 8px;
  overflow: hidden;
  margin-right: 20px;
  float: left;
}

.art-detail-header .art-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.art-info {
  overflow: hidden;
}

.art-info .art-title {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.4;
}

.art-info .art-meta {
  margin-bottom: 15px;
}

.art-info .art-meta span {
  display: inline-block;
  margin-right: 20px;
  color: #666;
  font-size: 14px;
}

.art-info .art-meta .label {
  color: #999;
  margin-right: 5px;
}

.art-info .art-desc {
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* 章节列表样式 */
.art-chapter-list {
  margin-bottom: 35px;
  padding: 20px;
  background: #fafbfc;
  border-radius: 8px;
}

.art-chapter-list p {
  margin: 0 0 15px 0;
  font-size: 16px;
  color: #333;
  text-align: center;
}

.art-chapter-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.art-chapter-list li {
  flex: 0 0 200px;
}

.art-chapter-list a {
  font-size: 18px;
  text-decoration: none;
  color: #333;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.art-chapter-list a:hover {
  color: #007bff;
}

/* 浮动章节目录按钮 */
.floating-chapter-btn {
  position: fixed;
  right: 20px;
  bottom: 100px;
  background: #007bff;
  color: #fff;
  padding: 12px 20px;
  border-radius: 25px;
  cursor: pointer;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0,123,255,0.3);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.floating-chapter-btn:hover {
  background: #0056b3;
  transform: translateY(-2px);
}

.floating-chapter-panel {
  position: fixed;
  right: 20px;
  bottom: 160px;
  width: 300px;
  max-height: 400px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  z-index: 1001;
  display: none;
  overflow: hidden;
}

.panel-header {
  padding: 15px 20px;
  background: #f8f9fa;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.panel-header h3 {
  margin: 0;
  font-size: 16px;
  color: #333;
}

.close-btn {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #666;
}

.close-btn:hover {
  color: #333;
}

.panel-content {
  max-height: 350px;
  overflow-y: auto;
}

.chapter-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.chapter-list li {
  border-bottom: 1px solid #f0f0f0;
}

.chapter-list li:last-child {
  border-bottom: none;
}

.chapter-list a {
  display: block;
  padding: 12px 20px;
  text-decoration: none;
  color: #333;
  transition: background 0.2s ease;
}

.chapter-list a:hover {
  background: #f8f9fa;
}

.current-chapter a {
  background: #e3f2fd;
  color: #007bff;
  font-weight: 600;
}

/* 分页控件 */
.chapter-pagination {
  padding: 15px 20px;
  border-top: 1px solid #eee;
  background: #f8f9fa;
}

.pagination-info {
  text-align: center;
  margin-bottom: 10px;
  color: #666;
  font-size: 14px;
}

.pagination-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.pagination-btn {
  padding: 6px 12px;
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 4px;
  cursor: pointer;
  font-size: 12px;
  transition: all 0.2s ease;
}

.pagination-btn:hover:not(:disabled) {
  background: #007bff;
  color: #fff;
  border-color: #007bff;
}

.pagination-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.page-numbers {
  display: flex;
  gap: 5px;
}

.page-numbers span {
  padding: 6px 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  cursor: pointer;
  font-size: 12px;
  transition: all 0.2s ease;
}

.page-numbers span:hover {
  background: #007bff;
  color: #fff;
  border-color: #007bff;
}

.page-numbers .current {
  background: #007bff;
  color: #fff;
  border-color: #007bff;
}

/* 页面标题 */
.art-page-title {
  margin-bottom: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.page-title {
  margin: 0;
  font-size: 20px;
  color: #333;
  font-weight: 600;
}

.art-content {
  background: #fff;
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  line-height: 1.8;
  color: #333;
  font-size: 16px;
}

.art-content img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  margin: 10px 0;
}

.art-content p {
  margin-bottom: 15px;
}

.art-content h1, .art-content h2, .art-content h3, .art-content h4, .art-content h5, .art-content h6 {
  margin: 20px 0 10px 0;
  color: #333;
  font-weight: 600;
}

.art-content h1 { font-size: 24px; }
.art-content h2 { font-size: 20px; }
.art-content h3 { font-size: 18px; }
.art-content h4 { font-size: 16px; }

.art-content blockquote {
  border-left: 4px solid #007bff;
  padding-left: 15px;
  margin: 15px 0;
  color: #666;
  font-style: italic;
}

.art-content ul, .art-content ol {
  padding-left: 20px;
  margin-bottom: 15px;
}

.art-content li {
  margin-bottom: 5px;
}

.art-content code {
  background: #f8f9fa;
  padding: 2px 6px;
  border-radius: 3px;
  font-family: 'Courier New', monospace;
  color: #e83e8c;
}

.art-content pre {
  background: #f8f9fa;
  padding: 15px;
  border-radius: 5px;
  overflow-x: auto;
  margin: 15px 0;
}

.art-content pre code {
  background: none;
  padding: 0;
  color: #333;
}

.art-info .art-tags {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.art-info .art-tags .tag {
  display: inline-block;
  background: #f8f9fa;
  color: #666;
  padding: 4px 12px;
  border-radius: 15px;
  margin-right: 10px;
  margin-bottom: 8px;
  text-decoration: none;
  font-size: 12px;
  transition: all 0.3s ease;
}

.art-info .art-tags .tag:hover {
  background: #007bff;
  color: #fff;
  text-decoration: none;
}

.art-info .art-actions {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.art-info .art-actions .btn {
  padding: 8px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.art-info .art-actions .btn-primary {
  background: #007bff;
  color: #fff;
}

.art-info .art-actions .btn-primary:hover {
  background: #0056b3;
}

.art-info .art-actions .btn-outline {
  border: 1px solid #007bff;
  color: #007bff;
  background: transparent;
}

.art-info .art-actions .btn-outline:hover {
  background: #007bff;
  color: #fff;
}

/* 上一篇下一篇导航 */
.art-nav {
  margin-bottom: 35px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.prev-article a, .next-article a {
  text-decoration: none;
  color: #333;
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 5px;
}

.prev-article a:hover, .next-article a:hover {
  background: #007bff;
  color: #fff;
  border-color: #007bff;
}

.prev-article span, .next-article span {
  color: #999;
  padding: 8px 12px;
}

/* ===== 网址模板样式 ===== */

/* 网址列表样式 */
.website-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.website-item {
  background: #fff;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 20px;
}

.website-item:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  transform: translateY(-2px);
}

.website-icon {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #666;
}

.website-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.website-detail {
  flex: 1;
  min-width: 0;
}

.website-title {
  margin: 0 0 8px 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
}

.website-title a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.website-title a:hover {
  color: #007bff;
}

.website-desc {
  color: #666;
  line-height: 1.6;
  margin-bottom: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.website-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #999;
}

.website-url {
  color: #007bff;
  text-decoration: none;
  font-family: 'Courier New', monospace;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 200px;
}

.website-url:hover {
  text-decoration: underline;
}

.website-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.website-actions .btn {
  padding: 6px 12px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 12px;
  transition: all 0.3s ease;
}

.website-actions .btn-primary {
  background: #007bff;
  color: #fff;
}

.website-actions .btn-primary:hover {
  background: #0056b3;
}

.website-actions .btn-default {
  border: 1px solid #ddd;
  color: #666;
  background: transparent;
}

.website-actions .btn-default:hover {
  background: #f8f9fa;
  border-color: #007bff;
  color: #007bff;
}

/* 网址详情页样式 */
.website-detail-header {
  background: #fff;
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-align: center;
}

.website-detail-icon {
  width: 120px;
  height: 120px;
  border-radius: 12px;
  margin: 0 auto 20px;
  overflow: hidden;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: #666;
}

.website-detail-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.website-detail-title {
  font-size: 28px;
  font-weight: 600;
  margin: 0 0 15px 0;
  color: #333;
}

.website-detail-url {
  font-size: 16px;
  color: #007bff;
  text-decoration: none;
  font-family: 'Courier New', monospace;
  margin-bottom: 20px;
  display: block;
}

.website-detail-url:hover {
  text-decoration: underline;
}

.website-detail-meta {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 20px;
  color: #666;
  font-size: 14px;
}

.website-detail-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.website-detail-actions {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

.website-detail-actions .btn {
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.website-detail-actions .btn-primary {
  background: #007bff;
  color: #fff;
}

.website-detail-actions .btn-primary:hover {
  background: #0056b3;
  transform: translateY(-2px);
}

.website-detail-actions .btn-default {
  border: 2px solid #007bff;
  color: #007bff;
  background: transparent;
}

.website-detail-actions .btn-default:hover {
  background: #007bff;
  color: #fff;
}

.website-detail-desc {
  background: #fff;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.website-detail-desc h3 {
  margin: 0 0 15px 0;
  font-size: 18px;
  color: #333;
  border-bottom: 2px solid #f0f0f0;
  padding-bottom: 10px;
}

.website-detail-desc p {
  margin: 0;
  line-height: 1.8;
  color: #666;
}

.website-detail-content {
  background: #fff;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.website-detail-content h3 {
  margin: 0 0 15px 0;
  font-size: 18px;
  color: #333;
  border-bottom: 2px solid #f0f0f0;
  padding-bottom: 10px;
}

.website-detail-content .content-text {
  line-height: 1.8;
  color: #666;
}

.website-detail-content .content-text img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  margin: 10px 0;
}

.website-detail-content .content-text a {
  color: #007bff;
  text-decoration: none;
}

.website-detail-content .content-text a:hover {
  text-decoration: underline;
}

.website-detail-tags {
  background: #fff;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.website-detail-tags h3 {
  margin: 0 0 15px 0;
  font-size: 18px;
  color: #333;
  border-bottom: 2px solid #f0f0f0;
  padding-bottom: 10px;
}

.website-detail-tags .tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.website-detail-tags .tag {
  background: #f8f9fa;
  color: #666;
  padding: 6px 12px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 12px;
  transition: all 0.3s ease;
}

.website-detail-tags .tag:hover {
  background: #007bff;
  color: #fff;
}

.website-detail-nav {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.website-detail-nav .nav-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
}

.website-detail-nav .nav-item:last-child {
  border-bottom: none;
}

.website-detail-nav .nav-item a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.website-detail-nav .nav-item a:hover {
  color: #007bff;
}

.website-detail-nav .nav-item .nav-label {
  color: #999;
  font-size: 12px;
}

.website-detail-related {
  background: #fff;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.website-detail-related h3 {
  margin: 0 0 15px 0;
  font-size: 18px;
  color: #333;
  border-bottom: 2px solid #f0f0f0;
  padding-bottom: 10px;
}

.website-detail-related .related-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.website-detail-related .related-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
}

.website-detail-related .related-item:last-child {
  border-bottom: none;
}

.website-detail-related .related-icon {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #666;
}

.website-detail-related .related-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.website-detail-related .related-info {
  flex: 1;
  min-width: 0;
}

.website-detail-related .related-title {
  margin: 0 0 5px 0;
  font-size: 14px;
  font-weight: 500;
}

.website-detail-related .related-title a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.website-detail-related .related-title a:hover {
  color: #007bff;
}

.website-detail-related .related-meta {
  font-size: 12px;
  color: #999;
}

/* 网址搜索页样式 */
.website-search-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.website-search-item {
  background: #fff;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 20px;
}

.website-search-item:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  transform: translateY(-2px);
}

.website-search-icon {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #666;
}

.website-search-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.website-search-detail {
  flex: 1;
  min-width: 0;
}

.website-search-title {
  margin: 0 0 8px 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
}

.website-search-title a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.website-search-title a:hover {
  color: #007bff;
}

.website-search-meta {
  margin-bottom: 10px;
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

.website-search-meta p {
  margin: 0 0 5px 0;
}

.website-search-meta .label {
  color: #999;
  margin-right: 5px;
}

.website-search-desc {
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.website-search-url {
  color: #007bff;
  text-decoration: none;
  font-family: 'Courier New', monospace;
  font-size: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 200px;
  display: block;
  margin-bottom: 10px;
}

.website-search-url:hover {
  text-decoration: underline;
}

.website-search-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.website-search-actions .btn {
  padding: 6px 12px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 12px;
  transition: all 0.3s ease;
}

.website-search-actions .btn-primary {
  background: #007bff;
  color: #fff;
}

.website-search-actions .btn-primary:hover {
  background: #0056b3;
}

.website-search-actions .btn-default {
  border: 1px solid #ddd;
  color: #666;
  background: transparent;
}

.website-search-actions .btn-default:hover {
  background: #f8f9fa;
  border-color: #007bff;
  color: #007bff;
}

.website-search-tags {
  margin-top: 10px;
}

.website-search-tags .tag {
  display: inline-block;
  background: #f8f9fa;
  color: #666;
  padding: 2px 8px;
  border-radius: 12px;
  margin-right: 8px;
  margin-bottom: 5px;
  text-decoration: none;
  font-size: 11px;
  transition: all 0.3s ease;
}

.website-search-tags .tag:hover {
  background: #007bff;
  color: #fff;
}

/* ===== 通用样式 ===== */

/* 无结果样式 */
.no-result {
  text-align: center;
  padding: 60px 20px;
  color: #666;
}

.no-result .icon {
  font-size: 48px;
  color: #ddd;
  margin-bottom: 20px;
}

.no-result h3 {
  margin: 0 0 10px 0;
  color: #999;
}

.no-result p {
  margin: 0;
  color: #999;
}

/* 响应式设计 */
@media (max-width: 768px) {
  /* 文章响应式 */
  .art-item {
    flex-direction: column;
    gap: 15px;
  }
  
  .art-thumb {
    width: 100%;
    height: 150px;
  }
  
  .art-title {
    font-size: 16px;
  }
  
  .art-actions {
    flex-direction: column;
    align-items: stretch;
  }
  
  .art-actions .btn {
    text-align: center;
  }
  
  .art-search-item {
    flex-direction: column;
    gap: 15px;
  }
  
  .art-search-thumb {
    width: 100%;
    height: 150px;
  }
  
  .art-search-title {
    font-size: 16px;
  }
  
  .art-search-actions {
    flex-direction: column;
    align-items: stretch;
  }
  
  .art-search-actions .btn {
    text-align: center;
  }
  
  /* 文章详情页响应式 */
  .art-detail-header .art-thumb {
    width: 100%;
    height: 200px;
    float: none;
    margin-right: 0;
    margin-bottom: 15px;
  }
  
  .art-info .art-title {
    font-size: 20px;
  }
  
  .art-content {
    padding: 20px;
    font-size: 15px;
  }
  
  .art-info .art-actions {
    flex-direction: column;
    gap: 10px;
  }
  
  .art-info .art-actions .btn {
    width: 100%;
    text-align: center;
  }
  
  .art-nav {
    flex-direction: column;
    gap: 15px;
  }
  
  .floating-chapter-btn {
    right: 10px;
    bottom: 80px;
    padding: 10px 15px;
  }
  
  .floating-chapter-panel {
    right: 10px;
    bottom: 140px;
    width: calc(100vw - 20px);
    max-width: 300px;
  }
  
  /* 网址响应式 */
  .website-item {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .website-icon {
    width: 80px;
    height: 80px;
  }
  
  .website-title {
    font-size: 16px;
  }
  
  .website-meta {
    flex-direction: column;
    gap: 5px;
  }
  
  .website-url {
    max-width: 100%;
  }
  
  .website-actions {
    flex-direction: column;
    align-items: stretch;
  }
  
  .website-actions .btn {
    text-align: center;
  }
  
  .website-detail-header {
    padding: 20px;
  }
  
  .website-detail-icon {
    width: 80px;
    height: 80px;
    font-size: 32px;
  }
  
  .website-detail-title {
    font-size: 22px;
  }
  
  .website-detail-meta {
    flex-direction: column;
    gap: 10px;
  }
  
  .website-detail-actions {
    flex-direction: column;
    align-items: stretch;
  }
  
  .website-detail-actions .btn {
    text-align: center;
  }
  
  .website-detail-related .related-item {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .website-detail-related .related-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
  
  .website-search-item {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .website-search-icon {
    width: 80px;
    height: 80px;
    font-size: 32px;
  }
  
  .website-search-title {
    font-size: 16px;
  }
  
  .website-search-url {
    max-width: 100%;
  }
  
  .website-search-actions {
    flex-direction: column;
    align-items: stretch;
  }
  
  .website-search-actions .btn {
    text-align: center;
  }
} 