:root {
    --primary-color: #165DFF;
    --secondary-color: #FF7D00;
    --accent-color: #4080FF;
    --dark-color: #1D2129;
    --light-color: #F2F3F5;
    --muted-color: #86909C;
    --white-color: #FFFFFF;
    --black-color: #000000;
    --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --card-hover-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  }

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
  }

  body {
    background-color: var(--light-color);
    color: var(--dark-color);
    overflow-x: hidden;
  }

  html {
    scroll-behavior: smooth;
  }

  a {
    text-decoration: none;
  }

  /* 辅助类 */
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
  }

  .text-center {
    text-align: center;
  }

  .text-primary {
    color: var(--primary-color);
  }

  .text-secondary {
    color: var(--secondary-color);
  }

  .text-muted {
    color: var(--muted-color);
  }

  .bg-primary {
    background-color: var(--primary-color);
  }

  .bg-secondary {
    background-color: var(--secondary-color);
  }

  .bg-light {
    background-color: var(--light-color);
  }

  .bg-white {
    background-color: var(--white-color);
  }

  .btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .btn-primary {
    background-color: var(--primary-color);
    color: var(--white-color);
  }

  .btn-primary:hover {
    background-color: #0047CC;
  }

  .btn-secondary {
    background-color: var(--secondary-color);
    color: var(--white-color);
  }

  .btn-secondary:hover {
    background-color: #E66E00;
  }

  .btn-outline-primary {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
  }

  .btn-outline-primary:hover {
    background-color: rgba(22, 93, 255, 0.05);
  }

  .card {
    background-color: var(--white-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
  }

  .card:hover {
    box-shadow: var(--card-hover-shadow);
    transform: translateY(-4px);
  }

  .section-padding {
    padding: 64px 0;
  }

  .section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
  }

  .section-subtitle {
    font-size: 18px;
    color: var(--muted-color);
    margin: 0 auto 48px;
  }

  /* 导航栏 */
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: all 0.3s ease;
    padding: 12px 0;
    background-color: #FAFAFA;
    box-shadow: 10px 5px 5px rgba(0, 0, 0, 0.08);
  }

  .navbar.scrolled {
    background-color: var(--white-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 8px 0;
  }

  .navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .navbar-logo {
    display: flex;
    align-items: center;
  }

  .navbar-logo i {
    font-size: 24px;
    color: var(--primary-color);
    margin-right: 8px;
  }

  .navbar-logo span {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
  }

  .navbar-logo img {
    max-height: 42px;
  }

  .navbar-menu {
    display: none;
    list-style: none;
  }

  .navbar-menu li {
    margin-left: 32px;
  }

  .navbar-menu a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    transition: color 0.3s ease;
  }

  .navbar-menu a:hover,
  .navbar-menu a.active {
    color: var(--primary-color);
  }

  .navbar-search {
    display: none;
    padding: 8px 16px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .navbar-search:hover {
    background-color: #0047CC;
  }

  .navbar-toggle {
    display: block;
    font-size: 24px;
    cursor: pointer;
  }

  /* 移动端菜单 */
  .mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--white-color);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
    z-index: 99;
    padding: 16px;
  }

  .mobile-menu.active {
    display: block;
  }

  .mobile-menu ul {
    list-style: none;
  }

  .mobile-menu li {
    margin-bottom: 16px;
  }

  .mobile-menu a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    display: block;
    padding: 8px 0;
  }

  .mobile-menu a:hover {
    color: var(--primary-color);
  }

  .mobile-search {
    position: relative;
    margin-top: 16px;
  }

  .mobile-search input {
    width: 100%;
    padding: 12px 40px 12px 16px;
    border: 1px solid #E5E6EB;
    border-radius: 8px;
    font-size: 16px;
  }

  .mobile-search button {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent;
    border: none;
    color: var(--muted-color);
    cursor: pointer;
  }

  /* 英雄区域 */
  .hero {
    padding: 96px 0 64px;
    background: linear-gradient(to bottom, var(--white-color), #E8F3FF);
  }

  .hero-container {
    display: flex;
    flex-direction: column;
  }

  .hero-content {
    margin-bottom: 48px;
  }

  .hero-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
  }

  .hero-title span {
    color: var(--primary-color);
  }

  .hero-description {
    font-size: 18px;
    color: var(--muted-color);
    margin-bottom: 32px;
  }

  .hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
  }

  .hero-image {
    position: relative;
  }

  .hero-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .hero-decor-1 {
    position: absolute;
    bottom: -24px;
    left: -24px;
    width: 96px;
    height: 96px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    opacity: 0.2;
    filter: blur(24px);
  }

  .hero-decor-2 {
    position: absolute;
    top: -24px;
    right: -24px;
    width: 120px;
    height: 120px;
    background-color: var(--primary-color);
    border-radius: 50%;
    opacity: 0.2;
    filter: blur(24px);
  }

  /* 统计数据 */
  .stats {
    padding: 64px 0;
    background-color: var(--white-color);
  }

  .stats-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .stat-card {
    background-color: var(--light-color);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
  }

  .stat-value {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
  }

  .stat-label {
    color: var(--muted-color);
  }

  /* 主要内容区域 */
  .content {
    padding: 90px 0;
    background-color: var(--white-color);
  }

  .content-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .content-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
  }

  .content-card:hover {
    box-shadow: var(--card-hover-shadow);
    transform: translateY(-4px);
  }

  .content-card-header {
    position: relative;
    height: 240px;
    overflow: hidden;
  }

  .content-card-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .content-card-header:hover img {
    transform: scale(1.1);
  }

  .content-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    padding: 24px;
  }

  .content-card-tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
  }

  .content-card-tag.life {
    background-color: var(--secondary-color);
    color: var(--white-color);
  }

  .content-card-tag.software {
    background-color: var(--primary-color);
    color: var(--white-color);
  }

  .content-card-tag.game {
    background-color: var(--secondary-color);
    color: var(--white-color);
  }

  .content-card-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--white-color);
  }

  .content-card-body {
    padding: 24px;
  }
  .content-card-body span.p{
    padding: 0 1rem;
    display: inline-block;
  }

  .content-card-body i{
    padding: 0 5px;
    color: #FFF;
    background-color: #E66E00;
    border-radius: 15px;
    display: inline-block;
    width: 28px;
    text-align: center;
  }
  .content-card-body h3{
    margin-top: 2rem;
  }

  .content-card-description {
    color: var(--muted-color);
    margin-bottom: 24px;
  }

  .content-item {
    display: flex;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #F2F3F5;
  }

  .content-item span {
    font-size: 0.8rem;
  }

  .content-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
  }

  .content-item-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    margin-right: 16px;
  }

  .content-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .content-item-title {
    font-weight: 600;
    margin-bottom: 4px;
    transition: color 0.3s ease;
    padding-bottom: 0.3rem;
  }
  .content-item-title a{
    font-size: 0.9rem;
    color: #000;
  }

  .content-item-title:hover {
    color: var(--primary-color);
  }

  .content-item-description {
    font-size: 0.8rem;
    color: var(--muted-color);
    padding-bottom: 1rem;
  }

  .content-card-footer {
    padding: 24px;
    padding-top: 0;
    text-align: right;
  }

  .content-card-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 500;
    transition: color 0.3s ease;
  }

  .content-card-link:hover {
    color: #0047CC;
  }

  .content-card-link i {
    margin-left: 8px;
  }

  /* 热门内容 */
  .popular {
    padding: 64px 0;
    background: linear-gradient(to bottom, var(--white-color), #E8F3FF);
  }

  .popular-header {
    margin-bottom: 48px;
  }

  .popular-controls {
    display: flex;
    justify-content: center;
    margin-top: 24px;
  }

  .popular-control {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #E5E6EB;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 8px;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .popular-control:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    border-color: var(--primary-color);
  }

  .popular-slider {
    display: flex;
    overflow-x: auto;
    gap: 24px;
    padding-bottom: 24px;
    flex-wrap: wrap;
    justify-content: space-around;
  }

  .popular-slider::-webkit-scrollbar {
    display: none;
  }

  .popular-card {
    width: 31%;
    scroll-snap-align: start;
    background-color: var(--white-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
  }

  .popular-card:hover {
    box-shadow: var(--card-hover-shadow);
    transform: translateY(-4px);
  }

  .popular-card-header {
    position: relative;
    height: 180px;
    overflow: hidden;
  }

  .popular-card-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .popular-card-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: var(--secondary-color);
    color: var(--white-color);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
  }

  .popular-card-body {
    padding: 24px;
  }

  .popular-card-meta {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: var(--muted-color);
    margin-bottom: 12px;
  }

  .popular-card-meta span {
    margin-right: 16px;
    display: flex;
    align-items: center;
  }

  .popular-card-meta i {
    margin-right: 4px;
  }

  .popular-card-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    transition: color 0.3s ease;
    color: #000;
  }

  .popular-card-title:hover {
    color: var(--primary-color);
  }

  .popular-card-description {
    font-size: 14px;
    color: var(--muted-color);
    margin-bottom: 16px;
    line-height: 1.5;
  }

  .popular-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .popular-card-author {
    display: flex;
    align-items: center;
  }

  .popular-card-author img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-right: 8px;
  }

  .popular-card-author span {
    font-size: 14px;
    font-weight: 500;
  }

  .popular-card-category {
    font-size: 14px;
    color: var(--muted-color);
  }

  /* 订阅区域 */
  .subscribe {
    padding: 64px 0;
    background-color: var(--primary-color);
    color: var(--white-color);
  }

  .subscribe-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
  }

  .subscribe-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
  }

  .subscribe-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 48px;
  }

  .subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 500px;
    margin: 0 auto;
  }

  .subscribe-form input {
    padding: 16px 24px;
    border-radius: 8px;
    border: none;
    font-size: 16px;
  }

  .subscribe-form button {
    padding: 16px 24px;
    background-color: var(--secondary-color);
    color: var(--white-color);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .subscribe-form button:hover {
    background-color: #E66E00;
  }

  .subscribe-note {
    margin-top: 24px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
  }

  /* 页脚 */
  .footer {
    background-color: var(--dark-color);
    color: var(--white-color);
    padding: 64px 0;
  }

  .footer-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
  }

  .footer-logo i {
    font-size: 24px;
    color: var(--primary-color);
    margin-right: 8px;
  }

  .footer-logo span {
    font-size: 20px;
    font-weight: 700;
  }

  .footer-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
  }

  .footer-social {
    display: flex;
    gap: 16px;
  }

  .footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    transition: background-color 0.3s ease;
  }

  .footer-social a:hover {
    background-color: var(--primary-color);
  }

  .footer-heading {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
  }

  .footer-links {
    list-style: none;
  }

  .footer-links li {
    margin-bottom: 16px;
  }

  .footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .footer-links a:hover {
    color: var(--primary-color);
  }

  .footer-contact {
    list-style: none;
  }

  .footer-contact li {
    display: flex;
    margin-bottom: 16px;
  }

  .footer-contact i {
    width: 24px;
    margin-right: 16px;
    color: var(--primary-color);
  }

  .footer-contact span {
    color: rgba(255, 255, 255, 0.7);
  }

  .footer-bottom {
    margin-top: 0px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
  }

  .footer-legal {
    list-style: none;
    display: flex;
    gap: 24px;
    flex-direction: column;
  }

  .footer-legal li {
    display: block;
  }

  .footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .footer-legal a:hover {
    color: var(--primary-color);
  }

  /* 返回顶部按钮 */
  .back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
  }

  .back-to-top:hover {
    background-color: #0047CC;
  }

  .back-to-top.active {
    opacity: 1;
    visibility: visible;
  }

  /* 媒体查询 - 平板 */
  @media (min-width: 768px) {
    .navbar-menu {
      display: flex;
    }
    
    .navbar-search {
      display: flex;
      align-items: center;
    }
    
    .navbar-toggle {
      display: none;
    }
    
    .mobile-menu {
      display: none;
    }
    
    .hero-container {
      flex-direction: row;
      align-items: center;
    }
    
    .hero-content {
      width: 50%;
      margin-right: 48px;
      margin-bottom: 0;
    }
    
    .hero-image {
      width: 50%;
    }
    
    .stats-container {
      grid-template-columns: repeat(4, 1fr);
    }
    
    .content-container {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-container {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom {
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
    }
  }

    .p-241381433{margin:0px;padding:0px;box-sizing:border-box;display:flex;justify-content:space-between;align-items:center;width:100%;}
    .p-241381433 span{font-size: 0.8rem;}
    .span-506994221{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}
    .a-892677462{color:rgb(153, 153, 153);text-decoration:none;display:flex;justify-content:flex-start;align-items:center;cursor:pointer;}
    .li-923978948{margin:0px;padding:0px 0px 5px 0px;box-sizing:border-box;list-style:none;background:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAKCAYAAABmBXS+AAAAb0lEQVQoU2O8cePGDgYGhjINDY1LDDgA440bN/4zMjL+ZWBgmP/79+9aHR2dF+hqwYpggv/////KxMTU/ePHjx59ff2vMHEURUgmPGdkZKxTU1Obx8jI+A+XIpj6i////y+jSBFu6/A6nJggIBiYAHmvVaE7rXVbAAAAAElFTkSuQmCC") left center no-repeat;}
    .li-923978948:hover a span{color:rgb(240, 64, 64) !important;}
    .a-892677462:hover{color:rgb(242, 110, 69);text-decoration:none;}
    .a-892677462:hover span{color:rgb(240, 64, 64) !important;}
    .span-506994221:nth-child(1){width:235px;margin-left:20px;font-size:14px;font-family:"PingFang SC";font-weight:400;color:rgb(51, 51, 51);}

  /* 媒体查询 - 桌面 */
  @media (min-width: 1024px) {
    .content-container {
      grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-container {
      grid-template-columns: repeat(4, 1fr);
    }
  }

.font-611412879{font-family:"Microsoft YaHei";display:block;float:left;height:24px;line-height:24px;font-size:18px;font-weight:bold;margin-top:13px;}
.h4-1122135015{margin:0px;padding:0px;height:50px;font-size:18px;color:rgb(51, 51, 51);text-indent:15px;border-bottom:1px solid rgb(235, 235, 235);font-family:"microsoft yahei";}
.i-1677471707{width:5px;height:24px;background:rgb(255, 119, 0);float:left;margin-top:13px;margin-left:5px;}
.content-items .list-good-item{
  padding: 1rem 0;border-bottom: 1px solid #eee;
}

.content-items .list-good-title{
  font-size:0.9rem;
  color:#333;
}

.a-41718815{color:rgb(106, 106, 106);text-decoration:none;line-height:30px;border:1px solid rgb(228, 228, 228);display:block;padding:0px 14px;font-size: 0.9rem;}
.span-91698262{float:left;margin-right:2px;margin:0px 3px;}
.div-180290671{margin:25px auto 0px;padding:0px 0px 15px;text-size-adjust:none;width:fit-content;}
.a-1933000870{color:rgb(255, 255, 255);text-decoration:none;line-height:30px;border:1px solid rgb(239, 132, 26);display:block;padding:0px 14px;background:rgb(239, 132, 26);}
.div-180290671::after{visibility:hidden;display:block;font-size:0px;content:" ";clear:both;height:0px;}
.a-41718815:hover{color:rgb(255, 255, 255);border:1px solid rgb(239, 132, 26);background:rgb(239, 132, 26);}
.a-1933000870:hover{color:rgb(255, 255, 255);border:1px solid rgb(239, 132, 26);background:rgb(239, 132, 26);}