@charset 'utf-8';

.swipe-carousel {}

.swipe-carousel .welcome {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 2;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    color: #fff;
}

.swipe-carousel .welcome .p1 {
    opacity: 0;
    font-size: 68px;
    font-weight: 700;
    line-height: 1;    
    animation:fadeInLeft .7s .2s 1 forwards ease-in-out;
}

.swipe-carousel .welcome .p2 {
    opacity: 0;
    padding: 35px 0 55px;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.5;
    animation:fadeInLeft .7s .9s 1 forwards ease-in-out;    
}

.swipe-carousel .welcome .p3 {
    opacity: 0;
    position: relative;
    padding: 0 0 0 73px;
    width: 308px;
    height: 55px;
    background: linear-gradient(to right, #f07a39, #c94134);
    font-size: 26px;
    font-weight: 500;
    line-height: 55px;
    border-radius: 28px;
    animation:fadeIn .7s 1.6s 1 forwards ease-in-out;
}

.swipe-carousel .welcome .p3:before {
    content: '';
    display: block;
    position: absolute;
    left: 7px; top: 50%; transform: translateY(-50%);
    width: 42px;
    height: 42px;
    background: url('/data/main/bg_tel.png') no-repeat center /contain;
}
.swipe-carousel .scroll-down {
    position: absolute;
    left: 50%;
    bottom: 50px;
    transform: translateX(-50%);
    z-index: 2;
    font-size: 16px;
    color: #fff;
}


@media (max-width:991px){
    .swipe-carousel .scroll-down { display: none;}
}
@media (max-width:768px){
    .swipe-carousel .welcome .p1 { font-size: 64px;}
    .swipe-carousel .welcome .p2 { padding: 30px 0 50px; font-size: 20px;}
    .swipe-carousel .welcome .p3 { padding: 0 0 0 65px;  width: 280px; height: 50px; font-size: 22px; line-height: 50px; border-right: 25px; }
    .swipe-carousel .welcome .p3:before { width: 38px; height: 38px; }
}
@media (max-width:576px){
    .swipe-carousel .welcome .p1 { font-size: 60px; text-align: center;}
    .swipe-carousel .welcome .p2 { font-size: 18px; line-height: 2; text-align: center; }
    .swipe-carousel .welcome .p3 { margin: 0 auto;  }   
}
@media (max-width:481px){
    .swipe-carousel .welcome .p1 { font-size: 40px;}
    .swipe-carousel .welcome .p2 { padding: 25px 0 45px; font-size: 16px; line-height: 1.5; word-break: keep-all; }
    .swipe-carousel .welcome .p2 br { display: none;}
    .swipe-carousel .welcome .p3 { padding: 0 0 0 52px; width: 230px;  height: 46px; font-size: 20px; line-height: 46px; border-right: 23px}   
    .swipe-carousel .welcome .p3:before { width: 34px; height: 34px;}
}




@keyframes fadeInLeft {
    0% {        
        opacity: 0;
        transform: translateX(-50%);
    }
    100% {        
        opacity: 1;
    }
}
@keyframes fadeIn {
    0% {        
        opacity: 0;
    }
    100% {        
        opacity: 1;
    }
}
