.home section .inner {
    position: relative;
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    z-index: 1;
}
.home section.mv_banner .inner {
    max-width: 100%;
}
.mv_banner {
    position: relative;
    height: 100vh;
    width: 100%;
}

.main_slide {
    position: relative;
    height: 100vh;
    width: 100%;
}

.main_slide .slide_item {
    position: relative;
    height: 968px;
    overflow: hidden;
    width: 100%;
}

.main_slide .slide_item .slide_img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transform: scale(1.1);
    transition: all ease 5s;
}

.main_slide .slide_item .slide_img.on {
    transform: scale(1);
}

.main_slide .slide_item .slide_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: auto;
}

.main_slide .slide_item .slide_text {
    position: absolute;
    width: 1440px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.main_slide .slide_item .slide_text>p {
    color: #fff;
    transform: translateY(50px);
    opacity: 0;
    transition: all ease 1.5s;
}

.main_slide .slide_item .slide_text>p:first-child {
    font-size: 45px;
    line-height: 1em;
    font-weight: bold;
}

.main_slide .slide_item .slide_text>p.on {
    transform: translateY(0px);
    opacity: 1;
}

.main_slide .slick-dots {
    text-align: center;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    z-index: 20;
}

.main_slide .slick-dots li {
    display: inline;
    margin: 0 11px;
}

.main_slide .slick-dots li button {
    display: inline-block;
    font-size: 0;
    border: none;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #fff;
    cursor: pointer;
    padding: 0;
    position: relative;
}

.main_slide .slick-dots li.slick-active button::before {
    content: "";
    width: 14px;
    height: 14px;
    background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='100' ry='100' stroke='white' stroke-width='2' stroke-dasharray='2%2c 2' stroke-dashoffset='0' stroke-linecap='butt'/%3e%3c/svg%3e");
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-animation: rotateDots linear 4s infinite;
    animation: rotateDots linear 4s infinite;
}

.mv_banner .scroll_slide {
    position: absolute;
    bottom: 60px;
    left: 4%;
    padding-bottom: 115px;
}

.mv_banner .scroll_slide>p {
    color: #fff;
    font-size: 13px;
    font-weight: 300;
}

.mv_banner .scroll_slide::before {
    content: "";
    width: 1px;
    height: 100px;
    background-color: rgba(255, 255, 255, 0.4);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.mv_banner .scroll_slide::after {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #fff;
    position: absolute;
    bottom: 95px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollMotion linear 2s infinite;
}

.mv_banner .slide_arrow .arrow_prev {
    position: absolute;
    left: 4%;
    top: 50%;
    transform: translateY(-50%);
    padding: 200px 200px 200px 0;
}

.mv_banner .slide_arrow .arrow_prev img {
    cursor: pointer;
    opacity: 0;
    transition: all ease .5s;
}

.mv_banner .slide_arrow .arrow_prev:hover img {
    opacity: 1;
}

.mv_banner .slide_arrow .arrow_next {
    position: absolute;
    right: 4%;
    top: 50%;
    transform: translateY(-50%);
    padding: 200px 0 200px 200px;
}

.mv_banner .slide_arrow .arrow_next img {
    cursor: pointer;
    opacity: 0;
    transition: all ease .5s;
}

.mv_banner .slide_arrow .arrow_next:hover img {
    opacity: 1;
}

.introduction {
    padding-top: 135px;
    padding-bottom: 240px;
    background-image: url("../images/main/introduction_bg.png");
    background-repeat: no-repeat;
    background-position: 100% 0;
}
.home .section_tlt {
    font-size: 60px;
    position: relative;
    font-weight: bold;
    padding-left: 50px;
    margin-bottom: 30px;
}
.home .section_tlt::before, .home .section_tlt::after {
    content: "";
    position: absolute;
    width: 34px;
    height: 5px;
    transform: skew(-45deg);
}
.home .section_tlt::before {
    top: 10px;
    left: 0;
    background-color: #0FADD0;
}
.home .section_tlt::after {
    top: 16px;
    left: 0;
    background-color: #013981;
}
.txt_desp_tlt {
    text-align: left;
    font-size: 20px;
    color: #555555;
    font-weight: 600;
    line-height: 30px;
    word-break: keep-all;
    margin-bottom: 84px;
}
.introduction_list ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}
.introduction_list li {
    width: 32%;
}
.introduction_list a {
    width: 100%;
    height: 540px;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
}
.introduction_list .introduction_item_bg_01 {
    background-image: url(../images/main/introduction_item_01.png);
}
.introduction_list .introduction_item_bg_02 {
    background-image: url(../images/main/introduction_item_02.png);
}
.introduction_list .introduction_item_bg_03 {
    background-image: url(../images/main/introduction_item_03.png);
}
.introduction_list .introduction_item_bg_04 {
    background-image: url(../images/main/introduction_item_04.png);
}
.introduction_list .introduction_item_bg_05 {
    background-image: url(../images/main/introduction_item_05.png);
}
.introduction_list .introduction_item_bg_06 {
    background-image: url(../images/main/introduction_item_06.png);
}
.introduction_list .introduction_item {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 45px 25px;
    transition: all ease .7s;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    letter-spacing: -1.5px;
}
.introduction_list .introduction_item:hover {
    padding-bottom: 160px;
}
.introduction_list .introduction_item:before {
    content: "";
    position: absolute;
    z-index: 1;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(1, 84, 166, 0.8);
    transition: all ease .8s;
}
.introduction_list .introduction_item:hover:before {
    top: 0;
}
.introduction_list .introduction_item .introduction_icon {
    position: relative;
    z-index: 9;
    opacity: 0;
    margin-bottom: 35px;
}
.introduction_list .introduction_item:hover .introduction_icon {
    animation: fadeInUp .7s forwards;
}
.introduction_list .introduction_item .txt_desp h3 {
    position: relative;
    font-size: 28px;
    line-height: 28px;
    letter-spacing: 1px;
    color: #fff;
    font-weight: bold;
    z-index: 9;
    margin-bottom: 10px;
}
.introduction_list .introduction_item:hover .txt_desp h3 {
    opacity: 0;
    animation: introduction .7s forwards;
    animation-delay: .2s;
}
.introduction_list .introduction_item .txt_desp span {
    position: relative;
    font-size: 14px;
    line-height: 14px;
    color: #fff;
    z-index: 9;
    display: block;
    margin-bottom: 12px;
}
.introduction_list .introduction_item:hover .txt_desp span {
    opacity: 0;
    animation: introduction .7s forwards;
    animation-delay: .4s;
}
.introduction_list .introduction_item .txt_desp p {
    position: relative;
    font-size: 20px;
    line-height: 26px;
    color: #FFFFFF;
    z-index: 9;
    word-break: keep-all;
}
.introduction_list .introduction_item:hover .txt_desp p {
    opacity: 0;
    animation: introduction .7s forwards;
    animation-delay: .6s;
}
.introduction_list .more {
    position: absolute;
    z-index: 9;
    left: 25px;
    bottom: 15px;
    opacity: 0;
    transition: all ease .5s;
}
.introduction_list .more::before {
    content: "";
    width: 60px;
    height: 60px;
    background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='100' ry='100' stroke='white' stroke-width='3' stroke-dasharray='2%2c 3' stroke-dashoffset='0' stroke-linecap='butt'/%3e%3c/svg%3e");
    position: absolute;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    z-index: 2;
    transform: translate(-50%, -50%);
    animation: rotateDots linear 4s infinite;
}
.introduction_list .introduction_item:hover .more {
    opacity: 1;
    bottom: 65px;
    transition-delay: .8s;
}

.project {
    padding-top: 145px;
    padding-bottom: 100px;
    background-color: #f5f5f5;
}
.home .btn_more {
    position: absolute;
    top: 106px;
    right: 0;
    display: flex;
    align-items: center;
}
.home .btn_more::before {
    content: "";
    width: 145px;
    height: 1px;
    background-color: #BEBEBE;
    position: absolute;
    right: 200px;
    top: 25px;
}
.home .btn_more>a {
    margin-left: 215px;
}
.home .btn_more a {
    border: 1px solid #013981;
    min-width: 160px;
    height: 50px;
    line-height: 48px;
    display: block;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.home .btn_more_hover::before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: #013981;
    position: absolute;
    top: 100%;
    left: 0;
    transition: all ease .5s;
    z-index: 1;
}
.home .btn_more_hover:hover::before {
    top: 0;
}
.home .btn_more_hover p {
    color: #013981;
    font-size: 20px;
    line-height: 48px;
    font-weight: 600;
    z-index: 2;
    position: relative;
    transition: all ease .5s;
}
.home .btn_more_hover:hover p {
    color: #FFFFFF;
}
.project .project_list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}
.project .project_list li {
    width: 32%;
    position: relative;
    overflow: hidden;
}
.project .project_list a {
    background: url("../images/common/bg_product.png");
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    transition: all ease .5s;
    overflow: hidden;
    width: 100%;
    height: 273px;
    display: block;
}
.project .project_list a:hover {
    box-shadow: 0 56px 42px -45px rgba(0, 0, 0, 0.75);
}
.project .project_list a .thumb {
    width: 215px;
    height: 180px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 5%;
}
.project .project_list a img {
    transition: all ease 1s;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.project .project_list a:hover img {
    transform: translateY(-50%) scale(1.1);
}
.project .project_list p {
    font-size: 24px;
    font-weight: 500;
    color: #FFFFFF;
    position: absolute;
    top: 50%;
    right: 50px;
    transform: translateY(-50%);
}

.future {
    padding: 145px 0 100px;
}

.btn_more .slick_dots {
    display: flex;
}
.btn_more .slick_dots button {
    display: block;
    font-size: 0;
    background: none;
    border: none;
    width: 10px;
    height: 10px;
    margin: 0 12px;
    border-radius: 50%;
    background-color: #BEBEBE;
    cursor: pointer;
    padding: 0;
}
.btn_more .slick_dots button.active {
    background-color: #013981;
    position: relative;
}
.btn_more .slick_dots button.active::before {
    content: "";
    width: 14px;
    height: 14px;
    border: 1px solid #013981;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.future_list a {
    display: flex;
    align-items: center;
}
.future_list a .thumb {
    width: 556px;
    padding-top: 26%;
    position: relative;
    overflow: hidden;
}
.future_list a .thumb img {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.future_list a .txt_desp {
    margin-left: 120px;
    flex: 1;
}
.future_list .txt_desp .tmq {
    font-size: 20px;
    color: #013981;
    border-bottom: 1px solid #013981;
    font-weight: bold;
    display: inline-block;
    transform: translateX(50px);
    opacity: 0;
    transition: all ease 1.5s;
    margin-bottom: 32px;
}
.future_list .txt_desp .tmq.on,
.future_list .txt_desp .item_tlt.on,
.future_list .txt_desp .date.on,
.future_list .txt_desp .txt.on {
    opacity: 1;
    transform: translateX(0);
}
.future_list .txt_desp .item_tlt {
    font-size: 36px;
    font-weight: bold;
    color: #222222;
    line-height: 50px;
    white-space: normal;
    word-wrap: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transform: translateX(50px);
    opacity: 0;
    transition: all ease 1.5s;
    transition-delay: .1s;
    margin-bottom: 9px;
}
.future_list .txt_desp .txt {
    font-size: 20px;
    color: #555555;
    line-height: 32px;
    word-break: keep-all;
    transform: translateX(50px);
    opacity: 0;
    transition: all ease 1.5s;
    transition-delay: .2s;
    margin-bottom: 50px;

}
.future_list .txt_desp .date {
    font-size: 18px;
    color: #ADADAD;
    font-weight: 600;
    transform: translateX(50px);
    opacity: 0;
    transition: all ease 1.5s;
    transition-delay: .3s;
}
.home .lidar_lights .btn_more::before {
    content: none;
}
.lidar_lights {
    margin-bottom: 140px;
}
.lidar_slider {
    position: relative;
}
.slide_bg {
    position: relative;
    height: 617px;
    overflow: hidden;
}
.slide_bg img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0;
    transform: scale(1.15);
    transition: opacity 0.7s, transform 5s, -webkit-transform 5s;
}
.slide_bg img.on {
    z-index: 2;
    opacity: 1;
    transform: scale(1);
}
.lidar_slider .animation_slider .slide_txt {
    position: absolute;
    right: 0;
    bottom: -53px;
    background-color: #013981;
    width: 670px;
    z-index: 3;
    transform: translateX(100px);
    opacity: 0;
    padding: 85px 40px;
}
.lidar_slider .animation_slider .slide_txt.on {
    opacity: 1;
    transform: translateX(0px);
    transition: 2s;
}

.lidar_slider .slide_txt_item .slide_tlt {
    transform: translateX(50px);
    opacity: 0;
    transition: 1.5s;
    font-size: 36px;
    color: #FFFFFF;
    font-weight: 700;
    line-height: 57px;
    margin-bottom: 30px;
}
.lidar_slider .slide_txt_item p {
    transform: translateX(50px);
    opacity: 0;
    transition: 1.5s;
}
.lidar_slider .slide_txt_item p.on {
    transform: translateX(0px);
    opacity: 1;
}

.lidar_slider .slide_txt_item .txt {
    font-size: 18px;
    color: #FFFFFF;
    line-height: 28px;
    transition-delay: 0.3s;
}

.lidar_slider .slick-prev {
    position: absolute;
    width: 17px;
    height: 29px;
    font-size: 0;
    background-image: url(../images/main/lidar_prev.png);
    top: 47px;
    right: 130px;
    left: initial;
}
.lidar_slider .slick-prev:before, .lidar_slider .slick-next:before {
    content: none;
}
.lidar_slider .slick-prev::before {
    content: "";
    width: 2px;
    height: 29px;
    background-color: rgba(255, 255, 255, 0.4);
    position: absolute;
    right: -26px;
    top: 1px;
}

.lidar_slider .slick-next {
    position: absolute;
    width: 17px;
    height: 29px;
    font-size: 0;
    background-image: url(../images/main/lidar_next.png);
    top: 47px;
    right: 65px;
}

.distance {
    background-image: url(../images/main/bg_distance.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    height: 513px;
}
.home section.distance .inner {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding-left: 14%;
}
.distance h3 {
    font-size: 36px;
    color: #FFFFFF;
    font-weight: 700;
    line-height: 57px;
    text-align: left;
    margin-bottom: 17px;
    transition-delay: 0.2s;
}
.distance p {
    font-size: 20px;
    text-align: left;
    color: #FFFFFF;
    line-height: 32px;
}

.quality {
    background-image: url(../images/main/bg_quality.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    height: 640px;
}
.home section.quality .inner {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding-left: 14%;
}
.quality h2 {
    font-size: 60px;
    color: #222222;
    font-weight: 700;
    line-height: 77px;
    text-align: left;
    margin-bottom: 68px;
}
.quality p {
    font-size: 20px;
    color: #555555;
    line-height: 32px;
    text-align: left;
}
@media (max-width: 1450px) {
    .home section .inner {
        width: auto;
        margin: 0 40px;
    }
    .home section.mv_banner .inner {
        margin: 0 auto;
    }
    .main_slide .slide_item .slide_text {
        padding-left: 4%;
        width: 100%;
    }
}
@media (max-width: 991px) {
    .home section.mv_banner .inner {
        padding: 0;
    }
    .home section .inner {
        max-width: 100%;
        padding: 0 16px;
        margin: 0;
    }
    .home .section_tlt::before, .home .section_tlt::after {
        width: 26px;
    }
    .main_slide .slide_item {
        height: auto;
        padding-top: 55%;
    }

    .main_slide .slide_item .slide_img {
        width: 100%;
        transform: scale(1);
    }

    .main_slide .slide_item .slide_img img {
        height: auto;
        width: 100%;
    }

    .main_slide .slide_item .slide_text {
        width: 100%;
        padding: 0 4%;
    }

    .main_slide .slide_item .slide_text>p:first-child {
        font-size: 26px;
        line-height: 34px;
    }

    .main_slide .slick-dots {
        bottom: 30px;
    }

    .main_slide .slick-dots li {
        margin: 0 8px;
    }
    .mv_banner {
        height: auto;
    }
    .main_slide.slick-dotted.slick-slider {
        margin-bottom: 0;
    }
    .main_slide {
        height: auto;
    }

    .mv_banner .scroll_slide {
        display: none;
    }

    .mv_banner .slide_arrow {
        display: none;
    }

    .introduction {
        padding: 75px 0 75px 0;
        background-size: 200px;
    }
    .home .section_tlt {
        font-size: 36px;
        padding-left: 35px;
        margin-bottom: 10px;
    }
    .txt_desp_tlt {
        font-size: 15px;
        line-height: 15px;
        padding-left: 35px;
        margin-bottom: 35px;
    }
    .introduction_list ul {
        flex-direction: column;
        gap: 0;
    }
    .introduction_list li {
        width: 100%;
        margin-bottom: 13px;
    }
    .introduction_list li:last-child {
        margin-bottom: 0;
    }
    .introduction_list a {
        width: 100%;
        background-size: 100% auto;
        height: auto;
    }
    .introduction_list .introduction_item_bg_01 {
        background-image: url(../images/main/introduction_item_sp_01.png);
    }
    .introduction_list .introduction_item_bg_02 {
        background-image: url(../images/main/introduction_item_sp_02.png);
    }
    .introduction_list .introduction_item_bg_03 {
        background-image: url(../images/main/introduction_item_sp_03.png);
    }
    .introduction_list .introduction_item_bg_04 {
        background-image: url(../images/main/introduction_item_sp_04.png);
    }
    .introduction_list .introduction_item_bg_05 {
        background-image: url(../images/main/introduction_item_sp_05.png);
    }
    .introduction_list .introduction_item_bg_06 {
        background-image: url(../images/main/introduction_item_sp_06.png);
    }
    .introduction_list .introduction_item {
        padding: 60px 20px 20px 20px;
    }
    .introduction_list .introduction_item:hover {
        padding: 60px 20px 20px 20px;
    }
    .introduction_list .introduction_item:before {
        content: none;
    }
    .introduction_list .introduction_item .introduction_icon {
        display: none;
    }
    .introduction_list .introduction_item .txt_desp h3 {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .introduction_list .more {
        display: none;
    }

    .project {
        position: relative;
        padding: 75px 0 150px;
    }
    .home section.project .inner {
        position: initial;
    }
    .home .btn_more {
        position: absolute;
        top: auto;
        left: 0;
        right: 0;
        bottom: 60px;
        flex-direction: column;
        justify-content: center;
    }
    .home .btn_more::before {
        content: none;
    }
    .home .btn_more>a {
        margin: 0;
    }
    .home .btn_more_hover::before {
        content: "";
        width: 100%;
        height: 100%;
        background-color: #013981;
        position: absolute;
        top: 100%;
        left: 0;
        transition: all ease .5s;
        z-index: 1;
    }
    .project .project_list {
        gap: 16px;
    }
    .project .project_list li {
        width: 100%;
    }
    .project .project_list a {
        height: 234px;
    }
    .project .project_list a .thumb {
        width: 170px;
        height: 170px;
    }
    .project .project_list a img {
        position: relative;
        top: auto;
        transform: none;
    }
    .project .project_list a:hover img {
        transform: none;
    }
    .project .project_list p {
        font-size: 19px;
        right: 40px;
    }

    .future {
        position: relative;
        padding: 75px 0 150px;
    }
    .home section.future .inner {
        position: initial;
    }

    .home .future .btn_more {
        top: auto;
        bottom: 30px;
    }
    .btn_more .slick_dots {
        margin-bottom: 28px;
    }
    .future_list a {
        flex-direction: column;
        align-items: flex-start;
    }
    .future_list a .thumb {
        width: 100%;
        padding-top: 58%;
        margin-bottom: 20px;
    }
    .future_list a .txt_desp {
        margin: 0;
    }
    .future_list .txt_desp .tmq {
        display: none;
    }

    .future_list .txt_desp .item_tlt {
        font-size: 22px;
        line-height: 31px;
        margin-bottom: 6px;
    }
    .future_list .txt_desp .txt {
        font-size: 15px;
        line-height: 31px;
        margin-bottom: 33px;

    }
    .lidar_lights {
        position: relative;
        padding: 40px 0 120px;
        margin-bottom: 0;
    }
    .home section.lidar_lights .inner {
        position: initial;
    }
    .lidar_slider {
        position: relative;
    }
    .slide_bg {
        height: 0;
        padding-top: 60%;
    }
    .slide_bg img {
        height: 100%;
    }
    .lidar_slider .animation_slider .slide_txt {
        position: initial;
        width: 100%;
        opacity: 1 !important;
        transform: translateX(0) !important;
        padding: 30px;
    }
    .lidar_slider .slide_txt_item .slide_tlt {
        font-size: 24px;
        line-height: 38px;
        margin-bottom: 8px;
    }

    .lidar_slider .slide_txt_item .txt {
        font-size: 16px;
        line-height: 24px;
    }
    .btn_more .slick_dots button {
        width: 8px;
        height: 8px;
        margin: 0 8px;
    }
    .btn_more .slick_dots button.active::before {
        width: 12px;
        height: 12px;
    }
    .lidar_slider .btn_more .slick_dots {
        margin-bottom: 0;
    }

    .distance {
        background-image: url(../images/main/bg_distance_sp.png);
        height: 356px;
    }
    .home section.distance .inner {
        padding-left: 26px;
    }
    .distance h3 {
        font-size: 24px;
        line-height: 50px;
        margin-bottom: 9px;
    }
    .distance p {
        font-size: 16px;
        line-height: 22px;
    }

    .quality {
        background-image: url(../images/main/bg_quality_sp.png);
        height: 418px;
    }
    .home section.quality .inner {
        padding-left: 26px;
        top: 52px;
        transform: none;
    }
    .quality h2 {
        font-size: 28px;
        line-height: 42px;
        margin-bottom: 33px;
    }
    .quality p {
        font-size: 16px;
        color: #555555;
        line-height: 22px;
        margin-bottom: 10px;
    }
}

/* -------------------- menu pc logout button ------------------ */

.logout_dropdown{
    position: relative;
}

.logout_dropdown:hover .dropdown_item{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.logout_dropdown .dropdown_item{
    padding-top: 10px;
    position: absolute;
    opacity: 0;
    top: 20px;
    min-width: 150px;
    right: -25px;
    z-index: 10;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease-in-out;
    pointer-events: none;
}

.logout_dropdown .item_box{
    padding: 20px 10px;
    background-color: #FFFFFF;
    border-radius: 6px;
}

.logout_dropdown .item_box a{
    text-wrap: nowrap;
    font-size: 14px;
    font-weight: 400;
    color: #222222;
    transition: 0.3s;
    display: block;
    padding: 8px 0;
}


.lang_list ul li{
    text-wrap: nowrap;
}

/* ------------------ modal logout ---------------------- */
.modal_logout {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999;
    background-color: #0000007d;
    display: none;
}
.modal_logout.active{
    display: block;
}
.modal_logout .modal_logout_wrap {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal_logout .content {
    position: relative;
    background-color: #FFFFFF;
    border-radius: 9px;
    padding: 30px 40px;
    text-align: center;
}
.modal_logout .content .close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 24px;
    height: 24px;
    cursor: pointer;
}
.modal_logout .content .handle {
    width: 130px;
    height: 130px;
    margin-bottom: 20px;
}
.modal_logout .content .txt {
    font-size: 32px;
    font-weight: 700;
    line-height: 32px;
    color: #222222;
    margin-bottom: 40px;
}
.modal_logout .content .btn_box {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.modal_logout .content .btn_box button {
    border-radius: 8px;
    padding: 16px 0;
    text-align: center;
    font-size: 16px;
    line-height: 16px;
    font-weight: 600;
    color: #222222;
}
.modal_logout .content .btn_box .cancel {
    border: 1px solid #ADB8C1;
}
.modal_logout .content .btn_box .confirm {
    color: #FFFFFF;
    background-color: #1E70DA;
}
@media (max-width: 991px) {
    .modal_logout .content .txt {
        font-size: 20px;
        line-height: 20px;
        margin-bottom: 30px;
    }
    .modal_logout .content {
        padding: 20px 30px;
    }
    .modal_logout .content .close {
        width: 18px;
        height: 18px;
    }
    .modal_logout .content .handle {
        width: 100px;
        height: 100px;
    }
    .modal_logout .content .btn_box button{
        padding: 11px 0;
    }
}

/* ------------------ modal confirm ---------------------- */
.modal_confirm {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999;
    background-color: #0000007d;
    display: none;
}
.modal_confirm.active{
    display: block;
}
.modal_confirm .modal_confirm_wrap {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal_confirm .content {
    position: relative;
    background-color: #FFFFFF;
    border-radius: 9px;
    padding: 0 40px 60px 40px;
    text-align: center;
}
.modal_confirm .content .close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 24px;
    height: 24px;
    cursor: pointer;
}
.modal_confirm .content .title {
    font-size: 32px;
    font-weight: 700;
    line-height: 32px;
    margin-bottom: 20px;
    margin-top: 60px;
    color: #1E70DA;
}
.modal_confirm .content .txt {
    font-size: 24px;
    line-height: 32px;
    color: #222222;
    margin-bottom: 60px;
    width: 480px;
}
.modal_confirm .content .btn_box {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.modal_confirm .content .btn_box button {
    border-radius: 8px;
    padding: 16px 0;
    text-align: center;
    font-size: 16px;
    line-height: 16px;
    font-weight: 600;
    color: #222222;
}
.modal_confirm .content .btn_box .cancel {
    border: 1px solid #ADB8C1;
}
.modal_confirm .content .btn_box .confirm {
    background-color: #1E70DA;
    color: #FFFFFF;
}
@media (max-width: 991px) {
    .modal_confirm .content .txt {
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 30px;
        width: 300px;
    }
    .modal_confirm .content {
        padding: 0px 30px 50px;
    }
    .modal_confirm .content .close {
        width: 18px;
        height: 18px;
    }
    .modal_confirm .content .btn_box button{
        padding: 11px 0;
    }
}

/* ------------------ modal toast ---------------------- */
.modal_toast {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999;
    background-color: #0000007d;
    display: none;
}
.modal_toast.active{
    display: block;
}
.modal_toast .modal_toast_wrap {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal_toast .content {
    position: relative;
    background-color: #F3F3F3;
    border-radius: 9px;
    padding: 0px 40px 60px 40px;
    text-align: center;
    width: auto;
}
.modal_toast .content .close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 24px;
    height: 24px;
    cursor: pointer;
}
.modal_toast .content .title {
    font-size: 32px;
    font-weight: 700;
    line-height: 32px;
    margin-bottom: 20px;
    margin-top: 60px;
    color: #1E70DA;
}
.modal_toast .content .txt {
    font-size: 24px;
    line-height: 32px;
    color: #222222;
    margin-bottom: 30px;
    width: 480px;
}
.modal_toast .content .btn_box {
    width: 100%;
}
.modal_toast .content .btn_box button {
    border-radius: 8px;
    padding: 16px 0;
    text-align: center;
    font-size: 16px;
    line-height: 16px;
    font-weight: 600;
    color: #FFFFFF;
    width: 200px;
}
.modal_toast .content .btn_box .cancel {
    border: 1px solid #627280;
}
.modal_toast .content .btn_box .confirm {
    background-color: #1E70DA;
}
@media (max-width: 991px) {
    .modal_toast .content .txt {
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 30px;
        width: 300px;
    }
    .modal_toast .content {
        padding: 0px 30px 50px;
    }
    .modal_toast .content .close {
        width: 18px;
        height: 18px;
    }
    .modal_toast .content .btn_box button{
        padding: 11px 0;
    }
}

/* ----------------- message now ------------------ */

.message_now {
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 99;
    width: 100%;
    height: 100%;
    background-color: rgba(17, 10, 10, 0.8);
    display: none;
}
@media (max-width: 1280px) {
    .message_now {
        bottom: 0;
        width: 100%;
    }
}
@media (max-width: 1280px) {
    .message_now.active {
        display: block;
    }
}
.message_now .inner {
    max-width: 288px;
    width: 100%;
    background: #fce653;
    -webkit-box-shadow: rgba(0, 0, 0, 0.31);
    box-shadow: rgba(0, 0, 0, 0.31);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 10px 44px;
    position: absolute;
    bottom: 0;
    right: 0;
}
@media (max-width: 1280px) {
    .message_now .inner {
        padding: 4.2666666667vw 11.7333333333vw;
        max-width: 100%;
    }
}
.message_now .thumb {
    -webkit-animation: swing ease-in-out 0.2s infinite alternate;
    animation: swing ease-in-out 0.2s infinite alternate;
}
.message_now .txt_desp {
    font-weight: bold;
    padding-left: 20px;
}
@media (max-width: 1280px) {
    .message_now .txt_desp {
        padding-left: 5.3333333333vw;
        width: 100%;
    }
}
.message_now .txt_desp span {
    display: block;
    font-size: 11px;
    text-align: left;
    color: #000;
    margin-bottom: 10px;
}
@media (max-width: 1280px) {
    .message_now .txt_desp span {
        font-size: 2.9333333333vw;
        text-align: center;
        margin-bottom: 2.6666666667vw;
    }
}
.message_now .txt_desp a {
    background-color: #d4290b;
    display: block;
    text-align: center;
    font-size: 10px;
    padding: 10px 14px;
    color: #fff;
}
@media (max-width: 1280px) {
    .message_now .txt_desp a {
        font-size: 2.6666666667vw;
        font-weight: 900;
    }
}

/* ------------------ message other -------------------- */

.message_wrap {position:fixed; bottom:-100%; right:15px; width:330px; height:100px; border-radius:0px; z-index:1110; border-radius:20px;}
.message_wrap .message_con {height:100%; padding:14px 0 14px 135px;  }
.message_wrap .message_con p {font-size:13px; line-height:30px; }
.message_wrap .message_con .message_btn {display:inline-block; width:150px; height:30px; line-height:30px; font-size:13px; text-align:center; border-radius:10px; margin-top:4px; }

.message_wrap02 {position:fixed; top:50%; left:50%; width:300px; border-top:1px solid; margin-left:-150px; margin-top:-103px; z-index:99999; }
.message_wrap02 .inner {position:relative; }
.message_wrap02 .message_top {position:relative; height:40px; padding:0 20px; }
.message_wrap02 .message_top h2 {font-size:13px; font-weight:bold; line-height:40px; }
.message_wrap02 .message_top .message_close_btn {position:absolute; top:15px; right:20px; width:10px; height:10px; }
.message_wrap02 .message_bot {text-align:center; padding:75px 0 19px; }
.message_wrap02 .message_bot p {font-size:13px; }
.message_wrap02 .message_bot .message_btn {display:inline-block; height:30px; line-height:30px; font-size:13px; border-radius:0px; margin-top:22px; padding:0 30px; }

/*==================
	loading
==================*/
.loading {position:fixed; top:0; width:100%; height:100%; opacity:.8; z-index:100; background-color:#17181B; -webkit-transition-duration:0.5s; transition-duration:0.5s; -webkit-transition-property: opacity;transition-property:opacity; -webkit-transition-timing-function:ease-out; transition-timing-function:ease-out; z-index:99999; }
.load {position:fixed; left:50%; top:47%; width:100px; height:100px; margin:0 0 0 -33px; }
.loading_logo {position:fixed; top:44%; width:100%; text-align:center; margin-top:-20px; }

.loading_div {position:absolute; top:0; width:100%; height:100%; opacity:.8; z-index:100; background-color:#17181B; -webkit-transition-duration:0.5s; transition-duration:0.5s; -webkit-transition-property: opacity;transition-property:opacity; -webkit-transition-timing-function:ease-out; transition-timing-function:ease-out; display:none; z-index:99999; }
.loading_div.show {display:block; }
.load_div {position:absolute; left:50%; top:47%; margin:0 0 0 -33px; }
.loading_logo_div {position:absolute; left:50%; top:44%; margin:-50px 0 0 -103px; }

.lds-ellipsis {display:inline-block; width:64px; height:64px; border:3px solid rgba(255,255,255,.3); border-radius:50%; border-top-color:#fff; animation: spin 1s ease-in-outinfinite; -webkit-animation:spin 1s ease-in-out infinite; }

.wait:before {position:absolute; top:50%; left:50%; content:""; width:64px; height:64px; border:3px solid rgba(255,255,255,.3); border-radius:50%; border-top-color:#fff; animation: spin 1s ease-in-outinfinite; -webkit-animation:spin 1s ease-in-out infinite; margin:-32px 0 0 -32px; z-index:99999; }
.wait:after {position:absolute; top:0; content:""; width:100%; height:100%; opacity:.8; z-index:100; background-color:#17181B; -webkit-transition-duration:0.5s; transition-duration:0.5s; -webkit-transition-property: opacity;transition-property:opacity; -webkit-transition-timing-function:ease-out; transition-timing-function:ease-out; z-index:9999; }

@keyframes spin {to {-webkit-transform: rotate(360deg); } }
@-webkit-keyframes spin {to {-webkit-transform: rotate(360deg); } }

.break_flex {
    flex-basis: 100%;
    height: 10px;
}
