/*
* Template Name: BreezyCV 
* ??????��http://www.bootstrapmb.com/
* Version: 1.2.0
*/

/* ------------------------------------------------------------
1. Fonts
2. General Styles
3. Page loadig animation
4. Header
5. Page Content
6. Elements
7. Single Page (Blog Posts, 404 etc.)
8. Media Queries
9. Pricing
10. Updates
------------------------------------------------------------ */

/* ------------------------------------------------------------
1. Fonts
------------------------------------------------------------ */
/* Linear Icons Font - loaded by system header */
/* FontAwesome Free Icons Font - loaded by module.php */


/* ------------------------------------------------------------
2. General Styles
------------------------------------------------------------ */
html {
    margin: 0;
    width: 100%;
    height: 100%;
    min-height: 100%;
    overflow: hidden;
}

body {
    background-color: #f0f5f7;
    margin: 0;
    width: 100%;
    height: 100%;
    min-height: 100%;
    font-size: 15px;
    font-family: 'Poppins', Helvetica, sans-serif;
    line-height: 1.65em;
    overflow: hidden;
    color: #555;
    background-repeat: no-repeat;
    background-position: center;
    background-position: 50% 50%;
    background-size: cover;
}

h1, h2, h3, h4, h5, h6 {
    color: #222;
    font-family: 'Poppins', Helvetica, sans-serif;
    font-weight: 600;
}

h1 {
    font-size: 32px;
}

h2 {
    font-size: 27px;
}

h3 {
    font-size: 21px;
}

h4 {
    font-size: 18px;
}

h5 {
    font-size: 16px;
}

h6 {
    font-size: 14px;
}

a {
    color: #0099cc;
    text-decoration: none;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

p {
    margin-bottom: 10px;
}

.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}

.clearfix:after {
    clear: both;
}

.page {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 100%;
    padding: 0 100px;
    overflow: hidden;
}

.page-content {
    position: relative;
    width: 100%;
    max-width: 1280px;
    min-height: 80vh;
    margin: 10vh auto;
    padding: 0;
    background: linear-gradient(160deg, var(--theme-primary, #7c4dff), var(--theme-secondary, #448aff));
    -webkit-box-shadow: 0 8px 60px rgba(124, 77, 255, .18), 0 0 100px -5px rgba(0, 0, 0, .15);
    box-shadow: 0 8px 60px rgba(124, 77, 255, .18), 0 0 100px -5px rgba(0, 0, 0, .15);
    border-radius: 32px;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
}




.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--theme-primary, #7c4dff);
    color: #fff;
    border: 2px solid var(--theme-primary, #7c4dff);
}

.btn-secondary {
    border-color: #d5d5d5;
    background-color: #fff;
    box-shadow: 0px 10px 10px -8px #d5d5d5;
    color: #666;
}

.btn-secondary:hover,
.btn-secondary:focus {
    color: #333;
    border-color: #d5d5d5;
    background-color: #d5d5d5;
}

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}


/* =============================================================================
3. Page loadig animation
============================================================================= */
.no-js .preloader {
    display: none;
}

.preloader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: #fff;
}

.preloader-animation {
    position: absolute;
    top: 50%;
    left: 50%;
    text-align: center;
    background-color: inherit;
    color: inherit;
    opacity: 1;
    transition: opacity 0.3s;
    transform: translate3d(-50%, -50%, 0);
}

.preloader-spinner {
    width: 52px;
    height: 52px;
    margin: 100px auto;
    background-color: var(--theme-primary, #7c4dff);

    border-radius: 100%;
    -webkit-animation: sk-scaleout 1.0s infinite ease-in-out;
    animation: sk-scaleout 1.0s infinite ease-in-out;
}

@-webkit-keyframes sk-scaleout {
    0% {
        -webkit-transform: scale(0)
    }
    100% {
        -webkit-transform: scale(1.1);
        opacity: 0;
    }
}

@keyframes sk-scaleout {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    100% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
        opacity: 0;
    }
}


/* ------------------------------------------------------------
4. Header
------------------------------------------------------------ */
@media only screen and (min-width: 1025px) {
    .header {
        display: inline-block;
        float: left;
        width: 100%;
        max-width: 380px;
        height: 100%;
        max-height: 80vh;
        min-height: inherit;
        text-align: center;
        padding: 70px 30px 45px;
        overflow: visible;
        position: relative;
    }

    /* 侧边栏专用菜单：桌面端隐藏（侧边栏在桌面端常驻不用滑入菜单） */
    ul.main-menu.yfk-sidebar-nav { display: none; }

    /* --- Navigation --- */
    ul.main-menu {
        position: absolute;
        padding: 15px 0;
        width: 70px;
        text-align: center;
        right: -90px;
        background-color: #fff;
        border-radius: 30px;
        z-index: 999;
        list-style: none;
        top: 3px;
        box-shadow: 0 4px 24px rgba(0, 0, 0, .08), 0 0 0 1px rgba(0, 0, 0, .03);
    }

    ul.main-menu a {
        display: block;
        position: relative;
        color: #b5b6b7;
        padding: 10px;
        transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    }

    ul.main-menu a.active,
    ul.main-menu a:focus,
    ul.main-menu a:hover {
        color: var(--theme-primary, #7c4dff);
    }

    ul.main-menu li.active a {
        color: var(--theme-primary, #7c4dff);
    }

    ul.main-menu .menu-icon {
        display: block;
        font-size: 28px;
        transition: transform 0.25s ease;
    }

    ul.main-menu a:hover .menu-icon {
        transform: scale(1.1);
    }

    ul.main-menu .link-text {
        position: absolute;
        width: auto;
        visibility: hidden;
        opacity: 0;
        color: #fff;
        padding: 4px 14px;
        background: var(--theme-primary, #7c4dff);
        white-space: nowrap;
        right: 0;
        top: -50%;
        margin-top: 50%;
        transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
        z-index: 0;
        border-radius: 8px;
        font-size: 13px;
        font-weight: 500;
        letter-spacing: 0.3px;
        box-shadow: 0 4px 12px rgba(124, 77, 255, .25);
    }

    ul.main-menu a:hover .link-text {
        right: calc(100% + 8px);
        visibility: visible;
        opacity: 1;
    }

    /* --- End Navigation --- */
}


.header-photo {
    position: relative;
    width: 100px;
    margin: 0 auto 25px;
    z-index: 1;
}

.header-photo img {
    width: 100%; height: auto;
    background-color: #ffffff90;
    border: 3px solid rgba(255,255,255,0.85);
    border-radius: 300px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .15);
    transition: transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.header-photo:hover img {
    transform: scale(1.05);
}

.header-photo:after {
    position: absolute;
    opacity: 0.2;
    top: 7%;
    left: 7%;
    border-radius: 300px;
    content: '';
    height: calc(100% + 0px);
    width: calc(100% + 0px);
    background-image: repeating-radial-gradient(center center, rgba(255,255,255,0.8), rgba(255,255,255,0.8) 1px, transparent 0px, transparent 100%);
    background-size: 6px 6px;
    z-index: -1;
}

.header-titles h2 {
    font-size: 25px;
    font-weight: 700;
    color: #fff;
    margin: 5px 0 7px;
    line-height: 1.2em;
    letter-spacing: -0.5px;
}

.header-titles h4 {
    font-size: 16px;
    font-weight: 300;
    color: rgba(255,255,255,0.8);
    margin: 5px 0;
    line-height: 1.2em;
}

/* --- Social Links --- */
.social-links {
    margin: 20px 0;
}

.social-links ul {
    list-style: none;
    padding: 0;
}

.social-links ul li {
    display: inline-block;
}

.social-links ul li a {
    color: #fff;
    border-radius: 20px;
    font-size: 18px;
    padding: 0;
    height: 30px;
    width: 30px;
    display: block;
    line-height: 30px;
    text-align: center;
    opacity: .9;
}

.social-links ul li a:hover {
    opacity: 1;
    background-color: rgba(255, 255, 255, .2);
}

/* --- End Social Links --- */

.header-buttons {
    margin-top: 40px;
}

.header-buttons .btn-primary {
    background-color: rgba(255,255,255,0.15);
    color: #fff;
    border: 2px solid rgba(255,255,255,0.4);
    backdrop-filter: blur(8px);
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.header-buttons .btn-primary:hover {
    background-color: #fff;
    color: var(--theme-primary, #7c4dff);
    border-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .15);
}

.header .copyrights {
    color: #fff;
    width: 380px;
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 5px 20px 25px;
    line-height: 14px;
    font-size: 12px;
    text-align: center;
}

/* ------------------------------------------------------------
5. Page Content
------------------------------------------------------------ */
.content-area {
    position: absolute;
    right: 0;
    background-color: transparent;
    height: 100%;
    width: 100%;
    max-width: calc(100% - 380px);
}

.animated-sections {
    position: relative;
    height: 100%;
    -webkit-perspective: 1500px;
    -moz-perspective: 1500px;
    perspective: 1500px;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
}

.animated-section {
    position: absolute;
    background-color: #fff;
    height: 100%;
    width: 100%;
    border-radius: 30px;
    padding: 60px;
    opacity: 0;
    overflow: auto;
    visibility: hidden;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    background-repeat: no-repeat;
    background-position: center;
    background-position: 50% 50%;
    background-size: cover;
}

.single-page-content {
    position: absolute;
    background-color: #fff;
    height: 100%;
    width: 100%;
    border-radius: 30px;
    padding: 50px 25px;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

.section-active,
.no-js .animated-section {
    opacity: 1;
    overflow: auto;
    visibility: visible;
    z-index: 99;
}

/* --- Custom ScrollBar Customization --- */
.ps > .ps__scrollbar-y-rail {
    margin-right: 10px;
    margin-top: 30px;
    margin-bottom: 30px;
    border-radius: 20px;
}

.ps > .ps__scrollbar-y-rail > .ps__scrollbar-y {
    background-color: #b5b6b7;
}

.ps:hover > .ps__scrollbar-y-rail:hover > .ps__scrollbar-y {
    background-color: var(--theme-primary, #7c4dff);
}

.ps > .ps__scrollbar-y-rail {
    width: 12px;
}

.ps > .ps__scrollbar-y-rail:hover > .ps__scrollbar-y, .ps > .ps__scrollbar-y-rail:active > .ps__scrollbar-y,
.ps:hover.ps--in-scrolling.ps--y > .ps__scrollbar-y-rail > .ps__scrollbar-y,
.ps.ps--in-scrolling.ps--y > .ps__scrollbar-y-rail > .ps__scrollbar-y {
    width: 8px;
}

/* --- End Custom ScrollBar Customization --- */

.page-title {
    display: inline-block;
    position: relative;
    padding-right: 25px;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

.page-title h2 {
    position: relative;
    font-size: 28px;
    z-index: 1;
    letter-spacing: -0.5px;
}

.page-title h2 span {
    color: var(--theme-primary, #7c4dff);
}

.page-title:after {
    position: absolute;
    opacity: 0.35;
    top: 10px;
    right: 0;
    content: '';
    height: 30px;
    width: 50px;
    background-image: radial-gradient(circle, var(--theme-primary, #7c4dff) 1px, transparent 1px);
    background-size: 6px 6px;
    z-index: 0;
}


/* Form controls */
.form-group {
    position: relative;
    margin: 0 0 21.5px;
}

.form-control,
.form-control:focus {
    height: 42px;
}

.form-control,
.form-control:focus,
.has-error .form-control,
.has-error .form-control:focus {
    position: relative;
    border: 2px solid #d5d6d7;
    border-radius: 5px;
    display: block;
    font-size: 1em;
    line-height: 1.4;
    margin: 0;
    padding: 10px 25px 10px 12px;
    width: 100%;
    background: 0 0;
    background-color: transparent;
    text-align: left;
    color: inherit;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    outline: none;
    font-family: 'Poppins', Helvetica, sans-serif;
    box-shadow: 0px 10px 10px -8px rgba(0, 0, 0, .1);
}

textarea.form-control, textarea.form-control:focus {
    height: auto;
}

.form-control ~ .form-control-border {
    content: "";
    position: absolute;
    z-index: -1;
    left: 0;
    right: 100%;
    bottom: 0;
    border-radius: 5px;
    top: 0;
    opacity: 0;
    background: transparent;
    border: 2px solid var(--theme-primary, #7c4dff);
    border-right-width: 0;
    height: 100%;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.form-control:focus ~ .form-control-border {
    left: 0;
    right: 0;
    height: 100%;
    z-index: 1;
    opacity: 1;
    border-right-width: 2px;
}

.has-error .form-control ~ .form-control-border {
    border-color: #ff4c4c;
}

/* Placeholders */
.form-control::-moz-placeholder {
    color: #adadac;
}

.form-control:-ms-input-placeholder {
    color: #adadac;
}

.form-control::-webkit-input-placeholder {
    color: #adadac;
}

/* /Placeholders */

.form-group .help-block {
    position: absolute;
    display: inline-block;
    padding: 0px 5px;
    font-size: 0.93em;
    line-height: 1.75em;
    margin: -2px 0 0 10px;
    color: #fff;
    background: #ff4e4e;
}

.form-group .help-block:after {
    content: " ";
    position: absolute;
    left: 5px;
    bottom: 100%;
    width: 0;
    height: 0;
    border-bottom: 10px solid #ff4e4e;
    border-right: 10px solid transparent;
}

.form-group .help-block:empty {
    display: none;
}

.form-group-with-icon i {
    position: absolute;
    font-size: 16px;
    top: 13px;
    right: 13px;
    color: #d3d3d3;
}

.form-group-with-icon.form-group-focus i {
    color: var(--theme-primary, #7c4dff);
}

.form-group.form-group-w-checkbox {
    padding-top: 0;
    padding-bottom: 8px;
    margin-bottom: 17px;
}

.form-group-with-icon.form-group-w-checkbox {
    padding-top: 8px;
    padding-left: 52px;
    margin-bottom: 25px;
}

.form-group .form-control-checkbox + label,
.form-group.form-group-focus .form-control-checkbox + label {
    position: relative;
    display: inline;
    left: 0;
    top: 0;
    font-size: 1em;
    opacity: 1;
}

.form-group .form-control-checkbox,
.form-group.form-group-focus .form-control-checkbox {
    display: inline-block;
    width: auto;
    height: auto;
    top: 2px;
}

.form-group.form-group-w-checkbox .help-block {
    top: 100%;
    left: 0;
    margin-left: 0;
}

.form-group.form-group-with-icon.form-group-w-checkbox .help-block {
    left: 52px;
}

.form-group label {
    position: absolute;
    top: 10px;
    left: 15px;
    z-index: -1;
    color: #a5a6a7;
    transition: 0.3s;
}

.form-group .form-control:focus ~ label,
.form-group.form-group-focus .form-control ~ label {
    color: var(--theme-primary, #7c4dff);
    top: -20px;
    left: 0;
    z-index: 1;
    font-size: 13px;
}

.form-control, .form-control:focus, .has-error .form-control, .has-error .form-control:focus, input[type="search"], input[type="password"], input[type="text"], .header-search input.form-control {
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    transform: translateZ(0);
}

/* /Form controls */


/* ------------------------------------------------------------
6. Elements
------------------------------------------------------------ */
.block-title {
    display: inline-block;
    position: relative;
    padding-right: 12px;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.block-title h3 {
    position: relative;
    font-size: 21px;
    z-index: 1;
}

.block-title h3 span {
    color: var(--theme-primary, #7c4dff);
}

.block-title:after {
    position: absolute;
    opacity: 0.45;
    top: 10px;
    right: 0;
    content: '';
    height: 20px;
    width: 30px;
    background-image: -webkit-repeating-radial-gradient(center center, var(--theme-primary, #7c4dff), var(--theme-primary, #7c4dff) 1px, transparent 0px, transparent 100%);
    background-image: -moz-repeating-radial-gradient(center center, var(--theme-primary, #7c4dff), var(--theme-primary, #7c4dff) 1px, transparent 0px, transparent 100%);
    background-image: -ms-repeating-radial-gradient(center center, var(--theme-primary, #7c4dff), var(--theme-primary, #7c4dff) 1px, transparent 0px, transparent 100%);
    -webkit-background-size: 6px 6px;
    -moz-background-size: 6px 6px;
    background-size: 6px 6px;
    z-index: 0;
}

/* --- White Spaces --- */
.white-space-10 {
    padding-bottom: 10px;
}

.white-space-20 {
    padding-bottom: 20px;
}

.white-space-30 {
    padding-bottom: 30px;
}

.white-space-40 {
    padding-bottom: 40px;
}

.white-space-50 {
    padding-bottom: 50px;
}

.white-space-60 {
    padding-bottom: 60px;
}

.white-space-70 {
    padding-bottom: 70px;
}

/* --- End White Spaces --- */

/* --- Simple Info List --- */
.info-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list ul li {
    margin-bottom: 10px;
}

.info-list .title {
    color: var(--theme-primary, #7c4dff);
    margin-right: 5px;
    font-weight: 600;
}

/* --- End Simple Info List --- */

/* --- Info block with Icon --- */
.info-block-w-icon {
    margin-bottom: 25px;
}

.info-block-w-icon .ci-text h4 {
    margin: 5px 0;
}

.info-block-w-icon .ci-text p {
    font-size: .95em;
}

.info-block-w-icon .ci-icon {
    display: table-cell;
    width: 54px;
    padding-right: 25px;
}

.info-block-w-icon i {
    position: relative;
    font-size: 42px;
    color: var(--theme-primary, #7c4dff);
    opacity: .7;
}

/* --- End Info block with Icon --- */

/* --- Info Block with Borders --- */
.lm-info-block {
    position: relative;
    text-align: center;
    width: 100%;
    display: block;
    margin: 0 0 15px 0;
    background-color: #fcfcfc;
    padding: 20px 10px;
    border: 1px solid #e5e5e5;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    overflow: hidden;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.lm-info-block i {
    position: relative;
    font-size: 33px;
    color: var(--theme-primary, #7c4dff);
    z-index: 1;
}

.lm-info-block h4 {
    font-size: 15px;
    margin-top: 8px;
}

.lm-info-block .lm-info-block-value {
    font-size: 30px;
    line-height: 30px;
    font-weight: 400;
    display: block;
    margin: 10px 0;
    color: var(--theme-primary, #7c4dff);
}


.lm-info-block .lm-info-block-value:empty {
    margin: 0;
}

/* --- End of Info Block with Borders --- */




/* --- Contact Form --- */
.controls.two-columns .left-column {
    width: 47%;
    float: left;
    margin-right: 3%;
}

.controls.two-columns .right-column {
    width: 50%;
    float: right;
}

.g-recaptcha {
    margin-bottom: 20px;
}

/* --- End of Contact Form --- */

.map {
    width: 100%;
    height: 140px;
    margin: 0 0 35px;
}


/* --- Portfolio --- */
.portfolio-filters {
    margin-bottom: 5px;
}

.portfolio-filters li {
    display: inline-block;
    font-size: 13px;
    opacity: 0.7;
    margin: 0 10px 10px 0;
}

.portfolio-filters li.active {
    opacity: 1;
}


.search form {
    display: flex;
    align-items: center;
    background: #f8f9fb;
    border-radius: 12px;
    overflow: hidden;
    border: 1.5px solid #eef0f5;
    transition: all 0.3s ease;
}

.search form:focus-within {
    border-color: var(--theme-primary, #7c4dff);
    box-shadow: 0 0 0 3px rgba(124, 77, 255, 0.08);
}

.search input {
    flex: 1 1 0%;   /* Safari 修复：basis 为 0% 而不是 auto */
    min-width: 0;   /* 防止 Safari min-width:auto 撑开容器 */
    display: block;
    padding: 12px 18px;
    border: none !important;
    background: transparent !important;
    font-size: 14px;
    color: #333;
    outline: none;
    box-shadow: none !important;
}

.search input::placeholder {
    color: #b0b5c0;
}

.search button:hover {
    background: var(--theme-secondary, #448aff);
}

.portfolio-filters li a {
    cursor: pointer;
    font-weight: 500;
    position: relative;
    border-radius: 20px;
    border: 1.5px solid #eef0f5;
    display: inline-block;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding: 5px 15px;
    -webkit-transition: all .25s ease;
    transition: all .25s ease;
    -webkit-box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    font-size: 14px;
    background: #fff;
    color: #555;
}

.portfolio-filters li a:hover {
    border-color: var(--theme-primary, #7c4dff);
    color: var(--theme-primary, #7c4dff);
    box-shadow: 0 2px 12px rgba(124,77,255,0.12);
}

.portfolio-filters li.active a {
    background: var(--theme-primary, #7c4dff);
    border-color: var(--theme-primary, #7c4dff);
    color: #fff;
    box-shadow: 0 4px 14px rgba(124,77,255,0.25);
}


.portfolio-grid {
    margin-left: -7px;
    margin-right: -7px;
}

.portfolio-grid figure {
    width: 33.33333%;
    float: left;
    padding: 7px 10px;
    position: relative;
    overflow: hidden;
}

.portfolio-grid.one-column figure {
    width: 100%;
}

.portfolio-grid.two-columns figure {
    width: 50%;
}

.race-click .badge-money {
    position: absolute;
    top: -15px;
    right: -12px;
    z-index: 1;
    padding: 1px 4px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.1;
    color: #fff;
    background: linear-gradient(90deg, #ffb84d, #ff6b88);
    border: 2px solid #ffffff;
    box-shadow: 0 8px 18px rgba(255, 107, 136, .35);
    pointer-events: none; /* �����ŵ�� SKU */
}

.card-premium {
    padding: 1px 4px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    background: linear-gradient(90deg, #ffb84d, #ff6b88);
    border: 2px solid #ffffff;
    box-shadow: 0 8px 18px rgba(255, 107, 136, .35);
}

.stock {
    color: white;
    background: rgba(124, 77, 255, 0.47);
    padding: 2px 4px;
    border-radius: 5px;
    font-size: 12px;
    margin-left: 4px;
    display: none;
}


@media (hover: hover) and (pointer: fine) {
    .race-click:hover .badge-money,
    .race-click:hover .badge-moeny,
    .optional-card:hover {
        transform: translateY(-1px) scale(1.05);
        transition: transform .12s ease;
    }
}

.portfolio-grid.three-columns .goods {
    -webkit-box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    background: #fff;
    border-radius: 16px;
    cursor: pointer;
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    overflow: hidden;
}

.portfolio-grid.three-columns .goods:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
    border-color: rgba(124,77,255,0.15);
}

.portfolio-grid.four-columns figure {
    width: 25%;
}

.portfolio-grid.five-columns figure {
    width: 20%;
}

.portfolio-grid img {
    position: relative;
    display: block;
    width: 100%;
}

.portfolio-grid figure a,
.portfolio-rid figure img {
    display: block;
    position: relative;
}

.portfolio-grid figure img {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.portfolio-grid figure:hover img {
    transform: scale(1.1);
}

.portfolio-grid figure a {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 3;
}

.portfolio-item-img {
    position: relative;
    overflow: hidden;
}

.portfolio-grid figure .portfolio-item-img:after {
    content: '';
    position: absolute;
    background-color: rgba(0, 0, 0, .05);
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.portfolio-grid figure:hover .portfolio-item-img:after {
    opacity: 1;
}

.portfolio-item-desc {
    margin-top: 12px;
}

.portfolio-item-desc h4 {
    margin-bottom: 0;
}

.portfolio-item-desc small {
    color: #888;
}

.portfolio-grid figure i {
    display: inline-block;
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 16px;
    opacity: 0;
    width: 30px;
    height: 30px;
    background-color: #fff;
    color: var(--theme-primary, #7c4dff);
    text-align: center;
    line-height: 30px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.portfolio-grid figure .name {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    padding: 5px 10px 5px;
    font-size: 12px;
    text-align: left;
    color: #333;
    font-weight: 500 !important;
    height: 40px;
    line-height: 1.5;
    margin: 0;
}

.portfolio-grid figure .b_kucun {
    display: inline-block;
    padding: 3px 10px;
    background: rgba(124, 77, 255, 0.85);
    color: #fff;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.3em;
    top: 10px;
    right: 10px;
    position: absolute;
    border-radius: 20px;
    backdrop-filter: blur(4px);
    z-index: 2;
}

.portfolio-grid figure .b_price {
    display: inline-block;
    padding: 10px 5px;
    background: transparent;
    color: var(--theme-price, #ff6b6b);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2em;
    position: relative;
    top: auto;
    left: auto;
    border-radius: 0;
    text-align: left;
    padding-left: 10px;
    padding-bottom: 12px;
}

.portfolio-grid figure .b_market_price {
    display: inline-block;
    font-size: 12px;
    color: #bbb;
    font-weight: normal;
    text-decoration: line-through;
    padding-bottom: 12px;
}

/* --- End of Portfolio --- */





.portfolio-page-carousel {
    overflow: hidden;
}

.portfolio-page-carousel .owl-dots {
    display: inline-block;
    position: absolute;
    bottom: 0;
    right: 0;
    margin: 0 10px 5px;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
}

.portfolio-page-carousel .owl-dots .owl-dot {
    display: inline-block;
}

.portfolio-page-carousel .owl-dots .owl-dot.active span, .portfolio-page-carousel .owl-dots .owl-dot:hover span {
    background: #9e9e9e;
}

.portfolio-page-carousel .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    margin: 5px;
    background: #f5f5f5;
    border: 1px solid #9e9e9e;
    display: block;
    -webkit-backface-visibility: visible;
    backface-visibility: visible;
    transition: opacity 200ms ease;
    border-radius: 30px;
}

/* Portfolio Carousel */


/* ------------------------------------------------------------
8. Media Queries
------------------------------------------------------------ */
@media only screen and (max-width: 1280px) {
    .page {
        padding-left: 30px;
    }

    .header {
        max-width: 330px;
    }

    .content-area {
        max-width: calc(100% - 330px);
    }
}

@media only screen and (min-width: 1025px) {
    .menu-toggle {
        display: none;
    }
}

@media only screen and (max-width: 1024px) {
    .header {
        position: fixed !important;
        width: 70% !important;
        max-width: 100% !important;
        top: 0 !important;
        left: auto !important;
        right: 0 !important;
        bottom: 0 !important;
        /* 100dvh 排除浏览器工具栏，避免底部内容被遮住；旧浏览器降级到 100vh */
        height: 100vh !important;
        height: 100dvh !important;
        background: linear-gradient(160deg, var(--theme-primary, #7c4dff), var(--theme-secondary, #448aff));
        z-index: 99;
        padding: 0 !important;
        text-align: center;
        opacity: 1;
        visibility: visible;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        transform: translateX(0);
        transition: transform .3s cubic-bezier(0.25, 0.1, 0.25, 1), visibility .3s, opacity .3s;
        display: flex !important;
        flex-direction: column !important;
        border-radius: 20px 0px 0px 20px;
    }

    /* header-content (logo + title) */
    .header .header-content {
        padding: 30px 20px 15px;
        flex-shrink: 0;
        min-height: 0;
    }

    /* nav menu：flex:1 撑满中间，min-height:0 允许真正收缩 */
    .header ul.main-menu {
        flex: 1 1 0;
        min-height: 0;
        overflow-y: auto;
    }

    /* copyrights (user + bulletin)：允许收缩，底部留出安全区高度 */
    .header .copyrights {
        right: 0;
        width: 100%;
        position: relative;
        margin-top: 0;
        /* padding-bottom 加上 iOS/Android 安全区，防止内容被 Home 条或底部导航遮住 */
        padding: 16px 20px calc(20px + env(safe-area-inset-bottom, 0px));
        flex-shrink: 1;
        min-height: 0;
        border-top: 1px solid rgba(255,255,255,0.15);
    }

    .page {
        padding: 0;
    }

    .page-content {
        padding: 0;
        margin: 0;
        border-radius: 0;
        min-height: 100%;
    }

    .content-area {
        max-width: 100%;
    }

    .animated-section,
    .single-page-content {
        border-radius: 0;
        overflow: auto !important;
        padding: 20px;
    }

    .header-titles h2 {
        font-size: 23px;
        margin-bottom: 10px;
    }

    .header-titles h4 {
        font-size: 17px;
    }

    .header-photo {
        width: 100px;
        max-width: 30%;
        margin-bottom: 25px;
    }

    /* 桌面端图标栏：移动端隐藏 */
    ul.main-menu.yfk-desktop-nav { display: none !important; }
    /* 侧边栏菜单：仅移动端显示（已在 .header 内，随侧边栏显示） */
    ul.main-menu.yfk-sidebar-nav { display: block; }

    .mobile-menu-hide {
        transform: translateX(110%);
        opacity: 0;
        visibility: hidden;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
    }




    ul.main-menu {
        display: block;
        position: static;
        width: 100%;
        background: transparent;
        box-shadow: none;
        border-radius: 0;
        padding: 0;
        list-style: none;
        margin-top: 20px;
        border-top: 1px solid rgba(255,255,255,0.2);
    }

    ul.main-menu li {
        border-bottom: 1px solid rgba(255,255,255,0.12);
    }

    ul.main-menu a {
        display: flex;
        align-items: center;
        gap: 12px;
        color: rgba(255,255,255,0.8);
        padding: 14px 20px;
        line-height: 1.4;
        font-size: 15px;
        font-weight: 500;
        text-decoration: none;
        transition: all 0.2s ease;
    }

    ul.main-menu li.active a,
    ul.main-menu a:hover {
        color: #fff;
        background: rgba(255,255,255,0.12);
    }

    ul.main-menu .menu-icon {
        display: inline-block;
        font-size: 18px;
        width: 22px;
        text-align: center;
        flex-shrink: 0;
    }

    ul.main-menu .link-text {
        font-size: 15px;
        line-height: 1.4;
        position: static;
        visibility: visible;
        opacity: 1;
        width: auto;
    }

    .menu-toggle {
        position: absolute;
        display: block;
        width: 48px;
        height: 48px;
        line-height: 46px;
        text-align: center;
        background: var(--theme-primary, #7c4dff);
        right: 10px;
        font-size: 19px;
        top: 10px;
        border-radius: 14px;
        transform: rotate(0deg);
        transition: .4s cubic-bezier(0.25, 0.1, 0.25, 1);
        cursor: pointer;
        z-index: 900;
        box-shadow: 0 4px 15px rgba(124, 77, 255, .25);
    }

    .menu-toggle span {
        display: block;
        position: absolute;
        height: 3px;
        width: 50%;
        background: #fff;
        border-radius: 5px;
        opacity: 1;
        left: 25%;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: .25s ease-in-out;
        -moz-transition: .25s ease-in-out;
        -o-transition: .25s ease-in-out;
        transition: .25s ease-in-out;
    }

    .menu-toggle span:nth-child(1) {
        top: 16px;
        -webkit-transform-origin: left center;
        -moz-transform-origin: left center;
        -o-transform-origin: left center;
        transform-origin: left center;
    }

    .menu-toggle span:nth-child(2) {
        top: 22px;
        -webkit-transform-origin: left center;
        -moz-transform-origin: left center;
        -o-transform-origin: left center;
        transform-origin: left center;
    }

    .menu-toggle span:nth-child(3) {
        top: 28px;
        -webkit-transform-origin: left center;
        -moz-transform-origin: left center;
        -o-transform-origin: left center;
        transform-origin: left center;
    }

    .menu-toggle.open span:nth-child(1) {
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
        top: 13px;
        left: 15px;
    }

    .menu-toggle.open span:nth-child(2) {
        width: 0%;
        opacity: 0;
    }

    .menu-toggle.open span:nth-child(3) {
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
        top: 30px;
        left: 15px;
    }


    .single-page-content .post-content {
        position: relative;
        margin-left: 20px;
        margin-right: 20px;
    }
}


@media only screen and (max-width: 768px) {
    .portfolio-grid figure {
        width: 50%;
    }

    .info-list {
        margin-top: 20px;
    }

    .portfolio-grid figure,
    .portfolio-grid.three-columns figure {
        width: 50%;
    }

    .portfolio-grid.four-columns figure,
    .portfolio-grid.five-columns figure {
        width: 33.3333333%;
    }
}


@media only screen and (max-width: 480px) {
    .section-title-block.first-style .section-description {
        margin: 7px 0 0;
        width: 100%;
    }

    .portfolio-grid figure {
        width: 100%;
    }

    .portfolio-grid.three-columns figure,
    .portfolio-grid.two-columns figure {
        width: 50%;
    }

    .portfolio-grid figure,
    .portfolio-grid.two-columns figure,
    .portfolio-grid.three-columns figure,
    .portfolio-grid.four-columns figure,
    .portfolio-grid.five-columns figure {
        width: 50%;
    }

    .single-page-content .post-content {
        position: relative;
        margin-left: 0;
        margin-right: 0;
        margin-top: 0;
        padding-left: 0;
        padding-right: 0;
    }

    .controls.two-columns .right-column,
    .controls.two-columns .left-column {
        float: none;
        margin: 0;
        width: 100%;
    }
}


/* =============================================================================
10. Updates
============================================================================= */
/* v1.1 */
.lm-animated-bg {
    position: absolute;
    width: auto;
    height: auto;
    top: -28px;
    left: -28px;
    right: -28px;
    bottom: -28px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
    transition: background-position 0.3s ease-out;
}

.lm-animated-bg.transition {
    transition: background-position 0.3s ease-out;
}


/**
---------------------------------------�������򲿷�CSS:Start-----------------------------------------------
 */
.commodity-di .general, .draft_status {
    font-size: 14px;
    color: #7c7674;
    margin-bottom: 10px;
}

.commodity-di .general {
    margin-bottom: 15px;
}

.commodity-di .pay_title {
    font-size: 14px;
    color: var(--theme-primary, #7c4dff);
    border-radius: 10px;
    margin-top: -35px;
    margin-left: -1px;
    padding-bottom: 5px;
}

.commodity-di .pay_title span {
    background: linear-gradient(rgba(124,77,255,0.08), rgba(124,77,255,0.04));
    padding: 5px 30px 5px 30px;
    border-left: 1px dashed rgba(124,77,255,0.25);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom: none;
}

.commodity-di .pay-content {
    margin-top: 50px;
    border-left: 1px dashed rgba(124,77,255,0.25);
    border-bottom: 1px dashed rgba(124,77,255,0.25);
    border-right: 1px dashed rgba(124,77,255,0.25);
    background: linear-gradient(rgba(124,77,255,0), rgba(124,77,255,0.03));
    border-radius: 10px;
    border-top-left-radius: 0;
}

.commodity-di .pay_list {
    padding-left: 15px;
    padding-right: 15px;
}

.commodity-di .share_url {
    margin-bottom: 15px;
    color: var(--theme-secondary, #448aff);
}

.open-commodity {
    position: relative;
}

.open-commodity .commodity_name {
    font-weight: bold;
    font-size: 24px;
    padding-bottom: 20px;
    border-bottom: 1px dashed rgba(124,77,255,0.1);
    margin-bottom: 20px !important;
    color: #555;
    line-height: 24px;
    text-align: center;
}

.layui-layer[type=page] {
    background: linear-gradient(180deg, rgba(255,255,255,0.97), rgba(245,243,255,0.95)) !important;
    border-radius: 20px !important;
}

.share_url {
    color: var(--theme-primary, #7c4dff);
    cursor: pointer;
    font-size: 16px;
    opacity: 0.8;
}

.description {
    font-size: 14px;
    color: grey;
}

.seckill_end_time {
    color: #4caf50 !important;
}

.seckill_start_time {
    color: orangered !important;
}

.commodity-di .price {
    color: var(--theme-price, #ff6b6b);
    font-weight: bold;
    font-size: 20px;
}

.commodity-di .price_tips {
    color: var(--theme-primary, #7c4dff);
}

.delivery_way_hand {
    color: white;
    background: var(--theme-accent, #ffab40);
    padding: 2px 6px;
    border-radius: 6px;
    font-size: 12px;
}

.delivery_way_auto {
    color: white;
    background: rgba(76, 175, 80, 0.6);
    padding: 2px 6px;
    border-radius: 6px;
    font-size: 12px;
}

.open-commodity input[type=text], .commodity-di input[type=number], .commodity-di input[type=password], .commodity-di input[type=email] {
    display: inline-block;
    width: 240px;
    height: 28px;
    background: rgba(255, 255, 255);
    border-radius: 8px;
    padding-left: 8px !important;
    padding-right: 8px !important;
    border: 1px solid rgba(124,77,255,0.18);
    transition: border-color 0.25s;
}

.open-commodity input[type=text]:focus,
.commodity-di input[type=number]:focus,
.commodity-di input[type=password]:focus,
.commodity-di input[type=email]:focus {
    border-color: var(--theme-primary, #7c4dff);
    outline: none;
}

.open-commodity textarea {
    background: rgba(255, 255, 255, .5);
    border-radius: 10px;
}

.open-commodity textarea:focus {
    outline: none;
}

.open-commodity input::placeholder {
    color: #6c6a6a !important;
}

.open-commodity input:focus {
    outline: none;
}


.purchase_num {
    width: 80px !important;
}

.card_count {
    color: #4caf50;
}

.card_count_general {
    color: #a5620f !important;
}

.card_count_immediately {
    color: #f16868 !important;
}


.card_count_unknown {
    color: #35b98e !important;
}

.card_count_empty {
    color: #d1d2d6 !important;
}

.purchase_count {
    display: none;
    color: var(--theme-primary, #7c4dff);
}

.captcha-input {
    width: 120px !important;
}

.commodity-di .captcha {
    position: relative;
    top: 7px;
    cursor: pointer;
}

.trade_amount {
    font-weight: bold;
    color: var(--theme-price, #ff6b6b);
}

.qq-service {
    color: var(--theme-secondary, #448aff);
    padding: 0 4px 0 0;
    font-size: 12px;
    margin: 0 4px 0 0;
    border-radius: 5px;
    font-weight: bold;
}

.web-service {
    color: var(--theme-primary, #7c4dff);
    padding: 0 4px 0 4px;
    margin: 0;
    font-size: 12px;
    border-radius: 5px;
    font-weight: bold;
}

.pay-content {
    border-top: 1px dashed rgba(124,77,255,0.25);
    margin-top: 20px;
    padding-top: 10px;
}

.pay-content label {
    font-size: 16px;
    color: #999;
}

.pay-button {
    position: relative;
    border-radius: 8px;
    border: none;
    display: inline-flex;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
    padding: 6px 12px;
    margin: 0 4px 8px 4px;
    background: var(--theme-primary, #7c4dff);
    color: white;
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(124, 77, 255, .25);
    transition: all 0.25s ease;
}

.pay-button:hover {
    color: white;
    background: var(--theme-secondary, #448aff);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(124, 77, 255, .35);
}


.pay-button img {
    height: 22px;
    border-radius: 6px;
    position: relative;
    top: 0;
    left: -5px;
}

.pay_list {
    padding-top: 10px;
}

.draft_status {
    display: none;
}

.draft_status button[type=button] {
    border-radius: 6px;
    background-color: var(--theme-primary, #7c4dff);
    color: white;
    cursor: pointer;
    padding: 2px 5px 2px 5px;
    border: none;
}

.draft_status button[type=button]:focus {
    outline: none;
}

.draft_status button[type=button]:disabled {
    background-color: rgba(239, 239, 239, 0.3);
    color: grey;
}

.draft_premium {
    color: red;
}

.draft_status table {
    margin: 10px 0 5px 0;
}


.draft_status .draftCard label {
    font-size: 14px;
    color: grey;
}


.need-login {
    margin-top: 15px;
    font-size: 14px;
    color: #ed8181;
    font-weight: bold;
    margin-left: 15px;
}

.need-login a {
    color: var(--theme-primary, #7c4dff);
}

/* ���ù���������ʽ */
::-webkit-scrollbar {
    width: 6px;
}

/* ������ */
::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 10px;
}

/* ���������� */
::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.12);
    transition: background 0.2s;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.2);
}

::-webkit-scrollbar-thumb:window-inactive {
    background: rgba(0, 0, 0, 0.08);
}

.lot {
    font-size: 12px;
    list-style-type: none;
    padding: 0;
    color: #4caf50;
}

.open-query .search-query {
    border: none;
    font-size: 14px;
    color: white;
    background: var(--theme-primary, #7c4dff);
    padding: 2px 10px;
    border-radius: 6px;
}

.open-query .search-value {
    width: 280px;
}

.open-query .search-query:focus {
    outline: none;
}

.open-query .search-page {
    border-bottom: 1px dashed rgba(124,77,255,0.12);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.open-query .hr-top {
    border-bottom: 1px dashed rgba(124,77,255,0.12);
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.open-query .getCard {
    cursor: pointer;
    color: white;
    background: var(--theme-primary, #7c4dff);
    padding: 2px 8px;
    font-size: 14px;
    border-radius: 6px;
    transition: background 0.25s;
}

.open-query .getCard:hover {
    background: var(--theme-secondary, #448aff);
}

.open-query .card-textarea {
    border: 1px solid rgba(124,77,255,0.15);
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border-radius: 8px;
}

@media screen and (max-width: 768px) {
    .open-commodity, .open-query {
        padding: 20px;
    }

    .layui-layer[type=page] {
        border-radius: 20px !important;
    }

    .order-query .widget-input input {
        width: 75%;
    }

    .order-query .widget-input button {
        width: 20%;
    }

    .animated-section {
        padding: 30px;
    }
}


.race-click {
    margin-right: 8px;
    padding: 1px 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(124,77,255,0.15);
    border-radius: 10px;
    cursor: pointer;
    display: inline-flex;
    position: relative;
    user-select: none;
    transition: all .3s ease;
}

.race-click.checked {
    border: 1px solid var(--theme-primary, #7c4dff);
    box-shadow: 0 2px 12px rgba(124,77,255,0.25);
}

.commodity-di .lot_string {
    color: var(--theme-primary, #7c4dff);
}

.order-success {
    margin-top: 30px;
}

.order-line {
    font-size: 14px;
    color: #888;
}

.query-password {
    border: 1px dashed grey;
    border-radius: 5px;
    font-size: 14px;
    height: 24px;
    padding: 0 4px;
}

.card-textarea {
    width: 100%;
    outline: none;
    border-radius: 12px;
    border: 1px solid rgba(124,77,255,0.12);
    padding: 10px;
    margin-top: 10px;
    height: 170px;
    transition: border-color 0.25s;
}

.card-textarea:focus {
    border-color: var(--theme-primary, #7c4dff);
}

.getCard {
    cursor: pointer;
    color: white;
    border-radius: 6px;
    background: var(--theme-primary, #7c4dff);
    padding: 2px 8px;
    transition: background 0.25s;
}

.getCard:hover {
    background: var(--theme-secondary, #448aff);
}

.pay-type {
    border-radius: 5px;
    color: orange;
}

.commodity-die {
    filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    -webkit-filter: grayscale(1);
}

/**
---------------------------------------�������򲿷�CSS:End-----------------------------------------------
 */

.commodity-close {
    color: var(--theme-primary, #7c4dff);
    font-size: 18px;
    position: absolute;
    top: 45%;
    left: 0;
    font-weight: normal !important;
    border: 1px dashed rgba(124, 77, 255, 0.35);
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    padding: 25px 5px 25px 5px;
}
