/**
* Template Name: Anyar - v2.0.0
* Template URL: https://bootstrapmade.com/anyar-free-multipurpose-one-page-bootstrap-theme/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  color: #1a2330; /* 你喜欢的主色，比如深灰 */
  background: #fff;
  font-size: 18px; /* 统一基础字号，推荐16-18px */
}

a {
  color: #364fc7;
  font-size: inherit; /* 继承body字号 */
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

a:hover {
  color: #123aff;
  text-decoration: none;
}


h1, h2, h3, h4, h5, h6 {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  color: #233047;
  font-weight: bold;
  /* 统一字号或分级设置 */
}

h1 { font-size: 2.2em; }
h2 { font-size: 1.8em; }
h3 { font-size: 1.3em; }
h4 { font-size: 1.2em; }
h5, h6 { font-size: 1em; }

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background: #3e4463;
  color: #fff;
  transition: all 0.4s;
}

.back-to-top i:hover {
  background: #7b84b7;
  color: #fff;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #5c7cfa;
  border-top-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  height: 60px;
  font-size: 20px;
  transition: all 0.5s;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.8);
  background-color: #3c3c3c;
}

#topbar.topbar-scrolled {
  top: -60px;
}


#topbar .full-title i {
  color: #fff;
  padding-right: 4px;
}
#topbar .full-title i span{
  color: #ffcc00;
  font-weight: bolder;
}

#topbar .cta {
  background: transparent;
}

#topbar .cta a {
  color: #fff;
  background: #f6b024;
  padding: 6px 24px 8px 24px;
  display: inline-block;
  transition: 0.3s;
  border-radius: 50px;
}

#topbar .cta a:hover {
  background: #f1a40a;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #2d2a2a;
  transition: all 0.5s;
  z-index: 9999;
  padding: 15px 0;
  top: 0px; /* 头部高度，由于删除了topbar，所以头部高度从60改为0 */
}

#header.header-scrolled {
  top: 0;
  background: #2d2a2a;
}

#header .logo {
  font-size: 32px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header .logo a {
  color: #fff;
}

#header .logo img {
  max-height: 44px;
}

@media (max-width: 992px) {
  #header {
    top: 0;
    padding: 15px 0;
    /*background: transparent;*/
  }
  #header .logo {
    font-size: 28px;
  }
}

.header-inner-pages {
  background: rgba(5, 87, 158, 0.9) !important;
}

.topbar-inner-pages {
  background: rgba(6, 98, 178, 0.9) !important;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul {
  display: flex;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  padding: 10px 0 10px 40px; /* 最后一个参数是字两侧间距 */
}

.nav-menu a {
  display: block;
  position: relative;
  color: #fff;
  transition: 0.3s;
  font-size: 18px;
  font-weight: bolder;
  padding: 0 3px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.nav-menu > ul > li > a:before {
  content: "";
  position: absolute;
  width: 120%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #5c7cfa;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.nav-menu a:hover:before, .nav-menu li:hover > a:before, .nav-menu .active > a:before {
  visibility: visible;
  width: 100%;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  color: #fff;
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 8px;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 100px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #032e54;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: #9775fa;
}

.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}


/*page bar*/
.pagination .active > span{
  background-color:#3e4463  !important; /*分页栏色块的颜色*/
  border: #9294c4; /*若不加这行显示的是默认的蓝色外边框*/
}

.pagination a:hover:not(.active) {
  background-color: #9294c4; /*悬停时色块的颜色*/
  color: #3c3c3c; /*悬停时字体的颜色*/
  border-color: none; /*分页栏边框的颜色*/
}


.pagination a, .pagination span {
  height: 40px;    /*统一高度*/
  line-height: 20px; /* 与height值一致，确保单行文本垂直居中 */
  place-items: center; /* 同时实现垂直和水平居中 */
  color: #3c3c3c; /*分页栏字体的颜色*/
  border-color: none /*分页栏边框的颜色，这时为默认的灰色边框*/  
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 15px;
  z-index: 10000;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #fff;
}

.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #8e8ee9;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #8e8ee9;
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(5, 74, 133, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

/*--------------------------------------------------------------
# Main Section
--------------------------------------------------------------*/
#main {
  width: 100%;
  min-height: 100vh;
  /*overflow: hidden;*/
  position: relative;
  background: radial-gradient(circle, #e8edfa 0%, #a6b0ce 100%); 
  background-size: cover;
  position: center;
  padding: 2rem 0; /* Add padding to create space for the footer */
  margin-top: 60px; /* 调整背景使其填到导航栏 */
}

#main .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#main h2 {
  color: #3e4463; /* 标题字体颜色 */
  margin-bottom: 20px;
  font-size: 60px;
  font-weight: 700;
  font-family: 'Baloo Bhaijaan', cursive;
}

#main p {
  width: 100%;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  margin: 0 auto 20px auto;
  color: #233047; /* 修改所有字体颜色 */
}


#main .btn-get-started {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  border: 2px solid #8e8ee9;

}

#main .btn-get-started:hover {
  background: #8e8ee9;
  color: #fff;
  text-decoration: none;
}


@media (max-width: 768px) {
  #main {
    min-height: 100vh;
    /*margin-bottom: 60px;*/
  }
  #main h2{
    font-size: 28px;
  }
}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 150px 0;
  /*overflow: hidden;*/
}

.result-section{
  margin-top: 74px;
}

.section-bg {
  background-color: #f1f8ff;
}

.section-title {
  text-align: center;
  padding-bottom: 10px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #e5e8eb;
  padding: 0 0 10px 0;
  color: #3e4463;
  font-size: 16px;
}

#footer .footer-top {
  background: #e5e8eb; /* 底部背景颜色 */
  padding: 20px 0 0 0; /* 底部距离 */
}

#footer .footer-top .footer-info {
  margin-bottom: 0px;
  padding: 20px 0;
}


#footer .footer-top .footer-info h4 {
  font-size: 16px;
  margin: 0 0 10px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-info p {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 8px;
  padding: 10px 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  color: #3e4463;
}


#footer .footer-top .social-links a {
  font-size: 16px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  color: #3e4463;
  line-height: 1;
  padding: 10px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #f6b024;
  color: #fff;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #1a2330; /* 底部标题字体颜色 */
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 15px;  /* 底部距离 */
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #1a2330; /* 底部箭头颜色 */
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 8px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #1a2330; /* 底部字体颜色 */
  font-size: 15px;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #3e4463; /* 悬停字体颜色 */
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

#footer .footer-top .footer-contact p {
  line-height: 30px;
  font-size: 16px;
}

#footer .footer-top .footer-contact a {
  font-size: 16px;
}

#footer .copyright {
  font-size: 16px;
  color: #050505;
  text-align: center;
  padding-top: 10px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  color: #1a2330; /* 你喜欢的主色，比如深灰 */
}

#footer .copyright a {
  font-size: 16px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  color: #364fc7; 
}

#footer .copyright a:hover {
  font-size: 16px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  color: #0f32e1; 
}

#footer .credits {
  padding-top: 5px;
  text-align: center;
  font-size: 13px;
  color: #3e4463;
}

#footer .credits a {
  color: #f6b024;
}


/*------------my style----------------*/
.table tr th {
  font-size: 16px !important;
}


.ri-information-line{
  color: #4263eb;
}
.arrow{
  color:#4263eb;
}
.download-div{
  text-align: right;
  font-size: 18px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.download-div .ri-download-2-line{
  color: #364fc7;
  cursor: pointer;
}
.download-div .ri-download-2-line:hover{
  color: #0f32e1;
}

#simple_search_form {
  width:100%;
}
.form-control {
  height: 50px;               /* 设置固定高度 */
  line-height: 25px;  
  vertical-align: middle;     /* 针对行内元素的垂直对齐 */
  align-items: center; /* 垂直居中 */
  font-weight: bolder; 
  margin-bottom: 5px;
}
.btn-mine{
  background-color: #c3bef0;
  border-top: 1px solid #a39af7;    /* 上边框：1px宽，紫色 */
  border-right: 1px solid #a39af7;  /* 右边框：1px宽，紫色 */
  border-bottom: 1px solid #a39af7; /* 下边框：1px宽，紫色 */
  border-left: none; 
  color:#1a2330;
  font-weight: bolder;
  border-radius: 0 10px 10px 0;
  padding: 8px 16px 8px 16px;
  cursor: pointer;
  line-height: 1;
}

.btn-mine:hover{
  background-color: #b5adf8;
  font-weight: bolder;
}
.btn-mine:hover:not(.active){
  background-color: #b5adf8; /* 按下时的背景颜色为紫色 */
  color: #1a2330; /* 按下时的文字颜色为白色 */
  font-weight: bolder; 
}
.page-title{
  text-align: center;
}

.page-info-container {
  font-size: 16px;
  
}

/*选择框*/
.my-select-tag {
  background-color: #a2d5f2;
  border: 1px solid #62bff5;
  color: #1a2330;
  border-radius: 10px;
  padding: 8px 32px 8px 16px;
  appearance: none;
  outline: none;
  cursor: pointer;
  min-width: 120px;
  background-image: url('data:image/svg+xml;utf8,<svg fill="%2399aabb" height="16" viewBox="0 0 24 24" width="16" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px 18px;
}
.my-select-tag:focus, .my-select-tag:hover {
  background-color: #8fcef3;
  color: #1a2330;
  border: 1px solid #62bff5;
}


.input-example{
  display: inline-block;
  color:#364fc7;
}
.input-example>span {
  cursor: pointer; 
  text-align: left;
  font-size: 18px;
}
.input-example .exam-1 {
  color: #1a2330;
}
.input-example .exam-2 {
  color: #1a2330;
}
.input-example .exam-3 {
  color: #1a2330;
}
.input-example .exam-4 {
  color: #1a2330;
}

.input-example>span:hover{
  color:#364fc7;
  text-decoration:none;
}

.title {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-weight: bolder;
  font-size: 36px;
  margin-bottom: 30px;
  margin-left: 30px;
  text-align: center;

}

.title i {
  font-weight: normal !important;
}

.me-2 {
  font-weight: bolder;
  font-size: 24px;
}

.sub-title {
  color: #1a2330;
  font-weight: bolder;
  font-size: 24px;
  margin-left: 20px;
  text-align: left;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.section-container {
  color: #1a2330;
  border: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  scroll-margin-top: 210px;
}

.section-container.card {
  background-color: #fff;
  background-clip: border-box;
  border: none;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  min-width: 0;
  position: relative;
  margin: 0;
  padding: 0;
  overflow: hidden;
  font-size: 18px;
  line-height: 1.5;
  color: #1a2330;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.detail-content-wrapper > .section-container.card {
  margin: 20px;
}

.section-container .card-header {
  background: linear-gradient(90deg, #dbe4ff 0%, #ffffff 100%);
  color: #1a2330;
  border: none;
  border-left: 5px solid #364fc7;
  box-shadow: 0 2px 8px #ced4da;
  border-radius: 0;
  padding: 12px 15px;
  min-height: 24px;
  margin: 0;
  display: flex;
  align-items: center;
  font-size: 24px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.section-container .card-body {
  padding: 20px;
  flex: 1 1 auto;
  font-size: 18px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.card-header h3, .card-header h5, .card-header h4 {
  margin: 0;
}


/*---------home page style-------------*/
.des-webname{
  color: orange;
  font-weight: bolder;
}
.des-toolname{
  color: #3aadb3;
  font-weight: bolder;
}
.des-num{
  color:red;
  font-weight:bolder;
}
.text-des{
  text-align: justify;
  text-indent:0em;
  margin-bottom: 0;
}
#carouselCaptions{
  background-color: #000;
}

/*---------webserver page style-------------*/

.task-time{  
  color:#f44336;
}
.task-ing{
  color:#03a9f4;
}
.task-end{
  color:#8bc34a;
}
.copy{
  color:#03a9f4;
  cursor: pointer;
}
.copy:hover{
  color:red;
}

/*---------Download page style-------------*/

.download-table > tbody > tr > td:first-child a{
  font-weight: bolder;
  cursor: not-allowed;
}

#captcha canvas, #captcha .refreshIcon {
  display: none;
}
#captcha canvas:first-child{
  position: absolute;
  bottom: 40px
}
#captcha canvas:nth-child(3){
  position: absolute;
  top: -155px;
}
#captcha .refreshIcon{
  top:-155px;
}
#captcha{
  position: absolute;
  top:-13px;
  margin: 0px !important;
}
#captcha:hover canvas, #captcha:hover .refreshIcon {
  display: block;
}
#msg{
  display: none
}

/*---------result page style-------------*/
.viewRes{
  color:#03a9f4;
  cursor: pointer;
}
.viewRes:hover{
  color:red;
}

/*--result页面表格的样式---*/
#searchResShow tr td{
  vertical-align: middle;
  font-size: 16px;
}
#searchResShow th {
  background: #dbe4ff;
}

#searchResShow.table-bordered th,
#searchResShow.table-bordered td {
  border-left: none !important;
  border-right: none !important;
}
#searchResShow.table-bordered tr {
  border-left: none !important;
  border-right: none !important;
}
#searchResShow.table-bordered {
  border: 1px solid #dee2e6;
  border-radius: 2px;
  box-shadow: 0 2px 8px #ced4da;
}

#searchResShow.table-bordered {
  border-color: #dee2e6;
}


#helpShow tr td{
  vertical-align: middle;
  font-size: 16px;
}
#helpShow th {
  background: #dbe4ff;
}

#helpShow .table-bordered th,
#helpShow .table-bordered td {
  border-left: none !important;
  border-right: none !important;
}

#helpShow .table-bordered {
  border: 1px solid #dee2e6;
  border-radius: 2px;
  box-shadow: 0 2px 8px #ced4da;
}

#helpShow .table-bordered {
  border-color: #dee2e6;
}


#predResShow tr td{
  vertical-align: middle;
}
.pro-plot{
  position: relative;
  width:50px;
  height: 10px;
  background-color: #dddddd;
}
.nls-plot{
  display: block;
  position: absolute;
  height: 10px;
  background-color: #dc3545;
}
#proInfoShow tr td:first-child{
  font-weight: bolder;
  width:20%;
}
.title1{
  font-weight: bolder;
  width:40%;
}
.title2{
  font-weight: bolder;
  width:10%;
  vertical-align: middle !important;
}
.title3{
  font-weight: bolder;
  width:30%;
}
.pmid-link{
  cursor: pointer;
  color: #5a5ff5;
  font-weight:bolder;
}
.pmid-link:hover{
  color: #7579ee;
}
.hidden{
  display: none;
}
/*---------Browse page style-------------*/
#rawNucleusStat, #NLSNucleusStat{
  width: 100%;
  height:400px;
}

/*---------Help page style-------------*/
#help-navigation{
  width: 302px;
}
.navigation-fixed{
  position: fixed;
  top:74px;

}
.navigation-bottom{
  position: absolute;
  bottom: 0px
}
#help-navigation .hidden{
  display: none;
}
#navigation-body h5:before{
  display: block; 
  content: " ";
  margin-top: -80px; 
  height: 80px; 
  visibility: hidden; 
}
@media (max-width: 992px) {
  #help-navigation{
    display: none;
    left: -500px;
  }
}

@media (min-width: 768px) {
  #help-navigation.navigation-fixed {
    left: calc(50% - 600px); /* 你可以根据container宽度微调 */
    z-index: 100;
  }
  #help .col-md-9.with-fixed-nav {
    margin-left: 302px;
    transition: margin-left 0.2s;
  }
}

/*--亚细胞定位图--*/
sib-swissbiopics-sl {
  width: 100% !important;
  height: auto !important;
  display: block;
}
.subcellular-map-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-left: 0;
}

#swissbiopic {
  width: 0 !important;
  height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  overflow: hidden !important;
}

#swissbiopic .terms {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
  overflow: hidden !important;
}

.cell-figure {
  min-width: 820px;
  max-width: 820px;
  margin-left: 40px;
  margin-top: 20px;
  z-index: 20;
}

.cell-location-list {
  position: absolute;
  left: 480px;
  top: 80px;
  z-index: 20;
  background: transparent;
}

/*--card的动画效果---*/
.animated-container {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1.3s ease-out forwards; /*--动画滑入时间---*/
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*--窗口大小---*/
@media (min-width: 1200px) {
  .custom-container {
    max-width: 1400px;
  }
}
@media (max-width: 1199px) {
  .custom-container {
    max-width: 98vw;
  }
}
.custom-container {
  width: 98vw;
  margin: 0 auto;
}

.custom2-container {
  width: 92vw;
  margin: 0 auto;
}

/*--footer的动画效果---*/
.footer-logo {
  opacity: 0;
  transform: translateY(40px);
  animation: footerLogoFadeInUp 1.5s ease-out 0.3s forwards;
}

@keyframes footerLogoFadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*--result页面的alert样式---*/
#search-message-group {
  margin-bottom: 0;
}

#table-show {
  margin-top: 0;
  padding-top: 0;
}

#search-alert.alert-primary {
  background: #fff;
  color: #1a2330;
  border: none;
  border-left: 5px solid #364fc7;
  border-radius: 2px;
  box-shadow: 0 2px 8px #ced4da;
}
#search-alert.alert-danger {
  background: linear-gradient(90deg, #ffeaea 0%, #fff 100%);
  color: #b71c1c;
  border-left: 5px solid #e74c3c;
  box-shadow: 0 2px 8px #ced4da;
}
#search-alert{
  display: flex;
  align-items: center;
  min-height: 22px;
  padding: 8px 10px;
}


/*--detail页面的alert样式---*/
#result-show {
  margin-top: 0;
  padding-top: 0;
  padding-left: 20px;
  padding-right: 20px;
}

#pro-message-group {
  margin-bottom: 0;
}
#pro-alert.alert-success {
  background: #fff;
  color: #1a2330;
  border: none;
  border-left: 5px solid #364fc7;
  border-radius: 2px;
  box-shadow: 0 2px 8px #ced4da;
}
#pro-alert.alert-danger {
  background: linear-gradient(90deg, #ffeaea 0%, #fff 100%);
  border: none;
  color: #b71c1c;
  border-left: 5px solid #e74c3c;
  border-radius: 2px;
  box-shadow: 0 2px 8px #ced4da;
}
#pro-alert.alert-warning {
  background: linear-gradient(90deg, #ffeaea 0%, #fff 100%);
  border: none;
  color: #b71c1c;
  border-left: 5px solid #e74c3c;
  border-radius: 2px;
  box-shadow: 0 2px 8px #ced4da;
}
#pro-alert{
  display: flex;
  align-items: center;
  min-height: 22px;
  padding: 8px 10px;
}

/*--card标题的样式---*/
.card-header {
  background: linear-gradient(90deg, #dbe4ff 0%, #ffffff 100%);
  color: #1a2330;
  border: none;
  border-left: 5px solid #364fc7;
  box-shadow: 0 2px 8px #ced4da;
  border-radius: 2px;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  min-height: 24px;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.card-header h3, .card-header h5, .card-header h4 {
  margin: 0;
}


/*--detail页面导航栏的样式---*/
#detail-nav .nav-pills .nav-link {
  color: #1a2330;
  font-size: 18px;
  margin: 0 5px;
  border-radius: 2px;
  transition: all 0.3s ease;
  padding: 0.14rem 0.4rem;
  border-bottom: 2px solid transparent;
  align-items: center;
}

#detail-nav .nav-pills .nav-link::before {
  display: none;
}

#detail-nav .nav-pills .nav-link:hover,
#detail-nav .nav-pills .nav-link.active {
  color: #364fc7;
  background-color: transparent;
  border-bottom-color: #364fc7;
}

#detail-nav {
  position: -webkit-sticky;
  position: sticky;
  top: 73px;
  background: linear-gradient(90deg, #dbe4ff 0%, #ffffff 100%);
  z-index: 998;
  padding: 20px 0 0 0;
  margin: 0;
  width: 100%;
  display: flex;
  align-items: center;
  min-height: 56px; /* 可根据需要调整高度 */
}

#detail-nav .nav {
  width: 100%;
  align-items: center;
}

.detail-content-wrapper > .section-container:first-of-type {
  margin-top: 0;
}

.detail-content-wrapper > .section-container {
  margin-top: 0; /* 去掉所有section的顶部间距 */
}


/*--detail页面table的样式---*/
#proInfoShow tr td:first-child{
  font-weight: bolder;
  width:20%;
}

.proInfoTable {
  padding-left: 15px;
  padding-right: 15px;
  margin-left: -55px;
  margin-right: 25px;
  width: 100%;
  color:#1a2330;
}

.proInfoTable td:first-child{
  text-align: right;
  padding-right: 15px;
  width:18%;
  border-right: solid 2px #364fc7;
  font-weight: bolder;
}
.proInfoTable tr{
  border-bottom: solid 15px transparent;
}
.proInfoTable td:nth-child(2){
  text-align: justify;
  padding-left: 15px;
  color:#1a2330;
}


.regionInfoTable {
  padding-left: 10px;
  padding-right: 10px;
  margin-left: -30px;
  margin-right: 40px;
  width: 80%; /*--调间距---*/
}
.regionInfoTable tr {
  border-bottom: 15px solid transparent;
}
.regionInfoTable td {
  padding-left: 15px;
  color: #1a2330; /*--最右边的字体颜色---*/
  font-size: 18px;
  padding-right: 15px;
}

.regionInfoTable .title2 {
  font-weight: bolder;
  color: #1a2330; /*--最左边的字体颜色---*/
  text-align: right;
  width: 30%; /*--调间距---*/
  border-bottom: none;
  position: relative;
  padding-right: 30px; /*--最左边的线离右侧字的距离，越大越近---*/
}

.regionInfoTable .title2::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 2px;
  background-color: #364fc7;
}

.regionInfoTable .title2 td:first-child{
  text-align: right;
  padding-right: 15px;
}

.regionInfoTable .title3 {
  font-weight: bolder;
  color: #1a2330;
  text-align: left;
  border-right: 2px solid #364fc7;
  width:180px;
  max-width: 200px;
  padding-right: 15px;
  padding-left: 30px;
}



.mol-container {
  width:    50%;
  height:   300px;
  position: relative;
  margin: 0 auto;
  border: none;
}

.anchor-title {
  padding-top: 210px;
  margin-top: -210px;
}

.detail-content-wrapper {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  padding: 0 0 30px 0;
  margin-top: 30px;
}

.section-container:first-of-type {
  margin-top: 0;
}
.section-container {
  margin-bottom: 24px;
  scroll-margin-top: 210px;
}



#regionInfoShow .row {
  display: flex;
  align-items: flex-start;
  margin: 0;
}
#regionInfoShow .col-md-6 {
  padding: 0px 30px 0 30px;
  min-width: 350px;
}
#regionInfoShow .col-md-6:last-child {
  padding-right: 30px;
}
#regionInfoShow .regionInfoTable {
  width: 100%;
  margin: 0;
}


/* Result page专属preloader */
#result-preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: rgba(255,255,255,0.5);
}
#result-preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #5c7cfa;
  border-top-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}
@-webkit-keyframes animate-result-preloader {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@keyframes animate-result-preloader {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.variation-table {
  width: 100%;
  padding-left: 20px;
}

.variation-table tr {
  border-bottom: 15px solid transparent;
}

.variation-table tr td {
  border-bottom: 15px solid transparent;
}

/* 左边列 */
.variation-table td.db {
  font-weight: bold;
  text-align: right;
  width: 130px;
  max-width: 200px;
  white-space: nowrap;
  position: relative;
  padding-left: 30px;
  padding-right: 30px;
}

.variation-table td.db::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 2px;
  background-color: #364fc7;
}

/* 中间列 */
.variation-table td.field {
  font-weight: bold;
  text-align: left;
  width: 280px;
  max-width: 300px;
  position: relative;
  padding-left: 30px;
  padding-right: 15px;
  color: #1a2330;
}

.variation-table tr td.field {
  border-bottom: 15px solid transparent;
}

.variation-table td.field::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
}

/* 右边列 */
.variation-table td.value {
  text-align: left;
  padding-left: 15px;
  font-weight: normal;
  border-left: #364fc7 solid 2px;
}

.variation-table tr.last-db-row td {
  border-bottom: 15px solid transparent;
}

.variation-table tr.last-db-row td.field::after {
  border-bottom: 15px solid transparent;
}


.location-prediction-tables {
  max-height: 300px;
  height: 300px;
  z-index: 10;
  background: transparent;
  padding: 20px 0;
  width: 520px;
  max-width: 520px;
}

#compartment-prediction {
  max-height: 180px;      
  overflow-y: auto;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.04);
  position:relative;
  width: 80%;
  margin: 0 auto 15px auto;
}

#translocatome-prediction {
  max-height: 150px;  
  overflow-y: auto;
  background: #fff;
  border-radius: 6px;
  position:relative;
  box-shadow: 0 2px 4px rgba(0,0,0,0.04);
  width: 80%;
  margin: 0 auto 10px auto;
}

.location-flex-row {
  position: absolute;
  top: 0;   /* 或根据实际需要微调 */
  left: 0;  /* 或根据实际需要微调 */
  width: 1250px;
  z-index: 10; /* 保证在 .terms 之上 */
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 32px;
  padding: 0;
}


.prediction-container {  
  margin-left: 710px;
  padding: 0;
  background: transparent;
}

.evidence-container {
  padding:0 30px 0 30px; 


}

/* 主容器布局 */
.help-container {
  display: flex !important;
  gap: 0;
  align-items: flex-start;
  width: 100%;
}

/* 导航栏样式更新 */
.help-nav {
  position: sticky;
  top: 100px;
  width: 240px;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  padding: 2rem 0;
  margin-left: 1rem;
  overflow: hidden;
  flex-shrink: 0;
  z-index: 10;
}

.help-nav ul {
  padding: 0;
  margin: 0;
}

.help-nav .nav-link {
  color: #495057;
  font-weight: 500;
  font-size: 18px; /* 与body字体一致 */
  border-left: 3px solid transparent;
  padding: 0.75rem 1.5rem;
  margin: 0.25rem 0;
  border-radius: 0;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.help-nav .nav-link i {
  margin-right: 0.75rem;
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

.help-nav .nav-link:hover,
.help-nav .nav-link.active {
  background: linear-gradient(90deg, #dbe4ff 0%, #ffffff 100%);
  color: #364fc7;
  border-left-color: #364fc7;
  transform: translateX(5px);
}

/* 内容区域样式 */
.help-content {
  flex: 1;
  min-width: 0;
  max-width: calc(100% - 260px);
}

.help-section {
  margin-bottom: 1rem;
  scroll-margin-top: 120px;
}

.help-section:last-child {
  margin-bottom: 0;
}

.section-card {
  background: white;
  border-radius: 5px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.section-header {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  border-bottom: 1px solid #e9ecef;
}

.section-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #364fc7 0%, #5a6fd8 100%);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.section-title h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.3em; /* 与body中h3定义一致 */
  font-weight: bold;
  color: #233047; /* 与body中h3颜色一致 */
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.section-title p {
  margin: 0;
  color: #6c757d;
  font-size: 18px; /* 与body字体一致 */
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.section-body {
  padding: 30px;
  font-size: 18px; /* 与body字体一致 */
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  color: #1a2330; /* 与body颜色一致 */
}

/* 特性网格 */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin: 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: #e7eafc;
  transform: translateY(-2px);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #364fc7 0%, #5a6fd8 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.feature-content h5 {
  margin: 0 0 0.5rem 0;
  font-weight: 600;
  color: #1a2330;
  font-size: 18px; /* 与body字体一致 */
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.feature-content p {
  margin: 0 !important;
  margin-bottom: 0 !important;
  color: #6c757d;
  font-size: 18px; /* 与body字体一致 */
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

/* 信息框 */
.info-box {
  background: linear-gradient(135deg, #e7eafc 0%, #f8f9ff 100%);
  border-left: 4px solid #364fc7;
  padding: 1rem;
  border-radius: 8px;
  margin-top: 30px;
}

.info-box p {
  color: #1a2330;
  line-height: 1.6;
  font-size: 18px; /* 与body字体一致 */
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

/* 数据源网格 */
.data-sources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.source-card {
  background: white;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.source-card:hover {
  border-color: #364fc7;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(54, 79, 199, 0.15);
}

.source-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #364fc7 0%, #5a6fd8 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin: 0 auto 1rem;
}

.source-card h5 {
  margin: 0 0 0.5rem 0;
  font-weight: 600;
  color: #1a2330;
  font-size: 18px; /* 与body字体一致 */
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.source-card p {
  margin: 0;
  color: #6c757d;
  font-size: 18px; /* 与body字体一致 */
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

/* 流程步骤 */
.pipeline-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 12px;
  position: relative;
}

.step-item::before {
  content: '';
  position: absolute;
  left: 1rem;
  top: 100%;
  width: 2px;
  height: 1rem;
  background: #dee2e6;
}

.step-item:last-child::before {
  display: none;
}

.step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #364fc7 0%, #5a6fd8 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.step-content h5 {
  margin: 0 0 0.5rem 0;
  font-weight: 600;
  color: #1a2330;
  font-size: 18px; /* 与body字体一致 */
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.step-content p {
  margin: 0;
  margin-bottom: 0 !important;
  color: #6c757d;
  font-size: 18px; /* 与body字体一致 */
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

/* 使用指南标签 */
.usage-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid #e9ecef;
  padding-bottom: 1rem;
}

.tab-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: #f8f9fa;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  color: #6c757d;
  font-size: 18px; /* 与body字体一致 */
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.tab-item:hover {
  background: #e7eafc;
  color: #364fc7;
}

.tab-item.active {
  background: linear-gradient(135deg, #364fc7 0%, #5a6fd8 100%);
  color: white;
}

.tab-content {
  min-height: 200px;
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}

.tab-pane h5 {
  color: #1a2330;
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 18px; /* 与body字体一致 */
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.tab-pane p {
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 18px; /* 与body字体一致 */
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.example-box {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 20px;
  border-left: 4px solid #364fc7;
  margin-top: 30px;
}

.example-box h6 {
  color: #1a2330;
  margin-bottom: 1rem;
  font-size: 18px; /* 与body字体一致 */
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.example-box ul {
  margin: 0;
  padding-left: 1rem;
}

.example-box li {
  margin-bottom: 0.5rem;
  color: #6c757d;
  font-size: 18px; /* 与body字体一致 */
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.example-box code {
  background: #e7eafc;
  color: #364fc7;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 18px; /* 与body字体一致 */
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

/* 响应式设计 */
@media (max-width: 1200px) {
  .help-container {
    flex-direction: column;
  }
  
  .help-nav {
    position: static;
    width: 100%;
    margin-left: 0;
    margin-bottom: 0.5rem;
  }
  
  .help-nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0.5rem;
  }
  
  .help-nav .nav-link {
    border-right: none;
    border-bottom: 3px solid transparent;
    border-radius: 8px;
  }
  
  .help-nav .nav-link:hover,
  .help-nav .nav-link.active {
    border-right: none;
    border-bottom-color: #364fc7;
    transform: none;
  }
  
  .help-content {
    padding: 0;
  }
}

@media (max-width: 768px) {
  .help-title {
    font-size: 2rem;
  }
  
  .help-subtitle {
    font-size: 1rem;
  }
  
  .section-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
  }
  
  .data-sources-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
  
  .usage-tabs {
    flex-direction: column;
  }
  
  .step-item {
    flex-direction: column;
    text-align: center;
  }
  
  .step-item::before {
    display: none;
  }
}

/* 动画效果 */
.help-section {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out forwards;
}

.help-section:nth-child(1) { animation-delay: 0.1s; }
.help-section:nth-child(2) { animation-delay: 0.2s; }
.help-section:nth-child(3) { animation-delay: 0.3s; }
.help-section:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 图片预览样式 */
.venobox {
  display: inline-block;
  transition: all 0.3s ease;
}

.venobox:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 12px rgba(54, 79, 199, 0.2);
}

.venobox img {
  transition: all 0.3s ease;
}

.venobox:hover img {
  border-color: #364fc7 !important;
}

/* Venobox自定义样式 */
.vbox-overlay {
  background: rgba(0, 0, 0, 0.9) !important;
}

.vbox-container {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.vbox-title {
  color: #fff !important;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif !important;
}

.vbox-close {
  background: #5a5ff5 !important;
  border-radius: 50% !important;
  width: 40px !important;
  height: 40px !important;
  line-height: 40px !important;
  font-size: 18px !important;
}

.vbox-close:hover {
  background: #7579ee !important;
  transform: scale(1.1);
}

/* 确保图片背景透明 */
.vbox-container img {
  background: transparent !important;
}

/* 移除可能的白色背景 */
.venobox {
  background: transparent !important;
}

.venobox img {
  background: transparent !important;
}

/* Tab-pane中的图片样式 */
.tab-pane img {
  width: 80% !important;
  height: auto !important;
  display: block !important;
  margin: 0 auto !important;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: transparent !important;
  background-color: transparent !important;
}

.tab-pane img:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 12px rgba(54, 79, 199, 0.2);
}

/* 强制移除所有白色背景 */
.tab-pane .venobox,
.tab-pane .venobox img,
.vbox-container,
.vbox-container img,
.venobox,
.venobox img {
  background: transparent !important;
  background-color: transparent !important;
}

/* 确保模态框中的图片也没有背景 */
.vbox-content img {
  background: transparent !important;
  background-color: transparent !important;
}

/* 最高优先级移除白色背景 */
.tab-pane img[src*="search.png"],
.tab-pane .venobox img,
.vbox-container img,
.venobox img {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
}

.card-text {
  color: #364fc7;
}