* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
*::before,
*::after {
  box-sizing: inherit;
}
html {
  color: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: 'iconfont';
  src: url('../fonts/icomoon.eot');
  src: url('../fonts/icomoon.eot') format('embedded-opentype'),
    url('../fonts/icomoon.ttf') format('truetype'), url('icomoon.woff') format('woff'),
    url('../fonts/icomoon.svg') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

body,
dd,
dl,
h1,
h2,
h3,
h4,
h5,
h6,
ol,
p,
ul,
hr {
  margin: 0;
  padding: 0;
  font-size: 16px;
}

article,
aside,
figure,
footer,
header,
menu,
nav,
section,
summary,
time {
  display: block;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
address,
caption,
cite,
em,
th,
p,
a,
li,
td,
b,
i,
div,
textarea {
  font-family: 'Inter', 'Lucida Grande', 'Lucida Sans Unicode', 'Arial', 'sans-serif';
  line-height: 1.5;
  font-size: inherit;
}

img {
  max-width: 100%;
  height: auto;
  border: 0;
}

/* 表格优化 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

input:focus,
textarea:focus {
  outline: 0;
  border: 1px solid #00c853;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
}

a {
  color: #00c853;
  text-decoration: none;
  outline: 0;
  transition: color 0.3s, text-decoration 0.3s;
}

a:focus {
  outline: 0;
}

a:active,
a:link,
a:visited {
  text-decoration: none;
  color: #00c853;
}

a:hover {
  color: #00c853;
  text-decoration: underline;
}

hr {
  border-top: 1px solid #e6e6e6;
  border-bottom: 0;
}

/* 按钮的基础样式 */
button {
  background-color: #fff;
  font-weight: 600;
  font-size: clamp(14px, 0.16rem, 24px);
  padding: 12px 15px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  text-align: center;
  display: inline-block;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

button:hover {
  transform: translateY(-2px);
}

button:focus {
  outline: none;
}

button:active {
  transform: translateY(0);
}

.dft_pw {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.dft_flex {
  display: flex;
}
.dft_flex_center {
  display: flex;
}

[class^='icon_'],
[class*=' icon_'] {
  font-family: 'iconfont';
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon_mac::after {
  content: '\e902';
}
.icon_windows::after {
  content: '\e903';
}

#header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid #e2e8f0;
  position: relative;
}
#header::after {
  content: '';
  width: 100%;
  height: 130px;
  background: radial-gradient(900px 380px at 50% -160px, rgba(0, 200, 83, 0.25), transparent 60%),
    linear-gradient(
      180deg,
      rgba(0, 200, 83, 0.2) 0%,
      rgba(0, 200, 83, 0.1) 35%,
      rgba(0, 200, 83, 0.06) 60%,
      rgba(0, 200, 83, 0) 100%
    );
  background-repeat: no-repeat;
  position: absolute;
  inset: 0;
  z-index: -1;
  top: 65px;
}
#header a {
  color: #334155;
}
#logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}
#logo span {
  vertical-align: middle;
}
.header_main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.menus {
  display: flex;
  gap: clamp(10px, 2vw, 20px);
  align-items: center;
}
.menus a {
  font-size: clamp(14px, 0.16rem, 16px);
  padding: 8px 10px;
  border-radius: 10px;
}
.menus a:hover {
  background: #f1f5f9;
  color: #0f172a;
  text-decoration: none;
}

#footer {
  padding: 20px 0;
  margin-top: 50px;
  border-top: 1px solid #e2e8f0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  color: #64748b;
  font-size: 14px;
  text-align: center;
}

@media screen and (max-width: 1400px) {
  .dft_pw {
    max-width: 95%;
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }
}
@media screen and (max-width: 768px) {
}
@media screen and (max-width: 576px) {
  #logo span {
    display: none;
  }
}

@media screen and (max-width: 375px) {
}
