* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img {
    width: 100%;
    height: 100%;
}

#app {
    width: 100%;
    height: 100%;
    background: #FFF9EC;
}

a {
    text-decoration: none;
    color: inherit;
}



.nav_bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 0 150px;
    z-index: 9;
}

.nav_bar_logo {
    width: 104px;
    height: 120px;
}

.nav_bar_menu {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}

.nav_bar_menu_item {
    font-weight: 500;
    font-size: 28px;
    color: #999;
    cursor: pointer;
}

.nav_bar_menu_item.active {
    color: #FF7F27;
}

.nav_bar_menu_item:hover {
    color: #FF7F27;
}

.nav_bar_menu_item>img {
    width: 32px;
    height: 25px;
    cursor: pointer;
}

.my_header {
    position: relative;
    width: 100%;
    height: 100vh;
}

.my_header_video {
    width: 100%;
    height: 100%;
}

.my_header_video video {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.my_header_pop {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.my_header_pop_title {
    width: 1140px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, Arial;
    text-align: center;
    font-weight: 900;
    font-size: 120px;
    color: #FEDFC8;
    font-weight: 900;
    line-height: 150px;
}

.my_header_pop_title::after {
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    position: absolute;
    top: 0;
    left: 0;
}

.my_header_pop_btn {
    width: 240px;
    height: 60px;
    font-family: PingFang SC, PingFang SC;
    background: #FF7F27;
    border-radius: 10px;
    font-weight: 800;
    font-size: 24px;
    color: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 100px;
    right: 50%;
    transform: translateX(50%);
    cursor: pointer;
}

.scroll-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 22px 30px;
    background: #0F0C05;
}

.scroll-content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 30px;
    animation: scroll 20s linear infinite;
    white-space: nowrap;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.scroll-item {
    flex-shrink: 0;
    font-family: 'Bowlby One', display;
    font-weight: 900;
    font-size: 40px;
    color: #F9D5B8;
    line-height: 1;
    letter-spacing: 1;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* 鼠标悬停时暂停动画 */
.scroll-content:hover {
    animation-play-state: paused;
}

.menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;
    width: 100%;
    margin-top: 100px;
}

.menu_title {
    font-family: Peace Sans, Peace Sans;
    font-weight: 400;
    font-size: 70px;
    color: #102223;
}

.menu_nav {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #F7BBBB;
    border-radius: 20px;
    overflow: hidden;
}

.menu_nav_item {
    font-family: 'Bowlby One', display;
    font-weight: bold;
    font-size: 26px;
    color: #000000;
    cursor: pointer;
    padding: 33px 55px;
    text-align: center;
    letter-spacing: 1.2;
    text-transform: uppercase;
}

.menu_nav_item.active {
    background: #C62E3D;
    color: #FFFFFF;
}

.menu_product {
    width: 1360px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 100px 200px;
}

.menu_product_empty {
    margin: 0 auto;
}

.menu_product_item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 320px;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    border: 1px solid #C62E3D;
}

.menu_product_item_img {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1 / 1;
}

.menu_product_item_img>img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.menu_product_item_icon {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

.menu_product_item_title {
    font-family: Arial, Arial;
    font-weight: bold;
    font-size: 28px;
    color: #060606;
}

.menu_btn {
    width: 340px;
    height: 57px;
    background: #FF7F27;
    border-radius: 29px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, Arial;
    font-weight: bold;
    font-size: 24px;
    color: #FFFFFF;
    margin-top: 90px;
    cursor: pointer;
}

.swiper-wrapper {
    position: relative !important;
}

.menu_swiper {
    width: 100%;
    margin-top: 120px;
    padding: 0 180px;
    overflow: hidden;
}

.swiper-container {
    width: 100%;
}

.menu_swiper_cont .swiper-slide {
    width: 235px !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    cursor: pointer;
}

.menu_swiper_cont .slide-img {
    width: 235px;
    height: 495px;
    object-fit: cover;
    border-radius: 4px;
}

.menu_swiper_cont .slide-title {
    font-family: Arial, Arial;
    font-weight: bold;
    font-size: 22px;
    color: #060606;
    text-align: center;
}

.swiper-button-prev,
.swiper-button-next {
    background: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    /* 你可以根据需要调整大小和位置 */
}

.swiper-button-prev::after,
.swiper-button-next::after {
    display: none;
    /* 隐藏默认箭头 */
}

.menu_swiper_cont .swiper-button-prev>img,
.menu_swiper_cont .swiper-button-next>img {
    width: 26px;
    height: 53px;
    cursor: pointer;
}

.company {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 100px 0 120px 0;
    background: #0F0C05;
    margin-top: 120px;
}

.company_title {
    font-weight: 400;
    font-size: 60px;
    color: #FEFEFC;
    text-align: center;
    padding: 0 180px;
    font-family: Peace Sans, Peace Sans;
}

.company_content {
    font-weight: 400;
    font-size: 46px;
    color: #FEFEFC;
    line-height: 70px;
    text-align: center;
    padding: 0 180px;
    margin-top: 70px;
    font-family: Arial, Arial;
}

.company_swiper {
    width: 100%;
    overflow: hidden;
    margin-top: 120px;
}

.company_swiper_cont {
    width: 100%;
}

.company_swiper_cont .swiper-slide {
    width: 625px !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.company_swiper_cont .slide-img {
    width: 625px;
    height: 400px;
    background: #FFFFFF;
    border-radius: 20px;
    object-fit: cover;
}

.company_swiper_cont .slide-title {
    font-family: Arial, Arial;
    font-weight: bold;
    font-size: 34px;
    color: #FDFCFB;
}

.upload {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 120px 0 210px 0;
    background: url(../static/bg.png) no-repeat;
    background-size: 100% 100%;
}

.upload_title {
    text-align: center;
    font-family: Peace Sans, Peace Sans;
    font-weight: 700;
    font-size: 60px;
    color: #FFFFFF;
    padding: 0 180px;
}

.upload_content {
    font-weight: 400;
    font-size: 46px;
    color: #FEFEFC;
    font-family: Arial, Arial;
    line-height: 70px;
    text-align: center;
    padding: 0 180px;
    margin-top: 70px;
}

.upload_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 170px;
    margin-top: 120px;
}

.upload_btn>div {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 453px;
    height: 100px;
    background: #FF7F27;
    border-radius: 10px;
    font-weight: bold;
    font-size: 26px;
    color: #FBF6F4;
    cursor: pointer;
}

.upload_btn>div:nth-child(2) {
    background: #FEFEFC;
    color: #0F0C05;
}

.gift {
    margin-top: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.gift_title {
    font-family: Peace Sans, Peace Sans;
    font-weight: 400;
    font-size: 60px;
    color: #102223;
    text-align: center;

}

.gift_list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 100px;
}

.gift_list_item {
    width: 500px;
    background: #202424;
    border-radius: 20px;
    overflow: hidden;
}

.gift_list_item>img {
    width: 500px;
    height: 350px;
}

.gift_list_item_text {
    height: 420px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 35px;
}

.gift_list_item_text>div:nth-child(1) {
    font-family: Arial, Arial;
    font-weight: normal;
    font-size: 32px;
    color: #F0F0F0;
    text-align: center;
}

.gift_list_item_text>div:nth-child(2) {
    flex: 1;
    font-family: Arial, Arial;
    font-weight: normal;
    font-size: 26px;
    color: #F0F0F0;
    line-height: 36px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 8;
    overflow: hidden;
    text-overflow: ellipsis;
    /* 可选：防止换行符影响效果 */
    white-space: normal;
    word-break: break-all;
}

.gift_pro_list {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 57px;
    margin-top: 100px;
}

.gift_pro_list_item {
    width: 1559px;
    display: flex;
    gap: 40px;
    background: #FFFFFF;
    border-radius: 20px;
    padding: 60px 50px;
}

.gift_pro_list_item>img {
    width: 420px;
    height: 320px;
    border-radius: 10px !important;
}

.gift_pro_list_item_content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.gift_pro_list_item_content>div {
    width: 100%;
}

.gift_pro_list_item_content>div:nth-child(1) {
    font-family: Peace Sans, Peace Sans;
    font-weight: 400;
    font-size: 34px;
    color: #102223;
}

.gift_pro_list_item_content>div:nth-child(2) {
    font-family: Arial, Arial;
    font-weight: 400;
    font-size: 26px;
    color: #666666;
    line-height: 46px;
}

.gift_pro_list_item_content>div:nth-child(3) {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 204px;
    height: 47px;
    background: #FF7F27;
    border-radius: 52px;
    font-family: Arial, Arial;
    font-weight: bold;
    font-size: 24px;
    color: #FBF6F4;
    cursor: pointer;
}

.sgin {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 120px;
}

.sgin .gift_pro_list_item {
    background: #FFE1CC;
    border-radius: 20px;
    padding: 100px 60px;
    justify-content: center;
    align-items: center;
}

.sgin .gift_pro_list_item>img {
    width: 551px;
    height: 551px;
    border-radius: 0px 0px 0px 0px;
}

.sgin .gift_pro_list_item .gift_pro_list_item_content>div:nth-child(1) {
    font-family: Peace Sans, Peace Sans;
    font-weight: 400;
    font-size: 60px;
    color: #102223;
}

.sgin .gift_pro_list_item .gift_pro_list_item_content>div:nth-child(2) {
    font-family: Arial, Arial;
    font-weight: 400;
    font-size: 32px;
    color: #102223;
    line-height: 50px;
}

.sgin .gift_pro_list_item .gift_pro_list_item_content>div:nth-child(3) {
    width: 204px;
    height: 47px;
    background: #FF7F27;
    border-radius: 52px;
    font-family: Arial, Arial;
    font-weight: bold;
    font-size: 24px;
    color: #FBF6F4;
}

.my_footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 100px;
    padding: 134px 180px 60px 180px;
    background: #0F0C05;
    margin-top: 120px;
}

.my_footer_item {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    font-family: PingFang SC, PingFang SC;
    font-weight: 400;
    font-size: 14px;
    color: #FFFFFF;
}

.my_footer_item_img {
    width: 98px;
    height: 98px;
}

.my_footer_item a:hover {
    color: #FF7F27;
}


.my_footer_item_left {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}

.my_footer_item_left>div {
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
}

.my_footer_item_left>div:nth-child(1) {
    font-family: PingFang SC, PingFang SC;
    font-weight: 400;
    font-size: 30px;
    color: #FFFFFF;
    line-height: 40px;
    text-align: center;
}

.my_footer_item_left>div:nth-child(2) i {
    font-size: 30px;
    color: #FF7F27;
}

.my_footer_item_left>div:nth-child(3) {

    font-family: PingFang SC, PingFang SC;
    font-weight: 400;
    font-size: 24px;
    color: #FFFFFF;
    line-height: 50px;
    text-align: center;
}

.my_footer_item_line {
    width: 1px;
    height: 197px;
    background-color: rgba(255, 255, 255, 0.15);
}

.my_footer_item_right {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 60px;
}

.my_footer_item_right_item_title {
    font-family: PingFang SC, PingFang SC;
    font-weight: 400;
    font-size: 26px;
    color: #F9D5B8;
    line-height: 28px;
}

.my_footer_item_right_item_list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.my_footer_item_right_item_list>div {
    display: flex;
    gap: 28px;
    font-family: Arial, Arial;
    font-weight: 400;
    font-size: 22px;
    color: #FFFFFF;
}

.my_footer_item_right_item_list>div>img {
    width: 22px;
    height: 22px;
    cursor: pointer;
}



/* 移动端菜单 */
.model_menu_nav {
    padding: 0 15px;
    display: none;
}



.model_menu_nav_swiper.swiper-container {
    width: 100%;
    height: 70px;
    background: #F7BBBB;
    border-radius: 42px;
    overflow: hidden;
    position: relative;
}

.model_menu_nav_swiper .swiper-slide {
    width: 100% !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

.model_menu_nav_swiper .swiper-slide.active {
    background: #C62E3D;
}

.model_menu_nav_swiper .swiper-slide.active .slide-title {
    font-family: Arial, Arial;
    font-weight: bold;
    font-size: 30px;
    color: #FFFFFF;
}

.model_menu_nav_swiper .swiper-button-prev>img,
.model_menu_nav_swiper .swiper-button-next>img {
    width: 10px;
    height: 19px;
}

.el-image-viewer__img {
    object-fit: contain !important;
}