/*
Author: 酷乐网络
Author QQ：7206876
Author 微信：uumitu
Author URL: http://www.kuleu.com
*/
@charset "utf-8";
/*==========css reset==========*/
body { 
    font-family: 'Open Sans', Arial, sans-serif; 
    background-color: #f8f9fa; 
    color: #333; 
    margin: 0; 
    padding: 0; 
    line-height: 1.6; 
} 
.container { 
    max-width: 750px; 
    margin: 10px auto; 
    padding: 15px; 
} 
.announcement-box, 
.search-container { 
    padding: 15px; 
    background-color: #fff; 
    box-shadow: 0 5px 15px rgba(0,0,0,.1); 
    border-radius: 8px; 
    margin: 10px auto; 
} 
.search-container { 
    text-align: center; 
} 
.adinfo-bottom {
	max-width: 750px;
	margin: 10px auto;
	/* padding: 15px; */
	border-radius: 8px;
	font-size: 20px;
}

.results-title { 
    font-size: 2rem; 
    margin: 0; 
    color: #007bff; 
} 

.search-query {
  color: #555;
  margin-bottom: 10px;
}

.search-box { 
    width: calc(100% - 100px); 
    padding: 10px; 
    border: 1px solid #ced4da; 
    border-radius: 4px; 
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out; 
} 

.search-box:focus { 
    border-color: #80bdff; 
    outline: 0; 
    box-shadow: 0 0 0 .2rem rgba(0,123,255,.25); 
} 

.search-button { 
    width: 100px; 
    padding: 10px; 
    border: none; 
    cursor: pointer; 
    background-color: #007bff; 
    color: #fff; 
    border-radius: 4px; 
    transition: background-color .15s ease-in-out; 
} 

.search-button:hover { 
    background-color: #0056b3; 
} 

.results-container {
  max-width: 750px;
  margin: 10px auto;
  background-color: #fff;
  box-shadow: 0 5px 15px rgba(0,0,0,.1);
  border-radius: 8px;
}

.result-item {
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  border-bottom: 1px solid #ddd;
}
.button-container {  
    display: flex;  
    justify-content: center; /* 水平居中 */  
    align-items: center; /* 垂直居中 */  
    height: 100%; /* 或者其他适合的高度 */  
}  
.today-update-button{
    padding: 10px 20px;
    font-size: 16px;
    background-color: #4caf50;
    border: none;
    border-radius: 5px;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-bottom: 10px;
}
.result-item {
    position: relative; 
    padding-bottom: 32px; 
}
/* 默认样式 */  
.results-containerr {  
  width: 750px;  
  margin: 10px auto;  
  background-color: #fff;  
  box-shadow: 0 5px 15px rgba(0,0,0,.1);  
  border-radius: 8px;  
  overflow: hidden; /* 确保内容不会溢出容器 */  
}  
  
.result-itemm {  
  padding: 15px;  
  border-bottom: 1px solid #ddd;  
}  
  
/* 自适应图片样式 */  
.result-itemm img {  
  max-width: 100%; /* 图片最大宽度不超过其容器 */  
  height: auto; /* 高度自动调整，保持图片比例 */  
  display: block; /* 确保图片像块级元素一样显示 */  
  margin: 0 auto; /* 可选：水平居中图片 */  
  /* 重置内联样式 */  
  width: auto !important; /* 使用!important来覆盖内联样式中的宽度 */  
  height: auto !important; /* 使用!important来覆盖内联样式中的高度 */  
}  
  
/* 媒体查询，用于小屏幕设备 */  
@media (max-width: 599px) {  
  .results-containerr {  
    width: 100%;  
    padding: 0 10px;  
  }  
}

.copy-button {
    position: absolute;
    bottom: 0; 
    right: 0; 
}

.link-button {
    position: absolute;
    bottom: 0; 
    right: 80px; 
}

.result-title, .result-password, .result-link {
  margin: 0 5px; 
  font-size: 1.25rem;
}

.result-link {
  color: #007bff;
  text-decoration: none;
  transition: color .15s ease-in-out;
}

.result-link:hover {
  color: #0056b3;
  text-decoration: underline;
}


/* 修改类名 */
.link-button {
  padding: 5px 10px;
  margin-left: 5px;
  border: none;
  cursor: pointer;
  background-color: #007bff; /* 修改背景颜色 */
  color: #fff;
  border-radius: 4px;
  transition: background-color .15s ease-in-out;
}

.link-button:hover {
  background-color: #0056b3; /* 修改悬停时的背景颜色 */
}

.link-button a {
  text-decoration: none; /* 去除下划线 */
  color: inherit; /* 继承按钮的文字颜色 */
}


.copy-button {
  padding: 5px 10px;
  margin-left: 5px; 
  border: none;
  cursor: pointer;
  background-color: #28a745;
  color: #fff;
  border-radius: 4px;
  transition: background-color .15s ease-in-out;
}
.copy-button:hover {
  background-color: #218838;
}
.copy-right {
    /* margin: 20px 0.75rem; */
    font-size: 13px;
    color: #666;
    text-align: center;
}
@media (max-width: 768px) {
  .search-container, .results-container {
    width: auto;
    /* margin: 20px; */
  }

  .search-box {
    width: calc(100% - 40px);
  }

  .search-button {
    width: 90px;
  }
}
nav {  
    background-color: #333;  
} 

/* CSS 样式美化弹出窗口 */
.popup-container {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    border: 2px solid #ccc;
    border-radius: 8px;
    padding: 20px;
    max-width: 80%;
    z-index: 9999;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.popup-container h2 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
}
.popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    color: #888;
    font-size: 20px;
}
.popup-content {
    max-height: 400px;
    overflow-y: auto;
    min-width: 280px;
}
.popup-content p {
    margin-bottom: 10px;
}
.today-update-button{
    padding: 10px 20px;
    font-size: 16px;
    background-color: #4caf50; /* 深蓝色按钮 */
    border: none;
    border-radius: 5px;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-left: 10px;
}
.tijiao-button{
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: #007bff;
    color: #fff;
    cursor: pointer;
    font-size: 0.9em;
    transition: background-color 0.3s ease;
}
.today-update-button:hover {
    background-color: #38813b; /* 深蓝色按钮悬停 */
}
/* 弹窗样式 */
.dialog {
    position: fixed;
    top: 300px;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #f9f9f9;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    padding: 30px;
    max-width: 400px;
    min-width: 270px;
    font-size: 0.9em;
}

.dialog-content {
    width: 100%;
}

.close-dialog {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 20px;
    color: #666;
}
h4 a + a {
        margin-left: 10px;
    }
/* 遮罩层样式 */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
}

.containerr {  
  width: 100%; /* 可以根据需要设置宽度 */  
  max-width: 800px; /* 限制最大宽度，使其在不同设备上更友好 */  
  margin: 0 auto; /* 水平居中 */ 
  box-sizing: border-box; /* 保持总宽度不变，包括内边距和边框 */  
}  
  
.text-center {  
  text-align: center; /* 文本居中 */  
}  
  
.mt-4 {  
  margin-top: 16px; /* 调整上边距为正数 */  
}
.containerr.mt-4.text-center a {  
  color: #333; /* 设置链接默认颜色 */  
  text-decoration: none; /* 移除下划线 */  
  font-weight: bold; /* 加粗字体 */  
  transition: color 0.3s ease; /* 添加过渡效果 */  
}  
  
.containerr.mt-4.text-center a:hover {  
  color: #007BFF; /* 鼠标悬停时改变链接颜色 */ 
}


/* 分页样式 */
.pagination {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
}

.pagination li {
    margin: 0 5px;
}

.pagination li a,
.pagination li span {
    display: block;
    padding: 8px 12px;
    text-decoration: none;
    color: #333;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.pagination li.active a {
    background-color: #007bff;
    color: #fff;
    border-color: #007bff;
}

.pagination li a:hover {
    background-color: #f0f0f0;
}

/* 响应式样式 */
@media (max-width: 768px) {
    .pagination {
        flex-wrap: wrap;
    }

    .pagination li {
        margin: 5px;
    }
}


.footer {
    margin-top: -20px;
    background-color: #f2f2f2;
    color: #70757a;
    padding: 16px;
    text-align: center;
}

.footer a {
    text-decoration: none;
    color: black; /* 设置超链接颜色为黑色 */
}

.footer-fixed {
	position: fixed;
	bottom: 0
}

.footer-spider-tips {
	font-size: 12px;
	line-height: 1.5
}

/* 导航栏样式 */
.custom-navbar {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    padding: 10px 20px;
    background-color: #fff;
    border-bottom: 1px solid #ddd;
}

.custom-nav-item {
    font-size: 14px;
    padding: 10px 15px;
    margin-right: 15px; /* 导航项之间的间隔 */
    margin-bottom: 10px; /* 导航项之间的间隔 */
    border: 1px solid #ddd; /* 导航项的外边框 */
    border-radius: 4px;
    background-color: #f8f9fa;
    color: #333;
    text-decoration: none; /* 移除超链接下划线 */
    transition: background-color 0.3s, color 0.3s; /* 增加过渡效果 */
}

.custom-nav-item:hover {
    background-color: #007bff; /* 悬停时背景颜色 */
    color: #fff; /* 悬停时文字颜色 */
}

.custom-share-button {
    background-color: #FFD700;
    border: none;
    padding: 8px 12px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 4px;
    margin-left: auto; /* 将按钮放置在导航项之后 */
}

/* 响应式样式 */
@media (max-width: 768px) {
    .custom-navbar {
        justify-content: space-between; /* 手机端均匀分布 */
    }

    .custom-nav-item {
        /*flex: 1 1 calc(50% - 7.5px);*/ /* 手机端每行两个导航项 */
        margin-right: 0px; /* 每项右侧间隔 */
    }

    .custom-nav-item:nth-child(even) {
        margin-right: 0; /* 偶数项无右侧间隔 */
    }

    .custom-share-button {
        flex: 1 1 100%;
        margin-top: 10px; /* 按钮放置在最后 */
        margin-left: 0; /* 移除左侧自动间距 */
    }
}

.JabiBgTg{
	background-color: #fff;
	border-radius: 10px;
	width: 100%;
	max-width: 100%;
	height: auto;
	margin-top: -15px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 0px;
	padding:0px;
}
.JabiTg{
	width: 100%;
	display: block;
	height: auto;
	border-radius: 10px;
	cursor:pointer;
}