/* 搜索弹窗popup [ */
.atunushome_footer{
    background-color: #333333;
    padding-top: 40px;
}
.atunus_popup_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: flex-start;
    z-index: 2026;
}

.atunus_popup_modal {
    background-color: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    max-width: 800px;
    text-align: center;
    position: relative;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    background-color: #F5F5F4;
    margin-top: 40px;
}

.atunus_popup_modal img{
    width: 100%;
    object-fit: cover;
}

.atunus_popup_modal_content{
    padding: 20px;
    box-sizing: border-box;
}

.atunus_popup_modal_content strong{
    color: #0A0A0A;
    font-weight: 400;
    font-size: 16px;
    margin: 0;
    display: inline-block;
}
.atunus_popup_modal_content p{
    font-size: 14px;
    color: #444444;
}

.atunus_popup_closebtn {
    cursor: pointer;
    border: none;
    background-color: unset;
    position: absolute;
    right: 20px;
    top: 20px;
}

.atunus_popup_click {
    cursor: pointer;
    background-color: #FFFFFF;
    display: inline-block;
    font-size: 14px;
    color: #000;
    font-weight: 400;
}
/* 搜索弹窗popup ] */
/* 搜索结果页 [ */
.swp-result-item--img-container{
    flex: 0 0 auto!important;
    width: 100px!important;
}
.swp-rp-main h1{
    font-size: 28px;
    color: #0A0A0A;
}
.swp-rp-main .entry-title a{
    font-size: 22px;
    color: #0A0A0A;
    font-weight: bold;
}
@media screen and (max-width: 768px) {
    .swp-rp-main .entry-title a{
        font-size: 14px;
        color: #0A0A0A;
    }
}
/* 搜索结果页 ] */
/* 搜索弹窗 [ */
.s_e_search_configuration {
    cursor: pointer;
    display: inline-block;
}
.s_e_s_configuration_overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2026;
}
.s_e_s_configuration_popup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 2025;
    width: 90%;
    max-width: 1200px;
    height: 90%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.s_e_s_c_popup_header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px 10px 20px;
    border-bottom: 1px solid #000;
}
.s_e_s_c_popup_header .s_e_s_c_p_header_title {
    font-weight: 600;
    font-size: 22px;
}
.s_e_s_c_popup_header .s_e_s_c_p_header_close {
    cursor: pointer;
    font-size: 22px;
}

.s_e_s_c_popup_search{
    display: flex;
    padding: 40px 50px 20px 50px;
    box-sizing: border-box;
    align-items: center;
    justify-content: space-between;
}
.s_e_s_c_popup_search .s_e_s_c_p_search_svg{
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.s_e_s_c_popup_search .s_e_s_c_p_search_svg:hover svg path{
    stroke:#007bff;
}
.s_e_s_c_popup_search .s_e_s_c_p_search_input{
    width: 100%;
    border: 0px;
    padding: 20px;
    box-sizing: border-box;
    border-bottom: 1px solid #9b9898;
    font-size: 20px;
}
.s_e_s_c_popup_search .s_e_s_c_p_search_input:focus{
    outline: none;
    background:transparent;
}
.s_e_s_c_popup_search .s_e_s_c_p_search_clear{
    opacity: 0;
    font-size: 22px;
    border: 1px solid #8f8888;
    width: 30px;
    height: 30px;
    background-color: aliceblue;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    cursor: pointer;
    transition: all .3s ease-out;
}
.s_e_s_c_popup_search .s_e_s_c_p_search_clear:hover{
    color: #ffffff;
    background-color: rgb(213, 215, 216);
}
.s_e_s_c_popup_recommend{
    padding: 20px 50px 20px 50px;
    overflow-y: auto;
    max-height: 50%;
}
.s_e_s_c_popup_recommend a{
    display: inline-block;
    text-decoration: unset;
    color: unset;
    padding: 8px;
    background-color: aliceblue;
    border-radius: 3px;
    margin: 0 6px 20px 6px;
}
.s_e_s_c_popup_recommend a:hover{
    color: #007bff;
}
.s_e_s_c_popup_result{
    padding: 0px 20px 20px 20px;
    display: none;
    flex-direction: column;
    align-items: center;
    flex: 1;
    overflow-y: hidden;
}
.s_e_s_c_p_result_tabs{
    display: flex;
    position: relative;
}
.s_e_s_c_p_r_tabs_item{
    min-width: 80px;
    padding: 20px 20px 10px 20px;
    font-size: 16px;
    text-align: center;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom: 3px solid transparent;
    opacity: 0.6;
    cursor: pointer;
    transition: all .3s ease-out;
    font-weight: 600;
}
.s_e_s_c_p_r_tabs_item:hover {
    opacity: 1;
    background-color: #c9c5c5;
    border-color: #c2c1c1;;
}
.s_e_s_c_p_result_tabs .s_e_s_c_p_r_tabs_active{
    opacity: 1;
}
.s_e_s_c_p_result_tabs .s_e_s_c_p_r_tabs_line {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 3px;
    border-radius: 3px;
    background-color: #bbb8b9;
    transition: all .3s ease-out;
}
.s_e_s_c_p_result_content{
    width: 100%;
    position: relative;
    margin-top: 20px;
    height: 100%;
}
.s_e_s_c_p_r_content_pane{
    color: #333;
    left: 0;
    overflow: hidden;
    width: 0px;
    height: 0px;
    transform: translateY(20px);
}
.s_e_s_c_p_r_content_pane>a{
    text-decoration: unset;
    color: unset;
    display: flex;
    width: 98%;
    margin-bottom: 20px;
}
.s_e_s_c_p_r_content_pane .s_e_s_c_p_r_c_pane_img{
    height: 120px;
    width: 20%;
    max-width: 120px;
}
.s_e_s_c_p_r_content_pane .s_e_s_c_p_r_c_pane_img img{
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    transform: translate(6px, 3px);
    transition: all .3s ease-out;
}
.s_e_s_c_p_r_content_pane>a:hover .s_e_s_c_p_r_c_pane_img img{
    transform: translate(0px, 0px);
    box-shadow: 10px 8px 0px 0px rgba(0, 0, 0, 0.1);
}
.s_e_s_c_p_r_content_pane .s_e_s_c_p_r_c_pane_content{
    margin-left: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 80%;
}
.s_e_s_c_p_r_c_pane_content .s_e_s_c_p_r_c_p_content_title{
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.s_e_s_c_p_r_c_p_content_title span{
    color: #ea983e;
    background-color: beige;
}
.s_e_s_c_p_r_c_pane_content .s_e_s_c_p_r_c_p_content_descript{
    font-size: 14px;
    margin-bottom: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.s_e_s_c_p_r_c_p_content_descript span{
    color: #ea983e;
    background-color: beige;
}
.s_e_s_c_p_r_c_pane_content .s_e_s_c_p_r_c_p_content_price{
    font-size: 14px;
    font-weight: 600;
    color: #EC6B6D;
}
.s_e_s_c_p_r_c_pane_content .s_e_s_c_p_r_c_p_content_time{
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.s_e_s_c_p_r_c_p_content_time span{
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.s_e_s_c_p_r_c_p_content_time span svg{
    margin-right: 8px;
}
.s_e_s_c_p_r_c_pane_pages_content{
    
}
#s_e_s_c_p_r_c_pane_pages>a{
    border-bottom: 1px solid #000;
}
.s_e_s_c_p_r_content_pane.s_e_s_c_p_content_active {
    transform: translateY(0px);
    transition: transform .3s ease-out;
    width: 100%;
    height: unset;
    /*  */
    max-height: 80%;
    overflow-y: auto;
}
.s_e_s_c_p_r_content_pane.s_e_s_c_p_content_active::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: #333;
}
.s_e_s_c_p_r_content_pane.s_e_s_c_p_content_active::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}
.s_e_s_c_popup_footer{
    padding: 20px 40px;
    box-sizing: border-box;
    border-top: 1px solid #000;
    display: none;
}
.s_e_s_c_popup_footer .s_e_s_c_p_footer_button{
    display: flex;
    width: 100%;
    background-color: rgb(132, 133, 134);
    padding: 8px 10px;
    box-sizing: border-box;
    text-align: center;
    border-radius: 50px;
    color: #fff;
    text-decoration: unset;
    align-items: center;
    justify-content: center;
}
.s_e_s_c_p_footer_button .s_e_s_c_p_f_button_text{
    transition: all .3s ease-out;
}
.s_e_s_c_p_footer_button .s_e_s_c_p_f_button_svg{
    width: 0px;
    overflow: hidden;
    margin-left: 12px;
    transition: all .3s ease-out;
    display: flex;
}
.s_e_s_c_popup_footer .s_e_s_c_p_footer_button:hover .s_e_s_c_p_f_button_svg{
    width: 32px;
}
.s_e_s_c_p_r_c_p_c_no_results{
    font-size: 26px;
    font-weight: 600;
    text-align: center;
    margin-top: 20%;
    color: rgba(0, 0, 0, 0.5);
}
.s_e_s_c_p_r_c_p_content_title_circle{
    display: inline-block;
    width: 4px;
    height: 4px;
    background-color: #000;
    border-radius: 50%;
    margin: 0 8px;
}
.s_e_s_c_p_result_loadanimation{
    position: absolute;
    border-radius: 10px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    box-sizing: border-box;
    left: 50%;
    top: 0%;
    transform: translate(-50%, 0px);
}
@media screen and (max-width: 768px) {
    .s_e_s_c_p_r_tabs_item{
        box-sizing: border-box;
    }
    .s_e_s_c_popup_footer{
        padding: 20px 40px;
    }
    .s_e_s_c_popup_result{
        padding: 20px 20px 20px 20px;
    }
    .s_e_s_c_p_r_tabs_item{
        font-size: 14px;
    }
    .s_e_s_c_popup_search{
        padding: 20px 20px 20px 20px;
    }
    .s_e_s_c_p_r_content_pane .s_e_s_c_p_r_c_pane_img{
        height: 80px;
    }
    .s_e_s_c_p_r_c_pane_content .s_e_s_c_p_r_c_p_content_title{
        font-size: 16px;
    }
    .s_e_s_c_p_r_c_pane_content .s_e_s_c_p_r_c_p_content_price{
        font-size: 14px;
    }
    .s_e_s_c_popup_search .s_e_s_c_p_search_input{
        font-size:16px;
    }
}
/* 搜索弹窗 ] */
/* footer [ */
.spicycat_atunushome_footer_content_flex{
    background-color: #333333;
    border-bottom: 1px solid #ffffff;
    padding: 40px 60px;
}
.spicycat_atunushome_footer{
    width: 100%;
    display: flex;
    justify-content: space-between;
    max-width: 1700px;
    box-sizing: border-box;
    margin: 0 auto;
}
.spicycat_atunushome_footer_left {
    display: flex;
    width: 60%;
    justify-content: space-around;
}
.spicycat_atunushome_footer_left .s_a_f_left_item {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.s_a_f_left_item .s_a_f_l_item_pctitle {
    display: block;
    font-size: 20px;
}
.s_a_f_l_item_pctitle a {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}
.s_a_f_left_item .s_a_f_l_item_phtitle {
    display: none;
}
.s_a_f_left_item .s_a_f_l_item_list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.s_a_f_left_item .s_a_f_l_item_list li {
    padding: 10px 3px;
}
.s_a_f_left_item .s_a_f_l_item_list li a {
    border-bottom: 1px dashed #fff0;
}
.s_a_f_left_item .s_a_f_l_item_list li a:hover {
    border-bottom: 1px dashed #fff;
}
.spicycat_atunushome_footer_left a {
    color: #fff;
    display: inline-block;
    text-decoration: none;
}
.spicycat_atunushome_footer_right{
    width: 30%;
}
.spicycat_atunushome_footer_right .s_a_f_r_coupon_title{
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}
.spicycat_atunushome_footer_right .s_a_f_r_socialmedia_title{
    font-size: 18px;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 20px;
}
.spicycat_atunushome_footer_right .s_a_f_r_socialmedia_list{
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.s_a_f_r_socialmedia_list a{
    text-decoration: none;
    margin-right: 20px;
}
.s_a_f_r_payments .s_a_f_r_payments_title{
    font-size: 18px;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 20px;
}
.s_a_f_r_payments .s_a_f_r_payments_img{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
}
.s_a_f_r_payments .s_a_f_r_payments_img img{
    width: 42px;
    object-fit: contain;
}
.s_a_f_r_payments img{
    width: 100%;
    object-fit: contain;
}
.spicycat_atunushome_footer_copyright_content_flex{
    background-color: #333333;
    padding: 12px 60px;
}
.spicycat_atunushome_footer_copyright_content{
    max-width: 1700px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.spicycat_atunushome_footer_copyright{
    display: flex;
    justify-content: flex-start;
    box-sizing: border-box;
    color: #ffffff;
    align-items: center;
    font-size: 12px;
    justify-content: center;
    margin-bottom: 4px;
}
.spicycat_atunushome_footer_copyright a{
    color: #ffffff;
    font-size: 12px;
    text-decoration: underline;
}
.spicycat_atunushome_footer_copyright .s_a_f_copyright_circle{
    width: 3px;
    height: 3px;
    background-color: #ffffff;
    margin: 0 10px;
    border-radius: 50px;
}
.spicycat_atunushome_footer_contact{
    display: flex;
    flex-wrap: wrap;
}
.spicycat_atunushome_footer_contact a{
    color: #ffffff;
    font-size: 12px;
    text-decoration: underline;
    margin-right: 20px;
}
@media screen and (max-width: 1340px) {
    .spicycat_atunushome_footer_content_flex{
        padding: 40px 40px;
    }
    .spicycat_atunushome_footer_copyright{
        width: 100%;
        justify-content: center;
        margin-bottom: 10px;
    }
    .spicycat_atunushome_footer_contact{
        width: 100%;
        justify-content: center;
    }
}
@media screen and (max-width: 1200px) {
    .spicycat_atunushome_footer_content_flex{
        padding: 40px 20px;
    }

}
@media screen and (max-width: 768px) {
    .spicycat_atunushome_footer{
        flex-wrap: wrap;
    }
    .spicycat_atunushome_footer_left {
        flex-direction: column;
        padding: 0;
        width: 100%;
    }
    .spicycat_atunushome_footer_left .s_a_f_left_item {
        width: unset;
        display: flex;
        flex-direction: column;
        border-bottom: 1px solid #ccc;
    }
    .spicycat_atunushome_footer_left .s_a_f_left_item:first-child {
        border-top: 1px solid #ccc;
    }
    .s_a_f_left_item .s_a_f_l_item_pctitle {
        display: none;
    }
    .s_a_f_left_item .s_a_f_l_item_phtitle {
        cursor: pointer;
        box-sizing: border-box;
        width: 100%;
        text-align: left;
        padding: 20px 10px;
        color: #fff;
        font-size: 18px;
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .s_a_f_left_item .s_a_f_l_item_list {
        overflow: hidden;
        max-height: 0;
        transition: max-height .3s ease-out;
    }
    .s_a_f_left_item .s_a_f_l_item_list li{
        padding: 10px 10px;
    }
    .s_a_f_i_phtitle_icon{
        position: relative;
        width: 15px;
        height: 15px;
    }
    .s_a_f_i_phtitle_icon:after,
    .s_a_f_i_phtitle_icon:before {
        position: absolute;
        content: "";
        left: 50%;
        top: 50%;
        background-color: #ffffff;
        transform: translate(-50%, -50%);
        transition: transform .5s;
    }
    .s_a_f_i_phtitle_icon:before {
        width: 100%;
        height: 2px;
    }
    .s_a_f_i_phtitle_icon:after {
        width: 2px;
        height: 100%;
    }
    .s_a_q_accordion_open .s_a_f_i_phtitle_icon:after{
        transform: translate(-50%, -50%) rotate(-90deg);
    }
    .spicycat_atunushome_footer_right{
        width: 100%;
        margin-top: 20px;
        padding: 0 10px;
        box-sizing: border-box;
    }
    .spicycat_atunushome_footer_content_flex{
        padding: 40px 10px;
    }
    .spicycat_atunushome_footer_copyright_content_flex{
        padding: 12px 10px;
    }
    .spicycat_atunushome_footer_copyright{
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }
    .spicycat_atunushome_footer_copyright .s_a_f_copyright_circle1{
        display: none;
    }
    .s_a_f_copyright_message{
        margin-bottom: 4px;
    }
    .spicycat_atunushome_footer_contact a{
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }
}
/* footer ] */
/* footer 注册输入框短码的样式 [ */
.spicycat_atunushome_footer_registration {
    margin-bottom: 10px;
}
.spicycat_atunushome_footer_registration .woocommerce-form-register {
    display: flex;
    align-items: center;
    width: 100%;
}
.spicycat_atunushome_footer_registration .woocommerce-form-register label {
    display: none !important;
}
.spicycat_atunushome_footer_registration .woocommerce-form-register .woocommerce-Input {
    background-color: unset;
    border: 1px solid #ffffff;
    color: #ffffff;
    padding: 12px 16px;
    width: 100%;
}
.spicycat_atunushome_footer_registration .woocommerce-form-register .form-row {
    padding: 0;
    margin: 0;
    width:100%;
}
.spicycat_atunushome_footer_registration .woocommerce-form-register .form-row:nth-child(5){
    width:30%;
}
.spicycat_atunushome_footer_registration .woocommerce-form-register .woocommerce-Input::placeholder {
    color: #ffffff;
}
.spicycat_atunushome_footer_registration .woocommerce-form-register p:nth-child(2) {
    display: none;
}
.spicycat_atunushome_footer_registration .woocommerce-form-register .woocommerce-privacy-policy-text {
    display: none;
}
.spicycat_atunushome_footer_registration .woocommerce-form-register .woocommerce-form-register__submit {
    font-weight: 600;
    background-color: #ffffff;
    border-radius: 0px;
    color: rgba(10, 10, 10, 1);
    border: unset;
    padding: 0px 20px;
    box-sizing: border-box;
    height: 45px;
    font-size: 14px;
    text-transform: capitalize;
}
@media screen and (max-width: 768px) {
    .spicycat_atunushome_footer_registration .woocommerce-form-register .woocommerce-Input{
        min-width: unset;
    }
    .spicycat_atunushome_footer_registration .woocommerce-form-register .woocommerce-form-register__submit{
            border: unset;
            font-size: 12px;
            box-sizing: border-box;
            padding: 0 10px;
            height: 45px;
    }
}
/* footer 注册输入框短码的样式 ] */