.blog-content a {
    color: #0d6efd;
    text-decoration: none;
    cursor: pointer;
  }
.blog-content a:hover {
    color: #1677ff;      
    text-decoration: underline;
  }
  .blog-content img{
  padding: 20px 0;
  }
  .blog-content p{
  font-size:20px;
  }
  .blog-content h2 span{
  color: red;
  }
.blog-content .faq h4{
  background-color: #e6ecff;
  border-left: 4px solid #4640ff;
  padding:10px; 
  margin:20px 0; 
  }

/*对比表格1*/
  .glass-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(240, 242, 245, 0.6);
    /*  border-radius: 16px;*/
    overflow: hidden;
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.glass-table th {
    padding: 16px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    background: rgb(52, 101, 223);
    backdrop-filter: blur(8px);
    color: #fffdfd;
}

.glass-table td {
    width: 50%;
    vertical-align: top;
    padding: 20px;
}

.glass-table td:first-child {
    border-right: 2px solid rgba(200, 210, 225, 0.4);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 12px;
}

.feature-item {
    background: rgba(200, 210, 225, 0.3);
    border-radius: 12px;
    padding: 10px;
    text-align: center;
    font-size: 14px;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
    color: #1a1a1a;
    transition: all 0.2s ease-in-out;
}

.feature-item:hover {
    background: rgba(200, 210, 225, 0.5);
    transform: scale(1.05);
}

.feature-item a {
    color: #1a1a1a;
}


@media (max-width: 768px) {
    .glass-table-container {
        width: 100%;
        overflow-x: auto;
    }


    .glass-table-container {
        overflow-x: auto;
    }
}

/*对比表格2*/
.glass-table2 {
    width: 100%;
    border-collapse: collapse;
    background: rgba(240, 242, 245, 0.6);
    overflow: hidden;
    backdrop-filter: blur(8px);
    table-layout: auto;
    border:1px solid rgba(0, 0, 0, 0.05);
}

.glass-table2 td {
    padding: 15px 15px;
    text-align: left;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    word-wrap: break-word;
    white-space: normal;
    font-size: 18px;
    color:#4e4e4f;
}


.glass-table2 th {
    padding: 16px;
    font-size: 18px;
    font-weight: bold;
    text-align: left;
    background: rgb(52, 101, 223);
    backdrop-filter: blur(8px);
    color: #fffdfd;
}

.glass-table2 tr:hover {
    background-color: rgba(255, 255, 255, 0.4);
}

tr:nth-child(even) {
    background: linear-gradient(to right, #f9f9f9, #eaeaea); /* Light gray gradient for even rows */
}

tr:nth-child(odd) {
    background: linear-gradient(to right, #ffffff, #f4f4f4); /* White gradient for odd rows */
}

@media (max-width: 768px) {
    .glass-table2-container {
        width: 100%;
        overflow-x: auto;
    }

    .glass-table2 {
        width: 100%;
        table-layout: auto;
    }

    .glass-table2 th, .glass-table2 td {
        padding: 8px 12px;
        word-wrap: break-word;
        white-space: normal;
    }


    .glass-table2-container {
        overflow-x: auto;
    }
}

/*对比表格3*/
table.blue-business-table {
    background-color: #f5f7fa;
    color: #333;
    width: 100%;
    /*    max-width: 1200px;*/
    border-collapse: collapse;
    margin: 20px auto;
    background: #fff;
    border: 1px solid #d0e0ff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    overflow: hidden;
}

table.blue-business-table th,
table.blue-business-table td {
    padding: 12px 15px;
    text-align: left;
}

table.blue-business-table th {
    background: rgb(52, 101, 223);
    color: white;
    font-weight: 600;
}

table.blue-business-table td {
    border-bottom: 1px solid #e2e8f0;
}


table.blue-business-table tbody tr:last-child td {
    border-bottom: none;
}

table.blue-business-table tbody tr:hover {
    background: #f1f7ff;
}

table.blue-business-table .shadow td {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);

}

@media (max-width: 768px) {
    .blue-business-table-container {
        width: 100%;
        overflow-x: auto;
    }


    .blue-business-table-container {
        overflow-x: auto;
    }
}


/*对比表格4*/
.blue-comparison-table-container {
    overflow-x: auto; /* Enable horizontal scrolling on small screens */
    margin: 20px 0;
    max-width: 100%;
}
.blue-comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px; /* Ensure table has a minimum width for readability */
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    background-color: white;
}
.blue-comparison-table th {
    background-color: #3465df;
    color: white;
    padding: 12px 15px;
    text-align: center;
    font-weight: bold;
}
.blue-comparison-table td {
    padding: 10px 15px;
    border: 1px solid #ddd;
    vertical-align: top;
    color: #373636;
}
.dimension-header {
    background-color: #e6f2ff;
    font-weight: bold;
    color: #082d68;
}
.comparison-row:nth-child(even) {
    background-color: #f8f9fa;
}
.comparison-row:nth-child(odd) {
    background-color: white;
}
.product-a-cell, .product-b-cell {
    text-align: center;
}
.product-a-cell.yes, .product-b-cell.yes {
    color: green;
    font-weight: bold;
}
.product-a-cell.no, .product-b-cell.no {
    color: red;
    font-weight: bold;
}

.blog-content ul li::marker {
    color: #007bff;

}

.blog-content ul li {
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: 30px;
    list-style: disc;
    color: #4e4e4f;
    font-size: 20px;
}
.blog-content ol li {
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: 30px;
    color: #4e4e4f;
    list-style: decimal;
    font-size: 20px;
}
.blog-content ol li ul li{
    list-style: disc;       
    font-size: 18px;     
}
.blog-content .list-unstyled li {
    list-style: none;
}
.blog-content .list-unstyled li img {
    padding:  0;
}
.takeaway {
    border-top: 1px dashed #eee;
    margin-bottom: 60px;
    background: linear-gradient(90deg, rgba(236, 249, 255, 0.63), transparent);
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    padding: 20px;
    transition: all 0.25s ease;
}
.takeaway strong {
    color: #0b3b5a;
}

.anysecura-bar {
    background: linear-gradient(to right, #5C7AEA, #3465DF);
    transition: width 1.2s ease-in-out;
}

.anysecura-bar:hover {
    filter: brightness(1.2) drop-shadow(0 0 6px rgba(52, 101, 223, 0.6));
}

.activtrak-bar {
    background: linear-gradient(to right, #8FAEF2, #5C7AEA);
    transition: width 1.2s ease-in-out;
}

.activtrak-bar:hover {
    filter: brightness(1.2) drop-shadow(0 0 6px rgba(92, 122, 234, 0.6));
}


.container-card {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
    margin-bottom: 20px;
}

/* 公共卡片样式 */
.card {
    flex: 1 1 300px;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 20px;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.anysecura-card {
    border-top: 4px solid #3465df; /* 颜色突出 */
    background: linear-gradient(180deg, #f0f6ff 0%, #ffffff 100%);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.anysecura-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

/* ActivTrak hover */
.activtrak-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.card h3 {
    margin-top: 0;
    font-size: 1.3em;
}

/* 列表样式 */
.card ul {
    padding-left: 20px;
}

.card li {
    margin-bottom: 8px;
}

.container-new {
    color: #1f2937;  !important;
    line-height: 1.68;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* H1 / hero */
.container-new h1 {
    font-size: 2.2rem;
    line-height: 1.15;
    margin: 0 0 0.6rem 0;
    font-weight: 700;
    color: #0f1724;
    letter-spacing: -0.3px;
}

/* meta (uses your existing list-unstyled / blog-details__meta) */
.container-new .blog-details__meta li {
    color: #6b7280;
    font-size: 0.92rem;
}



/* paragraphs */
.container-new p {
    color: #374151;
    margin-bottom: 1rem;
}

/* centered image styling */
.container-new p img {
    display: block;
    margin: 1rem auto;
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 22px rgba(15,23,42,0.06);
    transition: transform 0.36s ease, box-shadow 0.36s ease;
}
.container-new p img:hover { transform: translateY(-6px) scale(1.015); }


table.comparison {
    font-size: 14px;
    text-align: left;
}
.comparison th, .comparison td {
    padding: 10px;
    vertical-align: top;
}
.comparison th {
    text-align: center;
}
.comparison tr:nth-child(even) { background: #fafafa; }
.good { background-color: #e6f4ea; }
.bad { background-color: #fdecea; }
.neutral { background-color: #f9f9f9; }
.bar {
    background: #eee;
    border-radius: 4px;
    overflow: hidden;
    height: 10px;
    margin-top: 4px;
}
.bar-fill {
    background: #4caf50;
    height: 100%;
}
.seo-right-banner {
    position: fixed;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    width: 240px;
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    z-index: 100;
}


.seo-right-banner__title {
  font-size: 25px !important;
  color: #2b6cb0 !important;
  line-height: 1.3;
  font-weight: 700 !important;
  margin: -10px 5px 0px 5px !important;
  border-left: none !important;
  font-family: Lato !important;

}


.seo-right-banner__subtitle {
   color: #484848 !important;
  font-size: 16px !important;
  line-height: 1.4 !important;
    margin-bottom: 15px;
    text-align: center;
}
.seo-right-banner__subtitle ul{
  text-align: left;
 font-family: var(--body-font);
  line-height: 1.6;
}
.seo-right-banner__download-button {
    display: block;       
    width: 100%;        
    background: #4884f6;
    padding: 12px 0;     
    border-radius: 8px;
    font-weight: 700;
    font-size: 17px;
    transition: opacity 0.2s;
    position: relative;
    z-index: 2;
    color: white !important;  
    text-align: center;    
}
.seo-right-banner__download-button-win {
    display: block;       
    width: 100%;        
    background: #684df4;
    padding: 12px 0;     
    border-radius: 8px;
    font-weight: 700;
    font-size: 17px;
    transition: opacity 0.2s;
    position: relative;
    z-index: 2;
    color: white !important;  
    text-align: center;    
}
.seo-right-banner__download-button-mac {
    display: block;       
    width: 100%;        
    background: #000000;
    padding: 12px 0;     
    border-radius: 8px;
    font-weight: 700;
    font-size: 17px;
    transition: opacity 0.2s;
    position: relative;
    z-index: 2;
    color: white !important;  
    text-align: center;    
}

.seo-right-banner__security {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    color: #48bb78;
    font-size: 13px;
    font-weight: 600;
}

.seo-right-banner__device-img {
    display: block;
    max-width: 220px;
    height: auto;
    margin: 15px auto 20px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}



.seo-right-brand-header {
    display: flex;
    align-items: center;
    gap: 8px;
  margin-bottom: 20px;
  margin-left: -5px;
}

.seo-right-banner__logo {
    width: 48px;
    object-fit: contain;
    margin-left: 10px;
}

.seo-right-banner__logo2 {
    width: 30px;
    object-fit: contain;
    margin-left: 10px;
}


.seo-right-brand-name {
    line-height: 1.2;
}

.seo-right-brand-main {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #3f649d;
    margin-top: -5px;
}

.seo-right-brand-main2 {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #3f649d;
    margin-top: -5px;
}


.seo-right-brand-product {
    display: block;
    font-size: 14px;
    color: #3f649d;
    margin-top: 3px;
    font-weight: 600;
}


.banner-click-layer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 60px; /* é¢„ç•™æŒ‰é’®åŒºåŸŸé«˜åº¦ */
    z-index: 1;
    cursor: pointer;
}



@media (max-width: 1200px) {
    .seo-right-banner { display: none; }
}

.seo-right-banner__close {
  position: absolute;
  top: -32px;   
  right: 10px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  font-size: 16px;
  cursor: pointer;
  z-index: 200;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.seo-right-banner__close:hover {
  background: #f5f5f5;
  color: #000;
}
.recommended-text {
  background-color: #e6f0ff;    
  border: 2px solid #1e90ff;    
  border-radius: 8px;           
  padding: 16px 20px;        
  color: #003366;         
  margin: 20px auto;               
}
.recommended-icon {
  font-size: 24px;
  color: #1e90ff;
  flex-shrink: 0;
}
.features-title {
  font-size: 2.8rem;       
  font-weight: 700;
  color: #000000;          
  text-align: center;
  margin-bottom: 70px;     
  text-transform: capitalize;
  letter-spacing: 1.2px;    
}
.seo-rec-box{
  position: relative;
  margin: 2em 0;
  padding: 1em 1em;
  border: dashed 2px #4481ff;
  border-radius: 10px;
}
.seo-rec-box .box-title{
  position: absolute;
  display: inline-block;
  top: -15px;
  left: 10px;
  padding: 0 9px;
  line-height: 1;
  font-size: 26px;
  background:#fff;
  color:#4883f7;
  font-weight: bold;
  border:none;
}
.procons{
  font-size: 24px;
  font-weight: bold;
  color: black;
}
 .quicktime-note {
  background-color: #f4f5f8;
  border: 1px solid #dfdfdf;
  padding: 20px;
  margin: 20px 0;
}

.quicktime-note h4 {
  margin-top: 0;
  color: #0056b3;
}
.quicktime-note .title {
  margin-top: 0;
  font-size: 20px;
  font-weight: 700;
  color: #000000;
}
.quicktime-note ul {
  margin: 0;
  padding-left: 20px;
}


.table-list {
    padding: 0;
    margin: 0;
}


.table-list li {
    font-size: 20px !important;
    line-height: 1.6;
    margin: 0 0 2px 0;
    position: relative;
    padding-left: 5px; 
    color: #454546;
}

.custom-list {
    padding: 0;
    margin: 0;
}


.custom-list li {
    font-size: 16px !important;
    font-weight: 400;
    line-height: 1.2;
    margin: 0 0 2px 0;
    position: relative;
    padding-left: 18px; 
    color: #454546;
}



.custom-list2 {
    counter-reset: my-counter; 
    padding: 0;
    margin: 0;
    list-style: none;
}

.custom-list2 li {
    font-size: 19px !important;
    font-weight: 400;
    line-height: 1.7;
    margin: 0 0 2px 0;
    position: relative;
    padding-left: 18px;
    color: #454546;
    counter-increment: my-counter;
}

.custom-list2 li::before {
    content: counter(my-counter) ". "; 
    position: absolute;
    left: 0;
    top: 0;
    color: #454546;
    font-weight: 400; 
}



.product-comparison-section {
 display: flex;
 justify-content: space-between;
 gap: 20px;
 color: #333;
}

.product-comparison-column {
    flex: 1;
    padding: 20px;
    border-radius: 8px;
    box-sizing: border-box;
}

.left-pro-column {
    background-color: #f0f8ff; /* 淡蓝色背景 */
    border: 1px solid #cce6ff;
}

.right-con-column {
    background-color: #f9f9f9; /* 淡灰色背景 */
    border: 1px solid #ddd;
}

.product-comparison-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    text-align: left;
}

.left-pro-title {
    color: #1e90ff; /* 蓝色标题 */
}

.right-con-title {
    color: #555; /* 深灰色标题 */
}

.product-comparison-list {
    list-style-type: disc; /* 使用圆点 */
    padding-left: 20px;
    margin: 0;
}

.product-comparison-list li {
    margin-bottom: 10px;
    line-height: 1.5;
}


@media (max-width: 768px) {
  .product-comparison-section {
    flex-direction: column;  
  }
  .product-comparison-column {
    width: 100%;           
  }
}


.monitor-table ul li{
    font-size: 1.2rem;
    margin-top: 0;
    margin-bottom: 2px;

}

.underline-tooltip {
     position: relative;
     cursor: pointer;

     /* 虚线下划线 */
     text-decoration: none;
     border-bottom: 2px dashed #0073e6;
     padding-bottom: 2px;
 }

.tooltip-content {
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    color: #222;
    padding: 20px 24px;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
    width: 800px;
    min-width: 280px;
    font-size: 19px;
    line-height: 1.7;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 1000;
    white-space: normal;
    overflow: hidden;
    border-left: 4px solid #0073e6;
    padding-left: 20px;
    font-weight: 400;
}

.tooltip-content::before {
    content: '';
    position: absolute;
    right: 10px;
    bottom: 10px;
    width: 80px;
    height: 80px;
    background-image: url('/assets/img/blogs/g2-logo.png');
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.06;
    pointer-events: none;
    z-index: -1; /* 确保在文字后面，但在卡片内 */
}

.underline-tooltip:hover .tooltip-content {
    opacity: 1;
    pointer-events: auto;
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}
.review-info {
    font-size: 14px;
    color: #555;
}
.review-date {
    font-size: 12px;
    color: #999;
}

.review-rating {
    color: #FFD700; /* 金黄色 */
    font-size: 16px;
    margin-bottom: 10px;
}

.review-text {
    margin-bottom: 15px;
}

.review-btn {
    display: inline-block;
    padding: 6px 12px;
    background-color: #0073e6;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
}
.review-btn:hover {
    background-color: #005bb5;
}


  .rbac-container {
    max-width: 1344px;
    margin: 0 auto 100px auto;
    padding: 20px;
  }

  .rbac-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 30px;
    text-align: center;
  }

  .rbac-flow {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .rbac-step {
    flex: 1 1 150px;
    background-color: #fbfbfb;
    border: 0px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    border: 1px solid rgb(203, 217, 247);
    position: relative;
    z-index: 1;
  }

.rbac-step:hover {
  box-shadow: 0 6px 20px rgb(52, 101, 223);
  cursor: pointer;
  }

.rbac-step-number {
      width: 50px;
      height: 50px;
      background: #3465df;
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      margin: 20px auto 15px;
    }



  .rbac-icon {
    font-size: 28px;
    margin-bottom: 10px;
  }

  .rbac-step-title {
    font-size: 18px;
    font-weight: bold;
    color:#403e42;
    margin-bottom: 8px;
  }

  .rbac-step-desc {
    font-size: 16px;
    color: #555;
  }

  .arrow {
    flex: 0 0 40px;
    height: 20px;
    position: relative;
    animation: blinkArrow 1.5s infinite;
  }

  .arrow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 0;
    height: 0;
    transform: translateY(-50%);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 12px solid #007bff;
    animation: moveArrow 1s infinite;
  }

  @keyframes blinkArrow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
  }

  @keyframes moveArrow {
    0% { transform: translateY(-50%) translateX(0); }
    50% { transform: translateY(-50%) translateX(2px); }
    100% { transform: translateY(-50%) translateX(0); }
  }

  @media (max-width: 768px) {
    .rbac-flow {
      flex-direction: column;
      gap: 40px;
    }
    .arrow {
      display: none;
    }
    .rbac-step {
      flex: 1 1 100%;
    }
  }


.outlined-img {
  filter: drop-shadow(0 0 3px snow) drop-shadow(0 0 3px #f4f1f1);
}


.blue-business-table td small {
    color: #6b7280;
    display: block;
    margin-top: .15rem;
}


.v-head {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 6px
}


.v-sub {
    color: #4b5563;
    margin: .25rem 0 .5rem
}

.v-chips {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin: .35rem 0 .25rem
}

.chip {
    padding: 4px 8px;
    border-radius: 999px;
    background: #f2f6f9;
    font-weight: 700;
    font-size: .82rem
}

.v-grid {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 12px;
    margin-top: 8px
}

.v-card {
    border: 1px dashed #e6ecf2;
    border-radius: 10px;
    padding: 10px
}

.v-card h5 {
    margin: .1rem 0 .4rem 0;
    font-size: .95rem
}

.v-card ul {
    margin: 0;
    padding-left: 18px
}

.v-card li {
    margin: .25rem 0
}

.v-muted {
    color: #6b7280;
    font-size: .9rem;
    margin-top: 8px
}

.meter > span {
    display: block;
    height: 10px;
    background: linear-gradient(90deg, #2ecc71, #27ae60);
}

.meter.warn > span {
    background: linear-gradient(90deg, #f1c40f, #f39c12);
}

.meter.danger > span {
    background: linear-gradient(90deg, #e74c3c, #c0392b);
}

.card h5 {
    margin: .1rem 0 .25rem 0;
    font-size: .95rem;
}

.scorecard {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    margin: .75rem 0 0;
}

.badge {
    padding: .25rem .6rem;
    border-radius: 999px;
    font-size: .85rem;
    font-weight: 700;
}

.badge-winner {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: white;
}

.numscore {
    font-weight: 800;
    font-size: 1.1rem;
    padding: .25rem .55rem;
    border-radius: .5rem;
    background: #f4f6f8;
}

.stars {
    letter-spacing: 1px;
    font-size: 1.05rem;
}

.stars .on {
    color: #f39c12;
}

.note {
    font-size: .9rem;
    color: #566;
    margin: .3rem 0 0;
}


.dim {
    color: #6b7280;
    font-weight: 600;
}




.monitor-table tbody tr:nth-child(odd) {
    background: #fbfcfd;
}

.monitor-table .dim {
    width: 18%;
    font-weight: 600;
    padding-top: 14px;
}

.monitor-table .why {
    width: 20%;
    font-style: italic;
    color: #333;
}

@media (max-width: 768px) {
    .monitor-table thead th {
        font-size: 0.85rem;
    }

    .monitor-table tbody td {
        font-size: 0.88rem;
        padding: 10px 12px;
    }

    .monitor-table {
        min-width: 880px;
    }
}


/*Questionnaire*/
.dpq-selector {
    --dpq-primary: #4884f6;
    --dpq-secondary: #4884f6;
    --dpq-accent: #7209b7;
    --dpq-light: #f8f9fa;
    --dpq-dark: #212529;
    --dpq-success: #4cc9f0;
    --dpq-warning: #f72585;
    --dpq-border-radius: 10px;
    --dpq-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.dpq-selector * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.dpq-selector {
    background: white;
    color: var(--dpq-dark);
    line-height: 1.6;
    min-height: auto;
}

.dpq-wrapper {
    max-width: 100%;
    margin: 0 auto;
}

.dpq-header-section {
    text-align: center;
    margin-bottom: 40px;
    padding: 20px;
    background: white;
    border-radius: var(--dpq-border-radius);
    box-shadow: var(--dpq-box-shadow);
}

.dpq-main-title {
    color: var(--dpq-secondary);
    margin-bottom: 10px;
    font-size: 2.2rem;
}

.dpq-subtitle {
    color: var(--dpq-accent);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.dpq-quiz-section {
    background: white;
    border-radius: var(--dpq-border-radius);
    box-shadow: var(--dpq-box-shadow);
    padding: 30px;
    margin-bottom: 30px;
}

.dpq-progress-container {
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    margin-bottom: 30px;
    overflow: hidden;
}

.dpq-progress-bar {
    height: 100%;
    background: linear-gradient(to right, var(--dpq-primary), var(--dpq-accent));
    width: 0%;
    transition: width 0.5s ease;
}

.dpq-question {
    margin-bottom: 30px;
    display: none;
}

.dpq-question.active {
    display: block;
    animation: dpq-fadeIn 0.5s ease;
}

@keyframes dpq-fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.dpq-question-title {
    margin-bottom: 20px;
    color: var(--dpq-secondary);
    font-size: 24px;
    font-weight: 500;
}

.dpq-options {
    display: grid;
    gap: 15px;
}

.dpq-option-btn {
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: var(--dpq-border-radius);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    background: white;
    color: var(--dpq-dark);
    font-size: 1rem;
}

.dpq-option-btn:hover {
    border-color: var(--dpq-primary);
    background: rgba(67, 97, 238, 0.05);
}

.dpq-option-btn.selected {
    border-color: var(--dpq-primary);
    background: rgba(67, 97, 238, 0.1);
}

.dpq-navigation-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.dpq-action-button {
    padding: 12px 25px;
    border: none;
    border-radius: var(--dpq-border-radius);
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.dpq-button-prev {
    background: #e9ecef;
    color: var(--dpq-dark);
}

.dpq-button-prev:hover {
    background: #dee2e6;
}

.dpq-button-next {
    background: var(--dpq-primary);
    color: white;
}

.dpq-button-next:hover {
    background: var(--dpq-secondary);
}

.dpq-button-submit {
    background: var(--dpq-accent);
    color: white;
}

.dpq-button-submit:hover {
    background: #5a08a0;
}

.dpq-result-section {
    display: none;
    background: white;
    border-radius: var(--dpq-border-radius);
    box-shadow: var(--dpq-box-shadow);
    padding: 30px;
    text-align: center;
    margin-bottom: 30px;
}

.dpq-result-section.active {
    display: block;
    animation: dpq-fadeIn 0.5s ease;
}

.dpq-result-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    color: var(--dpq-success);
}

.dpq-result-heading {
    color: var(--dpq-secondary);
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.dpq-result-description {
    margin-bottom: 25px;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.dpq-recommendation-card {
    background: rgba(67, 97, 238, 0.1);
    border-radius: var(--dpq-border-radius);
    padding: 20px;
    margin-top: 25px;
    text-align: left;
}

.dpq-recommendation-title {
    color: var(--dpq-primary);
    margin-bottom: 15px;
}

.dpq-feature-list {
    list-style-type: none;
    margin-bottom: 20px;
}

.dpq-feature-list li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
    list-style: none !important;
}


.dpq-feature-list li:before {
    content: "✓" !important;
    position: absolute;
    left: 0;
    color: var(--dpq-success);
    font-weight: bold;
}

.dpq-button-restart {
    background: var(--dpq-warning);
    color: white;
    margin-top: 20px;
}

.dpq-button-restart:hover {
    background: #d81773;
}

.dpq-footer-section {
    text-align: center;
    margin-top: 40px;
    color: #6c757d;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .dpq-wrapper {
        padding: 10px;
    }
    
    .dpq-main-title {
        font-size: 1.8rem;
    }
    
    .dpq-quiz-section, .dpq-result-section {
        padding: 20px;
    }
    
    .dpq-navigation-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .dpq-action-button {
        width: 100%;
    }
}


/* 有序列表样式 */
.table-list-content ol {
    line-height: 1.0; /* 调整行距 */
    color: #333; /* 字体颜色 */
    padding-left: 0px; /* 调整左边距 */
    margin: 0; /* 清除默认外边距 */
}

.table-list-content img {
    padding: 0px 0;
}

/* 列表项样式 */
.table-list-content ol li {
  padding-left: 5px;
  margin-top: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  line-height: 1.7;
  color: #333;
  list-style: none;
  font-size: 100%;
}

/*小结*/
 .result-section {
     margin-top: 30px;
     padding: 20px;
     background-color: #f8f9fa;
     border-left: 4px solid #3465df;
     border-radius: 0 5px 5px 0;
 }
 .result-title {
     color: #2c3e50;
     font-weight: bold;
     margin-top: 0;
 }
 .tool-name-1 {
     color: #e74c3c;
     font-weight: bold;
 }
 .tool-name-2 {
     color: #27ae60;
     font-weight: bold;
 }


/*卡片 主标题+内容*/
 .art-note-card {
     background-color: #34495e;
     border-radius: 0px;
     box-shadow: 0 2px 5px rgba(0,0,0,0.1);
     margin-bottom: 40px;
     overflow: hidden;
 }
 .art-note-card-title {
     color: white;
     padding: 12px 20px;
     font-size: 1.1em;
 }
 .art-note-card-content {
     padding: 15px 20px;
     background-color: #f8f9fa;
 }
        


.sdp-content-main {
    display: flex;
}

.sdp-content-main .sdp-sider-bar {
    width: 20%;
    max-width: 270px;
    padding-bottom: 100px;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    background: white;
    z-index: 1;
    box-shadow: 10px 0 25px -10px rgb(228, 233, 242);
}


.sdp-content-main .sdp-sider-bar::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 4px;
  background: linear-gradient(to bottom, #007bff, #66b2ff);
  box-shadow: 0 0 12px rgba(0, 123, 255, 0.6);
  border-radius: 2px;
}

.sdp-content-main .sdp-sider-bar .sdp-side-bar-wrapper {
    top: 30px;
    position: sticky;
}

.sdp-content-main .sdp-sider-bar .sdp-side-bar-wrapper .sidebar {
    padding: 60px 10px 0 0;
    list-style: none;
    margin-top:30px;
}

.sdp-content-main .sdp-sider-bar .sdp-side-bar-wrapper .sidebar li {
    color: black;
    position: relative;
    padding: 6px 15px;
    cursor: pointer;
    transition: color 0.3s ease, background-color 0.3s ease;
    border-radius: 4px;
}

.sdp-content-main .sdp-sider-bar .sdp-side-bar-wrapper .sidebar li:hover:not(.sidebar-heading) {
    background-color: #f5f5f5;
}

.sdp-content-main .sdp-sider-bar .sdp-side-bar-wrapper .sidebar li a {
    color: black;
    text-decoration: none;
}

.sdp-content-main .sdp-sider-bar .sdp-side-bar-wrapper .sidebar li.sidebar-active {
    color: black;
    font-weight: 500;
}

.sdp-content-main .sdp-sider-bar .sdp-side-bar-wrapper .sidebar li.sidebar-active::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: calc(95%);
    background: blue;
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    border-radius: 2px;
}

.sdp-content-main .sdp-sider-bar .sdp-side-bar-wrapper .sidebar li.sidebar-heading {
    color: blue;
    text-transform: uppercase;
    padding-left: 15px;
    letter-spacing: .5px;
    margin-bottom: 20px;
    cursor: default;
    font-weight: 600;
}

.sdp-content-main .sdp-sider-bar .sdp-side-bar-wrapper .sidebar li.side-sub-nav {
    padding-left: 25px;
    font-size: 15px;
}

.sdp-content-main .sdp-content-section {
    width: 80%;
    position: relative;
    padding: 50px 0 0 90px;
}
@media screen and (max-width: 1024px) {
    .sdp-content-main .sdp-sider-bar {
        width: 25%;
        max-width: 220px;
    }

    .sdp-content-main .sdp-content-section {
        width: 75%;
        padding-left: 40px;
    }

    .sdp-content-main .sdp-sider-bar .sdp-side-bar-wrapper .sidebar {
        padding: 40px 20px 0 0;
    }
}

/* ========================================
   移动端折叠样式
   ======================================== */

@media screen and (max-width: 768px) {
    .sdp-content-main {
        flex-direction: column;
        padding: 10px;
    }

    .sdp-content-main .sdp-sider-bar {
        width: 100%;
        max-width: 100%;
        min-width: auto;
        position: relative; 
        top: auto;
        padding-bottom: 0;
        margin-bottom: 20px;
        background: white;
        border: 2px solid black;
        border-radius: 8px;
        padding: 0;
    }

    .sdp-content-main .sdp-sider-bar .sdp-side-bar-wrapper .sidebar {
        margin-top:0;
    }

    .sdp-content-main .sdp-sider-bar .sdp-side-bar-wrapper {
        position: relative;
        top: 0;
    }

    .sdp-content-main .sdp-sider-bar .sdp-side-bar-wrapper .sidebar li.sidebar-heading {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        margin-bottom: 0;
        cursor: pointer;
        border-radius: 8px 8px 0 0;
        position: relative;
    }

    .sdp-content-main .sdp-sider-bar .sdp-side-bar-wrapper .sidebar li.sidebar-heading::after {
        content: '';
        width: 0;
        height: 0;
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-top: 6px solid blue;
        transition: transform 0.3s ease;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }

    .sdp-content-main .sdp-sider-bar.mobile-expanded .sdp-side-bar-wrapper .sidebar li.sidebar-heading::after {
        transform: translateY(-50%) rotate(180deg);
    }

    .sdp-content-main .sdp-sider-bar .sdp-side-bar-wrapper .sidebar {
        padding: 0;
    }
    .sdp-content-main .sdp-sider-bar .sdp-side-bar-wrapper .sidebar li:not(.sidebar-heading) {
        display: none;
        padding: 12px 20px;
        border-left: 4px solid transparent;
        border-radius: 0;
        margin: 0;
    }

    .sdp-content-main .sdp-sider-bar.mobile-expanded .sdp-side-bar-wrapper .sidebar li:not(.sidebar-heading) {
        display: block;
    }

    .sdp-content-main .sdp-sider-bar .sdp-side-bar-wrapper .sidebar li:not(.sidebar-heading):hover {
        background-color: #f5f5f5;
    }

    .sdp-content-main .sdp-sider-bar .sdp-side-bar-wrapper .sidebar li.sidebar-active {
        background-color: #f0f7ff;
        border-left-color: blue;
        color: blue;
        font-weight: 500;
    }

    .sdp-content-main .sdp-sider-bar .sdp-side-bar-wrapper .sidebar li.sidebar-active::before {
        display: none;
    }

    .sdp-content-main .sdp-sider-bar .sdp-side-bar-wrapper .sidebar li:not(.sidebar-heading):last-child {
        border-radius: 0 0 8px 8px;
    }

    .sdp-content-main .sdp-content-section {
        width: 100%;
        padding: 20px 0 0 0;
    }

}

@media screen and (max-width: 480px) {
    .sdp-content-main .sdp-sider-bar .sdp-side-bar-wrapper .sidebar li.sidebar-heading {
        padding: 12px 16px;
    }

    .sdp-content-main .sdp-sider-bar .sdp-side-bar-wrapper .sidebar li:not(.sidebar-heading) {
        padding: 10px 16px;
    }
}


.cta-box {
    margin: 30px 0;
    padding: 16px;
    background-color: #eef3ff;
    border-radius: 12px;
    text-align: center;
}

.cta-box h3::before {
    content: none;
}

.cta-box h3 {
    margin-bottom: 8px;
}

.cta-box p {
    margin: 0 40px 12px 40px;
}

.cta-box a {
    background-color: #0046ff;
    color: #fff;
    padding: 10px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}

.steps {
  padding: 3px 5px;
  background: #5289f8;
  border-radius: 8px;
  margin-right: 10px;
  color: #FFF;
  font-weight: bold;
}




.icon {
    width: 34px;
    height: 34px;
    color: #2563eb;
    flex: 0 0 34px
}

.tick {
    color: #16a34a;
    margin-top: 2px
}

.quote {
    border-left: 6px solid #2b6cb0;
    padding: 0.6rem 1rem;
    margin: 1rem 0;
    background: rgba(43, 108, 176, 0.05);
    color: #1a202c;
    font-style: italic;
    line-height: 1.6;
    border-radius: 6px;
}

.quote p {
    margin: 0;
}
  .recommend-inline {
    margin: 25px 0;
    background: #f9f9f9;
    border-radius: 8px;
    border: 1px solid #eee;
    transition: background-color 0.3s ease;
    display: flex; 
    align-items: center; 
    padding: 15px;
    text-decoration: none;
    color: inherit;
}

.recommend-inline .recommend-image-wrapper {
    flex-shrink: 0; 
    height: 200px;
    margin-right: 20px;
    border-radius: 6px;
    overflow: hidden;
}

.recommend-inline .recommend-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recommend-inline .recommend-text-wrapper {
    flex-grow: 1;
}

.recommend-inline .recommend-title-inline {
    margin: 0 0 8px 0;
    font-size: 1.05em;
    font-weight: bold;
    color: #2c3e50;
}

.recommend-inline .recommend-excerpt-inline {
    margin: 0;
    font-size: 0.85em;
    color: #7f8c8d;
    line-height: 1.6;
}
@media (max-width: 768px) {
    .recommend-inline {
        flex-direction: column;    
        align-items: flex-start;
        padding: 12px;
    }

    .recommend-inline .recommend-image-wrapper {
        width: 100%;           
        height: 160px;
        margin-right: 0;
        margin-bottom: 12px;
    }

    .recommend-inline .recommend-title-inline {
        font-size: 1em;
    }

    .recommend-inline .recommend-excerpt-inline {
        font-size: 0.85em;
    }
}


@media (max-width: 480px) {
    .recommend-inline {
        padding: 10px;
    }

    .recommend-inline .recommend-image-wrapper {
        height: 130px;          
    }

    .recommend-inline .recommend-title-inline {
        font-size: 0.95em;
    }

    .recommend-inline .recommend-excerpt-inline {
        font-size: 0.8em;
        line-height: 1.5;
    }
}