.public-banner {
    background: url(../img/public-index-bg.png) no-repeat top center;
    padding: 40px 0;
}

:root {
    --ept-blue: #1677ff;
    --ept-indigo: #6610f2;
    --ept-purple: #6f42c1;
    --ept-pink: #d63384;
    --ept-red: #dc3545;
    --ept-orange: #fd7e14;
    --ept-yellow: #ffc107;
    --ept-green: #198754;
    --ept-teal: #20c997;
    --ept-cyan: #0dcaf0;
    --ept-white: #fff;
    --ept-gray: #6c757d;
    --ept-gray-dark: #343a40;
    --ept-gray-100: #f8f9fa;
    --ept-gray-200: #e9ecef;
    --ept-gray-300: #dee2e6;
    --ept-gray-400: #ced4da;
    --ept-gray-500: #adb5bd;
    --ept-gray-600: #6c757d;
    --ept-gray-700: #495057;
    --ept-gray-800: #343a40;
    --ept-gray-900: #212529;
    --ept-primary: #59f;
    --ept-secondary: #6c757d;
    --ept-success: #198754;
    --ept-info: #0dcaf0;
    --ept-warning: #ffc107;
    --ept-danger: #dc3545;
    --ept-light: #f8f9fa;
    --ept-dark: #212529;
    --ept-primary-rgb: 85, 153, 255;
    --ept-secondary-rgb: 108, 117, 125;
    --ept-success-rgb: 76, 175, 80;
    --ept-info-rgb: 13, 202, 240;
    --ept-warning-rgb: 255, 193, 7;
    --ept-danger-rgb: 220, 53, 69;
    --ept-light-rgb: 248, 249, 250;
    --ept-dark-rgb: 33, 37, 41;
    --ept-white-rgb: 255, 255, 255;
    --ept-black-rgb: 0, 0, 0;
    --ept-body-color-rgb: 33, 37, 41;
    --ept-body-bg-rgb: 255, 255, 255;
    --ept-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --ept-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    --ept-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
    --ept-body-font-family: var(--ept-font-sans-serif);
    --ept-body-font-size: 1rem;
    --ept-body-font-weight: 400;
    --ept-body-line-height: 1.5;
    --ept-body-color: #212529;
    --ept-body-bg: #fff;
}

.public-banner .fl .hotlist {
    height: 400px;
    background-color: #5599ff;
    background-image: linear-gradient(to bottom, #5599ff, #1ba4ff);
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 10%);
    /*padding: 0 20px 20px;*/
    padding-top: 10px;
    position: absolute;
    min-width: 217px;
}

.public-banner .fl .hotlist .item {
    width: 100%;
    /*margin-bottom: 15px;*/
    padding: 12px 15px 12px;
}

.uhead {
    background: #fff;
    margin-bottom: 20px;
    height: 64px;
    box-shadow: 3px 0 3px rgba(0, 0, 0, .3);
}

.uhead .ucont {
    align-items: center;
}

.ucont {
    margin: 0 auto;
    width: 1200px;
    height: 100%;
    display: flex;
    justify-content: space-between;
}

.ucont .fl {
    width: 200px;
    height: 60px;
    display: flex;
    align-items: center;
}

.sidebar-main .nav-drawer .nav-item a span {
    font-size: 14px;
}

.nav-subnav ul a {
    font-size: 14px;
}

.ucont .fl img {
    max-width: 100%;
    max-height: 100%;
}

.ucont .fa {
    display: flex;
    height: 100%;
}

.ucont .fa a {
    display: flex;
    height: 100%;
    padding: 0 15px;
    margin: 0 15px;
    font-size: 16px;
    font-weight: bold;
    align-items: center;
    position: relative;
}

.ucont .fa a.hover::after {
    content: '';
    position: absolute;
    bottom: 12px;
    left: 0;
    width: 50%;
    transform: translateX(50%);
    height: 5px;
    border-radius: 5px;
    background: #59f;
}

.public-banner .fl .hotlist .item .tit {
    font-size: 15px;
    font-weight: bold;
    color: #fff;
}

.ucont .fr {
    width: 260px;
    height: 40px;
}

.ucont .fr form {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    border: 1px solid var(--ept-gray-200);
    border-radius: 20px;
    overflow: hidden;
}

.ucont .fr form .search-focus {
    width: calc(100% - 60px);
    height: 40px;
    border: 0;
    font-size: 14px;
    text-indent: 20px;
}

.ucont .fr form .search-submit {
    width: 50px;
    height: 30px;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background: var(--ept-blue);
    border: 0;
    border-radius: 20px;
    margin-left: 5px;
    transition: .2s;
}

.public-banner .fl .hotlist .item .tit i {
    margin-right: 5px;
}

.public-banner .fl .hotlist .item .list {
    display: flex;
    margin-top: 10px;
}

.public-banner .fl .hotlist .item .list a {
    font-size: 12px;
    color: #fff;
}

.public-banner .fl .hotlist .item .list a+a {
    margin-left: 10px;
}

.public-banner .fl .hotlist .but-go {
    position: relative;
    background: rgb(255 255 255 / 20%);
    color: #fff;
    display: flex;
    width: 80%;
    height: 40px;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    top: 10px;
    font-size: 14px;
    margin: 0 auto;
}

.public-banner .fl .hotlist .but-go:hover {
    background: rgb(255 255 255 / 40%);
}

.public-banner .fa .swiper-container {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 10%);
    position: relative;
}

.public-banner .fa .swiper-container .swiper-slide img {
    width: 100%;
    height: 100%;
}

.public-banner .fa .swiper-container .swiper-pagination-bullet {
    background: #fff;
    width: 30px;
    height: 8px;
    border-radius: 8px;
}

.public-banner .fa .swiper-container .swiper-pagination-bullet-active {
    /*box-shadow: 0 0 0 2px #fff;*/
}

.public-banner .fa .swiper-but {
    display: flex;
    justify-content: space-between;
}

.public-banner .fa .swiper-but {
    margin-top: 20px;
}

.public-banner .fa .swiper-but div {
    width: 32%;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    transform: translateY(5px);
}

.public-banner .fa .swiper-but div img {
    width: 100%;
    height: 100%;
}

.public-banner .fa .swiper-but div.hover {
    transition: .3s;
    box-shadow: 0 0 0 5px rgb(85 153 255);
    transform: translateY(0px);
}

.public-banner .fr .public-user {
    width: 100%;
    height: 400px;
    background: url('../img/indexuserbg.png') no-repeat top center;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgb(85 153 255 / 20%);
    padding: 20px;
}

.public-banner .fr .public-user .welcome {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
}

.public-banner .fr .public-user .welcome .user-portrait {
    width: 70px;
    height: 70px;
    border-radius: 50px;
    background-color: #fff;
    background-image: url('../img/portrait.png');
    background-repeat: no-repeat;
    background-size: 100%;
    box-shadow: 0px 10px 30px rgb(85 153 255 / 30%);
}

.public-banner .fr .public-user .welcome .user-text {
    font-size: 14px;
    margin-top: 15px;
}

.public-banner .fr .public-user .welcome .buts {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    margin-top: 15px;
}

.public-banner .fr .public-user .welcome .buts a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 35px;
    font-size: 14px;
    color: #59f;
    background: #fff;
    border-radius: 4px;
    border: 1px solid var(--bs-gray-200);
}

.public-banner .fr .public-user .welcome .buts a:hover {
    background: rgb(227 238 255);
    border-color: #59f;
    box-shadow: 0px 5px 20px -5px rgb(76 182 255 / 0.5);
}

.public-banner .fr .public-user .welcome .buts a:nth-child(2) {
    background-color: #5599ff;
    background-image: linear-gradient(to bottom, #5599ff, #1ba4ff);
    color: #fff;
    border: 0;
}

.public-banner .fr .public-user .welcome .buts a:nth-child(2):hover {
    background-image: linear-gradient(to top, #5599ff, #1ba4ff);
}

.public-banner .fr .public-user .welcome .icons {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 20px;
    padding-top: 10px;
    justify-content: center;
    border-top: 1px solid var(--bs-gray-200);
}

.public-banner .fr .public-user .welcome .icons .tit {
    font-size: 14px;
    width: 100%;
    text-align: center;
    margin-top: 5px;
    margin-bottom: 10px;
}

.public-banner .fr .public-user .welcome .icons .item {
    width: 38%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 7px 0;
}

.public-banner .fr .public-user .welcome .icons .item i {
    width: 25px;
    height: 25px;
    background-image: url('../img/indexusericon.png');
    background-repeat: no-repeat;
    background-size: 100px;
}

.public-banner .fr .public-user .welcome .icons .item:nth-child(3) i {
    background-position: -25px;
}

.public-banner .fr .public-user .welcome .icons .item:nth-child(4) i {
    background-position: -50px;
}

.public-banner .fr .public-user .welcome .icons .item:nth-child(5) i {
    background-position: -75px;
}

.public-banner .fr .public-user .welcome .icons .item p {
    font-size: 12px;
    margin-top: 5px;
    color: var(--bs-gray-600);
}

.public-banner .fr .public-user .logged {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
}

.public-banner .fr .public-user .logged .user-portrait {
    width: 70px;
    height: 70px;
    border-radius: 50px;
    box-shadow: 0px 10px 30px rgb(85 153 255 / 30%);
    overflow: hidden;
}

.public-banner .fr .public-user .logged .user-portrait img {
    width: 100%;
    height: 100%;
    background: #fff;
}

.public-banner .fr .public-user .logged .username {
    margin-top: 20px;
}

.public-banner .fr .public-user .logged .userinfo {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 10px;
    font-size: 14px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgb(0 0 0 / 5%);
}

.public-banner .fr .public-user .logged .userinfo .userid {
    background: #59f;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 14px;
    color: #fff;
    margin-right: 5px;
    box-shadow: 0 3px 6px rgb(85 153 255 / .5);
}

.public-banner .fr .public-user .logged .userinfo .uservip {
    background: #ffc107;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 14px;
    color: #fff;
    margin-left: 5px;
    box-shadow: 0 3px 6px rgb(255 193 7 / 50%);
}

.public-banner .fr .public-user .logged .icons {
    margin-top: 40px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.public-banner .fr .public-user .logged .icons .item {
    width: 160px;
    height: 40px;
    font-size: 14px;
    background: #59f;
    color: #fff;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.public-banner .fr .public-user .logged .icons .item:hover {
    background: #73abff;
    box-shadow: 0 0 10px rgb(85 153 255 / 50%);
}

.public-banner .fr .public-user .logged .icons .item:nth-child(2) {
    background: #fff;
    color: #59f;
    border: 1px solid #59f;
    margin-top: 20px;
}

.public-banner .fr .public-user .logged .icons .item:nth-child(2):hover {
    color: #fff;
    background: #59f;
    box-shadow: 0 0 10px rgb(85 153 255 / 30%);
}

.public-index-list {
    position: relative;
}

.public-index-list .tab {
    width: 100%;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    flex-wrap: wrap;
    box-shadow: 0px 5px 10px rgb(0 0 0 / 5%);
}

.public-index-list .tab-fixed {
    position: fixed;
    top: 0;
    z-index: 99;
    width: 1296px;
}

.public-index-list .tab div {
    padding: 5px 10px;
    border-radius: 50px;
    margin: 5px 10px;
    cursor: pointer;
    font-size: 14px;
}

.public-index-list .tab div.ing {
    color: #fff;
    background-color: #5599ff;
    background-image: linear-gradient(to bottom, #5599ff, #1ba4ff);
    box-shadow: 0 3px 13px rgb(85 153 255 / 50%);
}

.public-index-list .wrap .item {
    margin-top: 20px;
    background: #fff;
    box-shadow: 0px 5px 10px rgb(0 0 0 / 5%);
    padding: 20px;
    border-radius: 8px;
}

.public-index-list .wrap .item .title {
    font-size: 16px;
    font-weight: bold;
    position: relative;
    text-indent: 15px;
    height: 24px;
    line-height: 24px;
}

.public-index-list .wrap .item .title::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 0;
    height: 20px;
    width: 5px;
    border-radius: 5px;
    background: #ccc;
}

.public-index-list .wrap .item.ing .title::after {
    background-color: #5599ff;
    background-image: linear-gradient(to bottom, #5599ff, #1ba4ff);
}

.public-index-list .wrap .item .list {
    display: flex;
    flex-wrap: wrap;
}

.public-index-list .wrap .item .list a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 16.666666%;
    margin-top: 30px;
}

.public-index-list .wrap .item .list a img {
    width: 60px;
    height: 60px;
    border-radius: 40px;
    box-shadow: 0px 5px 15px rgb(0 184 255 / 20%);
    padding: 5px;
    background: #fff;
}

.public-index-list .wrap .item .list a span {
    font-size: 14px;
    margin-top: 10px;
}

.public-index-cooperation {
    margin-top: 80px;
}

.public-index-cooperation .title {
    text-align: center;
    font-size: 24px;
}

.public-index-cooperation .wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 20px;
    margin-bottom: 80px;
}

.public-index-cooperation .wrap .item {
    width: 240px;
    height: 120px;
    background-color: #fff;
    background-image: url('../img/indexlogo.png');
    background-repeat: no-repeat;
    background-size: 1200px;
    border: 1px solid var(--bs-gray-200);
    margin-top: 20px;
    opacity: .5;
    transition: .3s;
    cursor: pointer;
}

.public-index-cooperation .wrap .item:hover {
    opacity: 1;
    box-shadow: 0 0 10px rgb(0 0 0 / 10%);
}

.public-index-cooperation .wrap .item:nth-child(2) {
    background-position: -240px 0;
}

.public-index-cooperation .wrap .item:nth-child(3) {
    background-position: -480px 0;
}

.public-index-cooperation .wrap .item:nth-child(4) {
    background-position: -720px 0;
}

.public-index-cooperation .wrap .item:nth-child(5) {
    background-position: -960px 0;
}

.public-index-cooperation .wrap .item:nth-child(6) {
    background-position: 0 -120px;
}

.public-index-cooperation .wrap .item:nth-child(7) {
    background-position: -240px -120px;
}

.public-index-cooperation .wrap .item:nth-child(8) {
    background-position: -480px -120px;
}

.public-index-cooperation .wrap .item:nth-child(9) {
    background-position: -720px -120px;
}

.public-index-cooperation .wrap .item:nth-child(10) {
    background-position: -960px -120px;
}

.public-index-cooperation .wrap .item:nth-child(11) {
    background-position: 0 -240px;
}

.public-index-cooperation .wrap .item:nth-child(12) {
    background-position: -240px -240px;
}

.public-index-cooperation .wrap .item:nth-child(13) {
    background-position: -480px -240px;
}

.public-index-cooperation .wrap .item:nth-child(14) {
    background-position: -720px -240px;
}

.public-index-cooperation .wrap .item:nth-child(15) {
    background-position: -960px -240px;
}

.public-list {
    margin: 20px 0 40px;
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0px 5px 10px rgb(0 0 0 / 5%);
}

.public-list .list-table {
    display: flex;
    padding: 20px 20px;
    border-bottom: 1px solid rgb(0 0 0 / 5%);
}

.public-list .list-table span {
    font-size: 15px;
    font-weight: bold;
}

.public-list .list-table span:nth-child(1) {
    width: 800px;
}

.public-list .list-table span:nth-child(2) {
    width: 100px;
}

.public-list .list-table span:nth-child(3) {
    width: 100px;
}

.public-list .list-table span:nth-child(4) {
    width: 100px;
}

.public-list .item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px;
    transition: background .3s;
}

.public-list .item+.item {
    border-top: 1px solid rgb(0 0 0 / 5%);
}

.public-list .item:hover {
    background: rgb(0 0 0 / 3%);
}

.public-list .fl {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px 5px 10px rgb(85 153 255 / 30%);
}

.public-list .fl img {
    width: 100%;
    height: 100%;
}

.public-list .fa {
    width: 690px;
    height: 80px;
}

.public-list .fa .title {
    font-size: 14px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin-bottom: 5px;
}

.public-list .fa .money {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.public-list .fa .money em {
    font-size: 16px;
    color: #f44336;
    font-weight: bold;
    margin-right: 20px;
}

.public-list .fa .money span {
    font-size: 13px;
    color: #999;
    text-decoration: line-through;
}

.public-list .fa .bq {
    display: flex;
}

.public-list .fa .bq span {
    font-size: 12px;
    padding: 0 10px;
    height: 24px;
    display: flex;
    align-items: center;
    border-radius: 4px;
    color: #59f;
    background: rgb(0 0 0 / 5%);
    margin-right: 10px;
}

.public-list .fr {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 420px;
}

.public-list .fr .fr-1 {
    width: 100px;
}

.public-list .fr .fr-2 {
    width: 100px;
}

.public-list .fr .fr-3 {
    width: 100px;
}

.public-list .fr .time {
    font-size: 12px;
    padding: 0 10px;
    width: fit-content;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    color: #fff;
    margin-right: 10px;
    background: #4caf50;
}

.public-list .fr .mode {
    font-size: 12px;
    width: 60px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    color: #fff;
    margin-right: 10px;
}

.public-list .fr .mode.z1 {
    background-color: #5599ff;
    background-image: linear-gradient(to bottom, #1ba4ff, #5599ff);
}

.public-list .fr .mode.z2 {
    background-color: #ffc107;
    background-image: linear-gradient(to bottom, #ffc107, #ff9800);
}

.public-list .fr .mode.z3 {
    background-color: #f06292;
    background-image: linear-gradient(to bottom, #f06292, #e91e63);
}

.public-list .fr span.s1 {
    color: #4caf50;
    background: #edffee;
    font-size: 12px;
    padding: 0 10px;
    width: fit-content;
    height: 24px;
    display: flex;
    align-items: center;
    border-radius: 4px;
}

.public-list .fr span.s2 {
    color: #f44336;
    background: #fff0ee;
    font-size: 12px;
    padding: 0 10px;
    width: fit-content;
    height: 24px;
    display: flex;
    align-items: center;
    border-radius: 4px;
}

.public-list .fr a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 120px;
    height: 40px;
    color: #fff;
    background-color: #5599ff;
    background-image: linear-gradient(to top, #5599ff, #1ba4ff);
    border-radius: 20px;
    font-size: 14px;
}

.public-list .fr a i {
    margin-right: 5px;
}

.public-list .fr a:hover {
    background-color: #5599ff;
    background-image: linear-gradient(to bottom, #5599ff, #1ba4ff);
    box-shadow: 0px 5px 10px rgb(85 153 255 / 30%);
}

.public-shop {
    margin: 20px 0 40px;
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0px 5px 10px rgb(0 0 0 / 5%);
    display: flex;
    justify-content: space-between;
}

.public-shop .picture {
    width: 280px;
}

.public-shop .picture img {
    width: 280px;
    height: 280px;
    border-radius: 8px;
    box-shadow: 0 5px 10px rgb(0 0 0 / 10%);
}

.public-shop .picture .census {
    margin-top: 20px;
    display: flex;
}

.public-shop .picture .census div {
    font-size: 12px;
    padding: 2px 10px;
    color: #666;
    background: rgb(0 0 0 / 5%);
    border-radius: 5px;
    margin-right: 10px;
}

.public-shop .info {
    width: calc(100% - 320px);
}

.public-shop .info .title em {
    font-size: 18px;
}

.public-shop .info .title .label {
    margin-top: 10px;
    display: flex;
}

.public-shop .info .title .label span {
    font-size: 12px;
    padding: 4px 10px;
    color: #fff;
    background: rgb(0 0 0 / 5%);
    border-radius: 5px;
    margin-right: 10px;
}

.public-shop .info .title .label span:nth-child(1) {
    background-color: #5599ff;
    background-image: linear-gradient(to bottom, #1ba4ff, #5599ff);
}

.public-shop .info .title .label span:nth-child(2) {
    background-color: #f06292;
    background-image: linear-gradient(to bottom, #f06292, #e91e63);
}

.public-shop .info .title .label span:nth-child(3) {
    background-color: #ffc107;
    background-image: linear-gradient(to bottom, #ffc107, #ff9800);
}

.public-shop .info .title .label span:nth-child(4) {
    background-color: #333333;
    font-weight: 700;
    background-image: linear-gradient(to bottom, #ff0909, #f30a76)
}

.public-shop .info .title .label span:nth-child(5) {
    background-color: #333333;
    font-weight: 700;
    background-image: linear-gradient(to bottom, #089333, #2a9750);
}

/*电商*/
.commerce {
    font-size: 18px;
}

.public-shop .info .money {
    margin-top: 20px;
    padding: 10px;
    background: rgb(0 0 0 / 3%);
    border-radius: 4px;
}

.commerce svg:nth-child(1) {
    margin-left: 0;
}

.public-shop .info .money .price {
    font-size: 16px;
    color: #000;
    font-weight: 500;
}

.public-shop .info .money .price em {
    font-size: 20px;
    color: #f44336;
    font-weight: bold;
}

.public-shop .info .money .price em span {
    font-size: 20px;
}

.public-shop .info .money .costprice {
    margin-left: 20px;
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
}

.public-shop .info .distribution {
    margin-top: 40px;
    display: flex;
    align-items: center;
}

.public-shop .info .distribution .mode {
    font-size: 15px;
    width: 120px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px 0 20px 0;
    color: #fff;
    margin-right: 10px;
}

.public-shop .info .distribution .mode.z1 {
    background-color: #5599ff;
    background-image: linear-gradient(to bottom, #1ba4ff, #5599ff);
    box-shadow: 0 5px 10px rgb(85 153 255 / 30%);
}

.public-shop .info .distribution .mode.z2 {
    background-color: #ffc107;
    background-image: linear-gradient(to bottom, #ffc107, #ff9800);
    box-shadow: 0 5px 10px rgb(255 152 0 / 30%);
}

.public-shop .info .distribution .mode.z3 {
    background-color: #f06292;
    background-image: linear-gradient(to bottom, #f06292, #e91e63);
    box-shadow: 0 5px 10px rgb(233 30 99 / 30%);
}

.public-shop .info .distribution .tips {
    font-size: 14px;
    color: #666;
    margin-left: 20px;
    position: relative;
    text-indent: 20px;
}

.public-shop .info .distribution .tips::after {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 12px;
    height: 12px;
    border: 2px solid #fff;
    border-radius: 10px;
    background: #59f;
    box-shadow: 0 0 10px rgb(0 0 0 / 20%);
}

.public-shop .info .distribution .tips span {
    color: #59f;
    cursor: pointer;
}

.public-shop .info .distribution .tips span:hover {
    color: #1ba4ff;
}

.public-shop .info .service {
    margin-top: 20px;
    display: flex;
    padding: 10px;
    background: rgb(0 0 0 / 3%);
    border-radius: 4px;
}

.public-shop .info .service .item {
    margin-right: 60px;
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #999;
}

.public-shop .info .service .item svg {
    display: block;
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

.public-shop .info .buybut {
    display: flex;
    margin-top: 20px;
    width: 260px;
    height: 50px;
    color: #fff;
    font-size: 16px;
    background-color: #5599ff;
    background-image: linear-gradient(to bottom, #1ba4ff, #5599ff);
    box-shadow: 0 5px 10px rgb(85 153 255 / 10%);
    border-radius: 4px;
    justify-content: center;
    align-items: center;
}

.public-shop .info .buybut:hover {
    background-image: linear-gradient(to top, #1ba4ff, #5599ff);
    box-shadow: 0 5px 10px rgb(85 153 255 / 30%);
}

.public-shop-info {
    margin: 30px 0 80px;
    border-radius: 8px;
    box-shadow: 0px 5px 10px rgb(0 0 0 / 5%);
}

.public-shop-info .title {
    width: 100%;
    padding: 20px;
    border-radius: 8px 0;
    background: #fff;
    border-bottom: 1px solid rgb(0 0 0 / 5%);
    position: relative;
    text-indent: 20px;
}

.public-shop-info .title::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 5px;
    height: 20px;
    border-radius: 8px;
    background-color: #5599ff;
    background-image: linear-gradient(to bottom, #1ba4ff, #5599ff);
}

.public-shop-info .body {
    width: 100%;
    padding: 20px;
    border-radius: 0 8px;
    background: #fff;
}

.public-createorder {
    margin: 40px auto 80px;
    display: flex;
    justify-content: space-between;
}

.public-createorder-info {
    width: calc(100% - 520px);
    height: fit-content;
    padding: 20px;
    background: #fff;
    box-shadow: 0px 5px 10px rgb(0 0 0 / 5%);
    border-radius: 8px;
}

.public-createorder-info .top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.public-createorder-info .title {
    font-size: 24px;
}

.public-createorder-info .info {
    width: 100%;
}

.public-createorder-info .info .item {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.public-createorder-info .info .item span {
    width: 120px;
    font-size: 14px;
    color: #555;
}

.public-createorder-info .info .item .fr {
    width: calc(100% - 120px);
}

.public-createorder-info .info .item .img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px 5px 10px rgb(0 0 0 / 10%);
}

.public-createorder-info .info .item .img img {
    width: 100%;
    height: 100%;
}

.public-createorder-info .info .item .text {
    font-size: 14px;
}

.public-createorder-info .info .item .money {
    font-size: 14px;
    color: #f44336;
    font-weight: bold;
}

.public-createorder-order {
    width: 500px;
    height: fit-content;
    padding: 20px;
    background: #fff;
    box-shadow: 0px 5px 10px rgb(0 0 0 / 5%);
    border-radius: 8px;
}

.public-createorder-order .top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.public-createorder-order .top .title {
    font-size: 24px;
}

.public-createorder-order .top .tips {
    display: flex;
    align-items: center;
}

.public-createorder-order .top .tips span {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 280px;
    height: 30px;
    font-size: 12px;
    color: #666;
    background: rgb(0 0 0 / 5%);
    border-radius: 15px 0 0 15px;
    margin-right: -8px;
}

.public-createorder-order .top .tips em {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    font-size: 24px;
    color: #fff;
    background: #59f;
    border-radius: 25px;
    box-shadow: 0 5px 10px rgb(85 153 255 / 30%);
}

.public-createorder-order .order {
    margin-top: 20px;
}

.public-createorder-order .order .item {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.public-createorder-order .order .item span {
    width: 120px;
    font-size: 14px;
    color: #555;
}

.public-createorder-order .order .item .fr {
    width: calc(100% - 120px);
}

.public-createorder-order .order .item input.fr {
    height: 35px;
    border: 1px solid rgb(0 0 0 / 5%);
    border-radius: 5px;
    font-size: 14px;
    text-indent: 10px;
    transition: .3s;
}

.public-createorder-order .order .item input.fr:focus {
    border-color: rgb(0 0 0 / 15%);
}

.public-createorder-order .order .item .money {
    font-size: 14px;
    color: #f44336;
    font-weight: bold;
}

.public-createorder-order .order .item .order-pay-type-header {
    width: 100%;
    height: 30px;
    display: flex;
}

.public-createorder-order .order .item .order-pay-type-header-item {
    display: flex;
    padding: 0 12px;
    height: 30px;
    align-items: center;
    font-size: 14px;
    color: #666;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    transition: .3s;
}

.public-createorder-order .order .item .order-pay-type-header-item.hover,
.public-createorder-order .order .item .order-pay-type-header-item:hover {
    color: #59f;
    border-bottom-color: #59f;
}

.public-createorder-order .order .item .order-pay-type-content {
    width: 100%;
    margin-top: 10px;
}

.public-createorder-order .order .item .order-pay-type-content-item {
    display: none;
}

.public-createorder-order .order .item .order-pay-type-content-item.hover {
    display: block;
}

.public-createorder-order .order .item .order-pay-type-content-item .junka-wrap {
    width: 100%;
    background: #efefef;
    border-radius: 8px;
    padding: 8px;
}

.public-createorder-order .order .item .order-pay-type-content-item .junka-wrap .label {
    width: 100%;
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
}

.public-createorder-order .order .item .order-pay-type-content-item .junka-wrap textarea {
    width: 100%;
    min-height: 120px;
}

.public-createorder-order .order .item .order-pay-type-content-item .pay {
    display: flex;
    flex-wrap: wrap;
}

.public-createorder-order .order .item .order-pay-type-content-item .pay span {
    display: flex;
    height: 35px;
    width: fit-content;
    padding: 0 17px;
    margin: 5px;
    white-space: nowrap;
    align-items: center;
    border: 1px solid rgb(0 0 0 / 5%);
    border-radius: 5px;
    cursor: pointer;
    transition: .3s;
}

.public-createorder-order .order .item .order-pay-type-content-item .pay span i {
    margin-right: 5px;
}

.public-createorder-order .order .item .order-pay-type-content-item .pay span:hover {
    border-color: rgb(0 0 0 / 15%);
}

.public-createorder-order .order .item .order-pay-type-content-item .pay span.hover {
    background-color: #5599ff;
    background-image: linear-gradient(to bottom, #1ba4ff, #5599ff);
    color: #fff;
    box-shadow: 0 5px 10px rgb(85 153 255 / 30%);
}

.public-createorder-order .order .item .paybut {
    width: 100%;
    height: 40px;
    background-color: #5599ff;
    background-image: linear-gradient(to bottom, #1ba4ff, #5599ff);
    color: #fff;
    border: 0;
    border-radius: 5px;
    box-shadow: 0 5px 10px rgb(85 153 255 / 30%);
}

.public-createorder-order .order .item .paybut:hover {
    background: #1ba4ff;
}

.public-order {
    width: 100%;
    padding: 20px;
    background: #fff;
    box-shadow: 0px 5px 10px rgb(0 0 0 / 5%);
    border-radius: 8px;
    margin: 20px auto 50px;
}

.public-order .title {
    font-size: 32px;
    padding-bottom: 10px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgb(0 0 0 / 10%);
    position: relative;
    text-indent: 25px;
}

.public-order .title::after {
    content: '#';
    position: absolute;
    top: 3px;
    left: 0;
    width: 20px;
    text-indent: 0;
    font-size: 32px;
    color: #59f;
}

.public-order .title-min {
    font-size: 24px;
    padding-bottom: 10px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgb(0 0 0 / 10%);
    position: relative;
    text-indent: 20px;
}

.public-order .title-min::after {
    content: '#';
    position: absolute;
    top: 2px;
    left: 0;
    width: 20px;
    text-indent: 0;
    font-size: 24px;
    color: #59f;
}

.public-order-info {
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.public-order-info .item {
    display: flex;
    font-size: 15px;
    align-items: center;
    margin-bottom: 10px;
}

.public-order-info .item span {
    display: block;
    width: 120px;
    color: #666;
}

.public-order-info .item>div {
    width: calc(100% - 120px);
    font-size: 15px;
    word-wrap: break-word;
}

.public-order-info .item>div .formcami {
    display: inline-flex;
    width: 70px;
    height: 20px;
    font-size: 12px;
    color: #fff;
    background-color: #59f;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    cursor: pointer;
}

.public-order-info .item>div .formcami:hover {
    background-color: var(--bs-blue);
}

.public-order-state {
    width: 100%;
    height: 40px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    margin-bottom: 30px;
}

.public-buy-good {
    width: 800px;
    padding: 20px;
    background: #fff;
    box-shadow: 0px 5px 10px rgb(0 0 0 / 5%);
    border-radius: 8px;
    margin: 20px auto 50px;
}

.public-buy-good .title {
    font-size: 32px;
    padding-bottom: 10px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgb(0 0 0 / 10%);
    position: relative;
    text-indent: 25px;
}

.public-buy-good .title::after {
    content: '#';
    position: absolute;
    top: 3px;
    left: 0;
    width: 20px;
    text-indent: 0;
    font-size: 32px;
    color: #59f;
}

.public-buy-good .wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.public-buy-good .wrap .bg {
    width: 100px;
    height: 100px;
    background: url('../img/buygoodbg.png') no-repeat;
    background-size: 100%;
    margin: 20px 0;
}

.public-buy-good .wrap .order-item {
    margin: 10px 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.public-buy-good .wrap .order-item span {
    color: #666;
    width: 120px;
    display: flex;
    justify-content: flex-end;
}

.public-buy-good .wrap .order-item div {
    width: calc(100% - 120px);
}

.public-buy-good .wrap a {
    margin-top: 20px;
    display: flex;
    width: 200px;
    height: 50px;
    border: 1px solid rgb(0 0 0 / 10%);
    border-radius: 2px;
    justify-content: center;
    align-items: center;
}

.public-buy-good .wrap a:hover {
    background: rgb(227 238 255);
    color: #59f;
    border-color: #59f;
}

.public-doclist,
.public-doc {
    width: 800px;
    padding: 20px;
    background: #fff;
    box-shadow: 0px 5px 10px rgb(0 0 0 / 5%);
    border-radius: 8px;
    margin: 20px auto 50px;
}

.public-doclist .title,
.public-doc .title {
    font-size: 32px;
    padding-bottom: 10px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgb(0 0 0 / 10%);
    position: relative;
    text-indent: 25px;
}

.public-doclist .title::after,
.public-doc .title::after {
    content: '#';
    position: absolute;
    top: 3px;
    left: 0;
    width: 20px;
    text-indent: 0;
    font-size: 32px;
    color: #59f;
}

.public-doclist .wrap {
    border-bottom: 1px solid rgb(0 0 0 / 10%);
    margin-bottom: 20px;
}

.public-doclist .wrap .item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.public-doclist .wrap .item .tit {
    width: calc(100% - 100px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.public-doclist .wrap .item span {
    width: 200px;
    text-align: right;
    color: #666;
}

.public-doclist .nodoc {
    width: 100%;
    padding: 120px 0;
    font-size: 36px;
    text-align: center;
    color: #999;
}

.page-item.active .page-link,
.btn-primary {
    background: #59f;
    border-color: #59f;
}

.btn-primary:hover {
    background: #73abff;
    border-color: #73abff;
}

.page-link,
.page-link:hover {
    color: #59f;
}

.public-doc .bq {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.public-doc .bq .item {
    color: #666;
}

.public-doc .wrap {
    font-size: 15px;
}

.public-doc .wrap h3,
.public-shop-info .body h3 {
    position: relative;
    padding: 5px 0 15px;
    color: #424242;
    font-size: 18px;
    display: -webkit-inline-box;
    border-bottom: 1px solid #fff;
    cursor: pointer;
    z-index: 16;
    font-weight: 700;
    line-height: 30px
}

.public-doc .wrap h4,
.public-shop-info .body h4 {
    font-size: 18px;
    font-weight: 700;
    margin: 25px 0 20px;
    border-left: 4px solid #06f;
    padding: 0 0 0 10px;
    line-height: 17px;
}

.public-doc .wrap h5,
.public-shop-info .body h5 {
    font-size: 18px;
    color: #333;
    background: #e2e2e2;
    padding: 5px 10px;
    margin: 0 0 15px;
    font-weight: 600
}

.public-doc .wrap h6,
.public-shop-info .body h6 {
    font-size: 18px;
    color: #333;
    background: #e2e2e2;
    padding: 5px 10px;
    margin: 0 0 15px;
    font-weight: 600;
    border-left: 4px solid #06f;
}

.public-doc .wrap h3:before,
.public-shop-info .body h3:before {
    position: absolute;
    top: 35px;
    left: 0;
    z-index: -1;
    width: 45%;
    height: 2px;
    background: #06f;
    content: " ";
    border-radius: 20px;
    transition: all .5s;
}

.public-doc .wrap h3:hover:before,
.public-shop-info .body h3:hover:before {
    width: 100%;
    transition: all .5s
}

.public-doc .wrap ol,
.public-shop-info .body ol {
    color: #424242;
    font-size: 15px;
    margin: 5px 0 15px
}

.public-doc .wrap ol li,
.public-shop-info .body ol li {
    position: relative;
    padding-left: 15px
}

.public-doc .wrap ol li:before,
.public-shop-info .body ol li:before {
    position: absolute;
    top: 15.5px;
    left: 8px;
    width: 3px;
    height: 3px;
    border-radius: 10px;
    background: #333;
    content: " "
}

.public-doc .wrap ol li p,
.public-shop-info .body ol li p {
    padding: 2px 10px !important;
    font-size: 15px !important;
    margin-bottom: 5px !important;
}

.public-doc .wrap ol li:last-child p,
.public-shop-info .body ol li:last-child p {
    margin-bottom: 0 !important
}

.public-doc .wrap img,
.public-shop-info .body img {
    max-width: 100%;
    height: auto !important;
    margin: 10px 0;
}

.public-doc .wrap img:hover,
.public-shop-info .body img:hover {
    opacity: .9
}

.public-doc .wrap p,
.public-shop-info .body p {
    display: block;
    line-height: 30px;
    margin-bottom: 10px;
    font-size: 15px;
}

.public-pricelist {
    padding: 20px;
    background: #fff;
    box-shadow: 0px 5px 10px rgb(0 0 0 / 5%);
    border-radius: 8px;
    margin-bottom: 50px;
    min-height: 500px;
}

.public-pricelist .title {
    width: 100%;
    font-size: 16px;
    border-radius: 8px 0;
    background: #fff;
    position: relative;
}

.public-pricelist .title::after {
    /* content: ''; */
    position: absolute;
    top: 13px;
    left: 0px;
    width: 5px;
    height: 20px;
    border-radius: 8px;
    background-color: #5599ff;
    background-image: linear-gradient(to bottom, #1ba4ff, #5599ff);
}

.public-pricelist tbody tr td:nth-child(3) {
    color: #999;
    text-decoration: line-through;
}

.public-orderquery {
    padding: 20px;
    background: #fff;
    box-shadow: 0px 5px 10px rgb(0 0 0 / 5%);
    border-radius: 8px;
    margin: 20px 0 50px;
}

.public-orderquery .title {
    width: 100%;
    padding: 10px 0 20px;
    font-size: 16px;
    border-radius: 8px 0;
    background: #fff;
    border-bottom: 1px solid rgb(0 0 0 / 5%);
    position: relative;
    text-indent: 20px;
}

.public-orderquery .title::after {
    content: '';
    position: absolute;
    top: 13px;
    left: 0px;
    width: 5px;
    height: 20px;
    border-radius: 8px;
    background-color: #5599ff;
    background-image: linear-gradient(to bottom, #1ba4ff, #5599ff);
}

.order-search {
    width: 100%;
    padding: 40px 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.order-search .wrap {
    width: 800px;
    height: 50px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    border-radius: 25px;
    border: 1px solid rgb(0 0 0 / 10%);
    overflow: hidden;
}

.order-search .wrap .tit {
    width: 70px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 25px;
    color: #fff;
    background: #59f;
}

.order-search .wrap .order-search-focus {
    width: calc(100% - 240px);
    height: 50px;
    padding-left: 10px;
    border: 0;
    transition: .3s;
}

.order-search .wrap .order-search-btn {
    width: 150px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 25px;
    font-size: 16px;
    color: #fff;
    background: #59f;
    cursor: pointer;
    transition: .3s;
}

.order-search .wrap .order-search-btn i {
    margin-right: 5px;
}

.order-search .wrap .order-search-btn:hover {
    background: #73abff;
}

.order-search .go {
    margin-top: 20px;
    display: flex;
}

.order-search .go a {
    width: 70px;
    display: flex;
    color: #59f;
    margin-left: 10px;
}

.order-search .go a i {
    transform: rotateZ(90deg);
    display: block;
    margin-left: 2px;
}

.order-search .go a i svg {
    transition: .2s;
}

.order-search .go a:hover i svg {
    transform: translateY(-5px);
}

.order-search .pic {
    width: 60px;
    height: 60px;
}

.goods-detail-item {
    margin: 20px 0;
}

.goods-detail-item .item-title {
    font-size: 16px;
}

.now-price {
    font-size: 20px;
    font-weight: 700;
    color: #ff5722;
}

.c-item {
    display: flex;
    align-items: center;
    padding-right: 10px;
}

.public-banner .fl .hotlist .item .list {
    justify-content: space-between;
}


.public-banner .fl .hotlist .item:hover {
    background-color: #ffffff1a;
}

.public-banner .fl .hotlist .item .ept_cata-float {
    display: none;
    position: absolute;
    left: 225px;
    top: 0;
    width: 800px;
    height: 400px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 20px #0000000d;
    padding: 20px;
    z-index: 2;
}

.public-banner .fl .hotlist .item:hover .ept_cata-float {
    display: block;
}

.public-banner .fl .hotlist .item .ept_cata-float .cata-float-wrap {

    height: 120px;
    display: flex;
    align-items: center;
    border-radius: 8px;
    transition: background-color .2s;
    flex-wrap: wrap;
    justify-content: space-between;
}

.public-banner-ept {
    padding: 20px 0;
}

.c-item .icon_img {
    width: 22px;
    height: 22px;
    border-radius: 13px;
    overflow: hidden;
}

.c-item .title {
    padding-left: 5px;
    font-size: 13px;
    max-width: 60px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.c-item .item_name {
    margin-top: 10px;
}

.cata-float-wrap .icon_img {
    width: 50px;
    height: 50px;
    border-radius: 50px;
    overflow: hidden;
}

.cata-float-wrap .title {
    font-size: 14px;
    color: #333333;
    margin-top: 8px;
}

.cata-float-wrap .c-item {
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: background-color .2s;

}

.ept-layout {
    width: 100%;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    flex-wrap: wrap;
    box-shadow: 0px 5px 10px rgb(0 0 0 / 5%);
    margin-bottom: 20px;
}

.ept-layout .ept-notice {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;

}

.ept-layout .ept-notice .icon {
    font-weight: bold;
    color: #ccc;
    border-right: 1px solid #ddd;
    padding-right: 10px;
    font-size: 15px;
}

.ept-layout .ept-notice .wrap {
    width: 90%;
    height: 20px;
    overflow: hidden;
    padding-left: 10px;
}

.ept-layout .ept-notice .wrap .item {
    overflow: hidden;
    white-space: nowrap;
    animation: scroll 20s linear infinite;
    display: grid;
}

.ept-layout .ept-notice .wrap .item a {
    display: inline-block;

}

@keyframes scroll {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-100%);
    }
}



.ept-layout .ept-notice .more {}


.ept-layout .recata-top {
    width: 100%;
    height: 60px;
    border-radius: 9px 9px 0 0;
    background-color: #5599ff;
    background-image: linear-gradient(to bottom, #5599ff, #1ba4ff);
    display: flex;
    justify-content: space-between;
    padding-left: 17px;
    cursor: pointer;
}

.ept-layout .recata-top:before {
    content: "";
    background-image: url("../img/recata-vip-26598-1_title_before-eb9d6556.svg");
    width: 96px;
    height: 23px;
    background-size: cover;
    display: block;
    margin-right: 15px;
    margin-top: 16px;
}

.ept-layout .recata-top p {
    line-height: 52px;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    flex: 1;
}

.ept-bg {
    padding: 0;
}

.recata-content {
    background: #fff;
    /*box-shadow: 0 2px 7px #dddede;*/
    height: auto;
    transform: translateY(-8px);
    border-radius: 9px 9px 0 0;
    width: 100%;
}

.recata-content .recata-content-menu {
    width: 100%;
    padding: 5px 25px;
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #e4e4e4;
}

.recata-content .recata-content-menu div {
    padding: 2px 10px;
    border-radius: 50px;
    margin: 5px 40px;
    cursor: pointer;
    font-size: 14px;
}

.recata-content .recata-content-menu .ing {
    color: #fff;
    background-color: #5599ff;
    background-image: linear-gradient(to bottom, #5599ff, #1ba4ff);
    box-shadow: 0 3px 13px rgb(85 153 255 / 50%);
}

.recata-content .recata-content-menu div:hover {
    background-color: #5599ff;
    display: block;
    color: #fff;
    box-shadow: 0 3px 13px #5599ff80;
    border-radius: 50px;
    font-size: 14px;
}

.recata-content .recata-content-center {
    min-height: 600px;
}

.recata-content .recata-content-center .cata-float-wrap {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.recata-content .recata-content-center .cate-list {
    display: none;
}

.recata-content .recata-content-center .cate-list-1 {
    display: block;
}

.recata-content .recata-content-center .cata-float-wrap .icon_img {
    width: 70px;
    height: 70px;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 5px 15px #00b8ff33;
    padding: 5px;
}

.recata-content .recata-content-center .cata-float-wrap .c-item {
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: background-color .2s;

}

.recata-bottom {
    height: 52px;
    background: #f7f7f7;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 17px;
    padding-right: 56px;
    font-size: 13px;
    font-weight: 400;
    color: #5b5b5b;
    width: 100%;
}

.recata-bottom .link {
    color: #5599ff;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
}

.index-banner .col-z {
    width: 240px !important;
}

.index-banner .col-l {
    width: 63.333% !important;
}


.ept-new {
    width: 100%;
    background: none;
    box-shadow: none;
    margin-bottom: 50px;
    padding: 0;
}

.ept-new .footer-notice {
    margin-top: 50px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr;
    grid-gap: 20px;
}

.ept-new .footer-notice .footer-notice-wrap {
    width: 100%;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.ept-new .footer-notice .footer-notice-wrap .footer-notice-wrap-header {

    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    background-size: cover;
}

.ept-new .footer-notice .footer-notice-wrap .footer-notice-wrap-header .title {
    color: #fff;
    font-size: 16px;
}

.ept-new .footer-notice .footer-notice-wrap .footer-notice-wrap-header .more {
    color: #fff;
    font-size: 13px;
}

.ept-new .footer-notice .footer-notice-wrap .bg-1 {
    background-image: url('../img/footer-notice-26962-1-a5a199d3.png');
}

.ept-new .footer-notice .footer-notice-wrap .bg-2 {
    background-image: url('../img/footer-notice-26962-2-d0e8882f.png');
}

.ept-new .footer-notice .footer-notice-wrap .bg-3 {
    background-image: url('../img/footer-notice-26962-3-168b8198.png');
}

.ept-new .footer-notice .footer-notice-wrap .bg-4 {
    background-image: url('../img/footer-notice-26962-4-cf05bfb0.png');
}

.ept-new .footer-notice .footer-notice-wrap .footer-notice-wrap-content {
    width: 100%;
    height: 310px;
    padding: 20px;
}

.ept-new .footer-notice .footer-notice-wrap .footer-notice-wrap-content .item {
    width: 100%;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
}

.ept-new .footer-notice .footer-notice-wrap .footer-notice-wrap-content .item+.item {
    margin-top: 10px;
}

.ept-new .footer-notice .footer-notice-wrap .footer-notice-wrap-content .item .title {
    width: calc(100% + 68px);
    font-size: 14px;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ept-new .footer-notice .footer-notice-wrap .footer-notice-wrap-content .item .date {
    font-size: 12px;
    color: #999;
    white-space: nowrap;
    overflow: hidden;
}

.ept-goodscate {
    margin-top: 30px;
    background: none;
}

.ept-goodscate .recata-top {
    border-radius: 20px 20px 0 0;
    height: 50px;
}

.ept-goodscate .recata-top:before {
    content: "○";
    background-image: none;
    width: 12px;
    height: 12px;
    background-size: cover;
    display: block;
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    margin-right: 15px;
    margin-top: 2px;
}

.ept-goodscate .recata-top p {
    font-size: 15px;
}


.ept-goodscate .cata-container {
    margin-top: 10px;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.ept-goodscate .cata-container .cata-container-left {
    position: relative;
    width: 200px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    z-index: 1;
}

.ept-goodscate .cata-container .cata-container-left .c-item {
    width: 100%;
    height: 75px;
    padding: 0 30px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.ept-goodscate .cata-container .cata-container-left .c-item .icon_img {
    width: 30px;
    height: 30px;
    margin-right: 5px;
}

.ept-goodscate .cata-container .cata-container-left .c-item .title {
    font-size: 17px;
    color: #333;
    max-width: 75px;
}

.ept-goodscate .cata-container .cata-container-left .slider {
    width: 100%;
    height: 75px;
    background: #e5eefe;
    position: absolute;
    transition: top .2s ease-in-out;
    z-index: -1
}

.ept-goodscate .cata-container .cata-container-left .slider:before {
    content: "";
    position: absolute;
    left: 0;
    display: block;
    height: 100%;
    width: 3px;
    background-color: #5599ff
}

.ept-goodscate .cata-container .cata-container-left .hide-slider {
    display: none;
}

.ept-goodscate .cata-container .cata-container-right {
    width: calc(100% - 210px);
}


.ept-goodscate .cata-container .cata-container-right .cata-nav {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-gap: 20px;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    margin-bottom: 10px;
}

.ept-goodscate .cata-container .cata-container-right .cata-nav .item {
    width: 100%;
    height: 150px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(221, 221, 221, .4);
    cursor: pointer;
}

.ept-goodscate .cata-container .cata-container-right .cata-nav .active {
    border: 1px solid #5599ff;
}

.ept-goodscate .cata-container .cata-container-right .cata-nav .item .item-img-wrap {
    width: 100%;
    height: 110px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ept-goodscate .cata-container .cata-container-right .cata-nav .item .item-img-wrap .item-img {
    width: 64px;
    height: 64px;
    border-radius: 74px;
    border: 5px solid #fff;
    box-shadow: 0 5px 15px var(--el-color-primary-light-8);
    overflow: hidden;
}

.ept-goodscate .cata-container .cata-container-right .cata-nav .item .item-img-wrap .item-img img {
    width: 100%;
    height: 100%;
}

.ept-goodscate .cata-container .cata-container-right .cata-nav .item .item-text {
    width: 100%;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 14px;
    color: #333;
    position: relative;
}

.ept-goodscate .cata-container .cata-container-right .cata-nav .item .item-text:after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%);
    width: 80%;
    height: 1px;
    background: rgba(221, 221, 221, .2);
}

.ept-goodscate .cata-container .cata-container-right .cata-nav .active .item-text {
    color: #fff;
    background: linear-gradient(to left, #5599ff, #1ba4ff);
}

.ept-goodscate .cata-container .cata-container-right .hide-cata-nav {
    display: none;
}

.cata-container .cata-container-right .cata-list {
    padding: 20px;
    background: #fff;
    border-radius: 10px;
}

.cata-list .goodslist-null {
    height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.el-empty__description p {
    margin: 0;
    font-size: 14px;
    color: #909399;
}

.cata-container .cata-container-right .cata-list .goodslist-brands {
    width: 100%;
    height: 50px;
    padding: 0 0 10px;
    background: #fff;
    display: flex;
    align-items: center;
}

.cata-container .cata-container-right .cata-list .goodslist-brands .item {
    padding: 0 14px;
    width: fit-content;
    height: 30px;
    line-height: 30px;
    font-size: 14px;
    color: #fff;
    background: #bbb;
    border-radius: 5px;
    cursor: pointer;
    transition: .1s;
}

.cata-container .cata-container-right .cata-list .goodslist-brands .item.active {
    background: #5599ff;
}

.cata-container .cata-container-right .cata-list .item {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    border-radius: 8px;
}

.cata-container .cata-container-right .cata-list .item .img {
    width: 116px;
    height: 116px;
}

.el-image {

    position: relative;
    display: inline-block;
    overflow: hidden;
}

.el-image img {
    width: 100%;
    height: 100%;
}

.cata-container .cata-container-right .cata-list .item .auto {
    width: calc(100% - 276px);
}

.cata-container .cata-container-right .cata-list .item .auto .title {
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 16px;
    color: #5599ff;
}

.cata-container .cata-container-right .cata-list .item .auto .table {
    margin-top: 10px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
}

.cata-container .cata-container-right .cata-list .item .auto .table .table-item.wide {
    font-weight: 700;
}

.cata-container .cata-container-right .cata-list .item .auto .table .table-item {
    width: 100%;
    font-size: 14px;
    color: #333;
    white-space: nowrap;
    display: flex;
    align-items: center;
    border: none;
}

.cata-container .cata-container-right .cata-list .item .auto .table .table-item em {
    display: block;
    font-style: normal;
    width: 74px;
    text-align: justify;
    text-align-last: justify;
}

.cata-container .cata-container-right .cata-list .item .right {
    width: 120px;
}

.cata-container .cata-container-right .cata-list .item .right .btn {
    width: 120px;
    height: 38px;
    line-height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #fff;
    background: #5599ff;
    border-radius: 5px;
    transition: .1s;
}

.cata-container .cata-container-right .cata-list .item .right .btn .icon {
    width: 16px;
    height: 16px;
    display: flex;
    margin-right: 6px;
}

.cata-container .cata-container-right .cata-list .item .right .btn.disabled {
    background: #ccc;
    cursor: not-allowed;
}

.cata-container .cata-container-right .cata-list .item:hover {
    box-shadow: 0 0 10px #00000014;
}

.ept_scrolling {
    width: 100%;
    background: #fafcfe;
    border: 1px solid #e8f3fc;
    border-radius: 16px;
    margin: 30px 0 32px;
    padding: 20px 16px;
    overflow: hidden;
}

.scrolling_title {
    height: 24px;
    margin-bottom: 20px;
    width: 212px;
    box-shadow: none;
}

.scrolling_title img {
    width: 100%;
}

.scrolling_box {
    width: 100%;
    overflow: hidden;
    background: none;
    margin: 0;
}

.scrolling_list {
    display: flex;
    width: fit-content;

}

.hotgoodsimg {
    height: 70px;
    width: 70px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 10px;
}

.hotgoodstitle {
    display: -webkit-box;
    font-size: 16px;
    overflow-x: hidden;
    overflow-y: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    word-break: break-all;
}

.hotgoodsimg img {
    width: 100%;
    height: 100%;
}

.scrolling_item {
    align-items: center;
    background: linear-gradient(180deg, #fff, #e8f3fc);
    border: 1px solid #dbe9f8;
    border-radius: 12px;
    box-sizing: border-box;
    color: #41435d;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    font-size: 14px;
    line-height: 1.4;
    padding: 20px 10px 10px;
    width: 110px;
    margin-left: 12px;
}