﻿@charset "utf-8";


.service_bg2 {
    background: #F1F8FD;
    overflow: hidden;
}

.logistic_list {
    padding-top: 30px;
    padding-bottom: 100px;
}

.logistic_list ul li {
    margin-bottom: 60px;
}
.logistic_list ul li:last-child {
    margin-bottom: 0;
}
.logistic_list .term_box {
    position: relative;
    overflow: hidden;
}

.logistic_list .logic_text {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    max-width: 790px;
    width: 51%;
    height: 458px;
    overflow: hidden;
    z-index: 9;
}

.logistic_list .term_box:nth-child(odd) .logic_text {
    right: 0;
}

.logistic_list .logic_text_n {
    width: 100%;
    height: 100%;
    padding: 10px 30px;
    background-color: var(--white-color);
    display: flex;
    align-items: center;
 flex-wrap: wrap;
 
    opacity: 0;
    transition: opacity 1.2s ease;
    overflow: hidden;
}

.logistic_list .logic_pic {
    position: relative;
max-width: 877px;
width: 60%;
    height: 552px;
    overflow: hidden;
}

.logistic_list .term_box:nth-child(odd) .logic_pic {
    float: left;
}

.logistic_list .term_box:nth-child(even) .logic_pic {
    float: right;
}
.logic_pic img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        opacity: 0;
        transition: opacity 1.2s ease;
}

.logic_text::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height:100%;
    background-color:#F1F8FD;
    z-index: -1;
}

.sanime__mask {
    display: block;
    width: 100%;
    height: 100%;
    background-color: var(--main-color);
    position: absolute;
    top: 0;
    left: -100%;
    transition: left 1s ease;
    z-index: 2;
}

.sanime__mask2 {
    display: block;
    width: 100%;
    height:100%;
    background: #F1F8FD;
    position: absolute;
    top: 0;
    left: -100%;
    transition: left 1s ease;
    z-index: 2;
}

.animated .sanime__mask2 {
    left: 100%;
    opacity: 1;
}

.animated .sanime__mask {
    left: 100%;
    opacity: 1;
}
.animated .logic_text_n {
    opacity: 1;
}
.animated .logic_pic img {
    opacity: 1;
}
.logic_text_n .icon img {
    width: 38px;
}
.logic_text_n .title {
    padding-top: 16px;
    color: var(--dark);
width: 100%;
font-weight: 700;
line-height: 1.2;
}
.logic_text_n .eng {
    padding-top: 9px;
    color: var(--dark);
font-family: Rubik;
font-size: 16px;
font-weight: 400;
line-height: 28px;
text-transform: capitalize;
}
.logic_text_n .text {
    margin-top: 16px;
font-size: 16px;
font-weight: 400;
line-height: 28px;
max-height: 222px;
overflow-y: auto; 
}
.logic_text_n .text p {
    padding-bottom: 20px;
}
.logic_text_n .text p:last-child {
    padding-bottom: 0;
}

@media (max-width:1279px) {
    .logistic_list {
        padding-top: 30px;
        padding-bottom: 100px;
    }
    
    .logistic_list ul li {
        margin-bottom: 60px;
    }
}

@media (max-width:991px) {
    .logistic_list .logic_pic {
        height: 450px;
    }
    .logistic_list .logic_text {
        width: 51%;
        height: 400px;
    }
}

@media (max-width:767px) {
    .logistic_list {
        padding-bottom: 50px;
           overflow: hidden;
    }
    .logistic_list ul li {
        margin-bottom: 30px;
    }
    .logistic_list .logic_pic {
        height: auto;
        width: 100%;
        max-width: inherit;
    }
    .logistic_list .logic_text {
        position: relative;
        top: inherit;
        transform: inherit;
        max-width: inherit;
        width: 100%;
        height: auto;
    }
    .logic_pic img {
        position: relative;
        height: auto;
    }
    .logistic_list .logic_text_n {
        padding: 20px 20px;
    }
    .logic_text_n .text {
        max-height: inherit;
        padding-bottom: 20px;
    }
}