@charset "utf-8"; /**
 * base.css
 * https://www.cn121.com/
 */
/* 底部移动图片样式 */
#moving-image-container {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 9999;
    pointer-events: auto;
}

#moving-image {
    width: 50px;
    height: auto;
    cursor: grab;
}

#moving-image:active {
    cursor: grabbing;
}

/* 评论滚动容器样式 - 增强显示效果 */
.comment-scroll-container {
    width: 250px;
    height: 30px;
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    padding: 0 10px;
    margin: 0 5px 0 0;
    text-align: left !important;
    /* 确保绝对左对齐 */
    float: none;
    clear: none;
    left: 0;
    direction: ltr;
}

.comment-item {
    display: block;
    width: 100%;
    height: 100%;
    line-height: 30px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    position: absolute;
    left: 0;
    top: 0;
    text-decoration: none !important;
    color: #333 !important;
    text-align: left !important;
    /* 强制左对齐，完全移除任何可能的居中样式 */
    float: none;
    clear: none;
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
    transform: none;
    justify-content: flex-start !important;
    direction: ltr;
    /* 过渡效果 */
    transition: opacity 0.5s ease;
}

.comment-item:hover {
    color: #43add4 !important;
}

.comment-item span {
    font-weight: bold;
    color: #ff6600;
    margin-right: 5px;
    display: inline-block;
    text-align: left !important;
    vertical-align: middle;
}
* { margin: 0; padding: 0 }
body { font: 15px "Microsoft YaHei", Arial, Helvetica, sans-serif; color: #000; background: #f6f6f6; line-height: 1.5; overflow-x: hidden; }
img { border: 0; display: block }
ul, li { list-style: none; }
a { text-decoration: none; color: #000; }
a:hover { color: #0779a3; }
.clear { clear: both; width: 100%; overflow: hidden; }
.blank { clear: both; width: 100%; overflow: hidden; height: 20px }
.box { width: 1200px; margin: auto; overflow: hidden }
main { width: 1200px; margin: -50px auto 0; overflow: hidden; display: block; }



.is-fixed { position: fixed; top: 120px; z-index: 99; }
/*header*/
header { background: url(../images/banner.webp) no-repeat; padding: 0 0 220px; background-size: cover; position: relative; } header::after { content: ''; position: absolute; left: 0; bottom: 0; width: 100%; height: 100px; background: linear-gradient(to bottom, rgba(246, 246, 246, 0), #f6f6f6); pointer-events: none; }
nav li a:hover { text-decoration: none; }

/* 导航栏固定及初始透明 */
nav { 
  position: fixed; /* 固定在顶部 */
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999; /* 提高层级避免被遮挡 */
  overflow: visible; 
  background: transparent; /* 初始透明 */
  transition: all 0.3s ease-in-out; /* 过渡动画 */
  padding: 0 20px; 
  width: 100%; /* 全屏宽度 */
  box-sizing: border-box; /* 避免padding导致溢出 */
}
nav li { float: left }
nav li a { 
  color: #fff; /* 初始白色（透明背景下可见） */
  line-height: 55px; 
  font-size: 15px; 
  margin: 0px 15px; 
  position: relative; /* 用于下划线定位 */
  transition: color 0.3s ease;
}
/* 滚动后导航栏样式 */
nav.scrolled { 
  background: #fff; /* 实色背景 */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* 轻微阴影 */
}
nav.scrolled li a { color: #666; } /* 滚动后文字颜色 */
li.selected a, nav li:hover a { color: #0779a3; } /* 选中/hover颜色调整 */

/* 当前选中项下划线动画 */
nav li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%; /* 从中间开始 */
  width: 0;
  height: 2px;
  background-color: #43add4;
  transition: all 0.3s ease-in-out;
  transform: translateX(-50%); /* 居中 */
}

/* 鼠标悬停下划线效果 */
nav li:hover a::after {
  width: 100%;
  left: 0;
  transform: translateX(0);
}

/* 当前选中项下划线效果 */
nav li a.selected::after {
  width: 100%;
  left: 0;
  transform: translateX(0);
}

/* 滚动后导航栏的下划线颜色调整 */
nav.scrolled li a::after {
  background-color: #43add4;
}

/* 选中和悬停状态下文字颜色增强 */
li.selected a,
nav li:hover a {
  color: #43add4;
  font-weight: 500;
}

/* 滚动后选中和悬停状态的文字颜色 */
nav.scrolled li.selected a,
nav.scrolled li:hover a {
  color: #43add4;
}

/* 子菜单容器 */
.has-down { position: relative; } /* 父项相对定位 */
.dropdown-menus {
  display: none;
  opacity: 0;
  transform: translateY(10px); /* 初始下移10px */
  transition: opacity 0.3s ease, transform 0.3s ease; /* 淡入+下移动画 */
  background-color: rgba(255, 255, 255, 0.95); /* 半透明白色 */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); /* 阴影提升层次 */
  border-radius: 4px;
  padding: 5px 0;
  position: absolute;
  top: 100%; /* 位于父项下方 */
  left: 0;
  min-width: 150px;
  z-index: 1000;
}
/* 子菜单项样式 */
.dropdown-menus li { 
  float: none; /* 取消浮动，垂直排列 */
  margin: 0;
}
.dropdown-menus li a {
  display: block; /* 占满宽度 */
  padding: 8px 15px;
  margin: 0;
  line-height: 1.5;
  color: #333 !important; /* 强制文字颜色 */
}
.dropdown-menus li a:hover {
  background-color: #f5f5f5;
  text-decoration: none;
}
/* 鼠标悬停显示子菜单 */
.has-down:hover .dropdown-menus {
  display: block;
  opacity: 1;
  transform: translateY(0); /* 回归原位 */
}

.logo {
  text-align: center; 
  font-size: 32px; 
  margin-top: 180px; 
  margin-bottom: 10px; 
  margin-left: auto; 
  margin-right: auto; 
  font-weight: bold; 
  letter-spacing: 1px; 
  color: #fff; 
  position: relative; 
  display: block; 
  width: fit-content;
}

.logo::before {
  display: none;
}

.logo::after {
  display: none;
}

/* 定义LOGO倾斜摇摆动画 */
@keyframes sway {
  0% { transform: skewX(-3deg); }
  100% { transform: skewX(3deg); }
}

/* 为文字LOGO和图片LOGO添加倾斜摇摆效果 */
.logo:hover, .logo:hover img {
  animation: sway 1s ease-in-out infinite alternate;
}
.search { width: 40%; margin-top: 10px; margin-bottom: 50px; margin-left: auto; margin-right: auto; position: relative; border: #69c2e0 2px solid; border-radius: 5px; overflow: hidden; }
.search input.input_submit { border: 0; color: #fff; outline: none; position: absolute; top: 0; right: 0; width: 25%; display: block; font-size: 15px; height: 36px; line-height: 36px; cursor: pointer; background: #43add4; }
.search input.input_text { border: 0; line-height: 36px; height: 36px; font-size: 14px; width: 75%; outline: none; text-indent: 1em; }

/* 新搜索框样式 */
.search-container {
  width: 70%; /* 增加搜索框整体长度 */
  margin: 20px auto 50px;
  padding: 0 20px;
}

.search-form {
  display: flex;
  justify-content: center;
}

/* 输入区样式 - 包含选项、输入框和按钮 */
.search-input-wrapper, .compact-search-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  width: 100%;
}

.search-input-wrapper:hover, .compact-search-wrapper:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

/* 搜索选择器样式已移除 */

/* 搜索输入框容器 - 旧结构兼容 */
.search-input-with-icon {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
}

/* 参考文件标准样式实现 - 浮动标签效果 */

/* 输入框容器，必须为相对定位，作为占位符的定位参照 */
.search-input-text {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center; /* 确保输入框和占位提示垂直居中 */
  height: 50px; /* 增加输入框高度 */
  overflow: visible; /* 允许占位提示超出容器（聚焦时上移） */
}

/* 输入框样式 */
.line-form-input {
  width: 100%;
  height: 50px; /* 增加输入框高度 */
  padding: 0 20px;
  padding-left: 24px; /* 增加左内边距，避免占位提示文字被遮挡 */
  padding-right: 52px; /* 为搜索按钮留出空间 */
  border: none;
  border-radius: 4px;
  font-size: 16px; /* 增大字体 */
  color: #1f2937;
  background-color: transparent;
  transition: all 0.3s ease;
  outline: none;
  box-sizing: border-box;
  position: relative;
  z-index: 2; /* 确保输入框在占位提示之上，能接收焦点 */
}

/* 输入框聚焦时的样式 */
.line-form-input:focus {
  box-shadow: 0 0 0 3px rgba(0, 163, 255, 0.1);
}

/* 
 * 动态占位符核心样式 
 */
.scale-placeholder {
  position: absolute;
  left: 24px; /* 与输入框 padding-left 一致，关键！ */
  top: 50%;
  transform: translateY(-50%); /* 垂直居中 */
  font-size: 14px;
  color: #9CA3AF;
  pointer-events: none; /* 让鼠标事件穿透，不影响输入框聚焦 */
  transition: all 0.25s ease;
  background-color: transparent; /* 移除背景色，符合用户要求 */
  padding: 0 4px; /* 左右内边距，防止文字与输入框边框重叠 */
  z-index: 1; /* 确保占位提示在输入框之下，不遮挡输入内容 */
  white-space: nowrap; /* 防止文字换行，确保完整显示 */
}

/* 
 * 触发条件：
 * 1. 输入框获得焦点 (:focus)
 * 2. 输入框有内容 (:not(:placeholder-shown))
 */
.line-form-input:focus + .scale-placeholder,
.line-form-input:not(:placeholder-shown) + .scale-placeholder {
  /* 向上移动并缩小 - 调整为不超出搜索条 */
  top: 8; /* 调整top值，不再使用负值，避免占位符跳得太高 */
  transform:  translateY(0); /* 使用transform垂直居中 */
  font-size: 12px; /* 缩小字体 */
  color: rgba(0, 163, 255, 0.2); /* 变色为主题色并添加透明度 */
}

/* 确保搜索框容器正确定位 */
.compact-search-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

/* 搜索按钮绝对定位在右侧 */
.abs-right {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
}

.abs-right button {
  width: 50px;
  height: 50px;
  border: none;
  background: transparent;
  color: #666;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

/* hover时的颜色变化 */
.abs-right button:hover {
  color: #00A3FF;
}

/* 点击时有反馈动画 */
.abs-right button:active {
  transform: translateY(-50%) scale(0.95);
}

/* SVG图标样式 */
.search-icon {
  transition: all 0.3s ease;
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* 确保在响应式设计中占位符也能正常工作 */
@media (max-width: 768px) {
  .search-input-text {
    height: 40px; /* 小屏幕下父容器高度 */
  }
  
  .line-form-input {
    height: 40px; /* 小屏幕下输入框高度 */
    font-size: 14px;
    padding: 0 15px;
    padding-left: 20px; /* 小屏幕下输入框左内边距 */
    padding-right: 45px;
  }
  
  .scale-placeholder {
    font-size: 14px;
    left: 20px; /* 与小屏幕下输入框 padding-left 一致 */
  }
  
  .line-form-input:focus + .scale-placeholder,
  .line-form-input:not(:placeholder-shown) + .scale-placeholder {
	top: 6px;
    font-size: 11px;
  }
}

/* hover时图标变化 */
.search-icon-btn:hover .search-icon {
  transform: scale(1.1);
}

/* 点击时图标变化 */
.search-icon-btn:active .search-icon {
  transform: scale(0.9);
}

/* 响应式设计 */
@media (max-width: 768px) {
  .search-container {
    width: 90%; /* 在移动端保持宽度不变，确保显示良好 */
    padding: 0 10px;
    margin-top: 80px; /* 增加上边距，避免与导航栏重合 */
  }
  
  .search-select {
    min-width: 100px;
    padding: 10px 12px;
    font-size: 13px;
  }
  
  .search-input {
    font-size: 14px;
    padding: 10px 15px;
  }
  
  .search-btn {
    padding: 10px 15px;
  }
  
  /* 适配小屏幕下的搜索按钮尺寸 */
  .abs-right button {
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 480px) {
  .search-input-wrapper {
    flex-direction: column;
    border-radius: 15px;
    overflow: hidden;
  }
  
  .search-select {
    width: 100%;
    border-radius: 15px 15px 0 0;
    border-right: none;
    border-bottom: 1px solid #ddd;
  }
  
  .search-input {
    width: 100%;
  }
  
  .search-btn {
    width: 100%;
    border-radius: 0 0 15px 15px;
  }
  
  /* 小屏幕下搜索容器保持宽度不变 */
  .search-container {
    width: 95%;
    margin: 90px auto 30px; /* 增加上边距至90px，避免与导航栏重合 */
  }
  
  /* 适配小屏幕下的按钮和输入框尺寸 */
  .abs-right button {
    width: 40px;
    height: 40px;
  }
}

/* 加载状态 */
.search-btn.loading .search-icon {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* 禁用状态 */
.search-select:disabled {
  background: #f5f5f5;
  color: #999;
  cursor: not-allowed;
}

.search-input:disabled {
  background: #f5f5f5;
  color: #999;
  cursor: not-allowed;
}

.search-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
}

.search-btn:disabled:hover {
  background: #ccc;
  transform: none;
}
.lbox { width: 70%; float: left; }
.rbox { width: 27%; float: right; }
.blogs { background: rgba(255,255,255,.6); border-radius: 10px; overflow: hidden; margin-bottom: 20px }
/*tab*/
.gd-box { }
#tab { padding: 0 20px; overflow: hidden; border-bottom: #efefef 1px solid; }
#tab li { font-size: 16px; margin-right: 30px; position: relative; cursor: pointer; display: inline-block; line-height: 50px; color: #666; float: left; }
#tab li:after { content: ""; background: #333333; width: 20%; height: 2px; position: absolute; bottom: 0; left: 40%; opacity: 0; -moz-transition: all .5s ease; -webkit-transition: all .5s ease; transition: all .5s ease; }
#tab li:hover:after, #tab li.tab-current:after { opacity: 1; width: 100%; margin: auto; display: block; left: 0; }
#tab li.tab-current, #tab li:hover { color: #333333; font-weight: bold; }
#tab-content>div { display: none; }
#tab-content>div:nth-child(1) { display: block }
#tab-content { overflow: hidden; background: #fff; }
.blogs_list { padding: 20px 20px 0; }
.blogs_list li { border-bottom: 1px solid #e9ecf3; margin-bottom: 20px; padding-bottom: 20px; }
.blogs_list li .title { }
.blogs_list li .title span { display: inline-block; height: 18px; line-height: 18px; padding: 0 4px; background: #3ed3da; border-radius: 4px; font-size: 12px; color: #fff; text-align: center; margin-right: 5px; margin-top: 3px; vertical-align: top; }
.blogs_list li .title a { font-size: 18px; line-height: 24px; }
.blogs_list li i { float: right; width: 178px; height: 100px; display: block; overflow: hidden; margin: 12px 0 0 22px; }
.blogs_list li i img { width: 100%; min-height: 100%; }
.blogs_list li p { overflow: hidden; text-overflow: ellipsis; -webkit-box-orient: vertical; display: -webkit-box; -webkit-line-clamp: 3; margin: 12px 0 24px 0; font-size: 14px; color: #7C7C7C; line-height: 24px; }
.info { display: inline-block; line-height: 16px; color: #999; font-size: 14px; }
.info a { color: #999; }
.info span { display: inline-block; padding: 0 14px 0 0; margin-right: 14px; border-right: 1px solid #e9ecf3; vertical-align: top; }
.info span:last-child { border-right: none; }
.btn_more { background: #fff; text-align: center; overflow: hidden; padding: 20px 0; }
.btn_more a { width: 266px; height: 36px; line-height: 36px; margin: auto; display: block; border: #333 1px solid; font-size: 14px; border-radius: 4px; transition: .3s; }
.rbox>div { background: rgba(255,255,255,.6); border-radius: 10px; padding: 20px; margin-bottom: 20px; }
.side_title { font-size: 18px; line-height: 25px; color: #333; margin: 0 0 20px; font-weight: bold; }
.side_title a { float: right; font-size: 14px; font-weight: normal; color: #999; }
.hot_news li:nth-child(1):before { color: #fe2d46; }
.hot_news li:nth-child(2):before { color: #f60; }
.hot_news li:nth-child(3):before { color: #faa90e; }
.hot_news ul li { position: relative; padding: 10px 0 5px; line-height: 1.6; font-size: 14px; text-overflow: ellipsis; white-space: nowrap; overflow: hidden; counter-increment: a 1; }
.hot_news ul li:before { content: counter(a); display: inline-block; left: 0px; top: 0; margin-right: 10px; color: #9195a3; }
.tj_news ul { background: #f5f8f9; border-radius: 9px; padding: 15px; box-sizing: border-box; border: 1px solid #f5f8f9; }
.tj_news ul li { text-overflow: ellipsis; white-space: nowrap; overflow: hidden; font-size: 14px; position: relative; padding-left: 20px; line-height: 34px; }
.tj_news ul li:before { content: ''; width: 4px; height: 4px; border-radius: 4px; position: absolute; top: 15px; left: 0; background: #333; }
.contact ul { display: flex; justify-content: space-around; margin-bottom: 18px; }
.contact li { width: 45%; text-align: center; font-size: 14px; }
.contact li img { width: 100%; }
.contact p { font-size: 14px; line-height: 30px; }
.contact p span { color: #858585; margin: 0 10px 0 0; width: 40px; text-align: center; display: inline-block; }
footer { font-size: 14px; color: #9d9d9d; line-height: 14px; text-align: center; padding: 20px 0; }
footer a { color: #9d9d9d; }

/*pagelist*/
.pagelist { text-align: center; color: #666; width: 100%; clear: both; padding: 0 0 10px; font-size: 12px; }
.pagelist a { color: #5c626c; margin: 0 5px 10px; padding: 5px 10px; background: #f4f4f5; display: inline-block; }
.pagelist a:nth-child(1) { display: none }
.pagelist a:hover, .pagelist > b { color: #FFF; background: #43add4; text-decoration: none; }
.pagelist > b { padding: 5px 10px; }
.weizhi { line-height: 50px; padding-left: 20px; color: #cfcfcf; font-size: 14px; text-overflow: ellipsis; white-space: nowrap; overflow: hidden; }
.weizhi span { color: #666; font-size: 13px; margin-left: 10px; }
.weizhi a { margin: 0 5px; color: #666; }
.tags li { background: #f5f8f9; border-radius: 6px; text-align: center; line-height: 36px; margin: 5px; display: inline-block;font-size: 14px; }
.tags li a { padding: 0 15px; display: block;}
.con_tit { margin: 20px; }
.con_tit h1 { font-size: 28px; color: #000; line-height: 40px; word-break: break-word; word-wrap: break-word; margin-bottom: 20px; }
span.con_tag { color: #81bd3e; letter-spacing: .44px; background-color: #f2f8eb; padding: 4px 8px; border-radius: 2px; display: inline-block; }
.con_info { font-size: 14px; color: #999; }
.con_info span { margin-right: 10px; }
span.con_class a { color: #484949; }
.content { font-size: 16px; line-height: 1.8; word-break: break-all; color: #262626; margin: 20px; }
.content p { margin: 20px 0; }
.content ul, .content ol { margin: 20px 0 20px 35px; }
.content ul li, .content ol li { margin-top: 3px; line-height: 30px; }
.content.content ul li { list-style-type: disc; }
.content ol li { list-style-type: decimal; }
.content h2, .content h3, .content h4, .content h5, .content h6 { position: relative; margin: 20px 0; line-height: 1.2; }
.content h2 { font-size: 22px; }
.content h3 { font-size: 20px; }
.content h4 { font-size: 18px; }
.content h5 { font-size: 17px; }
.content h6 { font-size: 16px; }
.content hr { width: 100%; height: 1px; border: 0; border-top: 1px #dedddd solid; margin: 30px 0; }
.content img { max-width: 100% !important; width: auto !important; height: auto !important; margin: 10px auto; }
.content video { height: auto !important; display: block; margin: auto; max-width: 100% !important; }
.content table { max-width: 100%; border-width: 1px; border-color: #666; border-collapse: collapse; font-size: 15px; line-height: 26px; }
.content table th { border-width: 1px; padding: 4px 8px; border-style: solid; border-color: #666; background-color: #dedede; }
.content table td { border-width: 1px; padding: 4px 8px; border-style: solid; border-color: #666; background-color: #ffffff; }
.content span.marker { background: yellow; }
.content blockquote { position: relative; padding: 30px 30px 30px 75px; background: #f3f3f3; border-left: 0; font-size: 16px; border-radius: 3px; margin: 20px 0; display: block; }
.content blockquote:before { content: ""; background: url(../images/yinhao.png) no-repeat; width: 37px; height: 32px; position: absolute; left: 26px; top: 16px; }
.con_tags { margin: 20px }
.con_tags a { color: #6f79a9; padding: 4px 13px 4px 30px; background: #f2f3f7; border-radius: 18px; margin: 0 10px 13px 0; position: relative; font-size: 14px; display: inline-block }
.con_tags a:before { position: absolute; content: "#"; background: #6f79a9; color: #fff; width: 20px; height: 20px; border-radius: 100%; text-align: center; left: 3px; top: 3px; }
.info-pre-next { font-size: 14px; color: #999; margin: 30px 20px; line-height: 30px; }
.info-pre-next a:hover { text-decoration: underline; }
.info-pre-next p { white-space: nowrap; text-overflow: ellipsis; overflow: hidden; }
.other_news { margin: 20px }
.blog_list.love_list .side_title { margin: 40px 0 10px 20px; }
.blog_list.love_list ul li:last-child { border: none; }
.tags_list { background: rgba(255,255,255,.6); border-radius: 10px; padding-bottom: 20px; }
/*mnav*/
#mnavh { display: none; width: 40px; height: 40px; text-align: center; }
.navicon { display: block; position: relative; width: 27px; height: 2px; background-color: #828282; margin-top: 20px; float: left; }
.navicon:before, .navicon:after { content: ''; display: block; width: 27px; height: 2px; position: absolute; background: #828282; -webkit-transition-property: margin, -webkit-transform; transition-property: margin, -webkit-transform; transition-property: margin, transform; transition-property: margin, transform, -webkit-transform; -webkit-transition-duration: 300ms; transition-duration: 300ms; }
.navicon:before { margin-top: -8px; }
.navicon:after { margin-top: 8px; }
.open .navicon { background: none }
.open .navicon:before { margin-top: 0; -webkit-transform: rotate(45deg); transform: rotate(45deg); }
.open .navicon:after { margin-top: 0; -webkit-transform: rotate(-45deg); transform: rotate(-45deg); }
.open .navicon:before, .open .navicon:after { content: ''; display: block; width: 28px; height: 2px; position: absolute; background: #828282; }
.tags_list .tags { padding: 20px; font-size: 14px; }

/* 日历样式
---------------------------------------------------*/
/* 日历的加载样式，防止翻页造成太大的视觉变化 */
.cal_loading {
	margin-bottom: 243px
}
#calendar {
	color: #212529
}
.calendartop {
	letter-spacing: 3px;
	width: 100%;
	text-align: center;
	margin-bottom: 10px;
	color: #000
}
.calendartop a {
	font-weight: 100 !important
}
.calendar {
	margin-bottom: -10px;
	width: 100%
}
.calendar td {
	text-align: center;
	padding: 1px 10px;
	line-height: 1.6
}
.calendar td a:link {
	color: #000;
	font-weight: bolder;    
	text-decoration: underline
}
.calendar td a:hover {
	color: #886353;
	text-decoration: none
}
.calendar tr {
	height: 40px
}
.day {
	color: #212529;
	background: #eaeaea;
	border-radius: var(--marRadius)
}
.sun {
	color: #333
}
.week {
	color: #333
}
hr {
    border: 0;
    border-top: 1px solid rgba(0,0,0,.1);
}
/* 「归档」的样式 
---------------------------------------------------*/
.archive {
    color: #929292;
    font-size: 16px;
    padding: 4px;
    border-color: #ced4da;
    margin-top: 20px;
    width: 70%;
}
/* 侧边栏组件中的文章分类 */
.log-classify-f {
	letter-spacing: 1px;
	font-size: 16px;
	font-weight: 400
}
.log-classify-c {
	margin-left: -27px;
	list-style: none;
	font-size: medium
}
/* 边栏组件的标题 */
.side-bar h3 {
	position: relative;
	font-size: 17px;
	font-weight: 600;
	margin-bottom: 20px
}
.log-classify-f li {
	position: relative;
	color: #6f6f6f;
	line-height: 2
}
/*分页*/
.pg, .pgb {
    line-height: 26px;
    margin-bottom: 10px;
    height: 35px;
}
.pg span {
    background-color: #E5EDF2;
    float: left;
    display: inline;
    margin-left: 4px;
    padding: 0 8px;
    height: 26px;
    border: 1px solid;
    border-color: #C2D5E3;
    background-repeat: no-repeat;
    color: #333;
    overflow: hidden;
    text-decoration: none;
    border-radius: 5px;
}
.pg a {
    float: left;
    display: inline;
    margin-left: 4px;
    padding: 0 8px;
    height: 26px;
    border: 1px solid;
    border-color: #C2D5E3;
    background-color: #FFF;
    background-repeat: no-repeat;
    color: #333;
    overflow: hidden;
    text-decoration: none;
    border-radius: 5px;
}

/* 评论样式
---------------------------------------------------*/
/* 发表评论表单样式 */
textarea {
    padding: 1rem 0.75rem;
}

@media (min-width:768px)  {
	.commentform {
		height: 250px
	}
}
#comments {
	margin-top: 80px;
}
.comment-name {
	float: left;
	border-bottom-left-radius: 10px !important
}
.comment-mail {
	float: left
}
.comment-url {
	border-right: 1px #d6d6d6 solid !important;
	border-bottom-right-radius: 10px !important
}
.form-controls {
	display: block;
	height: calc(1.5em + 0.75rem + 2px);
	padding: 0.375rem 0.75rem;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: #495057;
	background-color: #fff;
	background-clip: padding-box;
	border: 1px solid #ced4da;
	border-radius: 0.25rem;
	transition: border-color 0.15s ease-out, box-shadow 0.15s ease-in-out
}
.comment-info {
	width: auto
}
.com_control {
	display: block;
	border-radius: 0px;
	border: 1px #d6d6d6 solid;
	border-right: 0px;
	height: 50px
} 

/* 评论处的输入框提示，居中、隐藏 */
.com_control:focus::-webkit-input-placeholder{
	color: rgba(255, 255, 255, 0)
} 
.com_control::-webkit-input-placeholder {
	color: rgba(116, 116, 116, 0.336)
}
@media (min-width:578px) {
	.com_control::-webkit-input-placeholder {
		text-align: center
	}
}
.comment-header {
	margin-block: 30px;
	height: 0
}
.comment-post {
	clear: both
}
.comment-post p {
	margin: 5px 0px
}
.comment-post .cancel-reply {
	float: right;
	cursor: pointer;
	padding-right: 10%
}
.comment-post .cancel-reply:hover {
	text-decoration: underline
}
.comment-post small {
	font-size: 12px;
	color: #999
}
.comment-post input {
	padding: 7px 40px;
	font-size: small;
	color: #848797;
	width: 33.3333334%
}
.comment-post #comment {
	width: 95%;
	border: 1px #d6d6d6 solid;
	font-size: small;
	border-radius: var(--marRadius) 10px 0 0;
	height: 130px;
	resize: none
}
.comment-post #comment_submit {
	width: 84px;
	height: 35px;
	text-align: center;
	font-size: 14px;
	margin: 10px 0px;
	float: right;
	margin-right: 1px;
	border-radius: 8px;
	border: 1px solid #dedede;
	padding: 7px 10px;
	justify-content: center
}
.comment-post #comment_submit:hover {
	cursor: pointer;
	color: #fff;
	background-color: #007bff
}
.comment-post .input {
	width: 100px
}
.comment {
	margin: 10px 0;
	padding: 10px 0px;
	font-size: medium;
	border-bottom: 1px #f7f7f7 solid;
	overflow: hidden;
	color: #333
}
.comment span {
	color: #ff7a15
}
.comment .comment-time {
	color: #999999;
	display: inline;
	font-size: 10px
}
.comment .avatar {
	float: left;
	margin: 5px 4px
}
.comment .comment-infos {
	background: #f7f7f7;
	padding: 12px;
	padding-bottom: 5px;
	border-radius: var(--marRadius);
	margin-top: 9px;
	margin-left: 58px
}
.comment .comment-infos-unGravatar {
	padding: 5px
}
.com-bottom {
	margin-bottom: 80px;
}
/* 评论列表中指向评论者头像的箭头 */
.arrow {
	position: absolute;
	margin-top: 3px;
	margin-left: -34px;
	border-width: 13px;
	border-style: solid;
	border-color: transparent #f7f7f7 transparent transparent
}
.comment .comment-content {
	margin: 8px 0px 0px 0px;
	word-break: break-word
}
.comment .comment-reply {
	float: right;
	font-size: 12px;
	cursor: pointer;
	margin-top: -15px
}
.comment .comment-reply:hover {
	text-decoration: underline
}
.comment-children {
	margin: 20px 10px 10px 20px;
	clear: both;
	border: none;
	padding: 0
}
.comment .comment-post {
	width: 90%;
	margin: 15px auto
}
.comment-info {
	text-overflow: ellipsis;
	overflow: hidden;
	margin-top: -8px;
	white-space: nowrap
}

/* 友情链接相关样式 */
.links-section {
	width: 100%;
	max-width: 1200px;
	margin: 10px auto 10px !important;
	box-sizing: border-box;
}

.links-section > div {
	background: rgba(255,255,255,.8);
	border-radius: 10px;
	padding: 25px;
}

.links-section > div > div {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}

.links-section a {
	display: flex;
	align-items: center;
	padding: 10px 15px;
	background: #fff;
	border-radius: 6px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
	border: 1px solid #eee;
	text-decoration: none;
	width: auto;
	flex: 0 0 auto;
	min-width: auto;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.links-section a img {
	width: 32px;
	height: 32px;
	margin-right: 12px;
}

.links-section a span:first-of-type {
	color: #333;
	font-size: 14px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.links-section a span:last-child {
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: rgba(66, 133, 244, 0.1);
	transition: all 0.4s ease;
}

/* 友情链接悬停动画 */
.links-section a:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	border-color: #4285f4;
}

.links-section a:hover span:last-child {
	left: 0;
}

.links-section .no-links {
	width: 100%;
	text-align: center;
	padding: 30px;
	color: #999;
}

/* 友情链接响应式设计 */
@media (max-width: 1240px) {
	.links-section {
		max-width: 100%;
	}
}

@media (max-width: 768px) {
	.links-section > div {
		padding: 20px 15px;
	}
}

@media (max-width: 480px) {
	.links-section a {
		width: 100%;
		min-width: auto;
	}
}

/*底部页脚徽章CSS样式*/
.github-badge {
  display: inline-block;
  border-radius: 4px;
  text-shadow: none;
  font-size: 12px;
  color: #fff;
  line-height: 15px;
  background-color: #abbac3;
  margin-bottom: 5px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.github-badge::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
}

.github-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-color: #4285f4;
}

.github-badge:hover::after {
  left: 0;
}
.github-badge .badge-subject {
  display: inline-block;
  background-color: #ffa500;
  padding: 4px 4px 4px 6px;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px
}
.github-badge .badge-value {
  display: inline-block;
  padding: 4px 6px 4px 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px
}
.github-badge .bg-fen {
  background-color: #e76dcb
}
.github-badge .bg-red {
  background-color: #f55066
}
.github-badge .bg-green {
  background-color: #3bca6e
}
.github-badge .bg-bei {
  background-color: #32CD32
}

.github-badge .bg-cai {
    background-image: -webkit-linear-gradient(
0deg, #3ca5f6 0%, #a86af9 100%);
}

/* 社交关注图标样式 */
.social-icons {
    display: block;
    text-align: center;
    margin: 0;
}
.social-icon {
    display: inline-block;
    margin: 0 8px;
    opacity: 0.8;
    transition: opacity 0.3s;
    position: relative;
}
.social-icon:hover {
    opacity: 1;
}
.social-icon img {
    vertical-align: middle;
}
/* 公众号二维码样式 */
.wechat-icon {
    cursor: pointer;
}
.qrcode-popup {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 10px;
    padding: 10px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    display: none;
    z-index: 1000;
}
.wechat-icon:hover .qrcode-popup {
    display: block;
}
.qrcode-popup img {
    display: block;
}
/* 添加三角形指示器 */
.qrcode-popup::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: white transparent transparent transparent;
}

/* 案例卡片网格布局 - 统一案例样式 */
.case-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
    margin-top: 20px;
}

/* 案例卡片基础样式 - 固定宽度和高度 */
.case-card {
    background-color: white;
    border: 1px solid #e1e5eb;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    width: 220px;
    height: 400px;
    flex-shrink: 0;
}

.case-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border-color: #306af1;
}

/* 案例链接 */
.case-link {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
    height: 100%;
}

/* 案例内容 - 确保内容适合固定高度 */
.case-content {
    padding: 12px 8px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

/* 会员标签 */
.member-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background-color: #ff4757;
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 1;
}

.member-badge i {
    font-size: 14px;
}

/* 图片容器 */
.case-image-container {
    width: 100%;
    aspect-ratio: 16 / 12;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 16px;
    position: relative;
}

/* 图片样式 */
.case-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.case-card:hover .case-image {
    transform: scale(1.05);
}

/* 图片占位符 */
.case-image-placeholder {
    width: 100%;
    height: 100%;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 48px;
}

/* 平台信息 */
.platform-info {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.platform-info i {
    font-size: 24px;
}

.platform-name {
    font-size: 14px;
    font-weight: 500;
    color: #666;
}

/* 案例标题 */
.case-title-text {
    font-size: 14px;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 核心数据 */
.case-data {
    margin-bottom: 16px;
}

.data-value {
    font-size: 24px;
    font-weight: 700;
}

.data-unit {
    font-size: 16px;
    font-weight: 500;
    margin-left: 2px;
}

.data-type {
    font-size: 14px;
    margin-left: 8px;
    opacity: 0.8;
}

/* 辅助信息 */
.case-secondary-info {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    color: #666;
}

.info-item i {
    font-size: 16px;
    color: #999;
}

.info-item.tutorial {
    color: #1890ff;
}

.info-item.tutorial i {
    color: #1890ff;
}

/* 标签系统 */
.case-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 8px;
}

.case-tag {
    background-color: #f5f5f5;
    color: #666;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 12px;
}

/* 空状态 */
.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 64px 24px;
    color: #999;
}

.empty-icon {
    font-size: 64px;
    margin-bottom: 16px;
    color: #e1e5eb;
}

/* 分页样式 */
.pagination {
    margin-top: 48px;
    text-align: center;
    clear: both;
}

/* 核心分页组件 */
.pagination-card {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    max-width: 600px;
    margin: 24px auto;
}

/* 页码指示器 */
.page-numbers {
    display: flex;
    align-items: center;
    gap: 8px;
}

.page-numbers a,
.page-numbers span {
    width: 40px;
    height: 40px;
    background-color: transparent;
    border: none;
    border-radius: 50%;
    color: #6b7280;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.page-numbers a:hover {
    color: #ffffff;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.3);
    transform: scale(1.15);
    z-index: 1;
    text-decoration: none !important;
}

.page-numbers span {
    background-color: #3b82f6;
    color: #ffffff;
    transform: scale(1.1);
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2), 0 4px 12px rgba(59, 130, 246, 0.25);
    animation: pulse 2s infinite;
    cursor: default;
}

.page-numbers a:active {
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

/* 脉冲动画关键帧 */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2), 0 4px 12px rgba(59, 130, 246, 0.25);
    }
    50% {
        box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15), 0 4px 12px rgba(59, 130, 246, 0.25);
    }
    100% {
        box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2), 0 4px 12px rgba(59, 130, 246, 0.25);
    }
}

/* 响应式设计 */
@media (min-width: 992px) and (max-width: 1199px) {
    .case-grid {
        justify-content: flex-start;
        padding: 0 10px;
    }
    
    .case-card {
        width: calc(25% - 12px);
        height: 400px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .case-grid {
        justify-content: flex-start;
        padding: 0 10px;
    }
    
    .case-card {
        width: calc(33.333% - 11px);
        height: 400px;
    }
}

@media (min-width: 480px) and (max-width: 767px) {
    .case-grid {
        justify-content: flex-start;
        padding: 0 10px;
    }
    
    .case-card {
        width: calc(50% - 8px);
        height: 400px;
    }
}

@media (max-width: 479px) {
    .case-grid {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        padding: 0;
    }
    
    .case-card {
        width: 100%;
        max-width: 320px;
        height: 400px;
    }
    
    .case-content {
        padding: 12px;
    }
    
    .case-title-text {
        font-size: 16px;
    }
    
    .data-value {
        font-size: 20px;
    }
}

/* 底部横条样式 - 增强可见度，左侧添加图片 */
.footwaveline {
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  width: 90%; /* 跟随友情链接容器宽度 */
  max-width: 1200px; /* 设置最大宽度 */
  height: 40px;
  background-color: rgba(255, 255, 255, 0.2); /* 增加透明度使其更易看清 */
  border: 1px solid rgba(255, 255, 255, 0.3); /* 增强边框颜色 */
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* 左侧对齐，不再使用两端对齐 */
  z-index: 9999;
  transition: all 0.3s ease;
  padding-right: 20px; /* 保留右侧内边距 */
  padding-left: 80px; /* 左侧留出空间，为音乐图标和交互效果准备 */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* 增加轻微阴影提升可见度 */
  overflow: visible;
  transition: all 0.3s ease; /* 添加过渡效果，用于hover时的缩放动画 */
}

/* 为底部横条添加动画的类 - 通过JavaScript控制开关 */
.footwaveline.animate {
  animation: colorfulGlow 5s ease-in-out infinite; /* 减慢动画速度至5秒 */
}

/* 音频可视化canvas样式 */
#visualizer-canvas {
  display: inline-block;
  vertical-align: middle;
  opacity: 0.8;
  margin: 0 5px;
  border-radius: 4px;
  max-width: calc(100% - 120px);
  transition: opacity 0.3s ease;
}

#visualizer-canvas:hover {
  opacity: 1;
}

/* 左侧图片样式 - 在横条内显示，增大尺寸并调整位置向上，左侧不超过圆角范围，下方留出1/3空间，添加脉冲式多色发光效果 */
.footwaveline::before {
  content: '';
  position: absolute;
  left: 30px; /* 确保左侧不超过横条圆角范围 */
  top: -40px; /* 图片网上调至-40px */
  width: 72px; /* 尺寸调大一倍 */
  height: 72px; /* 尺寸调大一倍 */
  background-image: url('../images/sheguan/cn121.png'); /* 图片路径 */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent; /* 确保PNG图片透明背景能正确显示 */
  z-index: 10000;
  animation: colorfulGlow 5s ease-in-out infinite; /* 减慢动画速度至5秒 */
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.6s ease, opacity 0.6s ease;
  transform-origin: left top;
}

/* 脉冲式多色发光动画 - 减小发光范围并确保保持圆形效果 */
@keyframes colorfulGlow {
  0% {
    filter: drop-shadow(0 0 6px rgba(255, 0, 0, 0.7)); /* 红色发光 - 减小范围 */
  }
  33% {
    filter: drop-shadow(0 0 8px rgba(0, 191, 255, 0.7)); /* 天蓝色发光 - 减小范围 */
  }
  66% {
    filter: drop-shadow(0 0 10px rgba(255, 0, 255, 0.7)); /* 紫色发光 - 减小范围 */
  }
  100% {
    filter: drop-shadow(0 0 6px rgba(255, 0, 0, 0.7)); /* 回到红色发光 - 减小范围 */
  }
}

/* 音乐图标样式 */
.music-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px; /* 保持与音乐图标的间距为半个图标宽度 */
  margin-left: 48px; /* 调整为48px，与cn121.png保持指定间距 */
  text-decoration: none;
  z-index: 10001;
  vertical-align: middle;
  cursor: pointer;
}

/* 为第二个音乐图标添加特定的左边距，确保与第一个图标之间有适当间距 */
.music-icon + .music-name-container + .music-icon {
  margin-left: 12px; /* 确保两个音乐图标之间有12px的间距 */
}

/* 音乐图标间距规则 */
.music-icon:not(:last-child) {
    margin-right: 12px;
}

/* 音乐图标图片样式 */
.music-icon img {
  width: 24px;
  height: 24px;
  transition: all 0.3s ease;
}

/* 音乐播放器容器样式 */
.music-player-container {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
    z-index: 10000;
}

/* 音乐播放器主体样式 - 与底部横条同款颜色 */
.music-player {
    background: rgba(255, 255, 255, 0.2);
    height: 80px;
    border-radius: 8px 8px 0 0;
    display: flex;
    align-items: center;
    padding: 0 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-bottom: none;
    animation: colorfulGlow 5s ease-in-out infinite;
}

/* 黑胶唱片图标样式 */
.vinyl-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #000 url('../images/heijiao.webp') center center no-repeat;
    background-size: cover;
    position: relative;
    margin-right: 20px;
    transition: transform 0.3s ease;
}

.vinyl-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fff;
}

.vinyl-spin {
    animation: spin 4s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* 播放指示器样式 */
.play-indicator {
    position: absolute;
    top: 20px;
    left: 80px;
    width: 8px;
    height: 20px;
    background: #1db954;
    border-radius: 2px;
    transform-origin: bottom;
    transition: height 0.2s ease;
}

/* 歌曲信息样式 */
.info {
    flex: 1;
    color: #fff;
    margin-right: 20px;
}

.info h2 {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
}

.info p {
    margin: 2px 0 0 0;
    font-size: 12px;
    color: #ccc;
    background: linear-gradient(90deg, rgba(255, 0, 0, 0.7), rgba(0, 191, 255, 0.7), rgba(255, 0, 255, 0.7));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    cursor: pointer;
    transition: all 0.3s ease;
}

.info p:hover {
    animation: colorfulGlow 3s ease-in-out infinite;
    transform: scale(1.05);
}

/* 播放器固定显示状态 */
.music-player-container.fixed {
    height: 80px !important;
    transition: none;
}

/* 固定时的额外样式 */
.music-player-container.fixed .music-player {
    box-shadow: 0 -2px 20px rgba(255, 0, 0, 0.3), 0 -2px 20px rgba(0, 191, 255, 0.3);
}

/* 进度条部分样式 */
.progress-section {
    flex: 2;
    margin-right: 20px;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: #444;
    border-radius: 2px;
    position: relative;
    cursor: pointer;
}

.progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 40%;
    background: linear-gradient(90deg, rgba(255, 0, 0, 0.7), rgba(0, 191, 255, 0.7), rgba(255, 0, 255, 0.7));
    border-radius: 2px;
    transition: width 0.1s linear;
    background-size: 300% 100%;
    animation: gradientMove 5s ease infinite;
}

/* 移除时间显示后的进度条区域样式 */
.progress-section {
    flex: 2;
    margin-right: 20px;
    margin-top: 5px; /* 调整垂直位置 */
}

/* 音量控制已移除 */

/* 控制按钮样式 */
.controls {
    display: flex;
    align-items: center;
}

.control-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 16px;
    margin: 0 5px;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: background-color 0.2s ease;
}

.control-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.control-btn.play {
    background: rgba(255, 255, 255, 0.4);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    animation: colorfulGlow 5s ease-in-out infinite;
}

.control-btn.play:hover {
    background: #1ed760;
}

/* 音乐图标悬停动画 */
.music-icon:hover img {
  transform: scale(1.2) rotate(5deg);
  animation: subtleBounce 1.5s ease-in-out infinite;
}

/* 轻微弹跳动画 */
@keyframes subtleBounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0) scale(1.2);
  }
  40% {
    transform: translateY(-3px) scale(1.2);
  }
  60% {
    transform: translateY(-2px) scale(1.2);
  }
}

/* 渐变移动动画 */
@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* 图标名称样式 */
.icon-name {
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%) translateX(-10px);
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: 10002;
}

/* JavaScript控制的动画效果 */
.footwaveline.shrink-logo::before {
  transform: scale(0.333) translate(0, 60px); /* 缩小并下移到横条内 */
  transform-origin: left top;
  filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.6));
  animation: none;
}

.footwaveline .icon-name.show {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* 音乐名称容器样式 - 由JavaScript控制显示/隐藏 */
.music-name-container {
  position: absolute;
  left: 45px; /* 初始位置靠左一点 */
  top: 50%;
  transform: translateY(-50%) translateX(-10px);
  opacity: 0;
  display: none;
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 10001;
  pointer-events: auto;
}

/* 当容器显示时的样式 */
.music-name-container[style*="display: block"] {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* 音乐名称样式 */
.music-name {
  background-color: rgba(0, 0, 0, 0.85);
  color: white;
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 12px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
}

/* 当图片缩小时显示音乐名称 */
.footwaveline.shrink-logo .music-name-container {
  left: 60px;
  transform: translateY(-50%) translateX(0);
  /* 移除opacity:1，让JavaScript控制显示哪个名称 */
}

/* 音乐图标悬停时增强效果 */
.music-icon:hover .music-name {
  background-color: rgba(22, 93, 255, 0.9);
  transform: scale(1.05);
}

/* 百分比按钮样式 - 完整圆形设计 */
#percentage {
  position: absolute; /* 使用绝对定位 */
  right: 0; /* 调整到横条最右侧 */
  top: 50%;
  transform: translateY(-50%); /* 垂直居中 */
  z-index: 10002; /* 确保在最上层 */
  width: 44px; /* 增加尺寸使圆形更明显 */
  height: 44px; /* 宽高相等确保圆形 */
  background-color: #165DFF;
  color: white;
  border-radius: 50%; /* 设置为完整圆形 */
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(22, 93, 255, 0.3);
  overflow: visible; /* 确保圆形完整显示 */
}

/* 悬停效果 */
#percentage:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 15px rgba(22, 93, 255, 0.4);
}

/* 响应式设计 - 确保在小屏幕设备上圆形按钮也能正确显示 */
@media (max-width: 768px) {
  #percentage {
    width: 40px; /* 小屏幕上适当减小按钮尺寸 */
    height: 40px;
    right: 0; /* 保持在横条最右侧 */
    font-size: 13px; /* 减小字体大小 */
  }
}

@media (max-width: 480px) {
  #percentage {
    width: 36px; /* 移动设备上进一步减小尺寸 */
    height: 36px;
    right: 0; /* 保持在横条最右侧 */
    font-size: 12px; /* 进一步减小字体大小 */
  }
}

.bottom-space {
  height: 200px; /* 设置所需空白高度 */
  visibility: hidden; /* 元素不可见但保留占位空间 */
  background: transparent; /* 确保完全透明 */
  border: none; /* 移除可能的边框 */
}

/* 评论显示样式 */
.comment-scroll {
    display: inline-block;
    width: auto;
    max-width: none;
    vertical-align: baseline;
    white-space: normal;
    color: #333 !important;
    font-size: 12px;
    line-height: 1.4;
    font-weight: 600;
    opacity: 1 !important;
    padding: 6px 8px;
    background: transparent;
    border-radius: 0;
    text-decoration: none;
    position: relative;
    margin-left: 0;
    overflow: visible;
    /* 确保文本不被截断 */
    text-overflow: clip;
    bottom: -2px; /* 将评论区位置略微下移 */
}
.comment-scroll:hover {
    cursor: pointer;
    color: #0779a3 !important;
    text-decoration: none;
}
/* 响应式调整 */
@media (max-width: 768px) {
    .comment-scroll {
        max-width: none;
        width: auto;
        /* 在小屏幕上也不限制显示长度 */
    }
}

/* 鼠标指针美化样式 */
/* 确保高优先级应用自定义光标 */
html, body {
    cursor: url('../images/pointer.png'), auto !important;
}

/* 为所有元素应用自定义光标 */
* {
    cursor: url('../images/pointer.png'), auto !important;
}

/* 为交互元素设置特定的光标样式 */
a, button, input[type="button"], input[type="submit"], input[type="reset"], .btn {
    cursor: url('../images/pointer.png'), pointer !important;
}

/* 为输入框设置文本输入光标 */
input[type="text"], input[type="email"], input[type="password"], textarea, select {
    cursor: url('../images/pointer.png'), text !important;
}

/* 确保在各种状态下光标一致 */
a:hover, button:hover, input:hover {
    cursor: url('../images/pointer.png'), pointer !important;
}

/* 点击飘动文字效果样式 */
.cxyax-click-effect {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    animation-duration: 1.5s;
    animation-fill-mode: both;
}

@keyframes floatText {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(-50px);
        opacity: 0;
    }
}

.cxyax-text {
    font-size: 16px;
    font-weight: bold;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.2);
    animation: floatText 1.5s ease-out;
}


/* 浏览器滚动条*/
::-webkit-scrollbar {
  width: 20px;
  height: 12px;
}

::-webkit-scrollbar-thumb {
  background-color: #E95430;
  border-radius: 12px;        
  background-image: -webkit-linear-gradient(
    45deg, 
    #343F50 25%, 
    transparent 25%, 
    transparent 50%, 
    #343F50 50%, 
    #343F50 75%, 
    transparent 75%, 
    transparent
  );
  border: 3px solid transparent;
  background-clip: content-box;
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  background: #f6f6f6; 
  border-radius: 12px; 
}