

@import url("base.css");


.index_fullpage{
	width: 100%;
	height: 100%;
}

.index_fullpage > .swiper-wrapper > .swiper-slide{
    display: flex;
    justify-content: center;
  align-items: center;
    background-size: cover;
    background-position: center;
}


/*右侧切屏导航*/

.index_full_pa span{
    position: relative;
    width: 22px;
    height: 16px;
    opacity: 1;
    margin: 2px 0!important;
    background: transparent;
}

.index_full_pa span:after{
    content: "";
    display: block;
    position: absolute;
    background: rgba(255, 255, 255, 0.6);
    width: 10px;
    height: 4px;
    top: 6px;
    right: 0;
    transition: ease 0.6s;
}

.index_full_pa span:hover:after{
    background: #fff;
}

.index_full_pa span.swiper-pagination-bullet-active:after{
    background: rgba(255, 255, 255, 1);
    width: 22px;
}

.index_full_pa span i{
    display: block;
    position: absolute;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    right: 25px;
    top: -9px;
    font-size: var(--fs_14);
    line-height: 2;
    background: rgba(0,0,0,0.5);
    color: #fff;
    padding: 3px 10px;
    border-radius: 4px;
    transition: ease 0.6s;
}

.index_full_pa span:hover i{
    opacity: 1;
    visibility: visible;
}

.index_full_pa span.swiper-pagination-bullet-active i {
    right: 37px;
}


/*第一屏*/

.index_banner{
    height: 100vh;
    width: 100vw;
    position: absolute;
    left: 0;
    top: 0;
}

.banner_text{
    position: relative;
    z-index: 3;
}

.banner_text p{
    color: #fff;
    font-size: var(--fs_24);
    text-align: center;
    line-height: 1.6;
    letter-spacing: 0.08rem;
    font-weight: 300;
}

.banner_text p.tit{
    letter-spacing: 0;
    font-size: var(--fs_48);
    font-weight: 500;
/*    margin-bottom: 1em;*/
    position: relative;
}

/*.banner_text p.tit:after{
    position: absolute;
    font-family:bootstrap-icons;
    content: "\F624";
    top: 120%;
    left: 50%;
    transform: translateX(-50%) ;
    font-size: var(--fs_18);
}*/

.index_banner .swiper-wrapper{
    width: 100%;
    height: 100%;
}

.index_banner .swiper-slide{
    width: 100%;
    height: 100%;
}

.index_banner .swiper-slide .img_cover{
    background-size: cover;
    background-position: center;
    width: calc(100% + 42px);
    height: 100%;
    position: absolute;
    left: -20px;
    top: 0;
    transform: translateX(20px);
    transition: all 5000ms linear;
}

.index_banner .swiper-slide .img_cover:after{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    background: rgba(49, 57, 53, 0.4);
}

.index_banner .swiper-slide.swiper-slide-active .img_cover {
    transform: translateX(-20px);
}

.mouseBox {
    position: absolute;
    right: 10px;
    left: auto;
    bottom: 25px;
    z-index: 999;
    text-align: center;
    display: block;
}
.mouseBox p{
    color: rgba(255, 255, 255, 0.8);
    margin-top: 10px;
    font-size: var(--fs_12);
}
.mouseIco {
    border-radius: 10px;
    width: 20px;
    height: 32px;
    border: 2px solid #fff;
    margin: 0 auto;
    display: block;
    position: relative;
}
.mouseIco i {
    width: 2px;
    height: 7px;
    border-radius: 1px;
    display: block;
    background-color: #fff;
    position: absolute;
    left: 50%;
    margin-left: -1px;
    top: 6px;
    -webkit-animation: mouse-dot 1.5s cubic-bezier(.23,1,.32,1) infinite;
    animation: mouse-dot 1.5s cubic-bezier(.23,1,.32,1) infinite;
}
@keyframes mouse-dot {
    from {
        opacity: 0
    }
    33% {
        opacity: 1
    }
    to {
        transform: translateY(10px);
        -webkit-transform: translateY(10px);
        opacity: 0
    }
}

@-webkit-keyframes mouse-dot {
    from {
        opacity: 0
    }
    33% {
        opacity: 1
    }
    to {
        transform: translateY(10px);
        -webkit-transform: translateY(10px);
        opacity: 0
    }
}

.banner_circle.circle_box{
    position: relative;
    z-index: 2;
}

.rotate-me,
.rotate-me2{
    position: absolute;
    left: 50%;
    top: 50%;
}
.rotate-me {
    margin-left: -569px;
    margin-top: -569px;
    animation-name: rotateme;
    animation-duration: 30s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}
.rotate-me2 {
    margin-left: -517px;
    margin-top: -517px;
    animation-name: rotateme2; 
    animation-duration: 18s; 
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}
@keyframes rotateme {
    from {
        transform: rotate(0deg);
    }
    to { 
        transform: rotate(360deg);
    }
}
@-webkit-keyframes rotateme {
    from {
        -webkit-transform: rotate(0deg);
    }
    to { 
        -webkit-transform: rotate(360deg);
    }
}
@keyframes rotateme2 {
    from {
        transform: rotate(360deg);
    }
    to { 
        transform: rotate(0deg);
    }
}
@-webkit-keyframes rotateme2 {
    from {
        -webkit-transform: rotate(360deg);
    }
    to { 
        -webkit-transform: rotate(0deg);
    }
}

.swiper-slide.swiper-slide1 video{
    width: 100vw;
    height: 100vh;
    min-width: 100%;
    min-width: 100%;
    object-fit: cover;
    object-position: bottom;
}

@media screen and (max-width:1180px){
    .swiper-slide.swiper-slide1 video{
        height: 100%;
    }
}

.video_cover{
    position: absolute;
    top: 0;
    z-index: 1;
    right: 0;
    display: block;
    width: 20%;
    height: 100%;
    background: linear-gradient(to left,rgba(0, 0, 0, 0.3),rgba(0, 0, 0, 0));
}




/*第二屏*/

.swiper-slide2{
   background-image: url(../image/index2_bg.jpg);
}

.swiper-slide2 .container{
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
    height: 100%;
}

.swiper-slide2 .container p.tit{
    display: flex;
    margin-top: 90px;
    font-size: var(--fs_40);
    font-weight: 500;
    color: #fff;
    height: calc(34% - 90px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
}

.swiper-slide2 .container p.tit img{
    width: 100%;
}

.swiper-slide2 .container .pro_box{
    height: 60%;
    display: flex;
    margin-left: -4%;
    margin-right: -4%;
}
.swiper-slide2 .pro_item{
    position: absolute;
}
.swiper-slide2 .pro_item .img_box{
    display: block;
}

.swiper-slide2 .pro_item .text_box{
    position: absolute;
    font-size: var(--fs_16);
    color: #fff;
    padding-left: 1em;
    left: 10%;
    bottom: 110%;
    opacity: 0;
    white-space: nowrap;
    transform: translateY(20px);
    transition: ease 0.6s;
}


.swiper-slide2 .pro_item .text_box:before{
    content: "";
    display: block;
    position: absolute;
    top: 0.7em;
    width: 8px;
    height: 8px;
    left: 0;
    background: #fff;
    border-radius: 100%;
}
.swiper-slide2 .pro_item:hover .text_box{
    opacity: 1;
    transform: translateY(0);
}
.swiper-slide2 .pro_item .img_box img{
    transition: ease 0.6s;
    transform: scale(1);
    position: relative;
/*    max-width: 100%;*/
}
.swiper-slide2 .pro_item:hover .img_box img{
    transform: scale(1.05);
}

@media screen and (min-width: 0px){
    .swiper-slide2 .container p.tit{
        width: 340px;
    }
    .swiper-slide2 .pro_item .text_box{
        font-size: var(--fs_36);
    }
    .swiper-slide2 .pro_item{
        transform: scale(0.35);
    }
    .swiper-slide2 .pro_item1{
        left: -36%;
        bottom: -32%;
    }
    .swiper-slide2 .pro_item2{
        left: 31%;
        bottom: -6%;
    }
    .swiper-slide2 .pro_item3{
        left: 44.5%;
        bottom: -9.5%;
    }
    .swiper-slide2 .pro_item4{
        left: 47%;
        bottom: -25%;
    }
    .swiper-slide2 .pro_item5{
        left: 76%;
        bottom: 27%;
    }
    .swiper-slide2 .pro_item6{
        left: 87%;
        bottom: 20%;
    }
}

@media screen and (min-width: 900px){
    .swiper-slide2 .container p.tit{
        width: 340px;
    }
    .swiper-slide2 .pro_item .text_box{
        font-size: var(--fs_36);
    }
    .swiper-slide2 .pro_item{
        transform: scale(0.4);
    }
    .swiper-slide2 .pro_item1{
        left: -29%;
        bottom: -32%;
    }
    .swiper-slide2 .pro_item2{
        left: 32%;
        bottom: -6%;
    }
    .swiper-slide2 .pro_item3{
        left: 44.5%;
        bottom: -9.5%;
    }
    .swiper-slide2 .pro_item4{
        left: 50%;
        bottom: -25%;
    }
    .swiper-slide2 .pro_item5{
        left: 76%;
        bottom: 28%;
    }
    .swiper-slide2 .pro_item6{
        left: 87%;
        bottom: 20%;
    }
}

@media screen and (min-width: 1000px){
    .swiper-slide2 .container p.tit{
        width: 340px;
    }
    .swiper-slide2 .pro_item .text_box{
        font-size: var(--fs_36);
    }
    .swiper-slide2 .pro_item{
        transform: scale(0.45);
    }
    .swiper-slide2 .pro_item1{
        left: -24%;
        bottom: -25%;
    }
    .swiper-slide2 .pro_item2{
        left: 35%;
        bottom: 1%;
    }
    .swiper-slide2 .pro_item3{
        left: 48.5%;
        bottom: -1.5%;
    }
    .swiper-slide2 .pro_item4{
        left: 55%;
        bottom: -19%;
    }
    .swiper-slide2 .pro_item5{
        left: 79%;
        bottom: 35%;
    }
    .swiper-slide2 .pro_item6{
        left: 91%;
        bottom: 28%;
    }
}

@media screen and (min-width: 1170px){
    .swiper-slide2 .container p.tit{
        width: 340px;
    }
    .swiper-slide2 .pro_item .text_box{
        font-size: var(--fs_36);
    }
    .swiper-slide2 .pro_item{
        transform: scale(0.5);
    }
    .swiper-slide2 .pro_item1{
        left: -20%;
        bottom: -25%;
    }
    .swiper-slide2 .pro_item2{
        left: 35%;
        bottom: 2%;
    }
    .swiper-slide2 .pro_item3{
        left: 48.5%;
        bottom: 0%;
    }
    .swiper-slide2 .pro_item4{
        left: 57.5%;
        bottom: -20%;
    }
    .swiper-slide2 .pro_item5{
        left: 79%;
        bottom: 38%;
    }
    .swiper-slide2 .pro_item6{
        left: 91%;
        bottom: 30%;
    }
}

@media screen and (min-width:1280px){
    .swiper-slide2 .container p.tit{
        width: 340px;
    }
    .swiper-slide2 .pro_item .text_box{
        font-size: var(--fs_36);
    }
    .swiper-slide2 .pro_item{
        transform: scale(0.5);
    }
    .swiper-slide2 .pro_item1{
        left: -23%;
        bottom: -29%;
    }
    .swiper-slide2 .pro_item2{
        left: 35%;
        bottom: 2%;
    }
    .swiper-slide2 .pro_item3{
        left: 48.5%;
        bottom: 0%;
    }
    .swiper-slide2 .pro_item4{
        left: 57.5%;
        bottom: -22%;
    }
    .swiper-slide2 .pro_item5{
        left: 80%;
        bottom: 41%;
    }
    .swiper-slide2 .pro_item6{
        left: 92%;
        bottom: 33%;
    }
}

@media screen and (min-width:1360px){
    .swiper-slide2 .container p.tit{
        width: 320px;
    }
    .swiper-slide2 .pro_item .text_box{
        font-size: var(--fs_36);
    }
    .swiper-slide2 .pro_item{
        transform: scale(0.54);
    }
    .swiper-slide2 .pro_item1{
        left: -23%;
        bottom: -25%;
    }
    .swiper-slide2 .pro_item2{
        left: 35%;
        bottom: 6%;
    }
    .swiper-slide2 .pro_item3{
        left: 49.5%;
        bottom: 4.5%;
    }
    .swiper-slide2 .pro_item4{
        left: 60.5%;
        bottom: -17%;
    }
    .swiper-slide2 .pro_item5{
        left: 82%;
        bottom: 44%;
    }
    .swiper-slide2 .pro_item6{
        left: 95%;
        bottom: 36%;
    }
}

@media screen and (min-width:1440px){
    .swiper-slide2 .container p.tit{
        width: 420px;
    }
    .swiper-slide2 .pro_item .text_box{
        font-size: var(--fs_32);
    }
    .swiper-slide2 .pro_item{
        transform: scale(0.62);
    }
    .swiper-slide2 .pro_item1{
        left: -20%;
        bottom: -19%;
    }
    .swiper-slide2 .pro_item2{
        left: 37%;
        bottom: 9%;
    }
    .swiper-slide2 .pro_item3{
        left: 51.5%;
        bottom: 7.5%;
    }
    .swiper-slide2 .pro_item4{
        left: 63.5%;
        bottom: -13%;
    }
    .swiper-slide2 .pro_item5{
        left: 83%;
        bottom: 45%;
    }
    .swiper-slide2 .pro_item6{
        left: 97%;
        bottom: 37%;
    }
}

@media screen and (min-width:1600px){
    .swiper-slide2 .container p.tit{
        width: 480px;
    }
    .swiper-slide2 .pro_item{
        transform: scale(0.65);
    }
    .swiper-slide2 .pro_item1{
        left: -15%;
        bottom: -17%;
    }
    .swiper-slide2 .pro_item2{
        left: 40%;
        bottom: 10%;
    }
    .swiper-slide2 .pro_item3{
        left: 54%;
        bottom: 9%;
    }
    .swiper-slide2 .pro_item4{
        left: 66%;
        bottom: -12%;
    }
    .swiper-slide2 .pro_item5{
        left: 85%;
        bottom: 45%;
    }
    .swiper-slide2 .pro_item6{
        left: 99%;
        bottom: 37%;
    }
}

@media screen and (min-width:1920px){
    .swiper-slide2 .container p.tit{
        width: 557px;
    }
    .swiper-slide2 .pro_item{
        transform: scale(0.78);
    }
    .swiper-slide2 .pro_item1{
        left: -13%;
        bottom: -12%;
    }
    .swiper-slide2 .pro_item2{
        left: 40.7%;
        bottom: 12%;
    }
    .swiper-slide2 .pro_item3{
        left: 55.7%;
        bottom: 11.5%;
    }
    .swiper-slide2 .pro_item4{
        left: 70.5%;
        bottom: -6%;
    }
    .swiper-slide2 .pro_item5{
        left: 87%;
        bottom: 46%;
    }
    .swiper-slide2 .pro_item6{
        left: 101%;
        bottom: 39%;
    }
}

@media screen and (min-width:2560px){
    .swiper-slide2 .container p.tit {
        width: 680px;
    }
    .swiper-slide2 .pro_item{
        transform: scale(1);
    }
    .swiper-slide2 .pro_item .text_box{
        font-size: var(--fs_24);
    }
    .swiper-slide2 .pro_item1{
        left: -3%;
        bottom: -3%;
    }
    .swiper-slide2 .pro_item2{
        left: 40.7%;
        bottom: 19%;
    }
    .swiper-slide2 .pro_item3{
        left: 53.7%;
        bottom: 19%;
    }
    .swiper-slide2 .pro_item4{
        left: 69%;
        bottom: 1%;
    }
    .swiper-slide2 .pro_item5{
        left: 81%;
        bottom: 49%;
    }
    .swiper-slide2 .pro_item6{
        left: 94%;
        bottom: 42%;
    }
}








/*插屏*/
.swiper-slide_new{
    background-image: url(../image/indexnew_bg.jpg);
}

.swiper-slide_new .container p{
    text-align: center;
    color: #fff;
    font-size: var(--fs_40);
    opacity: 0.1;
    transition: ease 1.2s;
    transform: translateY(100%);
}
.swiper-slide_new.swiper-slide-active .container p{
    opacity: 1;
    transform: translateY(0);
}

.swiper-slide_new .container .btn_box{
    margin-top: 2em;
    opacity: 0.1;
    transform: translateY(100%);
    transition: ease 1.2s;
    transition-delay: 0.2s;    
}

.swiper-slide_new.swiper-slide-active .container .btn_box{
    opacity: 1;
    transform: translateY(0);
}




/*第三屏*/

.swiper-slide3{
    background-image: url(../image/index3_bg.jpg);
}

.index_fullpage > .swiper-wrapper > .swiper-slide.swiper-slide3{
    align-items: flex-end;    
}

.swiper-slide3 .container{
    padding-bottom: 18vh;
}

.swiper-slide3 .container p{
    max-width: 34vw;
    color: #fff;
    font-size: var(--fs_18);
    line-height: 1.6;
    letter-spacing: 0.08rem;
    transform: translateY(10vh);
    transition: ease 1.2s;
    opacity: 0.1;
    transition-delay: 0.3s;
}

.swiper-slide3 .container p.tit{
    font-size: var(--fs_40);
    margin-bottom: 2vh;
    letter-spacing: 0;
    white-space: nowrap;
    transition-delay: 0.1s;
    font-weight: 500;
}

.swiper-slide3.swiper-slide-active p{
    transform: translateY(0);
    opacity: 1;
}

.swiper-slide3 .btn_box{
    margin-top: 2rem;
    transform: translateY(100%);
    opacity: 0.1;
    transition: ease 1.2s;
    transition-delay: 0.5s;
}

.swiper-slide3.swiper-slide-active .btn_box{
    transform: translateY(0);
    opacity: 1;
}


/*第四屏*/
.swiper-slide4{
    padding-top: 55px;
    background-image: url(../image/index4_bg.jpg);
}

.swiper-slide4 .container p{
    color: #fff;
    font-size: var(--fs_18);
    line-height: 1.7;
    letter-spacing: 0.08rem;
    transform: translateY(10vh);
    transition: ease 1.2s;
    opacity: 0.1;
    transition-delay: 0.3s;
    text-align: center;
}

.swiper-slide4 .container p.tit{
    font-size: var(--fs_40);
    margin-bottom: 2.1rem;
    letter-spacing: 0;
    transition-delay: 0.1s;
    font-weight: 500;
    position: relative;
}

.swiper-slide4 .container p.tit:after{
    content: "";
    display: block;
    position: absolute;
    height: 2px;
    width: 40px;
    left: 50%;
    top: 2em;
    transform: translateX(-50%);
    background: #fff;
}

.swiper-slide4.swiper-slide-active p{
    transform: translateY(0);
    opacity: 1;
}

.swiper-slide4 .container .btn_box{
    margin-top: 5vh;
    transform: translateY(10vh);
    transition: ease 1.2s;
    transition-delay: 0.5s;
    opacity: 0.1;    
}

.swiper-slide4.swiper-slide-active .container .btn_box{
    transform: translateY(0);
    opacity: 1;
}



/*第五屏*/
.swiper-slide5{
    padding-top:0px;
    background-image: url(../image/index5_bg.jpg);
}

.swiper-slide5 p.tit{
    text-align: center;
    color: var(--dark);
    font-size: var(--fs_40);
    margin-bottom: 1rem;
    font-weight: 500;
}
.index_coo_box{
    position: relative;
}

.index_coo_box:before,
.index_coo_box:after{
    content: '';
    position: absolute;
    height: 100%;
    top: 0;
    width: 6.25rem;
    z-index: 10;
    right: 0;
    background-image: linear-gradient(to left, rgba(239, 239, 239, 1), rgba(239, 239, 239, 0));
}

.index_coo_box:before{
    left: 0;
    right: auto;
    background-image: linear-gradient(to right, rgba(239, 239, 239, 1), rgba(239, 239, 239, 0));
}

.index_coo .swiper-wrapper{
    transition-timing-function: linear;
}

.index_coo .swiper-slide{
    padding: 10px 20px;
    background: #fff;
    border-radius: 4px;
    margin: 2vh 0;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}
@media screen and (max-width:1600px){
    .index_coo .swiper-slide{
        box-shadow: 0 5px 12px rgba(0, 0, 0, 0.08);
    }
}
@media screen and (max-width:1280px){
    .index_coo .swiper-slide{
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    }
}
.index_coo .swiper-slide img{
    max-width: 100%;
}
.swiper-slide5 .btn{
    margin-top: 1rem;
}


/*第六屏*/

.swiper-slide6{
    flex-direction: column;
   /* padding-top: 210px;*/
}
@media screen and (max-width:1600px){
    .swiper-slide6{
        padding-top: 80px;
    }
}
@media screen and (max-width:1366px){
    .swiper-slide6{
        padding-top: 80px;
    }
}
.swiper-slide6 .contact,
.swiper-slide6 .footer{
    width: 100%;
    display: flex;
}
.swiper-slide6 .contact{
    background: url(../image/map.jpg) no-repeat left bottom #fff;
    background-size: cover;
    height: 60%;
}
@media screen and (max-width:1280px){
    .swiper-slide6 .contact{
        background-size: contain;
    }
}
.swiper-slide6 .contact .container{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    padding-top: 3.5%;
}
@media screen and (max-width:1600px){
    .swiper-slide6 .contact .container{
        padding-top: 2.5%;
    }
}

.swiper-slide6 .info_box{
    color: var(--secondary);
    font-size: var(--fs_18);
    line-height: 1.6;
}

@media screen and (max-width:1600px){
    .swiper-slide6 .info_box{
        font-size: var(--fs_16);
    }
}
.swiper-slide6 .info_box p.tit{
    color: var(--dark);
    font-size: var(--fs_22);
}
.swiper-slide6 .info_box p.tit:not(:first-child),
.swiper-slide6 .info_box .box{
    margin-top: 2.2vh;
}

.swiper-slide6 .mes_box{
    width: 60%;
}

@media screen and (max-width:1600px){
    .swiper-slide6 .mes_box{
        width: 52%;
    }
}

@media screen and (max-width:1440px){
    .swiper-slide6 .mes_box{
        width: 50%;
    }
}

@media screen and (max-width:1280px){
    .swiper-slide6 .mes_box{
        width: 50%;
    }
}

.swiper-slide6 .index_mes{
    width: 100%;
}
.swiper-slide6 .index_mes input,
.swiper-slide6 .index_mes textarea{
    border: 1px #c7c7c7 solid;
    width: 100%;
    border-radius: 0;
    margin-bottom: 2vh;
    resize: none;
}

@media screen and (max-width:1600px){
    .swiper-slide6 .index_mes textarea{
        height: 120px!important;
    }
}

@media screen and (max-width:1366px){
    .swiper-slide6 .index_mes textarea{
        height: 100px!important;
    }
}

@media screen and (max-width:1280px){
    .swiper-slide6 .index_mes textarea{
        height: 80px!important;
    }
}

.index_mes .input_box{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
}
.index_mes .input_box .form-floating{
    width: 49%;
}
.form-floating.textarea{
    width: 100%;
}
.mes_box .btn_box{
    display: flex;
    align-items: center;
}
.mes_box .btn_box p{
    color: var(--secondary);
    margin-left: 20px;
}
@media screen and (max-width: 1280px){
    .mes_box .btn_box p{
        font-size: var(--fs_14);
    }
}
.mes_box .btn_box p a{
    text-decoration: underline;
    transition: ease 0.6s;
}
.mes_box .btn_box p a:hover{
    color: var(--primary);
}
.mes_box .btn{
    background: #000;
    padding: 1.6vh 4.5vw;
    border-radius: 0;
    transition: ease 0.6s;
    border-color: #000;
}
.mes_box .btn:after{
    display: none;
}

.mes_box .btn:hover{
    background: var(--primary);
    border-color: var(--primary);
}



.swiper-slide6 .footer{
    height: 40%;
    background: #565656;
    align-items: flex-end;
    color: rgba(255, 255, 255, 0.8);
}

.swiper-slide6 .footer img{
    max-width: 100%;
}

.swiper-slide6 .footer a{
    transition: ease 0.6s;
}
.swiper-slide6 .footer a:hover{
    color: #fff;
}

.footer .box_1{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.footer .box_1 > div:nth-child(1){
    flex: 0 0 220px;
    text-align: center;
}
@media screen and (max-width:1600px){
    .footer .box_1 > div:nth-child(1){
        flex: 0 0 210px;
    }
}
@media screen and (max-width:1366px){
    .footer .box_1 > div:nth-child(1){
        flex: 0 0 160px;
    }
}
.footer .box_1 > div:nth-child(1) p{
    margin-top: 1rem;
    letter-spacing: 0.1rem;
    font-size: var(--fs_14);
}
.footer .box_1 > div:nth-child(2){
    padding: 0 1.5vw;
    border-left: 1px rgba(255,255,255,0.15) solid;
    border-right: 1px rgba(255,255,255,0.15) solid;
}
.footer .box_1 > div:nth-child(2) > ul{
    display: flex;
    flex-direction: row;
    font-size: var(--fs_14);
}

.footer .box_1 > div:nth-child(2) li.sub{
    padding: 0 2vw;
}
.footer .box_1 > div:nth-child(2) li.sub > a{
    color: #fff;
    display: block;
    font-size: var(--fs_16);
    margin-bottom: 2vh;
}

.footer .box_1 > div:nth-child(2) li.sub > ul > li {
    line-height: 2;
}

.footer .box_1 > div:nth-child(3){
    flex: 0 0 120px;
    margin-left: 20px;
    font-size: var(--fs_14);
    text-align: center;
}
@media screen and (max-width:1600px){
    .footer .box_1 > div:nth-child(3){
        flex: 0 0 96px;
        font-size: var(--fs_12);
    }
}

@media screen and (max-width:1366px){
    .footer .box_1 > div:nth-child(3){
        flex: 0 0 90px;
    }
}

@media screen and (max-width:1280px){
    .footer .box_1 > div:nth-child(3){
        flex: 0 0 86px;
    }
    .footer .box_1 > div:nth-child(3) img{
        max-width: 90%;
    }
}


.footer .box_2{
    font-size: var(--fs_14);
    line-height: 5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 3%;
}
@media screen and (max-width:1600px){
    .footer .box_2{
        line-height: 3.6rem;
        margin-top: 2%;
    }
}

@media screen and (max-width:1366px){
    .footer .box_2{
        line-height: 50px;
        margin-top: 1.5%;
    }
}
@media screen and (max-width:1280px){
    .footer .box_2{
        line-height: 42px;
        margin-top: 1.2%;
    }
}













.form-floating {
    position: relative
}

.form-floating>.form-control,.form-floating>.form-select {
    height: calc(3.5rem + 2px);
    padding: 1rem .75rem
}

@media screen and (max-width:1600px){
    .form-floating>.form-control,.form-floating>.form-select {
        height: calc(2.6rem + 2px);
    }
}

@media screen and (max-width:1366px){
    .form-floating>.form-control,.form-floating>.form-select {
        height: calc(2.6rem + 2px);
    }
}

@media screen and (max-width:1280px){
    .form-floating>.form-control,.form-floating>.form-select {
        height: calc(2.3rem + 2px);
    }
}

.form-floating>label {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    padding: 1rem .75rem;
    pointer-events: none;
    border: 1px solid transparent;
    transform-origin: 0 0;
    transition: opacity 0.1s ease-in-out,transform 0.1s ease-in-out;
    color: var(--dark);
    font-size: var(--fs_16);
}

@media screen and (max-width:1600px){
    .form-floating>label{
        padding: 0.6rem .75rem;
    }
}
@media screen and (max-width:1366px){
    .form-floating>label{
        padding: 0.7rem .75rem;
    }
}
@media screen and (max-width:1280px){
    .form-floating>label{
        padding: 0.6rem .75rem;
    }
}
@media (prefers-reduced-motion: reduce) {
    .form-floating>label {
        transition: none
    }
}

.form-floating>.form-control::placeholder {
    color: transparent
}

.form-floating>.form-control:focus,.form-floating>.form-control:not(:placeholder-shown) {
    padding-top: 1.625rem;
    padding-bottom: .625rem
}

.form-floating>.form-control:-webkit-autofill {
    padding-top: 1.625rem;
    padding-bottom: .625rem
}

.form-floating>.form-select {
    padding-top: 1.625rem;
    padding-bottom: .625rem
}

.form-floating>.form-control:focus ~ label,.form-floating>.form-control:not(:placeholder-shown) ~ label,.form-floating>.form-select ~ label {
    opacity: .65;
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem)
}

.form-floating>.form-control:-webkit-autofill ~ label {
    opacity: .65;
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem)
}

.input-group {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%
}

.input-group>.form-control,.input-group>.form-select {
    position: relative;
    flex: 1 1 auto;
    width: 1%;
    min-width: 0
}

.input-group>.form-control:focus,.input-group>.form-select:focus {
    z-index: 3
}

.input-group .btn {
    position: relative;
    z-index: 2
}

.input-group .btn:focus {
    z-index: 3
}

.input-group-text {
    display: flex;
    align-items: center;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #555;
    text-align: center;
    white-space: nowrap;
    background-color: #e9ecef;
    border: 1px solid #ced4da;
    border-radius: 0px
}

.input-group-lg>.form-control,.input-group-lg>.form-select,.input-group-lg>.input-group-text,.input-group-lg>.btn {
    padding: .5rem 1rem;
    font-size: 1.25rem;
    border-radius: 0px
}

.input-group-sm>.form-control,.input-group-sm>.form-select,.input-group-sm>.input-group-text,.input-group-sm>.btn {
    padding: .25rem .5rem;
    font-size: .875rem;
    border-radius: 0px
}

.input-group-lg>.form-select,.input-group-sm>.form-select {
    padding-right: 3rem
}

.input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu),.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0
}

.input-group.has-validation>:nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu),.input-group.has-validation>.dropdown-toggle:nth-last-child(n+4) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0
}

.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
    margin-left: -1px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0
}



@media screen and (max-width:1198px){
    html{
        text-size-adjust: none;
        -webkit-text-size-adjust: none;
    }
    .header .language {
        flex-shrink: 0;
    }
    .header .nav > ul > li > a{
        white-space: nowrap;
    }
    .index_fullpage{
        height: auto;
    }
    .index_fullpage > .swiper-wrapper{
        flex-direction: column;
    }
    .index_fullpage > .swiper-wrapper > .swiper-slide{
        height: 610px;
        overflow: hidden;
    }
    .index_banner{
        height: 100%;
    }
    .swiper-slide_new .container p,
    .swiper-slide_new .container .btn_box,
    .swiper-slide3 .container p,
    .swiper-slide3 .btn_box,
    .swiper-slide4 .container p,
    .swiper-slide4 .container .btn_box{
        opacity: 1;
        transform: translateY(0);
    }
    .swiper-slide3 .container{
        padding-bottom: 18%;
    }
    .index_coo .swiper-slide{
        margin: 2% 0;
    }
    .swiper-slide6 .index_mes input, .swiper-slide6 .index_mes textarea{
        margin-bottom: 2%;
    }
    .mes_box .btn{
        padding: 1.6% 4.5%;
    }
    .swiper-slide6 .info_box .box{
        margin-top: 2.2%;
    }
}

@media screen and (max-width:1000px){
    .index_fullpage > .swiper-wrapper > .swiper-slide{
        height: 580px;
    }
}