body {
    letter-spacing: 1px;
}

a,
i,
li,
.img-alls-items {
    cursor: pointer;
}

i {
    font-style: normal;
}

em {
    font-style: italic;
}

button {
    border: none;
    background: unset;
    outline: none;
    cursor: pointer;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input,
select,
textarea {
    font-size: inherit;
    font-family: Helvetica;
    font-weight: inherit;
    outline: 0;
    border: none;
}

.none {
    display: none;
}

.hide {
    height: 0;
    opacity: 0;
    z-index: -1;
}

.flex0 {
    display: flex;
}

.flex {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.flex2 {
    display: flex;
    align-items: center;
}

.flex3 {
    display: flex;
    flex-wrap: wrap;
}

.container {
    width: 1200px;
    margin: auto;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
}

.scroll {
    overflow: hidden;
    overflow-y: auto;
}

.scroll::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.8);
}

.scroll::-webkit-scrollbar {
    width: 2px;
    background-color: transparent;
}

.scroll::-webkit-scrollbar-thumb {
    border-radius: 5px;
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.3);
    background-color: #0b0416;
}

.full-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
    overflow: hidden;
}

.shop-item-up .shop-item-up {
    overflow: hidden;
}

.full-image img {
    max-width: 100%;
    /* height: 100%; */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.full-image .top_Comment_left {
    max-width: 140px;
    max-height: 145px;
}

.line-clamp2 {
    display: -webkit-box !important;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    word-wrap: break-word;
    max-width: 90px;
}

.rollover-img {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    max-width: 100%;
    transition: all 0.2s ease;
    /* z-index: -1; */
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hxcart-inquiry-btn,
.hxcart-inquiry-btn-1 {
    height: 40px;
    line-height: 40px;
    padding: 5px 10px !important;
    text-align: center;
    color: #fff;
    /* border-radius: 5px; */
    width: 50%;
    margin: 0 auto;
}


.hxcart-inquiry-btn-1 {
    height: 30px;
    line-height: 30px;
}

.hxcart-inquiry-btn:hover {
    color: #fff;
}

.shop-item-5 .bag-show.hxcart-inquiry-btn {
    width: 100% !important;
}

.shop-item-5 .bag-show.hxcart-inquiry-search-btn {
    width: 50% !important;
}

.full-image:hover .rollover-img {
    /* z-index: 1; */
    opacity: 1;
}

textarea::placeholder{
    color: #dfdfdf;
}

.title-clamp {
    display: block;
    word-break: break-word;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.title-ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
}

.star1 i:before,
.star2 i:before,
.star3 i:before,
.star4 i:before,
.star5 i:before,
.star i.iconfont {
    font-size: 14px !important;
}

.select-menu-ul::-webkit-scrollbar {
    width: 2px;
    height: 4px;
}

.select-menu-ul::-webkit-scrollbar-thumb {
    border-radius: 5px;
    -webkit-box-shadow: inset 0 0 5px black;
    background: black;
}

.select-menu-ul::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
    border-radius: 0;
    background: rgba(0, 0, 0, 0.1);
}

.select-menu-div {
    position: relative;
    cursor: pointer;
    height: 30px;
}

.select-menu-div .select-menu-input {
    height: 100%;
    border: 1px solid #e5e5e5;
    padding: 0 10px;
    border-radius: 4px;
    font-size: 14px;
    background: #fff;
    display: flex;
    align-items: center;
}

.select-menu-div i {
    transition: all 0.3s ease;
    color: #3a4154;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 10px;
    font-size: 12px;
    height: max-content;
    margin: auto;
}

.select-menu-div img {
    max-width: 25px;
}

.select-menu-div .select-menu-ul {
    position: absolute;
    top: 100%;
    display: none;
    left: 0;
    width: 100%;
    height: 0;
    transition: all 0.3s ease;
    background: #fff;
    z-index: 5;
}

.select-menu-div .select-menu-ul li {
    height: 25px;
    display: flex;
    align-items: center;
    padding: 0 5px;
    cursor: pointer;
    font-size: 14px;
}

.select-menu-div:hover .select-menu-ul {
    display: block;
    max-height: 120px;
    height: auto;
    overflow-y: auto;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    border: 1px solid #ddd;
    overflow-x: hidden;
}

.select-menu-div:hover i {
    transform: rotate(180deg);
}

header {
    z-index: 100;
}

header .header-search {
    position: relative;
}

header .header-search .search-tag {
    padding: 0 10px;
    border-style: solid;
    border-width: 1px;
    height: 38px;
    line-height: 38px;
}

header .header-search .search-btn {
    position: absolute;
    right: 10px;
    top: 0;
    bottom: 0;
    margin: auto;
    height: max-content;
}

header .header-user .select-menu-div {
    width: 100px;
    margin: 0 0 0 auto;
}

header .user-top-icon {
    display: flex;
    align-items: center;
}

header .user-top-icon>a {
    margin-left: 10px;
    display: flex;
    align-items: center;
}

header .user-top-icon>a i {
    font-size: 26px;
}

header .nav-ul {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

header .nav-ul .nav-li {
    transition: all 0.3s ease;
}

header .nav-ul .nav-li .nav-mask {
    position: fixed;
    width: 0;
    height: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    z-index: 1;
}

header .nav-ul .nav-li .nav-tab {
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    overflow: hidden;
    transition: all 0.5s ease;
    background: #fff;
    opacity: 0;
    z-index: -99;
    visibility: hidden;
    /* -webkit-transform: translate(0%, 0);
  -ms-transform: translate(0%, 0);
  -o-transform: translate(0%, 0);
  transform: translate(0%, 0);  */
    padding: 10px 0;
}

header .nav-ul .nav-li .nav-tab .nav-main {
    margin-right: 30px;
}

header .nav-ul .nav-li .nav-tab .nav-main img {
    margin: auto;
}

header .nav-ul .nav-li .nav-tab a {
    display: block;
    line-height: 25px;
}

header .nav-ul .nav-li .nav-title {
    white-space: nowrap;
    display: block;
}

header .nav-ul .nav-li.hover .nav-mask {
    opacity: 1;
    width: 100%;
}

header .nav-ul .nav-li.hover .nav-tab {
    opacity: 1;
    /* -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0); */
    visibility: visible;
    z-index: 99;
    min-height: 200px;
    max-height: 400px;
    transition: all 0.3s ease;
    /* animation: myfirst .3s ease-in-out forwards; */
    /* animation-delay: .1s; */

}

header .header-4 .nav-ul .nav-li.hover .nav-tab {
    opacity: 1;
    /* -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0); */
    visibility: visible;
    z-index: 99;
    height: 0;
    min-height: 0;
    max-height: 0;
    transition: all 0.2s ease;
    animation: myfirst .25s ease-in-out forwards;
    background: rgba(255, 255, 255, 0.8);
    /* animation-delay: .1s; */

}

@keyframes myfirst {
    from {
        min-height: 0;
        max-height: 0;
        height: 0;
    }

    to {
        height: auto;
        min-height: 200px;
        max-height: 400px;
    }
}

header .header-1>.container {
    max-width: 1200px;
    padding: 5px 0;
    width: auto;
}

header .header-1 .nav-ul {
    box-shadow: 0px 3px 5px #dfdfdf;
    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
}

header .header-1 .nav-ul .nav-title {
    height: 50px;
    line-height: 50px;
}

header .header-1 .user-top-icon {
    margin-top: 10px;
}

header .header-2 {
    box-shadow: 0px 3px 5px #dfdfdf;
}

header .header-2>.container {
    max-width: 1200px;
    padding: 5px 0;
    width: auto;
}

header .header-2>* {
    margin: 0 20px;
}

header .header-2 .nav-ul .nav-title {
    height: 70px;
    line-height: 70px;
}

header .header-2 .select-menu-div {
    width: 70px;
}

header .header-2 .select-menu-div .select-menu-input {
    border: none;
}

header .header-2 .header-sousou-2,
header .header-5 .header-sousou-5 {
    display: none;
    position: fixed;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    height: 100%;
    z-index: 10;
    top: 70px;
}

header .header-2 .header-sousou-2>div,
header .header-5 .header-sousou-5>div {
    background: #fff;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

header .header-2 .header-sousou-2 .sousou-close,
header .header-5 .header-sousou-5 .sousou-close {
    position: absolute;
    top: 3%;
    right: 20%;
    font-size: 25px;
}

.customer-service {
    position: fixed;
    z-index: 10;
}

.customer-service .service-right {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #27AA1C;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.6;
    margin-left: 10px;
    position: relative;
}

.customer-service .service-right::before {
    position: absolute;
    content: 'Can I help you ?';
    left: -310%;
    top: 0;
    bottom: 0;
    margin: auto;
    font-size: 13px;
    width: auto;
    background: #fff;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    line-height: 40px;
    padding: 0 10px;
    border-radius: 3px;
}

.service-left {
    right: 95%;
    bottom: 0;
    position: absolute;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.175);
    background: #fff;
    transition: all 0.3s ease;
    display: none;
}

.service-left .service-div {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ddd;
    padding: 4px;
}

.service-left .service-info p {
    text-align: left;
    line-height: 20px;
    color: #333;
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
}

.customer-service:hover .service-right::before {
    opacity: 0;
}

.customer-service:hover .service-left {
    display: block;
}

footer {
    padding: 50px 0 0;
    /* border-top: 1px solid #efefef; */
}

footer .footer-icon {
    margin-bottom: 10px;
}

footer .footer-icon a {
    margin-right: 5px;
}

footer .footer-menu {
    margin-bottom: 20px;
}

footer .footer-menu a {
    display: block;
    line-height: 25px;
}

footer .message-tips {
    line-height: 30px;
    font-size: 14px;
    color: #666;
    font-weight: 400;
}

footer .message-tips .to-message {
    font-size: 110%;
}

footer .footer-email {
    position: relative;
}

footer .footer-email input {
    padding: 0 20px;
    border: none;
    width: 300px;
    height: 48px;
    border: 1px solid #efefef;
}

footer .footer-email a {
    border: 1px solid;
    border-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #fff;
    border-radius: 4px;
    height: 48px;
    width: 100px;
    text-decoration: none !important;
}

footer .footer-email .emailist {
    left: 0;
    position: absolute;
    overflow: hidden;
    margin: 0;
    padding: 0;
    border: 1px solid #bdbdbd;
    border-radius: 4px;
    background-color: #fff;
    color: #666;
    list-style-type: none;
    font-size: 14px;
    bottom: 100%;
    height: 150px;
    overflow: hidden;
    overflow-y: auto;
}

footer .footer-email .emailist li {
    padding: 3px 11px;
}

footer .copy-right {
    text-align: center;
    line-height: 3.5;
    border-top: 1px solid #efefef;
}

.shop-main {
    display: grid;
    gap: 0.5rem;
    width: 100%;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.category-main {
    display: flex;
    gap: 1rem;
    margin-bottom: 30px;
    padding: 10px;
}

.search-for {
    margin: 20px auto;
    text-align: center;
    font-size: 16px;
    color: #959a9e;
}

.search-for b {
    color: #2b353e;
}

.header-fixed {
    position: fixed;
    z-index: 999;
    left: 0;
    right: 0;
    top: 0;
    background: #fff;
    width: 100%;
    transition: all 0.3s ease;
}

#return_top {
    transition: all .3s;
    display: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    position: fixed;
    bottom: 15%;
    right: 2%;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    font-size: 20px;
}

#return_top::before {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #fff;
    font-weight: 550;
}

.product-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
    margin-bottom: 20px;
}

.down-image {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.height75 {
    height: 75px !important;
    line-height: 75px !important;
    font-style: initial !important;
    font-weight: 700;
}

.height75 img {
    max-height: initial !important;
    max-width: initial !important;
}

.down-image img {
    width: 100%;
}

table {
    margin: 10px auto;
    text-align: center;
}

table td {
    border: 1px solid #e5e5e5;
    padding: 10px 15px;
}

.size-tab {
    text-align: center;
}

.down-image-button {
    padding: 13px 25px;
    text-transform: uppercase;
    font-style: italic;
    border-radius: 3px;
    margin: auto;
    display: block;
    width: max-content;
    font-weight: bold;
}

.shop-item {
    position: relative;
    overflow: hidden;
}

.shop-item .shop-item-up {
    position: relative;
}

.shop-item .shop-item-up .full-image {
    height: 303px;
    overflow: hidden;
    border: solid 1px #eeeeee;
}

.shop-item .shop-item-down {
    padding: 5px 0;
    position: relative;
    background-color: #fff;
}

.shop-item .shop-item-down .shop-item-copy {
    position: absolute;
    top: 50%;
    right: 0;
    cursor: pointer;
}

.shop-item-copy-value {
    z-index: -1;
    position: absolute;
    color: #fff;
}

.shop-item .shop-item-down .title-ellipsis,
.shop-item .shop-item-down .title-clamp {
    line-height: 1.4;
    font-size: 16px;
    padding-top: 3px;
    width: 100%;
    margin-bottom: 0;
}

.shop-item .shop-item-down .title-clamp {
    height: 38px;
}

.shop-item .shop-item-down .shop-item-sku {
    display: block;
    padding: 5px 0;
    color: #999;
    font-size: 12px;
}

.shop-item .shop-item-price {
    display: flex;
    align-items: center;
    padding: 10px 0;
}

.shop-item .shop-item-price span {
    display: block;
    font-size: 100%;
}

.shop-item .shop-item-price span:nth-child(1) {
    font-weight: 700;
}

.shop-item .shop-item-price span:nth-child(2) {
    margin-left: 10px;
    text-decoration: line-through;
    font-size: 85%;
}

.shop-item .shop-item-icon {
    transition: all 0.3s ease;
}

.shop-item .shop-item-icon i {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    color: #fff;
}

.shop-item-1 .shop-item-icon {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    display: flex;
    justify-content: center;
    opacity: 0;
    top: 70%;
}

.shop-item-1 .shop-item-icon i {
    border-radius: 50%;
    width: 50px;
    height: 50px;
    margin: 0 5px;
    font-size: 20px;
}

.shop-item-1 .shop-item-up:hover .shop-item-icon {
    opacity: 1;
}

.shop-item-2 .shop-item-icon {
    margin-top: 5px;
}

.shop-item-2 .shop-item-icon .icon-bag-show {
    text-align: center;
    width: 100%;
    height: 40px;
    margin-right: 5px;
}

.shop-item-2 .shop-item-icon .icon-wish {
    font-size: 20px;
    height: 40px;
    width: 40px;
    display: table;
}

.shop-item-2 .shop-item-icon .icon-wish::before {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shop-item-2 .shop-item-up {
    position: relative;
    transition: .3s;
}

.shop-item-2 .shop-item-up .shop-item-ovl {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .5);
    z-index: 2;
    display: none;
}

.shop-item-2 .shop-item-up .shop-item-con {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    display: none;
}

.shop-item-2 .shop-item-up .shop-item-con .shop-item-bg {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shop-item-2 .shop-item-up .shop-item-con i {
    font-size: 30px;
    color: #fff;
    cursor: pointer;
}

.shop-item-2 .shop-item-up:hover .shop-item-ovl,
.shop-item-up:hover .shop-item-con {
    /* display: block; */
}

.shop-item-3 .shop-item-sku {
    font-size: 12px;
    color: #888;
    display: block;
    padding-top: 2px;
}

.shop-item-3 .icon-bag-show {
    text-align: center;
    width: 99%;
    height: 40px;
    margin-top: 5px;
}

.shop-item-4 .icon-wish {
    position: absolute;
    right: 10px;
    top: 10px;
}

.shop-item-4 .icon-bag-show {
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    display: block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    background: rgba(11, 4, 22, 0.9);
    font-size: 20px;
    text-align: center;
    border-radius: 50%;
    color: #fff;
    margin: auto;
    z-index: 5;
    transition: all 0.3s ease;
    opacity: 0;
}

.shop-item-4 .icon-bag-show::after {
    position: absolute;
    content: '';
    left: -10px;
    top: 0px;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    padding: 10px;
    width: 60px;
    height: 60px;
    background: rgba(11, 4, 22, 0.66);
    margin: auto;
    z-index: -1;
}

.shop-item-4 .shop-item-up:hover .icon-bag-show {
    opacity: 1;
}

.shop-item-4 .shop-item-down {
    text-align: center;
}

.shop-item-4 .shop-item-sku {
    font-size: 14px;
    color: #959a9e;
}

.shop-item-5 .bag-show {
    position: absolute;
    bottom: 50px;
    font-size: 14px;
    width: 50px;
    height: 50px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    left: 0;
    right: 0;
    margin: auto;
    color: #fff;
    z-index: 15;
    transition: all 0.3s ease;
    opacity: 0;
    /* border-radius: 10px; */
}

.shop-item-5 .shop-item-up:hover .bag-show {
    opacity: 0.6;
}

.shop-item-5 .shop-item-up:hover .hxcart-inquiry-search-btn {
    opacity: 1;
}

.shop-item-5 .icon-bag-show {
    font-size: 25px;
}

.shop-item-5 .flex-start {
    justify-content: flex-start;
}

.shop-item-5 .title-ellipsis {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    white-space: break-spaces;
}

.shop-item-5 img {
    height: 100%;
}

input::-webkit-input-placeholder {
    color: rgba(223, 223, 223, 1);
}

.category-main .slick-like {
    max-width: 1000px;
}

.category-main .slick-like .shop-item .full-image {
    height: 303px;
}

.category-main .shop-main-filter .shop-item .full-image {
    height: 380px;
}

.slick-like {
    margin: auto;
}

.slick-like .slick-slide>div {
    padding: 5px;
}

.slick-like .slick-slide>div .full-image {
    height: 350px;
}

.no-data-shop {
    margin: 75px auto 0px;
}

.no-data-shop>p {
    font-size: 16px;
    text-align: center;
}

.no-data-shop>a {
    margin: 20px auto;
    display: block;
    border-bottom: 1px solid;
    color: red;
    width: max-content;
}

.like-title {
    margin: 60px auto 40px;
    font-size: 30px;
    text-align: center;
}

.no-data {
    text-align: center;
    margin: 40px auto;
}

.no-data img {
    margin-bottom: 20px;
}

.review_page {
    text-align: right;
}

.freight-div {
    padding: 10px;
}

.freight-div .freight-country,
.freight-div .freight-qty {
    display: flex;
    align-items: center;
    font-size: 12px;
    float: left;
}

.freight-div .freight-qty {
    float: right;
}

.freight-country .select-menu-div,
.freight-qty .freight-qty-box {
    margin-left: 5px;
}

.freight-country .select-menu-div .select-menu-input,
.freight-country .select-menu-div .select-menu-ul li {
    font-size: 12px;
}

.freight-qty .freight-qty-box {
    display: flex;
    align-items: center;
    justify-content: center;
}

.freight-qty .freight-qty-box input {
    height: 30px;
    line-height: 30px;
    text-align: center;
    width: 50px;
    background: #f9f9f9;
    border: none;
}

.freight-qty .freight-qty-box i {
    background: #DCDCDC;
    color: #8E8E8E;
    font-size: 15px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.freight-transport {
    margin: 15px auto;
    width: 100%;
    font-size: 13px;
    display: inline-table;
}

.freight-transport th {
    color: #8E8E8E;
    background: #EEEEEE;
    height: 30px;
    line-height: 30px;
    border: 1px solid #fff;
    font-weight: 400;
    padding: unset;
}

.freight-transport td {
    color: #101010;
    text-align: center;
    height: 30px;
    line-height: 30px;
    border: 1px solid #EEEEEE;
    padding: unset;
}

.freight-tips {
    font-size: 12px;
    line-height: 18px;
    color: #BBBBBB;
}

.freight-close {
    background: #252525;
    color: #fff;
    width: 140px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    margin: 15px auto 0;
}

.layui-layer-content .shop-info-left img {
    width: 100%;
}

body .freight-list .layui-layer-btn0 {
    width: 100px;
    margin: auto;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #252525;
    font-size: 14px;
}

.shop-info-button {
    display: flex;
    align-items: center;
    /* justify-content: center; */
    padding: 10px 10px 10px 0;
}

.shop-info-button .icon-bag {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    height: 50px;
    width: 80%;
    margin-right: 20px;
    color: #fff;
}

.shop-info-button .icon-wish {
    font-size: 25px;
    box-shadow: 0px 1px 4px 0px rgba(192, 155, 41, 0.26);
    border: solid 1px #f3de9c;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #333;
    border-radius: 50%;
    width: 50px;
    height: 50px;
}

.slick-prev,
.slick-next {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}

.slick-prev::before,
.slick-next::before {
    color: #fff;
    font-weight: 550;
}

.slick-next::before {
    content: '\e71a';
}

.slick-prev::before {
    content: '\e719';
}

.shop-discount {
    z-index: 1;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 14px;
    color: #252525;
    text-align: center;
    padding-top: 5%;
    width: 19%;
    height: -webkit-fill-available;
    font-weight: 550;
}

.shop-discount-off {
    background: url("../png/shop_discount_off.png") no-repeat;
    background-size: 100% auto;
}

.shop-discount-flash {
    background: url("../png/shop_discount_flash.png") no-repeat;
    background-size: 100% auto;
    padding-top: 14%;
}

.shop-discount-sale {
    background: url("../png/shop_discount_sale.png") no-repeat;
    background-size: 100% auto;
}

.shop-discount-new {
    background: url("../png/shop_discount_new.png") no-repeat;
    background-size: 100% auto;
    width: 25%;
    padding-top: 9%;
}

.navigation .ui-eb-table,
.navigation .ui-eb-table>a {
    color: #999;
}

.shop-info {
    display: grid;
    grid-template-columns: 55% 44%;
    gap: 1%;
    margin-bottom: 30px;
}

.shop-info .shop-info-slick {
    display: flex;
    position: relative;
}

.shop-info .shop-info-slick .slick-up {
    overflow: hidden;
}

.shop-info .shop-info-slick .slick-prev,
.shop-info .shop-info-slick .slick-next {
    z-index: 10;
    display: none !important;
}
.shop-info .shop-info-slick.product-big-image-1 .slick-down:hover .slick-prev, 
.shop-info .shop-info-slick.product-big-image-1 .slick-down:hover .slick-next {
    display: inline-block !important;
}

.shop-info .shop-info-slick .slick-up .slick-list {
    border: 1px solid #eee;
}

.shop-info .shop-info-slick.product-big-image-1 .slick-up {
    margin: 0 2%;
    width: 80%;
}

.shop-info .shop-info-slick.product-big-image-1 .slick-down {
    width: 18%;
    height: 670px;
}

.shop-info .shop-info-slick.product-big-image-1 .slick-down .slick-slide>div {
    margin-bottom: 5px;
}

.shop-info .shop-info-slick.product-big-image-1 .slick-down .slick-prev {
    top: 3px;
    transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    left: 0;
    right: 0;
    margin: auto;
}

.shop-info .shop-info-slick.product-big-image-1 .slick-down .slick-next {
    transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    left: 0;
    right: 0;
    margin: auto;
    top: 93%;
}

.shop-info .shop-info-slick.product-big-image-2 .slick-up {
    margin: 0 2%;
    width: 80%;
}

.shop-info .shop-info-slick.product-big-image-2 .slick-down {
    order: -1;
    width: 18%;
    height: 670px;
}

.shop-info .shop-info-slick.product-big-image-2 .slick-down .slick-slide>div {
    margin-bottom: 5px;
}

.shop-info .shop-info-slick.product-big-image-2 .slick-down .slick-prev {
    top: 3px;
    transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    left: 0;
    right: 0;
    margin: auto;
}

.shop-info .shop-info-slick.product-big-image-2 .slick-down .slick-next {
    transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    left: 0;
    right: 0;
    margin: auto;
    top: 93%;
}

.shop-info .shop-info-slick.product-big-image-3 {
    display: block;
}

.shop-info .shop-info-slick.product-big-image-3 .slick-up {
    width: 100%;
}

.shop-info .shop-info-slick.product-big-image-3 .slick-down {
    margin-top: 10px;
    width: 100%;
}

.shop-info .shop-info-slick.product-big-image-3 .slick-down .slick-slide>div {
    margin: 0 5px;
}

.shop-info .shop-info-slick.product-big-image-3 .slick-down .slick-prev,
.shop-info .shop-info-slick.product-big-image-3 .slick-down .slick-next {
    top: 50%;
}

.shop-info .shop-info-slick .slick-mask {
    width: 400px;
    height: 400px;
    position: absolute;
    right: -47%;
    top: 0;
    z-index: -1;
}

.shop-info .shop-info-right .title-clamp {
    -webkit-line-clamp: 3;
    font-size: 22px;
    color: #333;
    line-height: 30px;
}

.shop-info .shop-info-right .shop-info-freight {
    font-size: 13px;
    text-decoration: underline;
    display: block;
    margin-bottom: 10px;
    color: #ec954b;
}

.shop-info .shop-info-right .shop-info-star {
    display: flex;
    align-items: center;
}

.shop-info .shop-info-right .shop-info-price {
    display: flex;
    align-items: center;
    font-size: 30px;
    margin-top: 10px;
}

.shop-info .shop-info-right .shop-info-price span {
    color: #333333;
    font-weight: 550;
    font-size: 100%;
}

.shop-info .shop-info-right .shop-info-price span:nth-child(2) {
    font-size: 85%;
    color: #888;
    text-decoration: line-through;
    margin-left: 10px;
    font-weight: 400;
}

.shop-info .shop-info-right .bag-detail {
    margin: 10px 0;
}

.shop-info .shop-info-right .bag-detail span {
    color: #666;
    line-height: 15px;
    font-size: 14px;
    margin-right: 10px;
    padding: 4px 0;
    display: inline-block;
}

.shop-info .shop-info-right .bag-select {
    margin: 5px 0;
}

.shop-info .shop-info-right .bag-select p {
    font-size: 14px;
    color: #333;
    line-height: 25px;
}

.shop-info .shop-info-right .bag-select ul {
    display: flex;
    flex-wrap: wrap;
}

.shop-info .shop-info-right .bag-select ul a {
    border-radius: 5px;
    width: 78px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 10px 10px 0;
}

.shop-info .shop-info-right .bag-select ul a img {
    width: 100%;
    border-radius: 5px;
}

.shop-info .shop-info-right .bag-select ul li {
    background: #fff;
    border: 1px solid #eeeeee;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    min-width: 126px;
    font-size: 16px;
    padding: 0 5px;
}

.shop-info .shop-info-right .bag-select ul li.active {
    color: #fff;
}

.shop-info .shop-info-right .bag-select .bag-qty {
    display: flex;
    align-items: center;
    margin: 5px 0;
}

.shop-info .shop-info-right .bag-select .bag-qty i {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    width: 40px;
    height: 40px;
    background: #f4f4f4;
}

.shop-info .shop-info-right .bag-select .bag-qty input {
    width: 125px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    text-align: center;
    font-size: 14px;
    border-radius: 5px;
    border: solid 1px #dddddd;
}

.shop-info .shop-info-right .bag-select .bag-qty-stock {
    font-size: 14px;
    color: #888;
    line-height: 24px;
    width: 60px;
}

.shop-info .shop-info-right .open-multiple-size-0 ul li {
    margin: 0 10px 10px 0;
}

.shop-info .shop-info-right .open-multiple-size-1 .open-multiple-size-item {
    margin: 5px 0;
}

.shop-info .shop-info-right .open-multiple-size-1 .bag-qty {
    margin: 0 15px;
}

.shop-info .shop-info-right .open-multiple-size-1 .bag-qty input {
    width: 100px;
}

.top-bag-main {
    width: 460px;
    background: #fff;
    border-radius: 5px;
}

.top-bag-main .top-bag-main-p {
    font-size: 18px;
    color: #2b353e;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.top-bag-main .top-bag-main-p span {
    color: #bbbbbb;
    font-size: 14px;
    padding: 0 10px;
}

.top-bag-main .top-bag-all {
    padding: 20px;
}

.top-bag-main .top-bag-sub {
    height: 46px;
    background-color: #eeeeee;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 20px;
}

.top-bag-main .top-bag-sub p {
    font-size: 14px;
    color: #242f38;
}

.top-bag-main .top-bag-add {
    display: -ms-flexbox;
    display: flex;
}

.top-bag-main .top-bag-add a {
    width: 100%;
    font-size: 14px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    height: 56px;
    background-color: #242f38;
    color: #fff;
}

.top-bag-main .bag-close {
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 15px;
    color: #fff;
    width: 25px;
    height: 25px;
    background-color: #caccce;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 0 !important;
}

.top-bag-main .top-bag-main-title {
    font-size: 18px;
    color: #333333;
    padding: 20px;
    font-weight: 550;
    border-bottom: 1px solid #eee;
    text-align: left;
}

.top-bag-main .top-bag-tips {
    width: 100%;
    height: 50px;
    font-size: 14px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    background: #000;
    color: #fff;
}

.top-bag-main .top-bag-tips:hover {
    background: #242f38;
}

.top-bag-main .top-bag {
    display: flex;
    justify-content: space-around;
    padding: 5px 0;
    border-bottom: 1px solid #eee;
    font-size: 12px;
}

.top-bag-main .top-bag .top-bag-left {
    font-size: 0;
    width: 100px;
    height: 110px;
    overflow: hidden;
}

.top-bag-main .top-bag .top-bag-left img {
    width: 100%;
}

.top-bag-main .top-bag .top-bag-right {
    padding-left: 10px;
    width: 100%;
    overflow: hidden;
}

.top-bag-main .top-bag .top-bag-right span {
    display: block;
    line-height: 1.5;
}

.top-bag-main .top-bag .top-bag-right .top-bag-right-p {
    font-size: 14px;
    color: #242f38;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    width: 300px;
}

.top-bag-main .top-bag .top-bag-right .top-bag-right-down {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-around;
    -ms-flex-align: center;
    align-items: center;
    padding: 15px 0;
}

.top-bag-main .top-bag .top-bag-right .top-bag-right-down .top-bag-right-select p {
    font-size: 14px;
    color: #242f38;
}

.top-bag-main .top-bag .top-bag-right .top-bag-right-down .top-bag-right-price p:first-child {
    color: #bfbfbf;
    font-size: 14px;
    text-decoration: line-through;
}

.top-bag-main .top-bag .top-bag-right .top-bag-right-down .top-bag-right-price p:nth-child(2) {
    color: #242f38;
    font-size: 14px;
}

.size-tabs a {
    width: 60px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 15px 15px 0;
}

.size-tabs .active {
    color: #fff;
}

.container-404 {
    width: 400px;
    margin: 100px auto;
    position: relative;
}

.container-404 img {
    width: 100%;
}

.container-404>div {
    position: absolute;
    top: 75%;
    left: 0;
    right: 0;
    margin: auto;
}

.container-404>div p {
    color: #848484;
    text-align: center;
    font-size: 24px;
}

.container-404>div a {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #8f8f8f;
    border-radius: 4px;
    width: 150px;
    height: 50px;
    font-size: 20px;
    margin: 20px auto 0;
    color: #8f8f8f;
}

.page-list-shop {
    margin: 30px auto;
    display: flex;
    justify-content: center;
}

.page-style {
    position: relative;
    text-align: center;
    zoom: 1;
    display: flex;
    left: 0;
    justify-content: flex-end;
    align-items: center;
    margin: 20px auto 50px;
}

.page-style ::after,
.page-style ::before {
    content: "";
    display: table;
}

.page-style .current {
    background: #ffcf3d;
    color: #fff;
}

.page-style b {
    font-size: 10px;
}

.page-style .next,
.page-style .prev {
    font-size: 14px;
}

.page-style a {
    float: left;
    height: 30px;
    line-height: 30px;
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    color: #bdbdbd;
    font-size: 14px;
    cursor: pointer;
    margin-right: 10px;
    border-radius: 5px;
    padding: 0 14px;
}

.page-style a.active {
    background: #eee;
    color: #333;
}

.page-style span {
    float: left;
    margin-right: 10px;
    width: 15px;
    height: 30px;
    line-height: 30px;
    color: #bdbdbd;
    font-size: 14px;
}

.height-292 {
    height: 292px !important;
}

.height-292 img {
    /* height: 100%; */
}

.no-data-shop {
    grid-template-columns: none !important;
}

.no-data-shop .no-data-img {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}

.no-data-shop .no-data-img img {
    display: block;
    width: 120px;
    height: 120px;
    margin: 0 auto;
}

.order-form>div {
    padding: 10px;
    width: 220px;
    background: rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 5px 0px #bdbbbb;
    border-radius: 0px 4px 4px 0px;
    color: #fff;
    text-align: center;
}

.order-form>div img {
    display: block;
    width: 90px;
    margin: auto;
}

.order-form>div b {
    display: block;
    margin: 5px auto;
}

.order-form .fo_move {
    max-width: 260px;
    font-size: 0;
    background: #fff;
    border: solid 1px #e8e8e8;
    height: 60px;
    display: flex;
    align-items: center;
}

.order-fix {
    position: fixed;
    animation: orderMove 10s infinite;
    -webkit-animation: orderMove 10s infinite;
    color: #000;
    z-index: 10;
}

@keyframes orderMove {
    0% {
        bottom: 0px;
    }

    10% {
        bottom: 5%;
    }

    50% {
        bottom: 5%;
        background: rgba(0, 0, 0, 0.3);
        opacity: 1;
    }

    60% {
        bottom: -10%;
        opacity: 0;
    }

    100% {
        bottom: -100%;
    }
}

@-webkit-keyframes orderMove {
    0% {
        bottom: 0px;
    }

    10% {
        bottom: 5%;
    }

    50% {
        bottom: 5%;
        background: rgba(0, 0, 0, 0.3);
        opacity: 1;
    }

    60% {
        bottom: -10%;
        opacity: 0;
    }

    100% {
        bottom: -100%;
    }
}

.post-banner {
    display: flex;
    justify-content: center;
    margin: 20px auto;
    padding: 0 40px;
}

.post-banner .nav {
    background: #fff;
    padding: 10px 0px 10px 20px;
    margin-right: 20px;
    width: 18%;
}

.post-banner .nav p {
    font-weight: 550;
    font-size: 14px;
    color: #202020;
    margin: 20px 0 10px;
}

.post-banner .nav a {
    font-size: 12px;
    display: block;
    margin-bottom: 10px;
    color: #2b353e;
    position: relative;
}

.post-banner .nav a.active::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: -10px;
    height: 12px;
    width: 2px;
    margin-top: -6px;
    background-color: #000000;
}

.post-banner article {
    background: #fff;
    padding: 20px 40px;
    width: 58%;
}

.post-banner article>div {
    overflow: hidden;
}

.post-banner article>div p span {
    font-size: inherit;
    word-wrap: break-word;
    /* word-break: break-all; */
    white-space: pre-wrap !important;
}

.post-banner article img {
    max-width: 100%;
}

.post-banner article .title {
    text-transform: Capitalize;
    font-weight: bold;
    font-size: 18px;
    line-height: 24px;
    color: #252525;
    text-align: center;
    margin-bottom: 30px;
}

.post-banner .contact-us {
    width: 18%;
}

.post-banner .contact-us .contact-us-top {
    background: #000;
    height: 6px;
    margin: 10px 0 0;
}

.post-banner .contact-us .contact-us-bottom div {
    background: #f4f5f5;
    padding: 24px 10px 24px 10px;
}

.contact-us-bottom ul {
    border: 1px solid #f4f5f5;
    padding: 15px 10px 24px 15px;
}

.contact-us-bottom ul li {
    padding: 5px 0;
}

.contact-us-bottom ul .active {
    color: #202020;
    font-weight: bold;
}

/* https://www.feelingirldress.com */
.bag-item-html-5 {
    padding: 20px;
}

.bag-item-html-5 .shop-info {
    padding: 0 !important;
}

.bag-item-html-5 .shop-info .scroll {
    height: auto !important;
}

.bag-item-html-5 .shop-info .scroll .shop-info-left {
    width: 50% !important;
    min-width: 50% !important;
}

.bag-item-html-5 .shop-info .shop-info-right .title-clamp {
    margin-bottom: 5px;
    text-align: left;
    font-size: 24px !important;
    color: #333;
    overflow: hidden;
    word-break: break-all;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.bag-item-html-5 .price_ {
    padding: 10px 0;
    font-size: 24px;
    color: #ffb2c5;
    font-weight: 550;
}

.bag-item-html-5 .shop-info .shop-info-right .bag-detail {
    margin: 0;
    display: flex;
    flex-direction: column;
}

.bag-item-html-5 .shop-info .shop-info-right .bag-detail span {
    line-height: 24px;
    font-size: 14px;
    color: #999999;
}

.bag-item-html-5 .shop-info .shop-info-right .bag-select {
    margin: 0;
}

.bag-item-html-5 .shop-info .shop-info-right .bag-select p {
    font-size: 12px !important;
    line-height: 30px;
}

.bag-item-html-5 .shop-info .shop-info-right .bag-select ul li {
    background-color: #ffffff;
    cursor: pointer;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    align-items: center;
    margin: 3px 10px;
    font-size: 14px !important;
    font-weight: 550;
    border: 2px solid #efecf1;
}

.bag-item-html-5 .shop-info .shop-info-right .bag-select ul a {
    width: 80px !important;
    margin: 3px 10px;
    border-radius: 0;
}

.shop-info .shop-info-right .bag-select ul a img {
    border-radius: 0;
}

.bag-item-html-5 .shop-info .shop-info-right .bag-select ul a.active {
    transition: all 0.3s ease;

    background: {
            {
            T.main_color
        }
    }

    ;

    border: 2px solid {
            {
            T.main_color
        }
    }

    ;
}

.bag-item-html-5 .shop-info .shop-info-right .bag-qty-select p {
    line-height: 36px;
}

.bag-item-html-5 .shop-info .shop-info-right .bag-qty-select .bag-qty {
    margin: 0;
    padding: 5px 10px;
}

.bag-item-html-5 .shop-info .shop-info-right .bag-qty-select .bag-qty i {
    width: 30px;
    height: 30px;
    font-size: 20px;
    color: #7d7d7d;
    background: #efecf1;
}

.bag-item-html-5 .shop-info .shop-info-right .bag-qty-select .bag-qty input {
    width: 73px;
    height: 30px;
    background: #efecf1;
    margin: 0 15px;
    border-radius: 0;
    border: none;
}

.bag-item-html-5 .shop-info-button {
    flex-direction: column;
    padding: 0 5px;
}

.bag-item-html-5 .shop-info-button .icon-bag,
.bag-item-html-5 .shop-info-button .icon-wish {
    margin: 15px auto 0;
    border-radius: 0;
    width: 100%;
    font-size: 18px;
    border: solid 1px #ffb2c5;
}

.bag-item-html-5 .shop-info-button .icon-bag {
    color: #fff;

    background: {
            {
            T.main_color
        }
    }

    ;
}

.bag-item-html-5 .shop-info-button .icon-wish {
    height: 50px;

    color: {
            {
            T.main_color
        }
    }

    ;
}

.bag-item-html-5 .shop-info-button i {
    font-size: 20px;
    margin-right: 5px;
}

.bag-item-html-5 .bag-sku-5 {
    font-style: italic;
}

.advertisement-banner-1 .full-image img,
.advertisement-banner-3 .full-image img,
.advertisement-banner-2 .full-image img {
    height: 100%;
    width: 100%;
}


.hx-skeleton li {
    background-image: linear-gradient(90deg, hsla(0, 0%, 74.5%, .2) 25%, hsla(0, 0%, 50.6%, .4) 37%, hsla(0, 0%, 74.5%, .2) 63%);
    width: 100%;
    height: 0.6rem;
    list-style: none;
    background-size: 400% 100%;
    background-position: 100% 50%;
    animation: skeleton-loading 1.4s ease infinite;
    margin-bottom: 5px;

}

.skel-15 li {
    height: 15px;
}


@keyframes skeleton-loading {

    0% {
        background-position: 100% 50%;

    }

    100% {
        background-position: 0 50%;

    }

}

.lay-imgs,
.lay-imgs:hover {
    height: 40px !important;
    width: 40px !important;
}

.slick-like-item .shop-item-up img {
    /* width:auto !important; */
}


.la-ball-spin-clockwise-fade,
.la-ball-spin-clockwise-fade>div {
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.la-ball-spin-clockwise-fade {
    display: block;
    font-size: 0;
    color: #fff;
}

.la-ball-spin-clockwise-fade.la-dark {
    color: #333;
}

.la-ball-spin-clockwise-fade>div {
    display: inline-block;
    float: none;
    background-color: currentColor;
    border: 0 solid currentColor;
}

.la-ball-spin-clockwise-fade {
    width: 32px;
    height: 32px;
}

.la-ball-spin-clockwise-fade>div {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    margin-top: -4px;
    margin-left: -4px;
    border-radius: 100%;
    -webkit-animation: ball-spin-clockwise-fade 1s infinite linear;
    -moz-animation: ball-spin-clockwise-fade 1s infinite linear;
    -o-animation: ball-spin-clockwise-fade 1s infinite linear;
    animation: ball-spin-clockwise-fade 1s infinite linear;
}

.la-ball-spin-clockwise-fade>div:nth-child(1) {
    top: 5%;
    left: 50%;
    -webkit-animation-delay: -.875s;
    -moz-animation-delay: -.875s;
    -o-animation-delay: -.875s;
    animation-delay: -.875s;
}

.la-ball-spin-clockwise-fade>div:nth-child(2) {
    top: 18.1801948466%;
    left: 81.8198051534%;
    -webkit-animation-delay: -.75s;
    -moz-animation-delay: -.75s;
    -o-animation-delay: -.75s;
    animation-delay: -.75s;
}

.la-ball-spin-clockwise-fade>div:nth-child(3) {
    top: 50%;
    left: 95%;
    -webkit-animation-delay: -.625s;
    -moz-animation-delay: -.625s;
    -o-animation-delay: -.625s;
    animation-delay: -.625s;
}

.la-ball-spin-clockwise-fade>div:nth-child(4) {
    top: 81.8198051534%;
    left: 81.8198051534%;
    -webkit-animation-delay: -.5s;
    -moz-animation-delay: -.5s;
    -o-animation-delay: -.5s;
    animation-delay: -.5s;
}

.la-ball-spin-clockwise-fade>div:nth-child(5) {
    top: 94.9999999966%;
    left: 50.0000000005%;
    -webkit-animation-delay: -.375s;
    -moz-animation-delay: -.375s;
    -o-animation-delay: -.375s;
    animation-delay: -.375s;
}

.la-ball-spin-clockwise-fade>div:nth-child(6) {
    top: 81.8198046966%;
    left: 18.1801949248%;
    -webkit-animation-delay: -.25s;
    -moz-animation-delay: -.25s;
    -o-animation-delay: -.25s;
    animation-delay: -.25s;
}

.la-ball-spin-clockwise-fade>div:nth-child(7) {
    top: 49.9999750815%;
    left: 5.0000051215%;
    -webkit-animation-delay: -.125s;
    -moz-animation-delay: -.125s;
    -o-animation-delay: -.125s;
    animation-delay: -.125s;
}

.la-ball-spin-clockwise-fade>div:nth-child(8) {
    top: 18.179464974%;
    left: 18.1803700518%;
    -webkit-animation-delay: 0s;
    -moz-animation-delay: 0s;
    -o-animation-delay: 0s;
    animation-delay: 0s;
}

.la-ball-spin-clockwise-fade.la-sm {
    width: 16px;
    height: 16px;
}

.la-ball-spin-clockwise-fade.la-sm>div {
    width: 4px;
    height: 4px;
    margin-top: -2px;
    margin-left: -2px;
}

.la-ball-spin-clockwise-fade.la-2x {
    width: 64px;
    height: 64px;
}

.la-ball-spin-clockwise-fade.la-2x>div {
    width: 16px;
    height: 16px;
    margin-top: -8px;
    margin-left: -8px;
}

.la-ball-spin-clockwise-fade.la-3x {
    width: 96px;
    height: 96px;
}

.la-ball-spin-clockwise-fade.la-3x>div {
    width: 24px;
    height: 24px;
    margin-top: -12px;
    margin-left: -12px;
}

/*
 * Animation
 */
@-webkit-keyframes ball-spin-clockwise-fade {
    50% {
        opacity: .25;
        -webkit-transform: scale(.5);
        transform: scale(.5);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-moz-keyframes ball-spin-clockwise-fade {
    50% {
        opacity: .25;
        -moz-transform: scale(.5);
        transform: scale(.5);
    }

    100% {
        opacity: 1;
        -moz-transform: scale(1);
        transform: scale(1);
    }
}

@-o-keyframes ball-spin-clockwise-fade {
    50% {
        opacity: .25;
        -o-transform: scale(.5);
        transform: scale(.5);
    }

    100% {
        opacity: 1;
        -o-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes ball-spin-clockwise-fade {
    50% {
        opacity: .25;
        -webkit-transform: scale(.5);
        -moz-transform: scale(.5);
        -o-transform: scale(.5);
        transform: scale(.5);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }
}

.hx-is-distribution {
    position: fixed;
    height: 320px;
    right: 0;
    top: 50%;
    margin-top: -160px;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
    text-align: center;
    background: #fff;
    display: flex;
    z-index: 10;
    overflow: hidden;
}

.hx-is-distribution .hx-is-dis-img {
    width: 40px;
    color: #fff;
    height: 100%;
    cursor: pointer;
}

.hx-is-distribution .hx-is-dis-img p {
    writing-mode: vertical-rl;
    display: block;
    height: 100%;
    font-size: 25px;
    line-height: 33px;
    transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    /* IE 9 */
    -moz-transform: rotate(-180deg);
    /* Firefox */
    -webkit-transform: rotate(-180deg);
    /* Safari 和 Chrome */
    -o-transform: rotate(-180deg);
    /* Opera */
}

.hx-is-distribution .hx-is-dis-img .is-dis-right {
    display: none;
}

.hx-is-distribution .hx-is-dis-img img {
    width: 100%;
}

.hx-is-distribution .hx-is-dis-con {
    width: 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.hx-is-distribution .hx-is-dis-con img {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.hx-is-distribution .hx-is-dis-con .hx-dis-con-title,
.hx-is-distribution .hx-is-dis-con .dis-year {
    position: relative;
    z-index: 1;
}

.hx-is-distribution .hx-is-dis-con .hx-dis-con-title {
    font-size: 33px;
    width: 90%;
    margin: 0 auto;
    margin-top: 20%;
}

.hx-is-distribution .hx-is-dis-con .dis-year {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    height: 50px;
    width: -webkit-fill-available;
    color: #fff;
    width: 30%;
    margin: 20px auto;
    font-size: 24px;
}

.copy-is-login {
    display: none;
}

.truedistribution_disbaled .layui-layer-btn .layui-layer-btn1 {
    cursor: no-drop;
}

.hx-is-distribution.is-active {
    width: 245px;
}

/* width: 245px; */
.hx-is-distribution .hx-is-d-title {
    font-size: 20px;
    margin-top: 30px;
    display: none;
}

.hx-is-distribution .hx-is-d-title.is-show {
    display: block;
}

.btns-copy-items {
    display: flex;
    margin-top: 10px;
}

.btn-copy {
    height: 40px;
    line-height: 40px;
    border: none;
    outline: none;
    cursor: pointer;
    border-radius: 3px;
    padding: 0 10px;
    color: #fff;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.btn-friends-value {
    border: solid 1px #ccc;
    padding: 0 5px;
    width: 379px;
}

.btn-friends {
    margin-top: 10px;
    height: 40px;
    line-height: 40px;
    border: none;
    outline: none;
    margin: 10px;
    padding: 0 30px;
    color: #fff;
    /* width: 440px; */
    border-radius: 3px;
}


.tip-img-view-hover {
    overflow: inherit;
}

.tip-img-view-hover .tip-img-view-img {
    height: 228px;
    width: 300px;
    position: absolute;
    left: 114px;
    display: none;
    z-index: 2;
}

.tip-img-view-hover:hover .tip-img-view-img {
    display: block;
}

.open-multiple-size-ovl {
    max-height: 200px;
    overflow: hidden;
    overflow-y: auto;
}

.checkmark {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: #fff;
    stroke-miterlimit: 10;
    margin: 10% auto;
    /* -webkit-animation: fill 0.1s ease-in-out 0.1s forwards, scale 0.3s ease-in-out 0.9s both;
  animation: fill 0.1s ease-in-out 0.1s forwards, scale 0.3s ease-in-out 0.9s both;  */
}

@-webkit-keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

@-webkit-keyframes scale {

    0%,
    100% {
        -webkit-transform: none;
        transform: none;
    }

    50% {
        -webkit-transform: scale3d(1.1, 1.1, 1);
        transform: scale3d(1.1, 1.1, 1);
    }
}

@keyframes scale {

    0%,
    100% {
        -webkit-transform: none;
        transform: none;
    }

    50% {
        -webkit-transform: scale3d(1.1, 1.1, 1);
        transform: scale3d(1.1, 1.1, 1);
    }
}


.distribution_model_tip_1 {
    width: 600px !important;
}

.distribution_model_tip_1 .distribution_model_tip_title {
    font-size: 32px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
}

.distribution_model_tip_body {
    padding: 20px 20px 0;
}

.distribution_model_tip_1 .layui-layer-content {
    height: auto !important;
}

.distribution_model_tip_1 .distribution_model_tip_body {
    /* padding:10px; */
}

.distribution_model_tip_1 .layui-layer-btn {
    text-align: center;
    padding: 0 0 10px;
}

.distribution_model_tip_1 .layui-layer-btn a {
    border-radius: 5px;
    height: 32px;
    line-height: 32px;
}

.distribution_model_tip_body .distribution_model_tip_items {
    display: flex;
    flex-wrap: wrap;
}

.distribution_model_tip_body .distribution_model_tip_items .d_m_t_item {
    width: 270px;
    height: 320px;
    position: relative;
    margin-bottom: 20px;
    /* overflow: hidden; */
}

.distribution_model_tip_body .distribution_model_tip_items .d_m_t_item:nth-child(even) {
    margin-left: 15px;
}

.distribution_model_tip_body .distribution_model_tip_items .d_m_t_item .d_m_t_item_setp {
    height: 32px;
    line-height: 32px;
    color: #fff;
    width: 130px;
    font-size: 18px;
    font-weight: bold;
    border-top-right-radius: 6px;
    border-top-left-radius: 6px;
    text-indent: 10px
}

.distribution_model_tip_body .distribution_model_tip_items .d_m_t_item .d_m_t_item_setp.d_m_setp1 {
    background: linear-gradient(60deg, #EB624E, #FE7461);
}

.distribution_model_tip_body .distribution_model_tip_items .d_m_t_item .d_m_t_item_setp.d_m_setp2 {
    background: linear-gradient(60deg, #5591F0, #4FA6F5);

}

.distribution_model_tip_body .distribution_model_tip_items .d_m_t_item .d_m_t_item_setp.d_m_setp3 {
    background: linear-gradient(60deg, #E677AD, #FC83BD);
}

.distribution_model_tip_body .distribution_model_tip_items .d_m_t_item .d_m_t_item_setp.d_m_setp4 {
    background: linear-gradient(60deg, #BC69CA, #E092ED);
}

.distribution_model_tip_body .distribution_model_tip_items .d_m_t_item_cont {
    border: solid 2px #F4F6F8;
    height: 278px;
    box-shadow: 0px 0px 10px rgba(235, 236, 238, 0.5);
    /* box-shadow: 0 10px 10px #ccc; */
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    border-bottom-left-radius: 6px;
    padding: 10px;
}

.distribution_model_tip_body .distribution_model_tip_items .d_m_t_item_cont .d_m_t_item_name {
    font-size: 16px;
    color: #000;
    height: 155px;
}


.inquiry-open {
    width: 600px !important;
    height: 332px !important;
}

.inquiry-open .layui-layer-content {
    height: 357px !important;
}

.inquiry-open .layui-layer-content .hxcart_inquiry_title {
    height: 40px;
    line-height: 40px;
    text-indent: 20px;
    /* background: #000; */
    color: #fff;
    position: relative;
}

.inquiry-open .layui-layer-content .hxcart_inquiry_title i {
    font-size: 25px;
    color: #fff;
    position: absolute;
    right: 30px;
    height: 30px;
    width: 30px;
    cursor: pointer;
}

.inquiry-open .layui-layer-content .inquiry-html-1 {
    padding: 20px !important;
}

.inquiry-open .layui-layer-content .layui-form .layui-form-item {
    display: flex;
}

.inquiry-open .layui-layer-content .layui-form .layui-form-item .error {
    color: #ff4d4f;
}

.inquiry-open .layui-layer-content .layui-form .layui-form-item .layui-form-label {
    width: 172px;
}

.inquiry-open .layui-layer-content .layui-form .layui-form-item .layui-input-block {
    margin-left: 0;
    width: 100%;
}

.inquiry-open .layui-layer-content .inquiry-btn-submit {
    width: 150px;
}

.inquiry-open .layui-layer-content .inquiry-btn {
    text-align: center;
}

.inquiry-open .layui-layer-btn {
    display: none;
}

.inquiry-open-msg {
    max-height: 60px !important;
    /* line-height:40px; */
    max-width: 200px !important;
}

.msg-succes-center {
    text-align: center;
    /* width: 30px !important; */
    border-radius: 4px;
    min-width: 110px !important;
}

.msg-succes-center .layui-layer-padding {
    padding: 10px 20px 10px 55px !important;
}

.msg-succes-center .layui-layer-padding .layui-layer-ico {
    top: 7px !important;
}

.center .layui-layer-content {
    /* width: 30px !important; */
}

/*prodcut grid style*/
.hxcart-grid-list {
    box-sizing: border-box;
    margin-bottom: 60px;
}


.hxcart-grid-list .grid-title {
    text-align: center;
    color: #333;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: bold;
}

.hxcart-grid-list .grid-content {
    color: #666;
    font-size: 18px;
}

.hxcart-grid-list .shop-main {
    margin-top: 14px;
    display: grid;
    gap: 0.5rem;
    width: 100%;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hxcart-grid-list .shop-main .grid-list-list {
    height: 498px;
    border: solid 1px #eeeeee;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 0 10px #eee;
}


.hxcart-grid-list .grid-list-list:hover {
    box-shadow: 0 0 5px 5px #eee;
}

.hxcart-grid-list .shop-main .grid-list-list .grid-list-img {
    width: 100%;
    height: 368px;
    overflow: hidden;
    position: relative;
    display: flex;
    text-align: center;
}

.hxcart-grid-list .shop-main .grid-list-list .grid-list-img img {
    max-height: 100%;
    width: 100%;
}



.hxcart-grid-list .shop-main .grid-list-list-1 {

    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 0 10px #eee;
}


.hxcart-grid-list .grid-list-list-1:hover {
    box-shadow: 0 0 5px 5px #eee;
}

.hxcart-grid-list .shop-main .grid-list-list-1 .grid-list-img {
    border: solid 1px #eeeeee;
    width: 100%;
    height: 368px;
    overflow: hidden;
    position: relative;
    display: flex;
    text-align: center;
}

.hxcart-grid-list .shop-main .grid-list-list-1 .grid-list-img img {
    max-height: 100%;
    width: 100%;
}

.hxcart-grid-list .shop-main .grid-list-list-1 .grid-list-title-1 {
    font-size: 18px;
    color: #333;
    text-align: left;
    margin: 18px 5px 12px 5px;
    word-break: break-all;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden
}

.hxcart-grid-list .shop-main .grid-list-list-1 .price {
    font-size: 24px;
    margin: 0 5px 0 5px;
    text-align: left;
}






.hxcart-grid-list .shop-main .grid-list-list .grid-list-title {
    font-size: 18px;
    color: #333;
    display: block;
    text-align: center;
    margin: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hxcart-grid-list .shop-main .grid-list-list .grid-list-content {
    font-size: 14px;
    color: #666;
    padding: 0 10px;
    height: 64px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
}

.hxcart-grid-list .shop-main .grid-list-list .grid-list-link-con {
    text-align: center;
}

.hxcart-grid-list .shop-main .grid-list-list .grid-list-link {
    color: #FF970F;
    font-size: 14px;
    margin-top: 5px;
    display: inline-block;
    border-bottom: solid 1px #FF970F;
    height: 20px;
}

/*inq info*/
.hxcart-prd-inq-det {
    box-sizing: border-box;
    padding: 0;
    margin-top: 20px;
}

.hxcart-prd-inq-det .hxcart-prd-img {
    width: 100%;
    height: 300px;
}

.hxcart-prd-inq-det .hxcart-prd-img img {
    width: 100%;
    max-height: 100%;
}

.hxcart-prd-inq-det .hxcart-prd-con {
    display: flex;
    margin: 20px 0;
}

.hxcart-prd-inq-det .hxcart-prd-con-left {
    width: 600px;
}

.hxcart-prd-inq-det .hxcart-prd-con-left .prd-inq-img-banner .full-image {
    height: 300px;
    vertical-align: middle;
    display: flex;
    text-align: center;
    justify-content: center;
}

.hxcart-prd-inq-det .hxcart-prd-con-left .prd-inq-img-banner .full-image img {
    max-height: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.hxcart-prd-inq-det .hxcart-prd-con-right {
    width: 800px;
    padding: 10px;
}

.hxcart-prd-inq-det .hxcart-prd-con-right .con-right-title {
    color: #333;
    font-size: 16px;
}

.hxcart-prd-inq-det .hxcart-prd-con-right .con-right-info {
    color: #666;
    margin-top: 10px;
    font-size: 16px;
}

.hxcart-prd-inq-det .hxcart-prd-color {
    padding: 20px;
}

.hxcart-prd-inq-det .hxcart-prd-color .title {
    font-weight: bold;
    font-size: 24px;
}

.hxcart-prd-inq-det .hxcart-prd-color .bag-select {
    margin: 5px 0;
}

.hxcart-prd-inq-det .hxcart-prd-color .bag-select p {
    font-size: 16px;
    color: #333;
    line-height: 25px;
}

.hxcart-prd-inq-det .hxcart-prd-color .bag-select ul {
    display: flex;
    flex-wrap: wrap;
    padding: 10px 0;
}

.hxcart-prd-inq-det .hxcart-prd-color .bag-select ul a {
    border-radius: 5px;
    /* width: 78px; */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 10px 10px 0;
    border: 1px solid transparent;
}

.hxcart-prd-inq-det .hxcart-prd-color .bag-select ul a.active,
.hxcart-prd-inq-det .hxcart-prd-color .bag-select ul a:hover {
    border: 1px solid #FFC0CB;
}

.hxcart-prd-inq-det .hxcart-prd-color .bag-select .sku b,
.hxcart-prd-inq-det .hxcart-prd-color .bag-select .weight b,
.hxcart-prd-inq-det .hxcart-prd-color .bag-select .material b {
    margin-right: 10px;
}

.hxcart-prd-inq-det .hxcart-prd-color .bag-select .weight {
    margin: 10px 0;
}


.hxcart-grap-controls {
    box-sizing: border-box;
}

.hxcart-grap-controls .slick-prev {
    left: 0
}

.hxcart-grap-controls .slick-next {
    right: 0;
}

.hxcart-grap-controls .grap-controls-con.left {
    display: flex;
}

.hxcart-grap-controls .grap-controls-con.left .grap-controls-left {
    padding: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    justify-content: center;
}

.hxcart-grap-controls .grap-controls-con.left .grap-controls-left .con-right-info {
    margin: 0;
}

.hxcart-grap-controls .grap-controls-con.left .grap-controls-left .con-right-info .info-title {
    font-size: 35px;
    display: block;
    width: 100%;
    margin-bottom: 20px;
    text-align: left;
}

.hxcart-grap-controls .grap-controls-con.left .grap-controls-right {
    width: 540px;
    height: 540px;
}

.hxcart-grap-controls .grap-controls-con.left .grap-controls-right .prd-inq-img-banner {
    height: 100%;
}

.hxcart-grap-controls .grap-controls-con.left .grap-controls-right .prd-inq-img-banner .slick-slide>div {
    height: 540px;
}

.hxcart-grap-controls .grap-controls-con.left .grap-controls-right .prd-inq-img-banner .full-image-1 {
    display: flex !important;
    align-items: center;
    justify-content: center;
    /* height: 540px; */
}

.hxcart-grap-controls .grap-controls-con.left .grap-controls-right .prd-inq-img-banner .full-image-1 img {
    margin: 0 auto;
    width: 100%;
    margin-left: 15px;
}

.hxcart-grap-controls .grap-controls-con.right {
    display: flex;
    align-items: center;
}

.hxcart-grap-controls .grap-controls-con.right .grap-controls-left {
    /* order: 1;
  padding: 20px;
  width: 100%; */
    order: 1;
    padding: 20px;
    width: 100%;
    display: flex;
    /* align-items: center; */
    flex-direction: column;
    justify-content: center;
}

.hxcart-grap-controls .grap-controls-con.right .grap-controls-left .con-right-info {
    margin: 10px 0;
}

.hxcart-grap-controls .grap-controls-con.right .grap-controls-left .con-right-info .info-title {
    font-size: 35px;
    display: block;
    width: 100%;
    margin-bottom: 10px;
    text-align: left;
}

.hxcart-grap-controls .grap-controls-con.right .grap-controls-right {
    order: 0;
    width: 540px;
    height: 540px;
}

.hxcart-grap-controls .grap-controls-con.right .grap-controls-right .prd-inq-img-banner {
    height: 100%;
}

.hxcart-grap-controls .grap-controls-con.right .grap-controls-right .prd-inq-img-banner .slick-slide>div {
    height: 540px;
}

.hxcart-grap-controls .grap-controls-con.right .grap-controls-right .prd-inq-img-banner .full-image-1 {
    display: flex !important;
    align-items: center;
    height: 540px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.hxcart-grap-controls .grap-controls-con.right .grap-controls-right .prd-inq-img-banner .full-image-1 img {
    margin: 0 auto;
    width: 100%;
}

.hxcart-grap-controls .grap-controls-con.top .grap-controls-left {
    box-sizing: border-box;
    padding: 20px;
    width: 100%;
}

.hxcart-grap-controls .grap-controls-con.top .grap-controls-left .con-right-info {
    margin: 10px 0;
}

.hxcart-grap-controls .grap-controls-con.top .grap-controls-left .con-right-info .info-title {
    font-size: 35px;
    display: block;
    width: 100%;
    margin-bottom: 10px;
    text-align: center;
}

.hxcart-grap-controls .grap-controls-con.top .grap-controls-right .prd-inq-img-banner {
    height: 100%;
}

.hxcart-grap-controls .grap-controls-con.top .grap-controls-right .prd-inq-img-banner .slick-slide>div {
    height: 540px;
}

.hxcart-grap-controls .grap-controls-con.top .grap-controls-right .prd-inq-img-banner .full-image-1 {
    display: flex !important;
    align-items: center;
    /* height: 540px; */
}

.hxcart-grap-controls .grap-controls-con.top .grap-controls-right .prd-inq-img-banner .full-image-1 img {
    margin: 0 auto;
    /* width: 100%; */
}

.hxcart-grap-controls .grap-controls-con.bottom {
    display: flex;
    flex-direction: column-reverse;
}

.hxcart-grap-controls .grap-controls-con.bottom .grap-controls-left {
    padding: 0 20px;
    width: 100%;
    margin-bottom: 10px;
}

.hxcart-grap-controls .grap-controls-con.bottom .grap-controls-left .con-right-info {
    margin: 10px 0;
}

.hxcart-grap-controls .grap-controls-con.bottom .grap-controls-left .con-right-info .info-title {
    font-size: 35px;
    display: block;
    width: 100%;
    margin-bottom: 10px;
    text-align: center;
}

.hxcart-grap-controls .grap-controls-con.bottom .grap-controls-right .prd-inq-img-banner {
    height: 100%;
}

.hxcart-grap-controls .grap-controls-con.bottom .grap-controls-right .prd-inq-img-banner .slick-slide>div {
    height: 540px;
}

.hxcart-grap-controls .grap-controls-con.bottom .grap-controls-right .prd-inq-img-banner .full-image-1 {
    display: flex !important;
    align-items: center;
}

.hxcart-grap-controls .grap-controls-con.bottom .grap-controls-right .prd-inq-img-banner .full-image-1 img {
    margin: 0 auto;
    /* width: 100%; */
}

.hxcart-grap-controls .grap-controls-con.center .grap-controls-left {
    padding: 20px;
    width: 100%;
    text-align: center;
}

.hxcart-grap-controls .grap-controls-con.center .grap-controls-left .con-right-info {
    margin: 10px 0;
}

.hxcart-grap-controls .grap-controls-con.center .grap-controls-left .con-right-info .info-title {
    font-size: 35px;
    display: block;
    width: 100%;
    margin-bottom: 10px;
    /* text-align: left; */
}

.hxcart-grap-controls .grap-controls-con.center .grap-controls-right .prd-inq-img-banner {
    height: 100%;
}

.hxcart-grap-controls .grap-controls-con.center .grap-controls-right .prd-inq-img-banner .slick-slide>div {
    height: 540px;
}

.hxcart-grap-controls .grap-controls-con.center .grap-controls-right .prd-inq-img-banner .full-image {
    display: flex !important;
    align-items: center;
    height: 540px;
}

.hxcart-grap-controls .grap-controls-con.center .grap-controls-right .prd-inq-img-banner .full-image img {
    margin: 0 auto;
    width: 100%;
}

.hxcart-contact-form {
    box-sizing: border-box;
}

.hxcart-contact-form .contact-form-con {
    display: flex;
}

.hxcart-contact-form .contact-form-con .form-con-left {
    width: 850px;
}

.hxcart-contact-form .contact-form-con .form-con-left ul li {
    margin-bottom: 10px;
}

.hxcart-contact-form .contact-form-con .form-con-left ul li span {
    margin-left: 10px;
}

.hxcart-contact-form .contact-form-con .form-con-right {
    width: 650px;
    text-align: center;
}

.hxcart-contact-form .contact-form-con .form-con-right .layui-form-label {
    width: 120px;
}

.hxcart-contact-form .contact-form-con .form-con-right .layui-input-block {
    margin-left: 0;
    min-height: 36px;
    float: left;
    width: 75%;
}

.hxcart-contact-form .contact-form-con .form-con-right .inquiry-btn {
    text-align: center;
    width: 100%;
}

.hxcart-contact-form .contact-form-con .form-con-right .inquiry-btn-submit {
    width: 400px;
    margin: 0 auto;
}


.hxcart-contact-us {
    box-sizing: border-box;
    margin-top: 10px;
    margin-bottom: 40px;
}

.hxcart-contact-us .contact-us-con {
    display: flex;
}

.hxcart-contact-us .contact-us-con-left {
    width: 70%;
}

.hxcart-contact-us .contact-us-con-left h3 {
    font-weight: bold;
    font-size: 24px;
    color: #333;
}

.hxcart-contact-us .contact-us-con-right {
    width: 30%;
}

.hxcart-contact-us .contact-us-con-right .btn {
    padding: 13px 25px;
    text-transform: uppercase;
    border-radius: 24px;
    margin: auto;
    display: block;
    width: max-content;
    font-weight: bold;
    color: #fff;
}


.product-banner {
    display: flex;
}

.product-banner .product-banner-left {
    width: 20%;
    margin-right: 8%;
    display: flex;
    justify-content: center;
    align-self: center;
}

.product-banner .product-banner-left img {
    width: 100%;
}

.product-banner .product-banner-right {
    width: 72%;
    display: flex;
}

.product-banner-right-item div {
    width: 50%;
    margin-right: 14px;
}

.product-banner-right-item1 {
    width: 30%;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.product-banner-right-item {
    display: flex;
    width: 70%;
}

.product-banner img {
    width: 100%;
    display: inline-block;
}

.font-on-img-item {
    display: flex;
    flex-direction: column;
    width: 48%;
    position: relative;
}

.font-on-img-item .bg-font {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: left;
    color: #fff;
    background: #000;
    font-size: 24px;
    padding: 10px 20px;
    opacity: 0.6;
}

.font-on-img {
    display: flex;
    justify-content: space-between;
}

.logo-img-item {
    display: flex;
    justify-content: space-between;
}

.logo-img-item .logo-img-item-con {
    width: 30%;
}

.logo-img-item div {
    display: flex;
}

.logo-img-item-top {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.logo-img-item-top .p1 {
    height: 10px;
    width: 101px;
    background: #D8C28B;
}

.logo-img-item-top .p2 {
    color: #333333;
    font-size: 44px;
    margin: 20px 0;
}

.logo-img-item-top .p3 {
    font-size: 20px;
    line-height: 1.5;
}

.services-section-two {
    position: relative;
    padding: 95px 0px 0px;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.services-section-two:before {
    position: absolute;
    content: '';
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    display: block;
    background-color: rgba(36, 36, 36, 0.90);
}

.services-section-two .section-inner {
    position: relative;
    bottom: -100px;
    margin-top: -100px;
}

.services-section-two .section-inner .auto-container {
    position: static;
    max-width: 1200px;
    padding: 0px 15px;
    margin: 0 auto;
}

.auto-container .light {
    color: #fff;
    text-align: center;
}

.sec-title {
    position: relative;
    margin-bottom: 50px;
    z-index: 1;
}

.auto-container .sec-title .sub-title {
    margin-top: 20px;
    color: #E0E0E0;
}

.services-block-two {
    position: relative;
    margin-bottom: 30px;
    padding: 0 15px;
    z-index: 1;
}

.inner-box {
    position: relative;
    padding: 45px 45px 35px;
    background-color: #f9f9f9;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-box-shadow: 0px 0px 20px 0px rgb(0 0 0 / 30%);
    -moz-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.30);
    box-shadow: 0px 0px 20px 0px rgb(0 0 0 / 30%);
}

.inner-box .icon-box {
    position: relative;
    margin-bottom: 20px;
}

.inner-box:hover {
    background: #f97b1d ;
}

.services-block-two .inner-box h3 {
    position: relative;
    font-size: 18px;
    color: #222222;
    font-weight: 600;
    margin-bottom: 15px;
}

.inner-box .list-style-one li,
.li_text li {
    position: relative;
    color: #888888;
    font-size: 16px;
    font-weight: 400;
    padding-left: 28px;
    margin-bottom: 15px;
    line-height: 1em;
}

.inner-box .list-style-one li:before,
.li_text li:before {
    position: absolute;
    content: '>>';
    left: 0px;
    top: 0px;
    font-size: 14px;
    transform: scaleX(.5);
}




.flaticon-customer {
    font-size: 50px;
}


.services-block-two .inner-box:hover h3 a,
.services-block-two .inner-box:hover,
.services-block-two .inner-box:hover .list-style-one li,
.services-block-two .inner-box:hover .list-style-one li::before {
    color: #ffffff !important;
}

.size-list {
    background: #000;
    color: #fff;
    text-align: center;
    opacity: .5;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 35px;
    display: none;
    -webkit-line-clamp: 1;
    padding: 0 5px;
    white-space: nowrap;
}

.shop-item-up:hover .size-list {
    display: block;
}

.product-tips {
    color: #000;
}

.service-advantage {
    display: flex;
    flex-wrap: wrap;
    margin-top: 10px;
}

.service-advantage-item {
    flex: 1;
    min-width: 33%;
    max-width: 50%;
    margin-bottom: 20px;
    align-items: center;
    display: flex;
}

.service-advantage-item img {
    width: 50px;
    height: 50px;
    margin-right: 10px;
}

.is-hidden {
    display: none;
}

#coupon-pop {
    display: none;
    margin: 0 auto;
}

#coupon-pop .tips-list .layui-layer-content {
    padding: 0;
    background: linear-gradient(0deg, #FF284C, #FF4E4E, #FF6C4F);
}

#coupon-pop .title {
    color: #fff;
    font-size: 46px;
}

#coupon-pop .coupon-btn {
    display: block;
    background: #fff;
    color: red;
    font-size: 24px;
    max-width: 60%;
    margin: 0 auto;
    padding: 15px 0;
    text-align: center;
    margin-bottom: 24px;
}

#coupon-pop .info {
    font-size: 20px;
    color: #fff;
}

#coupon-pop .coupon-wrap {
    display: flex;
    color: #fff;
    padding: 56px 40px 36px;
    justify-content: center;
}

#coupon-pop .coupon-item {
    flex: 1;
    margin: auto;
    -webkit-mask: radial-gradient(circle at 10px, transparent 9px, #fff 0) -10px / 100% 27px;
    background: linear-gradient(45deg, #fff, #fff);
    margin-right: 20px;
    color: red;
    height: 140px;
}

#coupon-pop .coupon-wrap div:last-child{
    margin-right: 0;
}

#coupon-pop .coupon-item .p1 {
    font-size: 36px;
    font-weight: bold;
    color: red;
}

#coupon-pop .coupon-item .p2 {
    color: #E1B02C;
    font-size: 20px;
}

#coupon-pop .coupon-item .coupon-item-wrap {
    border-left: 1px dotted #E1B02C;
    border-right: 1px dotted #E1B02C;
    height: 120px;
    box-sizing: border-box;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: 20px;
    margin-right: 20px !important;
    /* padding: 0 2px; */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.user_info_item_list{
    padding: 10px 5px;
    font-weight: bold;
}
