body {
  padding-bottom: 62px;
  max-width: 750px;
  margin: 0 auto;
  color: #333;
}

a {
  text-decoration: none;
  color: #000;
}

.search-empty-state {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 420px;
}

/* detail 底部 btn */
.read_now {
  position: fixed;
  bottom: 50px;
  left: 0;
  width: 100%;
  padding: 15px 0;
  background-color: #2962ff;
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  z-index: 999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  display: block;
  transition: all 0.3s ease;
}

/* PC端隐藏固定按钮 */
@media screen and (min-width: 750px) {
  .read-button {
    display: none;
  }
}

#text {
  font-size: 18px;
  font-weight: bold;
  color: #4a4a4a;
  margin: 20px 0 15px 0;
  padding: 10px 15px;
  background-color: #f5f7ff;
  border-radius: 8px;
  line-height: 1.4;
  position: relative;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
}

#text:before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 18px;
  background-color: #2962ff;
  margin-right: 10px;
  border-radius: 2px;
}

/* 菜单模块 */

.header {
 
  padding: 6px 8px;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-top{
   display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  height: 30px;
}

.logo img {
  height: 100%;
  max-width: 120px;
}

.header-search {
  width: 36px;
  height: 36px;
  background-color: #3366ff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  box-shadow: 0 2px 5px rgba(51,102,255,0.3);
  cursor: pointer;
}

.header-search i {
  font-size: 16px;
}

.search-container {
  position: fixed;
  top: 48px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 750px;
  padding: 10px;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  z-index: 1000;
  display: flex;
  align-items: center;
}

.search-input {
  width: 100%;
  padding: 8px 15px;
  border: 1px solid #ddd;
  border-radius: 20px;
  font-size: 14px;
  outline: none;
}

.search-input:focus {
  border-color: #3366ff;
  box-shadow: 0 0 5px rgba(51,102,255,0.3);
}

.search-container img {
  width: 20px;
  height: 20px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

.menu-container {
  padding: 4px 0;
  display: flex;
  justify-content: space-around;
  align-items: center;
  /* background-color: #fff; */
  /* box-shadow: 0 -2px 8px rgba(0,0,0,0.15); */
  /* position: fixed;
  bottom: 0;
  left: 50%; */
  /* transform: translateX(-50%); */
  width: 100%;
  max-width: 750px;
  z-index: 1000;
  /* border-top: 1px solid #eaeaea; */
  /* border-radius: 20px 20px 0 0; 添加顶部圆角 */
  transition: all .3;
}

.menu-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #666;
  font-size: 12px;
  padding: 5px 0;
  width: 20%;
  transition: all 0.3s ease;
}

.menu-item i {
  font-size: 22px; /* 稍微增大图标 */
  margin-bottom: 5px;
}


.menu-item.active {
  color: #3366ff;
  font-weight: 500;
}

.menu-item:hover {
  color: #3366ff;
}

.search-icon {
  width: 45px; 
  height: 45px;
  background-color: #3366ff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  box-shadow: 0 2px 10px rgba(51,102,255,0.4);
  transition: all 0.3s ease;
  font-size: 20px; 
}

.search-icon:hover {
  transform: scale(1.05);
}

/* 面包屑导航样式 */
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  padding: 12px 15px;
  margin: 0 0 10px 0;
  list-style: none;
  font-size: 13px;
  color: #666;
  background-color: #f8f9fc;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

.breadcrumbsItem {
  display: flex;
  align-items: center;
  position: relative;
}

.breadcrumbsItem a {
  color: #666;
  text-decoration: none;
  transition: color 0.2s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 120px;
  padding-right: 5px;
}

.breadcrumbsItem:not(:last-child):after {
  content: "/";
  margin: 0 5px;
  color: #ccc;
}

.breadcrumbsItem a:hover {
  color: #3366ff;
}

.breadcrumbsItem a.cate {
  color: #3366ff;
  font-weight: 500;
}

.breadcrumbsItem:last-child a {
  color: #333;
  font-weight: 500;
  max-width: 150px;
}


/* 分页样式重新设计 */
.PAGE {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  padding: 15px 0;
  margin: 10px 0;
  font-size: 14px;
}

.PAGE li {
  margin: 0 3px;
}

.PAGE li a,
.PAGE li span {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 32px;
  height: 32px;
  color: #666;
  background-color: #fff;
  border: 1px solid #eaeaea;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.PAGE li.active a {
  background-color: #3366ff;
  color: #fff;
  border-color: #3366ff;
  font-weight: 500;
  box-shadow: 0 2px 5px rgba(51, 102, 255, 0.3);
}

.PAGE li a:hover:not(.active) {
  background-color: #f5f8ff;
  border-color: #3366ff;
  color: #3366ff;
}

.PAGE li span {
  color: #ccc;
  background-color: #f9f9f9;
  cursor: default;
}

/* 上一页下一页的箭头样式 */
.PAGE li:first-child a,
.PAGE li:last-child a {
  font-size: 16px;
  padding: 0;
  width: 32px;
}

/* 省略号样式 */
.PAGE li.ellipsis span {
  border: none;
  background: transparent;
  box-shadow: none;
  padding: 0 5px;
}

/* 当前页突出显示 */
.PAGE li.active a {
  position: relative;
  overflow: hidden;
}

.PAGE li.active a::before {
  content: '';
  position: absolute;
  top: -10px;
  right: -10px;
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

/* 响应式调整 */
@media screen and (max-width: 480px) {
  .PAGE li a,
  .PAGE li span {
    min-width: 28px;
    height: 28px;
    font-size: 13px;
  }
  
  .PAGE li.active {
    margin: 0 5px;
  }
  
  .PAGE li:first-child,
  .PAGE li:last-child {
    margin: 0 5px;
  }
}

/* footer */
.footer {
  padding: 1rem;
  text-align: center;
  font-size: 12px;
  color: #666;
}

.footer .content {
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
  color: #999;
}

.footer .content a {
  color: #cc3e64;
  text-decoration: none;
  margin: 0 3px;
}

.footer .content a:hover {
  text-decoration: underline;
}


.share {
  padding: 0 30px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
}

.btnAddShelf {
  width: 150px;
  height: 40px;
  background-color: #3366ff;
  color: #fff;
  border-radius: 10px;
  line-height: 40px;
  text-align: center;
}

.take-wrap {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 160px;
  height: 40px;
}

.share .blue {
  margin-left: 4px;
  width: 20px;
  height: 20px !important;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

li {
  list-style: none;
}

em,
i {
  font-style: normal;
}

/* read  首行缩进 */
.chapter-content p {
  text-indent: 2em;
}

/* 广告 */
.positionFixed {
  bottom: 0px;
  left: 50%;
  position: fixed;
  transform: translate(-50%, 0%);
  z-index: 999;
  width: 100%;
  background-color: #e4e4e4;
  display: flex;
  justify-content: center;
  height: 50px;
  max-width: 750px;
}

.ad-div {
  margin-bottom: 50px;
  width: 100%;
  min-width: 250px;
  
  clear: both;

}

.t_de {
  height: 0.2rem;
  max-width: 100%;
  line-height: 0.3rem;
  font-size: 0.6rem;
  padding: 0.5rem 0 1rem 0;
  box-sizing: border-box;
  color: #707070;
  text-align: center;
}