/* 引入字体 */
@font-face {
    font-family: RobotoSlab;
    src: url(../fonts/RobotoSlab/RobotoSlab-Black.ttf),
        url(../fonts/RobotoSlab/RobotoSlab-Bold.ttf) format("truetype"),
        url(../fonts/RobotoSlab/RobotoSlab-ExtraBold.ttf) format("truetype"),
        url(../fonts/RobotoSlab/RobotoSlab-ExtraLight.ttf) format("truetype"),
        url(../fonts/RobotoSlab/RobotoSlab-Light.ttf) format("truetype"),
        url(../fonts/RobotoSlab/RobotoSlab-Medium.ttf) format("truetype"),
        url(../fonts/RobotoSlab/RobotoSlab-Regular.ttf) format("truetype"),
        url(../fonts/RobotoSlab/RobotoSlab-SemiBold.ttf) format("truetype"),
        url(../fonts/RobotoSlab/RobotoSlab-Thin.ttf) format("truetype");
}

@font-face {
    font-family: Vollkorn;
    src: url("../fonts/Vollkorn/Vollkorn-VariableFont_wght.ttf") format("truetype");
}

@font-face {
    font-family: "Gelasio";
    src: url("../fonts/Gelasio/Gelasio-VariableFont_wght.ttf") format("truetype");
}


* {
    margin: 0;
    padding: 0;
    font-family: RobotoSlab, DM Sans, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

img {
    display: block;
    object-fit: cover;
}

html {
    scroll-behavior: smooth;
}


body,
html {
    height: 100%;
}

input,
textarea {
    outline: none;
    border: none;
}

.w {
    width: 1200px;
    margin: 0 auto;
}

.flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.flex-y-start {
    align-items: flex-start;
}

.flex-y-center {
    align-items: center;
}

.flex-y-end {
    align-items: flex-end;
}

.flex-x-center {
    justify-content: center;
}

.flex-x-start {
    justify-content: flex-start;
}

.flex-x-end {
    justify-content: flex-end;
}

.flex-around {
    justify-content: space-around;
}

.flex-between {
    justify-content: space-between;
}

.flex-column {
    flex-direction: column;
}

.gap {
    gap: 20px;
}

.bg1 {
    background-color: #EBEBEB;
}


.scroll-container {
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
}

.scroll-container::-webkit-scrollbar {
    display: none;
}



.item {
    height: 100%;
    scroll-snap-align: start;
}

.item1Img {
    position: relative;
}

.paris {
    position: absolute;
    left: 50%;
    top: 30px;
    transform: translateX(-50%);
}

.diptyque {
    margin-bottom: 20px;
}

.item1Btn {
    background-color: #2C2C2C;
    color: #fff;
    border-radius: 10px;
    width: 200px;
    line-height: 80px;
    text-align: center;
    margin-top: 50px;
}

.item1Btn:hover {
    background-color: #191919;
}


.item1Text {
    width: 40%;
    height: 100%;
}

.item1Text h2 {
    font-family: Vollkorn;

}

.item1Video {
    width: 40%;
}

.item1Video video {
    display: block;
    width: 100%;
}

.item2 h5 {
    margin: 10px 0;
}

.item2Img {
    flex: 1;
    margin: 20px 0;
}

.item2Img img {
    width: 100%;
}

.item2Img p {
    margin-top: 10px;
    text-align: center;
}

.item3Text {
    text-align: center;
    width: 40%;
}

.item3Text p {
    line-height: 2em;
    margin-top: 20px;
}

.item3Img {
    width: 50%;
}

/* bannerWrapper */
.bannerWrapper,
.bannerWrapper .slider,
.bannerWrapper .slider img {
    height: 600px;
}

.bannerWrapper {
    width: 100%;
    position: relative;
}

.bannerWrapper .slider {
    width: 100%;
}

.bannerWrapper .slider li {
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.bannerWrapper .slider img {
    display: block;
    width: 100%;
    object-fit: cover;
}

.control {
    display: block;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    z-index: 999999;
}

.control a {
    width: 10px;
    height: 10px;
    background-color: #A6A6A6;
    margin: 0 5px;
    border-radius: 5px;
    transition: .3s ease-in-out;
}

.control a.active,
.control a:hover {
    background-color: #fff;
    width: 50px;
}

.bannerWrapper .slider li.active {
    opacity: 1;
}

.bannerWrapper .slider li {
    opacity: 0;
    transition: .3s ease-in-out;
}


.prev {
    position: absolute;
    left: 0;
    top: 50%;
    font-size: 30px;
    color: #fff;
    background-color: #eeeeee55;
    padding: 20px;
    transform: translateY(-50%);
}

.next {
    position: absolute;
    right: 0;
    top: 50%;
    font-size: 30px;
    color: #fff;
    background-color: #eeeeee55;
    padding: 20px;
    transform: translateY(-50%);
}

.next:hover,
.prev:hover {
    background-color: #999;
}

/* end bannerWrapper */

.item4 {
    position: relative;
}

.item4 .item3Img {
    flex: 1;
    transition: .3s ease;
}


.item4 .item3Img:hover {
    transform: scale(1.05);
}



.item4 .item3Img img {
    width: 100%;
}

.item4 h1 {
    font-size: 70px;
    text-align: center;
}

.item4 h2 {
    font-size: 30px;
    text-align: center;
    font-family: sans-serif;
    font-weight: 100;
    margin: 30px 0;
}

.item4Img {
    background-color: #F8F8F8;
    margin-top: 50px;
    width: 100%;
    height: 270px;
    object-fit: none;
    object-position: top center;
}

.item4Video {
    display: block;
    position: absolute;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.modal-content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 20px;
    width: 80%;
    max-width: 800px;
}

.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 30px;
    font-weight: bold;
    color: #000;
    cursor: pointer;
    z-index: 9999;
}

.modal-video {
    width: 100%;
    height: 600px;
}

.open-btn {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
}

.open-btn:hover {
    background-color: #0056b3;
}


.item5 h2 {
    text-align: center;
    font-size: 34px;
}

.item5 .w>p {
    font-family: sans-serif;
    font-size: 14px;
    text-align: center;
    width: 1000px;
    margin: 20px auto;
}

.item5card {
    width: 300px;
    border: 1px solid #ccc;
}

.item5card img {
    width: 100%;
    height: 400px;
}

.item5card h5 {
    font-size: 18px;
}

.item5card div {
    padding: 10px;
}

.item5card p {
    font-family: sans-serif;
    font-size: 14px;
    margin: 10px 0;
    line-height: 21px;
    height: 105px;
    overflow: hidden;
}

.item5card a {
    color: #000;
    text-decoration: underline;
}

.item6 {
    font-size: 26px;
}

.item6 h2 {
    margin-bottom: 100px;
}

.item6Text p {
    font-family: "Gelasio";
}

.item6 .item1Btn {
    display: block;
}

.item6 h5 {
    font-size: 34px;
}

.music {
    position: fixed;
    right: 10px;
    top: 10px;
    transition: .3s ease;
}

.music img {
    width: 30px;
}


.music.active {
    animation: r 10s linear infinite;
}

@keyframes r {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }

}