/* 重置样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-size: 14px;
    line-height: 1.5;
    color: #333;

}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    padding: 0;
}

input {
    outline: none;
    border: none;
}

/* 头部区域*************************/

.header_section {
    background-image: url("https://merchandise.co.uk/images/home/merch-background-optimise.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.toolbar {
    padding: 12px 0;
    font-size: 12px;
}

.toolbar_container,
.navbar_container,
.logo_img>div {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
}

.toolbar_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 48px;
}

.toolbar_left_container {
    display: flex;
    align-items: center;
    gap: 36px;
}

.vat_cart_panel {
    display: flex;
    align-items: center;
    gap: 16px;
}

.tax_display label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    letter-spacing: 1px;
}

.tax_display span {
    color: #fff;
}

.uk_checkbox {
    width: 14px;
    height: 14px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    accent-color: #fff;
}

.cart_link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #fff;
}

.cart_link .icon svg {
    display: block;
}

.social_links ul {
    display: flex;
    align-items: center;
    gap: 18px;
    fill: #fff;
}

.social_links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: #fff;
}

.toolbar_right_container {
    display: flex;
    align-items: center;
    gap: 32px;
}

.login_register_panel a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #fff;
    transition: opacity 0.2s ease;
}

.login_register_panel a+a {
    margin-left: 18px;
}

.login_register_panel a:hover {
    opacity: 0.75;
}

.login_register_panel .icon svg,
.btn_panel svg {
    display: block;
}

.btn_panel .search_button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    color: #fff;
    transition: border-color 0.2s ease;
}

.btn_panel .search_button:hover {
    border-color: #fff;
}

.logo_img {
    padding: 28px 0 20px;
}

.logo_img img {
    max-width: 400px;
    height: auto;
}

.logo_img_container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
}

.logo_img_link {
    display: inline-flex;
}

.logo_search {
    display: none;
}

.logo_search input {
    width: 220px;
    padding: 11px 20px;
    border-radius: 10px;
    border: none;
    background: #fff;
    font-size: 14px;
    color: #ff2b65;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.logo_search input::placeholder {
    color: #ff2b65;
    font-weight: 500;
}

.navbar {
    position: relative;
    transition: all 0.3s ease;
}

.navbar.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #ff2b65;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.navbar.sticky .nav_menu a {
    color: #fff;
}

.navbar.sticky .nav_menu li:hover>a {
    background-color: #ff2b65;
    color: #fff;
}

.nav_menu {
    display: flex;
    justify-content: center;
}

.nav_menu li {
    position: relative;
}

.nav_menu a {
    display: inline-flex;
    align-items: center;
    padding: 14px;
    font-size: 14px;
    color: #fff;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
}

.nav_menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background-color: #fff;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.2s ease;
}

.nav_menu li:hover>a {
    background-color: #fff;
    color: #ff2b65;
}

.nav_menu li.has_submenu {
    position: static;
}

.sub_navbar {
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translate(-50%, 10px);
    width: min(1080px, calc(100vw - 72px));
    margin-top: 0;
    background-color: #fff;
    color: #1c1c1c;
    border-radius: 12px;
    padding: 28px 40px;
    display: none;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 5;
}

.has_submenu:hover>.sub_navbar {
    display: block;
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.nav_menu li.has_submenu:focus-within>.sub_navbar,
.nav_menu li.has_submenu>.sub_navbar:hover {
    display: block;
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.sub_navbar_container {
    display: flex;
    gap: 56px;
    justify-content: space-between;
}

.sub_navbar_column {
    flex: 1;
    min-width: 0;
}

.sub_navbar_column h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1c1c1c;
    margin-bottom: 16px;
}

.sub_navbar_menu li+li {
    margin-top: 8px;
}

.sub_navbar_menu a {
    color: #7a7a7a;
    font-size: 14px;
    padding: 0px;
    transition: color 0.2s ease;
}

.sub_navbar_menu a:hover {
    color: #ff2b65;
}

/* 移动端菜单 */
.mobile_nav_overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 24;
}

.mobile_menu_btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    border-radius: 3px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(0, 0, 0, 0.25);
    padding: 10px;
    color: #fff;
    cursor: pointer;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.mobile_menu_btn span {
    display: block;
    height: 2px;
    border-radius: 999px;
    background-color: currentColor;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.mobile_nav {
    position: fixed;
    top: 0;
    left: 0;
    width: min(320px, 80vw);
    height: 100vh;
    padding: 26px 24px;
    background: rgba(10, 10, 10, 0.96);
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 24px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 30;
}

.mobile_nav_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
}

.mobile_nav_close {
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    color: inherit;
}

.mobile_nav_menu {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile_nav_menu a,
.mobile_nav_menu label {
    color: #fff;
    font-size: 16px;
    line-height: 1.6;
}

.mobile_nav_menu a:hover,
.mobile_nav_menu label:hover {
    color: #ff2b65;
}

.mobile_nav_item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.mobile_nav_label {
    cursor: pointer;
}

.mobile_nav_icon {
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    cursor: pointer;
    position: relative;
}

.mobile_nav_icon::before,
.mobile_nav_icon::after {
    content: "";
    position: absolute;
    background-color: currentColor;
    transition: transform 0.25s ease;
}

.mobile_nav_icon::before {
    width: 12px;
    height: 2px;
}

.mobile_nav_icon::after {
    width: 2px;
    height: 12px;
}

.mobile_submenu {
    max-height: 0;
    overflow: hidden;
    padding-left: 16px;
    display: grid;
    gap: 10px;
    transition: max-height 0.3s ease;
}

.mobile_submenu a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

.mobile_has_submenu input:checked~.mobile_submenu {
    max-height: 300px;
    padding-top: 8px;
}

.mobile_has_submenu input:checked+.mobile_nav_item .mobile_nav_icon::after {
    transform: scaleY(0);
}

.mobile_nav_toggle:checked+.mobile_nav_overlay {
    opacity: 1;
    pointer-events: auto;
}

.mobile_nav_toggle:checked~.toolbar .mobile_menu_btn span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.mobile_nav_toggle:checked~.toolbar .mobile_menu_btn span:nth-child(2) {
    opacity: 0;
}

.mobile_nav_toggle:checked~.toolbar .mobile_menu_btn span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.mobile_nav_toggle:checked~.navbar .mobile_nav {
    transform: translateX(0);
}

@media (max-width: 1024px) {
    .nav_menu a {
        padding: 10px;
    }
}

@media (max-width: 820px) {

    .toolbar_container,
    .navbar_container,
    .logo_img>div {
        padding: 0 16px;
    }

    .toolbar_container {
        flex-direction: row;
        align-items: center;
        gap: 20px;
    }

    .toolbar_right_container {
        align-self: stretch;
        justify-content: space-between;
        width: 100%;
    }

    .mobile_menu_btn {
        display: flex;
    }

    .nav_menu {
        display: none;
    }

    .mobile_nav {
        display: flex;
    }
}

@media (max-width: 768px) {
    .toolbar_container {
        flex-wrap: wrap;
        gap: 12px;
    }

    .toolbar_left_container {
        width: 100%;
        justify-content: space-between;
        align-items: center;
        gap: 16px;
    }

    .vat_cart,
    .social_links,
    .toolbar_right {
        display: none;
    }

    .mobile_menu_btn {
        border-color: rgba(255, 255, 255, 0.4);
        background: #ff2b65;
    }

    .mobile_menu_btn span {
        background-color: #fff;
    }

    .logo_img {
        padding: 22px 0;
    }

    .logo_img_container {
        justify-content: space-between;
        gap: 16px;
    }

    .logo_search {
        display: block;
    }
}

@media (max-width: 480px) {
    .toolbar_container {
        gap: 10px;
    }

    .toolbar_left_container {
        gap: 12px;
    }

    .mobile_menu_btn {
        width: 40px;
        height: 40px;
        padding: 8px;
    }

    .logo_img_link img {
        max-width: 360px;
    }

    .logo_img_container {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .logo_search input {
        width: min(100%, 280px);
    }
}

/* 大图文字区域*************************/

.hero_section {
    background-image: url("https://merchandise.co.uk/images/home/merch-background-optimise.jpg");
    background-size: cover;
    background-position: 0 100%;
    background-repeat: no-repeat;
    padding: 70px 0 90px;
    color: #fff;
}

.hero_container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero_content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}

.hero_text {
    max-width: 520px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero_title span {
    display: block;
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero_title .highlight {
    color: #ff2b65;
}

.hero_description {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

.hero_actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.btn_primary,
.btn_secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn_primary {
    background: #ff2b65;
    color: #fff;
    box-shadow: 0 12px 30px rgba(255, 43, 101, 0.45);
}

.btn_secondary {
    background: #fff;
    color: #ff2b65;
}

.btn_primary:hover,
.btn_secondary:hover {
    transform: translateY(-3px);
}

.hero_visual {
    flex: 1;
    max-width: 520px;
    display: flex;
    justify-content: center;
}

.hero_visual img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.5));
}

@media (max-width: 1024px) {
    .hero_content {
        gap: 32px;
    }

    .hero_text {
        max-width: 500px;
    }

    .hero_visual {
        max-width: 500px;
    }

    .hero_title span {
        font-size: 80px;
    }

    .hero_visual img {
        max-width: 110%;
    }

    .hero_description {
        max-width: 320px;
        font-size: 20px;
    }

    .btn_secondary {
        padding: 12px 40px;
    }
}

@media (max-width: 820px) {
    .hero_content {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero_section {
        padding: 0px 0 90px;
    }

    .hero_title span {
        font-size: 55px;
    }

    .hero_text {
        align-items: flex-start;
        text-align: left;
        width: 100%;
    }

    .hero_description {
        max-width: 100%;
    }

    .hero_actions {
        justify-content: flex-start;
    }

    .hero_visual {
        width: auto;
        display: flex;
        justify-content: center;
        align-self: center;
        margin: 0 auto;
        max-width: 700px;
    }
}

@media (max-width: 768px) {
    .hero_content {
        flex-direction: column;
        text-align: center;
    }

    .hero_text {
        align-items: center;
    }

    .hero_actions {
        justify-content: center;
    }

}

@media (max-width: 480px) {
    .hero_section {
        padding: 40px 0 64px;
    }

    .hero_title span {
        font-size: 36px;
        line-height: 1.05;
    }

    .hero_actions {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 14px;
        width: 100%;
    }

    .btn_primary,
    .btn_secondary {
        min-width: 150px;
        width: auto;
    }

    .hero_text {
        gap: 20px;
        align-items: flex-start;
        text-align: left;
    }

    .hero_description {
        font-size: 15px;
    }

    .hero_visual {
        margin-top: 34px;
    }

    .hero_visual img {
        max-width: 88%;
    }
}


/* 品牌轮播图*************************/

.brand_section {
    padding: 60px 0;
}

.brand_slider {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
}

.brand_slider .swiper-wrapper {
    align-items: center;
}

.brand_slider .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 0;
}

.brand_slider .swiper-slide img {
    max-height: 190px;
    max-width: 100%;
    filter: grayscale(100%);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.brand_slider .swiper-slide-active,
.brand_slider .swiper-slide-next,
.brand_slider .swiper-slide-prev {
    opacity: 1;
}

@media (max-width: 768px) {
    .brand_section {
        padding: 48px 0;
    }

    .brand_slider .swiper-slide {
        padding: 12px 0;
    }
}

@media (max-width: 480px) {
    .brand_section {
        padding: 36px 0;
    }

    .brand_slider .swiper-slide img {
        padding: 0 10px;
    }
}

/* 畅销区域*************************/

.best_selling_section {
    padding: 0 0 100px;
}

.best_selling_container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.section_heading {
    font-size: 32px;
    color: #ff2b65;
    margin-bottom: 48px;
    font-weight: 700;
}

.best_selling_grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 70px 32px;
}

.best_selling_card {
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.best_selling_card a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    color: inherit;
    border-radius: 20px;
    background-image: url("https://www.merchandise.co.uk/images/yootheme/Untitled_design_-_2024-05-22T113742414_1.png");
}

.card_image_wrapper {
    height: 85px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
}

.card_image_wrapper img {
    max-height: 160px;
    width: auto;
    position: absolute;
    top: -50px;
}

.best_selling_card h3 {
    font-size: 25px;
    font-weight: 600;
    color: #ff2b65;
}

.best_selling_card p {
    font-size: 14px;
    line-height: 1.6;
    color: #000;
    max-width: 220px;
}

.card_cta {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: #ff2b65;
    letter-spacing: 1px;
    padding-bottom: 10px;
}

.best_selling_card:hover {
    transform: translateY(-8px);
}

@media (max-width: 1024px) {
    .best_selling_grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .card_image_wrapper img {
        max-height: 200px;
    }
}

@media (max-width: 480px) {
    .best_selling_grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .best_selling_card {
        padding: 26px 24px 32px;
    }

    .card_image_wrapper {
        height: 115px;
    }
}


/* 五大促销产品*************************/

.top_promos_section {
    padding: 96px 0 110px;
    background-image: url('https://www.merchandise.co.uk/templates/yootheme/cache/98/Pink-Background-983efb74.webp');
    background-size: cover;
    background-position: 90%;
    background-repeat: no-repeat;
    color: #fff;
}

.top_promos_container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.section_heading--light {
    color: #fff;
    margin-bottom: 20px;
}

.top_promos_subtitle {
    font-size: 15px;
    max-width: 620px;
    margin: 0 auto 48px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.86);
}

.top_promos_grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 28px;
}

.top_promos_card {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    min-height: 420px;
}

.top_promos_card a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    color: inherit;
}

.top_promos_card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    text-align: center;
}

.top_promos_image {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top_promos_image img {
    max-height: 200px;
    width: auto;
}

.top_promos_card p {
    font-size: 14px;
    line-height: 1.65;
    color: #000;
    text-align: center;
}

.top_promos_card .card_cta {
    color: #ff2b65;
}

.top_promos_card:hover {
    transform: translateY(-10px);
    box-shadow: 0 28px 50px rgba(0, 0, 0, 0.2);
    border: 2px solid #252525;
}

.promos_card_cta {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: #ff2b65;
    letter-spacing: 1px;
    padding-bottom: 10px;
}


.top_promos_cta {
    margin-top: 48px;
}

.top_promos_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    border-radius: 999px;
    background: #fff;
    color: #ff2b65;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.top_promos_btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 36px rgba(0, 0, 0, 0.24);
}

@media (max-width: 1280px) {
    .top_promos_grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        row-gap: 32px;
    }
}

@media (max-width: 1024px) {
    .top_promos_grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    .top_promos_image img {
        max-height: 170px;
        width: auto;
    }
}

@media (max-width: 820px) {
    .top_promos_section {
        padding: 80px 0 96px;
    }

    .top_promos_grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .top_promos_image {
        height: 220px;
    }

    .top_promos_image img {
        max-height: 360px;
    }

    .top_promos_card {
        padding: 28px 26px 40px;
        border-radius: 18px;
        min-height: 460px;
    }

    .top_promos_card h3 {
        font-size: 20px;
    }

    .top_promos_card p {
        font-size: 15px;
    }

    .top_promos_btn {
        padding: 12px 32px;
    }
}

@media (max-width: 480px) {
    .top_promos_section {
        padding: 64px 0 78px;
        background-position: center;
    }

    .top_promos_container {
        padding: 0 18px;
    }

    .section_heading--light {
        line-height: 1.25;
    }

    .top_promos_subtitle {
        margin: 0 auto 32px;
        max-width: 320px;
    }

    .top_promos_grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .top_promos_card {
        padding: 24px 20px 34px;
        border-radius: 16px;
        min-height: 440px;
    }

    .top_promos_card a {
        gap: 40px;
    }

    .top_promos_image {
        height: 200px;
    }

    .top_promos_image img {
        max-height: 220px;
    }

    .top_promos_card h3 {
        font-size: 19px;
    }

    .top_promos_card p {
        font-size: 14px;
        line-height: 1.6;
    }

    .top_promos_btn {
        padding: 12px 30px;
    }
}


/* 环境友好区域*************************/

.eco_section {
    padding: 110px 0 0;
    background: #fff;
}

.eco_container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.eco_media {
    display: flex;
    justify-content: center;
}

.eco_media img {
    max-width: 420px;
    width: 100%;
    height: auto;
}

.eco_content {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    gap: 22px;
    flex: 3 1 75%;
}

.eco_content h2 {
    font-size: 40px;
    font-weight: 800;
    color: #ff2b65;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.eco_content p {
    font-size: 16px;
    line-height: 1.25;
    color: #000;
    max-width: 650px;
}

.eco_btn {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    border-radius: 999px;
    border: 2px solid #ff2b65;
    color: #ff2b65;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.eco_btn:hover {
    transform: translateY(-4px);
    background: #ff2b65;
    color: #fff;
    box-shadow: 0 16px 32px rgba(255, 43, 101, 0.25);
}

@media (max-width: 1024px) {
    .eco_container {
        gap: 40px;
    }

    .eco_media img {
        max-width: 240px;
    }

    .eco_content h2 {
        font-size: 28px;
    }

    .eco_content p {
        font-size: 15px;
        white-space: initial;
    }
}

@media (max-width: 820px) {
    .eco_section {
        padding: 60px 0 80px;
    }

    .eco_container {
        flex-direction: column;
        text-align: left;
        gap: 32px;
    }

    .eco_media img {
        max-width: 560px;
    }

    .eco_content {
        align-items: flex-start;
        max-width: 700px;
        gap: 10px;
    }

    .eco_content h2 {
        font-size: 35px;
        white-space: normal;
    }

    .eco_content p {
        font-size: 14px;
        line-height: 1.3;
        white-space: normal;
        max-width: 100%;
    }

    .eco_btn {
        align-self: flex-start;
        padding: 10px 28px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .eco_section {
        padding: 0 0 90px;
    }

    .eco_container {
        padding: 0 18px;
        gap: 32px;
    }

    .eco_content h2 {
        font-size: 35px;
        line-height: 1;
    }

    .eco_content p {
        font-size: 15px;
    }

    .eco_btn {
        padding: 12px 28px;
    }
}


/* 我们的博客区域*************************/

.blog_section {
    padding: 100px 0 120px;
    background: #fff;
}

.blog_container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.blog_heading {
    font-size: 32px;
    color: #ff2b65;
    margin-bottom: 56px;
    font-weight: 700;
}

.blog_grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.blog_card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    padding: 5px;
    transition: all 0.3s ease;
}

.blog_card:hover {
    transform: translateY(-8px);
    border: 5px solid #ff2b65;
}

.blog_card a {
    display: flex;
    flex-direction: column;
    color: inherit;
    height: 100%;
}

.blog_image {
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.blog_image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog_content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
}

.blog_card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #ff2b65;
    text-align: center;
    margin-top: 20px;
    padding-top: 10px;
    line-height: 1.3;
}

.blog_card p {
    font-size: 14px;
    line-height: 1.2;
    text-align: center;
    color: #000;
    flex: 1;
}

.blog_read_more {
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    background: #fff;
    font-size: 13px;
    font-weight: 600;
    margin: 0 auto;
    color: #ff2b65;
    align-self: flex-start;
    transition: all 0.2s ease;
}


.blog_view_all {
    margin-top: 16px;
}

.blog_view_all_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 40px;
    border-radius: 999px;
    border: 2px solid #ff2b65;
    background: #fff;
    color: #ff2b65;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.blog_view_all_btn:hover {
    background: #ff2b65;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(255, 43, 101, 0.25);
}

@media (max-width: 1024px) {
    .blog_grid {
        gap: 28px;
    }
}

@media (max-width: 820px) {
    .blog_section {
        padding: 80px 0 100px;
    }

    .blog_grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .blog_card {
        padding: 0;
    }

    .blog_image {
        padding-bottom: 56.25%;
        border-radius: 0px;
    }

    .blog_content {
        padding: 0;
        text-align: left;
        gap: 12px;
    }

    .blog_content h3 {
        font-size: 16px;
        text-align: left;
        margin-top: 16px;
        padding-top: 0;
    }

    .blog_image img {
        width: 60%;
        border-radius: 15px;
    }

    .blog_content p {
        font-size: 13px;
        line-height: 1.5;
        text-align: left;
    }

    .blog_read_more {
        align-self: flex-start;
        margin: 0;
        padding: 8px 20px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .blog_section {
        padding: 64px 0 80px;
    }

    .blog_container {
        padding: 0 18px;
    }

    .blog_heading {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .blog_grid {
        gap: 24px;
        margin-bottom: 40px;
    }

    .blog_image img {
        width: 100%;
    }

    .blog_image {
        height: 220px;
    }

    .blog_content {
        padding: 24px 20px 28px;
    }

    .blog_card h3 {
        font-size: 18px;
    }

    .blog_view_all_btn {
        padding: 12px 32px;
    }
}


/* 评价轮播区域*************************/

.reviews_section {
    padding: 60px 0;
    background: #fff;
}

.reviews_container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.reviews_container iframe {
    width: 100%;
    height: 300px;
    border: none;
    display: block;
}

@media (max-width: 1024px) {
    .reviews_section {
        padding: 50px 0;
    }

    .reviews_container iframe {
        height: 280px;
    }
}

@media (max-width: 820px) {
    .reviews_section {
        padding: 40px 0;
    }

    .reviews_container {
        padding: 0 20px;
    }

    .reviews_container iframe {
        height: 100px;
    }
}

@media (max-width: 480px) {
    .reviews_section {
        padding: 30px 0;
    }

    .reviews_container {
        padding: 0 18px;
        max-height: 90px;
    }

    .reviews_container iframe {
        height: 500px;
    }
}

/* 专业促销人士区域*************************/

.professional_section {
    background-image: url('https://www.merchandise.co.uk/templates/yootheme/cache/da/Merch-footer-Background-opti-2024-da647c07.webp');
    background-size: cover;
    background-position: 50% 0;
    background-repeat: no-repeat;
    padding: 80px 0 60px;
    position: relative;
}

.professional_container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.professional_content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

/* 左侧 */
.professional_left {
    flex: 0 0 400px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.teddy_image img {
    width: 100%;
    max-width: 400px;
    height: auto;
}

.logo_images {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.logo_images img {
    max-width: 450px;
    height: auto;
}

/* 右侧 */
.professional_right {
    flex: 1;
    color: #fff;
    margin-top: 70px;
}

.professional_title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #ff2b65;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.professional_title br {
    display: none;
}

.professional_subtitle {
    color: #fff;
    display: block;
    margin-top: 8px;
}

.professional_intro {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 16px;
    color: #fff;
}

.professional_desc {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 32px;
    color: #fff;
}

.why_choose_title {
    font-size: 24px;
    font-weight: 700;
    margin: 24px 0;
    color: #ff2b65;
}

.features_grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 32px;
}

.feature_item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature_icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
}

.feature_icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature_content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #ff2b65;
}

.feature_content p {
    font-size: 14px;
    line-height: 1.5;
    color: #fff;
}

.professional_actions {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

.btn_call,
.btn_email {
    padding: 14px 36px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn_call {
    background: #ff2b65;
    color: #fff;
    border: 2px solid #ff2b65;
}

.btn_call:hover {
    background: #fff;
    color: #ff2b65;
}

.btn_email {
    background: #fff;
    color: #ff2b65;
    border: 2px solid #fff;
}

.btn_email:hover {
    background: transparent;
    color: #fff;
}

.professional_divider {
    padding-top: 40px;
}

.professional_divider hr {
    border: none;
    border-top: 2px solid #ff2b65;
    margin: 0 auto;
    width: 80%;
}

@media (max-width: 1024px) {
    .professional_content {
        gap: 40px;
    }

    .professional_left {
        flex: 0 0 320px;
    }

    .professional_right {
        margin-top: 100px;
    }
}

@media (max-width: 820px) {
    .professional_section {
        padding: 60px 0 40px;
    }

    .professional_content {
        flex-direction: column;
        gap: 40px;
    }

    .professional_left {
        flex: none;
        width: 100%;
        max-width: none;
        margin: 0;
        align-items: flex-start;
    }

    .teddy_image {
        align-self: flex-start;
    }

    .teddy_image img {
        max-width: 554px;
    }

    .logo_images {
        align-self: center;
        width: 100%;
    }

    .professional_right {
        margin-top: 0px;
        text-align: left;
        padding-left: 20px;
    }

    .professional_title {
        font-size: 32px;
    }

    .why_choose_title {
        font-size: 22px;
    }

    .professional_actions {
        justify-content: flex-start;
    }

    .feature_item {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .professional_section {
        padding: 40px 0 30px;
    }

    .professional_container {
        padding: 0 18px;
    }

    .professional_title {
        font-size: 28px;
    }

    .professional_intro,
    .professional_desc {
        font-size: 14px;
    }

    .why_choose_title {
        font-size: 20px;
    }

    .feature_icon {
        width: 50px;
        height: 50px;
    }


    .logo_images img {
        max-width: 390px;
    }

    .feature_content h3 {
        font-size: 16px;
    }

    .feature_content p {
        font-size: 13px;
    }

    .professional_actions {
        gap: 12px;
    }

    .btn_call,
    .btn_email {
        width: 50%;
        text-align: center;
    }
}



/* 个性化文字区域*************************/

.personalized_text_section {
    background: #000;
    padding-top: 30px;
    padding-bottom: 60px;
    position: relative;
}


.personalized_text_container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.personalized_text_content {
    color: #fff;
}

.personalized_text_content p {
    font-size: 15px;
    line-height: 1.8;
    color: #fff;
    margin: 0;
    text-align: center;
}

.personalized_text_content a {
    color: #ff2b65;
    text-decoration: none;
    transition: color 0.3s ease;
}

.personalized_text_content a:hover {
    color: #fff;
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .personalized_text_section {
        padding: 30px;
    }

    .personalized_text_content {
        text-align: center;
    }

    .personalized_text_content p {
        line-height: 1.3;
    }
}

@media (max-width: 820px) {
    .personalized_text_section {
        padding: 40px 0;
    }

    .personalized_text_container {
        padding: 0 20px;
    }

}

@media (max-width: 480px) {
    .personalized_text_section {
        padding: 30px 0;
    }

    .personalized_text_container {
        padding: 0 18px;
    }
}



/* 页脚区域*************************/

.footer_section {
    background: #000;
    padding: 60px 0 0;
    color: #fff;
}

.footer_container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer_main {
    padding-bottom: 40px;
}

.footer_grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer_row {
    display: contents;
}

/* 第一列：Logo和社交媒体 */
.footer_brand {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer_logo img {
    max-width: 250px;
    height: auto;
}

.footer_social {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.social_link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.social_link svg {
    fill: #fff;
    transition: fill 0.3s ease;
}

.social_link:hover {
    background: #ff2b65;
}

/* 导航链接列 */
.footer_links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer_links li {
    margin-bottom: 2px;
}

.footer_links a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.footer_links a:hover {
    color: #ff2b65;
}

/* 联系信息列 */
.footer_contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact_item h3 {
    color: #ff2b65;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
}

.contact_item p {
    color: #fff;
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
}

.contact_item a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact_item a:hover {
    color: #ff2b65;
}

/* 版权部分 */
.footer_copyright {
    border-top: 2px solid #ff2b65;
    padding: 24px 0;
}

.copyright_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 16px;
}

.copyright_text {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #fff;
}

.copyright_text svg {
    flex-shrink: 0;
    color: #ff2b65;
}

.copyright_reg p {
    font-size: 15px;
    color: #fff;
    margin: 0;
}



@media (max-width: 820px) {
    .footer_section {
        padding: 40px 0 0;
    }

    .footer_grid {
        display: flex;
        flex-direction: column;
        gap: 32px;
    }

    .footer_row {
        display: grid;
        gap: 24px;
    }

    .footer_row_1 {
        grid-template-columns: 1fr 1fr;
        justify-content: flex-start;
    }

    .footer_row_2 {
        grid-template-columns: 1fr 1fr 1fr;
        justify-content: center;
    }

    .footer_brand {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .footer_logo img {
        max-width: 350px;
    }

    .footer_social {
        justify-content: flex-start;
    }

    .footer_contact {
        gap: 24px;
    }

    .contact_item h3 {
        margin-bottom: 4px;
    }

    .copyright_content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
    }

    .copyright_text {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer_section {
        padding: 40px 0 0;
    }

    .footer_container {
        padding: 0 20px;
    }

    .footer_grid {
        display: flex;
        flex-direction: column;
        gap: 32px;
    }

    .footer_row {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .footer_row_1,
    .footer_row_2 {
        grid-template-columns: 1fr;
        justify-content: normal;
    }

    .footer_brand {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .footer_logo img {
        max-width: 377px;
    }

    .footer_social {
        justify-content: center;
        gap: 16px;
    }

    .social_link {
        width: 36px;
        height: 36px;
    }

    .footer_links {
        text-align: left;
    }

    .footer_links ul {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .footer_links li {
        margin-bottom: 0;
    }

    .footer_links a {
        font-size: 15px;
        line-height: 1.8;
    }

    .footer_contact {
        gap: 20px;
    }

    .contact_item h3 {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .contact_item p {
        font-size: 15px;
        line-height: 1.6;
    }

    .footer_copyright {
        padding: 20px 0;
    }

    .copyright_content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
    }

    .copyright_text {
        align-items: stretch;
        justify-content: center;
    }

    .copyright_reg p {
        font-size: 11px;
    }
}





/* about us.html================================ */

/* 专注业务区域*************************/

.specialise_section {
    padding-top: 80px;
    padding-bottom: 0;
}

.specialise_container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.specialise_content {
    display: flex;
    align-items: center;
    gap: 80px;
}

.specialise_text {
    flex: 1;
}

.specialise_title {
    font-size: 32px;
    font-weight: 700;
    color: #ff2b65;
    line-height: 1.2;
    white-space: nowrap;
    margin-bottom: 24px;
}

.specialise_description p {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

.specialise_image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.specialise_image img {
    max-width: 487px;
    height: auto;
    display: block;
}

@media (max-width: 1024px) {
    .specialise_section {
        padding: 60px 0;
    }

    .specialise_content {
        gap: 60px;
    }

    .specialise_title {
        white-space: normal;
    }

    .specialise_image img {
        max-width: 354px;
    }
}

@media (max-width: 820px) {
    .specialise_section {
        padding: 50px 0;
    }

    .specialise_content {
        flex-direction: column;
        gap: 40px;
    }

    .specialise_text {
        text-align: center;
    }

    .specialise_title {
        font-size: 36px;
    }

    .specialise_image {
        justify-content: center;
        margin-right: auto;
    }

    .specialise_image img {
        max-width: 500px;

    }
}

@media (max-width: 768px) {
    .specialise_title {
        font-size: 32px;
    }

    .specialise_description p {
        text-align: left;
    }
}


@media (max-width: 480px) {
    .specialise_section {
        padding: 40px 0;
    }

    .specialise_container {
        padding: 0 20px;
    }

    .specialise_content {
        gap: 30px;
    }

    .specialise_title {
        font-size: 32px;
        margin-bottom: 16px;
    }

    .specialise_description p {
        font-size: 15px;
        line-height: 1.2;
    }

    .specialise_image img {
        max-width: 377px;
    }

    .specialise_text {
        text-align: left;
    }
}




/* 了解更多区域*************************/

.learn_more_section {
    padding: 60px 0;
    background: #fff;
}

.learn_more_container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.learn_more_content {
    max-width: 100%;
}

.learn_more_main_title {
    font-size: 26px;
    font-weight: 700;
    color: #ff2b65;
    margin-bottom: 24px;
    line-height: 1.3;
}

.learn_more_content p {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 16px;
}

.learn_more_content .text_link {
    color: #ff2b65;
    text-decoration: none;
    font-weight: 600;
}

.learn_more_content .text_link:hover {
    text-decoration: underline;
}

.learn_more_subtitle {
    font-size: 20px;
    font-weight: 700;
    color: #ff2b65;
    margin-top: 32px;
    margin-bottom: 16px;
    line-height: 1.3;
}

@media (max-width: 1024px) {
    .learn_more_section {
        padding-top: 0;
        padding-bottom: 40px;
    }

    .learn_more_main_title {
        font-size: 26px;
    }

    .learn_more_subtitle {
        font-size: 17px;
    }
}

@media (max-width: 820px) {
    .learn_more_section {
        padding: 40px 0;
    }


    .learn_more_subtitle {
        margin-top: 28px;
    }
}

@media (max-width: 480px) {
    .learn_more_section {
        padding: 30px 0;
    }

    .learn_more_container {
        padding: 0 20px;
    }

    .learn_more_main_title {
        margin-bottom: 20px;
    }

    .learn_more_content p {
        margin-bottom: 14px;
    }

    .learn_more_subtitle {
        margin-top: 24px;
        margin-bottom: 12px;
    }
}



/* contact us.html================================ */


/* 联系我们区域*************************/

.contact_section {
    padding: 60px 0 80px;
    background-color: #f8f8f8;
}

.contact_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact_header {
    text-align: center;
    margin-bottom: 60px;
}

.contact_main_title {
    font-size: 36px;
    font-weight: 400;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.contact_header hr {
    display: none;
}

.contact_cards_wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact_cards_container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.contact_card {
    background-color: #fff;
    border: 3px solid #ff2b65;
    border-radius: 12px;
    padding: 40px 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact_card_content {
    text-align: left;
}

.contact_card_title {
    font-size: 24px;
    font-weight: 700;
    color: #ff2b65;
    margin-bottom: 12px;
    line-height: 1.3;
}

.contact_card_subtitle {
    font-size: 12px;
    font-weight: 400;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.contact_card_text {
    color: #666;
    font-size: 15px;
    line-height: 1.8;
}

.contact_card_text p {
    margin: 0 0 12px 0;
}

.contact_card_text strong {
    color: #333;
    font-weight: 600;
}

.contact_link {
    color: #ff2b65;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact_link:hover {
    color: #d91d4f;
    text-decoration: underline;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .contact_section {
        padding: 60px 40px 80px;
    }

    .contact_card_title {
        font-size: 32px;
    }
}

@media (max-width: 820px) {
    .contact_section {
        padding: 50px 0 60px;
    }

    .contact_header {
        margin-bottom: 40px;
    }

    .contact_cards_container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact_card {
        padding: 30px 25px;
    }
}

@media (max-width: 768px) {
    .contact_card {
        padding: 30px 30px;
    }
}

@media (max-width: 480px) {
    .contact_section {
        padding: 40px 0 50px;
    }

    .contact_container,
    .contact_cards_wrapper {
        padding: 0 15px;
    }

    .contact_header {
        margin-bottom: 30px;
    }

    .contact_card {
        padding: 25px 20px;
    }

}



/* 地图区域*************************/

.map_section {
    padding: 0 0 80px;
    background-color: #f8f8f8;
}

.map_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.map_social_icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.map_social_link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #ff2b65;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.map_social_link:hover {
    background-color: #d91d4f;
    transform: scale(1.1);
}

.map_social_link svg {
    fill: #fff;
}

.map_wrapper {
    width: 100%;
}

.map_frame {
    border: 3px solid #ff2b65;
    border-radius: 12px;
    overflow: hidden;
    background-color: #fff;
}

.map_frame iframe {
    display: block;
    width: 100%;
    height: 450px;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .map_section {
        padding: 0 0 60px;
    }

    .map_frame iframe {
        height: 400px;
    }
}

@media (max-width: 820px) {
    .map_section {
        padding: 0 0 50px;
    }

    .map_social_icons {
        margin-bottom: 25px;
    }

    .map_social_link {
        width: 45px;
        height: 45px;
    }

    .map_frame iframe {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .map_section {
        padding: 0 0 40px;
    }

    .map_container {
        padding: 0 15px;
    }

    .map_social_icons {
        gap: 12px;
        margin-bottom: 20px;
    }

    .map_social_link {
        width: 40px;
        height: 40px;
    }

    .map_frame iframe {
        height: 300px;
    }
}


/* detail.html================================ */

/* 产品详情区域 */
.product_detail_section {
    padding: 40px 0;
    background-color: #fff;
}

.product_detail_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
}

/* 左边产品展示区域 */
.product_left {
    width: 100%;
    min-width: 0;
    overflow: hidden;
}

.product_article {
    width: 100%;
}

.product_title_wrapper {
    margin-bottom: 20px;
}

.product_title {
    font-size: 30px;
    font-weight: 600;
    color: #000;
    text-align: center;
    line-height: 1.3;
    margin: 0;
    word-wrap: break-word;
}

.product_content {
    width: 100%;
    min-width: 0;
}

/* 画廊链接 */
.product_gallery_header {
    margin-bottom: 15px;
}

.gallery_link_wrapper {
    text-align: center;
}

.gallery_link {
    color: #000;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

/* 主图 */
.product_main_image {
    width: 100%;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.product_main_image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

/* 缩略图轮播 */
.product_thumbnails {
    margin-bottom: 30px;
}

.thumbnail_swiper {
    width: 100%;
    padding: 10px 0;
}

.thumbnail_swiper .swiper-slide {
    cursor: pointer;
}

.thumbnail_image {
    width: 200px;
    height: auto;
    transition: all 0.3s ease;
}


/* 桌面端隐藏分页器和切换按钮 */
.thumbnail_swiper .swiper-pagination,
.thumbnail_swiper .swiper-button-prev,
.thumbnail_swiper .swiper-button-next {
    display: none;
}

/* 价格表 */
.product_price_table {
    margin-bottom: 30px;
    overflow-x: auto;
}

.price_table {
    width: 100%;
    min-width: 500px;
    border-collapse: collapse;
    margin-bottom: 15px;
    font-size: 15px;
}

.price_table th,
.price_table td {
    padding: 10px 12px;
    text-align: left;
}

.price_table th {
    background-color: #fff;
    color: #c6438b;
    font-weight: 600;
}

.price_table tr:nth-child(odd) {
    background-color: #f3f3f3;
}

.price_table tr:nth-child(even) {
    background-color: #fff;
}

.price_table tr:hover {
    background-color: #C9C9C9;
}

.price_table td:first-child {
    text-align: left;
    font-weight: 500;
}

.price_note {
    font-size: 13px;
    color: #666;
}

/* Description区域 - Tab System */
.product_description {
    margin-top: 30px;
}

.description_tab {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.description_tab_btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background-color: #f0f0f0;
    color: #666;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.description_tab_btn:hover {
    background-color: #e0e0e0;
    color: #333;
}

.description_tab_btn.active {
    background-color: #ff2b65;
    color: #fff;
}

.description_tab_btn.active:hover {
    background-color: #d91d4f;
}

.description_tab_btn svg {
    stroke: currentColor;
}

.tab_content_wrapper {
    position: relative;
}

.tab_content {
    display: none;
    padding: 20px;
    background-color: #f8f8f8;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    animation: fadeIn 0.3s ease;
}

.tab_content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab_content p {
    margin: 0;
    line-height: 1.6;
    color: #333;
}

/* Specifications List */
.specs_list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.specs_list li {
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
    color: #333;
    font-size: 14px;
}

.specs_list li:last-child {
    border-bottom: none;
}

.specs_list strong {
    color: #ff2b65;
    margin-right: 8px;
}

/* Reviews Section */
.reviews_section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.review_item {
    padding: 15px;
    background-color: #fff;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
}

.review_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.review_header strong {
    color: #333;
    font-size: 15px;
}

.review_stars {
    color: #ffc107;
    font-size: 16px;
    letter-spacing: 2px;
}

.review_item p {
    margin: 0;
    line-height: 1.6;
    color: #666;
    font-size: 14px;
}

/* 右边表单区域 */
.product_right {
    width: 100%;
    min-width: 0;
}

.quote_form_wrapper {
    border-radius: 20px;
    overflow: hidden;
}

.quote_header {
    background-color: #ff2b65;
    padding: 20px;
    text-align: center;
}

.quote_header h2 {
    margin: 0;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
}

.quote_form {
    padding: 25px;
    background-color: #f7f7f7;
}

.form_group {
    margin-bottom: 20px;
}

.form_group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 15px;
}

.form_group input,
.form_group select,
.form_group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ACACAC;
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form_group input:focus,
.form_group select:focus,
.form_group textarea:focus {
    outline: none;
    border-color: #ff2b65;
}

.form_group textarea {
    min-height: 100px;
    resize: vertical;
}

.form_info {
    margin-top: 15px;
    padding: 15px;
    font-size: 13px;
    line-height: 1.6;
    color: #333;
}

.quote_actions {
    padding: 0 25px 25px;
    background-color: #ff2b65;
}

.request_quote_btn {
    width: 100%;
    padding-top: 16px;
    padding-bottom: 0px;
    color: #fff;
    border: none;
    font-size: 28px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}


.request_quote_btn svg {
    width: 30px;
    height: 30px;
}

.alternative_action {
    margin-top: 15px;
    text-align: center;
    font-size: 15px;
    color: #fff;
}

.alternative_action a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.alternative_action a:hover {
    text-decoration: underline;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .product_title {
        padding: 0 11px;
        text-align: left;
    }

    .thumbnail_image {
        width: 100px;
    }
}

@media (max-width: 820px) {
    .product_detail_container {
        grid-template-columns: 1fr;
    }

    .product_title {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .product_detail_section {
        padding: 30px 0;
    }

    .product_title {
        font-size: 22px;
    }

    .price_table {
        font-size: 12px;
    }

    .price_table th,
    .price_table td {
        padding: 8px 5px;
    }

    /* Tab responsive styles */
    .description_tab {
        gap: 8px;
    }

    .description_tab_btn {
        padding: 10px 16px;
        font-size: 14px;
    }

    .tab_content {
        padding: 16px;
    }
}

@media (max-width: 480px) {
    .product_detail_container {
        padding: 0 15px;
    }

    .product_title {
        font-size: 20px;
    }

    .product_main_image {
        padding: 15px;
    }

    .thumbnail_swiper {
        max-width: 400px;
        margin: 0 auto;
        padding: 10px 0 30px;
    }

    .thumbnail_swiper .swiper-wrapper {
        justify-content: center;
    }

    .thumbnail_swiper .swiper-slide {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 12px;
        margin: 0 6px;
        background: #fff;
        border-radius: 16px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
        width: auto !important;
    }

    .thumbnail_image {
        width: 100px;
    }

    /* 移动端显示分页器和切换按钮 */
    .thumbnail_swiper .swiper-pagination {
        display: block;
        position: relative;
        margin-top: 15px;
    }

    .thumbnail_swiper .swiper-button-prev,
    .thumbnail_swiper .swiper-button-next {
        display: flex;
        width: 30px;
        height: 30px;
        border-radius: 50%;
    }

    .thumbnail_swiper .swiper-button-prev::after,
    .thumbnail_swiper .swiper-button-next::after {
        font-size: 14px;
        color: #000;
    }

    .price_table {
        font-size: 11px;
    }

    .price_table th,
    .price_table td {
        padding: 6px 4px;
    }

    .product_price_table>div {
        font-size: 12px;
    }

    /* Mobile tab styles */
    .description_tab {
        gap: 6px;
    }

    .description_tab_btn {
        padding: 8px 12px;
        font-size: 13px;
        flex: 1;
        min-width: 0;
        justify-content: center;
    }

    .description_tab_btn svg {
        width: 14px;
        height: 14px;
    }

    .tab_content {
        padding: 14px;
        font-size: 13px;
    }

    .specs_list li {
        font-size: 13px;
        padding: 8px 0;
    }

    .review_item {
        padding: 12px;
    }

    .review_header strong {
        font-size: 14px;
    }

    .review_stars {
        font-size: 14px;
    }

    .review_item p {
        font-size: 13px;
    }
}