﻿.product-actions {
    display: flex;
    justify-content: space-between;
    flex-direction: unset !Important;
    flex-wrap: wrap;
    margin-top: 10px;
}

    .product-actions a {
        width: 48%;
    }

.share_list {
    display: flex;
    flex-wrap: wrap;
}

    .share_list a {
        color: #4285f4;
        text-decoration: none;
        width: 100%
    }

.product-actions > div {
    width: 48%;
}

.share-dropdown {
    display: flex;
    flex-wrap: wrap;
    background: #fff;
    top: 40px;
    z-index: 999;
    padding: 10px 0;
    display: none;
    box-shadow: 0 2px 8px rgb(0 0 0 / 20%);
    border-radius: 0 0 10px 10px
}

    .share-dropdown a {
        width: 100%;
        text-decoration: none;
        font-size: 14px;
        line-height: 35px;
        padding-left: 20px;
        color: #333;
        display: flex;
        align-items: center;
    }

        .share-dropdown a img {
            margin-right: 10px;
        }

.share-dropdown2 {
    display: flex;
    flex-wrap: wrap;
    background: #fff;
    top: 40px;
    z-index: 999;
    padding: 10px 0;
    display: none;
    box-shadow: 0 2px 8px rgb(0 0 0 / 20%);
    border-radius: 0 0 10px 10px
}

    .share-dropdown2 a {
        width: 100%;
        text-decoration: none;
        font-size: 14px;
        line-height: 35px;
        padding-left: 20px;
        color: #333;
        display: flex;
        align-items: center;
    }

        .share-dropdown2 a img {
            margin-right: 10px;
        }

.filter-option {
    background: #269f2b;
    color: #fff;
}

.mobile {
    display: none;
}

.mobile-nav {
    gap: 5px;
}

    .mobile-nav .nav-item {
        padding: 8px 15px;
    }

.action-btn {
    white-space: nowrap;
}
/*.buysite_list .action-btn:nth-child(1){background-color:#15c377!important;font-weight:bold;}*/
@media screen and (max-width:768px) {
    .mobile {
        display: flex;
        flex-wrap: wrap;
    }

    .pc {
        display: none;
    }

    .product-actions a {
        width: 100%;
        text-align: center;
    }

    .product-details {
        margin-bottom: 10px
    }

    .swiper {
        max-width: 92vw;
    }
}

</style >

<style >
.thum {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -5px;
    margin-bottom: 20px;
}

.thum .item {
    width: calc(100% / 6 - 10px); /* 8等分减去间距 */
    height: auto;
    border: 1px solid #ccc;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5px;
    box-sizing: border-box; /* 避免边框影响宽度计算 */
}

@media screen and (max-width:768px) {
    .thum .item {
        width: calc(20% - 10px); /* 减去左右margin */
    }
}

.htum .item img {
    max-width: 100%;
    max-height: 100%;
}

.mobile-menu-btn {
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: white;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    z-index: 1000;
    padding-top: 60px;
}

    .mobile-menu.active {
        display: block;
    }
