.elementor-197 .elementor-element.elementor-element-0f2fa9d{--display:flex;--margin-top:-180px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-197 .elementor-element.elementor-element-43e2f31{--display:flex;--margin-top:-100px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}@media(max-width:767px){.elementor-197 .elementor-element.elementor-element-0f2fa9d{--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-197 .elementor-element.elementor-element-43e2f31{--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}}@media(min-width:768px){.elementor-197 .elementor-element.elementor-element-0f2fa9d{--content-width:100vw;}.elementor-197 .elementor-element.elementor-element-43e2f31{--content-width:90vw;}}/* Start custom CSS for html, class: .elementor-element-4164123 */<style>
/* 1. 基础画布 */
.urlt-art-wrapper {
    width: 100vw; position: relative; left: 50%; right: 50%;
    margin-left: -50vw; margin-right: -50vw;
    background: #f8f8f8; overflow: hidden;
    font-family: 'Inter', -apple-system, sans-serif;
}

/* 2. 工业辅助线 */
.urlt-art-wrapper::before {
    content: ''; position: absolute; top: 0; left: 18%; width: 1px; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.06) 50%, rgba(0,0,0,0) 100%);
    z-index: 1;
}

/* 3. 文章单行 */
.urlt-blog-item {
    width: 100%; height: 90vh; min-height: 750px;
    display: flex; align-items: center; position: relative;
    padding: 0 10%; border-bottom: 1px solid rgba(0,0,0,0.03);
}
.urlt-blog-item:nth-child(even) { flex-direction: row-reverse; }

/* 4. 图片层：z-index 保持为 2 */
.urlt-item-img {
    width: 52vw; height: 62vh; position: relative; z-index: 2;
    overflow: hidden; transform: skewY(-1.5deg);
    box-shadow: 25px 50px 100px rgba(0,0,0,0.12);
    background: #000;
}
.urlt-item-img img {
    width: 100%; height: 110%; object-fit: cover;
    filter: grayscale(1) contrast(1.1) brightness(0.8);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* 5. 巨型数字：修改定位，使其避开图片，出现在文字一侧 */
.urlt-item-number {
    position: absolute; 
    top: 50%; 
    right: 5%; /* 默认出现在右侧（文字下方） */
    transform: translateY(-50%);
    font-size: clamp(300px, 35vw, 550px); font-weight: 900; 
    line-height: 1; z-index: 0; pointer-events: none;
    color: rgba(0, 0, 0, 0.025); letter-spacing: -25px;
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

/* 当图右文左时，数字换到左侧 */
.urlt-blog-item:nth-child(even) .urlt-item-number {
    right: auto;
    left: 5%;
}

/* 6. 文字排版 */
.urlt-item-info { width: 42%; position: relative; z-index: 10; }

.urlt-item-tag {
    font-family: monospace; font-size: 11px; font-weight: 800;
    color: #0062FF; text-transform: uppercase;
    display: flex; align-items: center; gap: 15px; margin-bottom: 30px;
    letter-spacing: 3px;
}
.urlt-item-tag::before { content: ''; width: 40px; height: 2px; background: #0062FF; }

.urlt-item-title {
    font-size: clamp(50px, 7vw, 110px); font-weight: 950; line-height: 0.82;
    color: #111; text-transform: uppercase; text-decoration: none;
    display: block; letter-spacing: -4px;
    transform-origin: left center;
    backface-visibility: hidden;
    will-change: transform;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), color 0.5s ease;
}
.urlt-blog-item:nth-child(even) .urlt-item-title { transform-origin: right center; }

.urlt-item-excerpt {
    font-size: 16px; color: #777; line-height: 1.7;
    max-width: 400px; margin-top: 40px;
}

/* 7. 日期与按钮 */
.urlt-item-meta {
    margin-top: 30px; font-family: monospace; font-size: 12px;
    color: #999; display: flex; align-items: center; gap: 20px;
}
.urlt-item-meta::before {
    content: ''; width: 6px; height: 6px; background: #0062FF;
    border-radius: 50%; box-shadow: 0 0 10px #0062FF;
    animation: urlt-pulse 2s infinite;
}

.urlt-read-more {
    display: inline-block; margin-top: 50px; font-size: 13px; font-weight: 900;
    color: #111; text-decoration: none; position: relative;
    padding-bottom: 10px; letter-spacing: 2px;
}
.urlt-read-more::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 60px; height: 3px;
    background: #111; transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s;
}

/* 8. 悬停联动交互 */
.urlt-blog-item:hover .urlt-read-more { color: #0062FF; }
.urlt-blog-item:hover .urlt-read-more::after { width: 100%; background: #0062FF; }

.urlt-blog-item:hover .urlt-item-img { transform: skewY(0deg) scale(1.03); }
.urlt-blog-item:hover .urlt-item-img img { filter: grayscale(0) brightness(1); transform: scale(1.05); }

.urlt-blog-item:hover .urlt-item-title { color: #0062FF; transform: scale(1.05) translateX(20px); }
.urlt-blog-item:nth-child(even):hover .urlt-item-title { transform: scale(1.05) translateX(-20px); }

/* 悬停时数字微动 */
.urlt-blog-item:hover .urlt-item-number {
    color: rgba(0, 98, 255, 0.05);
}

/* 9. 分页器 - 修复版(支持<ul>结构) */
.urlt-pagination {
    padding: 120px 0; text-align: center; background: #f8f8f8;
}

/* 修复<ul>列表横排显示 */
.urlt-pagination ul.page-numbers {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.urlt-pagination li {
    margin: 0;
    padding: 0;
}

.urlt-pagination .page-numbers {
    display: inline-block; 
    padding: 15px 25px; 
    margin: 0;
    text-decoration: none; 
    color: #111; 
    font-weight: 900;
    font-size: 13px; 
    letter-spacing: 2px; 
    font-family: monospace; 
    transition: 0.3s;
}

.urlt-pagination .page-numbers:hover { 
    color: #0062FF; 
    transform: translateY(-5px); 
}

.urlt-pagination .current { 
    background: #111; 
    color: #fff !important; 
}

/* 动画定义 */
@keyframes urlt-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.4; }
}

/* 10. 响应式调整 */
@media (max-width: 1024px) {
    .urlt-blog-item { height: auto; flex-direction: column !important; padding: 80px 5%; }
    .urlt-item-img { width: 100%; height: 400px; transform: none; }
    .urlt-item-title { font-size: 55px; letter-spacing: -2px; margin-top: 20px; }
    .urlt-item-number { font-size: 200px; left: 50% !important; right: auto !important; }
}
</style>/* End custom CSS */