html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    background-color: white;
    min-width: 1420px;
}

.container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main-content {
    flex: 1;                  /* 使内容部分占满剩余空间 */
}

/* 底部样式 */
.yqy-footer {
    margin-top: 40px;
    background-color: #434343;
    position: relative;
    padding: 40px 0 0;
    color: #fff;
    font-size: 14px;
    width:100%;
}

.yqy-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(110deg, #00a2ff, #00c7fd, #ffb800, #ff94fd);
    background-size: 200% 100%;
    animation: rainbow-border 10s linear infinite;
}

@keyframes rainbow-border {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 200% 0%;
    }
}

.yqy-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 服务保障区域 */
.yqy-footer-service-section {
    padding: 30px 0;

    position: relative;
    border-radius: 10px;
    background: #4f4f4f;
}

.yqy-footer-service-list {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.yqy-footer-service-item {
    display: flex;
    align-items: center;
    padding: 0 20px;
    transition: transform 0.3s ease;
}

.yqy-footer-service-item:hover {
    transform: translateY(-5px);
}

.yqy-footer-service-item i {
    font-size: 32px;
    margin-right: 15px;
    color: #00d2ff;
}

.yqy-footer-service-info h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

.yqy-footer-service-info p {
    font-size: 14px;
    color: #999;
}

/* 底部导航 */
.yqy-footer-nav {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: 1px solid #4e4e4e;
    position: relative;
}

.yqy-footer-nav-section {
    flex: 1;
    padding: 0 20px;
}

.yqy-footer-nav-section h4 {
    font-size: 16px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 500;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.yqy-footer-nav-section h4 i {
    font-size: 18px;
    margin-right: 10px;
    color: #ffffff;
}

.yqy-footer-nav-section:hover h4 i {
    transform: rotate(360deg);
}

.yqy-footer-nav-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.yqy-footer-nav-section ul li {
    margin-bottom: 10px;
}

.yqy-footer-nav-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
}

.yqy-footer-nav-section ul li a i {
    font-size: 14px;
    margin-right: 8px;
    width: 16px;
    text-align: center;
}

.yqy-footer-nav-section ul li a:hover {
    color: #00c7fd;
}

.yqy-footer-social-links {
    display: flex;
    gap: 15px;
}

.yqy-footer-social-icon {
    display: flex;
    align-items: center;
    padding: 8px 15px;
    background: #333;
    border-radius: 4px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.yqy-footer-social-icon i {
    font-size: 16px;
    margin-right: 8px;
}

.yqy-footer-social-icon:hover {
    transform: scale(1.1);
    color: #007bff;
}

/* 版权信息 */
.yqy-footer-copyright-section {
    padding: 10px 0;
    text-align: center;
    color: #999;
    font-size: 12px;
    position: relative;
}

.yqy-footer-copyright-content {
    max-width: 1200px;
    margin: 0 auto;
}

.yqy-footer-copyright-text {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
}

.yqy-footer-copyright-text i {
    font-size: 14px;
    margin-right: 8px;
}

.yqy-footer-icp-info {
    margin: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
}

.yqy-footer-icp-info i {
    font-size: 14px;
    margin-right: 8px;
}

.yqy-footer-icp-info a {
    color: #999;
    text-decoration: none;
}

.yqy-footer-icp-info a:hover {
    color: #00c7fd;
}

.yqy-footer-copyright-notice {
    margin-top: 10px;
}

.yqy-footer-copyright-notice p {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5px 0;
    color: #999;
}

.yqy-footer-copyright-notice p i {
    margin-right: 8px;
}

.yqy-footer-copyright-notice a {
    color: #999;
    text-decoration: none;
}

.yqy-footer-copyright-notice a:hover {
    color: #00c7fd;
}

/* 客服悬浮按钮 */
.yqy-footer-customer-service-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 100;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.yqy-footer-service-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #00c7fd;
    padding: 12px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 199, 253, 0.3);
    text-decoration: none;
    transition: all 0.3s;
}

.yqy-footer-service-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 199, 253, 0.4);
}

.yqy-footer-service-button i {
    font-size: 24px;
    margin-bottom: 5px;
    color: #ffffff;
}

.yqy-footer-service-button span {
    color: white;
    font-size: 12px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .service-list {
        flex-wrap: wrap;
    }

    .service-item {
        width: 50%;
        margin-bottom: 20px;
    }

    .footer-nav {
        flex-wrap: wrap;
    }

    .nav-section {
        width: 50%;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .service-item {
        width: 100%;
    }

    .nav-section {
        width: 100%;
    }

    .customer-service-float {
        right: 10px;
        bottom: 10px;
    }
}

.layui-layer {
    border-radius: 5px!important;
    box-shadow: 3.483px 4.43px 18px 0 rgba(41,113,222,.2);
}
.layui-layer-title {
    border-radius: 5px 5px 0 0!important;
}
.youqyauny_head{
    background-color: #ffffff;
    /* background: linear-gradient(to top right, #ffffff 53%, #eaf2ff 89%);*/
}
/*顶部盒子*/
.youqyauny_head_top{
    margin: 0;
    width:100%;
    height:37px;
    background-color:#EFF0F1;
}
.youqyauny_head_top .head_top_box1{
    margin: auto;
    width:1420px;
}
.youqyauny_head_top .head_top_box1 .youqyauny_head_top_left{
    margin: auto;
    float: left;
    font-size:14px;
    display:flex;
    flex-wrap: wrap;
}
.youqyauny_head_top .head_top_box1 .youqyauny_head_top_left li{
    margin: auto;
    padding:5px;
    font-size:12px;
    color: #727272;
    text-align:center;
}
.youqyauny_head_top .head_top_box1 .youqyauny_head_top_right{
    float: right;
    display:flex;
    flex-wrap: wrap;
}
.youqyauny_head_top .head_top_box1 .youqyauny_head_top_right li{
    margin: auto;
    padding:5px;
    font-size:12px;
    color: #727272;
    text-align:center;
}
/*菜单固定*/
.head_top_fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    transform: translateY(-3px);
    box-shadow: 0 5px 22px rgb(138 138 138 / 50%);
}

/*顶部盒子结束*/

/*中间LOGO 搜索*/
.youqyauny_head .hqy_top {
    height:120px;
    min-height: 120px;
    width:1420px;
    margin-right:auto;
    margin-left:auto;

}
.youqyauny_head .hqy_top .hqy_logo {
    float: left;
    height: 65px;
    width: 254px;
    margin-top: 29px;
    cursor: pointer;
}
.youqyauny_head .hqy_top .hqy_logo img{
    width:205px;
    height:65px;

}


.youqyauny_head .hqy_top .top-right {
    /* width: 389px; */
    height: 119px;
    margin: auto;
    float: right;
    /* display: flex; */
    flex-wrap: wrap;
    display: flex;
    align-items: center;
    justify-content: right;
}
.youqyauny_head .hqy_top .top-right li{
    float: left;

    font-size: 15px;
    color: #ff5722;
    margin: 7px;
    padding: 20px 0 20px 0;
}

.youqyauny_head .hqy_top .search_shop {
    margin: auto;
    float:left;
    display:flex;
    flex-wrap: wrap;
    margin-top: 38px;
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}


.youqyauny_head .hqy_top .search_shop input{
    width: 508px;
    height: 46px;
    font-size: 14px;
    color: #625f5f;
    background-color: #ffffff;
    padding: 10px 15px;
    font-weight: 600;
    border-radius: 5px 0 0 5px;
}


/* 输入框样式 */
.input-field {
    width: 100%;
    padding: 10px 15px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    outline: none;
    box-sizing: border-box;
}

/* 输入框获得焦点时，边框颜色变化 */
.youqyauny_head .hqy_top .search_shop input:focus {
    border-color: #007bff;
}

/* 标签样式，初始状态位于输入框内部 */
.floating-label {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    font-size: 16px;
    color: #aaa;
    pointer-events: none; /* 禁用标签点击 */
    transition: all 0.2s ease;
}

/* 当输入框被点击或有值时，标签上移 */
.youqyauny_head .hqy_top .search_shop input:focus + .floating-label,
.youqyauny_head .hqy_top .search_shop input:not(:placeholder-shown) + .floating-label {
    top: -2px;
    font-size: 12px;
    color: #0d87cc;
    background-color: #ffffff;
    padding:2px;
}

.youqyauny_head .hqy_top .search_shop input:hover {
    border: 1px solid #2196F3!important;
}

.youqyauny_head .hqy_top .search_shop button{
    height: 46px;
    font-size: 16px;
    background-color: #0079d8;
    border-radius: 0 5px 5px 0;
    background-image: linear-gradient(to bottom right, #2971de, #2196F3, #c19ae2);
    border: 0px solid transparent;
}
/*导航*/
.youqyauny_head .youqyauny_com_navigation  {
    width: 100%;
    height: 53px;
    /* transition: 0.5s; */
    transition: all 0.4s ease;
}


.youqyauny_head .youqyauny_com_navigation>ul li a img {
    height: 12px;
    min-width: 30px;
    position: absolute;
    transform: translateX(-98%) translateY(41%);
}

.youqyauny_head .youqyauny_com_navigation .hqy_top_nav {
    width:1420px;
    margin-right:auto;
    margin-left:auto;
    height:50px;

}
.youqyauny_head .youqyauny_com_navigation .hqy_top_nav li {
    display:inline;

}
.youqyauny_head .youqyauny_com_navigation .hqy_top_nav li span {
    display: inline-block;
    background-color: #000000;
    color: #ffffff;
    font-weight: bold;
    font-size: 15px;
    width: 159px;
    height: 53px;
    line-height: 54px;
    padding-left: 28px;
    letter-spacing: 3px;
    cursor: pointer;
    opacity: 0.7;
}
.youqyauny_head .youqyauny_com_navigation .hqy_top_nav li a {
    display:inline-block;
    padding: 0 15px;
    height: 53px;
    line-height: 54px;
    color:#FFF;
    font-family:"\5FAE\8F6F\96C5\9ED1";
    font-size: 15px;
    transition: .2s;
}
.youqyauny_head .youqyauny_com_navigation .hqy_top_nav li a:hover {
    background: #ffffff;
    box-shadow: 3.483px 4.43px 8px 0 #4d4d4d;
    /* border-bottom: 2px solid #ffffff; */
    /* border-radius: 6px; */
    transform: translateX(3px);
    color: #ffffff;
    background-image: linear-gradient(to right, #ff0000, #ff0000, #d70808);
    /* box-shadow: 0.483px 4.43px 25px 0 #5c5c5c; */
}
/*轮播广告*/
.youquanyi-index-topad{
    margin: 0;
    width: 100%;
    overflow: hidden;
    background-color: #161616;
    position: relative;
}
.youquanyi-index-topad .box1{
    margin: auto;
    width: 1420px;
    overflow: hidden;
}
/*轮播广告新样式*/
.youquanyi-index-topad .carousel-item {
    position: relative;
    height: 500px;
    overflow: hidden;
}
.youquanyi-index-topad .carousel-image {
    width: 100%;
    height: 100%;
    position: relative;
}
.youquanyi-index-topad .carousel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: all 1s ease;
}
.youquanyi-index-topad .carousel-overlay {
    position: absolute;
    top: 366px;
    left: 0;
    width: 100%;
    /* height: 100%; */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.01)););
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 31px 0px 1px 42px;
    overflow: visible; /* 确保内容不被裁剪 */
}
.youquanyi-index-topad .carousel-text {
    max-width: 650px;
    z-index: 10;
    transform: translateY(0);
    transition: all 0.5s ease;
}
.youquanyi-index-topad .carousel-title {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 35px;
    line-height: 1.2;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.4);
    transform: translateY(0);
    transition: all 0.5s ease;
    position: relative;
    letter-spacing: 1px;
}
.youquanyi-index-topad .carousel-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 100px;
    height: 5px;
    background: linear-gradient(to right, #ff5722, #ff9800);
    border-radius: 3px;
    box-shadow: 0 2px 8px rgba(255, 87, 34, 0.5);
}
.youquanyi-index-topad .carousel-bottom {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-top: auto;
    position: absolute;
    bottom: 15px;
    right: 81px;
    z-index: 20;
    width: auto; /* 确保宽度自适应内容 */
    max-width: 90%; /* 防止在小屏幕上溢出 */
}
.youquanyi-index-topad .carousel-price-box {
    display: flex;
    align-items: center;
    margin-bottom: 54px;
    background: rgba(255, 87, 34, 0.15);
    padding: 16px 17px;
    border-radius: 50px;
    width: fit-content;
    box-shadow: 0 6px 20px rgba(255, 87, 34, 0.25);
    transform: translateY(0);
    transition: all 0.5s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}
.youquanyi-index-topad .carousel-price-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(255, 87, 34, 0.35);
    background: rgba(255, 87, 34, 0.2);
}
.youquanyi-index-topad .carousel-price-label {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(to right, #ff0000, #ff8100);
    padding: 6px 18px;
    border-radius: 25px;
    margin-right: 18px;
    box-shadow: 0 3px 8px rgba(255, 87, 34, 0.4);
    letter-spacing: 1px;
}
.youquanyi-index-topad .carousel-price {
    font-size: 31px;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}
.youquanyi-index-topad .carousel-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff5722, #ff9800);
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    width: fit-content;
    border: none;
    letter-spacing: 1px;
    backdrop-filter: blur(5px);
}

.youquanyi-index-topad .carousel-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
}

.youquanyi-index-topad .carousel-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 87, 34, 0.4);
    background: linear-gradient(135deg, #ff6b3d, #ffa726);
}

.youquanyi-index-topad .carousel-btn:hover::before {
    left: 100%;
}

.youquanyi-index-topad .carousel-btn:active {
    transform: translateY(1px);
    box-shadow: 0 4px 12px rgba(255, 87, 34, 0.3);
}

.youquanyi-index-topad .carousel-btn i {
    margin-right: 10px;
    font-size: 20px;
    transition: transform 0.3s ease;
}

.youquanyi-index-topad .carousel-btn:hover i {
    transform: translateX(3px);
}


.youquanyi-index-topad .carousel-item:hover .carousel-text {
    transform: translateY(-5px);
}
.youquanyi-index-topad .carousel-item:hover .carousel-title {
    transform: translateY(-8px);
}
/*位置导航*/
.head-navigation {
    width: 1420px;

    display: flex;
    justify-content: center;
    margin: auto;
}
.head-navigation .navigation-box {
    margin: 0 auto;
    display: flex;
    width: 1420px;
    text-align: center;
    padding: 11px 0 11px 0;
}
.head-navigation .navigation-box li{
    float:left;
    color: #6a6a6a;
}
.head-navigation .navigation-box li a:link{
    color: #535353;
}
.head-navigation .navigation-box li a:hover{
    color: #dc0e18;
}
.head-navigation .navigation-box li i{
    color: #b7b7b7;
    padding-right:5px;
    padding-left:2px;
    font-size: 12px;
}

/*产品分类目录*/
.youquanyi-index-class{
    margin: 0;
    width: 100%;
    overflow: hidden;
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: #f9f9f9;
    background-image: linear-gradient(to bottom, #fbfbfb, #ffffff);
    position: relative;
}
/*.youquanyi-index-class:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, #b4ddeb, transparent);
}*/

.youquanyi-index-class .box1{
    margin: auto;
    width:1420px;
    overflow: hidden;
    border-radius:10px;
}

.youquanyi-index-class .box1 .title{
    margin: auto 0;
    overflow: hidden;
    font-size: 28px;
    color: #5a5a5a;
    margin-bottom: 15px;
    padding: 20px;
    border-bottom: 1px solid #e8e8e8;
    position: relative;
}

.youquanyi-index-class .box1 .title i{
    font-size: 28px;
    color: #8ab4d3;
    padding-right: 10px;
}

.youquanyi-index-class .box1 .title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20px;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #8ab4d3, #c5d9e8);
    border-radius: 3px;
}

/*首页分类菜单列表*/
.youquanyi-index-class .box1 .indexmenu-class{
    overflow:hidden;
    padding: 25px 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.youquanyi-index-class .box1 .indexmenu-class .indexmenu-box{
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    padding: 15px 15px;
    position: relative;
    cursor: pointer;
    color: #666;
    margin: 10px;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    width: calc(12.666% - -2px);
    min-width: 150px;
}

.youquanyi-index-class .box1 .indexmenu-class .indexmenu-box:hover{
    font-weight: 500;
    box-shadow: 0 5px 15px rgb(72 120 239 / 20%);
    transform: translateY(-5px);
    border-color: #d0ebff;
    background-color: #f7fcff;
}

.youquanyi-index-class .box1 .indexmenu-class .indexmenu-box .indexmenu-box-img{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    margin-bottom: 3px;
    background-color: #fbfbfb;
    border-radius: 50%;
    padding: 10px;
    transition: all 0.3s ease;
}

.youquanyi-index-class .box1 .indexmenu-box .indexmenu-box-img img{
    width: 60px;
    height: 60px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.youquanyi-index-class .box1 .indexmenu-class .indexmenu-box .indexmenu-box-name{
    display: flex;
    align-items: center;
    justify-content: center;
    /* padding-top: 0px; */
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 16px;
    font-weight:600;
    color: #666;
    transition: all 0.3s ease;
}

.youquanyi-index-class .box1 .indexmenu-class .indexmenu-box:hover .indexmenu-box-name {
    color: #0091ff;
}

/*产品*/
.youquanyi-index-shop{
    margin: 0;
    width:100%;
    overflow: hidden;
    padding-top: 50px;
    padding-bottom: 50px;
    background: linear-gradient(to top, #ffffff 53%, #f7f7f7 90%);
    position: relative;
}

/*.youquanyi-index-shop:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, #ff8d6b, transparent);
}*/


.youquanyi-index-shop .box1{
    margin: auto;
    width:1420px;
    overflow: hidden;
    border-radius:10px;
}
.youquanyi-index-shop .box1 .title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.youquanyi-index-shop .box1 .title i {
    margin-right: 10px;
    color: #ff6b6b;
}

.youquanyi-index-shop .box1 .new-products-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 0 10px;
    position: relative;
}

.youquanyi-index-shop .box1 .new-products-header:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, #dbdbdb, transparent);
}

.youquanyi-index-shop .box1 .new-products-notice {
    font-size: 16px;
    color: #666;
    display: flex;
    align-items: center;
    padding: 15px 0;
}

.youquanyi-index-shop .box1 .new-products-notice i {
    color: #ff6b6b;
    margin-right: 8px;
    font-size: 18px;
}

.youquanyi-index-shop .box1 .new-products-more {
    font-size: 14px;
    color: #999;
    text-decoration: none;
    transition: color 0.3s;
}

.youquanyi-index-shop .box1 .new-products-more:hover {
    color: #ff6b6b;
}

.youquanyi-index-shop .box1 .new-products-more i {
    margin-left: 5px;
    font-size: 12px;
}

.youquanyi-index-shop .box1 .title i{
    font-size: 32px;
    color: #ebaa00;
    padding-right: 10px;
}

/*产品展示 方格模式 开始*/
.youquanyi-index-shop .box1 .productstyle {
    overflow: hidden;
    /* padding: 25px 15px; */
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

/* 大卡片样式 */
.youquanyi-index-shop .box1 .productstyle .shoptitlebox-big {
    position: relative;
    width: 338px;
    min-width: 338px;
    height: 347px;
    margin: 7px;
    border-radius: 12px;
    background-color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    overflow: hidden;
}

.youquanyi-index-shop .box1 .productstyle .shoptitlebox-big:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: #e8e8e8;
}

.youquanyi-index-shop .box1 .productstyle .shoptitlebox-big .recommend {
    position: absolute;
    width: 100px;
    height: 100px;
    margin-left: -4px;
    margin-top: -4px;
    z-index: 2;
}

.youquanyi-index-shop .box1 .productstyle .shoptitlebox-big .big-box {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 92%;
    padding: 15px;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.8));
    z-index: 1;
    transition: all 0.3s ease;
}

.youquanyi-index-shop .box1 .productstyle .shoptitlebox-big:hover .big-box {
    background: linear-gradient(to top, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.9));
}

.youquanyi-index-shop .box1 .productstyle .shoptitlebox-big .big-box .bigtitle {
    width: 100%;
    height: auto;
    min-height: 26px;
    font-size: 16px;
    color: #333;
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 500;
}

.youquanyi-index-shop .box1 .productstyle .shoptitlebox-big .big-box .bigprice {
    line-height: 33px;
    overflow: visible;
    font-size: 24px;
    color: #ff5722;
    text-align: right;
    font-weight: 600;
}

.youquanyi-index-shop .box1 .productstyle .shoptitlebox-big .big-box .bigprice span {
    font-size: 16px;
    margin-right: 2px;
}

.youquanyi-index-shop .box1 .productstyle .shoptitlebox-big .imgbox {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.youquanyi-index-shop .box1 .productstyle .shoptitlebox-big .imgbox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.youquanyi-index-shop .box1 .productstyle .shoptitlebox-big:hover .imgbox img {
    transform: scale(1.05);
}

/* 小卡片样式 */
.youquanyi-index-shop .box1 .productstyle .shoptitlebox {
    position: relative;
    width: 220px;
    min-width: 220px;
    height: 347px;
    margin: 7px;
    background-color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.youquanyi-index-shop .box1 .productstyle .shoptitlebox:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: #e8e8e8;
}

.youquanyi-index-shop .box1 .productstyle .shoptitlebox .imgbox {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.youquanyi-index-shop .box1 .productstyle .shoptitlebox .imgbox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.youquanyi-index-shop .box1 .productstyle .shoptitlebox:hover .imgbox img {
    transform: scale(1.05);
}

/*产品名称*/
.youquanyi-index-shop .box1 .productstyle .shoptitlebox .titlebox {
    margin: 0 auto;
    width: 100%;
    height: auto;
    min-height: 40px;
    line-height: 20px;
    font-size: 14px;
    overflow: hidden;
    padding: 12px 10px 5px;
    color: #333;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

.youquanyi-index-shop .box1 .productstyle .shoptitlebox .titlebox a:link {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
}

.youquanyi-index-shop .box1 .productstyle .shoptitlebox .titlebox a:hover {
    color: #ff5722;
    text-decoration: none;
}

/*产品规格*/
.youquanyi-index-shop .box1 .productstyle .shoptitlebox .titlebox2 {
    width: 100%;
    height: auto;
    min-height: 16px;
    font-size: 13px;
    overflow: hidden;
    margin: 0 auto;
    color: #666;
    padding: 0 10px 5px;
}

/* 标签样式 */
.youquanyi-index-shop .box1 .productstyle .shoptitlebox .infomsg {
    padding: 8px 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.youquanyi-index-shop .box1 .productstyle .shoptitlebox .infomsg .span {
    font-size: 11px;
    color: #666;
    padding: 3px 8px;
    border-radius: 4px;
    border: 1px solid #e0e0e0;
    background-color: #f9f9f9;
    transition: all 0.3s ease;
}

.youquanyi-index-shop .box1 .productstyle .shoptitlebox .infomsg .span2 {
    font-size: 11px;
    color: #FFFFFF;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 500;
}

/* 价格和购买区域 */
.youquanyi-index-shop .box1 .productstyle .shoptitlebox .shopbuybox {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 10px 12px;
    border-top: 1px solid #f5f5f5;
    margin-top: auto;
}

.youquanyi-index-shop .box1 .productstyle .shoptitlebox .shopbuybox .moneybox {
    font-size: 18px;
    color: #ff5722;
    font-weight: 600;
}

.youquanyi-index-shop .box1 .productstyle .shoptitlebox .shopbuybox .moneybox span {
    font-size: 14px;
    margin-right: 2px;
}

.youquanyi-index-shop .box1 .productstyle .shoptitlebox .shopbuybox .buybox {
    font-size: 12px;
    color: #999;
    padding: 3px 8px;
    border-radius: 4px;
    background-color: #f5f5f5;
    transition: all 0.3s ease;
}

.youquanyi-index-shop .box1 .productstyle .shoptitlebox:hover .shopbuybox .buybox {
    background-color: #ff5722;
    color: #fff;
}

/* 菜单 */
.hqy-menu-box {
    position: absolute;
    width: 100%;
    z-index: 999999;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    top: 100%;
    left: 0;
}

.hqy-menu-content {
    background-color: #ffffff;
    position: relative;
    box-sizing: border-box;
    width: 100%;
    box-shadow: 0 10px 30px -10px rgb(0 0 0 / 20%);
    z-index: 999999;
    transition: all 0.3s ease;
    padding: 12px;
    /* border-radius: 8px; */
    display: none;
}

/* 子菜单导航 */
.hqy-sub-nav {
    margin: 0 auto;
    box-sizing: border-box;
    padding: 0px 0 8px 0;
    overflow: hidden;
    width: 1420px;
    text-align: left;
    position: relative;
    margin-bottom: 5px;
    /* background: aliceblue; */
}

.hqy-sub-nav::before {
    display: none;
}

.hqy-sub-nav .nav-inner {
    width: 100%;
    position: relative;
}

.hqy-sub-nav div {
    margin: 0 5px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    box-sizing: border-box;
    font-size: 15px;
    padding: 6px 13px;
    border-radius: 30px;
    transition: all 0.3s ease;
    position: relative;
    color: #333;
    gap: 5px;
}

.hqy-sub-nav div::after {
    content: '';
    width: 6px;
    height: 6px;
    border-top: 2px solid #909399;
    border-right: 2px solid #909399;
    transform: rotate(45deg);
    transition: all 0.2s ease;
    opacity: 0.5;
    margin-left: 5px;
}

.hqy-sub-nav div.has-children::after {
    opacity: 1;
}

.hqy-sub-nav div.has-children:hover::after {
    border-color: #ff5722;
    transform: rotate(90deg);
    opacity: 1;
}

.hqy-sub-nav div:hover {
    background: #f1f1f1;
    color: #ff5722;
    transform: translateY(-2px);
}

.hqy-now-nav {
    background: #f5f7fa !important;
    color: #de2929 !important;
    box-shadow: 0 1px 4px rgba(41, 113, 222, 0.1);
}

.hqy-sub-top {
    height: 1px;
    background: #f0f0f0;
    margin: 5px 0;
    position: relative;
    width: 100%;
}

.hqy-sub-box {
    margin: 0 auto;
    display: flex;
    padding: 10px 0;
    transition: .2s;
    width: 1420px;
    gap: 4px;
}

.hqy-sub-level {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hqy-sub-level-2 {
    min-width: 165px;
    max-width: 177px;
    padding: 0px 10px 0 0;
    border-right: 1px solid #e9e9e9;
    background: #ffffff;
    /* background-image: linear-gradient(35deg, #e8ddff, #ffd3d3, #e5ffc3); */
}

.hqy-sub-level-3 {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 5px;
    padding: 0 5px;
}

.hqy-sub-content {
    width: 100%;
    position: relative;
    font-size: 14px;
    text-align: left;
    height: 38px;
    box-sizing: border-box;
    padding: 8px 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
    color: #666;
    background: #fff;
    border: 1px solid transparent;
}

.hqy-sub-content:hover {
    /* background: #f5f7fa; */
    color: #ff5722;
    transform: translateX(2px);
    border-color: #e4e7ed;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.hqy-sub-content img {
    width: 20px;
    height: 20px;
    border-radius: 3px;
    object-fit: cover;
}

.hqy-sub-content span {
    font-size: 14px;
    color: inherit;
    font-weight: 500;
}

.hqy-now-sub-content {
    /* background: #f5f7fa !important; */
    color: #ff5722 !important;
    border-color: #e4e7ed !important;
    /* box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05) !important; */
}

.hqy-sub-content-children::after {
    content: '';
    width: 4px;
    height: 4px;
    border-top: 1px solid #999;
    border-right: 1px solid #999;
    transform: rotate(45deg);
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    transition: transform 0.2s ease;
}

.hqy-sub-content:hover::after {
    transform: translateY(-50%) rotate(45deg) translate(1px, -1px);
    border-color: #2971de;
}

/* 分隔线 */
.hqy-sub-top {
    height: 1px;
    background: #f0f0f0;
    margin: 5px 0;
    position: relative;
    width: 100%;
}

.hqy-sub-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, #f0f0f0, transparent);
    z-index: -1;
}

.hqy-sub-top .nav-inner {
    width: 1420px;
    margin: 0 auto;
    position: relative;
}

/*文章展示*/
.youquanyi-index-article {
    margin: 0;
    width: 100%;
    overflow: hidden;
    padding-top: 50px;
    padding-bottom: 50px;
    background: linear-gradient(to top, #ffffff, #f9f7f0);
}

.youquanyi-index-article .box1 {
    margin: auto;
    width: 1420px;
    overflow: hidden;
    border-radius: 10px;
}

.youquanyi-index-article .box1 .title {
    margin: auto 0;
    overflow: hidden;
    font-size: 28px;
    color: #5a5a5a;
    margin-bottom: 15px;
    padding: 20px;
    border-bottom: 1px solid #e8e8e8;
    position: relative;
}

.youquanyi-index-article .box1 .title i {
    font-size: 28px;
    color: #8ab4d3;
    padding-right: 10px;
}

.youquanyi-index-article .box1 .title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20px;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #8ab4d3, #c5d9e8);
    border-radius: 3px;
}

/*文章系统*/
.youquanyi-index-article .box1 .article {
    overflow: hidden;
    padding: 20px 0;
}

.youquanyi-index-article .box1 .article .article-box {
    width: 432px;
    min-width: 432px;
    height: 428px;
    min-height: 428px;
    margin: 10px;
    overflow: hidden;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
}

.youquanyi-index-article .box1 .article .article-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: #e8e8e8;
}

.youquanyi-index-article .box1 .article .article-box .article-img {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.youquanyi-index-article .box1 .article .article-box .article-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.youquanyi-index-article .box1 .article .article-box:hover .article-img img {
    transform: scale(1.05);
}

.youquanyi-index-article .box1 .article .article-box .article-time {
    padding: 12px 15px 5px;
    color: #999;
    font-size: 13px;
    display: flex;
    align-items: center;
}

.youquanyi-index-article .box1 .article .article-box .article-time:before {
    content: '\f017';
    font-family: 'Font Awesome 6 Free';
    font-weight: 400;
    margin-right: 5px;
    font-size: 14px;
    color: #8ab4d3;
}

.youquanyi-index-article .box1 .article .article-box .article-title {
    padding: 0 15px 10px;
    font-size: 18px;
    color: #333;
    font-weight: 500;
    line-height: 1.4;
    height: 50px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.youquanyi-index-article .box1 .article .article-txt {
    padding: 0 15px 15px;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    flex-grow: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

/* Swiper 样式优化 */
.youquanyi-index-article .swiper-container {
    padding: 10px 5px 30px;
    position: relative;
}

.youquanyi-index-article .swiper-pagination {
    bottom: 0;
}

.youquanyi-index-article .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #ccc;
    opacity: 1;
    transition: all 0.3s ease;
}

.youquanyi-index-article .swiper-pagination-bullet-active {
    width: 20px;
    border-radius: 4px;
    background: #8ab4d3;
}

.youquanyi-index-article .swiper-slide {
    height: auto;
    display: flex;
    justify-content: center;
}

/* 添加左右滑动按钮 */
.youquanyi-index-article .swiper-button-next,
.youquanyi-index-article .swiper-button-prev {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    color: #8ab4d3;
}

.youquanyi-index-article .swiper-button-next:after,
.youquanyi-index-article .swiper-button-prev:after {
    font-size: 18px;
    font-weight: bold;
}

.youquanyi-index-article .swiper-button-next:hover,
.youquanyi-index-article .swiper-button-prev:hover {
    background-color: #8ab4d3;
    color: #ffffff;
    transform: scale(1.1);
}

.youquanyi-index-article .swiper-button-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/*价格走势*/
.youquanyi-index-priceaction {
    margin: 0;
    width: 100%;
    overflow: hidden;
    padding-top: 50px;
    padding-bottom: 50px;
    background: linear-gradient(to top, #ffffff, #fff0f0);
}

.youquanyi-index-priceaction .box1 {
    margin: auto;
    width: 1420px;
    overflow: hidden;
    border-radius: 10px;
}

.youquanyi-index-priceaction .box1 .title {
    margin: auto 0;
    overflow: hidden;
    font-size: 28px;
    color: #5a5a5a;
    margin-bottom: 15px;
    padding: 20px;
    border-bottom: 1px solid #e8e8e8;
    position: relative;
}

.youquanyi-index-priceaction .box1 .title i {
    font-size: 28px;
    color: #ef0000;
    padding-right: 10px;
}

.youquanyi-index-priceaction .box1 .title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20px;
    width: 75px;
    height: 3px;
    background: linear-gradient(to right, #ff0000, #e8c5c5);
    border-radius: 3px;
}

.youquanyi-index-priceaction .box1 .priceaction-index {
    overflow: hidden;
    display: flex;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
}

.youquanyi-index-priceaction .box1 .priceaction-index-left {
    flex: 1;
    height: 481px;
    overflow: auto;
    padding: 0;
    border-right: 1px solid #f0f0f0;
}

.youquanyi-index-priceaction .box1 .priceaction-index-right {
    width: 212px;
    height: 481px;
    padding: 0 0 0 7px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.youquanyi-index-priceaction .box1 .priceaction-index-right img {
    border-radius: 8px;
    max-width: 100%;
    height: auto;
}

.youquanyi-index-priceaction .box1 .priceaction-index-left::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.youquanyi-index-priceaction .box1 .priceaction-index-left::-webkit-scrollbar-thumb {
    border-radius: 3px;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.08);
    background: #e0e0e0;
}

.youquanyi-index-priceaction .box1 .priceaction-index-left::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.05);
    border-radius: 3px;
    background: #f9f9f9;
}

.youquanyi-index-priceaction .box1 .priceaction-index .priceaction-index-left .priceaction {
    position: relative;
}

.youquanyi-index-priceaction .box1 .priceaction-index .priceaction-index-left .priceaction .box {
    border-bottom: 1px solid #f5f5f5;
    overflow: hidden;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.youquanyi-index-priceaction .box1 .priceaction-index .priceaction-index-left .priceaction .box:hover {
    background-color: #ffe9e9;
}

.youquanyi-index-priceaction .box1 .priceaction-index .priceaction-index-left .priceaction .topbox {
    border-bottom: 1px solid #e8e8e8;
    overflow: hidden;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    background-color: #cd2d2d;
    position: sticky;
    top: 0;
    z-index: 1;
    /* color: #ffffff; */
}

.youquanyi-index-priceaction .box1 .priceaction-index .priceaction-index-left .priceaction .topbox1 {
    width: 140px;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}

.youquanyi-index-priceaction .box1 .priceaction-index .priceaction-index-left .priceaction .topbox2 {
    flex: 1;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}

.youquanyi-index-priceaction .box1 .priceaction-index .priceaction-index-left .priceaction .topbox3,
.youquanyi-index-priceaction .box1 .priceaction-index .priceaction-index-left .priceaction .topbox4,
.youquanyi-index-priceaction .box1 .priceaction-index .priceaction-index-left .priceaction .topbox5 {
    width: 100px;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
}

.youquanyi-index-priceaction .box1 .priceaction-index .priceaction-index-left .priceaction .box1 {
    width: 140px;
    font-size: 13px;
    color: #666;
}

.youquanyi-index-priceaction .box1 .priceaction-index .priceaction-index-left .priceaction .box2 {
    flex: 1;
    font-size: 13px;
}

.youquanyi-index-priceaction .box1 .priceaction-index .priceaction-index-left .priceaction .box2 a:link {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.youquanyi-index-priceaction .box1 .priceaction-index .priceaction-index-left .priceaction .box2 a:hover {
    color: #8ab4d3;
}

.youquanyi-index-priceaction .box1 .priceaction-index .priceaction-index-left .priceaction .box3 {
    width: 100px;
    text-decoration: line-through;
    font-size: 14px;
    color: #999;
    text-align: center;
}

.youquanyi-index-priceaction .box1 .priceaction-index .priceaction-index-left .priceaction .box4 {
    width: 100px;
    font-size: 14px;
    text-align: center;
}

.youquanyi-index-priceaction .box1 .priceaction-index .priceaction-index-left .priceaction .box5 {
    width: 100px;
    font-size: 14px;
    text-align: center;
}

.youquanyi-index-priceaction .box1 .priceaction-index .priceaction-index-left .priceaction .box4 span,
.youquanyi-index-priceaction .box1 .priceaction-index .priceaction-index-left .priceaction .box5 span {
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 500;
}

.youquanyi-index-priceaction .box1 .priceaction-index .priceaction-index-left .priceaction .box4 span[style*="color: #0f9526"],
.youquanyi-index-priceaction .box1 .priceaction-index .priceaction-index-left .priceaction .box5 span[style*="color: #0f9526"] {
    background-color: rgba(15, 149, 38, 0.1);
}

.youquanyi-index-priceaction .box1 .priceaction-index .priceaction-index-left .priceaction .box4 span[style*="color: #dc0001"],
.youquanyi-index-priceaction .box1 .priceaction-index .priceaction-index-left .priceaction .box5 span[style*="color: #dc0001"] {
    background-color: rgba(220, 0, 1, 0.1);
}

/*登录按钮*/
.loginbtnok{
    background-color: #1486b9 !important;
    transition: .3s;
    height: 34px;
    font-size: 14px;
    border-radius: 15px;
    width: 100%;
}

/*注册按钮*/
.regsbtnok{
    background-color: #209600 !important;
    transition: .3s;
    height: 34px;
    font-size: 14px;
    border-radius: 15px;
    width: 100%;
}

/*底部样式*/
.yqy-buy-footer{ left: 0; bottom: 0; width: 100%; line-height: 25px; padding: 20px; text-align: center; box-sizing: border-box;color: #595959;}
.yqy-buy-footer span{padding: 0 5px;}
.yqy-buy-footer a{padding: 0 5px; color: rgba(0,0,0,.5);}
.yqy-buy-footer a:hover{color: rgba(0,0,0,1);}

/*
热门搜索*/
.hqy-search-shop {
    background-color: #ffffff;
    position: absolute;
    box-sizing: border-box;
    width: 631px;
    max-width: 631px;
    top: 51px;
    padding: 8px 10px 16px 10px;
    z-index: 9999999;
    border-radius: 5px;
    /* 底部阴影 */
    box-shadow: 5px 0px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0e0e0;
}
.hqy-search-shop .search_top{
    margin: 5px;
    font-weight: 600;
    padding: 5px;
    color: #b3b3b3;

}
.hqy-search-shop .search_end{
    margin: 9px 0 0 0;
    border-top: 1px solid #f2f2f2;
    padding: 11px 0 0 8px;
    color: #2196F3;
    cursor: pointer;
}
.hqy-search-shop ul{
    overflow: hidden;
}
.hqy-search-shop ul li{

    float: left;
    padding: 8px;
    font-size: 14px;
    color: #6d6d6d;
    width:180px;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.hqy-search-shop ul li:hover{
    background-color: #f5f5f5;
    border-radius: 8px;
    color: #000000;
}

.hqy-search-shop ul li span{
    display: flex;
    float: left;
    padding: 3px 8px 3px 8px;
    color: #ffffff;
    background-color: #cdcdcd;
    border-radius: 3px;
    font-size: 10px;
    margin-right: 5px;
}

.hqy-search-shop .search_history{
    overflow: hidden;
    margin: 5px 0;
    padding: 0 0;
    color: #837777;
}
.hqy-search-shop .search_history .search_history_top{
    margin: 5px;
    /* font-weight: 600; */
    padding: 5px;
    color: #7a7a7a;
}
.hqy-search-shop .search_history .search_history_top span{
    float:right;
    font-weight: 100;
    font-size: 12px;
    cursor: pointer;
}
.hqy-search-shop .search_history .search_history_top span:hover{
    color: #00b10f;
}
.hqy-search-shop .search_history span{
    padding-top: 5px;
}
.hqy-search-shop .search_history li{
    float: left;
    margin:5px;
    padding: 5px;
    font-size: 12px;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    border-radius: 4px;
    border: 1px solid #dadada;
}
.hqy-search-shop .search_history li:hover{
    border: 1px solid #ff6b2c;
    background-color: #fff5ed;
    color: #ffffff;
}
.hqy-search-shop .search_history a{
    color: #292929;
}
.hqy-search-shop .search_history li:hover a {
    color: #ff6b2c; /* 设置 a 标签的文字颜色为白色 */
}

.layui-layer-ico16,.layui-layer-loading .layui-layer-loading2 {
    top: 2px!important;
    left: 1px!important;
    width: 60px!important;
    height: 60px!important;
}


.layui-layer-dialog .layui-layer-padding {
    color: #007ce9!important;
}

/*客服漂浮*/
.yqy-customer-service {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 57px;
    padding: 5px;
}
.yqy-customer-service .float-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 47px;
    height: 163px;
    background: linear-gradient(180deg, #ff3b3b 0%, #ffa45a 100%);
    padding: 2px;
    border-radius: 30px;
}
.yqy-customer-service .float-right .pls-floatbar-icon {
    width: 100%;
    display: block;
    border-radius: 50%;
}

.yqy-customer-service .float-right .pls-floatbar-button{
    position: relative;
    width: 47px;
    box-sizing: border-box;
    border-radius: 30px;
    box-shadow: 8px 8px 20px 0 rgb(0 0 0 / 10%);
    border: 1px solid #fb7f58;
    background-clip: padding-box;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    cursor: pointer;
    overflow: hidden;
    transition: all .3s ease-in-out;
    height: auto;
}
.yqy-customer-service .float-right .pls-floatbar-button .pls-floatbar-button-desc {
    display: block;
    text-align: center;
    width: 18px;
    margin-left: auto;
    margin-right: auto;
    font-size: 16px;
    line-height: 24px;
    margin-top: 8px;
    color: white;
}

.yqy-footer-service{
    background-color: #f5f5f5;
    margin-top: 40px;
    border-top: 1px solid #e5e5e5;
}
.yqy-footer-service .yqy-footer-inner {
    font-size: 0;
    text-align: center;
    padding: 24px 36px;
    box-sizing: border-box;
    margin: 0 auto;
    max-width: 1180px;
    border-bottom: 1px solid rgb(179 179 179 / 20%);
    -webkit-font-smoothing: antialiased;
}

.yqy-footer-service .yqy-footer-inner .yqy-footer-service-list {
    box-sizing: border-box;
    display: table;
    width: 100%;
}
.yqy-footer-service .yqy-footer-inner .yqy-footer-service-list>li {
    display: table-cell;
    width: 25.5%;
    vertical-align: top;
    text-align: left;
    white-space: nowrap;
}
/*.yqy-footer-service .yqy-footer-inner .yqy-footer-service-item:hover {
    text-decoration: none;
    color: #0052d9;
}*/
.yqy-footer-service .yqy-footer-inner .yqy-footer-service-item {
    display: block;
    font-size: 16px;
    color: #5f5f5f;
}
.yqy-footer-service .yqy-footer-inner .yqy-footer-service-item:hover .icon {
    -webkit-animation: plsFooterEnter .3s steps(16) forwards;
    animation: plsFooterEnter .3s steps(16) forwards;
}
.yqy-footer-service .yqy-footer-inner .yqy-footer-service-item .icon {
    display: inline-block;
    width: 60px;
    height: 60px;
    vertical-align: middle;
    margin-right: 4px;
    margin-left: -6px;
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: top center;
    -webkit-animation: plsFooterLeave .3s steps(16) forwards;
    animation: plsFooterLeave .3s steps(16) forwards;
}

.yqy-footer-service .yqy-footer-inner .yqy-footer-service-item .icon-1 {
    background-image: url(/homestyle/style1/images/icons/ani-5day.8b4d6e68.png);
}
.yqy-footer-service .yqy-footer-inner .yqy-footer-service-item .icon-2 {
    background-image: url(/homestyle/style1/images/icons/ani-free.a411eb94.png);
}
.yqy-footer-service .yqy-footer-inner .yqy-footer-service-item .icon-3 {
    background-image: url(/homestyle/style1/images/icons/ani-service.a75411e0.png);
}
.yqy-footer-service .yqy-footer-inner .yqy-footer-service-item .icon-4 {
    background-image: url(/homestyle/style1/images/icons/ani-time.c32429e2.png);
}

/*头部通知*/
.youqyauny_redheadsmsg{
    width: 100%;
    background-color: #646464;
    border-top: 3px solid #000000;
}
.youqyauny_redheadsmsg .redheadsmsgbox{
    height: 100%;
    width: 1420px;
    margin-right: auto;
    margin-left: auto;
    color: #ffffff;
    font-size: 16px;
    padding: 8px;
    line-height: 29px;
}

/*
会员登录后菜单*/
.display-drop-down {
    padding-bottom: 21px; /* 增加触发区域的高度，确保下拉菜单可以覆盖该区域 */
    position: relative; /* 关键：作为 .drop-down 的定位参考 */
}
/* 初始状态：隐藏 + 透明 + 上移 */
.drop-down {
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    position: absolute;
    background-color: white;
    box-shadow: 0 0 23px 0 #909090;
    padding: 10px 15px;
    width: 345px;
    top: 100%;
    right: 0;
    border-radius: 9px;
    z-index: 100000;

    font-size: 14px;
    transition: all 0.3s ease;
}

.drop-down .dropdown-header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.drop-down .dropdown-header-top .avatar-top {
    display: flex;
    align-items: center;
}

.drop-down .dropdown-header-top .avatar-top img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}


.drop-down .dropdown-header-top .avatar-top .username-top {
    font-weight: bold;
    color: #333;
}

.drop-down .dropdown-header-top .logout-btn-top {
    background-color: #ff4d4f;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 6px 12px;
    cursor: pointer;
    font-size: 14px;
}

.drop-down .dropdown-links-top {
    display: flex;
    padding: 15px;
    gap: 20px;
}

.drop-down .dropdown-links-top .link-column-top {
    flex: 1;
}

.drop-down .dropdown-links-top .link-column-top a {
    display: block;
    padding: 6px 0;
    color: #555;
    text-decoration: none;
    font-size: 14px;
}
.drop-down .dropdown-links-top .link-column-top a i{
    font-size: 13px;
}

.drop-down .dropdown-links-top .link-column-top a:hover {
    color: #ff6200;
}

/* 鼠标经过时显示下拉菜单 */
.display-drop-down:hover .drop-down {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.display-drop-down .drop-down-trigger img{
    width: 35px;
    height: 35px;
    border-radius: 50%;
    margin-right: 10px;
}

/*
.display-drop-down .drop-down .drop-down-item {border-radius: 30px;margin: 4px auto;padding: 6px;text-align: center;transition: .3s;}
.display-drop-down .drop-down .drop-down-item i{
    margin-right:5px;
}
.display-drop-down .drop-down .drop-down-item:hover {
    background-color: #0072c7;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.display-drop-down .drop-down .drop-down-item:hover a,
.display-drop-down .drop-down .drop-down-item:hover i {
    color: #ffffff; !* 你可以换成自己想要的颜色 *!
}


.display-drop-down .drop-down .drop-down-item-hr {
    margin: 5px;
    padding: 2px;
    border-bottom: 1px solid rgb(179 179 179 / 20%);
}

!* 确保 a 标签也居中 *!
.display-drop-down .drop-down .drop-down-item a {
    display: block;    !* 将 a 标签设为块级元素，以便 text-align: center 生效 *!
    text-align: center; !* 水平居中 *!
}*/

.youquanyi-index-topad .swiper-button-next,
.youquanyi-index-topad .swiper-button-prev {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    color: #ff5722;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    margin: 0 20px;
}

.youquanyi-index-topad .swiper-button-next:after,
.youquanyi-index-topad .swiper-button-prev:after {
    font-size: 20px;
    font-weight: bold;
}

.youquanyi-index-topad .swiper-button-next:hover,
.youquanyi-index-topad .swiper-button-prev:hover {
    background-color: #ff5722;
    color: #ffffff;
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(255, 87, 34, 0.4);
}

.youquanyi-index-topad .swiper-button-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.youquanyi-index-topad .swiper-container {
    position: relative;
    padding: 0 20px;
}

/* 最新活动模块样式 - 现代简约风格 */
.youquanyi-index-activity {
    padding: 40px 0;
    background: #faf9f7;
    position: relative;
    background: linear-gradient(to top, #ffffff 53%, #faf9f7 90%);
}

/*.youquanyi-index-activity:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgb(232 182 124 / 50%), transparent);
}*/

.youquanyi-index-activity .box1 {
    max-width: 1420px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
}

.youquanyi-index-activity .box1 .title {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.youquanyi-index-activity .box1 .title .title-main:after {
    content: '';
    position: absolute;
    bottom: 31px;
    left: 50%;
    transform: translateX(-50%);
    width: 66px;
    height: 3px;
    /* background: #e87c7c; */
    background: linear-gradient(to right, #ff0101, #ffb8b8);
}

.youquanyi-index-activity .box1 .title-main {
    display: inline-flex;
    align-items: center;
    /* font-size: 40px; */
    color: #635d56;
    margin-bottom: 21px;
    font-size: 37px;
    font-weight: 600;
}

.youquanyi-index-activity .box1 .title-main i {
    font-size: 28px;
    margin-right: 10px;
    color: #e8a87c;
    transition: transform 0.3s ease;
}

.youquanyi-index-activity .box1 .title:hover .title-main i {
    transform: rotate(15deg);
}

.youquanyi-index-activity .box1 .title-sub {
    font-size: 14px;
    color: #8c7a63;
    letter-spacing: 1px;
}

/* 分隔线样式 */
.youquanyi-index-activity .box1 hr {
    border: none;
    height: 1px;
    background: linear-gradient(to right, transparent, #ffc5c5, transparent);
    margin: 0 auto 30px;
    width: 80%;
    max-width: 800px;
}

.youquanyi-index-activity .box1 .activity-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.youquanyi-index-activity .box1 .activity-item {
    position: relative;
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid #f0e9e1;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.youquanyi-index-activity .box1 .activity-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(232, 168, 124, 0.1);
    border-color: #e87c7c;
}

.youquanyi-index-activity .box1 .activity-item .activity-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
    background: #faf9f7;
}

.youquanyi-index-activity .box1 .activity-item .activity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}



.youquanyi-index-activity .box1 .activity-item .activity-content {
    padding: 10px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.youquanyi-index-activity .box1 .activity-item .activity-title {
    font-size: 15px;
    font-weight: 500;
    color: #5c4b37;
    margin-bottom: 6px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.youquanyi-index-activity .box1 .activity-item .activity-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.youquanyi-index-activity .box1 .activity-item .activity-tags .span {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
    color: #fff;
    background-color: #f5a623;
}

.youquanyi-index-activity .box1 .activity-item .activity-tags .span2 {
    font-size: 12px;
    color: #ffffff;
    padding: 4px 8px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(33, 150, 243, 0.2);
    min-width: 50px;
    max-width: 120px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
}

.youquanyi-index-activity .box1 .activity-item .activity-tags .span3 {
    font-size: 12px;
    color: #5e5e5e;
    padding: 4px 8px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgb(185 185 185 / 20%);
    min-width: 56px;
    max-width: 56px;
    width: 56px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
    background: #f8f8f8;
}

.youquanyi-index-activity .box1 .activity-item .activity-tags .type-card {
    color: #ffffff;
    background: linear-gradient(45deg, #ff9300, #ffa900);
    box-shadow: 0 2px 4px rgba(76, 175, 80, 0.2);
}

.youquanyi-index-activity .box1 .activity-item .activity-tags .type-order {
    color: #ffffff;
    background: linear-gradient(45deg, #21f360, #15b0c0);
    box-shadow: 0 2px 4px rgba(33, 150, 243, 0.2);
}

.youquanyi-index-activity .box1 .activity-item .activity-tags .type-product {
    color: #ffffff;
    background: linear-gradient(45deg, #b800ff, #E65100);
    box-shadow: 0 2px 4px rgba(255, 152, 0, 0.2);
}

.youquanyi-index-activity .box1 .activity-item .activity-tag.primary {
    background: #e8a87c;
}

.youquanyi-index-activity .box1 .activity-item .activity-tag.success {
    background: #a8c7b5;
}

.youquanyi-index-activity .box1 .activity-item .activity-tag.warning {
    background: #f0d5b5;
    color: #8c7a63;
}

.youquanyi-index-activity .box1 .activity-item .activity-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 6px;
    border-top: 1px dashed #f0e9e1;
}

.youquanyi-index-activity .box1 .activity-item .activity-price {
    font-size: 25px;
    font-weight: 600;
    color: #ff0000;
}

.youquanyi-index-activity .box1 .activity-item .activity-price span {
    font-size: 11px;
    margin-right: 1px;
}

.youquanyi-index-activity .box1 .activity-item .activity-btn {
    padding: 5px 14px;
    border-radius: 24px;
    background: #f7f7f7;
    color: #6a6a6a;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 3px;
    transition: all 0.3s ease;
}

.youquanyi-index-activity .box1 .activity-item .activity-btn i {
    font-size: 11px;
    transition: transform 0.3s ease;
}

.youquanyi-index-activity .box1 .activity-item:hover .activity-btn {
    background: #ff0000;
    color: #fff;
}

.youquanyi-index-activity .box1 .activity-item:hover .activity-btn i {
    transform: translateX(2px);
}

.youquanyi-index-activity .box1 .activity-item .activity-badge {
    position: absolute;
    top: 0px;
    right: 0px;
    padding: 4px 24px;
    background: rgb(255 145 0 / 90%);
    color: #ffffff;
    font-size: 13px;
    border-radius: 0px 0px 0px 32px;
    z-index: 1;
    backdrop-filter: blur(4px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* 查看更多按钮 */
.youquanyi-index-activity .box1 .view-more {
    display: block;
    text-align: center;
    margin: 30px auto 0;
    color: #7f7f7f;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 20px;
    width: fit-content;
    background: #d9d9d9;
    border-radius: 20px;
    box-shadow: 0 2px 6px rgba(232, 168, 124, 0.1);
}

.youquanyi-index-activity .box1 .view-more:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: #ffb8b8;
    transition: width 0.3s ease;
}

.youquanyi-index-activity .box1 .view-more:hover {
    color: #ffffff;
    background: #ff0000;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgb(232 124 124 / 20%);
}

.youquanyi-index-activity .box1 .view-more:hover:after {
    width: 80%;
}

/* 最新上架模块 - 横向滚动样式 */
.youquanyi-index-shop .box1 .productstyle-scroll {
    width: 1420px;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.youquanyi-index-shop .box1 .productstyle-scroll-container {
    display: flex;
    transition: transform 0.5s ease;
    width: max-content;
    position: relative;
    z-index: 1;
}

.youquanyi-index-shop .box1 .productstyle-scroll-container:hover {
    animation-play-state: paused;
}

.youquanyi-index-shop .box1 .productstyle-scroll-container.auto-scroll {
    animation: scroll-left 30s linear infinite;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-338px * 4 - 28px * 4));
    }
}

.youquanyi-index-shop .box1 .productstyle-scroll-item {
    position: relative;
    /* height: 347px; */
    margin: 0 7px;
    border-radius: 12px;
    background-color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    overflow: hidden;
}

.youquanyi-index-shop .box1 .productstyle-scroll-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: #e8e8e8;
}

.youquanyi-index-shop .box1 .productstyle-scroll-item .imgbox {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.youquanyi-index-shop .box1 .productstyle-scroll-item .imgbox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.youquanyi-index-shop .box1 .productstyle-scroll-item:hover .imgbox img {
    transform: scale(1.05);
}

.youquanyi-index-shop .box1 .productstyle-scroll-item .titlebox {
    margin: 0 auto;
    width: 100%;
    height: auto;
    /* min-height: 40px; */
    line-height: 20px;
    font-size: 14px;
    overflow: hidden;
    padding: 12px 10px 5px;
    color: #333;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

.youquanyi-index-shop .box1 .productstyle-scroll-item .titlebox a:link {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
}

.youquanyi-index-shop .box1 .productstyle-scroll-item .titlebox a:hover {
    color: #ff5722;
    text-decoration: none;
}

.youquanyi-index-shop .box1 .productstyle-scroll-item .infomsg {
    padding: 8px 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.youquanyi-index-shop .box1 .productstyle-scroll-item .infomsg .span {
    font-size: 11px;
    color: #666;
    padding: 3px 8px;
    border-radius: 4px;
    border: 1px solid #e0e0e0;
    background-color: #f9f9f9;
    transition: all 0.3s ease;
}

.youquanyi-index-shop .box1 .productstyle-scroll-item .infomsg .span2 {
    font-size: 11px;
    color: #FFFFFF;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 500;
}

.youquanyi-index-shop .box1 .productstyle-scroll-item .shopbuybox {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 10px 12px;
}

.youquanyi-index-shop .box1 .productstyle-scroll-item .shopbuybox .moneybox {
    font-size: 18px;
    color: #ff5722;
    font-weight: 600;
}

.youquanyi-index-shop .box1 .productstyle-scroll-item .shopbuybox .moneybox span {
    font-size: 14px;
}

.youquanyi-index-shop .box1 .productstyle-scroll-item .shopbuybox .buybox {
    font-size: 12px;
    color: #999;
    transition: all 0.3s ease;
}

.youquanyi-index-shop .box1 .productstyle-scroll-item:hover .shopbuybox .buybox {
    color: #ff5722;
}

/* 滚动控制按钮 */
.youquanyi-index-shop .box1 .scroll-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    pointer-events: auto;
}

.youquanyi-index-shop .box1 .scroll-control:hover {
    background-color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.youquanyi-index-shop .box1 .scroll-control.scroll-left {
    left: 10px;
}

.youquanyi-index-shop .box1 .scroll-control.scroll-right {
    right: 10px;
}

.youquanyi-index-shop .box1 .scroll-control i {
    font-size: 20px;
    color: #666;
}

.youquanyi-index-shop .box1 .scroll-control:hover i {
    color: #ff5722;
}

.new-products-section {
    position: relative;
    width: 100%;
    padding: 40px 0;
    background-color: #fff;
    margin-bottom: 20px;
    margin-top: 20px;
    background: linear-gradient(to top, #ffffff 53%, #fafbff 90%);
}

/*.new-products-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgb(124 179 232 / 50%), transparent);
}*/

.new-products-container {
    width: 1420px;
    margin: 0 auto;
    position: relative;
    padding: 0 27px;
    border-radius: 20px;
}

.new-products-container hr {
    border: none;
    height: 1px;
    background: linear-gradient(to right, transparent, #c5d9ff, transparent);
    margin: 0 auto 30px;
    width: 80%;
    max-width: 800px;
}

.new-products-title {
    text-align: center;
    margin-bottom: 20px;
}

.new-products-title .title-main {
    font-size: 37px;
    font-weight: 600;
    color: #656565;
    /* margin-bottom: 5px; */
    display: inline-block;
    position: relative;
    margin-bottom: 27px;
}

.new-products-title .title-main:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 66px;
    height: 3px;
    /* background: #e87c7c; */
    background: linear-gradient(to right, #017cff, #b8ffdc);
}
.new-products-title .title-sub {
    font-size: 14px;
    color: #999;
    margin-bottom: 30px;
}



/* 恢复滚动容器样式 */
.new-products-scroll {
    width: 100%;
    position: relative;
    overflow: hidden;
    /* margin-top: 10px; */
}

.new-products-scroll-container {
    display: flex;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
    margin-top: 10px;
}

.new-products-scroll-container.auto-scroll {
    animation: scroll-left 20s linear infinite;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* 恢复卡片样式 */
.new-products-item {
    flex: 0 0 227px;
    margin-right: 20px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 400px;
    box-shadow: 0 5px 23px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.new-products-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.new-products-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
}

.new-products-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.new-products-name {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.new-products-name a {
    color: #333;
    font-size: 16px;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
    height: 44px;
}

.new-products-tags {
    padding: 0 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.new-products-tag {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    color: #666;
    background: #f5f5f5;
    display: flex;
    align-items: center;
}

.new-products-tag-custom {
    color: #fff;
}

.new-products-footer {
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f5f5f5;
    margin-top: auto;
}

.new-products-price {
    color: #ff6b6b;
    font-size: 18px;
    font-weight: bold;
    display: flex;
    align-items: baseline;
}

.new-products-price span {
    font-size: 14px;
    margin-right: 2px;
}

.new-products-sales {
    color: #999;
    font-size: 12px;
    white-space: nowrap;
}

/* 恢复滚动按钮样式 */
.new-products-scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    transition: all 0.3s ease;
    pointer-events: auto;
}

.new-products-scroll-btn:hover {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.new-products-scroll-left {
    left: 10px;
}

.new-products-scroll-right {
    right: 10px;
}

.new-products-scroll-btn i {
    font-size: 20px;
    color: #666;
}

.new-products-scroll-btn:hover i {
    color: #ff6b6b;
}

/* 隐藏不再需要的样式 */
.new-products-header,
.new-products-notice,
.new-products-more {
    display: none;
}



img.lazy {
    opacity: 0;
    transition: opacity 0.5s ease;
}
img.lazy-loaded {
    opacity: 1;
}