/**
 +------------------------------------------------------------------------------
 * 网站样式重写
 +------------------------------------------------------------------------------
 */

html {
  -webkit-text-size-adjust: none;
  /*解决chrome浏览器下字体不能小于12px*/
  font-size: 62.5%;
  overflow-x: hidden;
}

body {
  font-size: 1.4rem;
  color: #333;
  font-family: "PingFang SC", Helvetica, Arial, sans-serif;
  font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -moz-font-smoothing: antialiased;
  overflow-x: hidden;
}

*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  zoom: 1;
}

html * {
  outline: 0;
  zoom: 1;
}

html button::-moz-focus-inner {
  border-color: transparent !important;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

fieldset,
a img {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
th,
var {
  font-style: normal;
  font-weight: normal;
}

li {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: 500;
  color: #4e5255;
}

q:before,
q:after {
  content: "";
}

input[type="submit"],
input[type="reset"],
input[type="button"],
button {
  -webkit-appearance: none;
  /*去掉苹果的默认UI来渲染按钮*/
}

em,
i {
  font-style: normal;
}

.input:after {
  clear: both;
  content: "";
  display: block;
  height: 0;
  visibility: hidden;
}

em,
i {
  font-style: normal;
}

a {
  margin: 0;
  padding: 0;
  background: 0 0;
  color: #4e5255;
  vertical-align: baseline;
  text-decoration: none;
  outline: none;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

a:link {
  text-decoration: none;
}

a:visited {
  text-decoration: none;
}

a:hover {
  color: #1c95a8;
  text-decoration: none;
}

a:active {
  text-decoration: none;
}

a:focus,
input:focus {
  outline: none;
}

img {
  max-width: 100%;
}

.circle {
  -webkit-border-radius: 100%;
  border-radius: 100%;
}

.artPost img {
  -webkit-border-radius: 5px;
  border-radius: 5px;
  max-width: 300px;
}

.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.clearfix {
  display: block;
}

.clear {
  clear: both;
}

/* 清除浮动*/

.colwrapper {
  overflow: hidden;
  zoom: 1 /*for ie*/;
  margin: 5px auto;
}

/* 高度自适应 */

.strong {
  font-weight: bold;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

.center {
  margin: 0 auto;
  text-align: center;
}

.show {
  display: block;
  visibility: visible;
}

.hide {
  display: none;
  visibility: hidden;
}

.block {
  display: block;
}

.inline {
  display: inline;
}

.op {
  -moz-opacity: 0.5;
  -khtml-opacity: 0.5;
  opacity: 0.5;
}

.break {
  word-wrap: break-word;
  overflow: hidden;
  /*word-break:break-all;*/
}

.tl {
  text-align: left;
}

.tr {
  text-align: right;
}

a {
  outline: medium none;
}

:focus {
  outline: 0;
}

a,
div {
  -moz-tap-highlight-color: transparent;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  tap-highlight-color: transparent;
}

/*文字两侧对齐*/

.justify {
  text-align: justify;
  text-justify: distribute-all-lines;
  text-align-last: justify;
  -moz-text-align-last: justify;
  -webkit-text-align-last: justify;
}

/*超出省略号*/

.tn {
  word-break: keep-all;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.container:before,
.container:after,
.warp:after,
.main:before,
.main:after,
.orw:before,
.orw:after,
.artWarp:after,
.artWarp:before {
  content: "";
  display: block;
  height: 0;
  overflow: hidden;
}

.container:after,
.main:after,
.orw:after,
.artWarp:after {
  clear: both;
}

.container {
  max-width: 1240px;

  margin: 0 auto;
  position: relative;
  clear: both;
}

.warp {
  margin-top: 0px;
  overflow: hidden;
}

*,
:after,
:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

::-moz-placeholder {
  color: #888;
}

::-webkit-input-placeholder {
  color: #888;
}

::-ms-input-placeholder {
  color: #888;
}

body {
  max-width: 900px !important;
}
.global-header {
  background-color: #fff;
  display: flex;
  align-items: center;
  line-height: 56px;
  list-style: none;
  flex-wrap: wrap; /* 允许换行 */
  position: relative;
}

.global-header dt {
  flex: 1; /* dt占据一部分空间 */
}

.global-header dd.global-nav ul {
  display: flex;
  flex-wrap: nowrap; /* 确保导航项不会换行 */
  overflow-x: auto; /* 超出部分可以滚动 */
  white-space: nowrap; /* 防止内容换行 */
}

.global-header dd.global-nav a {
  padding: 0 5px;
  font-size: 18px;
  color: #222;
  font-weight: 500;
}
.global-header dd.global-nav .current-menu-item a {
  color: #1e87f0;
}

.global-header h1,
.global-header a {
  font-size: 18px;
}

.global-header h1 a,
.global-header a {
  color: #222;
  font-weight: 600;
}

.module-1 {
  background-color: #fff;
  border-radius: 8px;
  margin: 12px 0;
  border: 1px solid #eee;
  padding: 15px;
}
.module-1 dt {
  display: flex;
  border-bottom: 1px #f0f3f6 solid;
  padding-bottom: 15px;
}
.module-1 dt.bg {
  background: #f25f5c;
  border: 0;
  display: inherit;
  text-align: center;
  align-items: center;
  padding: 64px 32px;
  border-radius: 6px;
}

.module-1 h1,
.module-1 h2,
.module-1 h3,
.module-1 h4 {
  font-size: 18px;
  line-height: 18px;
  font-weight: 600;
  position: relative;
  flex: 1;
}
.module-1 dt.bg span {
  color: #fff;
  font-weight: normal;
  padding-top: 10px;
}
.module-1 dt.bg h1,
.module-1 dt.bg h2,
.module-1 dt.bg h3,
.module-1 dt.bg h4 {
  font-size: 28px;
  line-height: 28px;
  font-weight: 600;
  color: #fff;
  position: relative;
  flex: 1;
}
/* .module-1 h2:nth-child(1){
  color: #1e90ff;
} */
.module-1 a.more {
  color: #999;
  font-weight: normal;
  font-size: 14px;
}
.module-1 a.more::after {
  content: ">";
  padding-left: 5px;
}
.module-1 dd ul li {
  display: flex;
  align-items: center;
  border-bottom: 1px dashed #eee;
  padding: 15px 0;
}
.module-1 dd ul li:last-child {
  border: none;
  padding-bottom: 0;
  margin: 0;
}
.module-1 ul li a {
  display: block;
  flex: 1;
  font-size: 16px;
  font-weight: 700;
  color: #1e87f0;
}
.module-1 dd ul li h2 span {
  color: #31c27c;
  font-weight: normal;
}
.module-1 dd ul li h2 span::before {
  content: "-";
  padding-right: 10px;
}
.module-1 dd ul li span {
  color: #999;
  display: inline-block;
  margin-left: 10px;
  font-size: 13px;
}
.module-1 dd ul li em.author {
  color: #999;
  font-weight: normal;
  display: inline-block;
  margin-left: 10px;
  font-size: 13px;
}
.module-1 dd ul li em.author::before {
  content: "-";
  padding-right: 10px;
}
.module-1 dt h1 {
  padding-bottom: 10px;
}
.module-1 dt form {
  display: flex;
}
.module-1 dt input {
  flex: 1;
  padding: 10px 0 10px 15px;
  margin: 10px 0;
  border: none;
  border-radius: 8px 0 0px 8px;
}
.module-1 dt button {
  background-color: #ffdc00;
  border: none;
  padding: 10px 15px;
  margin: 10px 0;
  border-radius: 0px 8px 8px 0px;
}
.module-2 {
  background-color: #fff;
  border-radius: 8px;
  margin: 12px 0;
  border: 1px solid #eee;
  padding: 15px;
}
.module-2 h2 {
  font-size: 18px;
  line-height: 18px;
  font-weight: 600;
  border-bottom: 1px #f0f3f6 solid;
  position: relative;
  padding-bottom: 15px;
  color: #ff5722;
  text-shadow: 0 0 1px #ffeb3b;
}

.module-2 dt {
  margin-bottom: 15px;
}
.module-2 dd a {
  font-size: 16px;
  line-height: 32px;
  padding: 0px 10px;
}
.module-3 {
  background-color: #fff;
  border-radius: 8px;
  margin: 12px 0;
  border: 1px solid #eee;
  padding: 15px;
}
.module-3 h2 {
  font-size: 18px;
  line-height: 18px;
  font-weight: 600;
  border-bottom: 1px #f0f3f6 solid;
  position: relative;
  padding-bottom: 15px;
}

.module-3 dt {
  margin-bottom: 15px;
}
.module-3 dd a {
  font-size: 16px;
  line-height: 32px;
  padding: 0px 10px;
}
.module-3 dd a:last-child {
  padding: 0;
}
.module-4 {
  display: flex;
  margin-right: -15px;
}
.module-4 h2 {
  font-size: 18px;
  line-height: 18px;
  font-weight: 600;
  border-bottom: 1px #f0f3f6 solid;
  position: relative;
  padding-bottom: 15px;
}
.module-4 dd {
  flex: auto;
  margin: 0px 15px 0 0;
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 15px;
}
.module-4 dd ul li {
  padding: 10px 0;
  font-size: 15px;
  color: #303133;
  margin-bottom: 6px;
  border-bottom: dotted 1px #eee;
}
.module-4 dd ul li:last-child {
  border: none;
  padding-bottom: 0;
}
.module-4 dd ul li .num {
  font-size: 12px;
  display: inline-block;
  width: 20px;
  text-align: center;
  line-height: 20px;
  background: #eee;
  color: #909399;
  border-radius: 4px;
  margin-right: 10px;
}

.module-4 dd ul li:nth-child(1) .num {
  background: #008ee1;
  color: #fff;
}

.module-4 dd ul li:nth-child(2) .num {
  background: #5fb9ff;
  color: #fff;
}

.module-4 dd ul li:nth-child(3) .num {
  background: #b0ddff;
  color: #fff;
}

.module-4 dd ul li em {
  color: #31c27c;
  font-weight: normal;
  display: inline-block;
  margin-left: 10px;
  font-size: 13px;
}
.module-4 dd ul li em::before {
  content: "-";
  padding-right: 10px;
}
.module-5 {
  background-color: #fff;
  border-radius: 8px;
  margin: 12px 0;
  border: 1px solid #eee;
  padding: 15px;
}
.module-5 dt {
  display: flex;
  border-bottom: 1px #f0f3f6 solid;
  padding-bottom: 15px;
}
.module-5 h1,
.module-5 h2,
.module-5 h3,
.module-5 h4 {
  font-size: 18px;
  line-height: 18px;
  font-weight: 600;
  position: relative;
  flex: 1;
}
.module-5 dd ul {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.module-5 dd ul li {
  width: calc(25% - 12px);
  position: relative;
  overflow: hidden;
  border-bottom: 1px dashed #eee;
  border-radius: 4px;

  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.module-5 dd ul li:last-child {
  border-bottom: none;
}

.module-5 dd ul li::before {
  content: "";
  display: block;
  padding-top: 150%;
}
.module-5 dd ul li > * {
  position: absolute;
  inset: 0;
}

.module-5 dd ul li a {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}
.module-5 dd ul li a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.module-5 dd ul li em {
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px 15px 0 15px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4), transparent);
  color: #fff;
  font-size: 16px;
  box-sizing: border-box;

  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  position: absolute;
}
.module-5 dd ul li span {
  bottom: 15px;
  left: 50%;
  transform: translate(-50%, 20px);
  background-color: #f90;
  color: #fff;
  font-weight: normal;
  padding: 10px 15px;
  border-radius: 8px;
  z-index: 9999;

  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  position: absolute;
}
.module-5 dd ul li:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

.module-5 dd ul li:hover em {
  opacity: 1;
  transform: translateY(0);
}
.module-5 dd ul li:hover span {
  opacity: 1;
  transform: translate(-50%, 0);
}
.module-5 dd ul li:hover::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4), transparent);
}
/* 音乐开始 */
.module-6 {
  background-color: #fff;
  border-radius: 8px;
  margin: 12px 0;
  border: 1px solid #eee;
  padding: 15px;
}
.module-6 dt {
  display: flex;
  border-bottom: 1px #f0f3f6 solid;
  padding-bottom: 15px;
}
.module-6 dt.bg {
  background: #f25f5c;
  border: 0;
  display: inherit;
  text-align: center;
  align-items: center;
  padding: 64px 32px;
  border-radius: 6px;
}

.module-6 h1,
.module-6 h2,
.module-6 h3,
.module-6 h4 {
  font-size: 18px;
  line-height: 18px;
  font-weight: 600;
  position: relative;
  flex: 1;
}
.module-6 dt.bg span {
  color: #fff;
  font-weight: normal;
  padding-top: 10px;
}
.module-6 dt.bg h1,
.module-6 dt.bg h2,
.module-6 dt.bg h3,
.module-6 dt.bg h4 {
  font-size: 28px;
  line-height: 28px;
  font-weight: 600;
  color: #fff;
  position: relative;
  flex: 1;
}
/* .module-6 h2:nth-child(1){
  color: #1e90ff;
} */
.module-6 a.more {
  color: #999;
  font-weight: normal;
  font-size: 14px;
}
.module-6 a.more::after {
  content: ">";
  padding-left: 5px;
}
.module-6 dd ul li {
  display: flex;
  align-items: center;
  border-bottom: 1px dashed #eee;
  padding: 15px 0;
}
.module-6 dd ul li:last-child {
  border: none;
  padding-bottom: 0;
  margin: 0;
}
.module-6 ul li a {
  display: block;
  flex: 1;
  font-size: 16px;
  font-weight: 700;
  color: #1e87f0;
}
.module-6 dd ul li h2 span {
  color: #31c27c;
  font-weight: normal;
}
.module-6 dd ul li h2 span::before {
  content: "-";
  padding-right: 10px;
}
.module-6 dd ul li span {
  color: #999;
  display: inline-block;
  margin-left: 10px;
  font-size: 13px;
}
.module-6 dd ul li em.author {
  color: #999;
  font-weight: normal;
  display: inline-block;
  margin-left: 10px;
  font-size: 13px;
}
.module-6 dd ul li em.author::before {
  content: "-";
  padding-right: 10px;
}
.module-6 dt h1 {
  padding-bottom: 10px;
}
.module-6 dt form {
  display: flex;
}
.module-6 dt input {
  flex: 1;
  padding: 10px 0 10px 15px;
  margin: 10px 0;
  border: none;
  border-radius: 8px 0 0px 8px;
}
.module-6 dt button {
  background-color: #ffdc00;
  border: none;
  padding: 10px 15px;
  margin: 10px 0;
  border-radius: 0px 8px 8px 0px;
}
.module-6 dd ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0px 15px;
}
.module-6 dd ul li {
  width: calc(50% - 7.5px);
}
/* 音乐结束 */
.pagination {
  margin-top: 15px;
  display: flex;
  border-radius: 8px 8px 8px 8px;
  border: 1px solid #eee;
  padding: 10px 15px;
}
.pagination a {
  flex: 1;
  align-items: center;
  text-align: center;
  color: #666;
}
.pagination a:nth-child(2) {
  border-left: 1px solid #eee;
}
.global-footer {
  background-color: #fff;
  margin: 30px -12px 0 -12px;
  text-align: center;
  color: #999;
  font-size: 12px;
}
.global-footer a {
  color: #999;
  font-size: 12px;
}
.global-footer a::after {
  content: "-";
  padding-left: 10px;
  padding-right: 5px;
}
.global-footer a:last-child::after {
  content: "";
}
.global-footer dd {
  padding-top: 10px;
}
.global-search {
  background-color: #fff;

  border-radius: 8px 8px 0 0;
}
.global-search input {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;

  border-color: #1e87f0 !important;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
  height: 38px;
  font-size: 16px;
  padding: 6px 12px;
  transition: none;
  border: 1px solid #ced4da;
  border-radius: 4px;
}
.global-search button {
  margin-top: 10px;
  border: none;
  background: #1e87f0;
  font-size: 16px;
  color: #fff;
  cursor: pointer;
  width: 100%;
  padding: 8px 0px;
  border-radius: 4px;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
  transition: none;
  text-align: center;
  vertical-align: middle;
  user-select: none;
}
.search-tip {
  margin-top: 15px;
  color: #856404;
  background-color: #fff3cd;
  border-color: #ffeeba;
  padding: 15px;
  border-radius: 4px;
}
.content {
  background-color: #fff;
  margin: 15px 0 -15px 0;
  border-radius: 8px;
  font-size: 16px;
  line-height: 1.8;
  position: relative;
  overflow: hidden;
  border: 1px solid #eee;
  padding: 15px;
}
.content dt {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px dashed #eee;
}

.content dt h1 {
  flex: 0 0 100%;
  margin: 0 0 12px 0;
  font-size: 24px;
  line-height: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #222;
  width: 100%;
}
.content dt span {
  font-weight: normal;
  color: #999;
  font-size: 12px;
}
.content dt span:first-of-type {
  margin-right: auto;
}

.content dt span:last-of-type {
  margin-left: auto;
}
.content img {
  text-align: center;
  max-width: 100%;
  display: block;
  margin: 0 auto;
}
.content p {
  padding: 10px 0;
  border-bottom: 1px dashed #e4e8ec;
  text-indent: 0em;
  font-size: 18px;
}
.content p:last-of-type {
  border: none;
}
.content h2 {
  font-size: 20px;
  font-weight: bold;
  color: #1e87f0;
  font-weight: bold;
  color: #1e87f0;
  border-left: 3px solid #1e87f0;
  background: #e7eeff50;
  padding: 5px 10px;
  /* margin: 15px -15px 0 -15px; */
}
.content h3 {
  font-size: 20px;
  font-weight: bold;
  color: #1e87f0;
  font-weight: bold;
  color: #1e87f0;
  border-left: 3px solid #1e87f0;
  background: #e7eeff50;
  padding: 5px 10px;
  /* margin: 15px -15px 0 -15px; */
}
.content p.download {
  margin: 15px 0;
  border-bottom: dotted 1px #eee !important;
  padding-bottom: 20px !important;
}
.content .btn-down {
  text-indent: initial;
  display: inline-block;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  color: white;
  transition: all 0.3s ease;
  position: relative;
}
.content .btn-down-baidu {
  background: linear-gradient(45deg, #2196f3, #1976d2);
  box-shadow: 0 2px 8px rgba(33, 150, 243, 0.3);
}

.content .btn-down-baidu:hover {
  background: linear-gradient(45deg, #1976d2, #1565c0);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(33, 150, 243, 0.4);
  color: white;
}

.content .btn-down-quark {
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.content .btn-down-quark:hover {
  background: linear-gradient(45deg, #e55a2b, #e8851c);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
  color: white;
}

.quark-download {
  position: relative;
}

.qr-tooltip {
  position: absolute;
  top: -180px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}

.qr-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 8px solid transparent;
  border-top-color: white;
}

.qr-tooltip img {
  display: block;
  margin: 0 auto;
}

.qr-tooltip p {
  margin: 8px 0 0 0;
  text-align: center;
  font-size: 12px;
  color: #666;
}
.quark-download:hover .qr-tooltip {
  opacity: 1;
  visibility: visible;
}

.content .btn-down-quark {
  cursor: default;
}
/* 遮罩层 */
#global-footer-modal-mask {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
}

/* 弹窗主体 */
#global-footer-modal {
  display: none;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  padding: 20px;
  max-width: 420px;
  width: 90%;
}

#global-footer-modal dt {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: bold;
}

#global-footer-modal .modal-content {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
}

#global-footer-modal .modal-actions {
  text-align: right;
  margin-top: 15px;
}

#global-footer-modal button {
  background: #0073aa;
  color: #fff;
  border: none;
  padding: 6px 14px;
  border-radius: 6px;
  cursor: pointer;
}

#global-footer-modal button:hover {
  background: #005f8d;
}

body.music .content p {
  border: none;
  font-size: 16px;
  padding: 5px;
}

/* 颜色配置 */
body.music .global-header dd.global-nav a.active {
  color: #31c27c;
}
body.music .module-1 .bg {
  background-color: #31c27c;
}
body.music .global-search button {
  background-color: #31c27c;
}

body.music .global-search input {
  border-color: #31c27c !important;
}

body.music .module-4 dd ul li:nth-child(1) .num {
  background: #31c27c;
  color: #fff;
}
body.music .module-4 dd ul li:nth-child(2) .num {
  background: #5ce6a3;
  color: #fff;
}
body.music .module-4 dd ul li:nth-child(3) .num {
  background: #93f2c4;
  color: #fff;
}
body.music .module-6 dd ul li em.author {
  color: #31c27c;
}
body.music .module-1 dd ul li em.author {
  color: #31c27c;
}
@media (max-width: 821px) {
  .container {
    padding: 0 12px;
  }
}
@media (max-width: 767px) {
  .global-header {
    flex-wrap: nowrap; /* 在移动端上不换行 */

    padding-left: 15px;
  }

  .global-header dd.global-nav {
    overflow-x: scroll; /* 允许滚动 */
    white-space: nowrap; /* 防止内容换行 */
    margin-left: 20px;
  }

  /* 这里是确保active-menu占满一整行 */
  .global-header dd.active-menu {
    width: 100%; /* 强制active-menu占满整行 */
    text-align: center;
    background-color: #f0f0f0;
  }

  .global-header dd.active-menu a {
    display: block;
    padding: 10px;
    color: red;
  }
  .module-1 dt.bg {
    /* 移动端调整内边距 */
    padding: 32px 16px;
  }
  .container {
    padding: 0 12px;
  }
  body {
    background-color: #f4f4f4;
  }
  .module-1 {
    border: none;
  }
  .module-2 {
    border: none;
  }
  .module-3 {
  }
  .global-search {
    padding: 15px;
    margin: 15px 0 -15px 0;
  }
  .content {
  }
  .global-header {
    margin: 0 -12px;
  }
  .global-footer {
    padding: 15px;
  }
  .module-4 {
    display: inherit;
  }
  .module-4 dd {
    margin-bottom: 15px;
  }
  .module-5 dd ul li {
    width: calc(50% - 7.5px); /* 两栏，gap自动生效 */
  }
  .module-5 dd ul li em,
  .module-5 dd ul li span {
    display: block;
  }
  .module-5 dd ul li em {
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4), transparent);
    color: #fff;
    font-size: 14px;
    padding: 10px 15px 20px 15px;
    width: 100%;
    opacity: 1;
    transform: none;
    transition: none;
  }
  .module-5 dd ul li span {
    position: absolute;
    bottom: 15px;
    left: 50%; /* 定位到容器中点 */
    transform: translateX(-50%); /* 往左移动自身宽度的一半，实现真正居中 */

    background-color: #f90;
    color: #fff;
    font-weight: normal;
    padding: 5px 10px;
    border-radius: 8px;
    z-index: 9999;
    opacity: 1;
    transition: none;
  }
  .module-5 dd ul li::after {
    background: -webkit-gradient(
      linear,
      left bottom,
      left top,
      color-stop(0, rgba(0, 0, 0, 0.4)),
      to(transparent)
    );
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.4), transparent);
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 40px;
    left: 0;
    content: "";
  }
  #global-footer-modal {
    top: auto;
    bottom: 10%;
    transform: translate(-50%, 0);
    width: 94%;
  }
}

/* 小屏手机 */
@media (max-width: 376px) {
  .module-5 dd ul li em,
  .module-5 dd ul li span {
    display: block;
  }
  .module-5 dd ul li {
    width: 100%;
  }
}
