body {
    padding-top: 56px;
    overflow-x: hidden;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}
th, td {
    border: 2px solid #fff;
    padding: 12px;
    text-align: left;
    word-break: break-all
}
th {
    background-color: #f2f2f2;
}
tr:nth-child(odd) {
    background-color: #2aa7a530;
}

tr:nth-child(1) {
    background-color: #2aa7a5;
    font-weight: bold;
    color: #fff;
    padding: 10px 0 !important;
    height: 50px;
}

tr:hover {
    background-color: #2aa7a548;
}

tr:nth-child(1):hover {
    background-color: #2aa7a5;
    font-weight: bold;
    color: #fff;
    padding: 10px 0 !important;
    height: 50px;
}

body {
    counter-reset: ref-counter; /* 初始化计数器 */
}

.references-list p {
    counter-increment: ref-counter; /* 对每个li元素增加计数器 */
    margin-bottom: 10px;
    font-size: 1rem !important;
}

.references-list p::before {
    content: "[" counter(ref-counter) "]"; /* 使用计数器并添加点号后跟空格 */
   
}

/* 滚动条整体样式 */
::-webkit-scrollbar {
    width: 12px; /* 垂直滚动条的宽度 */
    height: 12px; /* 水平滚动条的高度 */
  }
  
  /* 滚动条轨道样式 */
  ::-webkit-scrollbar-track {
    background: #f1f1f1; /* 滚动条轨道的背景色 */
    border-radius: 6px; /* 滚动条轨道的圆角 */
  }
  
  /* 滚动条滑块样式 */
  ::-webkit-scrollbar-thumb {
    background: #888; /* 滚动条滑块的背景色 */
    border-radius: 6px; /* 滚动条滑块的圆角 */
  }
  
  /* 滚动条滑块 hover 状态 */
  ::-webkit-scrollbar-thumb:hover {
    background: #555; /* 滚动条滑块 hover 状态下的背景色 */
  }
  
  /* 滚动条按钮样式 */
  ::-webkit-scrollbar-button {
    display: none; /* 隐藏滚动条按钮 */
  }
  
  /* 滚动条角落样式 */
  ::-webkit-scrollbar-corner {
    background: #f1f1f1; /* 滚动条角落的背景色 */
  }

.left-aligned {
    margin-left: auto;
}

.bg-dark {
    background-color: #7baf9c !important;
}

.bg-hero {
    background-color: #ffeedd;
    height: 84vh;
    margin-top: -80px;
}

/* CALLOUT */
.bd-callout {
    padding: 1.25rem;
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
    border: 1px solid #e9ecef;
    border-left-width: .25rem;
    border-radius: .25rem
}

.bd-callout h4 {
    margin-bottom: .25rem
}

.bd-callout p:last-child {
    margin-bottom: 0
}

.bd-callout code {
    border-radius: .25rem
}

.bd-callout+.bd-callout {
    margin-top: -.25rem
}

.bd-callout-info {
    border-left-color: #5bc0de
}

.bd-callout-warning {
    border-left-color: #f0ad4e
}

.bd-callout-danger {
    border-left-color: #d9534f
}





/* FLEX 布局 */
.flex-row {
    display: flex;
    flex-direction: row;
}

.flex-column {
    display: flex;
    flex-direction: column;
}

.align-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-around {
    justify-content: space-around;
}

.flex-wrap {
    flex-wrap: wrap;
}



/* 导航栏相关 */
.nav-link:hover {}


/* 封图相关 */
header {
    width: 100vw;
    background-color: transparent;
    margin-top: -80px;
    min-height: 50vh;
}

.header-box {
    width: 100%;
    /* position: relative; */
}

.header-bg-wave {
    /* position: relative; */
    width: 100vw;
    /* top: 0; */
    height: auto;
}

.header-cover {
    position: absolute;
    width: 100vw;
    top: 0;
    height: 100%;
}

.header-cover-img {
    position: absolute;
    z-index: 2;
    height: 70%;
    width: auto;
    top: 10%;
}


.header-cover-title {
    font-size: 6rem;
    font-family: fantasy;
    color: #fff;
    position: absolute;
    top: 30%;
    z-index: 3;
}


/* 文案描述相关 */
.page-content {
    background-color: #f5f5f5;
    width: 100vw;
    position: relative;
    min-height: 200vh;
    padding: 100px 0;

}

.page-content-box {
    width: 80vw;
}

/* 文案描述-目录相关 */
.sidebar {
    overflow-x: hidden;
    background-color: #f5f5f5;
    width:20%;
    padding: 30px 20px 100px 0;
    
    position: sticky;
    top: 80px;
    height: 100vh;
    overflow-y: auto;
    margin-left: 6vw;
}

/* 滚动条 */
/* 初始状态下的滚动条样式 */
.sidebar::-webkit-scrollbar {
    width: 6px; /* 设置滚动条的宽度 */
    height: 12px;
}

/* 滚动条滑块的样式 */
.sidebar::-webkit-scrollbar-thumb {
    background-color: #888; /* 设置滑块的颜色 */
    border-radius: 6px; /* 设置滑块的圆角 */
    

}

/* 滚动条轨道的样式 */
.sidebar::-webkit-scrollbar-track {
    background-color: #f1f1f1; /* 设置轨道的颜色 */
    border-radius: 6px; /* 滚动条轨道的圆角 */

}

/* 滚动条滑块 hover 状态 */
.sidebar::-webkit-scrollbar-thumb:hover {
    background: #555; /* 滚动条滑块 hover 状态下的背景色 */
}

/* 滚动条按钮样式 */
.sidebar::-webkit-scrollbar-button {
    display: none; /* 隐藏滚动条按钮 */
    }
    
/* 滚动条角落样式 */
.sidebar::-webkit-scrollbar-corner {
    background: #f1f1f1; /* 滚动条角落的背景色 */
}



.sidebar-title {
    font-weight: bold;
    font-size: 2.2rem;
    margin-bottom: 30px;
    text-align: center;
}

.sidebar>a {
    text-decoration: none;
    width: 90%;
    /* margin: 10px 0; */
    color: black;    
}

.sidebar-item {
    width: 100%;
    /* align-items: baseline; */
}

.sidebar-item:hover>.sidebar-item-circle {
   
}

.sidebar-item:hover>.sidebar-item-text {
    color: #2aa7a5;
}

.sidebar-item-text-active {
    color: #2aa7a5;
}

.sidebar-item-circle-active {
    
}



.sidebar-item-circle {
    border-radius: 50%;
    /* width: 60px; */
    /* height: 60px; */
    margin: 0 8px;
    transition: .2s;
    margin-right: 16px;
}

.sidebar-item-text {
    font-family: math;
    font-weight: bold;
    font-size: 23px;
    line-height: 30px;
    display: block;
    padding: 7px 0;
    transition: all .5s ease-in-out;
}

/* 二级 */

.sidebar-item-b {
    width: 90%;
    margin-left: 26%;
}

.sidebar-item-b:hover>.sidebar-item-circle-b {
    
}

.sidebar-item-b:hover>.sidebar-item-text-b {
    color: #2aa7a5;
    
}



.sidebar-item-circle-b {
    
}

.sidebar-item-text-b {
    transition: .2s;
    font-family: math;
    font-size: 18px;
    line-height: 22px;
    padding: 3px 0;
    padding-bottom: 12px
}


/* 三级 */

.sidebar-item-c {
    width: 80%;
    margin-left: 34%;
}

.sidebar-item-c:hover>.sidebar-item-circle-c {
    
}

.sidebar-item-c:hover>.sidebar-item-text-c {
    color: #fff;
}



.sidebar-item-circle-c {
    
}

.sidebar-item-text-c {
    transition: .2s;
    font-size: 0.8rem;
    margin-left: 26%;
    font-family: serif;
}


/* 文案描述-正文相关 */

.desc-content {
    width: 55%;
    margin-left: 5vw;
    padding-top: 50px;
    /* background-color: rgb(255 255 255 / 25%); */
    /* backdrop-filter: blur(6px); */
    /* -webkit-backdrop-filter: blur(6px); */
    /* border: 0.666667px solid rgba(255, 255, 255, 0.18); */
    /* box-shadow: rgba(142, 142, 142, 0.19) 0px 6px 15px 0px; */
    /* -webkit-box-shadow: rgba(142, 142, 142, 0.19) 0px 6px 15px 0px; */
    border-radius: 12px;
    -webkit-border-radius: 12px;
    color: rgb(26 25 25 / 75%);
    padding: 0px 40px 20px 40px;
}

/* 标题文本 */
.desc-content-title {
    margin: 30px 0;
    width: 100%;
}

.desc-content-title-circle {
    /* height: 72px;
    width: 72px;
    border-radius: 50%;
    background-color: #224b8f;
    box-shadow: 0px 0px 5px #122a52, 0px 0px 10px #0a1a35; */
}

.desc-content-title-text {
    font-size: 32px !important;
    font-family: math;
    color: #2aa7a5;
    /* background-color: #fff; */
    width: 85%;
    /* box-shadow: 8px 5px 1px #a0dfc3; */
    /* border-radius: 28px; */
    /* padding: 10px 20px; */
    font-size: initial;
    /* margin-left: 28px; */
    font-size: 1.3rem;
    font-weight: bold;
    /* border-top: 5px solid #09ab9d;
}

.desc-content-title-b {
    margin: 20px 0;
    width: 100%;
}

.desc-content-title-circle-b {
    /* height: 72px;
    width: 72px;
    border-radius: 50%;
    background-color: #224b8f;
    box-shadow: 0px 0px 5px #122a52, 0px 0px 10px #0a1a35; */
}

.desc-content-title-text-b {

    width: 100%;

    font-size: 1.7rem;
    font-weight: bold;
}

/* 普通文本 */
.descrption-article-text {
    border-bottom: 1.7rem solid transparent;
}

.descrption-article-text>p {
    font-size: 1.4rem;

    line-height: 1.7 !important;
    font-family: 'Times New Roman', Times, serif;
    overflow: inherit;
    word-wrap: break-word;
    margin: 0;
    text-align: justify;
}

/* 强调文本 */
impt {
    color: #2d89e5;
}

/* 列表 */
.desc-content ul,
ol {
    border-bottom: 1.7rem solid transparent;

}

.desc-content ul,
ol li {
    font-size: 1.4rem !important;
    line-height: 1.7 !important;
    font-family: 'Times New Roman', Times, serif;
    overflow: inherit;
    word-wrap: break-word;
}


/* 图片 */
.desc-content img {
    margin: 20px auto;
    width: 80%;
}

.desc-content-img-desc {
    width: 100%;
    text-align: center;
    font-size: 1.2rem;
    color: #0000007d;
    margin-top: -10px;
    font-family: 'Times New Roman', Times, serif;
    margin-bottom: 20px;
}


/* 超链接 */
.desc-content a {
    color: #2d89e5;
    text-decoration: none;
}

.desc-content a:hover {
    color: #0a58ca;
}

.desc-content-title-text-c {
    font-size: 1.2rem;
    font-weight: bold;
    font-family: auto;
    
}


/* TEAM */
.team-content {
    width: 80vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    
}

strong {
    font-size: 1.4rem !important;
    line-height: 1.7 !important;
    font-family: 'Times New Roman', Times, serif;
    overflow: inherit;
    word-wrap: break-word;
    margin: 0;
}

.team-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 100px;
    height: 300px;
    width: 100%;
}

.team-row-item {
    width: 46%;
    height: 100%;
    display: flex;
    flex-direction: row;
}

.team-item-img {
    width: auto;
    height: 100%;
}

.team-item-text {
    margin-left: 20px;
    /* width: calc(46% - 240px); */
    font-family: 'Times New Roman', Times, serif;
    font-size: 1rem;
    overflow-y: auto;
}

.team-item-text::-webkit-scrollbar {
    width: 0px;
}
.footer {
    width: calc(100%+5vw); /* 根据需要调整宽度 */
    margin-left: -20px; /* 抵消左右的padding */
    padding-left: 20px;
    padding-right: 20px;
    position: relative;
}

.logo-carousel {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    margin: 20px auto;
    position: relative;
    top: 0;
    left: 0;
}

.logo-wrapper {
    display: flex;
    flex-wrap: wrap; /* 允许换行 */
    justify-content: center; /* 居中排列 */
    align-items: center; /* 如果需要的话 */
    overflow: auto; /* 允许滚动 */
    width: 100%; /* 根据需要调整 */
}

.logo-wrapper img {
    width: 75px; /* 根据实际大小调整 */
    height: auto;
    margin: 5px; /* 设置间距 */
    scroll-snap-align: start;
}