/* 集装箱追踪部分样式 */
.of-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.15);
    z-index: 1;
}

.container-tracking-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.tracking-info {
    width: 48%;
}

.tracking-info h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.tracking-info p {
    font-size: 12px;
    color: #666;
    margin-bottom: 20px;
}

.tracking-info ul {
    list-style: none;
    padding: 0;
}

.tracking-info ul li {
    margin-bottom: 18px;
    font-size: 12px;
    color: #464646;
    display: flex;
    align-items: baseline;
}

.tracking-info ul li span {
    color: #686bbb;
    margin-right: 12px;
    font-weight: 600;
}

.consult-btn {
    display: inline-block;
    background-color: #686bbb;
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 25px;
}

.consult-btn:hover {
    background-color: #5658a5;
}

/* 显示器样式相框 - 高级金属质感 */
.laptop-frame {
    width: 100%;
    position: relative;
    padding-bottom: 35px;
    transform-style: preserve-3d;
    perspective: 1000px;
}

/* 显示器屏幕部分 */
.laptop-screen {
    cursor: pointer;
    background: #111;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    border: 12px solid;
    border-bottom-width: 20px;
    border-image: linear-gradient(135deg,
            #444 0%, #555 20%,
            #777 30%, #666 40%,
            #555 50%, #777 60%,
            #666 70%, #888 85%,
            #666 100%) 1;
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.4),
        0 10px 30px -5px rgba(0, 0, 0, 0.25),
        inset 0 0 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.laptop-screen:hover {
    transform: scale(1.02);
}

.laptop-screen:before {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    right: -12px;
    bottom: -20px;
    border-radius: 8px;
    background: linear-gradient(135deg,
            rgba(120, 120, 120, 0.2) 0%,
            rgba(255, 255, 255, 0.4) 15%,
            rgba(120, 120, 120, 0.2) 30%,
            rgba(120, 120, 120, 0.2) 50%,
            rgba(255, 255, 255, 0.4) 65%,
            rgba(120, 120, 120, 0.2) 80%,
            rgba(255, 255, 255, 0.1) 100%);
    pointer-events: none;
    z-index: 2;
    mix-blend-mode: overlay;
}

.laptop-screen img {
    width: 100%;
    display: block;
}

/* 底座部分 - 增强金属质感 */
.laptop-base {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 25%;
    height: 30px;
    background: linear-gradient(to bottom,
            #555 0%, #333 20%,
            #222 50%, #333 80%,
            #222 100%);
    border-radius: 5px 5px 10px 10px;
    box-shadow:
        0 10px 20px rgba(0, 0, 0, 0.5),
        inset 0 1px 2px rgba(255, 255, 255, 0.2);
}

/* 底座连接部分 */
.laptop-base:before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: 20px;
    background: linear-gradient(to bottom,
            #222 0%, #333 50%,
            #444 100%);
    box-shadow: 0 -1px 3px rgba(0, 0, 0, 0.3);
}

/* 增加整体阴影效果 */
.laptop-frame:after {
    content: '';
    position: absolute;
    width: 90%;
    height: 20px;
    border-radius: 50%;
    bottom: -15px;
    left: 5%;
    background: transparent;
    box-shadow: 0 30px 30px rgba(0, 0, 0, 0.4);
    z-index: -1;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .container-tracking-section {
        flex-direction: column-reverse;
        padding: 30px 20px;
    }

    .tracking-info,
    .laptop-frame {
        width: 100%;
    }

    .laptop-frame {
        margin-bottom: 40px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .tracking-info h3 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .laptop-base {
        width: 30%;
    }
}

@media (max-width: 576px) {
    .tracking-info ul li {
        font-size: 15px;
        margin-bottom: 14px;
    }

    .consult-btn {
        padding: 10px 25px;
        font-size: 14px;
    }

    .laptop-screen {
        border-width: 8px;
        border-bottom-width: 15px;
    }

    .laptop-base {
        width: 35%;
        height: 25px;
    }
}

/* 图片展示窗口样式 */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.lightbox-img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border: 4px solid #fff;
    border-radius: 3px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.lightbox-modal.active .lightbox-img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    opacity: 1;
    transform: rotate(90deg);
}

/* 定制化仪表盘区域 */
.customized-dashboard {
    display: flex;
    background: linear-gradient(135deg, #e8e8f9 0%, #f5f5f5 100%);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(104, 107, 187, 0.15);
    margin: 60px auto;
    max-width: 1000px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
}

.customized-dashboard:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(104, 107, 187, 0.25);
}

/* 图片区域样式 */
.customized-dashboard-img {
    width: 45%;
    position: relative;
    overflow: hidden;
}

.customized-dashboard-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(104, 107, 187, 0.1);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.customized-dashboard:hover .customized-dashboard-img::before {
    opacity: 1;
}

.customized-dashboard-img picture {
    display: block;
    height: 100%;
}

.customized-dashboard-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1);
    transition: transform 0.6s ease;
    filter: brightness(0.95);
}

.customized-dashboard:hover .customized-dashboard-img img {
    transform: scale(1.05);
    filter: brightness(1.05);
}

/* 文本区域样式 */
.customized-dashboard-text {
    width: 50%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
    background-color: #fff;
}

.customized-dashboard-text::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 0;
    background-color: #686bbb;
    transition: height 0.5s ease;
}

.customized-dashboard:hover .customized-dashboard-text::before {
    height: 70%;
}

.customized-dashboard-text h2 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.customized-dashboard-text h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: #686bbb;
    transition: width 0.4s ease;
}

.customized-dashboard:hover .customized-dashboard-text h2::after {
    width: 60%;
}

.customized-dashboard-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 25px;
    opacity: 0.9;
}

.customized-dashboard-text ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.customized-dashboard-text ul li {
    position: relative;
    padding-left: 28px;
    font-size: 15px;
    color: #333;
    transition: transform 0.3s ease, color 0.3s ease;
}

.customized-dashboard-text ul li:hover {
    transform: translateX(5px);
    color: #686bbb;
}

.customized-dashboard-text ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background-color: #e8e8f9;
    border-radius: 50%;
    transition: background-color 0.3s ease;
    z-index: 1;
}

.customized-dashboard-text ul li::after {
    content: '✓';
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: #686bbb;
    z-index: 2;
}

.customized-dashboard-text ul li:hover::before {
    background-color: #686bbb;
}

.customized-dashboard-text ul li:hover::after {
    color: #fff;
}

/* 加载动画 */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.customized-dashboard {
    animation: fadeIn 0.8s ease-out forwards;
}

.customized-dashboard-text h2 {
    animation: fadeIn 0.8s ease-out forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.customized-dashboard-text p {
    animation: fadeIn 0.8s ease-out forwards;
    animation-delay: 0.4s;
    opacity: 0;
}

.customized-dashboard-text ul li {
    animation: fadeIn 0.8s ease-out forwards;
    opacity: 0;
}

.customized-dashboard-text ul li:nth-child(1) {
    animation-delay: 0.5s;
}

.customized-dashboard-text ul li:nth-child(2) {
    animation-delay: 0.6s;
}

.customized-dashboard-text ul li:nth-child(3) {
    animation-delay: 0.7s;
}

.customized-dashboard-text ul li:nth-child(4) {
    animation-delay: 0.8s;
}

.customized-dashboard-text ul li:nth-child(5) {
    animation-delay: 0.9s;
}

.customized-dashboard-text ul li:nth-child(6) {
    animation-delay: 1.0s;
}

/* 浮动效果 */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0px);
    }
}

.customized-dashboard-img {
    animation: float 6s ease-in-out infinite;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .customized-dashboard {
        flex-direction: column;
        margin: 40px 20px;
    }

    .customized-dashboard-img,
    .customized-dashboard-text {
        width: 100%;
    }

    .customized-dashboard-text {
        padding: 30px;
    }

    .customized-dashboard-text ul {
        grid-template-columns: 1fr;
    }

    .customized-dashboard-text h2 {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .customized-dashboard-text {
        padding: 25px 20px;
    }

    .customized-dashboard-text h2 {
        font-size: 24px;
    }

    .customized-dashboard-text p {
        font-size: 15px;
    }

    .customized-dashboard-text ul li {
        font-size: 14px;
        padding-left: 24px;
    }

    .customized-dashboard-text ul li::before {
        width: 16px;
        height: 16px;
    }

    .customized-dashboard-text ul li::after {
        left: 3px;
        font-size: 10px;
    }
}