/* 基础通用样式 ：清除默认样式 + 通用样式 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Inter, sans-serif;
}
li {
  list-style: none;
  /* 清除列表样式 */
}
a {
  text-decoration: none;
  /* 清除超链接样式 */
}
.container {
  width: 1536px;
  margin: 0 auto;
  padding: 0 32px;
  font-size: 20px;
}
/* 小于1536 */
@media screen and (max-width: 1536px) {
  .container {
    width: 1280px;
  }
}
/* 小于1280 */
@media screen and (max-width: 1280px) {
  .container {
    width: 1024px;
  }
}
/* 小于1024 */
@media screen and (max-width: 1024px) {
  .container {
    width: 768px;
    padding: 0 24px;
  }
}
/* 小于768 */
@media screen and (max-width: 768px) {
  .container {
    width: 640px;
  }
}
/* 小于640 */
@media screen and (max-width: 640px) {
  .container {
    width: calc(100vw - 32px);
    padding: 0 16px;
  }
}
@media screen and (max-width: 480px) {
  .container {
    width: 100%;
    padding: 0 16px;
  }
}
/* 导航栏 */
#navbar {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  transition-duration: 300ms;
  /* 移动导航菜单 */
}
#navbar .container {
  height: 72px;
}
#navbar .container .navbar-brand {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  /* logo */
  /* 桌面导航 */
  /* 搜索按钮和移动菜单按钮 */
}
#navbar .container .navbar-brand .logo {
  display: flex;
  align-items: center;
  font-size: 20px;
}
#navbar .container .navbar-brand .logo .logo-icon {
  color: #fafafa;
  height: 40px;
  width: 40px;
  border-radius: 5px;
  background-color: #0a48d4;
  text-align: center;
  line-height: 40px;
}
#navbar .container .navbar-brand .logo .logo-text {
  color: #000000;
  height: 28px;
  padding-left: 8px;
  font-weight: 700;
  /* 文本不换行 */
  white-space: nowrap;
}
#navbar .container .navbar-brand .desktop-nav {
  display: flex;
  align-items: center;
}
#navbar .container .navbar-brand .desktop-nav a {
  margin-left: 32px;
  height: 24px;
  line-height: 24px;
  font-size: 16px;
  color: #0c0c0c;
  font-weight: 500;
}
#navbar .container .navbar-brand .desktop-nav a:hover {
  color: #005cbe;
}
#navbar .container .navbar-brand .desktop-nav a:first-child {
  margin-left: 0;
}
#navbar .container .navbar-brand .mobile-nav {
  height: 28px;
  display: flex;
  justify-content: space-between;
}
#navbar .container .navbar-brand .mobile-nav .search-btn,
#navbar .container .navbar-brand .mobile-nav #menu-toggle {
  z-index: 999;
  border: none;
  user-select: none;
  background-color: rgba(0, 0, 0, 0);
  cursor: pointer;
  font-size: 18px;
}
#navbar .container .navbar-brand .mobile-nav #menu-toggle {
  display: none;
  margin-left: 10px;
}
#navbar #mobile-menu {
  position: fixed;
  padding-top: 72px;
  top: 0;
  right: -50vw;
  width: 50vw;
  height: calc(100vh - 72px);
  transition: all 0.5s ease;
  z-index: 998;
  /*透明隐藏*/
  opacity: 0;
}
#navbar #mobile-menu .container {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#navbar #mobile-menu .container a {
  margin: 10px 0;
  border-radius: 3px;
  width: 40vw;
  text-align: center;
}
#navbar #mobile-menu .container a:first-child {
  margin-top: 20px;
}
#navbar #mobile-menu .container a:hover {
  color: #0066ff;
  background: rgba(136, 136, 136, 0.2);
}
.bg-transparent {
  background: transparent;
}
.bg-white {
  background: white;
}
.shadow-md {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}
/* 小于768 */
@media screen and (max-width: 768px) {
  /* 导航栏 */
  #navbar .container .navbar-brand .desktop-nav {
    display: none;
  }
  #navbar .container .navbar-brand .mobile-nav #menu-toggle {
    display: block;
  }
  #navbar #mobile-menu.show {
    right: 0;
    opacity: 1;
    background-color: #fff;
  }
}
/* 首页介绍 */
#home {
  height: 700px;
  padding: 128px 0 112px;
  --tw-bg-opacity: 1;
  background-color: rgb(245 247 250 / var(--tw-bg-opacity, 1));
  background-image: linear-gradient(-225deg, rgba(75, 59, 123, 0.16) 0%, rgba(79, 149, 180, 0.3) 51%, rgba(27, 183, 164, 0.12) 100%);
  /* 上下浮动循环动画*/
}
@keyframes float {
  0% {
    transform: translatey(0px);
  }
  50% {
    transform: translatey(-30px);
  }
  100% {
    transform: translatey(0px);
  }
}
#home .container {
  height: 100%;
}
#home .container .row {
  display: flex;
  align-items: center;
  height: 100%;
}
#home .container .row .text {
  flex: 1;
}
#home .container .row .text .title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin: 0 0 20px;
  /*行间距*/
  line-height: 1.3;
}
#home .container .row .text .title .text-primary {
  --tw-text-opacity: 1;
  color: rgb(22 93 255 / var(--tw-text-opacity, 1));
}
#home .container .row .text .title .text-secondary {
  --tw-text-opacity: 1;
  color: #ff7d00;
}
#home .container .row .text .lead {
  font-size: 20px;
  width: 75%;
  margin: 0 0 32px;
}
#home .container .row .text .btn-group {
  display: flex;
  gap: 20px;
}
#home .container .row .text .btn-group a {
  padding: 12px 32px;
  border-radius: 0.5rem;
  background: #165cfe;
  color: #ffffff;
  font-weight: 500;
  /* 阴影 */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
}
#home .container .row .text .btn-group a:hover {
  /*向上浮动*/
  transform: translateY(-4px);
  /*颜色加深*/
  opacity: 0.85;
}
#home .container .row .text .btn-group a:last-child {
  background: #ffffff;
  color: #165bfd;
  border: 1px solid #165bfd;
}
#home .container .row .text .mt-12 {
  margin: 48px 0 0 0;
}
#home .container .row .text .mt-12 .text-sm {
  font-size: 14px;
  margin: 0 0 16px;
  color: #333;
}
#home .container .row .text .mt-12 .images {
  display: flex;
  gap: 20px;
  width: 64px;
  height: 24px;
}
#home .container .row .chart {
  border-radius: 10px;
  flex: 1;
  position: relative;
  box-shadow: 0 6px 12px 0 rgba(0, 0, 0, 0.15);
  /*使用动画*/
  animation: float 6s ease-in-out infinite;
  z-index: 1;
  height: 100%;
}
#home .container .row .chart .chart-title {
  background-color: rgba(255, 255, 255, 0.31);
  border-radius: 10px;
  padding: 24px;
  z-index: 100;
  /* 关键：确保阴影在 .chart 下方 */
  height: 100%;
}
#home .container .row .chart .chart-title #stockChart {
  pointer-events: none;
  height: 100%;
  width: 100%;
}
#home .container .row .chart .chart-title .chart-title-text {
  user-select: none;
  position: absolute;
  font-weight: 500;
  top: 15px;
  right: 15px;
  padding: 4px 12px;
  font-size: 14px;
  color: #e50000;
  border-radius: 15px;
  background-color: #ffe7e7;
}
#home .container .row .chart .absolute-A {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -100;
  /* 阴影*/
  box-shadow: 0 0 150px 70px rgba(180, 118, 255, 0.3);
}
#home .container .row .chart .absolute-B {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -100;
  /* 阴影*/
  box-shadow: 0 0 150px 70px rgba(255, 191, 118, 0.3);
}
@media screen and (max-width: 1024px) {
  #home {
    height: 1000px;
    padding: 112px 0 80px;
  }
  #home .container .row {
    flex-direction: column;
  }
  #home .container .row .text .lead {
    width: 100%;
  }
  #home .container .row .text .btn-group {
    justify-content: center;
  }
  #home .container .row .chart {
    margin: 40px 0;
    width: 100%;
  }
}
/* 服务概览 */
#service {
  padding: 80px 0;
}
#service .container .title-box {
  text-align: center;
  margin-bottom: 64px;
}
#service .container .title-box .title {
  font-size: 40px;
  margin: 0 0 16px 0;
  text-align: center;
}
#service .container .title-box .subtitle {
  font-size: 18px;
  font-weight: 400;
  color: #3a3a3a;
}
#service .container .row {
  display: flex;
  gap: 20px;
  font-size: 16px;
  justify-content: center;
}
#service .container .row .item {
  background-color: #fff;
  padding: 24px;
  border-radius: 8px;
  transition: all 0.3s ease;
  --tw-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
  --tw-shadow-colored: 0 10px 30px -5px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
#service .container .row .item .icon {
  height: 56px;
  width: 56px;
  margin: 0 0 24px 0;
  background-color: #e5ecfe;
  color: #0a48d4;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  font-size: 30px;
}
#service .container .row .item .books {
  background-color: rgba(246, 224, 210, 0.34);
  color: #fd7021;
}
#service .container .row .item .tutorials {
  background-color: rgba(207, 238, 200, 0.34);
  color: #2cd308;
}
#service .container .row .item .tools {
  background-color: rgba(224, 209, 246, 0.34);
  color: #9a21fd;
}
#service .container .row .item h3 {
  font-weight: 600;
  font-size: 20px;
  margin: 0 0 12px 0;
}
#service .container .row .item p {
  margin: 0 0 16px 0;
  --tw-text-opacity: 1;
  color: rgb(78 89 105 / var(--tw-text-opacity, 1));
}
#service .container .row .item a {
  color: #0a48d4;
}
#service .container .row .item:hover {
  /*Y轴移动*/
  transform: translateY(-10px);
  /*蓝色阴影*/
  box-shadow: 0 10px 20px rgba(135, 191, 255, 0.25);
}
@media screen and (max-width: 1024px) {
  #service .container .row {
    flex-wrap: wrap;
  }
  #service .container .row .item {
    width: 344px;
    height: 256px;
  }
}
@media screen and (max-width: 768px) {
  #service .container {
    padding: 0 20px;
  }
  #service .container .row .item {
    width: 100%;
    height: 256px;
  }
}
/* 股票分析区域 */
#stocks {
  padding: 80px 0;
  background-color: #f8f8f9;
}
#stocks .container .text-center {
  text-align: center;
  margin-bottom: 64px;
}
#stocks .container .text-center h2 {
  font-size: 40px;
  margin-bottom: 16px;
}
#stocks .container .text-center p {
  font-size: 18px;
  font-weight: 400;
  color: #3a3a3a;
}
#stocks .container .row {
  display: flex;
  flex-direction: column;
  margin-bottom: 48px;
  padding: 32px;
  background-color: #fff;
  border-radius: 10px;
  /* 阴影 */
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
#stocks .container .row .flex-title {
  display: flex;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}
#stocks .container .row .flex-title h3 {
  font-size: 24px;
  font-weight: 600;
}
#stocks .container .row .flex-title .flex-btn {
  display: flex;
  gap: 10px;
}
#stocks .container .row .flex-title .flex-btn button {
  font-size: 16px;
  padding: 8px 16px;
  background-color: rgba(255, 255, 255, 0);
  border-radius: 8px;
  border: 1px solid #cccccc;
}
#stocks .container .row .flex-title .flex-btn button:hover {
  opacity: 0.85;
  cursor: pointer;
}
#stocks .container .row .flex-title .flex-btn button.active {
  background-color: #447cfe;
  border: none;
  color: #fff;
}
#stocks .container .row .stocks-list {
  display: flex;
  gap: 10px;
}
#stocks .container .row .stocks-list .bar-box {
  border: 1px solid #cecece;
  padding: 16px;
  border-radius: 5px;
  width: 100%;
  height: 300px;
  transition: all 0.3s ease;
}
#stocks .container .row .stocks-list .bar-box .bar-item {
  width: 100%;
  height: 100%;
  pointer-events: none;
}
#stocks .container .row .stocks-list .bar-box:hover {
  /*阴影*/
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}
#stocks .container .bottom-box {
  display: flex;
  gap: 30px;
}
#stocks .container .bottom-box .box-A {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.15);
  padding: 24px;
  flex: 1;
}
#stocks .container .bottom-box .box-A .title {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
}
#stocks .container .bottom-box .box-A .title .text-btn {
  display: flex;
  gap: 10px;
  align-items: center;
}
#stocks .container .bottom-box .box-A .title .text-btn button {
  font-size: 12px;
  height: 30px;
  padding: 2px 10px;
  --tw-text-opacity: 1;
  color: rgb(22 93 255 / var(--tw-text-opacity, 1));
  border-radius: 0.5rem;
  background-color: rgba(255, 255, 255, 0);
  border: 1px solid #b7b7b7;
}
#stocks .container .bottom-box .box-A .title .text-btn button.active {
  background-color: #e5ecfe;
}
#stocks .container .bottom-box .box-A .h-80 #sectorChart {
  max-width: 100%;
  height: 320px;
}
#stocks .container .bottom-box .box-B {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.15);
  padding: 24px;
  flex: 1;
}
#stocks .container .bottom-box .box-B .title {
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#stocks .container .bottom-box .box-B .title button {
  color: #5a84e5;
  background-color: rgba(255, 255, 255, 0);
  border: none;
  font-weight: 500;
  font-size: 14px;
}
#stocks .container .bottom-box .box-B .bar > div > div {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
}
#stocks .container .bottom-box .box-B .bar .bar-A {
  margin-top: 24px;
}
#stocks .container .bottom-box .box-B .bar .bar-A .bar-A-title {
  margin-bottom: 8px;
}
#stocks .container .bottom-box .box-B .bar .bar-A .text-sm {
  font-size: 12px;
  margin-top: 4px;
}
#stocks .container .bottom-box .box-B .bar .bar-A .range-bar {
  width: 100%;
  background-color: #d5d5d5;
  height: 10px;
  border-radius: 5px;
}
#stocks .container .bottom-box .box-B .bar .bar-A .range-bar .range-bar-inner {
  background-color: #5a84e5;
  height: 10px;
  border-radius: 5px;
}
@media screen and (max-width: 1024px) {
  #stocks .container {
    flex-direction: column;
  }
  #stocks .container .row .stocks-list,
  #stocks .container .bottom-box {
    flex-direction: column;
  }
  #stocks .container .box-A .title .text-xl {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  #stocks .container .row {
    margin-bottom: 48px;
    padding: 24px;
  }
}
/* 电子书推荐区域 */
#books {
  background-color: #ffffff;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
#books .container .text-center {
  margin-bottom: 60px;
  text-align: center;
}
#books .container .text-center h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}
#books .container .text-center p {
  font-size: 18px;
  font-weight: 400;
  color: #3a3a3a;
}
#books .container .book-box {
  display: flex;
  gap: 20px;
  justify-content: space-between;
}
#books .container .book-box .book-item {
  display: flex;
  flex-direction: column;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  /* 动画过渡 */
  transition: all 0.3s ease;
}
#books .container .book-box .book-item .relative {
  position: relative;
}
#books .container .book-box .book-item .relative img {
  height: 256px;
  width: 344px;
  border-radius: 8px 8px 0 0;
  object-fit: cover;
}
#books .container .book-box .book-item .relative .absolute {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #ffffff;
  background-color: #ff7d00;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  padding: 4px 8px;
}
#books .container .book-box .book-item .describes {
  display: flex;
  flex-direction: column;
  padding: 24px;
}
#books .container .book-box .book-item .describes .text-lg {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 14px;
}
#books .container .book-box .book-item .describes p {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 16px;
  color: #707070;
}
#books .container .book-box .book-item .describes .text-14 {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  gap: 10px;
}
#books .container .book-box .book-item .describes .text-14 .icon {
  color: #ff9200;
  font-size: 14px;
  font-weight: 400;
}
#books .container .book-box .book-item .describes .text-14 .ml-2 {
  font-size: 12px;
  font-weight: 500;
}
#books .container .book-box .book-item .describes .text-16 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  color: #004dff;
  font-weight: 600;
}
#books .container .book-box .book-item .describes .text-16 button {
  font-size: 14px;
  background-color: #6490f8;
  padding: 4px 8px;
  border-radius: 5px;
  color: #fff;
  border: none;
}
#books .container .book-box .book-item:hover {
  /* 向上浮动*/
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(16, 128, 255, 0.15);
  cursor: pointer;
}
#books .container .bottom-text {
  text-align: center;
  margin-top: 48px;
}
#books .container .bottom-text button {
  font-size: 16px;
  padding: 12px 32px;
  border: 1px solid #316bff;
  border-radius: 8px;
  color: #316bff;
  background-color: #fff;
}
#books .container .bottom-text button i {
  padding-left: 5px;
}
#books .container .bottom-text button:hover {
  opacity: 0.9;
  cursor: pointer;
  box-shadow: 1px 1px 4px rgba(49, 107, 255, 0.3);
}
/* 小于1536 */
@media screen and (max-width: 1536px) {
  #books .container .book-box .book-item .relative img {
    width: 280px;
    height: 256px;
  }
}
@media screen and (max-width: 1280px) {
  #books .container .book-box .book-item .relative img {
    width: 216px;
    height: 256px;
  }
}
@media screen and (max-width: 1024px) {
  #books .container .book-box {
    flex-wrap: wrap;
    justify-content: center;
  }
  #books .container .book-box .book-item .relative img {
    width: 344px;
    height: 256px;
  }
}
@media screen and (max-width: 768px) {
  #books .container .book-box .book-item .relative img {
    width: 280px;
    height: 256px;
  }
}
@media screen and (max-width: 640px) {
  #books .container .book-box {
    flex-direction: column;
  }
  #books .container .book-box .book-item .relative img {
    width: 100%;
    height: 256px;
  }
}
/* 技术教程区域 */
#tutorials {
  background-color: #f8f8f9;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
#tutorials .container .text-center {
  margin-bottom: 60px;
  text-align: center;
}
#tutorials .container .text-center h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}
#tutorials .container .text-center p {
  font-size: 18px;
  font-weight: 400;
  color: #3a3a3a;
}
#tutorials .container .row {
  display: grid;
  /* 创建块级网格容器 */
  grid-template-columns: 1fr 1fr;
  /* 定义2列，每列宽度相等 */
  gap: 20px;
  /* 网格项之间的间距 */
}
#tutorials .container .row .tutorial {
  display: flex;
  /* 创建块级网格容器 */
}
#tutorials .container .row .tutorial .relative {
  position: relative;
  border-radius: 10px;
  flex: 1;
}
#tutorials .container .row .tutorial .relative img {
  border-radius: 10px 0 0 10px;
  height: 244px;
  width: 100%;
}
#tutorials .container .row .tutorial .relative .absolute {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 8px;
  font-size: 14px;
  color: #ffffff;
  background-color: #ff8840;
  border-radius: 5px;
  border: none;
}
#tutorials .container .row .tutorial .synopsis {
  flex: 2;
  border-radius: 0 10px 10px 0;
  height: 244px;
  padding: 24px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
#tutorials .container .row .tutorial .synopsis h3 {
  font-size: 20px;
  margin-bottom: 12px;
}
#tutorials .container .row .tutorial .synopsis p {
  font-size: 16px;
  margin-bottom: 16px;
}
#tutorials .container .row .tutorial .synopsis .author {
  display: flex;
  font-size: 16px;
  margin-bottom: 16px;
  align-items: center;
}
#tutorials .container .row .tutorial .synopsis .author img {
  width: 40px;
  height: 40px;
  border-radius: 20px;
  margin-right: 12px;
}
#tutorials .container .row .tutorial .synopsis .info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}
#tutorials .container .row .tutorial .synopsis .info .time {
  display: flex;
  gap: 15px;
  color: #595959;
}
#tutorials .container .row .tutorial .synopsis .info button {
  padding: 8px 16px;
  background-color: #165cfe;
  border: none;
  border-radius: 8px;
  color: #ffffff;
}
#tutorials .container .row .tutorial .synopsis:hover {
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  #tutorials .container .row {
    display: flex;
    flex-direction: column;
  }
}
@media screen and (max-width: 640px) {
  #tutorials .container .row .row-item .tutorial {
    display: flex;
    flex-direction: column;
  }
  #tutorials .container .row .row-item .tutorial .relative img {
    border-radius: 10px 10px 0 0;
  }
  #tutorials .container .row .row-item .tutorial .synopsis {
    border-radius: 0 0 10px 10px;
  }
}
/* 工具区域 */
#tools {
  background-color: #fdfdfe;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
#tools .container .text-center {
  margin-bottom: 60px;
  text-align: center;
}
#tools .container .text-center h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}
#tools .container .text-center p {
  font-size: 18px;
  font-weight: 400;
  color: #3a3a3a;
}
#tools .container .grid {
  display: grid;
  grid-template-columns: 1fr  1fr 1fr;
  gap: 20px;
}
#tools .container .grid .grid-item {
  padding: 24px;
  border-radius: 10px;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.1);
  font-size: 16px;
  transition: all 0.3s ease-in-out;
}
#tools .container .grid .grid-item .icon {
  height: 56px;
  width: 56px;
  font-size: 24px;
  margin-bottom: 24px;
  background-color: #e5ecfe;
  color: #1059ff;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#tools .container .grid .grid-item h3 {
  font-size: 20px;
  margin-bottom: 12px;
}
#tools .container .grid .grid-item p {
  margin-bottom: 16px;
  color: #5d5d5d;
}
#tools .container .grid .grid-item a {
  color: #1a60ff;
}
#tools .container .grid .grid-item:hover {
  /* 向上浮动*/
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(16, 128, 255, 0.15);
  cursor: pointer;
}
#tools .container .api {
  margin-top: 64px;
  padding: 32px;
  background-color: #f8f8f9;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.15);
  border-radius: 10px;
}
#tools .container .api h3 {
  font-size: 24px;
  margin-bottom: 24px;
}
#tools .container .api p {
  font-size: 16px;
  margin-bottom: 32px;
  color: #5d5d5d;
}
#tools .container .api .list {
  display: grid;
  grid-template-columns: 1fr  1fr;
  gap: 20px;
}
#tools .container .api .list .grid-api {
  padding: 24px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
}
#tools .container .api .list .grid-api h4 {
  font-size: 18px;
  margin-bottom: 16px;
}
#tools .container .api .list .grid-api p {
  font-size: 16px;
  margin-bottom: 16px;
  color: #5d5d5d;
}
#tools .container .api .list .grid-api .flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#tools .container .api .list .grid-api .flex span {
  font-size: 14px;
  height: 28px;
  padding: 4px 8px;
  border-radius: 14px;
  background-color: #f3895a;
  border: none;
  color: #8a2500;
}
#tools .container .api .list .grid-api .flex a {
  font-size: 16px;
  color: #004eff;
  font-weight: 500;
}
#tools .container .api .list .grid-api:hover {
  box-shadow: 0 10px 20px rgba(42, 42, 42, 0.15);
}
@media screen and (max-width: 768px) {
  #tools .container .grid,
  #tools .container .api .list {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
}
/* 订阅区域 */
#subscribe {
  padding: 80px 0;
  background-color: #b7a99d;
  text-align: center;
}
#subscribe .container h2 {
  font-size: 40px;
  margin-bottom: 24px;
}
#subscribe .container .text-xl {
  font-size: 20px;
  margin-bottom: 32px;
}
#subscribe .container form {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  /*聚焦样式 */
}
#subscribe .container form input {
  width: 304px;
  height: 56px;
  padding: 16px 24px;
  background-color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
}
#subscribe .container form input:focus {
  outline: none;
  /*放大1.1*/
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}
#subscribe .container form button {
  transition: all 0.3s;
  padding: 16px 32px;
  background-color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
}
#subscribe .container form button:hover {
  opacity: 0.8;
  cursor: pointer;
  /*Y轴移动*/
  transform: translateY(-3px);
}
#subscribe .container .text-sm {
  margin-top: 24px;
  font-size: 14px;
}
@media screen and (max-width: 640px) {
  #subscribe .container form {
    flex-direction: column;
  }
  #subscribe .container form input,
  #subscribe .container form button {
    width: 100%;
  }
}
/* 页脚 */
footer {
  padding-top: 64px;
  padding-bottom: 32px;
  background-color: #262627;
  color: #ffffff;
}
footer .container .grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 32px;
}
footer .container .grid .flex {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
footer .container .grid .flex .logo {
  display: flex;
  width: 40px;
  height: 40px;
  border-radius: 5px;
  border: none;
  background-color: #575757;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
footer .container .grid .flex span {
  font-size: 20px;
}
footer .container .grid p {
  font-size: 16px;
  margin-bottom: 24px;
  color: #949494;
}
footer .container .grid .flex-link {
  display: flex;
  gap: 10px;
  align-items: center;
}
footer .container .grid .flex-link a {
  color: #f3f3f3;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  border: none;
  background-color: #3c3c3d;
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .container .grid .grid-item h4 {
  font-size: 18px;
  margin-bottom: 24px;
}
footer .container .grid .grid-item ul {
  font-size: 16px;
}
footer .container .grid .grid-item ul li {
  margin-top: 12px;
}
footer .container .grid .grid-item ul li a,
footer .container .grid .grid-item ul li span {
  color: #949494;
}
footer .container .grid .grid-item ul li span {
  margin-left: 8px;
}
footer .container .border-t {
  padding-top: 32px;
  font-size: 14px;
  width: 100%;
}
footer .container .border-t .flex {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  color: #888888;
}
footer .container .border-t .flex a {
  color: #888888;
}
@media screen and (max-width: 1024px) {
  footer .container .grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 768px) {
  footer .container .grid {
    display: flex;
    flex-direction: column;
  }
  footer .container .border-t .flex {
    flex-direction: column;
  }
}
/*# sourceMappingURL=index.1.css.map */