/* 全局样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 自定义字体 */

body {
    font-family: 'Lato', sans-serif;
    color: #212529;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* 头部区域 ****************************************/
.header_wrapper,
.header_container {
    background-position: 50% 0;
    background-size: cover;
    position: relative;
    transition: background-color .3s, opacity .3s;
    width: 100%;
    z-index: 1001;
}

.header_container {
    background-color: #1e2844;
}

/* 头部顶部 */
.header_top {
    background-color: #1e2844;
    padding-top: 12px;
}

.header_top_container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0 20px;
}

.header_top_left ul {
    display: flex;
    gap: 20px;
}

.header_top_left ul li a {
    color: #d4af37;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.header_top_left ul li a:hover {
    color: #fff;
}

.header_top_left ul li a i {
    font-size: 10px;
}

.header_top_left {
    margin-right: 60px;
}

.header_top_right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    padding-top: 10px;
}

.phone_number {
    color: #d4af37;
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 1px;
}

.social_icons {
    display: flex;
    gap: 8px;
    align-items: center;
}

.social_icons li a {
    width: 25px;
    height: 25px;
    background-color: #d4af37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e2844;
    font-size: 14px;
    transition: all 0.3s;
}

.social_icons li a:hover {
    background-color: #fff;
    transform: translateY(-2px);
}

/* 头部主体 */
.header_main {
    background-color: #1e2844;
}

.header_main_container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 0 20px;
}

/* Logo样式 */
.header_main_container_logo {
    display: flex;
    align-items: center;
    margin-top: -20px;
}

.header_main_container_logo a {
    display: block;
    line-height: 0;
}

.header_main_container_logo img {
    height: 80px;
    width: auto;
    object-fit: contain;
    transition: opacity 0.3s;
}

.header_main_container_logo img:hover {
    opacity: 0.8;
}

/* 搜索区域容器 */
.search_area {
    display: flex;
    align-items: center;
    flex: 1;
    max-width: 550px;
    gap: 10px;
}

/* 搜索框 */
.search_box {
    flex: 1;
    max-width: 450px;
    position: relative;
}

.search_box input {
    width: 100%;
    padding: 12px 60px 12px 20px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    text-align: center;
    background-color: #fff;
}

.search_box button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    background-color: transparent;
    color: #000;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.search_box button:hover {
    background-color: #d4af37;
}

/* 行动按钮 */
.action_buttons {
    display: flex;
    gap: 10px;
}

.btn {
    padding: 10px 30px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.btn_red {
    background-color: #a51f39;
    color: #fff;
    border-color: #fff;
}

.btn_teal {
    background-color: #00ada8;
    color: #fff;
    border-color: #fff;
}


/* 汉堡菜单按钮 */
.mobile_menu_toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10000;
    position: relative;
}

.mobile_menu_toggle span {
    width: 100%;
    height: 3px;
    background-color: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}



/* 头部底部导航 */
.header_bottom {
    background-color: #1e2844;
    padding: 15px 0;
}

.header_bottom_container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.header_bottom_container ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.header_bottom_container ul li a {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 0;
    transition: color 0.3s;
    display: inline-block;
}

.header_bottom_container ul li a:hover {
    color: #d4af37;
}

.header_bottom_container ul li a i {
    font-size: 10px;
    margin-left: 5px;
}

/* 二级菜单样式 */
.header_bottom_container ul li {
    position: relative;
}

.header_bottom_container ul li.has_submenu {
    position: relative;
}

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    min-width: 240px;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 15px;
    border: 1px solid #e5e5e5;
}

.has_submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu li {
    padding: 0;
}

.submenu li a {
    color: #999 !important;
    font-size: 17px !important;
    font-weight: 400 !important;
    padding: 15px 35px !important;
    display: block !important;
    transition: color 0.2s ease;
}

.submenu li a:hover {
    color: #666 !important;
}

@media (max-width: 1024px) {
    .header_bottom_container ul {
        gap: 8px;
    }
}

@media (max-width: 820px) {

    /* 头部顶部 - 保持导航栏显示 */
    .header_top {
        padding-top: 22px;
        padding-bottom: 22px;
    }

    .header_top_container {
        flex-direction: row;
        justify-content: center;
        padding: 0 15px;
    }

    .header_top_left {
        margin-right: 0;
    }

    .header_top_left ul {
        display: flex;
        gap: 12px;
        font-size: 13px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .header_top_left ul li a {
        font-size: 13px;
        font-weight: 600;
        white-space: nowrap;
    }

    .header_top_left ul li a i {
        font-size: 9px;
    }

    /* 隐藏右侧电话和社交图标 */
    .header_top_right {
        display: none;
    }

    /* 头部主体 - 汉堡菜单 + Logo */

    .header_main_container {
        padding: 20px 20px;
        gap: 15px;
        position: relative;
        flex-wrap: wrap;
    }

    /* 显示汉堡菜单 */
    .mobile_menu_toggle {
        display: flex;
    }

    /* Logo居中 */
    .header_main_container_logo {
        flex: 1;
        display: flex;
        justify-content: center;
        margin-top: 0;
    }

    .header_main_container_logo img {
        height: 90px;
    }

    /* 隐藏搜索区域 */
    .search_area {
        display: none;
    }

    /* 行动按钮 - 只显示青色按钮 */
    .action_buttons {
        width: 100%;
        display: flex;
        justify-content: center;
        gap: 0;
        margin-top: 15px;
    }

    .btn_red {
        display: none;
    }

    .btn_teal {
        padding: 14px 50px;
        font-size: 18px;
        text-transform: uppercase;
        font-weight: 700;
        letter-spacing: 0.8px;
        border-color: transparent;
    }

    /* 隐藏底部导航栏 */
    .header_bottom {
        display: none;
    }
}

@media (max-width: 768px) {

    /* 隐藏右侧电话和社交图标 */
    .header_top_right {
        display: none;
    }

    /* 头部主体 */
    .header_main_container {
        padding: 20px 20px;
        gap: 15px;
        position: relative;
        flex-wrap: wrap;
        padding-bottom: 1px;
    }

    /* 显示汉堡菜单 */
    .mobile_menu_toggle {
        display: flex;
    }

    /* Logo居中 */
    .header_main_container_logo {
        flex: 1;
        display: flex;
        justify-content: center;
        margin-top: 0;
    }

    .header_main_container_logo img {
        height: 80px;
    }

    /* 隐藏搜索区域 */
    .search_area {
        display: none;
    }

    /* 行动按钮 - 只显示青色按钮 */
    .action_buttons {
        width: 100%;
        display: flex;
        justify-content: center;
        gap: 0;
        margin-top: 15px;
    }

    .btn_red {
        display: none;
    }

    .btn_teal {
        padding: 14px 30px;
        font-size: 18px;
        text-transform: uppercase;
        font-weight: 700;
        letter-spacing: 0.8px;
        border-color: transparent;
    }

    /* 隐藏底部导航栏 */
    .header_bottom {
        display: none;
    }
}

@media (max-width: 480px) {

    .header_top {
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .header_top_container {
        flex-direction: column;
        gap: 8px;
        align-items: center;
        justify-content: center;
        padding: 0 15px;
    }

    .header_top_left {
        margin-right: 0;
        width: 100%;
    }

    .header_top_left ul {
        display: grid;
        grid-template-columns: auto auto;
        gap: 30px 20px;
        font-size: 14px;
        justify-content: center;
        width: 100%;
        margin: 0 auto;
    }

    .header_top_left ul li {
        text-align: center;
    }

    .header_top_left ul li a {
        font-size: 16px;
        font-weight: 600;
        display: inline-block;
        white-space: nowrap;
    }

    .header_top_left ul li a i {
        font-size: 9px;
    }
}

@media (max-width: 375px) {
    .header_top_left ul {
        gap: 6px 20px;
        font-size: 12px;
    }

    .header_top_left ul li a {
        font-size: 12px;
    }

    .header_top {
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .header_top_left ul li a i {
        font-size: 8px;
    }

    .header_main_container_logo img {
        height: 70px;
    }

    .btn_teal {
        padding: 12px 40px;
        font-size: 16px;
    }

    .mobile_menu_toggle {
        width: 26px;
        height: 20px;
    }

    .mobile_menu_toggle span {
        height: 2.5px;
    }
}

/* 移动端导航菜单样式 ****************************************/
.mobile_nav_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9998;
}

.mobile_nav_overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile_nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    max-width: 300px;
    height: 100vh;
    background-color: #f5f5f5;
    z-index: 9999;
    transition: left 0.3s ease;
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

.mobile_nav.active {
    left: 0;
}

.mobile_nav_content {
    padding: 15px;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    box-sizing: border-box;
    max-width: 100%;
}

/* 防止body滚动 */
body.menu-open {
    overflow: hidden;
}

/* 汉堡菜单激活状态 - 变成X形状 */
.mobile_menu_toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background-color: #fff;
}

.mobile_menu_toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile_menu_toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
    background-color: #fff;
}

/* 移动端搜索区域 */
.mobile_search_area {
    display: flex;
    align-items: stretch;
    gap: 8px;
    margin-bottom: 20px;
    padding: 5px 0;
}

.mobile_search_box {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    min-width: 0;
}

.mobile_search_box input {
    width: 100%;
    padding: 10px 38px 10px 15px;
    border: 1px solid #ccc;
    border-radius: 20px;
    font-size: 17px;
    background-color: #fff;
    outline: none;
    text-align: center;
    height: 38px;
    box-sizing: border-box;
}

.mobile_search_box input::placeholder {
    color: #999;
}

.mobile_search_box button {
    position: absolute;
    right: 3px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 50%;
    background-color: transparent;
    color: #333;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.mobile_search_box button:hover {
    background-color: #e0e0e0;
}

/* 移动端导航菜单列表 */
.mobile_nav_menu {
    flex: 1;
    overflow-y: auto;
    margin: 0;
    padding: 0;
}

.mobile_nav_item {
    border-bottom: 1px solid #d5d5d5;
}

.mobile_nav_item:first-child {
    border-top: 1px solid #d5d5d5;
}

/* 移动端导航菜单头部 */
.mobile_nav_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 8px;
}

.mobile_nav_header a {
    flex: 1;
    color: #333;
    font-size: 15px;
    font-weight: 400;
    transition: color 0.3s;
}

/* 二级菜单切换按钮 */
.submenu_toggle {
    cursor: pointer;
    padding: 5px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.submenu_toggle i {
    font-size: 20px;
    color: #888;
    transition: transform 0.3s;
}

/* 箭头旋转效果 */
.submenu_toggle i.rotate {
    transform: rotate(180deg);
}

/* 移动端二级菜单 */
.mobile_submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile_nav_item.active .mobile_submenu {
    max-height: 500px;
}

.mobile_submenu li {
    border-bottom: none;
}

.mobile_submenu li a {
    display: block;
    padding: 12px 20px;
    color: #555;
    font-size: 20px;
    transition: background-color 0.2s, color 0.2s;
}

.mobile_submenu li a:hover {
    background-color: #d5d5d5;
    color: #333;
}

/* 移动端社交媒体图标 */
.mobile_social_icons {
    display: flex;
    gap: 8px;
    margin: 10px auto;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.mobile_social_icons a {
    width: 38px;
    height: 38px;
    background-color: #d4af37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e2844;
    font-size: 15px;
    transition: all 0.3s;
    flex-shrink: 0;
}

.mobile_social_icons a:hover {
    background-color: #1e2844;
    color: #fff;
    transform: translateY(-2px);
}

/* 确保移动端导航只在小屏幕显示 */
@media (min-width: 821px) {

    .mobile_nav,
    .mobile_nav_overlay {
        display: none !important;
    }
}

@media (max-width: 375px) {
    .mobile_nav {
        max-width: 280px;
    }

    .mobile_nav_content {
        padding: 12px;
    }

    .mobile_search_area {
        gap: 6px;
    }

    .mobile_search_box input {
        font-size: 12px;
        height: 36px;
        padding: 8px 36px 8px 12px;
    }

    .mobile_search_box button {
        width: 30px;
        height: 30px;
    }

    .mobile_nav_header {
        padding: 13px 6px;
    }

    .mobile_nav_header a {
        font-size: 14px;
    }

    .submenu_toggle i {
        font-size: 18px;
    }

    .mobile_submenu li a {
        padding: 10px 18px;
        font-size: 13px;
    }

    .mobile_social_icons a {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}

/* 大图区域***********************************/

.hero_section {
    position: relative;
    width: 100%;
    background-color: #1e2844;
    overflow: hidden;
    min-height: 400px;
}

/* 菱格纹图片 */
.hero_pattern_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero_pattern_bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero_products_wrapper {
    position: relative;
    z-index: 2;
}

.hero_products_container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero_products_container img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .hero_products_wrapper {
        padding: 50px 0 0;
    }
}

@media (max-width: 820px) {
    .hero_section {
        min-height: 300px;
    }

    .hero_products_wrapper {
        padding: 40px 0 0;
    }

    .hero_products_container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero_section {
        min-height: 160px;
    }

    .hero_products_wrapper {
        padding: 30px 0 0;
    }

    .hero_products_container {
        padding: 0 10px;
    }
}

/* 大标题区域***********************************/
.big_tag_section {
    background-color: #fff;
    padding: 30px 20px;
    position: relative;
}

.big_tag_container {
    max-width: 1400px;
    margin: 0 auto;
}

.big_tag_content {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}


/* 文字内容区域 */
.big_tag_text {
    text-align: center;
    flex: 1;
    max-width: 900px;
}

/* 主标题 - 手写风格 */
.big_tag_title {
    font-family: 'HelloLucky', sans-serif;
    font-size: 67px;
    font-weight: 400;
    color: #1e2844;
    line-height: 1.3;
    margin-bottom: 20px;
    letter-spacing: 1px;
}




/* 副标题 - 红色 */
.big_tag_subtitle {
    font-family: 'Lato', sans-serif;
    font-size: 25px;
    font-weight: 700;
    color: #a51f39;
    line-height: 1.4;
    margin: 0;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .big_tag_content {
        gap: 30px;
    }


    .big_tag_title {
        font-size: 48px;
    }

    .big_tag_subtitle {
        font-size: 28px;
    }
}

@media (max-width: 820px) {
    .big_tag_section {
        padding: 50px 20px;
    }

    .big_tag_content {
        gap: 20px;
    }

    .big_tag_title {
        font-size: 38px;
    }

    .big_tag_subtitle {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .big_tag_section {
        padding: 40px 15px;
    }

    .big_tag_content {
        flex-direction: column;
        gap: 25px;
    }

    .big_tag_title {
        font-size: 60px;
        margin-bottom: 15px;
    }

    .big_tag_subtitle {
        font-size: 20px;
    }
}

@media (max-width: 375px) {
    .big_tag_section {
        padding: 30px 10px;
    }

    .big_tag_title {
        font-size: 24px;
    }

    .big_tag_subtitle {
        font-size: 16px;
    }
}

/* 5张卡片区域***********************************/
.card_section {
    padding: 40px 0;
}

.card_container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 前4张卡片容器 */
.card_wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

/* 单个卡片 */
.card_item {
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card_item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
   
    background-position: center;
    background-repeat: repeat-y;
    opacity: 1;
    z-index: 1;
}

.card_item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* 卡片内部结构 */
.card_inner {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    z-index: 2;
}

.card_content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* 卡片文字区域 */
.card_text_area {
    padding: 30px 20px 20px;
    min-height: 180px;
}

.card_text_area a {
    text-decoration: none;
    color: #fff;
    text-align: center;
    display: block;
    padding: 10px;
}

.card_title {
    font-family: 'HelloLucky', sans-serif;
    font-size: 40px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #fff;
}

.card_description {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #fff;
}

/* 卡片图片区域 */
.card_image_area {
    position: relative;
    flex: 1;
    overflow: hidden;
}

.card_image_area a {
    display: block;
    height: 100%;
}

.card_image_wrapper {
    position: relative;
    height: 100%;
    min-height: 200px;
}

.card_pattern_bg {
    display: none;
}

.card_product_img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 40px;
    z-index: 2;
}

/* 卡片按钮 */
.card_button {
    display: block;
    text-align: center;
    padding: 15px 50px;
    background-color: transparent;
    color: #fff;
    text-decoration: none;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    border: 2px solid #fff;
    border-radius: 50px;
    transition: all 0.3s ease;
    margin: 20px;
}

.card_button:hover {
    background-color: #fff;
}

/* 不同颜色卡片的按钮悬停效果 */
.card_teal .card_button:hover {
    color: #00ada8;
}

.card_yellow .card_button:hover {
    color: #d4c03e;
}

.card_orange .card_button:hover {
    color: #d77144;
}

.card_navy .card_button:hover {
    color: #1e2844;
}

/* 不同颜色的卡片 */
.card_teal {
    background-color: #00ada8;
}

.card_yellow {
    background-color: #d4c03e;
}

.card_orange {
    background-color: #d77144;
}

.card_navy {
    background-color: #1e2844;
}

/* 第5张卡片 - 底部横条 */
.card_bottom {
    position: relative;
    background-color: #a51f39;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    min-height: 280px;
}


.card_bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    background-position: center;
    background-repeat: repeat-y;
    opacity: 1;
    z-index: 1;
}


.card_bottom_inner {
    position: relative;
    z-index: 2;
    padding: 50px 60px 40px;
}

.card_bottom_content {
    display: flex;
    align-items: flex-start;
    gap: 50px;
    margin-bottom: 35px;
}

/* 底部卡片文字区域 */
.card_bottom_text {
    flex: 1;
    color: #fff;
    max-width: 750px;
}

.card_bottom_title {
    font-family: 'HelloLucky', sans-serif;
    font-size: 68px;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #fff;
    text-align: center;
}

.card_bottom_description {
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.7;
    padding: 0 120px;
    color: #fff;
    text-align: center;
}

/* 底部卡片图片区域 */
.card_bottom_image {
    flex-shrink: 0;
    width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card_bottom_image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* 底部卡片按钮 */
.card_bottom_button_wrapper {
    text-align: center;
}

.card_bottom_button {
    display: inline-block;
    padding: 15px 50px;
    background-color: transparent;
    color: #fff;
    text-decoration: none;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    border: 2px solid #fff;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.card_bottom_button:hover {
    background-color: #fff;
    color: #a51f39;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .card_title {
        font-size: 32px;
    }

    .card_text_area {
        min-height: 160px;
        padding: 25px 18px 18px;
    }

    .card_description {
        font-size: 14px;
    }

    .card_bottom_inner {
        padding: 40px 45px 35px;
    }

    .card_bottom_content {
        gap: 40px;
        margin-bottom: 30px;
    }

    .card_bottom_title {
        font-size: 55px;
        margin-bottom: 20px;
    }

    .card_bottom_description {
        font-size: 16px;
    }

    .card_bottom_image {
        width: 240px;
    }
}

@media (max-width: 820px) {
    .card_section {
        padding: 30px 0;
    }

    .card_container {
        padding: 0 15px;
    }

    .card_wrapper {
        gap: 12px;
        margin-bottom: 12px;
    }

    .card_title {
        font-size: 28px;
    }

    .card_text_area {
        min-height: 140px;
        padding: 20px 15px 15px;
    }

    .card_description {
        font-size: 13px;
    }

    .card_button {
        padding: 12px 40px;
        font-size: 14px;
        margin: 15px;
    }

    .card_bottom_inner {
        padding: 35px 30px 30px;
    }

    .card_bottom_content {
        flex-direction: row;
        gap: 30px;
        margin-bottom: 25px;
        align-items: center;
    }

    .card_bottom_text {
        max-width: 100%;
    }

    .card_bottom_title {
        font-size: 50px;
        text-align: center;
        margin-bottom: 18px;
    }

    .card_bottom_description {
        font-size: 16px;
        text-align: center;
    }

    .card_bottom_image {
        width: 220px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .card_section {
        padding: 20px 0;
    }

    .card_wrapper {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 15px;
    }

    .card_title {
        font-size: 50px;
    }

    .card_text_area {
        min-height: 120px;
        padding: 25px 20px 20px;
    }

    .card_description {
        font-size: 16px;
    }

    .card_button {
        padding: 15px 0px;
        font-size: 14px;
        margin: 15px auto;
        width: 200px;
    }

    .card_image_wrapper {
        min-height: 180px;
    }

    .card_bottom {
        min-height: auto;
    }

    .card_bottom_inner {
        padding: 40px 20px 30px;
        display: flex;
        flex-direction: column;
    }

    .card_bottom_content {
        flex-direction: column;
        gap: 0;
        margin-bottom: 0;
        align-items: center;
        display: contents;
    }

    .card_bottom_text {
        max-width: 100%;
        order: 1;
        width: 100%;
    }

    .card_bottom_title {
        font-size: 58px;
        margin-bottom: 25px;
        text-align: center;
        line-height: 1.1;
    }

    .card_bottom_description {
        font-size: 16px;
        line-height: 1.6;
        text-align: center;
        padding: 0 10px;
        margin-bottom: 30px;
    }

    .card_bottom_button_wrapper {
        order: 2;
        margin-bottom: 30px;
    }

    .card_bottom_button {
        padding: 14px 50px;
        font-size: 16px;
    }

    .card_bottom_image {
        width: 240px;
        order: 3;
        margin: 0 auto;
    }
}

@media (max-width: 375px) {
    .card_title {
        font-size: 28px;
    }

    .card_text_area {
        padding: 20px 15px 15px;
        min-height: 110px;
    }

    .card_description {
        font-size: 13px;
    }

    .card_button {
        padding: 10px 30px;
        font-size: 13px;
        margin: 12px;
    }

    .card_image_wrapper {
        min-height: 160px;
    }

    .card_bottom_inner {
        padding: 35px 18px 25px;
        display: flex;
        flex-direction: column;
    }

    .card_bottom_content {
        flex-direction: column;
        gap: 0;
        margin-bottom: 0;
        align-items: center;
        display: contents;
    }

    .card_bottom_text {
        max-width: 100%;
        order: 1;
        width: 100%;
    }

    .card_bottom_title {
        font-size: 48px;
        margin-bottom: 20px;
        text-align: center;
        line-height: 1.1;
    }

    .card_bottom_description {
        font-size: 15px;
        line-height: 1.6;
        text-align: center;
        padding: 0 8px;
        margin-bottom: 25px;
    }

    .card_bottom_button_wrapper {
        order: 2;
        margin-bottom: 25px;
    }

    .card_bottom_button {
        padding: 12px 40px;
        font-size: 15px;
    }

    .card_bottom_image {
        width: 200px;
        order: 3;
        margin: 0 auto;
    }
}

/* 文字+用户轮播区域***********************************/
.text_carousel_section {
    background-color: rgb(241, 241, 241);
    padding: 80px 20px;
}

.text_carousel_container {
    max-width: 1200px;
    margin: 0 auto;
}

.text_carousel_content {
    text-align: center;
}

/* 主标题样式 - 手写字体，带黄色竖线装饰 */
.text_carousel_main_title {
    font-family: 'hellolucky', cursive;
    font-size: 67px;
    color: #1c2947;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding: 0 50px;
}

.text_carousel_main_title::before {
    content: '';
    padding-right: 20px;
    border-left: 3px solid gold;
    box-sizing: border-box;
}

.text_carousel_main_title::after {
    content: '';
    padding-left: 20px;
    border-right: 3px solid gold;
    box-sizing: border-box;
}

/* 副标题样式 */
.text_carousel_subtitle {
    font-size: 25px;
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 35px;
    line-height: 1.3;
}

/* 描述段落样式 */
.text_carousel_description1 {
    font-size: 20px;
    font-weight: bold;
    color: #212529;
    max-width: 1100px;
    margin: 0 auto 25px;
    text-align: center;
}

.text_carousel_description2 {
    font-size: 20px;
    color: #212529;
    max-width: 1100px;
    margin: 0 auto 25px;
    text-align: center;
}

.text_carousel_link {
    color: #dc6026;
    text-decoration: none;
    font-weight: 600;
}

.text_carousel_link:hover {
    text-decoration: underline;
}

/* CTA标题样式 - 红色 */
.text_carousel_cta_title {
    font-size: 25px;
    color: #a51f39;
    font-weight: 600;
    margin: 35px 0 20px;
    line-height: 1.4;
}

/* 按钮容器 */
.text_carousel_buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

/* 按钮样式 */
.text_carousel_button {
    background-color: #a8203e;
    color: #ffffff;
    padding: 16px 23px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 19px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-block;
}

.text_carousel_button:hover {
    background-color: #8a1a32;
}

/* Vlog标题样式 */
.text_carousel_vlog_title {
    font-size: 25px;
    color: #1c2947;
    font-weight: 400;
    margin: 50px 0 35px;
    line-height: 1.4;
}

/* 轮播区域 */
.text_carousel_slider {
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.vlogs_swiper {
    padding: 20px 0;
    flex: 1;
}

/* 轮播卡片 */
.vlog_card {
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* 视频图片区域 */
.vlog_image {
    position: relative;
    overflow: hidden;
    background: #000;
}

.vlog_image a {
    display: block;
    position: relative;
}

.vlog_image img {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.3s ease;
}


/* 卡片内容区域 */
.vlog_content {
    padding: 30px 20px;
    text-align: center;
}

.vlog_title {
    margin-bottom: 20px;
}

.vlog_title a {
    font-size: 20px;
    font-weight: 600;
    color: #1c2947;
    text-decoration: none;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.vlog_title a:hover {
    color: #a51f39;
}

/* 分割线 */
.vlog_divider {
    width: 60px;
    height: 1px;
    background-color: #001a;
    margin: 0 auto 20px;
}

/* WATCH NOW 链接 */
.vlog_watch_link {
    display: inline-block;
    color: #a51f39;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.vlog_watch_link:hover {
    color: #8a1a32;
}

/* Swiper 导航按钮 */
.text_carousel_slider .swiper-button-prev,
.text_carousel_slider .swiper-button-next {
    position: static;
    width: 50px;
    height: 50px;
    background: #1c2947;
    border-radius: 50%;
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
    margin: 0;
    flex-shrink: 0;
    cursor: pointer;
}

.text_carousel_slider .swiper-button-prev:hover,
.text_carousel_slider .swiper-button-next:hover {
    background: #2c3e57;
    transform: scale(1.1);
}

.text_carousel_slider .swiper-button-prev::after,
.text_carousel_slider .swiper-button-next::after {
    font-size: 20px;
    color: #fff;
    font-weight: bold;
}

.text_carousel_slider .swiper-button-prev.swiper-button-disabled,
.text_carousel_slider .swiper-button-next.swiper-button-disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* VIEW ALL VLOGS 按钮 */
.text_carousel_view_more {
    display: inline-block;
    background-color: #a8203e;
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 19px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}


/* 响应式设计 */
@media (max-width: 820px) {
    .text_carousel_section {
        padding: 50px 0;
    }

    .text_carousel_content {
        padding: 0 15px;
    }

    /* 轮播区域占满屏幕宽度 */
    .text_carousel_slider {
        padding: 0;
        margin-left: 0;
        margin-right: 0;
    }

    .text_carousel_main_title {
        padding: 0 35px;
        font-size: 55px;
    }

    .text_carousel_subtitle {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .text_carousel_description1,
    .text_carousel_description2 {
        font-size: 16px;
        line-height: 1.7;
        margin-bottom: 20px;
    }

    .text_carousel_cta_title {
        font-size: 22px;
        margin: 35px 0 25px;
    }

    .text_carousel_buttons {
        align-items: center;
        gap: 15px;
    }

    .text_carousel_button {
        padding: 14px 40px;
        font-size: 15px;
    }

    .text_carousel_vlog_title {
        font-size: 20px;
        margin: 40px 0 25px;
    }

    .vlog_title a {
        font-size: 18px;
    }

    .vlog_content {
        padding: 25px 15px;
    }

    /* 820px以下隐藏导航按钮，卡片占满宽度 */
    .text_carousel_slider {
        gap: 0;
    }

    .text_carousel_slider .swiper-button-prev,
    .text_carousel_slider .swiper-button-next {
        display: none;
    }

    .vlogs_swiper {
        width: 100%;
        padding: 20px 0;
    }

    .text_carousel_view_more {
        padding: 14px 35px;
        font-size: 17px;
    }
}

@media (max-width: 480px) {
    .text_carousel_section {
        padding: 40px 0;
    }

    .text_carousel_content {
        padding: 0 15px;
    }

    /* 轮播区域占满屏幕宽度 */
    .text_carousel_slider {
        padding: 0;
        margin-left: 0;
        margin-right: 0;
    }

    .text_carousel_main_title {
        font-size: 66px;
        padding: 0 25px;
    }

    .text_carousel_subtitle {
        font-size: 20px;
    }

    .text_carousel_description1,
    .text_carousel_description2 {
        font-size: 15px;
    }

    .text_carousel_cta_title {
        font-size: 20px;
    }

    .text_carousel_buttons {
        flex-direction: column;
        gap: 12px;
    }

    .text_carousel_button {
        padding: 12px 35px;
        font-size: 14px;
    }

    .text_carousel_vlog_title {
        font-size: 20px;
        margin: 30px 0 20px;
    }

    .vlog_title a {
        font-size: 16px;
    }

    .vlog_content {
        padding: 20px 12px;
    }

    .vlog_divider {
        width: 50px;
        height: 2px;
        margin: 0 auto 15px;
    }

    .vlog_watch_link {
        font-size: 14px;
    }

    /* 480px以下继续隐藏导航按钮 */
    .text_carousel_slider {
        gap: 0;
    }

    .text_carousel_slider .swiper-button-prev,
    .text_carousel_slider .swiper-button-next {
        display: none;
    }

    .vlogs_swiper {
        width: 100%;
    }

    .text_carousel_view_more {
        padding: 12px 30px;
        font-size: 15px;
    }
}

/* 文字+品牌轮播区域***********************************/
.brand_carousel_section {
    background-color: #fff;
    padding: 80px 20px;
}

.brand_carousel_container {
    max-width: 1200px;
    margin: 0 auto;
}

.brand_carousel_content {
    text-align: center;
}

/* 主标题样式 - 手写字体，带黄色竖线装饰 */
.brand_carousel_main_title {
    font-family: 'hellolucky', cursive;
    font-size: 67px;
    color: #1c2947;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding: 0 50px;
}



/* 副标题样式 */
.brand_carousel_subtitle {
    font-size: 25px;
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 35px;
    line-height: 1.3;
}

/* 描述段落样式 */
.brand_carousel_description1 {
    font-size: 20px;
    color: #212529;
    max-width: 1100px;
    margin: 0 auto 0px;
    text-align: center;
    line-height: 1.6;
}

/* 客户标题样式 - 红色 */
.brand_carousel_clients_title {
    font-size: 25px;
    color: #a51f39;
    font-weight: 700;
    margin: 35px 0 40px;
    line-height: 1.4;
}

/* 轮播区域 */
.brand_carousel_slider {
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.brands_swiper {
    flex: 1;
    padding: 20px 0;
}

/* 品牌Logo容器 */
.brand_logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    min-height: 100px;
}

.brand_logo img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.brand_logo img:hover {
    opacity: 1;
}

/* 导航按钮样式 */
.brand_carousel_slider .swiper-button-prev,
.brand_carousel_slider .swiper-button-next {
    position: static;
    width: 50px;
    height: 50px;
    background: #1c2947;
    border-radius: 50%;
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
    margin: 0;
    flex-shrink: 0;
    cursor: pointer;
}

.brand_carousel_slider .swiper-button-prev:hover,
.brand_carousel_slider .swiper-button-next:hover {
    background: #2c3e57;
    transform: scale(1.1);
}

.brand_carousel_slider .swiper-button-prev::after,
.brand_carousel_slider .swiper-button-next::after {
    font-size: 20px;
    color: #fff;
    font-weight: bold;
}

.brand_carousel_slider .swiper-button-prev.swiper-button-disabled,
.brand_carousel_slider .swiper-button-next.swiper-button-disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* 按钮样式 */
.brand_carousel_button {
    background-color: #a8203e;
    color: #ffffff;
    padding: 16px 23px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 19px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-block;
    margin: 10px;
}

.brand_carousel_button:hover {
    background-color: #8a1a32;
}

/* 响应式设计 */
@media (max-width: 820px) {
    .brand_carousel_section {
        padding: 50px 15px;
    }

    .brand_carousel_main_title {
        padding: 0 35px;
        font-size: 55px;
    }

    .brand_carousel_subtitle {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .brand_carousel_description1 {
        font-size: 16px;
        line-height: 1.7;
        margin-bottom: 20px;
    }

    .brand_carousel_clients_title {
        font-size: 22px;
        margin: 35px 0 30px;
    }

    .brand_carousel_slider {
        gap: 15px;
    }

    .brand_carousel_slider .swiper-button-prev,
    .brand_carousel_slider .swiper-button-next {
        width: 45px;
        height: 45px;
    }

    .brand_carousel_slider .swiper-button-prev::after,
    .brand_carousel_slider .swiper-button-next::after {
        font-size: 18px;
    }

    .brand_logo {
        padding: 15px;
        min-height: 80px;
    }

    .brand_logo img {
        max-height: 60px;
    }

    .brand_carousel_button {
        padding: 14px 40px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .brand_carousel_section {
        padding: 40px 15px;
    }

    .brand_carousel_main_title {
        font-size: 66px;
        padding: 0 25px;
    }

    .brand_carousel_subtitle {
        font-size: 20px;
    }

    .brand_carousel_description1 {
        font-size: 15px;
    }

    .brand_carousel_clients_title {
        font-size: 20px;
    }

    .brand_carousel_slider {
        gap: 10px;
    }

    .brand_carousel_slider .swiper-button-prev,
    .brand_carousel_slider .swiper-button-next {
        width: 40px;
        height: 40px;
    }

    .brand_carousel_slider .swiper-button-prev::after,
    .brand_carousel_slider .swiper-button-next::after {
        font-size: 16px;
    }

    .brand_logo {
        padding: 10px;
        min-height: 70px;
    }

    .brand_logo img {
        max-height: 50px;
    }

    .brand_carousel_button {
        padding: 12px 35px;
        font-size: 14px;
        display: block;
        margin: 10px auto;
        max-width: 280px;
    }
}

/* 文字+分类轮播和热门品牌轮播区域***********************************/
.what_we_sell_section {
    background-color: #e8e8e8;
    padding: 50px 0;
}

.what_we_sell_wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

/* 文字区域 */
.what_we_sell_text {
    text-align: center;
    margin-bottom: 50px;
}

.text_content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.what_we_sell_title {
    font-family: 'HelloLucky', cursive;
    font-size: 80px;
    color: #2c3e50;
    margin: 0 0 30px 0;
    padding: 0 60px;
    position: relative;
    display: inline-block;
    line-height: 1.2;
}

.what_we_sell_title::before {
    content: '';
    padding-right: 20px;
    border-left: 3px solid gold;
    box-sizing: border-box;
}

.what_we_sell_title::after {
    content: '';
    padding-left: 20px;
    border-right: 3px solid gold;
    box-sizing: border-box;
}

/* 副标题 */
.what_we_sell_subtitle {
    font-size: 32px;
    color: #2c3e50;
    font-weight: 700;
    margin: 0 0 30px 0;
    line-height: 1.4;
}

/* 描述段落 */
.what_we_sell_description {
    font-size: 18px;
    color: #2c3e50;
    margin: 0 0 40px 0;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

/* 分类选择标题 */
.category_select_title {
    font-size: 24px;
    color: #c41e3a;
    font-weight: 600;
    margin: 40px 0 30px 0;
}

@media (max-width: 820px) {
    .what_we_sell_section {
        padding: 40px 0;
    }

    .what_we_sell_title {
        font-size: 66px;
        padding: 0 40px;
    }

    .what_we_sell_title::before,
    .what_we_sell_title::after {
        width: 3px;
    }

    .what_we_sell_subtitle {
        font-size: 24px;
    }

    .what_we_sell_description {
        font-size: 16px;
        padding: 0 15px;
    }

    .category_select_title {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .what_we_sell_title {
        font-size: 66px;
        padding: 0 30px;
    }

    .what_we_sell_subtitle {
        font-size: 20px;
    }

    .what_we_sell_description {
        font-size: 18px;
    }

    .category_select_title {
        font-size: 18px;
    }
}

/* 分类轮播图区域 */
.category_carousel {
    margin: 40px 0 60px 0;
    padding: 0 20px;
}

.category_carousel_container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 60px;
}

/* 分类卡片 */
.category_card {
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.category_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.category_card_link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

/* 卡片图片 */
.category_card_image {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background-color: #f5f5f5;
}

.category_card_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category_card:hover .category_card_image img {
    transform: scale(1.05);
}

/* 卡片内容 */
.category_card_content {
    padding: 25px 20px;
    text-align: center;
}

.category_card_title {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 10px 0;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category_card_count {
    font-size: 14px;
    color: #dc6026;
    margin: 0;
    font-weight: 600;
}

/* Swiper导航按钮 */
.category_swiper_button_prev,
.category_swiper_button_next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 10;
}

.category_swiper_button_prev:hover,
.category_swiper_button_next:hover {
    background: #2c3e50;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.category_swiper_button_prev svg,
.category_swiper_button_next svg {
    width: 24px;
    height: 24px;
}

.category_swiper_button_prev {
    left: 0px;
}

.category_swiper_button_next {
    right: 0px;
}

.category_swiper_button_prev.swiper-button-disabled,
.category_swiper_button_next.swiper-button-disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

/* 热门品牌标题 */
.hot_brands_carousel_title_wrapper {
    text-align: center;
    margin: 60px 0 40px 0;
}

.hot_brands_carousel_title {
    font-size: 28px;
    color: #c41e3a;
    font-weight: 600;
    margin: 0;
}

/* 响应式设计 - 分类轮播 */
@media (max-width: 1200px) {
    .category_swiper_button_prev {
        left: 0px;
    }

    .category_swiper_button_next {
        right: 0px;
    }
}

/* 768px-1023px: 显示3张卡片 */
@media (max-width: 1023px) and (min-width: 768px) {
    .category_carousel {
        margin: 30px 0 40px 0;
        padding: 0 10px;
    }

    .category_carousel_container {
        padding: 20px 55px;
    }

    .category_swiper_button_prev,
    .category_swiper_button_next {
        width: 45px;
        height: 45px;
    }

    .category_swiper_button_prev svg,
    .category_swiper_button_next svg {
        width: 22px;
        height: 22px;
    }

    .category_swiper_button_prev {
        left: 0;
    }

    .category_swiper_button_next {
        right: 0;
    }

    .hot_brands_carousel_title {
        font-size: 24px;
        padding: 0 20px;
    }
}

/* 小于768px: 显示2张卡片 */
@media (max-width: 767px) {
    .category_carousel {
        padding: 0 5px;
    }

    .category_carousel_container {
        padding: 20px 40px;
    }

    .category_swiper_button_prev,
    .category_swiper_button_next {
        width: 40px;
        height: 40px;
    }

    .category_swiper_button_prev svg,
    .category_swiper_button_next svg {
        width: 20px;
        height: 20px;
    }

    .category_card_title {
        font-size: 14px;
    }

    .category_card_count {
        font-size: 13px;
    }

    .hot_brands_carousel_title {
        font-size: 20px;
    }
}

/* 热门品牌轮播图区域 */
.hot_brands_carousel {
    position: relative;
    margin: 0 auto 60px;
    max-width: 1400px;
    padding: 0 80px;
}

.hot_brands_carousel_container {
    overflow: hidden;
}

/* 品牌卡片样式 */
.brand_card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand_card_link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 0px;
}

.brand_card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

/* 导航按钮样式 */
.brands_swiper_button_prev,
.brands_swiper_button_next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.brands_swiper_button_prev:hover,
.brands_swiper_button_next:hover {
    background: #c41e3a;
    box-shadow: 0 4px 12px rgba(196, 30, 58, 0.3);
}

.brands_swiper_button_prev:hover svg,
.brands_swiper_button_next:hover svg {
    color: #fff;
}

.brands_swiper_button_prev svg,
.brands_swiper_button_next svg {
    width: 24px;
    height: 24px;
    color: #c41e3a;
    transition: color 0.3s ease;
}

.brands_swiper_button_prev {
    left: 10px;
}

.brands_swiper_button_next {
    right: 10px;
}

.brands_swiper_button_prev.swiper-button-disabled,
.brands_swiper_button_next.swiper-button-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* 灵感按钮样式 */
.inspiration_button_wrapper {
    text-align: center;
    margin: 40px 0 60px 0;
}

.inspiration_button {
    display: inline-block;
    background: #a51f39;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 18px 50px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(196, 30, 58, 0.2);
}

.inspiration_button:hover {
    background: #1c2947;
    box-shadow: 0 6px 16px rgba(196, 30, 58, 0.3);
}

/* 响应式设计 - 热门品牌轮播 */
@media (max-width: 1200px) {
    .hot_brands_carousel {
        padding: 0 70px;
    }

    .brands_swiper_button_prev {
        left: 5px;
    }

    .brands_swiper_button_next {
        right: 5px;
    }
}

/* 820px以下 */
@media (max-width: 820px) {
    .hot_brands_carousel {
        padding: 0 60px;
    }

    .brand_card {
        height: 150px;
    }

    .brands_swiper_button_prev,
    .brands_swiper_button_next {
        width: 45px;
        height: 45px;
    }

    .brands_swiper_button_prev svg,
    .brands_swiper_button_next svg {
        width: 22px;
        height: 22px;
    }
}

/* 768px以下 */
@media (max-width: 767px) {
    .hot_brands_carousel {
        padding: 0 50px;
    }

    .brand_card {
        height: 130px;
    }

    .inspiration_button {
        font-size: 14px;
        padding: 15px 40px;
    }
}

/* 480px以下 */
@media (max-width: 480px) {
    .hot_brands_carousel {
        padding: 0 45px;
    }

    .brand_card {
        height: 110px;
    }

    .brands_swiper_button_prev,
    .brands_swiper_button_next {
        width: 40px;
        height: 40px;
    }

    .brands_swiper_button_prev svg,
    .brands_swiper_button_next svg {
        width: 20px;
        height: 20px;
    }

    .brands_swiper_button_prev {
        left: 0;
    }

    .brands_swiper_button_next {
        right: 0;
    }

    .inspiration_button {
        font-size: 12px;
        padding: 12px 30px;
    }
}

/* 订阅表单区域***********************************/
.subscription_form_section {
    background-image: url('https://parkersbranded.co.uk/wp-content/uploads/2020/03/NewsletterBG.gif');
    background-repeat: repeat;
    background-size: contain;
    padding: 40px 80px;
    text-align: center;
}

.subscription_container {
    max-width: 1080px;
    margin: 0 auto;
}

.subscription_content {
    background-color: #1c2947;
    padding: 40px;
    border-radius: 0;
}

.subscription_title {
    font-family: 'hellolucky', cursive;
    font-size: 50px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: normal;
    letter-spacing: 1px;
}

.subscription_subtitle {
    font-size: 25px;
    color: #ffffff;
    margin-bottom: 50px;
    font-weight: 700;
    line-height: 1.4;
}

.subscription_form {
    max-width: 1200px;
    margin: 0 auto;
}

.form_inputs {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.form_input {
    flex: 1;
    min-width: 280px;
    padding: 20px 30px;
    font-size: 18px;
    border: none;
    border-radius: 50px;
    text-align: center;
    color: #999;
    outline: none;
    transition: all 0.3s ease;
}

.form_input::placeholder {
    color: #999;
    font-size: 18px;
}

.form_input:focus {
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.form_button_wrapper {
    text-align: center;
}

.submit_button {
    background-color: #dc6026;
    color: #ffffff;
    font-size: 20px;
    font-weight: bold;
    padding: 18px 25px;
    border: 1px solid #fff;
    border-radius: 50px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.submit_button:hover {
    background-color: #c26329;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

@media (max-width: 1024px) {
    .subscription_form_section {
        padding: 40px 0px;
    }

    .subscription_title {
        font-size: 50px;
    }

    .subscription_subtitle {
        font-size: 20px;
    }

    .form_input {
        min-width: 250px;
    }
}

@media (max-width: 768px) {
    .subscription_form_section {
        padding: 60px 0px;
    }

    .subscription_content {
        padding: 40px 20px 60px;
    }

    .subscription_subtitle {
        margin-bottom: 30px;
    }

    .form_inputs {
        flex-direction: column;
        gap: 15px;
    }

    .form_input {
        width: 100%;
        min-width: 100%;
        font-size: 16px;
        padding: 16px 25px;
    }

    .form_input::placeholder {
        font-size: 16px;
    }

    .submit_button {
        font-size: 18px;
        padding: 16px 50px;
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .subscription_form_section {
        padding: 30px 0px;
    }
}

/* 图标页脚区域***********************************/
.footer_section {
    padding: 60px 0;
    color: #212529;
}

.footer_container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer_content {
    width: 100%;
}

.footer_grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr ;
    gap: 60px;
    align-items: start;
}

/* 社交媒体图标列 */
.footer_social_column {
    display: flex;
    justify-content: flex-start;
}

.social_icons_vertical {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    max-width: 260px;
}

.social_icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1e3a5f;
    border: 2px solid #ffffff;
    border-radius: 5px;
    color: #ffffff;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social_icon svg {
    width: 20px;
    height: 20px;
}

.social_icon:hover {
    background-color: #ffffff;
    color: #1e3a5f;
    transform: translateY(-2px);
}

/* 页脚列 */
.footer_column {
    display: flex;
    flex-direction: column;
    padding-right: 60px;
}

.footer_title {
    font-size: 20px;
    font-weight: 700;
    color: #ff6b35;
    margin: 0 0 10px 0;
    letter-spacing: 0.5px;
}

.footer_divider {
    width: 30px;
    height: 3px;
    background-color: #cccccc;
    margin-bottom: 20px;
}

/* Contact Us 区域 */
.footer_contact_info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact_address {
    margin: 0;
    line-height: 1.5;
    font-size: 20px;
    color: #212529;
}

.contact_links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact_link {
    color: #ff6b35;
    text-decoration: none;
    font-size: 20px;
    transition: color 0.3s ease;
    display: block;
}

.contact_link:hover {
    color: #ff8c5a;
    text-decoration: underline;
}

/* Links 区域 */
.footer_links_group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer_subtitle {
    margin: 0 0 5px 0;
    font-weight: 600;
    color: #212529;
    font-size: 20px;
}

.footer_subtitle_margin {
    margin-top: 15px;
}

.footer_link_orange {
    color: #ff6b35;
    text-decoration: none;
    font-size: 20px;
    transition: color 0.3s ease;
    display: block;
    line-height: 1.6;
}

.footer_link_orange:hover {
    color: #ff8c5a;
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .footer_grid {
        grid-template-columns: auto 1fr 1fr 1fr;
        gap: 30px;
    }

    .footer_container {
        padding: 0 20px;
    }

    .footer_column {
        padding-right: 0;
    }
}

@media (max-width: 820px) {
    .footer_grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer_social_column {
        order: -1;
    }

    .social_icons_vertical {
        flex-direction: row;
        max-width: 100%;
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .footer_section {
        padding: 40px 0;
    }

    .social_icons_vertical {
        justify-content: center;
        gap: 12px;
    }

    .footer_column {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .footer_title {
        font-size: 16px;
    }

    .contact_address,
    .contact_link,
    .footer_subtitle,
    .footer_link_orange {
        font-size: 14px;
    }

    .social_icon {
        width: 40px;
        height: 40px;
    }

    .social_icon svg {
        width: 18px;
        height: 18px;
    }
}

/* 版权页脚区域***********************************/
.copyright_section {
    background-color: #223a5c;
    padding: 25px 0;
}

.copyright_container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.copyright_content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.copyright_text {
    color: #b8c4d4;
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
}

.copyright_text strong {
    font-weight: 600;
}

@media (max-width: 1024px) {
    .copyright_container {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .copyright_section {
        padding: 20px 0;
    }

    .copyright_container {
        padding: 0 20px;
    }

    .copyright_text {
        font-size: 13px;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .copyright_section {
        padding: 15px 0;
    }

    .copyright_text {
        font-size: 18px;
        line-height: 1.5;
        text-align: center;
    }
}

/* backpack.html======================== */

/* 品牌背包区域 */
.branded_backpack_section {
    padding: 60px 20px;
    background-color: #f9f9f9;
}

.branded_backpack_wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.branded_backpack_container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.branded_backpack_content {
    text-align: center;
    max-width: 900px;
    position: relative;
}

/* 标题样式 */
.branded_backpack_title {
    font-family: 'HelloLucky', cursive;
    font-size: 67px;
    position: relative;
    display: inline-block;
    padding: 20px 40px;
}

/* 标题边框装饰 */
.branded_backpack_title::before {
    content: '';
    padding-right: 20px;
    border-left: 3px solid gold;
    box-sizing: border-box;
}

.branded_backpack_title::after {
    content: '';
    padding-right: 20px;
    border-right: 3px solid gold;
    box-sizing: border-box;
}

/* 副标题样式 */

.branded_backpack_subtitle p {
    font-size: 20px;
    color: #333;
    font-weight: 400;
}

/* 描述文字样式 */
.branded_backpack_description {
    margin-top: 30px;
}

.branded_backpack_description p {
    font-size: 20px;
    line-height: 1.6;
    text-align: center;
}

@media (max-width: 768px) {
    .branded_backpack_section {
        padding: 40px 15px;
    }

    .branded_backpack_title {
        padding: 15px 30px;
    }

    .branded_backpack_subtitle p {
        font-size: 20px;
        display: none;
    }
}

@media (max-width: 480px) {
    .branded_backpack_title {
        padding: 10px 20px;
    }

    .branded_backpack_description p {
        text-align: left;
    }
}

/*backpack 图片列表区域***********************************/
.backpack_products_wrapper {
    max-width: 820px;
    margin: 0 auto;
}

.backpack_products_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 30px;
}

.product_card {
    display: flex;
    flex-direction: column;
}

.product_image {
    position: relative;
    margin-bottom: 15px;
}

.product_image a {
    display: block;
}

.product_image img {
    width: 100%;
    height: auto;
    display: block;
}

.product_info {
    display: flex;
    flex-direction: column;
}

.product_category {
    font-size: 13.5px;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

.product_title {
    margin: 0;
    font-size: 18px;
    line-height: 1.4;
}

.product_title a {
    color: #dc6026;
    text-decoration: none;
}

.product_title a:hover {
    color: #ff5722;
}

.price_label {
    font-size: 16px;
    color: #666666;
    font-style: italic;
}

.price_amount {
    font-size: 18px;
    color: #333333;
    font-weight: bold;
}

@media (max-width: 1024px) {
    .backpack_products_section {
        padding: 50px 20px;
    }

    .backpack_products_grid {
        gap: 30px 20px;
    }

    .product_title {
        font-size: 16px;
    }

    .price_amount {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .backpack_products_section {
        padding: 40px 15px;
    }

    .backpack_products_grid {
        gap: 25px 15px;
    }

    .product_category {
        font-size: 11px;
    }

    .product_title {
        font-size: 15px;
    }

    .price_label {
        font-size: 13px;
    }

    .price_amount {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .backpack_products_section {
        padding: 30px 15px;
    }

    .backpack_products_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}


/* A Branded背包区域***********************************/
.walking_advert_section {
    padding: 60px 20px;
    background-color: #fff;
}

.walking_advert_wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.walking_advert_container {
    max-width: 900px;
    margin: 0 auto;
}

.walking_advert_content {
    text-align: center;
}

.walking_advert_title {
    font-family: 'HelloLucky', cursive;
    font-size: 55px;
    line-height: 1.3;
    color: #1e2844;
    margin-bottom: 30px;
    font-weight: normal;
}

.walking_advert_intro {
    font-size: 20px;
    line-height: 1.6;
    color: #212529;
    margin-bottom: 50px;
    text-align: left;
}

.backpack_types {
    margin-top: 40px;
}

.backpack_type {
    margin-bottom: 35px;
    text-align: left;
}

.backpack_type h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1e2844;
    margin-bottom: 15px;
    text-align: center;
    line-height: 1.6;
}

.backpack_type p {
    font-size: 20px;
    line-height: 1.6;
    color: #212529;
}

.backpack_link {
    color: #e65525;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.backpack_link:hover {
    color: #c44319;
    text-decoration: underline;
}

/* Why Choose Branded Backpacks区域 */
.why_choose_content {
    margin-top: 60px;
    text-align: left;
}

.why_choose_title {
    font-family: 'HelloLucky', cursive;
    font-size: 55px;
    line-height: 1.3;
    color: #1e2844;
    margin-bottom: 40px;
    text-align: center;
    font-weight: normal;
}

.why_choose_item {
    margin-bottom: 35px;
}

.why_choose_item h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1e2844;
    margin-bottom: 15px;
    line-height: 1.6;
    text-align: center;
}

.why_choose_item p {
    font-size: 20px;
    line-height: 1.6;
    color: #212529;
}

.personalisation_list {
    margin-top: 15px;
    margin-left: 0;
    padding-left: 0;
}

.personalisation_list li {
    font-size: 20px;
    line-height: 1.8;
    color: #212529;
    margin-bottom: 8px;
    position: relative;
    padding-left: 0;
    list-style: disc;
    margin-left: 20px;
}

/* Find the Right Branded Backpack for You区域 */
.find_right_content {
    margin-top: 60px;
    text-align: left;
}

.find_right_title {
    font-family: 'HelloLucky', cursive;
    font-size: 55px;
    line-height: 1.6;
    color: #1e2844;
    margin-bottom: 30px;
    text-align: center;
    font-weight: normal;
}

.find_right_text {
    font-size: 20px;
    line-height: 1.6;
    color: #212529;
}

@media (max-width: 768px) {
    .walking_advert_section {
        padding: 40px 15px;
    }

    .walking_advert_title {
        margin-bottom: 20px;
    }

    .walking_advert_intro {
        margin-bottom: 30px;
    }

    .backpack_type h3 {
        font-size: 20px;
    }

    .why_choose_content {
        margin-top: 40px;
    }

    .why_choose_title {
        font-size: 32px;
        margin-bottom: 25px;
    }

    .why_choose_item h3 {
        font-size: 20px;
    }

    .why_choose_item p,
    .personalisation_list li {
        font-size: 16px;
    }

    .find_right_content {
        margin-top: 40px;
    }

    .find_right_title {
        margin-bottom: 20px;
    }

}



/* about.html======================== */

/* 魔方大图区域***********************************/

.magic_cube_section {
    position: relative;
    background-color: #1e2844;
    overflow: hidden;
}

.magic_cube_section_bg {
    height: 100%;
    margin: 0 !important;
    padding: 0 !important;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    overflow: hidden;
    opacity: 1;
}

.magic_cube_section_bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.magic_cube_container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 100px;
    position: relative;
    z-index: 1;
}

.magic_cube_content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 100px;
}

.magic_cube_image_wrapper {
    flex: 0 0 35%;
    max-width: 260px;
}

.magic_cube_image {
    position: relative;
}

.magic_cube_image img {
    width: 100%;
    height: auto;
    display: block;
}

.magic_cube_text_wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.magic_cube_text h2 {
    color: #ffffff;
    font-size: 67px;
    text-align: center;
    line-height: 1.6;
    font-family: 'HelloLucky', sans-serif;
    font-weight: normal;
    margin: 0;
    position: relative;
}

/* 添加装饰性的黄色竖线 */

.magic_cube_text h2::before {
    content: '';
    padding-right: 20px;
    border-left: 3px solid gold;
}

.magic_cube_text h2::after {
    content: '';
    padding-left: 20px;
    border-right: 3px solid gold;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .magic_cube_content {
        gap: 40px;
    }
}

@media (max-width: 820px) {
    .magic_cube_container {
        padding: 0 40px;
    }
}

@media (max-width: 768px) {
    .magic_cube_section {
        padding: 60px 0;
    }

    .magic_cube_content {
        gap: 40px;
    }

    .magic_cube_image_wrapper {
        max-width: 320px;
        width: 100%;
    }

    .magic_cube_text h2 {
        font-size: 67px;
        text-align: center;
    }

}

@media (max-width: 480px) {
    .magic_cube_section {
        padding: 40px 0;
    }

    .magic_cube_image_wrapper {
        max-width: 250px;
    }

    .magic_cube_content {
        flex-direction: column;
        gap: 40px;
    }

    .magic_cube_text h2 {
        font-size: 67px;
    }
}

/* 富兰克林马克杯区域***********************************/

.franklin_mug_section {
    background-color: #ffffff;
    padding-top: 40px;
}

.franklin_mug_container {
    max-width: 1200px;
    margin: 0 auto;
}

/* 标题区域 */
.franklin_mug_title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.franklin_mug_title h2 {
    font-size: 67px;
    font-family: 'HelloLucky', sans-serif;
    color: #1e2844;
    font-weight: normal;
    margin: 0;
    padding: 0 40px;
    position: relative;
    display: inline-block;
}

/* 标题两侧的黄色竖线 */

.franklin_mug_title h2::before {
    content: '';
    padding-right: 20px;
    border-left: 3px solid gold;
}

.franklin_mug_title h2::after {
    content: '';
    padding-left: 20px;
    border-right: 3px solid gold;
}

/* 内容区域 */
.franklin_mug_content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
}

/* 马克杯图片 */
.franklin_mug_image_wrapper {
    flex: 0 0 40%;
    max-width: 350px;
}

.franklin_mug_image img {
    width: 100%;
    height: auto;
    display: block;
}

/* 文字区域 */
.franklin_mug_text_wrapper {
    flex: 1;
    display: flex;
    align-items: center;
}

.franklin_mug_text {
    width: 100%;
}

/* 引用文字（红色） */
.franklin_quote {
    color: #a51f39;
    font-size: 25px;
    margin: 0 0 30px 0;
    text-align: center;
    font-weight: 700;
    padding: 0 15px;
}

/* 描述段落 */
.franklin_description {
    color: #333333;
    font-size: 20px;
    line-height: 1.6;
    margin: 0 0 30px 0;
    padding: 0 15px;
}

.franklin_description strong {
    font-weight: 700;
}

/* 橙色链接 */
.click_here_link {
    color: #f47920;
    text-decoration: none;
    font-weight: 700;
}

.click_here_link:hover {
    text-decoration: underline;
}

/* 最后的红色文字 */
.franklin_final_text {
    color: #a51f39;
    font-size: 25px;
    text-align: center;
    line-height: 1.6;
    margin: 0;
    padding: 0 15px;
    font-weight: 700;
}

@media (max-width: 1200px) {
    .franklin_mug_content {
        gap: 60px;
    }
}

@media (max-width: 1024px) {
    .franklin_mug_content {
        gap: 40px;
    }
}

@media (max-width: 820px) {
    .franklin_mug_image_wrapper {
        max-width: 250px;
    }

    .franklin_mug_text_wrapper {
        padding: 0 15px 30px;
    }
}

@media (max-width: 768px) {
    .franklin_mug_section {
        padding: 60px 0 80px;
    }

    .franklin_mug_title {
        margin-bottom: 40px;
    }

    .franklin_mug_title h2::before,
    .franklin_mug_title h2::after {
        height: 80px;
    }

    .franklin_mug_content {
        gap: 40px;
        align-items: flex-start;
    }


    .franklin_mug_image_wrapper {
        flex: 0 0 auto;
        max-width: 250px;
        width: 100%;
    }

    .franklin_quote {
        font-size: 24px;
        text-align: center;
    }

    .franklin_description {
        font-size: 16px;
    }

    .franklin_final_text {
        font-size: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .franklin_mug_section {
        padding: 40px 0 60px;
    }

    .franklin_mug_content {
        flex-direction: column;
    }

    .franklin_mug_title h2::before,
    .franklin_mug_title h2::after {
        height: 60px;
        width: 3px;
    }

    .franklin_mug_image_wrapper {
        max-width: 370px;
        margin: 0 auto;
    }

    .franklin_quote {
        font-size: 20px;
    }

    .franklin_description {
        font-size: 20px;
    }

    .franklin_final_text {
        font-size: 20px;
    }
}

/* boss图片区域***********************************/

.boss_section {
    background-color: rgb(241, 241, 241);
    ;
    padding: 80px 0;
}

.boss_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.boss_content {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

/* 文字区域 */
.boss_text_wrapper {
    flex: 1;
    max-width: 600px;
}

.boss_text {
    width: 100%;
    text-align: center;
}

/* 标题 */
.boss_title {
    font-size: 67px;
    font-family: 'HelloLucky', sans-serif;
    color: #1e2844;
    text-align: center;
    font-weight: normal;
    margin: 0 0 40px 0;
    position: relative;
    display: inline-block;
}

/* 标题两侧的黄色竖线 */
.boss_title::before {
    content: '';
    padding-right: 20px;
    border-left: 3px solid gold;
}

.boss_title::after {
    content: '';
    padding-left: 20px;
    border-right: 3px solid gold;
}

/* 段落 */
.boss_paragraph {
    color: #333333;
    font-size: 20px;
    line-height: 1.6;
    text-align: left;
    margin: 0 0 20px 0;
}

.boss_paragraph:last-child {
    margin-bottom: 0;
}

/* boss图片 */
.boss_image_wrapper {
    flex: 0 0 35%;
    max-width: 550px;
}

.boss_image {
    position: relative;
}

.boss_image img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 1200px) {
    .boss_content {
        gap: 60px;
    }
}

@media (max-width: 1024px) {
    .boss_container {
        padding: 0 10px;
    }

    .boss_content {
        gap: 0px;
    }

    .boss_text {
        padding-right: 70px;
    }
}

@media (max-width: 820px) {
    .boss_content {
        gap: 40px;
    }

    .boss_image_wrapper {
        flex: 0 0 38%;
        max-width: 550px;
    }

    .boss_text_wrapper {
        max-width: 400px;
    }

    .boss_text {
        padding-right: 10px;
    }
}

@media (max-width: 768px) {
    .boss_section {
        padding: 60px 0;
    }

    .boss_content {
        align-items: center;
        gap: 40px;
    }

    .boss_text_wrapper {
        max-width: 100%;
    }

    .boss_title {
        text-align: center;
        display: block;
        padding: 0;
    }

    .boss_image_wrapper {
        max-width: 450px;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .boss_section {
        padding: 40px 0;
    }

    .boss_content {
        flex-direction: column;
    }

    .boss_container {
        padding: 0 20px;
    }

    .boss_image_wrapper {
        max-width: 350px;
    }
}

/* Our Approach区域***********************************/

.our_approach_section {
    background-color: #ffffff;
    padding: 80px 20px;
}

.our_approach_container {
    max-width: 1100px;
    margin: 0 auto;
}

.our_approach_content {
    text-align: center;
}

.our_approach_text {
    width: 100%;
}

/* 标题样式 - 手写字体，带黄色竖线装饰 */
.our_approach_title {
    font-family: 'HelloLucky', sans-serif;
    font-size: 67px;
    color: #1e2844;
    text-align: center;
    font-weight: normal;
    margin: 0 0 40px 0;
    position: relative;
    display: inline-block;
    padding: 0 40px;
}


/* 段落样式 */
.our_approach_paragraph {
    color: #212529;
    font-size: 20px;
    line-height: 1.6;
    margin: 0 0 25px 0;
    text-align: left;
}

.our_approach_paragraph:last-child {
    margin-bottom: 0;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .our_approach_section {
        padding: 60px 20px;
    }

}

@media (max-width: 820px) {
    .our_approach_section {
        padding: 60px 15px;
    }

    .our_approach_title {
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    .our_approach_section {
        padding: 50px 15px;
    }
}

@media (max-width: 480px) {
    .our_approach_section {
        padding: 40px 15px;
    }

    .our_approach_title {
        padding: 0 20px;
    }

    .our_approach_paragraph {
        margin-bottom: 20px;
    }
}

/* Whatever it Takes图片区域***********************************/

.whatever_section {
    background-color: rgb(241, 241, 241);
    ;
    padding: 30px 0;
}

.whatever_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.whatever_content {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 80px;
}

/* 产品图片 */
.whatever_image_wrapper {
    flex: 0 0 40%;
    max-width: 500px;
}

.whatever_image {
    position: relative;
}

.whatever_image img {
    width: 90%;
    height: auto;
    display: block;
}

/* 文字区域 */
.whatever_text_wrapper {
    flex: 1;
    max-width: 600px;
}

.whatever_text {
    width: 100%;
    text-align: center;
}

/* 标题 */
.whatever_title {
    font-size: 67px;
    font-family: 'HelloLucky', sans-serif;
    color: #1e2844;
    font-weight: normal;
    margin: 0 0 40px 0;
    position: relative;
    display: inline-block;
    text-align: center;
}

/* 标题两侧的黄色竖线 */
.whatever_title::before {
    content: '';
    padding-right: 20px;
    border-left: 3px solid gold;
}

.whatever_title::after {
    content: '';
    padding-left: 20px;
    border-right: 3px solid gold;
}

/* 段落 */
.whatever_paragraph {
    color: #212529;
    font-size: 20px;
    line-height: 1.6;
    margin: 0 0 20px 0;
    text-align: left;
}

.whatever_paragraph:last-child {
    margin-bottom: 0;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .whatever_content {
        gap: 60px;
    }
}

@media (max-width: 1024px) {
    .whatever_container {
        padding: 0 10px;
    }

    .whatever_content {
        gap: 0px;
    }

    .whatever_text {
        padding: 30px;
    }
}

@media (max-width: 820px) {
    .whatever_content {
        gap: 10px;
    }

    .whatever_image_wrapper {
        flex: 0 0 38%;
        max-width: 450px;
    }

    .whatever_text_wrapper {
        max-width: 400px;
    }

    .whatever_text {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .whatever_section {
        padding: 60px 0;
    }

    .whatever_content {
        align-items: center;
        gap: 40px;
    }

    .whatever_text_wrapper {
        max-width: 100%;
    }

    .whatever_title {
        text-align: center;
        display: block;
        padding: 0;
    }

    .whatever_image_wrapper {
        max-width: 450px;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .whatever_section {
        padding: 40px 0;
    }

    .whatever_content {
        flex-direction: column;
    }

    .whatever_container {
        padding: 0 20px;
    }

    .whatever_text {
        padding: 10px;
    }

    .whatever_image_wrapper {
        max-width: 350px;
    }
}

/* Dig little deeper 区域***********************************/

.dig_deeper_section {
    background-color: #ffffff;
    padding: 50px 20px;
}

.dig_deeper_container {
    max-width: 1200px;
    margin: 0 auto;
}

.dig_deeper_content {
    width: 100%;
}

.dig_deeper_inner {
    width: 100%;
}

.dig_deeper_wrapper {
    text-align: center;
}

/* 标题样式 - 手写字体，带黄色竖线装饰 */
.dig_deeper_title {
    font-family: 'HelloLucky', sans-serif;
    font-size: 67px;
    color: #1e2844;
    text-align: center;
    font-weight: normal;
    margin: 0 0 60px 0;
    position: relative;
    display: inline-block;
    padding: 0 40px;
    line-height: 1.2;
}

/* 标题两侧的黄色竖线 */
.dig_deeper_title::before {
    content: '';
    padding-right: 20px;
    border-left: 3px solid gold;
    box-sizing: border-box;
}

.dig_deeper_title::after {
    content: '';
    padding-left: 20px;
    border-right: 3px solid gold;
    box-sizing: border-box;
}

/* 链接区域 */
.dig_deeper_links {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 60px;
    flex-wrap: wrap;
}

.dig_deeper_link_item {
    flex: 0 1 auto;
}

.dig_deeper_link_wrapper {
    text-align: center;
}

.dig_deeper_link_wrapper p {
    margin: 0;
}

.dig_deeper_link {
    font-family: 'HelloLucky', sans-serif;
    font-size: 50px;
    color: #dc6026;
    text-decoration: none;
    font-weight: normal;
    line-height: 1.3;
    transition: color 0.3s ease;
    display: inline-block;
}

.dig_deeper_link:hover {
    color: #b84e1e;
}

.dig_deeper_link img {
    display: block;
    margin: 10px auto 0;
    max-width: 100%;
    height: auto;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .dig_deeper_links {
        gap: 50px;
    }
}

@media (max-width: 820px) {
    .dig_deeper_section {
        padding: 50px 15px;
    }

    .dig_deeper_title {
        padding: 0 30px;
        margin-bottom: 50px;
    }

    .dig_deeper_links {
        gap: 20px;
    }

}

@media (max-width: 768px) {

    .dig_deeper_title {
        padding: 0 20px;
    }

    .dig_deeper_links {
        gap: 9px;
    }

}

@media (max-width: 480px) {
    .dig_deeper_section {
        padding: 40px 15px;
    }

    .dig_deeper_title {
        padding: 0px;
        margin-bottom: 40px;
    }

    .dig_deeper_links {
        flex-direction: row;
        row-gap: 20px;
        column-gap: 20px;
        align-items: center;
    }

    .dig_deeper_link img {
        min-width: 70;
    }

    .dig_deeper_link {
        font-size: 44px;
    }

}


/*contact.html======================== */

/*google map 区域***********************************/
.google_map_section {
    width: 100%;
    margin: 0;
    padding: 0;
}

.google_map_container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

.google_map_wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.google_map_wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(100%);
}

/*联系我们区域***********************************/
.contact_us_section {
    background-color: #fff;
    padding: 20px;
}

.contact_us_container {
    max-width: 1400px;
    margin: 0 auto;
}

.contact_us_wrapper {
    width: 100%;
}

/* 卡片网格布局 */
.contact_cards_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: start;
}

/* 单个卡片 */
.contact_card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.contact_card_inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* 卡片图片 */
.contact_card_image {
    margin-bottom: 30px;
    width: 100%;
    max-width: 280px;
}

.contact_card_image a {
    display: block;
    transition: transform 0.3s ease;
}

.contact_card_image a:hover {
    transform: translateY(-5px);
}

.contact_card_image img {
    width: 100%;
    height: auto;
    display: block;
}

/* 卡片内容 */
.contact_card_content {
    width: 100%;
}

.contact_card_text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* 卡片标题 */
.contact_card_title {
    font-size: 21px;
    font-weight: 700;
    color: #1c2947;
    line-height: 1.6;
    margin: 0;
}

.highlight_text {
    color: #dc6026;
    font-weight: 700;
}

/* 卡片按钮 */
.contact_card_button {
    display: inline-block;
    padding: 15px 35px;
    background-color: #a51f39;
    color: #fff;
    text-decoration: none;
    font-size: 17.5px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.contact_card_button:hover {
    background-color: #8a1a32;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(165, 31, 57, 0.3);
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .contact_cards_grid {
        gap: 30px;
    }

    .contact_card_image {
        max-width: 240px;
    }

    .contact_card_title {
        font-size: 18px;
    }

    .contact_card_button {
        padding: 12px 30px;
    }
}

@media (max-width: 820px) {
    .contact_us_section {
        padding: 60px 20px;
    }

    .contact_cards_grid {
        gap: 40px;
    }

    .contact_card_image {
        max-width: 220px;
        margin-bottom: 25px;
    }

    .contact_card_title {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .contact_us_section {
        padding: 50px 15px;
    }

    .contact_cards_grid {
        gap: 10px;
    }

    .contact_card_image {
        max-width: 280px;
        margin-bottom: 30px;
    }

    .contact_card_title {
        font-size: 20px;
    }

    .contact_card_button {
        padding: 14px 40px;
        font-size: 17px;
    }
}

@media (max-width: 480px) {
    .contact_us_section {
        padding: 40px 15px;
    }

    .contact_cards_grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact_card_image {
        max-width: 370px;
    }

    .contact_card_title {
        font-size: 17px;
    }

    .contact_card_button {
        padding: 12px 35px;
        font-size: 17px;
    }
}

/*detail.html======================== */
/* 商品详情区域 */
.product_detail_section {
    padding: 60px 20px;
    background-color: #ffffff;
}

.product_detail_container {
    max-width: 1080px;
    margin: 0 auto;
}

.product_detail_wrapper {
    width: 100%;
}

.product_detail_content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;

}

/* 解决Grid布局子项溢出问题 */
.product_detail_content>* {
    min-width: 0;
}

/* 轮播图区域 */
.product_gallery {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* 主图轮播 */
.main_gallery {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.main_gallery .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffffff;
}

.main_gallery .swiper-slide a {
    display: block;
    width: 100%;
}

.main_gallery .swiper-slide img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* 主图切换按钮 */
.main_gallery .gallery_nav_btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #999999;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.main_gallery:hover .gallery_nav_btn {
    opacity: 1;
    visibility: visible;
}

.main_gallery .gallery_nav_btn:hover {
    color: #333333;
}

.main_gallery .swiper-button-prev {
    left: 10px;
}

.main_gallery .swiper-button-next {
    right: 10px;
}

.main_gallery .gallery_nav_btn::after {
    display: none;
}

/* 缩略图轮播 */
.thumb_gallery {
    width: 100%;
    position: relative;
}

.thumb_gallery .swiper-slide {
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s;
    border: 2px solid transparent;
}

.thumb_gallery .swiper-slide:hover {
    opacity: 1;
}

.thumb_gallery .swiper-slide-thumb-active {
    opacity: 1;
    border-color: #1e2844;
}

.thumb_gallery .swiper-slide img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* 缩略图切换按钮 */
.thumb_gallery .gallery_nav_btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #999999;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.thumb_gallery:hover .gallery_nav_btn {
    opacity: 1;
    visibility: visible;
}

.thumb_gallery .gallery_nav_btn:hover {
    color: #333333;
}

.thumb_gallery .swiper-button-prev {
    left: 5px;
}

.thumb_gallery .swiper-button-next {
    right: 5px;
}

.thumb_gallery .gallery_nav_btn::after {
    display: none;
}

/* 商品信息区域 */
.product_info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
}

/* 商品标题 */
.product_detail_title {
    font-family: 'HelloLucky', cursive;
    font-size: 50px;
    color: #1e2844;
    line-height: 1.2;
    margin: 0;
    font-weight: normal;
}

/* 价格区域 */
.product_price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin: 10px 0;
}

.price_from {
    font-size: 16px;
    color: #333333;
    font-style: italic;
}

.price_value {
    font-size: 30px;
    color: #333333;
    font-weight: bold;
}

/* 商品描述 */
.product_description {
    color: #333333;
    line-height: 1.6;
    text-align: left;
    font-size: 20px;
}

.product_description p {
    margin: 0;
}

/* 表单区域 */
.product_form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 10px;
}

/* 数量控制 */
.quantity_control {
    display: flex;
    align-items: center;
    gap: 0;
    width: fit-content;
}

.quantity_btn {
    width: 45px;
    height: 45px;
    border: 1px solid #e0e0e0;
    background: #ffffff;
    color: #333333;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity_btn:hover {
    background: #f5f5f5;
    border-color: #cccccc;
}

.quantity_btn.minus {
    border-radius: 4px 0 0 4px;
}

.quantity_btn.plus {
    border-radius: 0 4px 4px 0;
}

.quantity_input {
    width: 60px;
    height: 45px;
    border: 1px solid #e0e0e0;
    border-left: none;
    border-right: none;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    appearance: textfield;
    -moz-appearance: textfield;
}

.quantity_input::-webkit-outer-spin-button,
.quantity_input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.quantity_input:focus {
    outline: none;
    border-color: #1e2844;
}

/* 添加到购物车按钮 */
.add_to_quote_wrapper {
    width: 100%;
    text-align: left;
}

.add_to_quote_btn {
    padding: 26px 30px;
    background-color: #1e2844;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
}

.add_to_quote_btn:hover {
    background-color: #2c3a5a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 40, 68, 0.3);
}

/* 商品元信息 */
.product_meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 20px;
}

.meta_item {
    display: flex;
    gap: 8px;
    font-size: 16px;
}

.meta_label {
    color: #666666;
    font-weight: 600;
}

.meta_value {
    color: #333333;
}

.meta_link {
    color: #dc6026;
    text-decoration: none;
    transition: color 0.3s;
}

.meta_link:hover {
    color: #ff5722;
    text-decoration: underline;
}

/* 社交分享图标 */
.product_share {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.share_icon {
    width: 40px;
    height: 40px;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666666;
    transition: all 0.3s;
    font-size: 16px;
}

.share_icon:hover {
    border-color: #1e2844;
    color: #1e2844;
    background-color: #f5f5f5;
}


/* Quote Modal 模态框样式 */
.quote_modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.quote_modal.active {
    opacity: 1;
    visibility: visible;
}

.quote_modal_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.quote_modal_content {
    position: relative;
    background: #ffffff;
    border-radius: 12px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    z-index: 10000;
}

.quote_modal.active .quote_modal_content {
    transform: scale(1);
}

.quote_modal_close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    color: #666666;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    padding: 0;
}

.quote_modal_close:hover {
    background-color: #f5f5f5;
    color: #333333;
}

.quote_modal_title {
    font-family: 'HelloLucky', cursive;
    font-size: 36px;
    color: #1e2844;
    margin: 0 0 30px 0;
    text-align: center;
}

.quote_modal_form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.quote_form_group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quote_form_label {
    font-size: 14px;
    font-weight: 600;
    color: #333333;
    letter-spacing: 0.5px;
}

.quote_form_input,
.quote_form_textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 16px;
    color: #333333;
    transition: all 0.3s ease;
    font-family: 'Lato', sans-serif;
}

.quote_form_input:focus,
.quote_form_textarea:focus {
    outline: none;
    border-color: #1e2844;
    box-shadow: 0 0 0 3px rgba(30, 40, 68, 0.1);
}

.quote_form_textarea {
    resize: vertical;
    min-height: 80px;
}

.quote_submit_btn {
    width: 100%;
    padding: 16px 30px;
    background-color: #1e2844;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    margin-top: 10px;
}

.quote_submit_btn:hover {
    background-color: #2c3a5a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 40, 68, 0.3);
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .product_detail_section {
        padding: 50px 20px;
    }

    .product_detail_content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .product_detail_title {
        font-size: 50px;
    }
}

@media (max-width: 768px) {
    .product_detail_section {
        padding: 40px 15px;
    }

    .product_detail_content {
        gap: 30px;
    }

    .price_from {
        font-size: 16px;
    }

    .price_value {
        font-size: 26px;
    }

    .product_description {
        font-size: 20px;
    }

    .add_to_quote_btn {
        max-width: 100%;
        padding: 16px 30px;
    }
}

@media (max-width: 480px) {
    .product_detail_section {
        padding: 30px 15px;
    }

    .product_gallery {
        gap: 10px;
    }

    .quantity_btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .quantity_input {
        width: 50px;
        height: 40px;
        font-size: 14px;
    }

    .add_to_quote_btn {
        padding: 14px 25px;
        font-size: 20px;
    }

    .meta_item {
        font-size: 16px;
    }

    .share_icon {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}

/* 模态框响应式设计 */
@media (max-width: 768px) {
    .quote_modal_content {
        padding: 30px 25px;
        width: 95%;
    }

    .quote_modal_title {
        font-size: 28px;
        margin-bottom: 25px;
    }

    .quote_form_label {
        font-size: 13px;
    }

    .quote_form_input,
    .quote_form_textarea {
        padding: 10px 14px;
        font-size: 15px;
    }

    .quote_submit_btn {
        padding: 14px 25px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .quote_modal_content {
        padding: 25px 20px;
    }

    .quote_modal_title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .quote_modal_form {
        gap: 15px;
    }

    .quote_form_label {
        font-size: 12px;
    }

    .quote_form_input,
    .quote_form_textarea {
        padding: 10px 12px;
        font-size: 14px;
    }

    .quote_submit_btn {
        padding: 12px 20px;
        font-size: 14px;
    }
}


/* tab栏切换区域 */
.product_tabs_section {
    padding: 60px 20px;
}

.product_tabs_container {
    max-width: 1080px;
    margin: 0 auto;
}

.product_tabs_wrapper {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Tab导航栏 */
.tabs_nav {
    display: flex;
    border-bottom: 1px solid #e0e0e0;
    background-color: #ffffff;
}

.tab_button {
    flex: 1;
    padding: 20px 30px;
    border: none;
    background: transparent;
    color: #666666;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    border-bottom: 3px solid transparent;
}

.tab_button:hover {
    color: #1e2844;
    background-color: #f9f9f9;
}

.tab_button.active {
    color: #1e2844;
    border-bottom-color: #1e2844;
    background-color: #ffffff;
}

/* Tab内容区域 */
.tabs_content {
    padding: 40px;
}

.tab_panel {
    display: none;
}

.tab_panel.active {
    display: block;
}

/* Additional Information 表格样式 */
.info_table {
    display: flex;
    flex-direction: column;
}

.info_row {
    display: grid;
    grid-template-columns: 280px 1fr;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
    gap: 40px;
}

.info_row:last-child {
    border-bottom: none;
}

.info_label {
    font-size: 16px;
    font-weight: 700;
    color: #333333;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.info_value {
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
}

/* Tab通用文本内容 */
.tab_content_text {
    color: #666666;
    font-size: 16px;
    line-height: 1.8;
}

.tab_content_text p {
    margin: 0 0 15px 0;
}

.tab_content_text p:last-child {
    margin-bottom: 0;
}

.no_reviews {
    color: #999999;
    font-style: italic;
}

/* Tab响应式设计 */
@media (max-width: 768px) {
    .product_tabs_section {
        padding: 40px 15px;
    }

    .tabs_nav {
        flex-direction: column;
    }

    .tab_button {
        padding: 15px 20px;
        text-align: left;
        border-bottom: 1px solid #e0e0e0;
        border-left: 3px solid transparent;
    }

    .tab_button.active {
        border-bottom-color: #e0e0e0;
        border-left-color: #1e2844;
    }

    .tabs_content {
        padding: 25px 20px;
    }

    .info_row {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 15px 0;
    }

    .info_label {
        font-size: 14px;
    }

    .info_value {
        font-size: 15px;
    }

    .tab_content_text {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .product_tabs_section {
        padding: 30px 15px;
    }

    .tab_button {
        padding: 12px 15px;
        font-size: 14px;
    }

    .tabs_content {
        padding: 20px 15px;
    }

    .info_row {
        padding: 12px 0;
    }

    .info_label {
        font-size: 13px;
    }

    .info_value {
        font-size: 14px;
    }

    .tab_content_text {
        font-size: 14px;
    }
}