﻿@charset "utf-8";

.speech_one {
    position: relative;
    padding-top: 40px;
    padding-bottom: 5%;
    min-height: 30vh;
    overflow: hidden;
}
.speech_one .speech_img {
    position: absolute;
    left: 0;
    bottom: 2%;
    width: 100%;
}
.speech_two {
    position: relative;
    width: 100%;
    margin-top: 45px;
    overflow: hidden;
}
.speech_left {
    position: absolute;
   width: 100%;
   top: 50%;
   left: 0;
   transform: translateY(-50%);
   z-index: 1;
}
.speech_l_n {
    position: relative;
    width: 60%;
    padding-top: 18px;
    max-width: 748px;
    overflow: hidden;
}
.speech_l_n::before {
    content: '';
    position: absolute;
    left: 0;
    top: 18px;
    width: 100%;
    height: calc(100% - 18px);
    background-color:#F2F2F2;
z-index: -1;
}
.speech_l_n .speech_l_t {
    padding: 50px 35px 120px 120px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color:var(--white-color);
    opacity: 0;
    transition: opacity 4s ease;
}
.speech_l_t::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 64px;
    height: 64px;
    background-image: url(../images/speech_dou.svg);
    background-repeat: no-repeat;
    background-position: left top;
    background-size: contain;
}
.speech_l_t:after {
    content: '';
    position: absolute;
    left: 30px;
    top: 64px;
    width: 1px;
height: 44%;
background-color:rgba(0, 0, 0, 0.05);
}
.speech_l_n .speech_l_t p{
padding-bottom: 20px;
    color: var(--dark);
font-size: 16px;
font-weight: 400;
line-height: 28px;
}
.speech_l_n .speech_l_t .speech_qm {
    position: absolute;
    right: 36px;
    bottom: 44px;
    display: flex;
    align-items: center;
    color: var(--dark);
font-size: 16px;
font-weight: 400;
line-height: 28px;
}
.speech_right {
    width: 63%;
    float: right;
    text-align: right;
}
.speech_right .bg {
    position: relative;
    width: 100%;
    height: 760px;
    background-color:var(--white-color);
    
    overflow: hidden;
}
.speech_right .bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
opacity: 0;
transition: opacity 3s ease;
}
.sanime__mask2 {
    display: block;
    width: 100%;
    height: calc(100% - 18px);
    background: #ffffff;
    position: absolute;
    top: 18px;
    left: -100%;
    transition: left 2s ease;
    z-index: 2;
}
.animated .sanime__mask2 {
    left: 100%;
    opacity: 1;
    }
    .animated .speech_l_t {
        opacity: 1;
    }    
.sanime__mask {
    display: block;
    width: 100%;
    height: 100%;
    background-color: var(--main-color);
    position: absolute;
    top: 0;
    left: -100%;
    transition: left 2s ease;
    z-index: 2;
}
.animated .sanime__mask {
left: 100%;
opacity: 1;
}
.animated .bg img {
    opacity: 1;
}

@media (max-width:991px) {

    .speech_l_n {
        width: 70%;
    }
}

@media (max-width:767px) {
    .speech_one {
        padding-top: 40px;
        padding-bottom: 50px;
    }
    .speech_left {
        position: relative;
        top:inherit;
        transform: inherit;
    }
    .speech_l_n {
        width: 100%;
    }
    .speech_right {
        width: 100%;
        margin-top: 20px;
        float: left;
        text-align: center;
    }
    .speech_right .bg {
        height: 760px;
        height: auto;
    }
    .speech_right .bg img {
        position: relative;
        height: auto;
    }
    .speech_l_n .speech_l_t {
        padding: 50px 35px 120px 60px;
   }
   .speech_l_t::before {
   
    width: 44px;
    height: 44px;
}
.speech_l_t:after {
    left: 22px;
    top: 54px;
}


}