﻿
.blog-details-content blockquote {
    margin: 0 0 35px;
    background: var(--tg-white);
    box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.06);
    padding: 10px 50px;
    position: relative;
}

.col-lg-4 {
    flex: 0 0 auto;
    width: 23%;
}

.detection-process {
    margin-bottom: 30px;
}

    .detection-process img {
        border-radius: 10px;
    }

.detection-process-msg {
    text-align: center;
    margin-top: 5px;
    font-family: 'DM Sans', sans-serif;
    font-weight: bold;
    color: #444;
}

.detection-process-box {
    overflow: hidden;
    position: relative;
}

.detection-process-tag {
    position: absolute;
    left: -70px;
    top: 15px;
    width: 200px;
    text-align: center;
    transform: rotate(-45deg);
    font-family: 'DM Sans', sans-serif;
    background-color: #AC010A;
    color: #fff;
    font-size: 14px;
}

.lazyload {
    opacity: 0; /* 初始时隐藏图片 */
    transform: scale(0.8); /* 初始时缩小图片 */
    transition: opacity 0.3s ease, transform 0.3s ease; /* 添加过渡效果 */
}

.lazyloaded {
    opacity: 1; /* 图片加载完成后显示 */
    transform: scale(1); /* 图片加载完成后正常大小 */
}

#loading {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border: 5px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top-color: #e74c3c;
    animation: spin 1s infinite linear;
}

@keyframes spin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}
/* 针对该页面的特殊处理 */
.section-title .style-border {
    display: block;
    text-align: left;
    width: 100%;
    max-width: 100%; /* 确保没有最大宽度限制 */
    margin-left: 0;
    margin-right: 0;
}

    /* 如果 style-border 带有居中的装饰线，将其移至左侧 */
    .section-title .style-border::before,
    .section-title .style-border::after {
        left: 0;
        transform: translateX(0);
    }
 
