.shop_tool {
    width: 100%;
    /*max-width: 1640px;*/
    max-width: 1280px;
    margin: 0px auto;
    /*padding: 60px 20px;*/
    box-sizing: border-box;
}
.shop_tool .shop_tool_block {
    width: 100%;
    padding: 32px;
    /*border: 1px solid rgba(0,0,0,0.05);*/
    box-sizing: border-box;
    background-color: #FFFFFF;
    box-shadow: var(--boxshadow);
    border-radius: var(--roundCornerBig);
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.shop_tool .shop_tool_block .tool-item {
    position: relative;
    /* width: 134px; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    color: var( --colorOrange);
    cursor: pointer;
    flex: 1;
}
.shop_tool .shop_tool_block .tool-item:hover,
.shop_tool .shop_tool_block .tool-item:active {
    color: var(--colorPurple);
}
.shop_tool .shop_tool_block .tool-item p{
    font-size: 18px;
    font-weight: 400;
}
.shop_tool .shop_tool_block .tool-item p span{
    font-weight: 500;
    font-size: 16px;
    line-height: 27px;
    min-height: 27px;
    color: #fff;
    padding: 0px 8px;
    border-radius: 30px;
    margin-left: 8px;
    background-color: var(--colorOrange);
    display: inline-flex;
}
.shop_tool .shop_tool_block .tool-line {
    width: 1px;
    height: 86px;
    background-color: #D0D0D0;
}
.shop_tool .shop_tool_block .tool-item .img_hover,
.shop_tool .shop_tool_block .tool-item .p_hover {
    display: none;
}
.shop_tool .shop_tool_block .tool-item:hover .img_normal,
.shop_tool .shop_tool_block .tool-item:hover .p_normal {
    display: none;
}
.shop_tool .shop_tool_block .tool-item:hover .img_hover,
.shop_tool .shop_tool_block .tool-item:hover .p_hover {
    display: block !important;
}
.shop_tool .shop_tool_block .tool-item:hover p span{
    background-color: var(--colorPurple);
}
.shop_tool .shop_tool_block .tool-item::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background-color: #D0D0D0;
}
.shop_tool .shop_tool_block .tool-item:last-child:after {
    content: none;
}
.shop_tool .shop_tool_block .tool-item:after{
    background-color: transparent;
}
.pages1_tool {
    width: 100%;
    /*max-width: 1640px;*/
    max-width: 1280px;
    margin: 0 auto;
    /*padding: 60px 20px;*/
    box-sizing: border-box;
    margin-top: 20px;
}
.pages1_tool .pageHeading h1 {
    white-space: nowrap;
}
.pages1_tool .pages1_tool_block {
    width: 100%;
    /*padding: 22px 0;*/
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    grid-gap: 28px;
}
.pages1_tool .pages1_tool_block .tool-item {
    position: relative;
    width: 220px;
    height: 181px;
    background-color: #FFFFFF;
    /*border: 1px solid rgba(0,0,0,0.05);*/
    box-shadow: var(--boxshadow);
    border-radius: var(--roundCornerBig);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var( --colorOrange);
    cursor: pointer;
}
.pages1_tool .pages1_tool_block .tool-item:active {
    color: var(--colorPurple);
}
.pages1_tool .pages1_tool_block .tool-item:hover {
    color: var(--colorPurple);
}
.pages1_tool .pages1_tool_block .tool-item img:nth-child(1), .pages1_tool .pages1_tool_block .tool-item:active img:nth-child(2) {
    display: block;
}
.pages1_tool .pages1_tool_block .tool-item img:nth-child(2), .pages1_tool .pages1_tool_block .tool-item:active img:nth-child(1) {
    display: none;
}
 .pages1_tool .pages1_tool_block .tool-item:hover img:nth-child(2) {
    display: block;
}
.pages1_tool .pages1_tool_block .tool-item:hover img:nth-child(1) {
    display: none;
}
.pages1_tool .pages1_tool_block .tool-item > p{
    margin-top: 10px;
    font-size: 18px;
    font-weight: 400;
}
.pages1_tool ~ .pages1_introduce{
    padding-top: 0 !important;
}
.shop_hot_list{
    position: relative;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    height: fit-content;
    padding: 0 20px;
    box-sizing: border-box;
    z-index: 2;
}
.shop_hot_product {
    position: relative;
    width: 100%;
    padding: 46px 0;
    box-sizing: border-box;
    margin: 50px auto 40px auto;
    /*background-color: rgba(238, 112, 46, 0.1);*/
    background-color: var(--colorLightOrange);
}
.component-box .shop_hot_product:before{
    content: '';
    position: absolute;
    left: -50vw;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: var(--colorLightOrange);
}
.component-box .shop_hot_product:after{
    content: '';
    position: absolute;
    right: -50vw;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: var(--colorLightOrange);
}
.shop_hot_product .card {
    width: 100%;
    margin: 0 auto;
    padding: 30px 0;
    box-sizing: border-box;
    background-color: white;
    display: flex;
    align-items: center;
    box-shadow: var(--boxshadow);
    border-radius: var(--roundCornerBig);
}
.shop_hot_product .card .pageHeading {
    min-width: 200px;
    height: 144px;
    /*border-right: 1px solid #D0D0D0;*/
    white-space: nowrap;
    position: relative;
}
.shop_hot_product .card .pageHeading:before{
    content: '';
    position: absolute;
    right: 0;
    top: 10px;
    height: 100%;
    width: 1px;
    background-color:#D0D0D0;
}
.shop_hot_product .card .pageHeading h1 br {
    display: none;
}
.shop_hot_product .card .btnGroup {
    width: calc(100% - 178px);
    padding: 20px 0 20px;
    margin: 0 20px;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    column-gap: 5px;
    row-gap: 10px;
    overflow-x: auto;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}
/* .shop_hot_product .card .btnGroup::-webkit-scrollbar {
    display: none;
} */
.shop_hot_product .card .btnGroup::-webkit-scrollbar {
    height: 5px;
    background-color: #eee;
}
.shop_hot_product .card .btnGroup::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px #eee;
    background-color: #eee;
}
.shop_hot_product .card .btnGroup::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 5px;
}
.shop_hot_product .card .btnGroup button {
    width: 180px !important;
    height: 58px !important;
    border-radius: 44.5px !important;
    border-width: 2px;
    font-size: 20px;
    margin: 0 !important;
}
.shop_hot_product .card .btnGroup button:hover,
.shop_hot_product .card .btnGroup button:active {
    color: #CE2874;
    border-color: #CE2874;
    background-color: transparent;
}

.category_list_container{
    margin-bottom: 96px;
}
.category_list_container{
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    /*padding: 20px;*/
    padding-top: 0;
    padding-bottom: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.category_list_container .advertise_swiper {
    position: relative;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    height: fit-content;
    padding: 12px 60px 60px 60px;
    box-sizing: border-box;
}

.category_list_container .cate_grid_container .cate_list_wrapper {
    display: flex;
    /*justify-content: space-between;*/
    justify-content: center;
}

.category_list_container .cate_grid_container .cate_list_wrapper .item .item_desc h3 {
    color: #1B1B1B;
    font-weight: 500;
}
.category_list_container .cate_grid_container .cate_list_wrapper .item:hover .item_img .img img {
    transition: all 0.4s;
    transform: scale(1.4);
}
.category_list_container .cate_grid_container.brand_grid_container .cate_list_wrapper .item:hover .item_img .img img {
    transition: all 0.4s;
    transform: scale(1);
}

.category_list_container .cate_grid_container .cate_list_wrapper .item:hover .item_desc h3 {
    color: #CE2874;
}
.category_list_container .cate_grid_container .brand_swpier .cate_list_wrapper .item .item_desc h3{
    color: var(--colorOrange);
}
.category_list_container .cate_grid_container .brand_swpier .cate_list_wrapper .item:hover .item_desc h3{
    color: #CE2874;
}
.section_btns{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    /* margin-top: 48px; */
}
.section_btns .btn_1{
    background: #FFFFFF;
    border: 2px solid var( --colorOrange);
    border-radius: 30px;
    color: var( --colorOrange);
    font-weight: 500;
    font-size: 18px;
    line-height: 150%;
    padding: 12px 0;
    cursor: pointer;
    text-align: center;
    min-width: 260px;
}
.section_btns .btn_2{
    background: var( --colorOrange);
    border: 2px solid var( --colorOrange);
    border-radius: 30px;
    color: #fff;
    font-weight: 500;
    font-size: 18px;
    line-height: 150%;
    padding: 12px 0;
    min-width: 260px;
    cursor: pointer;
    text-align: center;
}
.section_btns .btn_1:hover,
.section_btns .btn_2:hover {
    font-weight: 700;
}

/* 更多精選家電 start */
.shop_more_box{
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}
.shop_more {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    height: fit-content;
    padding: 0px 70px 0px 70px;

    box-sizing: border-box;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 30px auto;
}

.shop_more .pageHeading {
    border-right: 1px solid #D2D2D2;
    white-space: nowrap;
    padding-right: 30px;
}

.shop_more .pageHeading h1 {
    padding-left: 0;
    background-image: none;
}

.shop_more .pageHeading br {
    display: none;
}

.shop_more .shop_more_content {
    width: auto;
    max-width: 100%;
    padding: 0 0px 0 44px;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 17px 16px;
    overflow-x: auto;
    width: calc(100% - 220px);
}


.shop_more .shop_more_content::-webkit-scrollbar {
    height: 5px;
    background-color: #eee;
}

.shop_more .shop_more_content::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px #eee;
    background-color: #eee;
}

.shop_more .shop_more_content::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 5px;
}
.shop_more .shop_more_content .more_btn {
    width: 100%;
    height: 51px !important;
    white-space: nowrap;
    margin: 0;
    font-size: 18px;
}
.shop_more .shop_more_content .more_btn:hover,
.shop_more .shop_more_content .more_btn:active {
    color: #CE2874;
    border-color: #CE2874;
    background-color: white;
    border-width: 2px;
}



/***新增 預設灰 + 橘 + 紫紅 ***/   

.shop_tool.eight_items .shop_tool_block{
    padding: 19.5px 10px;
}
.shop_tool.eight_items .shop_tool_block .tool-item{
    width: calc(100% / 8 - 7px);
}
.shop_tool.eight_items .shop_tool_block .tool-item span{
    display: block;
    height: 52px;
}
.shop_tool.eight_items .shop_tool_block .tool-item span img{
    max-height: 100%;
}
.shop_tool.eight_items .shop_tool_block .tool-item p{
    font-size: 15px;
    color: #868686;
}
.shop_tool.eight_items .shop_tool_block .tool-item:hover p,.shop_tool.eight_items .shop_tool_block .tool-item:active p{
    color: var(--colorOrange);
}
.pages1_tool.eight_items .pages1_tool_block{
    grid-gap: 15px;
}
.pages1_tool.eight_items .pages1_tool_block .tool-item{
    width: calc(100% / 8);    
    height: 130px;
}
.pages1_tool.eight_items .pages1_tool_block .tool-item span{
    display: block;
    height: 52px;
}
.pages1_tool.eight_items .pages1_tool_block .tool-item span img{
    max-height: 100%;
}
.pages1_tool.eight_items .pages1_tool_block .tool-item p{
    font-size: 15px;
    color: #868686;
}
.pages1_tool.eight_items .pages1_tool_block .tool-item:hover p,.pages1_tool.eight_items .pages1_tool_block .tool-item:active p{
    color: var(--colorOrange);
}


.shop_tool.eight_items .shop_tool_block .tool-item.normal_color_01 p{
    /*color: #817a74;*/
    color: #FF6700;
}
.shop_tool.eight_items .shop_tool_block .tool-item.normal_color_02 p{
    color: #DF5198;
}
.shop_tool.eight_items .shop_tool_block .tool-item.normal_color_03 p{
    color: #624BEE;
}
.shop_tool.eight_items .shop_tool_block .tool-item.normal_color_04 p{
    color: #FFBA0D;
}
.shop_tool.eight_items .shop_tool_block .tool-item.normal_color_05 p{
    color: #2D2D6C;
}

.shop_tool.eight_items .shop_tool_block .tool-item.hover_color_01:hover p,.shop_tool.eight_items .shop_tool_block .tool-item.hover_color_01:active p{
    color: #FF6700;
}
.shop_tool.eight_items .shop_tool_block .tool-item.hover_color_02:hover p,.shop_tool.eight_items .shop_tool_block .tool-item.hover_color_02:active p{
    color: #DF5198;
}
.shop_tool.eight_items .shop_tool_block .tool-item.hover_color_03:hover p,.shop_tool.eight_items .shop_tool_block .tool-item.hover_color_03:active p{
    color: #624BEE;
}
.shop_tool.eight_items .shop_tool_block .tool-item.hover_color_04:hover p,.shop_tool.eight_items .shop_tool_block .tool-item.hover_color_04:active p{
    color: #FFBA0D;
}
.shop_tool.eight_items .shop_tool_block .tool-item.hover_color_05:hover p,.shop_tool.eight_items .shop_tool_block .tool-item.hover_color_05:active p{
    color: #2D2D6C;
}


.pages1_tool.eight_items .pages1_tool_block .tool-item.normal_color_01 p{
    color: #FF6700;
}
.pages1_tool.eight_items .pages1_tool_block .tool-item.normal_color_02 p{
    color: #DF5198;
}
.pages1_tool.eight_items .pages1_tool_block .tool-item.normal_color_03 p{
    color: #624BEE;
}
.pages1_tool.eight_items .pages1_tool_block .tool-item.normal_color_04 p{
    color: #FFBA0D;
}
.pages1_tool.eight_items .pages1_tool_block .tool-item.normal_color_05 p{
    color: #2D2D6C;
}

.pages1_tool.eight_items .pages1_tool_block .tool-item.hover_color_01:hover p,.pages1_tool.eight_items .pages1_tool_block .tool-item.hover_color_01:active p{
    color: #FF6700;
}
.pages1_tool.eight_items .pages1_tool_block .tool-item.hover_color_02:hover p,.pages1_tool.eight_items .pages1_tool_block .tool-item.hover_color_02:active p{
    color: #DF5198;
}
.pages1_tool.eight_items .pages1_tool_block .tool-item.hover_color_03:hover p,.pages1_tool.eight_items .pages1_tool_block .tool-item.hover_color_03:active p{
    color: #624BEE;
}
.pages1_tool.eight_items .pages1_tool_block .tool-item.hover_color_04:hover p,.pages1_tool.eight_items .pages1_tool_block .tool-item.hover_color_04:active p{
    color: #FFBA0D;
}
.pages1_tool.eight_items .pages1_tool_block .tool-item.hover_color_05:hover p,.pages1_tool.eight_items .pages1_tool_block .tool-item.hover_color_05:active p{
    color: #2D2D6C;
}
@media (max-width: 1600px) {
    .pages1_tool .pages1_tool_block .tool-item {
        height: 150px;
    }
    .pages1_tool .pages1_tool_block .tool-item > img {
        width: 60px;
    }
    .pages1_tool .pages1_tool_block .tool-item > p {
        font-size: 16px;
    }

    .shop_hot_product .card .btnGroup button {
       /*width: 175px !important;
        height: 50px !important;*/
    }

    /* 更多精選家電 start */
    .shop_more .shop_more_content .more_btn {
        width: 100%;
        min-width: 160px;
        height: 48px !important;
    }
    /* 更多精選家電 end */
}
@media (max-width: 1580px) {
    .shop_tool .shop_tool_block .tool-item p {
        /*font-size: 16px;*/
    }
}
@media (max-width: 1480px) {
    .shop_hot_product .card .btnGroup button {
        width: 165px !important;
        height: 45px !important;
    }
}
@media (max-width: 1440px) {
    .shop_tool {
        /*padding: 45px 4% 45px 4%;*/
    }

    .pages1_tool{
        /*padding: 40px 4%;*/
    }
    .pages1_tool .pages1_tool_block{
        /*padding: 12px 0;*/
    }

    .shop_hot_list{
        padding: 0 4%
    }
    .category_list_container{
        /*padding: 0px 4% 0px 4%;*/
        margin-top: -10px;
    }
    /*20230818 UI修正箭頭左右大小*/
    .category_list_container .cate_swiper .swiper-button-next,
    .category_list_container .cate_swiper .swiper-button-prev {
          width: 50px;
          height: 50px;
    }

    .shop_more_box{
        padding: 0px 4% 0px 4%;
    }

    .shop_more .shop_more_content {
        width: calc(100% - 200px);
    }
}
@media (max-width: 1366px) {  
    .shop_hot_product .card .pageHeading {
        min-width: 180px;
    }
    .category_list_container {
       /* padding-bottom: 30px;*/
    }
}
@media (max-width: 1330px) {
    /* 熱門商品 start */
    .shop_hot_product .card .btnGroup button {
        font-size: 18px;
    }

    .shop_hot_product .card .btnGroup button {
        width: 155px !important;
        height: 40px !important;
    }


    /* 熱門商品 end */
}
@media (max-width: 1280px) {  
    .shop_more .shop_more_content {
        padding: 10px 10px 10px 20px;
        margin-left: 20px;
    }
}

@media (max-width: 1200px) {

    .pages1_tool.eight_items .pages1_tool_block{
        display: grid;
        grid-template-columns: repeat(4, 1fr); 
        place-items: center;
        width: fit-content;
        margin: 0 auto;     
        width: 605px;  
    }
    .pages1_tool.eight_items .pages1_tool_block .tool-item {
        width:100%;
        min-width: fit-content;
        padding-left: 10px;
        padding-right: 10px;
    }

    .shop_tool.eight_items .shop_tool_block{
        box-shadow: none;
        display: grid;
        grid-template-columns: repeat(4, 1fr); 
        place-items: center;
        width: fit-content;
        margin: 0 auto;       
        padding: 0;
        grid-gap: 15px;
        justify-content: space-between;
        width: 605px;
    }
    .shop_tool.eight_items .shop_tool_block .tool-line {
        display: none;
    }
    .shop_tool.eight_items .shop_tool_block .tool-item {
        width:100%;
        height: 130px;
        gap: 20px;       
        box-shadow: var(--boxshadow);
        border-radius: var(--roundCornerBig);
        background-color: white;
        min-width: fit-content;
        padding-left: 10px;
        padding-right: 10px;
    }
}
@media (max-width: 1120px) {
    /* 熱門商品 start */
    .shop_hot_list {
        /*padding: 0 0% 0 4%;*/
        padding: 0;
        margin-right: -30px;
        margin-left: 0px;
        width: calc(100% + 30px);
    }
    .shop_hot_product .card {
        border-radius: 20px 0 0 20px;
    }
    .shop_hot_product .card .btnGroup {
        margin: 0 0 0 20px;
        padding-right: 20px;
    }

    .category_list_container .cate_swiper {
        padding: 0 16px;
    }

    .pages1_tool .pages1_tool_block {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        place-items: center;
        width: fit-content;
        margin: 0 auto;
    }
    .pages1_tool .pages1_tool_block .tool-item{
        width: 25vw;
    }
    .shop_tool .shop_tool_block{
        padding: 30px 0px;
    }
    .shop_tool .shop_tool_block .tool-item p{
        font-size: 16px;
    }    
}
@media (max-width: 1024px) {
    .category_list_container .cate_grid_container .cate_list_wrapper .item .item_desc h3 {
        font-size: 16px;
    }
}
@media (max-width: 996px) {
    .pages1_tool {
        /*padding: 40px 0;*/        
    }
    .pages1_tool .pages1_tool_block {
        /*padding: 20px 4px;*/  
        /*padding: 20px 4%;*/
    }    
    .category_list_container{
        margin-bottom: 30px;
    }
}
@media (max-width: 992px) {
    .category_list_container .cate_grid_container .cate_list_wrapper{
        justify-content: flex-start;
    }
    .shop_tool .shop_tool_block .tool-item p{
        text-align: center;
    }
    .shop_tool .shop_tool_block .tool-item p span{
        display: block;
        width: 100%;
        text-align: center;
        margin-top: 4px;
        margin-left: 0;
        font-size: 14px;
        min-width: 80px;
    }
    .shop_tool_block_discount .tool-item p{
        min-height: 45px;
    }
}
@media (max-width: 840px) {   
    .shop_tool .shop_tool_block {
        /*padding: 20px;*/
    }
    .shop_tool .shop_tool_block .tool-item {
        width: auto;
        gap: 12px;
    }
    .shop_tool .shop_tool_block .tool-item img {
        width: 45px;
    }
    .shop_tool .shop_tool_block.shop_tool_exclusive_service .tool-item img {
        width: auto;
        height: 48px;
    }
    .shop_tool .shop_tool_block.shop_tool_block_discount .tool-item img {
        width: auto;
        height: 48px;
    }
    .shop_tool .shop_tool_block .tool-item p {
        font-size: 14px;
    }
    .shop_more_box {
        padding: 0px 0% 0px 4%;
    }
    .shop_more {
        padding: 0px 0px 0px 15px;
    }
    .shop_more .shop_more_content {
        width: calc(100% - 170px);
        padding-right: 20px;
    }
    .shop_more .shop_more_content .more_btn {
        height: 40px !important;
    }
    .pages1_tool .pages1_tool_block{
        width: max-content;
        grid-gap: 40px;
    }
    .pages1_tool .pages1_tool_block .tool-item{
        width: 20vw;
    }
    .pages1_tool .pages1_tool_block .tool-item > p{
        font-size: 14px;
    }

}

@media (max-width: 768px) {
    .shop_tool {
        /*padding: 40px 4% 40px 4%;*/
    }
    .shop_tool .shop_tool_block {
        /*padding: 20px 4%;*/        
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        column-gap: 16px;
        row-gap: 24px;
        place-items: center;
        background-color: transparent;
        box-shadow: none;
        grid-gap: 40px;
        margin: 0 auto;
        width: max-content;
        border: none;
        grid-template-columns: repeat(3, 1fr);
        padding: 0;
    }
    .shop_tool .shop_tool_block .tool-item {
        width: 20vw;
        height: 150px;
        gap: 20px;
        /*border: 1px solid rgba(0,0,0,0.05);*/
        box-shadow: var(--boxshadow);
        border-radius: var(--roundCornerBig);
        background-color: white;
       
    }
    .shop_tool .shop_tool_block.shop_tool_block_discount .tool-item{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .shop_tool .shop_tool_block .tool-item img {
        width: 50px;
    }
    .shop_tool .shop_tool_block .tool-item p {
        font-size: 16px;
        line-height: 24px;
    }
    .shop_tool .shop_tool_block .tool-line {
        display: none;
    }
    .shop_tool .shop_tool_block .tool-item::after {
        content: none !important;
        display: none;
    }
    .shop_tool_block_discount .tool-item{
        min-height: 121px;
    }
    .shop_tool_block_discount .tool-item p{
        min-height: auto;
    }
    .shop_hot_list {
        /*padding: 0 0% 0 calc(4% + 14px);*/
    }
    
    /* 各館活動 start */
    .category_list_container {
        padding-bottom: 0px;
    }
    .category_list_container .cate_grid_container .cate_swiper {
        /*margin: 0 -3% 30px -3%;*/
        padding: 0;
    }
    .category_list_container .cate_grid_container .brand_swpier .cate_list_wrapper {
        margin-top: 0;
    }
    /* 各館活動 end */
    .category_list_container .cate_grid_container .brand_swpier.logo_swpier .cate_list_wrapper{
        padding-bottom: 0;
    }
    .shop_more .shop_more_content .more_btn{
        min-width: auto;
    }

   
}
@media (max-width: 767px) {
    .shop_hot_product {
        margin: 50px auto 20px auto;   
        padding: 30px 0 30px 0px;
    }
    .shop_hot_product .card {
        padding: 12px 0;
    }
    .shop_hot_product .card .pageHeading {
        min-width: 110px;
        height: auto;
        margin-bottom: -20px;
    }
    .shop_hot_product .card .pageHeading:before{
        top: 0;
    }
    .shop_hot_product .card .pageHeading h1 {
        line-height: 28px;
        letter-spacing: 0.05em;
        padding: 20px 0;
    }
    .shop_hot_product .card .pageHeading h1 br {
        display: block;
    }
    .shop_hot_product .card .btnGroup {
        width: calc(100% - 122px);
        margin: 0 0 0 12px;
    }
    .shop_hot_product .card .btnGroup button {
        width: 115px !important;
        height: 28px !important;
        font-size: 12px;
        border-width: 1px;
    }

    .section_btns{
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        /* margin-top: 48px; */
    }
    .section_btns .btn_1{
        background: #FFFFFF;
        border: 2px solid var( --colorOrange);
        border-radius: 30px;
        color: var( --colorOrange);
        font-weight: 500;
        font-size: 16px;
        line-height: 150%;
        padding: 6.5px 0;
        cursor: pointer;
        text-align: center;
        min-width: 156px;
    }
    .section_btns .btn_2{
        background: var( --colorOrange);
        border: 2px solid var( --colorOrange);
        border-radius: 30px;
        color: #fff;
        font-weight: 500;
        font-size: 16px;
        line-height: 150%;
        padding: 6.5px 0;
        min-width: 156px;
        cursor: pointer;
        text-align: center;
    }
    .category_list_container {
        /*padding: 0px 4% 20px 4%;*/
    }
    .category_list_container .cate_grid_container .cate_swiper {
        /*margin: 0 -3% 0px -3%;*/
    }

     /* 更多精選家電 start */
     .shop_more .pageHeading h1 {
        text-align: left;
        line-height: 28px;
        letter-spacing: 0.05em;
        padding: 12px 12px 12px 0;
    }
    .shop_more .pageHeading h1 br {
        display: block;
    }
    .shop_more .shop_more_content {
        gap: 10px 6px;
    }
    .shop_more .shop_more_content .more_btn {
        width: 115px !important;
        height: 28px !important;
        font-size: 12px;
        border-width: 1px;
    }
    /* 更多精選家電 end */
    .shop_tool .shop_tool_block .tool-item p span{
        font-weight: 500;
        font-size: 14px;
        line-height:21px;  
        min-height: 21px;     
        padding: 0px 5px;              
    }
}
@media (max-width: 640px) {
    .shop_tool {
        /*padding: 20px 5% 20px 5%;*/
    }
    .shop_tool .shop_tool_block {
        /*padding: 10px 5%;*/
        padding: 0;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 16px;
        place-items: center;
        width: 100%;
    }   
    .shop_tool .shop_tool_block.shop_tool_block_discount .tool-item{
        min-height: 100px;
        padding: 5px 0;
    }
    .shop_tool .shop_tool_block .tool-item{
        height: auto;
        text-align: center;
        padding: 15px 0;
        gap: 16px;
        width: 25vw;
    }    
    .shop_tool .shop_tool_block .tool-item img {
        width: 40px;
    }
    .shop_tool .shop_tool_block .tool-item p {
        font-size: 14px;
        line-height: 20px;
    }

    .pages1_tool {
        padding: 0;
        margin-top: 0;
    }
    .pages1_tool .pages1_tool_block {
        /*padding: 0 20px 40px 20px;*/        
        /*padding: 20px 5%;*/
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 16px;
        place-items: center;        
        width: 100%;
    }
    .pages1_tool .pages1_tool_block .tool-item {
        /*width: 100px;
        height: 105px;*/       
        height: auto;
        text-align: center;
        padding: 15px 0;
        width: 25vw;
    }
    .pages1_tool .pages1_tool_block .tool-item img {
        width: 31px;
    }
    .pages1_tool .pages1_tool_block .tool-item p {
        width: 58px;
        font-size: 12px;
        line-height: 17px;
        margin-top: 0px;
    }

    .category_list_container .cate_grid_container .cate_list_wrapper .item .item_desc h3 {
        font-size: 14px;
    }

    .shop_more .pageHeading {
        padding-right: 10px;
    }

    .shop_more {
        padding: 0px 0px 0px 5px;
    }

    .shop_more .shop_more_content {
        padding: 0 20px 10px 10px;
        margin-left: 10px;
        width: 100%;
    }
    .shop_tool .shop_tool_block.shop_tool_exclusive_service .tool-item img{
        height: 33px;
    }
    .shop_tool .shop_tool_block.shop_tool_block_discount .tool-item img{
        height: 33px;
    }

    .pages1_tool.eight_items .pages1_tool_block{
        width: 100%;
    }
    .pages1_tool.eight_items .pages1_tool_block .tool-item{
        padding-left: 0;
        padding-right: 0;
        height: 90px;
    }
    .pages1_tool.eight_items .pages1_tool_block .tool-item p{
        width: 100%;
        font-size: 12px;
    }
    .pages1_tool.eight_items .pages1_tool_block .tool-item span{
        height: 36px;
    }
    .pages1_tool.eight_items .pages1_tool_block .tool-item span img{
        width: auto;
    }
    .shop_tool.eight_items .shop_tool_block{
        width: 100%;
    }
    .shop_tool.eight_items .shop_tool_block .tool-item{
        padding-left: 0;
        padding-right: 0;
        height: 90px;
    }
    .shop_tool.eight_items .shop_tool_block .tool-item p{
        font-size: 12px;
    }
    .shop_tool.eight_items .shop_tool_block .tool-item span{
        height: 36px;
    }
    .shop_tool.eight_items .shop_tool_block .tool-item span img{
        width: auto;
    }
}
@media (max-width: 480px) {
    .pages1_tool{
        /*margin-top: 30px;
        margin-bottom: 10px;*/
    }
    .pages1_tool .pages1_tool_block {
        /*padding: 10px 5% 15px 5%;*/
    }
}
@media (max-width: 450px) {
    .category_list_container .cate_grid_container .cate_swiper{
        margin: 0 -3% 0px;
    }
/*}
@media (max-width: 420px) {*/
    /* shop tool start */   
    .shop_tool .shop_tool_block{
        grid-gap: 8px;
    }
    .shop_tool .shop_tool_block .tool-item {
        gap: 10px;       
        padding: 8px;
    }    
    .shop_tool .shop_tool_block .tool-item img {
        /*width: 35px;*/
        width: 30px;
    }
    .shop_tool .shop_tool_block .tool-item p {
        font-size: 14px;
        line-height: 20px;
    }
    /* shop tool end */
    .category_list_container .cate_grid_container .cate_list_wrapper .item .item_desc h3 {
        font-size: 12px;
    }

    .shop_tool.shop_tool_adjust .shop_tool_block .tool-item{
        gap:5px;
        /* width: calc(100vw / 3 - 20px);*/
        width: -webkit-fill-available;
        padding: 14px 0 8px 0;
        height: 80px;
    }
    .shop_tool.shop_tool_adjust  .shop_tool_block .tool-item p{
        font-size: 13px;
    }

    .shop_tool.eight_items .shop_tool_block{
        grid-gap: 5px;
    }
    .shop_tool.eight_items .shop_tool_block .tool-item{
        height: 75px;
    }
    .shop_tool.eight_items .shop_tool_block .tool-item span{
        height: 30px;
    }
    .shop_tool.eight_items .shop_tool_block .tool-item p{
        font-size: 10px;
    }
    .pages1_tool.eight_items .pages1_tool_block{
        grid-gap: 5px;
    }
    .pages1_tool.eight_items .pages1_tool_block .tool-item{
        height: 75px;
    }
    .pages1_tool.eight_items .pages1_tool_block .tool-item span{
        height: 30px;
    }
    .pages1_tool.eight_items .pages1_tool_block .tool-item p{
        font-size: 10px;
    }
}


@media (max-width: 375px) {
    .pages1_tool {
        padding: 0;
    }
    .pages1_tool .pages1_tool_block {
        /*padding: 0 20px 30px 20px;*/
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 16px
    }
    .pages1_tool .pages1_tool_block .tool-item {
        width: 96px;
        /*height: 96px;*/
        height: 80px;
        text-align: center;
    }
    .pages1_tool .pages1_tool_block .tool-item img {
        width: 31px;
    }
    .pages1_tool .pages1_tool_block .tool-item p {
        width: 58px;
        font-size: 12px;
        line-height: 17px;
    }
}