body{
    font-family: "Microsoft YaHei", "微软雅黑", Arial, Helvetica, sans-serif;
}
.lh-article-content img{
    display: block;
    max-width: 100%;
    height: auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    padding: 3px;
    margin: 0 auto;
}
.lh-fs-100{
    font-size:100px;
}
.table-modifier.lh-table-modifier{
    border-spacing: 0 1rem;
}

.lh-height-150{
    height:150px;
}

.lh-nav{
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding-block: clamp(6.5rem, 7.8vw + 1rem, 9.375rem);
    background-image: linear-gradient(180deg, var(--bs-primary) -23.87%, var(--bs-primary-text-emphasis) 89.73%);
}

.lh-nav.lh-over-lay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* 调整透明度到合适程度 */
    z-index: -1; /* 因为isolation: isolate，使用-1让它在背景之上，内容之下 */
}

.lh-domain-list {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    padding: 20px;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
    margin-bottom: 25px;
}

.lh-domain-list::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #3b82f6, #8b5cf6);
    border-radius: 2px 0 0 2px;
}

.lh-domain-list:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.lh-domain-list h6 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 16px 0;
    padding-bottom: 12px;
    border-bottom: 1px solid #f1f5f9;
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
}

.lh-domain-list h6 a {
    color: #374151;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
}

.lh-domain-list h6 a:hover {
    color: #3b82f6;
}

.lh-domain-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.lh-domain-list ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    margin-bottom: 8px;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.lh-domain-list ul li:last-child {
    margin-bottom: 0;
}

.lh-domain-list ul li:hover {
    background: #ffffff;
    border-color: #e2e8f0;
    transform: translateX(4px);
}

.lh-domain-list ul li a {
    color: #475569;
    text-decoration: none;
    font-weight: bolder;
    font-size: 16px;
    transition: color 0.3s ease;
}

.lh-domain-list ul li a:hover {
    color: #3b82f6;
}

.lh-domain-list ul li span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
    font-size: 14px;
}

.lh-domain-list ul li span b {
    color:orange;
    font-weight: 600;
    font-size: 16px;
}

/* 添加一些动画效果 */
.lh-domain-list ul li {
    animation: slideIn 0.5s ease-out;
}

.lh-domain-top-require{
    margin-top: -50px;
    position: relative;
}

.lh-domain-detail-relation {
    background: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.lh-domain-detail-relation h5 {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eaeaea;
}

.lh-domain-detail-relation ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lh-domain-detail-relation li {
    padding: 12px 15px;
    margin-bottom: 8px;
    background-color: #f8f9fa;
    border-radius: 6px;
    border-left: 3px solid #3498db;
    transition: all 0.2s;
}

.lh-domain-detail-relation li a{
    text-decoration: none;
    color: #2c3e50;
}

.lh-domain-detail-relation li:hover {
    background-color: #e9f7fe;
    transform: translateX(3px);
}

.lh-domain-detail-price .price {
    background: white;
    border-radius: 10px;
    padding: 30px 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-bottom: 10px;
}

.lh-domain-detail-price .price:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #3b82f6;
}

.lh-domain-detail-price .price:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.lh-domain-detail-price .price h6 {
    color: #333;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.lh-domain-detail-price .price h6:before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #3b82f6;
    border-radius: 50%;
    margin-right: 10px;
}

.lh-domain-detail-price .price ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lh-domain-detail-price .price li {
    padding: 10px 0;
    color: #555;
    font-size: 1rem;
    border-bottom: 1px solid #f8f8f8;
}

.lh-domain-detail-price .price li:last-child {
    border-bottom: none;
}

.lh-domain-detail-price .price li b {
    color: #1a1a1a;
    font-weight: 600;
    font-size: 1.1rem;
}

.lh-domain-article {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.lh-domain-article:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
}

.lh-domain-article:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.lh-domain-article h6 {
    color: #1e293b;
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f1f5f9;
    position: relative;
    display: flex;
    align-items: center;
}

.lh-domain-article h6:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #3b82f6;
}

.lh-domain-article h6:before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #3b82f6;
    border-radius: 50%;
    margin-right: 12px;
}

.lh-domain-article ul {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.lh-domain-article li {
    padding: 14px 0;
    border-bottom: 1px solid #f8fafc;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease;
}

.lh-domain-article li:hover {
    background-color: #f8fafc;
    padding-left: 10px;
    padding-right: 10px;
    margin-left: -10px;
    margin-right: -10px;
    border-radius: 6px;
}

.lh-domain-article li:last-child {
    border-bottom: none;
}

.lh-domain-article li a {
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    flex-grow: 1;
    transition: all 0.2s ease;
    position: relative;
    padding-left: 24px;
    display: flex;
    align-items: center;
}

.lh-domain-article li a:before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-size: 0.7rem;
    transition: transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
}

.lh-domain-article li:hover a:before {
    transform: translateX(3px);
}

.lh-domain-article li a:hover {
    color: #3b82f6;
}

.lh-domain-article li span {
    color: #94a3b8;
    font-size: 0.85rem;
    min-width: 85px;
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.lh-domain-article > div {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lh-domain-article > div a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: all 0.2s ease;
}

.lh-domain-article > div a:after {
    content: '→';
    margin-left: 8px;
    transition: transform 0.2s ease;
    display: flex;
    align-items: center;
}

.lh-domain-article > div a:hover {
    color: #1d4ed8;
}

.lh-domain-article > div a:hover:after {
    transform: translateX(3px);
}

.lh-cloud-area-item {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid #f1f5f9;
}

.lh-cloud-area-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #2a62ff, #5c65ff);
}

/* 背景大图标样式 */
.bg-icon {
    position: absolute;
    right: -20px;
    bottom: -20px;
    font-size: 120px;
    opacity: 0.05;
    color: #2a62ff;
    z-index: 0;
    transition: all 0.4s ease;
}

.lh-cloud-area-item:hover .bg-icon {
    opacity: 0.08;
    transform: scale(1.05);
}

.lh-cloud-area-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(42, 98, 255, 0.1);
    border-color: #e2e8f0;
}

.lh-cloud-area-item h6 {
    color: #1e293b;
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.lh-cloud-area-item h6 iconify-icon {
    margin-right: 12px;
    font-size: 1.6rem;
    background: linear-gradient(135deg, #2a62ff, #5c65ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 8px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}

.lh-cloud-area-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
}

.lh-cloud-area-item ul li {
    margin-bottom: 0.8rem;
}

.lh-cloud-area-item ul li:last-child {
    margin-bottom: 0;
}

.lh-cloud-area-item ul li a {
    display: flex;
    align-items: center;
    padding: 0.9rem 1.2rem;
    background-color: #f8fafc;
    border-radius: 10px;
    color: #475569;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
    font-weight: 500;
}

.lh-cloud-area-item ul li a:hover {
    background-color: #f0f7ff;
    color: #2a62ff;
    transform: translateX(5px);
    border-color: #dbeafe;
    box-shadow: 0 4px 12px rgba(42, 98, 255, 0.08);
}

.lh-cloud-area-item ul li a iconify-icon {
    margin-right: 10px;
    color: #5c65ff;
    font-size: 1.2rem;
}

.lh-article-item {
    border:0;
    border-left: 4px solid #0d6efd;
    transition: all 0.3s ease;
}
.lh-article-item:hover {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}
.lh-article-date {
    color: #6c757d;
}
.lh-category-list {
    top: 20px;
}
.lh-category-item {
    padding: 0.75rem 1rem;
    border-radius: 0.375rem;
    margin-bottom: 0.5rem;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    color: black;
}
.lh-category-item
.lh-category-item:hover, .lh-category-item.active {
    background-color: #e9ecef;
    color: #0d6efd;
}
.lh-category-icon {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}
.lh-tag-item {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    margin: 0.25rem;
    background-color: #e9ecef;
    border-radius: 1rem;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s;
}
.lh-tag-item:hover {
    background-color: #0d6efd;
    color: white;
}
.lh-tag-item.active {
    background-color: #0d6efd;
    color: white;
}

.lh-domain-detail-flag{
    position: relative;
}
.lh-domain-detail-flag img{
    position: absolute;
    top:-10px;
    left:-10px;
    padding: 2px;
    background-color: #fff;
}

.lh-ssl-brand-banner {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding-block-start: clamp(6.5rem, 7.8vw + 1rem, 9.375rem);
    padding-block-end: clamp(4.5rem, 3.8vw + 1rem, 9.375rem);
    background-image: linear-gradient(180deg, var(--bs-primary) -23.87%, var(--bs-primary-text-emphasis) 89.73%);
}
.lh-ssl-brand-banner::before {
    content: url(../../../theme/assets/img/shapes/banner-shape-1.png);
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    opacity: 0.5;
    z-index: -1;
}
.lh-ssl-brand-banner::after {
    content: url(../../../theme/assets/img/shapes/banner-shape-2.png);
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: -1;
}

.lh-ssl-brand-banner.digicert {
    background-image: linear-gradient(180deg, #1b75bc -23.87%, #1b75bc 89.73%);
}

.lh-ssl-brand-banner.sectigo {
    background-image: linear-gradient(180deg, #0e9f6e -23.87%, #0c0e1a 89.73%);
}

.lh-ssl-brand-banner.comodo {
    background-image: linear-gradient(180deg, #ffc107 -23.87%, #e51937 89.73%);
}

.lh-ssl-brand-banner.geotrust {
    background-image: linear-gradient(180deg, #0f6cb3 20%, #f07725 89.73%);
}

.lh-ssl-brand-banner.rapidssl {
    background-image: linear-gradient(180deg, #774b2b 20%, orangered 89.73%);
}

.lh-ssl-brand-banner.thawte {
    background-image: linear-gradient(180deg, #004fa3 20%, #e51937 89.73%);
}

.lh-ssl-brand-banner.globalsign {
    background-image: linear-gradient(180deg, #000000 20%, #004fa3 89.73%);
}

.code-platforms .nav{margin-top: 50px;}
.code-platforms .nav li a{padding: 30px;text-align: center;display: inline-block;margin-right: 10px;background-color: #dedede;border: 1px solid #dedede;border-bottom: 0;
    border-radius: 5px 5px 0 0;}
.code-platforms .nav li a img{width:50px;height: 50px;}
.code-platforms .nav li a:hover,.code-platforms .nav li a.active{border: 1px solid #dedede;background-color: #ffffff;border-bottom: 0;
    position: relative;top:1px;z-index: 99;}
.code-platforms .tab-content{background-color: #fff;border: 1px solid #cccccc;border-radius: 0 5px 5px 5px;padding: 80px;}
.code-platforms .tab-content .common-feature {padding-top: 0;padding-bottom: 0;}

.cert-detail-features div{padding: 10px;background-color: #0e9f6e;border-radius: 5px;color:#fff;display: block;}
.cert-detail-features div.fail{background-color: #dc3545;}

.cert-feature-list .list{background-color: #fff;margin-bottom:30px;border-radius: 5px;-moz-box-shadow:0 0 10px #dedede; -webkit-box-shadow:0 0 10px #dedede; box-shadow:0 0 10px #dedede;}
.cert-feature-list .list .cert-feature-expand{background-color: #29306c;padding: 20px;color:#fff;border-radius: 5px 5px 0 0; font-size:24px;font-weight: normal;}
.cert-feature-list .list .cert-feature-expand:hover{cursor: pointer;}
.cert-feature-list .list .cert-feature-expand span{float: right;color:#cccccc;}
.cert-feature-list .list .content{padding: 30px;display: none;}
.cert-feature-list .list .content h6{font-size:18px;font-weight: bolder;text-align: center;padding: 20px 0 20px 0;border-bottom: 1px solid #dedede;}
.cert-feature-list .list .content ul{list-style: none;margin: 0;padding: 0;}
.cert-feature-list .list .content ul li{padding: 15px 0 15px 0;}
.cert-feature-list .list .content ul li i{margin-right: 10px;color:#0e9f6e;}
.cert-feature-list .list .content ul li img{height: 24px;margin-right: 10px;}


@media (max-width: 768px) {
    .lh-domain-article {
        padding: 20px;
        margin-bottom: 20px;
    }

    .lh-domain-article li {
        flex-direction: column;
        align-items: flex-start;
    }

    .lh-domain-article li span {
        margin-top: 5px;
        justify-content: flex-start;
        min-width: auto;
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.domain-search-input{}