/* 字体图标 */

@font-face {
    font-family: 'Play';
    src: url('https://static.igem.wiki/teams/5872/materials/fonts/playregular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}



.content-inner h1,
.content-inner h2,
.content-inner h3 {
    scroll-margin-top: 90px;
    /* 根据你的导航栏高度调整 */
}

:root {
    --sidebar-bg: #e1f0eb;
    --sidebar-border: #dde7f3;
    --content-bg: #fff;
    --radius: 20px;
    --shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    --transition: 0.3s;
    --top-gap: 40vh;
    --top-gap-button: 18vh;
    --max-content-width: 960px;
}

* {
    padding: 0;
    margin: 0;
    font-family: 'Play';
}

body {
    width: 100%;
    min-height: 100vh;
    box-sizing: border-box;
    overflow-x: hidden;

}

/* ==================================-- 子页面顶部 --============================== */
.top-holder {
    position: relative;
    top: 9vh;
    width: 100%;
    height: 100vh;
    background-color: #e6f2ff;
}

.top-box {
    width: 100%;
    height: 100%;
    background-color: #e6f2ff;
}

.top-box .sub-top-left {
    position: absolute;
    top: 8vh;
    left: -2vw;
}

.top-box .sub-top-left img {
    width: 130%;
    height: auto;
}

.top-box .sub-top-right {
    position: absolute;
    top: -5vh;
    right: 22vw;
}

.top-box .sub-top-right img {
    width: 230%;
    height: auto;
}

/* 给title加上一个聚光灯的效果  */
.top-box .title {
    position: relative;
    top: 16vh;
    left: 10vw;
    font-size: 8vw;
    font-weight: 800;
    color: #4d6297;
    margin-bottom: 10px;
}

.top-box .title:after {
    content: 'Human Practices';
    position: absolute;
    top: 0;
    left: 0;
    color: transparent;
    background-image: linear-gradient(to right, #cb7c8e, rgb(204, 177, 135), #7faa9d,
            #94b0cd, #3f669a);
    background-clip: text;
    -webkit-background-clip: text;
    clip-path: circle(100px at 0% 50%);
    -webkit-clip-path: circle(100px at 0% 50%);
    animation: move 5s infinite;
}

@keyframes move {
    0% {
        clip-path: circle(100px at 0% 50%);
        -webkit-clip-path: circle(100px at 0% 50%);
    }

    50% {
        clip-path: circle(100px at 100% 50%);
        -webkit-clip-path: circle(100px at 100% 50%);
    }

    100% {
        clip-path: circle(100px at 0% 50%);
        -webkit-clip-path: circle(100px at 0% 50%);
    }
}

.top-box .title-desc {
    position: relative;
    top: 18vh;
    left: 10vw;
    padding-left: 12px;
    font-size: 2vw;
    font-weight: 500;
    color: #4d6297;
}

.sub-top-down {
    display: block;
    position: relative;
    bottom: 21%;
    left: 0;
    width: 100%;
    z-index: 2;
    /* ！！！【响应】这里可能得根据宽度进行调整 */
}

.sub-top-down img {
    width: 104%;
}








/* ====================================== -- 文档部分 --=============================== */
.DT-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: calc(var(--top-gap) * -0.2);
    padding-top: 30vh;
    padding-bottom: 60vh;
    min-height: calc(100vh - var(--top-gap));
    background: linear-gradient(to right, #fcfdff, #d1e3fc);
    transition: margin-left 0.3s;
}

.sidebar-card {
    position: sticky;
    top: 16vh;
    left: initial;
    display: flex;
    flex-direction: column;
    width: 270px;
    min-width: 160px;
    max-width: 60vw;
    max-height: 82vh;
    margin-left: 50px;
    padding-bottom: 4vh;
    background: #d3e4fc;
    border-radius: 14px;
    opacity: 1;
    pointer-events: auto;
    overflow: auto;
    transition: transform 0.3s, left 0.3s, opacity 0.3s;
    z-index: 10;

    scrollbar-color: #9aacdd #efefef;
    scrollbar-width: thin;
}

.sidebar-card::-webkit-scrollbar {
    width: 8px;
}

.sidebar-card::-webkit-scrollbar-track {
    background: #efefef;
    border-radius: 4px;
}

.sidebar-card::-webkit-scrollbar-thumb {
    background: #9aacdd;
    border-radius: 4px;
}

/* 可选：hover 效果更细腻 */
.sidebar-card::-webkit-scrollbar-thumb:hover {
    background: #9f8abc;
}

/* 侧栏关闭时，彻底隐藏sidebar-card，不占文档流 */
.sidebar-card.closed {
    position: fixed !important;
    left: -400px !important;
    opacity: 0;
    pointer-events: none;
    transition: left 0.3s, opacity 0.3s;
}

.sidebar-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px 0 24px;
    font-size: 1.2em;
    font-weight: bold;
}

.sidebar-header span {
    padding: 12px 12px;
    font-size: 1.4em;
    font-weight: 500;
}

.sidebar-toggle-btn {
    position: absolute;
    top: 0;
    right: 6%;
    margin-top: 28px;
    width: 3vw;
    height: 3vw;
    cursor: pointer;
    padding: 0px 6px;
    border: none;
    border-radius: 50%;
    transition: background-color 0.2s;
}

.sidebar-toggle-btn img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.sidebar-toggle-btn:hover {
    background-color: #fbe2e292;
}

.sidebar-card ul {
    list-style: none;
    padding: 4px 10px 0px 16px;
    margin: 0px;
    line-height: 1.3;
}

.sidebar-card>ul>li {
    margin: 16px 0px;
    position: relative;
}

.sidebar-card li {
    margin: 0px;
    position: relative;
}

.sidebar-card a {
    display: block;
    padding: 4px 10px 0px 40px;
    color: rgb(14, 30, 45);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 4px;
    transition: color 0.2s, background 0.2s;
}

.sidebar-card>a {
    margin: 5px 0px;
}

.sidebar-card a:hover {
    color: rgb(57, 126, 230);
    transform: scale(1.02);
    background: rgba(57, 126, 230, 0.1);
    border-radius: 10px;
}

.sidebar-card a.active,
.sidebar-card a:focus {
    font-size: 17px;
    font-weight: 500;
    color: #c198a6;
    border-radius: 8px;
}

.sidebar-card ul ul {
    padding-left: 18px;
    border-left: 2px solid #b2bdc2;
}

.sidebar-card ul ul li {
    margin-bottom: 5px;
}

/* 折叠按钮样式 - 已修改为脱离 <a> 标签 */
.toggle-btn {
    position: absolute;
    left: 12px;
    top: 6px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    transition: transform 0.2s;
    z-index: 2;
}

.toggle-btn.collapsed {
    transform: rotate(0deg);
}

/* 使用伪元素创建箭头图标 */
.toggle-btn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 10px solid #4e659c;
    transform: translate(-50%, -50%) rotate(90deg);
    transition: transform 0.2s;
}

.toggle-btn.collapsed::before {
    transform: translate(-50%, -50%) rotate(0deg);
}

.has-children .toggle-btn {
    display: block;
}

/* 折叠状态下的子菜单 */
.collapsed~ul {
    display: none;
}

.content-card {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    flex: 1 1 0;
    max-width: 1300px;
    min-width: 50px;
    min-height: 500px;
    margin: 0 auto;
    /* padding: 5px 10px 40px 10px; */
    word-break: break-word;
    transition: margin 0.3s;
    z-index: 10;
    text-align: justify;
    /* background-color: #fffaf7cf; */
    border-radius: 20px;
}

.content-card .sub-main-left {
    position: absolute;
    bottom: 10vh;
    left: -30vw;
}

.content-card .sub-main-left img {
    width: 160%;
}

.content-card .sub-main-right {
    position: absolute;
    top: -16vh;
    right: 0;
    z-index: 2;
}

.content-card .sub-main-right img {
    width: 150%;
}

.content-inner {
    width: 100%;
    margin: 0 4% 0 3%;
    z-index: 10;
    text-align: justify;
    background-color: #fffaf7cf;
    /* background-color: #fff; */
    border-radius: 20px;
    padding: 25px 40px;
}

.content-card .content-title {
    margin: 10px 0px 30px 0px;
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 5px solid #6688cc;
    font-size: 8vh;
    font-weight: 900;
    color: #4e5794;
}

.content-card h1 {
    margin: 30px 0px 20px 0px;
    border-bottom: 2px solid #dcdcdc;
    color: #436195;
    font-size: 5.5vh;
    font-weight: 700;
}

.content-card h2 {
    margin: 30px 0px 12px 0px;
    color: #5471aa;
    font-size: 26px;
    font-weight: 700;
}

.content-card h3 {
    margin: 20px 0px 10px 0px;
    color: #5471aa;
    font-weight: 700;
    font-size: 20px;
}

.content-card h4 {
    margin: 20px 0px 10px 0px;
    color: #5471aa;
    font-weight: 700;
    font-size: 18px;
}

.content-card p {
    margin: 10px 0px 14px 0px;
    /* text-indent: 2em; */
    color: #000;
    font-size: 17px;
    line-height: 1.4;
    /* font-weight: 200; */
}

strong {
    font-size: 18px;
}

.content-card .img1 {
    display: block;
    width: 300px;
    margin: 30px auto;
}

.sidebar-show-btn {
    /* display: none; */
    position: fixed;
    align-items: center;
    justify-content: center;
    left: 30px;
    top: 30vh;
    width: 60px;
    height: 60px;
    background-color: rgba(243, 209, 231, 0.595);
    border: 2px solid #114da1;
    border-radius: 50%;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
    font-size: 5vh;
    font-weight: 900;
    color: #fff;
    transition: background 0.2s, opacity 0.2s;
    opacity: 0.85;
    cursor: pointer;
    z-index: 25;
}

.sidebar-show-btn img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.sidebar-show-btn:hover {
    color: #345;
    background: #f7fafd;
}

.wrapper.sidebar-closed {
    flex-direction: column !important;
    align-items: center !important;
    gap: 0 !important;
}

.wrapper.sidebar-closed .content-card {
    margin: 0 auto !important;
    max-width: var(--max-content-width);
    width: 100%;
    flex: none !important;
}


@media (max-width: 1100px) {
    .content-card {
        padding: 28px 12px;
    }

    .sidebar-card {
        margin-left: 10px;
    }

    .wrapper {
        gap: 10px;
    }
}

@media (max-width: 850px) {
    .sidebar-card {
        width: 190px;
        min-width: 120px;
    }
}

@media (max-width: 700px) {
    .wrapper {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        margin-top: 0;
    }

    .sidebar-card {
        position: fixed;
        left: 0;
        top: var(--top-gap);
        width: 86vw;
        max-width: 320px;
        min-width: 120px;
        margin-left: 0;
        z-index: 20;
        box-shadow: 2px 0 16px rgba(0, 0, 0, 0.09);
        border-radius: 0 var(--radius) var(--radius) 0;
        transition: transform var(--transition), left 0.3s, opacity 0.3s;
    }

    .content-card {
        margin: 0 6px;
        padding: 20px 6vw;
        border-radius: var(--radius);
    }

    .sidebar-show-btn {
        display: flex;
        top: calc(var(--top-gap) + 8px);
    }

    .wrapper.sidebar-closed .content-card {
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

@media (max-width: 500px) {
    .content-inner {
        max-width: 98vw;
    }

    .content-card {
        padding: 9vw 2vw;
    }

    .sidebar-card {
        top: calc(var(--top-gap) - 2vw);
    }
}


/*  ============================  折叠栏 ============================ */
.sub-accordion {
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.sub-accordion-item {
    background: white;
    border-bottom: 1px solid #eaeaea;
}

.sub-accordion-item:last-child {
    border-bottom: none;
}

.sub-accordion-header {
    padding: 20px;
    background: #dde4fe;
    color: #114da1;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.sub-accordion-header h2 {
    margin: 0 !important;
    border: none !important;
    color: #114da1;
    font-size: 26px;
    font-weight: 700;
    padding-left: 10px;
}

.sub-accordion-header h3 {
    color: #114da1;
}

.sub-accordion-header:hover {
    color: #fff;
    background: #6688cc;
}

.sub-accordion-header:hover h3 {
    color: #fff;
}

.sub-accordion-header h3 {
    margin: 0;
    font-weight: 600;
    font-size: 18px;
}

.sub-accordion-icon {
    display: inline-block;
    font-family: Arial, sans-serif;
    font-size: 24px;
    transform: rotate(-90deg);
    transition: transform 0.3s ease;
}

.sub-accordion-icon.active {
    transform: rotate(0deg);
}

.sub-accordion-content {
    display: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: #f9fafc;
    padding: 20px;
}

.sub-accordion-content-inner {
    padding: 20px 30px;
    line-height: 1.6;
    color: #555;
    transition: padding 0.3s ease;
    overflow-y: auto;
}

.sub-accordion-content.active {
    max-height: 30000px;
    display: block;
}

.sub-accordion-content.active .accordion-content-inner {
    padding: 20px;
}

@media (max-width: 768px) {
    .content-inner {
        margin: 0;
        padding: 20px;
    }

    .sub-accordion-header {
        padding: 15px;
    }

    .sub-accordion-header h3 {
        font-size: 16px;
    }
}

/* -================= 折叠栏放的是 参考文献  ================- */
/* .sub-accordion-content-inner p {
    font-size: 15px;
} */




/*  ===========================  标题太长的特殊处理  ================================ */
h2.need-short {
    opacity: 0;
    margin: 0;
    font-size: 1px;
    font-weight: 100;
}

p.short-origin {
    margin: 30px 0px 12px -30px;
    color: #5471aa;
    font-size: 4vh;
    font-weight: 700;
}



/*  ==========================  参考文献  =============================  */
.refer h1 {
    color: #574372;
}

.refer p {
    font-size: 16px;
  font-weight: 300;
}
.word {
    background-color:   #fffaf7cf;
    border-radius:20px;
    margin:40px 90px 20px 0px;
}

.word h1 {
    color: #574372;
    margin:0px 30px;
}

.word p {
    font-size: 16px;
  font-weight: 300;
  /* 1. 文本水平居中：让p元素内的文字内容水平对齐 */
  padding: 5px 40px; /* 上下内边距5px（可选，控制垂直间距），左右内边距40px（左右距离） */
  /* 可选：清除默认外边距，避免与其他元素紧贴 */
  margin: 10px 0;
   word-break: break-all; 
}
.word img {
   margin: 0 auto; 
  /* 必须条件：图片需为“块级元素”（img默认是行内块元素，需手动设置） */
  display: block; 
  /* 可选：限制图片最大宽度，避免图片过宽超出父容器（适配响应式） */
  max-width: 100%; 
  /* 可选：清除图片默认边框（部分浏览器会给未加载图片加边框） */
  border: none; 
}
.word h3{
    font-size:20px;
    font-weight: 300;
    padding: 5px 40px; /* 上下内边距5px（可选，控制垂直间距），左右内边距40px（左右距离） */
  /* 可选：清除默认外边距，避免与其他元素紧贴 */
  margin: 10px 0;
  color:#000;
   word-break: break-all; 

}



/* =============== 上标 ==================== */
sup {
    font-size: 0.60em;
    vertical-align: super;
    line-height: 0;
}



/* ==============================  description imgs  ================================= */
/* 文档里放置的图片 */
.desc-img1,
.desc-img2,
.desc-img3,
.desc-img4 {
    width: 80%;
    margin: 50px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 5px 5px 12px rgba(0, 0, 0, 0.4);
    border-radius: 20px;
    text-align: center;

    display: flex;
    align-items: center;
    justify-self: center;
    flex-direction: column;
}

.desc-img1 img,
.desc-img2 img,
.desc-img3 img,
.desc-img4 img {
    display: block;
    width: 460px;
    margin: 0 auto;
    object-fit: contain;
    flex-shrink: 0;
}

/* 图注 */
.sub-img1-cpt {
    margin-top: 10px;
    color: #000;
    font-size: 12px;
}





/*  =======================  education 的教授卡片  ========================== */

.professors-profile {
    /* max-width: 900px; */
    width: 100%;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 40px;
    box-sizing: border-box;
}

.prof-container {
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin: 40px 40px;
}

.prof-image {
    flex-shrink: 0;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #3498db;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
    margin-right: -20px;
}

.prof-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.prof-container {
    flex: 1;
    position: relative;
    z-index: 1;
    overflow-y: auto;
    max-height: 80vh;
}

.summary-box {
    background-image: url("./images/a.jpg");
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 20px;
    height: 100px;
    /* width: 100%; */
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.summary-box:hover {
    background-color: #f1f3f4;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}

.summary-box h3 {
    color: #2c3e50;
    margin-bottom: 8px;
    text-align: center;
    font-size: 1.6rem;
}

.summary-box p {
    color: #7f8c8d;
    line-height: 1.5;
    text-align: center;
}

.detail-box {
    max-height: 0;
    overflow: hidden;
    background-color: #f8f9fa;
    border-radius: 0 0 8px 8px;
    transition: max-height 0.5s ease;
    margin-top: 0;
}

.detail-content {
    padding: 20px;
    border-top: 1px solid #e9ecef;
    width: 80%;
}

.detail-content h4 {
    color: #3498db;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.detail-content p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.detail-content ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.detail-content li {
    margin-bottom: 8px;
    color: #555;
}

.expanded .summary-box {
    border-radius: 8px 8px 0 0;
    border-bottom: none;
}

.expanded .detail-box {
    max-height: 500px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.arrow {
    display: inline-block;
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.expanded .arrow {
    transform: rotate(180deg);
}

@media (max-width: 600px) {
    .prof-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .prof-image {
        width: 100px;
        height: 100px;
    }
}
.resu-part1-top {
    position: relative;
    /* top: 10vh; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80%;
    border-radius: 20px;
    min-height: 28vh;
    margin: 0 auto;
    background: linear-gradient(to right, #fcfdff, #d1e3fc);
    padding: 60px auto;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.resu-part1-top-container{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding: 15px auto;
    padding-bottom: 30px;
    background-color: #ffffffcc;
    border-radius: 20px;
}

.resu-part1-top-img{
    width: 80%;
    margin: 50px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 5px 5px 12px rgba(0, 0, 0, 0.4);
    border-radius: 20px;
    text-align: center;

    display: flex;
    align-items: center;
    justify-self: center;
    flex-direction: column;
}

.resu-part2-top-img {
    margin: 40px auto;
    width: 50%;
    /* margin-left: 16%;  */
    max-width: 900px;
}

.resu-part1-top-img img {
    width: 90%;
    height: auto;
    margin-left: 5%;
    transition: transform 0.3s ease;
    max-height:500px;
    max-width:1000px;
}



.resu-part1-top-text {
    font-size: 15px;
    font-weight: 700;
    margin-top: 10px;
    width: 90%;
    padding-top: 10px;
    text-align: center;
    margin-bottom: 8px;
    color: #0e2115;
    max-width: 900px;
    margin-left: 0%;
    line-height: 1.3;
    text-align: center;
}
.word-back {
  background-color:#fff;
  border-radius:10px;
  margin:20px 30px;
  padding:10px 10px;

}

.desc-double-imgs {
    display: flex;
    flex-direction: column;
    width: 90%;
    margin: 50px auto;
    padding: 30px 30px 10px;
    background-color: #fff;
    box-shadow: 5px 5px 12px rgba(0, 0, 0, 0.4);
    border-radius: 20px;
    text-align: center;
}

.desc-db-imgs-holder {
    display: flex;
    align-items: center;
    justify-self: center;
    flex-direction: row;
    width: 100%;
    /* gap: 20px; */
}

.desc-db-imgs-holder img {
    display: block;
    width: 48%;
    margin: 0 auto;
    object-fit: contain;
    flex-shrink: 0;
}



/*  ===== 图注 ===== */
.sub-img-cpt {
    text-align: center;
    color: #000;
    font-size: 12px;
    font-weight: 600;
    padding: 12px 30px;
}


.desc-img1,
.desc-img2,
.desc-img3,
.desc-img4 {
    width: 60%;
    margin: 50px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 5px 5px 12px rgba(0, 0, 0, 0.4);
    border-radius: 20px;
    text-align: center;
}

.desc-img1 img,
.desc-img2 img,
.desc-img3 img,
.desc-img4 img {
    display: block;
    width: 90%;
    margin: 0 auto;
    margin-left: 33px;
    object-fit: contain;
    flex-shrink: 0;
}

/* ==============================表格============================== */

 :root {
            --table-border-radius: 8px;
            --table-header-bg: #eaf5ff;
            --table-header-color: #024d99;
            --table-row-even-bg: #e9f1fcee;
            --table-row-odd-bg: #fefeff;
            --table-hover-bg: #EFF6FF;
            --table-border-color: #E2E8F0;
            --table-text-color: #1E293B;
            --table-padding: 12px 16px;
        }
        
        .styled-table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
            border-radius: var(--table-border-radius);
            overflow: hidden;
        }
        
        .styled-table th {
            background-color: var(--table-header-bg);
            color: var(--table-header-color);
            padding: var(--table-padding);
            text-align: left;
            font-weight: 600;
            position: relative;
            min-width: 65px;
        }
        
        .styled-table td {
            padding: var(--table-padding);
            border-bottom: 1px solid var(--table-border-color);
            color: var(--table-text-color);
        }
        
        .styled-table tr:nth-child(even) {
            background-color: var(--table-row-even-bg);
        }
        
        .styled-table tr:nth-child(odd) {
            background-color: var(--table-row-odd-bg);
        }
        
        .styled-table tr:hover td {
            background-color: var(--table-hover-bg);
        }

       
        
        /* 表格边框样式 */
        .styled-table th,
        .styled-table td {
            border-right: 1px solid var(--table-border-color);
        }
        
        .styled-table th:last-child,
        .styled-table td:last-child {
            border-right: none;
        }
        
        /* 响应式处理 */
        @media (max-width: 768px) {
            .styled-table {
                font-size: 14px;
            }
            
            :root {
                --table-padding: 8px 10px;
            }
        }

        iframe {
    display: block;
    margin: 30px auto 30px;
}