*{
    margin: 0;
    padding: 0;
}
.header{
    width: 100%;
    height: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0,0,0,.4);
    position: fixed;
    top: 0;
    z-index: 6;
}
.header .nav{
    width: 1200px;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header .nav .left{
    width: 100px;
    height: 100%;
}
.header .nav .left img{
    width: 100%;
    height: 100%;
}
.header .nav .right{
    width: 40%;
    height: 100%;
    list-style-type: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header .nav .right>li{
    flex: 1;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.header .nav .right>li>a{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    box-sizing: border-box;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
}
.header .nav .right>li>a:hover{
    border-bottom:  1px solid rgb(255, 255, 255);
}

.banner{
    width: 100%;
    height: 100vh;
}

.banner .swiper {
    width: 100%;
    height: 100%;
}

.banner .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;

    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
	position: relative;
}
.banner .swiper-text{
	position: absolute;
	z-index: 1;
	top: 45%;
	left: 10%;
	width: calc(100% - 10%);
}
.banner .swiper-text.right{
	position: absolute;
	z-index: 1;
	top: 54%;
	right: 5%;
	width: calc(50%);
	left: unset;
}
.banner .swiper-text .title{
	margin: 30px 0;
	font-size: 54px;
	color: #fff;
	text-align: left;
	font-weight: bold;
	/* text-transform: uppercase; */
	word-break: keep-all;
}
.banner .swiper-text .text{
	margin: 10px 0;
	font-size: 54px;
	font-weight: bold;
	/* text-transform: uppercase; */
	color: #fff;
	text-align: left;
}
.banner .swiper-text.right .title{
	text-align: right;
}
.banner .swiper-text.right .text{
	text-align: right;
}

.banner .swiper-slide .bg-img{
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.main .content{
    width: 100%;
    height: 100vh;
    position: relative;
}
.main .content img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.main .content .content-box{
    position: absolute;
    z-index: 1;
    width: 30%;
    left: 10%;
    top: 50%;
    transform: translateY(-50%);
}
.main .content .content-box h3{
    color: #fff;
    font-size: 75px;
    text-align: center;
}
.main .content .content-box p{
    color: #fff;
    text-align: justify;
}
.main > div:nth-child(2) .content-box{
    right: 10%;
    left: unset;
}

.bottom{
    /*margin-top: 60px;*/
    height: 75px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #132032;
    color: #fff;
}
.swiper-pagination-bullet-active{
    background: #fff;
}
.swiper-pagination-bullet{
    width: 45px;
    height: 3px;
    border-radius: unset;

}