@charset "UTF-8";
/* 
Theme Name: A2C WEBSITE
Theme URI: https://A2C.chat/
Author: mrcitier
Description: A A2C WEBSITE WordPress theme
Version: 1.0
Text Domain: A2C-WEBSITE-theme
*/
@import "./assets/css/font/iconfont.css";
@import "./assets/css/remix/remixicon.css";
@import "./assets/css/reset.css";
/* 侧边菜单 */
.sidebar-wrap {
  width: 220px;
  height: 100%;
  background: #f9f9f9;
  position: fixed;
  top: 0;
  left: 0;
  transition: width 0.3s ease-in-out;
  z-index: 10;
}

.sidebar-wrap h1 {
  width: 100%;
  height: 70px;
  background-color: #fff;
  text-align: center;
}

.sidebar-wrap h1 img {
  height: 40px;
}

.sidebar-inner {
  width: 100%;
  height: 100%;
  padding-top: 10px;
  overflow-y: auto;
}
.sidebar-inner .sidebar-item {
  padding: 0 8px;
}
.sidebar-inner .sidebar-item.has-sub ul {
  background: #f3f3f3;
  display: none;
  transition: all 0.3s ease-in-out;
}
.sidebar-inner .sidebar-item.has-sub ul a{
  display: block;
  padding: 10px 10px 10px 52px;
}
/* .sidebar-inner .sidebar-item.has-sub:hover ul {
  display: block;
} */
.sidebar-inner .sidebar-item.has-sub > a::after {
  content: "\ea6e";
  font-family: "remixicon" !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.sidebar-inner .sidebar-item > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 10px 16px 10px 20px;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
  color: #515C6B;
}
.sidebar-inner .sidebar-item > a:hover {
  background: #f1404b;
  color: #fff;
}
.sidebar-inner .sidebar-item > a .iconfont {
  margin-right: 8px;
  font-size: 20px;
}
.sidebar-inner .sidebar-item > a .sidebar-item-title {
  font-size: 14px;
  vertical-align: text-bottom;
}

body.sidebar-collapsed .sidebar-wrap {
  width: 60px;
}
body.sidebar-collapsed .sidebar-wrap .logo {
  width: 50px;
  height: 50px;
  background: url(./assets/images/logo.png) no-repeat center center;
  background-size: contain;
}
body.sidebar-collapsed .sidebar-wrap .logo img {
  display: none;
}
body.sidebar-collapsed .sidebar-wrap .sidebar-item-title {
  display: none;
}
body.sidebar-collapsed .sidebar-wrap .sidebar-inner .sidebar-item > a {
  width: 100%;
  padding: 8px 0;
  text-align: center;
  justify-content: center;
}
body.sidebar-collapsed .sidebar-wrap .sidebar-inner .sidebar-item > a::after {
  display: none;
}
body.sidebar-collapsed .sidebar-wrap .sidebar-inner .sidebar-item > a .iconfont {
  margin-right: 0;
}
body.sidebar-collapsed .main-body {
  padding-left: 60px;
}
body.sidebar-collapsed .header-wrap.fixed-header {
  left: 60px;
}

.main-body {
  min-height: 100%;
  padding-left: 220px;
  background-color: #f9f9f9;
  transition: padding-left 0.3s ease-in-out;
}
.main-body-inner {
  background-color: #F5F5F5;
  height: 100%;
}

/* 顶部导航 */
.header-wrap {
  color: #fff;
  line-height: 70px;
  z-index: 9;
  padding: 0 20px;
  background-color: transparent;
  transition: all 0.3s ease-in-out;
  position: fixed;
  top: 0;
  right: 0;
  left: 220px;
  width: auto;
}
.header-wrap.fixed-header {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.header-wrap .sidebar-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
}
.header-wrap a {
  color: #fff;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.header-wrap .header-left ul li {
  position: relative;
  padding: 0 15px;
}
.header-wrap .header-left ul li > ul {
  position: absolute;
  min-width: 160px;
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  background: #fff;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
  box-shadow: 1px 5px 5px rgba(0, 0, 0, 0.2);
  top: 75%;
  border: 1px solid #f7f7f7;
  left: -8%;
}
.header-wrap .header-left ul li > ul li {
  padding: 0;
}
.header-wrap .header-left ul li.menu-item-has-children > a::after {
  content: "\ea4e";
  font-family: "remixicon" !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
}
.header-wrap .header-left ul li:hover > ul {
  opacity: 1;
  z-index: 1;
  overflow: visible;
  visibility: visible;
  transform: translateY(0);
}
.header-wrap .header-left ul li:hover.menu-item-has-children > a::after {
  content: "\ea78";
}
.header-wrap .header-left ul li .sub-menu {
  line-height: 1.5;
  overflow: hidden;
}
.header-wrap .header-left ul li .sub-menu li {
  border-bottom: 1px solid #f6f6f6;
}
.header-wrap .header-left ul li .sub-menu li:last-child {
  border-bottom: none;
}
.header-wrap .header-left ul li .sub-menu li a {
  color: #333;
  padding: 15px 15px 15px 20px;
}
.header-wrap .header-left ul li .sub-menu li a:hover {
  color: #f1404b;
}
.sub-page .header-wrap, .header-wrap.fixed-header {
  background-color: #fff;
  color: #282A2D;
}
.sub-page .header-wrap a, .header-wrap.fixed-header a {
  color: #282A2D;
}
.sub-page .header-wrap a .menu-icon-home, .header-wrap.fixed-header a .menu-icon-home {
  background-image: url(./assets/images/icons/menu-home-active.png);
}
.sub-page .header-wrap a .menu-icon-tool, .header-wrap.fixed-header a .menu-icon-tool {
  background-image: url(./assets/images/icons/menu-tool-active.png);
}
.sub-page .header-wrap a .menu-icon-contact, .header-wrap.fixed-header a .menu-icon-contact {
  background-image: url(./assets/images/icons/menu-contact-active.png);
}
.sub-page .header-wrap a .menu-icon-news, .header-wrap.fixed-header a .menu-icon-news {
  background-image: url(./assets/images/icons/menu-news-active.png);
}
.sub-page .header-wrap a .menu-icon-recommend, .header-wrap.fixed-header a .menu-icon-recommend {
  background-image: url(./assets/images/icons/menu-recommend-active.png);
}
.sub-page .header-wrap a .menu-icon-tag, .header-wrap.fixed-header a .menu-icon-tag {
  background-image: url(./assets/images/icons/menu-tag-active.png);
}

.main-body-inner {
  padding-top: 70px;
}

.menu-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.menu-icon-home {
  background-image: url(./assets/images/icons/menu-home.png);
}

.menu-icon-tool {
  background-image: url(./assets/images/icons/menu-tool.png);
}

.menu-icon-contact {
  background-image: url(./assets/images/icons/menu-contact.png);
}

.menu-icon-news {
  background-image: url(./assets/images/icons/menu-news.png);
}

.menu-icon-recommend {
  background-image: url(./assets/images/icons/menu-recommend.png);
}

.menu-icon-tag {
  background-image: url(./assets/images/icons/menu-tag.png);
}

.search-wrap {
  position: relative;
  margin-top: -75px;
  padding-top: 100px;
  padding-bottom: 60px;
}

.search-wrap.css-img,
.search-wrap.css-bing {
  background-color: #1b1d1f;
  background-size: cover;
  background-position: center;
}

.search-wrap.canvas-fx {
  background-color: #1b1d1f;
}

.post-top {
  padding-bottom: 120px;
}

.search-wrap.no-bg {
  padding-bottom: 10px;
}

.search-wrap.css-color {
  background-size: 400%;
  background-position: 0% 100%;
}
@keyframes gradient {
  50% {
    background-position: 100% 0;
  }
}
.search-form form {
  width: 800px;
  height: 50px;
  padding-left: 20px;
  padding-right: 10px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 25px;
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.search-form form .search-input {
  background: transparent;
  border: none;
  color: #fff;
}
.search-form form button {
  width: 50px;
  height: 50px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #fff;
}

.notice-wrap {
  display: none;
  align-items: center;
  justify-content: center;
  width: 600px;
  height: 33px;
  line-height: 33px;
  border-radius: 17px;
  padding: 0 16px;
  background: rgba(0, 0, 0, 0.3);
  gap: 10px;
  color: #fff;
  transition: all 0.3s ease-in-out;
}
.notice-wrap.notice-show {
  display: flex;
}
.notice-wrap:hover {
  background: rgba(0, 0, 0, 0.5);
}
.notice-wrap .notice-list {
  width: 100%;
  height: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.notice-wrap .notice-list a {
  display: inline-block;
  width: 100%;
  color: #fff;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.news-wrap {
  width: 100%;
}
.news-wrap .wrap {
  gap: 8px;
}
.news-wrap .news-banner {
  width: 50%;
  height: 100%;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
}
.news-wrap .news-banner .mySwiper {
  width: 100%;
  height: 100%;
}
.news-wrap .news-banner .mySwiper .swiper-slide a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.news-wrap .news-banner .mySwiper .swiper-slide a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-wrap .news-banner .mySwiper .swiper-slide a p {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px 0 6px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  color: #fff;
  font-size: 14px;
  line-height: 30px;
  text-align: center;
  font-size: 15px;
}
.news-wrap .news-recommend {
  width: 25%;
  height: 100%;
  gap: 8px;
}
.news-wrap .news-recommend a {
  display: block;
  background: #fff;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  flex: 1;
}
.news-wrap .news-recommend a:hover img {
  transform: scale(1.1);
}
.news-wrap .news-recommend a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.news-wrap .news-recommend a p {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px 0 6px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  color: #fff;
  font-size: 14px;
  line-height: 30px;
  text-align: center;
  font-size: 15px;
}
.news-wrap .news-list {
  width: 25%;
  min-height: 100%;
  background-color: #fff;
  border-radius: 8px;
  padding: 16px;
  position: relative;
}
.news-wrap .news-list h3 {
  padding-bottom: 16px;
}
.news-wrap .news-list h3 span {
  display: inline-block;
  width: 75px;
  height: 16px;
  font-size: 0;
  color: #333;
  background: url(./assets/images/icons/notice.png) no-repeat center center;
  background-size: contain;
}
.news-wrap .news-list h3 a {
  color: #8693AB;
  font-size: 13px;
  font-weight: normal;
}
.news-wrap .news-list .news-list-item {
  overflow-y: auto;
  height: calc(100% - 100px);
  position: absolute;
  right: 0;
  left: 12px;
  margin-top: 30px;
}
.news-wrap .news-list .news-list-item li {
  position: relative;
}
.news-wrap .news-list .news-list-item li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #FA969D;
  position: absolute;
  left: 3px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.news-wrap .news-list .news-list-item li a {
  display: block;
  padding: 10px 0 10px 15px;
  color: #505A71;
  font-size: 14px;
  line-height: 20px;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.news-wrap .news-list .news-list-item li a:hover {
  color: #f1404b;
}
.news-wrap .news-list .news-list-more {
  border-top: 1px solid #E0E0E0;
  padding-top: 16px;
  font-size: 12px;
}
.news-wrap .news-list .news-list-more li{
  width: 50%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.recommend-wrap {
  margin-top: 24px;
  margin-bottom: 24px;
  height: 282px;
}
.recommend-wrap .wrap {
  background-color: #fff;
  border-radius: 8px;
  padding: 8px;
  gap: 8px;
  height: 100%;
}
.recommend-wrap .wrap .recommend-app {
  flex: 1;
  gap: 8px;
}
.recommend-wrap .wrap .recommend-app .recommend-app-tab {
  overflow-x: auto;
  background: #fff;
  gap: 5px;
  /* 隐藏滚动条 */
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.recommend-wrap .wrap .recommend-app .recommend-app-tab::-webkit-scrollbar {
  display: none;
}
.recommend-wrap .wrap .recommend-app .recommend-app-tab a {
  display: block;
  width: 65px;
  height: 65px;
  border-radius: 8px;
  text-align: center;
  font-size: 12px;
  color: #6C757D;
}
.recommend-wrap .wrap .recommend-app .recommend-app-tab a i {
  font-size: 28px;
}
.recommend-wrap .wrap .recommend-app .recommend-app-tab a.active {
  background: #E6E6E6;
}
.recommend-wrap .wrap .recommend-app .recommend-app-tab a p {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.recommend-wrap .wrap .recommend-app .recommend-app-tab a:hover {
  background: #f5f5f5;
}
.recommend-wrap .wrap .recommend-app .recommend-app-list {
  background: #F2F2F2;
  border-radius: 8px;
  overflow-y: auto;
}
.recommend-wrap .wrap .recommend-app .recommend-app-list li {
  padding: 10px;
  flex: none;
  width: auto;
}
.recommend-wrap .wrap .recommend-app .recommend-app-list li a {
  display: block;
  text-align: center;
  width: 70px;
}
.recommend-wrap .wrap .recommend-app .recommend-app-list li a span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 70px;
  overflow: hidden;
  background: #FFFFFF;
  border-radius: 20px;
}
.recommend-wrap .wrap .recommend-app .recommend-app-list li a span img {
  width: 70%;
  height: 70%;
  -o-object-fit: cover;
     object-fit: cover;
}
.recommend-wrap .wrap .recommend-app .recommend-app-list li a p {
  font-size: 12px;
  color: #515C6B;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.recommend-wrap .wrap .recommend-news {
  width: 300px;
  box-shadow: 0px 1px 6px 0px rgba(2, 10, 24, 0.06);
}
.recommend-wrap .wrap .recommend-news h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 400;
  color: #282A2D;
  padding: 15px 16px 12px;
  border-bottom: 1px solid #F2F2F2;
  line-height: 1;
}
.recommend-wrap .wrap .recommend-news h3 i {
  font-size: 20px;
}
.recommend-wrap .wrap .recommend-news ul.recommend-news-list {
  padding: 8px 0;
  height: 100%;
  overflow-y: auto;
}
.recommend-wrap .wrap .recommend-news ul.recommend-news-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 7px 16px;
}
.recommend-wrap .wrap .recommend-news ul.recommend-news-list li a .recommend-news-thumb {
  width: 85px;
  height: 66px;
  overflow: hidden;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
}
.recommend-wrap .wrap .recommend-news ul.recommend-news-list li a .recommend-news-thumb:hover img {
  transform: scale(1.1);
}
.recommend-wrap .wrap .recommend-news ul.recommend-news-list li a .recommend-news-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.recommend-wrap .wrap .recommend-news ul.recommend-news-list li a dl {
  flex: 1;
}
.recommend-wrap .wrap .recommend-news ul.recommend-news-list li a dl dt {
  font-size: 14px;
  color: #282A2D;
}
.recommend-wrap .wrap .recommend-news ul.recommend-news-list li a dl dd {
  font-size: 12px;
  color: #6C757D;
}
.recommend-wrap .wrap .recommend-news ul.recommend-news-list li a:hover dl dt {
  color: #f1404b;
}

.links-wrap .wrap {
  gap: 20px;
}
.links-wrap .links-category {
  padding-top: 20px;
}
.links-wrap .links-category dt {
  color: #4B5563;
  font-size: 16px;
}
.links-wrap .links-category dt i {
  font-size: 20px;
  color: rgb(81, 92, 107);
}
.links-wrap .links-category dd,.category-tabs {
  margin-top: 20px;
}
.links-wrap .links-category dd a ,.category-tabs .tab{
  font-size: 14px;
  padding: 5px 10px;
  line-height: 1;
  background: #E5E7EB;
  border-radius: 4px;
  color: #4B5563;
  margin-right: 15px;
  cursor: pointer;
}
.links-wrap .links-category dd a.active, .links-wrap .links-category dd a:hover,.category-tabs .tab.active {
  background: #F1404B;
  color: #fff;
}
.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}
.links-list {
  margin-left: -10px;
  margin-right: -10px;
}
.links-list li {
  width: 16.6667%;
  padding: 0 10px;
  margin-top: 20px;
}
.links-list li a {
  width: 100%;
  height: 75px;
  background: #FFFFFF;
  box-shadow: 0px 1px 3px 0px rgba(2, 10, 24, 0.16);
  border-radius: 8px;
  padding: 18px 16px;
  transition: transform 0.3s ease-in-out;
}
.links-list li a:hover {
  transform: translateY(-5px) scale(1.01);
}
.links-list li a .links-thumb {
  width: 38px;
  height: 38px;
  overflow: hidden;
  border-radius: 4px;
}
.links-list li a .links-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.footer-banner-wrap {
  padding-top: 24px;
  padding-bottom: 40px;
}

.footer-wrap {
  width: 100%;
  padding: 26px 0;
  background-color: #fff;
}
.footer-wrap p {
  font-size: 12px;
  color: #6C757D;
  line-height: 20px;
}
.footer-wrap p a {
  padding: 0 10px;
}

.page-title {
  font-weight: bold;
  font-size: 34px;
  color: #212121;
}

.details-wrap {
  width: 1200px;
  margin: 0 auto;
  padding-bottom: 40px;
  min-height: 100vh;
}
.details-wrap .crumb-wrap {
  padding: 20px 0;
}
.details-wrap .crumb-wrap a {
  color: #6C757D;
  font-size: 14px;
}
.details-wrap .crumb-wrap a:hover {
  color: #f1404b;
}
.details-wrap .details-header {
  padding: 30px 20px 18px;
  background-color: #fff;
  border-radius: 12px;
}
.details-wrap .details-header .details-header-content {
  margin-bottom: 28px;
}
.details-wrap .details-header .details-header-content .link-thumbnail {
  position: relative;
  width: 49%;
  padding-bottom: 31%;
  overflow: hidden;
  border-radius: 12px;
}
.details-wrap .details-header .details-header-content .link-thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.details-wrap .details-header .details-header-content .link-thumbnail .link-like {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 60px;
  height: 60px;
  background: #F7F8FA;
  border-radius: 50%;
  line-height: 1;
  z-index: 1;
}
.details-wrap .details-header .details-header-content .link-thumbnail .link-like:hover {
  background: #f1404b;
  color: #fff;
}
.details-wrap .details-header .details-header-content .link-info {
  padding-left: 25px;
}
.details-wrap .details-header .details-header-content .link-info h2 {
  font-size: 28px;
  line-height: 1;
  gap: 12px;
}
.details-wrap .details-header .details-header-content .link-info .link-desc {
  width: 96%;
  font-size: 14px;
  line-height: 1.8;
  color: #6C757D;
  overflow-y: auto;
  height: calc(100% - 50px);
  position: absolute;
  bottom: 0;
}
.details-wrap .details-header .details-header-info {
  border-top: 1px solid #eee;
  padding-top: 18px;
}
.details-wrap .website-traffic {
  padding: 38px 36px;
  background-color: #fff;
  gap: 70px;
}
.details-wrap .website-traffic h6 {
  font-size: 15px;
  color: #212121;
  margin-bottom: 10px;
}
.details-wrap .website-traffic h6::before {
  content: "";
  display: inline-block;
  width: 2px;
  height: 16px;
  background: #F1404B;
  vertical-align: middle;
  margin-right: 8px;
}
.details-wrap .website-traffic p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #eee;
  padding: 16px 0;
}
.details-wrap .website-traffic p:last-child {
  border-bottom: none;
}
.details-wrap .website-traffic p i {
  margin-right: 22px;
}

.page-box {
  padding: 30px;
  border-radius: 10px;
}
.content-box {
  padding: 30px;
  background-color: #fff;
  border-radius: 12px;
}

.link-tag {
  display: inline-block;
  padding: 0 12px;
  height: 28px;
  line-height: 28px;
  text-align: center;
  background: #FFF2F3;
  border-radius: 4px;
  font-size: 13px;
  color: #F1404B;
  font-weight: normal;
  cursor: pointer;
}
.link-tag:not(:last-child) {
  margin-right: 8px;
}
.link-tag:hover {
  background: #f1404b;
  color: #fff;
}

.cat-title {
  padding: 35px 0;
  font-size: 18px;
  color: #282A2D;
  position: relative;
  margin-top: 10px;
}
.cat-title::before {
  content: "";
  width: 40px;
  height: 40px;
  background: linear-gradient(45deg, rgba(241, 64, 75, 0.2) 0%, rgba(241, 64, 75, 0) 100%);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
}
.cat-title span {
  display: inline-block;
  padding: 0 12px;
  height: 28px;
  line-height: 28px;
  text-align: center;
}

.related-products {
  margin: -14px -14px 0;
}
.related-products li {
  width: 25%;
  padding: 14px;
}
.related-products li .related-products-item {
  display: block;
  width: 100%;
  border-radius: 12px;
  padding: 22px 17px;
  transition: all 0.3s ease-in-out;
}
.related-products li .related-products-item:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0px 1px 10px 0px rgba(2, 10, 24, 0.16);
}
.related-products li .related-products-item .related-products-thumb {
  display: block;
  width: 100%;
  overflow: hidden;
  position: relative;
  padding-top: 64%;
}
.related-products li .related-products-item .related-products-thumb:hover img {
  transform: scale(1.05);
}
.related-products li .related-products-item .related-products-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.3s ease-in-out;
}

.table-row {
  padding: 10px 16px;
  border-bottom: 1px solid #F0F2F3;
}
.table-row:last-child, .table-row:first-child {
  border-bottom: none;
}
.table-row dt, .table-row dd {
  flex: 1;
}
.table-row dt {
  width: 80px;
  flex: 0 0 80px;
}
.table-row > dd:last-child {
  text-align: center;
  width: 30px;
  flex: 0 0 30px;
}

.table-header {
  background: #F6F7FB;
  border-radius: 10px;
  color: #73787B;
}
.table-header span {
  font-size: 14px;
}

.status-success, .status-warning {
  font-size: 14px;
  line-height: 14px;
  padding: 6px 8px;
  background: #EBF9EB;
  border-radius: 6px;
  color: #3CC13B;
}

.status-warning {
  background: #FAF1EB;
  color: #F16514;
}

.ip-textarea {
  width: 100%;
  padding: 20px;
  height: 250px;
  background: #FFFFFF;
  border-radius: 8px;
  border: 1px solid #E8E9EA;
}

::-webkit-scrollbar {
  width: 4px;
  background-color: #f9f9f9;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}

@media screen and (max-width: 1440px) {
  .details-wrap {
    width: 100%;
    padding-left: 30px;
    padding-right: 30px;
  }
}
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
/* 顶部搜索弹窗 */
.search-dialog {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  padding: 20px;
  z-index: 9999;
}
.search-dialog-content {
  width: 100%;
  max-width: 600px;
  background: #fff;
  padding: 20px;
  box-sizing: border-box;
  border-radius: 6px;
}
.search-dialog-content form {
  width: 100%;
  height: 100%;
  background: #fff;
}
.search-dialog-content form .search-input{
  border: 1px solid #eee;
  border-radius: 6px;
  padding: 10px 20px;
  width: 100%;
  height: 40px;
}
.search-dialog-content form .search-button{
  border: 1px solid #F1404B;
  background: #F1404B;
  border-radius: 6px;
  width: 40px;
  height: 40px;
  color: #fff;
  font-size: 16px;
}
.search-dialog-close{
  border: 1px solid #fff;
  border-radius: 100%;
  width: 35px;
  height: 35px;
  text-align: center;
  color: #fff;
  font-size: 28px;
}

/* 文章列表样式 */
.posts-wrap {
  margin-bottom: 30px;
  border-radius: 8px;
  overflow: hidden;
}

.posts-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.post-card {
  padding: 15px;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.post-card:hover {
  background-color: #f9f9f9;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.post-card:last-child {
  border-bottom: none;
}

.post-card-inner {
  display: flex;
  gap: 20px;
}

.post-thumbnail {
  flex: 0 0 200px;
  height: 140px;
  overflow: hidden;
  border-radius: 6px;
}

.post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.post-card:hover .post-thumbnail img {
  transform: scale(1.05);
}

.post-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.post-content.has-thumbnail {
  max-width: calc(100% - 220px);
}

.post-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.4;
}

.post-title a {
  color: #333;
  text-decoration: none;
}

.post-title a:hover {
  color: #ff5c64;
}

.post-excerpt {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
  line-height: 1.6;
}

.post-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 13px;
  color: #999;
}

.post-meta i {
  margin-right: 5px;
}

.post-categories {
  display: flex;
  gap: 8px;
  margin-left: auto;
}

.post-category {
  padding: 2px 8px;
  background-color: #f0f0f0;
  border-radius: 4px;
  color: #666;
  font-size: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.post-category:hover {
  background-color: #ff5c64;
  color: #fff;
}

/* 分页样式 */
.pagination-wrap {
  text-align: center;
}

.pagination-wrap .page-numbers {
  display: inline-flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 5px;
}

.pagination-wrap .page-numbers li {
  display: inline-block;
}

.pagination-wrap .page-numbers a,
.pagination-wrap .page-numbers span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 4px;
  background-color: #f5f5f5;
  color: #666;
  text-decoration: none;
  transition: all 0.3s ease;
}

.pagination-wrap .page-numbers a:hover {
  background-color: #e0e0e0;
}

.pagination-wrap .page-numbers .current {
  background-color: #ff5c64;
  color: #fff;
}

.pagination-wrap .page-numbers .prev,
.pagination-wrap .page-numbers .next {
  width: auto;
  padding: 0 15px;
}

/* 分类头部样式 */
.category-header {
  margin: 20px 0 0;
}

.category-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.category-description {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* 响应式样式 */
@media (max-width: 768px) {
  .post-card-inner {
    flex-direction: column;
    gap: 15px;
  }
  
  .post-thumbnail {
    flex: 0 0 auto;
    height: 180px;
    width: 100%;
  }
  
  .post-content.has-thumbnail {
    max-width: 100%;
  }
  
  .post-meta {
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .post-categories {
    margin-left: 0;
    margin-top: 10px;
    width: 100%;
  }
}

/* 标签页面样式 */
.tags-wrap,
.tags-categories,
.popular-tags,
.content-selection,
.content-list {
  border-radius: 8px;
  overflow: hidden;
}

.section-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f0f0f0;
  color: #333;
}

.tag-category-title {
  font-size: 18px;
  font-weight: 600;
  margin: 20px 0 15px;
  color: #333;
}

.tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 10px 0;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px 0;
}

.tag-item {
  display: inline-block;
  padding: 6px 12px;
  background-color: #f5f5f5;
  border-radius: 4px;
  color: #555;
  text-decoration: none;
  transition: all 0.3s ease;
  line-height: 1.4;
}

.tag-item:hover {
  background-color: #ff5c64;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 3px 10px rgba(76, 183, 255, 0.2);
}

.tag-count {
  font-size: 0.85em;
  opacity: 0.8;
  margin-left: 3px;
}

.no-tags {
  padding: 20px;
  text-align: center;
  background-color: #f9f9f9;
  border-radius: 4px;
  color: #888;
}

/* 标签头部样式 */
.tag-header {
  margin: 20px 0 0;
}

.tag-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.tag-description {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* 选择界面样式 */
.selection-options {
  display: flex;
  gap: 30px;
  margin-top: 20px;
}

.selection-option {
  flex: 1;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 8px;
  border: 1px solid #eee;
  transition: all 0.3s ease;
}

.selection-option:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  border-color: #ddd;
}

.selection-option h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.selection-option p {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

.btn {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: #ff5c64;
  color: #fff;
}

.btn-primary:hover {
  background-color: #3a9fe0;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(76, 183, 255, 0.3);
}

.preview-items {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px dashed #ddd;
}

.preview-item {
  margin-bottom: 8px;
  padding-left: 15px;
  position: relative;
}

.preview-item:before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #ff5c64;
}

.preview-item a {
  color: #555;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.preview-item a:hover {
  color: #ff5c64;
}

/* 响应式样式 */
@media (max-width: 768px) {
  .selection-options {
    flex-direction: column;
    gap: 20px;
  }
  
  .selection-option {
    width: 100%;
  }
}

/* 推荐应用区域样式 */
/* .recommend-app {
  background-color: #fff;
  border-radius: 12px;
  padding: 20px;
  margin-right: 20px;
} */

/* .recommend-app-tab {
  width: 120px;
  margin-right: 20px;
} */

/* .recommend-app-tab a {
  padding: 15px 10px;
  text-align: center;
  border-radius: 8px;
  margin-bottom: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
  color: #4B5563;
  background-color: #f5f5f5;
}

.recommend-app-tab a:hover,
.recommend-app-tab a.active {
  background-color: #F1404B;
  color: #fff;
} */

/* .recommend-app-tab a i {
  font-size: 24px;
  margin-bottom: 5px;
} */

.recommend-app-list {
  display: none;
  flex-wrap: wrap;
}

.recommend-app-list.active {
  display: flex;
}

/* .recommend-app-list li {
  width: 20%;
  padding: 10px;
} */

/* .recommend-app-list li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px 10px;
  border-radius: 8px;
  transition: transform 0.3s ease;
  text-align: center;
}

.recommend-app-list li a:hover {
  transform: translateY(-5px);
  background-color: #f5f5f5;
} */

/* .recommend-app-list li a span {
  width: 48px;
  height: 48px;
  margin-bottom: 8px;
  border-radius: 8px;
  overflow: hidden;
} */

/* .recommend-app-list li a span img {
  width: 100%;
  height: 100%;
  object-fit: cover;
} */

/* .recommend-app-list li a p {
  font-size: 14px;
  color: #333;
  margin: 0;
} */

.recommend-app-list li.empty-item {
  width: 100%;
  padding: 30px 0;
  text-align: center;
}

.recommend-app-list li.empty-item p {
  color: #999;
  font-size: 14px;
}