* {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

body,
html {
    font-size: 14px;
    padding: 0;
    margin: 0;
    cursor: default;
    background: #fff;
    color: #333;
    font-family: 'Microsoft YaHei', 'Helvetica Neue', Helvetica, 'PingFang SC', 'Hiragino Sans GB', '微软雅黑', Arial, sans-serif;
}

ul,
li {
    list-style: none;
}

input[type='number']::-webkit-inner-spin-button,
input[type='number']::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
p,
blockquote,
pre,
form,
fieldset,
legend,
button,
input,
textarea,
ul,
li,
ol,
th,
td {
    margin: 0;
    padding: 0;
}

body,
button,
input,
select,
textarea {
    font: 12px/1.5tahoma, arial, 5b8b4f53;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

address,
cite,
dfn,
em,
var {
    font-style: normal;
}

code,
kbd,
pre,
samp {
    font-family: couriernew, courier, monospace;
}

small {
    font-size: 12px;
}

ul,
ol {
    list-style: none;
}

sup {
    vertical-align: text-top;
}

sub {
    vertical-align: text-bottom;
}

legend {
    color: #000;
}

fieldset,
img {
    border: 0;
}

button,
input,
select,
textarea {
    font-size: 100%;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}
body,
html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.common-title {
  font-weight: 500;
  font-size: 32px;
  color: #ff4b91;
  text-align: center;
  padding: 50px 0;
}
.w1200 {
  width: 1200px;
  margin: 0 auto;
}
.mb-40 {
  margin-bottom: 40px;
}
.pb-60 {
  padding-bottom: 60px;
}
.mb-24 {
  margin-bottom: 24px;
}

.header {
  position: fixed;
  height: 60px;
  background-color: #ffffff;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}
.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}
.header__logo {
  display: flex;
  align-items: center;
}
.header__logo__icon {
  width: 25px;
  height: 25px;
  margin-right: 8px;
}
.header__logo__icon svg {
  width: 100%;
  height: 100%;
}
.header__logo__text {
  font-family: "PingFang SC", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #222222;
  letter-spacing: -0.0559884em;
  line-height: 1.4;
}
.header__nav {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}
.header__nav-item {
  display: inline-block;
  margin-left: 40px;
  list-style: none;
}
.header__nav-item:first-child {
  margin-left: 0;
}
.header__nav-link {
  display: block;
  padding: 8px 0;
  font-family: "PingFang SC", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #999999;
  text-decoration: none;
  letter-spacing: -0.0559884em;
  line-height: 1.4;
  transition: color 0.3s ease;
  position: relative;
}
.header__nav-link:hover,
.header__nav-link.active {
  color: #222222;
}
.header__nav-link:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: #222222;
  transition: width 0.3s ease;
}
.header__nav-link:hover:after,
.header__nav-link.active:after {
  width: 100%;
}
.header-placeholder {
  width: 100%;
  height: 60px;
}

.footer-wrap {
  height: 60px;
  background-color: #F8F8F8;
  padding: 20px 0;
  box-sizing: border-box;
}
.footer-content {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-logo {
  display: block;
  margin-right: 40px;
}
.footer-logo-img {
  width: 83px;
  height: 16px;
}
.footer-info {
  display: flex;
  align-items: center;
}
.footer-info-item {
  display: flex;
  align-items: center;
  color: #999999;
}
.footer-info-item:hover {
  color: #ff4b91;
}
.footer-info-item:not(:last-child) {
  margin-right: 60px;
  position: relative;
}
.footer-info-item:not(:last-child):after {
  content: '';
  position: absolute;
  top: 50%;
  right: -30px;
  transform: translateY(-50%);
  width: 1px;
  height: 12px;
  background-color: #999999;
}
.license-item,
.license-number {
  font-family: 'PingFang SC', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  display: inline-block;
  cursor: pointer;
}
.license-item {
  margin-right: 6px;
}
.separator {
  width: 1px;
  height: 12px;
  background-color: #999999;
  margin: 0 4px;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}
.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  transition: opacity 0.3s ease;
}
.modal-content {
  position: relative;
  width: 1200px;
  max-height: 80%;
  margin: 40px auto;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  animation: modalFadeIn 0.3s ease-out;
}
@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 关闭按钮 */
.modal-close {
  position: absolute;
  top: 10px;
  right: 20px;
  cursor: pointer;
  z-index: 10;
  line-height: 1;
  width: 28px;
  height: 28px;
  text-align: center;
}
/* 内容区域 */
.modal-body {
  text-align: center;
  overflow: auto;
  max-height: calc(90vh - 80px);
}
/* 图片样式 */
.modal-image {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 4px;
}
/* 自定义 HTML 内容 */
.modal-html {
  line-height: 1.6;
  color: #333;
  font-size: 16px;
}
.modal-html img {
  display: block;
  max-width: 100%;
}
.modal-title {
  font-weight: 500;
  font-size: 26px;
  color: #000000;
  text-align: center;
  padding: 20px 0 ;
  border-bottom: 1px solid #E0E0E0;
  position: relative;
}
/* 全局设置滚动条宽度 */
* {
  scrollbar-width: thin;
  /* For Firefox */
  scrollbar-color: #888 transparent;
  /* 滚动条颜色和轨道颜色 */
}
/* WebKit-based browsers (Chrome, Safari, Edge) */
/* 定义滚动条整体宽度和背景色 */
::-webkit-scrollbar {
  width: 8px;
}
/* 定义滚动条滑块的颜色和圆角 */
::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 4px;
}
/* 当鼠标悬停在滚动条上时 */
::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}
/* 定义滚动条轨道的颜色 */
::-webkit-scrollbar-track {
  background-color: transparent;
}
/* 如果需要也可以设置滚动条两端按钮的样式 */
::-webkit-scrollbar-button {
  display: none;
}

