 body {
     font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
 }

 .max-container {
     max-width: var(--max-container);
     margin: 20px auto 0 auto;

 }

 .divider {
     display: inline-block;
     width: 1px;
     height: 13px;
     background: var(--gray-border);
     margin: 0 3px;
 }

 .flex-3 {
     display: flex;
     gap: 1rem;
     flex-direction: row;

 }

 .flex-3 .dir {
     border-radius: 5px;
 }

 .left-dir {
     width: 69px;
     position: fixed;
     top: 250px;
     left: 220px;
     /* z-index: 99999; */
 }

 .left-dir .aoouti {
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 1rem;
 }

 .left-dir .aoouti li {
     display: flex;
     align-items: center;
     justify-content: center;
     width: 48px;
     height: 48px;
     background-color: #fff;
     border-radius: 50%;
     box-shadow: 0 2px 5px -1px #ddd;
     cursor: pointer;
     position: relative;
 }

 /* 显示用户已经点赞的评论 style*/
 .liked {
     color: var(--logo);
 }

 .liked .bb {
     background: var(--logo) !important;
 }

 .favorited .bb {
     background: var(--fuzhu) !important;
 }

 .left-dir .aoouti li svg {
     color: #8a919f;
 }

 .left-dir .aoouti li:hover svg {
     color: var(--logo);
     transition: all 0.4s ease-in-out;
 }

 .left-dir .aoouti li .bb {
     height: 17px;
     line-height: 17px;
     padding: 0 5px;
     border-radius: 9px;
     font-size: 11px;
     text-align: center;
     white-space: nowrap;
     right: 0;
     background-color: #c2c8d1;
     color: #fff;
     position: absolute;
     top: 0;
 }

 /* 菜单容器 */
 .left-dir .aoouti li .menu {
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     right: 100%;
     margin-right: 12px;
     background: #ffffff;
     border-radius: 12px;
     box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
     min-width: 140px;
     padding: 6px 0;
     z-index: 999999;
     white-space: nowrap;
     display: none;
     animation: menuFadeIn 0.2s ease;
 }

 /* 小三角 */
 .left-dir .aoouti li .menu::before {
     content: '';
     position: absolute;
     top: 50%;
     right: -6px;
     transform: translateY(-50%);
     width: 0;
     height: 0;
     border-left: 6px solid #ffffff;
     border-top: 6px solid transparent;
     border-bottom: 6px solid transparent;
     filter: drop-shadow(2px 0 3px rgba(0, 0, 0, 0.02));
     z-index: 2;
 }

 /* 透明桥接层 (关键修正) */
 .left-dir .aoouti li .menu::after {
     content: '';
     position: absolute;
     left: 100%;
     /* 贴在菜单右侧 */
     top: 0;
     width: 12px;
     /* 覆盖间隙 */
     height: 100%;
     background: transparent;
     z-index: 1;
 }

 /* 菜单项样式 */
 .left-dir .aoouti li .menu .menu-item {
     padding: 10px 18px;
     font-size: 14px;
     color: #2c3e50;
     cursor: pointer;
     transition: background 0.2s, color 0.2s;
     display: flex;
     align-items: center;
     gap: 8px;
     border-radius: 6px;
     margin: 2px 6px;
 }

 .left-dir .aoouti li .menu .menu-item:hover {
     background-color: rgba(0, 114, 255, 0.05);
     color: var(--logo, #1e80ff);
 }

 /* 分隔线 */
 .left-dir .aoouti li .menu .menu-item:not(:last-child) {
     border-bottom: 1px solid #f0f0f0;
     padding-bottom: 10px;
 }

 /* 显示菜单 */
 .left-dir .aoouti li:hover .menu,
 .left-dir .aoouti li .menu:hover {
     display: block;
 }

 /* 动画 */
 @keyframes menuFadeIn {
     0% {
         opacity: 0;
         transform: translateY(-50%) translateX(5px);
     }

     100% {
         opacity: 1;
         transform: translateY(-50%) translateX(0);
     }
 }

 /* 特殊角标 */
 .left-dir .aoouti li .Special-bgc {
     background-color: var(--logo);
 }

 .center-dir {
     width: 75%;
     height: 100%;
 }

 .article-ant-card-body {
     padding: 24px;
     background-color: white;
 }

 /* 标题 */
 .ant-typography {
     margin: 0 0 1.3rem;
     font-size: 1.867rem;
     font-weight: 600;
     line-height: 1.31;
 }

 /* 二次数据 */
 .article-ant-card-body .meta {
     display: flex;
     gap: 0.6rem;
     align-items: center;
 }

 .article-ant-card-body .meta li a {
     display: inline-block;
     vertical-align: top;
     overflow: hidden;
     text-overflow: ellipsis;
     white-space: nowrap;
     color: #515767;
     font-weight: 500;
 }

 .article-ant-card-body .meta li a:hover {
     color: var(--logo);
     transition: all 0.3s ease-in-out;
 }

 .article-ant-card-body .meta li {
     color: #8a919f;
     font-size: .875rem;
     line-height: 1.25rem;
 }



 /* 内容主体部分 */
 .md-viewer {
     word-break: break-word;
 }



 /* 标签 */
 .tag-list-title,
 .theme-list-title {
     color: #8a919f;
 }

 .tag-list-box .tag-item {
     background-color: #f7f8fa;
     color: #6b7280;
     padding: 5px 1rem;
     border-radius: 3px;
     /* margin: 0 1rem; */
     display: flex;
     justify-content: center;
     align-items: center;
     transition: all 0.3s;
 }

 .tag-list-box .tag-item:hover {
     color: var(--logo);
     background: rgba(41, 151, 247, 0.1);
 }

 .blog-heading-1,
 .blog-heading-2 {
     margin: 0.6rem 0 !important;
     line-height: 1.5;
     font-weight: 600;
 }

 /* 右边侧边栏 */
 .right-dir {
     width: 25%;
     height: 100%;
 }

 .right-dir .pb {
     padding-bottom: 12px;
 }

 .right-card {
     padding: 15px;
     border-radius: 5px;
     margin-bottom: 20px;
     background-color: rgb(255, 255, 255);
 }

 .right-dir .author-block .user-gar {
     width: 100%;
     display: flex;
     align-items: center;
     margin-bottom: 5px;
     color: #000000;
 }

 /* 头像 */
 .right-dir .author-block .user-gar .user-avare {
     width: 48px;
     height: 48px;
     border-radius: 50%;
     overflow: hidden;
     margin-right: 15px;
 }

 .right-dir .author-block .user-gar .user-avare img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 /* 用户名称 */
 .right-dir .author-block .user-gar .name {
     display: inline-block;
     vertical-align: top;
     overflow: hidden;
     text-overflow: ellipsis;
     white-space: nowrap;
     display: flex;
     align-items: center;
 }

 /* 个性签名 */
 .right-dir .author-block .user-gar .position {
     font-size: 14px;
     width: 100%;
     color: #8a919f;
     font-weight: 400;
     line-height: 22px;

     display: -webkit-box;
     -webkit-line-clamp: 1;
     -webkit-box-orient: vertical;
     overflow: hidden;
     word-wrap: break-word;
     word-break: break-word;
     overflow-wrap: anywhere;
     hyphens: auto;
     text-overflow: ellipsis;
     white-space: normal;
 }

 /* 勋章 */
 .right-dir .author-block .user-gar .extra-container {
     display: flex;
     align-items: center;
     gap: 5px;
 }

 .right-dir .author-block .user-gar .extra-container li {
     background: rgba(41, 151, 247, 0.1);
     color: #2997f7;
     font-size: 10px;
     border-radius: 4px;
 }

 .right-dir .author-block .user-gar .rank {
     width: 32px;
     height:17px;
     display: flex;
     margin-left: 5px;
 }
 .right-dir .author-block .user-gar .rank img{
    width: 100%;
    height: 100%;
    object-fit: contain;
 }
 .right-dir .author-block .count-container {
     display: flex;
     align-items: center;
     justify-content: space-around;
     width: 100%;
     margin: 20px 0;
 }

 .right-dir .author-block .count-container a {
     display: flex;
     flex-direction: column;
     color: #000000;
     transition: all 0.3s;
     align-items: center;
 }

 .right-dir .author-block .count-container a:hover {
     color: var(--logo) !important;
 }

 .right-dir .author-block .count-container a:hover .acf {
     color: var(--logo) !important;
 }

 .right-dir .author-block .count-container a .count {
     font-size: 16px;
     font-weight: 500;
     line-height: 24px;
 }

 .right-dir .author-block .count-container a .acf {
     color: #8a919f;
     font-size: 13px;
     font-weight: 400;
     line-height: 22px;
 }

 .right-dir .author-block .btn-graup {
     display: flex;
     align-items: center;
     justify-content: space-around;
     margin-top: 8px;
     gap: 1.1rem;
 }

 .right-dir .author-block .btn-graup button {
     border: none;
     color: #fff;
     height: 100%;
     padding: 7px 5px;
     width: 120px;
     border-radius: 3px;
     font-size: 0.9rem;
     cursor: pointer;
     transition: all 0.3s;
 }

 .right-dir .author-block .btn-graup button.btn-brue {

     background-color: var(--logo);
 }


 .right-dir .author-block .btn-graup button.btn-brue:hover {

     background-color: #1f67c5;
 }

 .right-dir .author-block .btn-graup button.btn-message {
     border: 1px solid rgba(30, 128, 255, 0.3);
     background: rgba(41, 151, 247, 0.1);
     color: var(--logo);
 }

 .right-dir .author-block .btn-graup button.btn-message:hover {
     background: rgba(41, 151, 247, 0.2);
 }

 /* 目录 */
 .mulu-card {
     background-color: var(--white);
     margin-bottom: 20px;
 }

 /* 特效 */
 .top-card {
     width: 288px; 
     top: 20px; 
     position: fixed;
     display: none;
 }

 /* end */
 .head-wrapper {
     display: flex;
     justify-content: space-between;
     align-items: center;
     height: 56px;
     font-weight: 500;
     font-size: 16px;
     padding: 0 15px;
     border-bottom: 1px solid var(--gray-border);
 }

 .head-wrapper .Collapse {
     color: var(--size);
     font-size: 13px;
     cursor: pointer;
 }

 .catalog-list {
     position: relative;
 }

 .catalog-list .lsit-lis {
     margin-top: 5px;
 }

 .catalog-list .lsit-lis li {
     padding-left: 17px;
 }

 .catalog-list .lsit-lis li.active {
     color: var(--logo);
 }

 .catalog-list .lsit-lis li a {
     width: 100%;
     color: inherit;
     display: inline-block;
     padding: 5px 0;
     width: 100%;
     font-size: 14px;
     white-space: nowrap;
     overflow: hidden;
     text-overflow: ellipsis;
 }

 .catalog-list .lsit-lis li a:hover {
     color: var(--logo);
 }

 /* 高亮条 */
 .highlight-bar {
     width: 3px;
     margin-left: 5px;
     height: 16px;
     left: 0;
     border-radius: 3px;
     background-color: var(--logo);
     position: absolute;
     transition: top 0.2s;
     /* 平滑移动动画 */
     pointer-events: none;
     /* 防止遮挡点击 */
 }

 .lsit-lis li.active a {
     color: #007bff;
     font-weight: bold;
 }

 /* 相关推荐 */
 .block-body .entry-title {
     display: block;
     padding: 12px 15px 0;
 }

 .block-body .entry-title:hover p {
     color: var(--logo);
 }

 .block-body .entry-title p {
     overflow: hidden;
     text-overflow: ellipsis;
     -webkit-transition: color .2s ease;
     transition: color .2s ease;
     white-space: nowrap;
     color: #000000;
 }

 .block-body .entry-title .flex-con {
     display: flex;
     align-items: center;
     gap: 0.5rem;
     font-size: .85rem;
     line-height: 22px;
     font-weight: 400;
     margin-top: 4px;
     color: #66666699;

 }

 /* 评论 */
 .commentxy {
     width: 100%;
     height: 100%;
     margin-top: 25px;
     padding: 20px;
     background-color: #fff;
 }

 .commentxy .flex-comment {
     display: flex;
     gap: 10px;
     margin-top: 16px;
 }

 /* 用户头像 */
 .commentxy .flex-comment .avatar-box a {
     width: 40px;
     height: 40px;
     border-radius: 50%;
     overflow: hidden;
     display: block;
 }

 .commentxy .flex-comment .avatar-box img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 /* 用户上传的图片 */
 .flex-imgaes {
     width: 100%;
     padding-left: 12px;
     display: flex;
     gap: 9px;
     /* height: 50px; */
 }

 .flex-imgaes .image-preview-box {
     width: 64px;
     height: 64px;
     position: relative;
     border-radius: 3px;
     overflow: hidden;
 }

 .flex-imgaes .image-preview-box .btn-end {
     position: absolute;
     top: 1px;
     right: 1px;
     padding: 4px;
     border-radius: 50%;
     width: 16px;
     transition: all .2s;
     height: 16px;
     line-height: 6px;
     cursor: pointer;
     font-size: 11px;
     color: var(--white);
     background-color: #8a919f9a;
 }

 .flex-imgaes .image-preview-box img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 /* 评论输入组 */
 .commentxy .flex-comment .content {
     width: 100%;
 }

 .commentxy .flex-comment .content {
     background-color: #f2f3f570;
     transition: all 0.3s;
     border-radius: 6px;
     overflow: hidden;
 }

 .commentxy .flex-comment .content .min-body {
     display: flex;
     flex-direction: column;
 }

 .commentxy .flex-comment .content:hover {
     background-color: #ebebed;
 }

 /* 点击放大 输入框*/
 .focused {
     border: 1px solid var(--logo);
     background-color: var(--white) !important;
 }

 .empty:before {
     content: attr(placeholder);
     position: absolute;
     pointer-events: none;
     -webkit-user-select: none;
     -moz-user-select: none;
     user-select: none;
     color: #8a919f;
 }

 .focused .dig.rich-input {
     position: relative;
     min-height: 150px !important;
     max-height: 300px !important;
 }



 .commentxy .flex-comment .content .min-body .rich-input {
     position: relative;
     padding: 8px 12px;
     width: 100%;
     color: #1f67c5;
     outline: none;
     border: none;
     box-sizing: border-box;
     line-height: 28px;
     background-color: transparent;
     font-size: 16px;
     min-height: 44px;
     max-height: 100px;
     overflow: auto;

     flex: 1;
     max-height: none;
 }

 .commentxy .flex-comment .content .min-body .emji-flex {
     height: 48px;
     padding: 0 12px 0 6px;
     display: flex;
     align-items: center;
 }

 .hover-color:hover {
     color: var(--logo) !important;
 }

 .commentxy .flex-comment .content .min-body .emji-flex li {
     font-size: 20px;
     padding: 6px;
     cursor: pointer;
     display: flex;
     color: var(--size);
 }

 .text-count-limit,
 .color-ff {
     color: var(--size);
 }

 .commentxy .flex-comment .content .min-body .emji-flex .submit-btn {
     border-radius: 4px;
     background: var(--logo);
     height: 32px;
     flex-shrink: 0;
     color: var(--white);
     font-size: 14px;
     font-weight: 400;
     line-height: 22px;
     display: flex;
     justify-content: center;
     align-items: center;
     min-width: 60px;
     border: none;
     cursor: pointer;
     margin-left: 9px;
 }

 .submit-btn.hover-op {
     cursor: not-allowed;
     opacity: .5;
 }

 /* 评论内容显示部分style */

 .comment-list-header {
     margin-top: 25px;
     gap: 15px;
     align-items: center;
 }



 .comment-list-header span {
     font-size: 15px;
     font-weight: 500;
     line-height: 22px;
     display: inline-block;
     color: var(--size);
     font-weight: 400;
     cursor: pointer;
     border-radius: 2px;
     padding: 3px 4px;
 }

 .comment-list-header span.avt {
     color: var(--logo);
 }

 .comment-list-wrapper .comment-card {
     gap: 10px;
     margin-top: 25px;
 }

 .comment-list-wrapper .comment-card .comm-box {
     gap: 10px;
     /* align-items: center; */
     margin-bottom: 25px;
 }

 /* 回复缩小头像 */
 .Reply .comment-avatar a {
     width: 32px;
     height: 32px;
 }

 .comment-avatar a {
     width: 40px;
     display: block;
     height: 40px;
     /* background-color: #1e80ff; */
     border-radius: 50%;
     overflow: hidden;
 }

 .comment-avatar img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .comment-header {
     /* font-size: 14px; */
     font-weight: 400;
     width: 100%;
 }

 .comment-content-short,
 .content-se {
     font-size: 16px;
     font-weight: 400;
     line-height: 28px;
     word-break: break-word;
     padding: 10px 0;
 }

 /* 加载评论按钮 */
 .fetch-more-comment {
     border: none;
     width: 100%;
     margin-top: 12px;
     border-radius: 4px;
     gap: 6px;
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--size);
     font-size: 15px;
     height: 52px;
     cursor: pointer;
     background: var(--gray-light);
     font-weight: 500;
     transition: all .2s;
 }

 /* 评论图片 */
 .comment-image {
     position: relative;
     border-radius: 4px;
     display: inline-block;
     width: 120px;
     height: 120px;
     margin-right: 12px;
     border: 1px solid var(--gray-border);
     overflow: hidden;
     cursor: zoom-in;
 }

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

 .comment-header .name a {
     color: var(--size);
     display: block;
 }

 .comment-header .name a { 
    max-width: 180px;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-transition: color .2s ease;
    transition: color .2s ease;
    white-space: nowrap;
 }

 .comment-header .author-tag {
     background: rgba(41, 151, 247, 0.1);
     color: #2997f7;
     font-size: 12px;
     font-weight: 400;
     line-height: 14px;
     border-radius: 2px;
     width: 30px;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     margin-left: 4px;
     flex-shrink: 0;
 }

 .comment-header .author-intro {
     color: var(--size);
 }

 /* 多更 */
 .comment-header .comment-action {
     align-items: center;
     justify-content: space-between;
     color: var(--size);
     font-size: 13px;
 }

 .comment-header .comment-action .flex-op {
     display: flex;
     gap: 16px;
     align-items: center;
 }

 .comment-header .comment-action .flex-op .align {
     display: flex;
     align-items: center;
     gap: 3px;
     cursor: pointer;
 }

 .comment-header .comment-action .flex-op .align:hover {
     color: var(--logo);
 }

 /* 更多按钮 */
 /* 更多按钮容器，必须相对定位 */
 .comment-header .comment-action .more-btn {
     position: relative;
     cursor: pointer;
 }

 /* 菜单容器：默认隐藏，绝对定位在按钮下方 */
 .comment-header .comment-action .more-btn .more-menu {
     display: none;
     position: absolute;
     top: 100%;
     /* 贴在按钮底部 */
     right: 0;
     /* 右对齐（可根据需要调整） */
     margin-top: 8px;
     /* 与按钮的间隙，留给小三角和桥接层 */
     background: #fff;
     border-radius: 12px;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
     min-width: 120px;
     padding: 6px 0;
     z-index: 1000;
     white-space: nowrap;
     animation: menuFade 0.2s ease;
 }

 /* 小三角（指向按钮）- 朝上 */
 .comment-header .comment-action .more-btn .more-menu::before {
     content: '';
     position: absolute;
     bottom: 100%;
     /* 贴在菜单顶部外侧 */
     right: 12px;
     /* 与按钮三个点的位置对齐（可微调） */
     width: 0;
     height: 0;
     border-left: 6px solid transparent;
     border-right: 6px solid transparent;
     border-bottom: 6px solid #fff;
     /* 朝上的三角 */
     filter: drop-shadow(0 -2px 2px rgba(0, 0, 0, 0.03));
     z-index: 2;
 }

 /* 透明桥接层：覆盖按钮与菜单之间的间隙（8px） */
 .comment-header .comment-action .more-btn .more-menu::after {
     content: '';
     position: absolute;
     left: 0;
     right: 0;
     bottom: 100%;
     /* 贴在菜单顶部外侧 */
     height: 8px;
     /* 与 margin-top 等宽，覆盖间隙 */
     background: transparent;
     z-index: 1;
 }

 /* 菜单项样式 */
 .comment-header .comment-action .more-btn .more-menu .menu-item {
     padding: 8px 16px;
     font-size: 14px;
     color: #2c3e50;
     display: flex;
     align-items: center;
     gap: 8px;
     cursor: pointer;
     transition: background 0.2s;
 }

 .comment-header .comment-action .more-btn .more-menu .menu-item:hover {
     background-color: rgba(0, 114, 255, 0.05);
     color: var(--logo);
 }

 /* 显示菜单：鼠标悬停在按钮或菜单上时显示 */
 .comment-header .comment-action .more-btn:hover .more-menu,
 .comment-header .comment-action .more-btn .more-menu:hover {
     display: block;
 }

 /* 入场动画 */
 @keyframes menuFade {
     from {
         opacity: 0;
         transform: translateY(-4px);
         /* 菜单从下往上出现，更自然 */
     }

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




 /* 安全弹窗 */
 .byte-modal-overlay {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-color: rgba(0, 0, 0, 0.4);
     backdrop-filter: blur(2px);
     z-index: 10001;
     display: flex;
     align-items: center;
     justify-content: center;
     visibility: hidden;
     opacity: 0;
     transition: opacity 0.2s cubic-bezier(0.2, 0.9, 0.4, 1.1), visibility 0.2s;
 }

 .byte-modal-overlay.active {
     visibility: visible;
     opacity: 1;
 }

 .byte-modal {
     background: #ffffff;
     width: 90%;
     max-width: 380px;
     border-radius: 8px;
     box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(0, 0, 0, 0.02);
     overflow: hidden;
     transform: scale(0.96);
     transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
 }

 .byte-modal-overlay.active .byte-modal {
     transform: scale(1);
 }

 .byte-modal-header {
     padding: 20px 24px 4px 24px;
     display: flex;
     align-items: center;
     gap: 10px;
 }

 /*  几何装饰线/点 */
 .byte-modal-icon {
     width: 4px;
     height: 20px;
     background: #1e80ff;
     border-radius: 2px;
     display: inline-block;
 }

 .byte-modal-header h3 {
     font-size: 1.25rem;
     font-weight: 500;
     color: #1f2f3e;
     letter-spacing: -0.2px;
     margin: 0;
 }

 .byte-modal-content {
     padding: 8px 24px 20px 24px;
     color: #4a5b6e;
     font-size: 0.9rem;
     line-height: 1.45;
 }

 .byte-modal-url {
     background: #f2f4f8;
     padding: 8px 12px;
     border-radius: 6px;
     font-family: 'SF Mono', 'Menlo', monospace;
     font-size: 0.75rem;
     word-break: break-all;
     margin: 12px 0 4px;
     color: #1e6f8c;
     border: 0.5px solid #e2e8f0;
 }

 .byte-modal-buttons {
     display: flex;
     border-top: 0.5px solid #eff2f6;
 }

 .byte-btn {
     flex: 1;
     text-align: center;
     padding: 14px 0;
     font-weight: 500;
     font-size: 0.95rem;
     cursor: pointer;
     background: #ffffff;
     transition: background 0.2s;
     border: none;
     outline: none;
 }

 .byte-btn-cancel {
     color: #7e8c9e;
     border-right: 0.5px solid #eff2f6;
 }

 .byte-btn-cancel:hover {
     background: #f8f9fc;
 }

 .byte-btn-confirm {
     color: #1e80ff;
     background: #ffffff;
 }

 .byte-btn-confirm:hover {
     background: #f0f7ff;
 }

 /* 安全脚注  */
 .safety-note {
     margin-top: 20px;
     font-size: 0.7rem;
     color: #8f9eb0;
     text-align: center;
     border-top: 0.5px solid #eef2f8;
     padding-top: 18px;
 }