/* ================================================
   index_home.css - 首页专属样式
   从 youquanyi_style.css 分离，仅供首页使用
   ================================================ */


/* 轮播广告 */
.youquanyi-index-topad {
    margin: 0;
    width: 100%;
    overflow: hidden;
    padding: 20px 0 0px;
    position: relative;
    /* background-color: #f9f9f9; */
}

.youquanyi-index-topad .box1 {
    margin: auto;
    width: 1360px;
    overflow: hidden;
    border-radius: 8px;
}

.youquanyi-index-topad .carousel-item {
    position: relative;
    height: 500px;
    overflow: hidden;
}

/* 修改未选中的圆点颜色 */
.youquanyi-index-topad .box1 .swiper .swiper-pagination-bullet {
    background-color: #FFFFFF;
    opacity: 1;
}

/* 修改选中的圆点颜色 */
.youquanyi-index-topad .box1 .swiper .swiper-pagination-bullet-active {
    background-color: #f67206;
}

/* 图片容器，带遮罩切片动画效果 */
.youquanyi-index-topad .carousel-image-mask {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    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: 416px;
    left: 0;
    width: 1360px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 22px 0px 1px 35px;
    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: 24px;
    color: #ffffff;
    margin-bottom: 30px;
    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: -13px;
    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;

    right: 36px;
    z-index: 20;
    max-width: 90%;
}

.youquanyi-index-topad .carousel-price-box {
    display: flex;
    align-items: center;
    margin-bottom: 34px;
    transform: translateY(0);
    transition: all 0.5s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.youquanyi-index-topad .carousel-price-label {
    font-weight: 600;
    color: #ffffff;
    padding: 6px 15px;
    border-radius: 24px;
    margin-right: 18px;
    background: rgba(255, 87, 34, 0.6);
}

.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, rgba(255, 87, 34, 0.9), rgba(255, 152, 0, 0.8));
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 24px;
    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);
    border-radius: 45px;
}

.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-class{
    margin: 0;
    width: 100%;
    overflow: hidden;
    background-color: #f9f9f9;
    position: relative;
    padding-top: 19px;
}
/*.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:1360px;
    overflow: hidden;
    border-radius:10px;
}

.youquanyi-index-class .box1 .title{
    margin: auto 0;
    overflow: hidden;
    font-size: 30px;
    color: #7a7a7a;
    margin-bottom: 15px;
    padding: 20px;
    border-bottom: 1px solid #e8e8e8;
    position: relative;
    text-align: center;
    font-weight: 500;
}

.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: 690px;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #8ab4d3, #c5d9e8);
    border-radius: 3px;
}

/*首页分类菜单列表*/
.youquanyi-index-class .box1 .indexmenu-class{
    overflow:hidden;
    padding: 25px 0;
    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 10px;
    position: relative;
    cursor: pointer;
    color: #666;
    margin: 8px;
    background-color: #ffffff;
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); */
    border-radius: 8px;
    transition: all 0.3s ease;
    /* border: 1px solid #f0f0f0; */
    width: calc(9.7% - -2px);
    /* min-width: 145px; */
}

.youquanyi-index-class .box1 .indexmenu-class .indexmenu-box:hover{
    /* box-shadow: 0 5px 15px rgb(0 0 0 / 20%); */
}

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

.youquanyi-index-class .box1 .indexmenu-box .indexmenu-box-img img{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    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: 15px;
    font-weight:600;
    color: #666;
    transition: all 0.3s ease;
}

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

/*产品*/
.youquanyi-index-shop{
    margin: 0;
    width:100%;
    overflow: hidden;
    padding-top: 50px;
    padding-bottom: 50px;
    /* background: linear-gradient(to top, #ffffff 53%, #ffffff 90%); */
    background-color: #ffffff;
    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:1360px;
    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: 324px;
    /* min-width: 305px; */
    /* height: 347px; */
    margin: 7px;
    border-radius: 8px;
    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: 91%;
    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;
    padding: 20px;
}

.youquanyi-index-shop .box1 .productstyle .shoptitlebox-big .imgbox img {
    width: 89%;
    /* 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: 191px;
    /* min-width: 199px; */
    /* 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;
    padding: 10px;
}

.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: 6px 0 0px 0;
    color: #333;
    flex-grow: 0.5;
    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: 3px 0px;
    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 0px 0px;
    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;
}

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

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

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

.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: 687px;
    width: 60px;
    text-align: center;
    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);
    /* box-shadow: 0 5px 23px rgba(0, 0, 0, 0.1); */
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    /* border: 1px solid #f0f0f0; */
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.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;
    border-radius: 20px;
}

.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-color: #ffffff;
}

.youquanyi-index-priceaction .box1 {
    margin: auto;
    width: 1360px;
    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);
}



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

.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: 30px 0 30px 0;
    background: #fbfbfb;
    position: relative;
}



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

.youquanyi-index-activity .box1 .title {
    text-align: center;
    margin-bottom: 18px;
    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: linear-gradient(to right, #ff0101, #ffb8b8);
}

.youquanyi-index-activity .box1 .title-main {
    display: inline-flex;
    align-items: center;
    /* font-size: 40px; */
    color: #7a7a7a;
    margin-bottom: 21px;
    font-size: 30px;
    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, #eeeeee, transparent);
    margin: 0 auto 30px;
    width: 39%;
    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: 8px;
    overflow: hidden;
    /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    /* cursor: pointer; */
    /* border: 1px solid #f0e9e1; */
    /* height: 100%; */
    display: flex;
    flex-direction: column;
    padding: 18px;
}

.youquanyi-index-activity .box1 .activity-item:hover {
    /* transform: translateY(-3px); */
    /* box-shadow: 0 4px 12px rgba(232, 168, 124, 0.1); */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    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: 7px 0 0 0;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.youquanyi-index-activity .box1 .activity-item .activity-title {
    font-size: 15px;
    /* font-weight: 500; */
    color: #6d6d6d;
    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 7px;
    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: 3px;
    padding-bottom: 3px;
    /* border-top: 1px dashed #f0e9e1; */
}

.youquanyi-index-activity .box1 .activity-item .activity-price {
    font-size: 22px;
    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: 10px;
    right: 10px;
    padding: 4px 24px;
    background: rgb(13 13 13 / 36%);
    color: #ffffff;
    font-size: 13px;
    border-radius: 0px 0px 0px 32px;
    z-index: 1;
    backdrop-filter: blur(3px);
    /* 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: 1360px;
    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;


}

/*.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: 1360px;
    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, #f2f2f2, transparent);
    margin: 0 auto 30px;
    width: 32%;
    max-width: 800px;
}

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

.new-products-title .title-main {
    font-size: 30px;
    font-weight: 600;
    color: #7a7a7a;
    /* 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: 15px; */
}



/* 恢复滚动容器样式 */
.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: 309px;
    box-shadow: 0 5px 23px rgba(0, 0, 0, 0.1);
    margin-bottom: 38px;
    padding: 10px;
}

.new-products-item:hover {

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.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: 2px 8px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.new-products-name a {
    color: #333333;
    font-size: 14px;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    /* line-height: 1.4; */
    height: 40px;
}

.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: 8px 10px;
    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;
}
/*卡片效果*/
.cardbox-wrapper {
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    padding: 35px 0;
    margin-top: 20px;
}

.cardbox-wrapper .cardbox-container {
    width: 1360px;
    margin: 0 auto;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 20px;
}

.cardbox-wrapper .cardbox-card {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    width: 320px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    position: relative;
    transition: all 0.25s ease;
    cursor: pointer;
}

.cardbox-wrapper .cardbox-card:hover {
    box-shadow: 0 8px 20px rgba(157, 157, 157, 0.15);
}

.cardbox-wrapper .cardbox-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-right: 10px;
    flex-shrink: 0;
    transition: background-color 0.3s ease;
}

.cardbox-wrapper .cardbox-icon i {
    font-size: 20px;
}

.cardbox-wrapper .cardbox-icon-pink { background: #d94f6b; }
.cardbox-wrapper .cardbox-icon-purple { background: #7b6edf; }
.cardbox-wrapper .cardbox-icon-red { background: #ff7043; }
.cardbox-wrapper .cardbox-icon-teal { background: #2a9d8f; }

.cardbox-wrapper .cardbox-card:hover .cardbox-icon-pink { background: #b93b54; }
.cardbox-wrapper .cardbox-card:hover .cardbox-icon-purple { background: #6558c7; }
.cardbox-wrapper .cardbox-card:hover .cardbox-icon-red { background: #e85a2a; }
.cardbox-wrapper .cardbox-card:hover .cardbox-icon-teal { background: #1f776f; }

.cardbox-wrapper .cardbox-content {
    flex: 1;
}

.cardbox-wrapper .cardbox-title {
    font-size: 16px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 6px;
}

.cardbox-wrapper .cardbox-tag {
    font-size: 12px;
    background: #ff7e29;
    color: #fff;
    padding: 2px 6px;
    border-radius: 10px;
    transition: background-color 0.3s ease;
}

.cardbox-wrapper .cardbox-tag-blue { background: #2d9fff; }

.cardbox-wrapper .cardbox-card:hover .cardbox-tag { background: #ff6a00; }
.cardbox-wrapper .cardbox-card:hover .cardbox-tag-blue { background: #1d8de0; }

.cardbox-wrapper .cardbox-desc {
    color: #888;
    font-size: 13px;
    margin-top: 4px;
}


/* 模块外框 */
.advantage-wrapper {
    width: 1360px;
    margin: 0 auto;
    padding: 40px 22px;
    box-sizing: border-box;
}

/* 模块标题 */
.advantage-wrapper .advantage-header {
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

/* 内部卡片容器 */
.advantage-wrapper .advantage-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    font-family: "PingFang SC", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* 卡片 */
.advantage-wrapper .advantage-section .advantage-card {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* 图标 */
.advantage-wrapper .advantage-section .advantage-card .advantage-icon {
    font-size: 43px;
    margin-bottom: 10px;
}
.advantage-wrapper .advantage-section .advantage-card .icon-green { color: #36ab56; }
.advantage-wrapper .advantage-section .advantage-card .icon-blue  { color: #3f8efc; }
.advantage-wrapper .advantage-section .advantage-card .icon-orange{ color: #ff914d; }
.advantage-wrapper .advantage-section .advantage-card .icon-purple{ color: #8c6dfc; }
.advantage-wrapper .advantage-section .advantage-card .icon-teal  { color: #00c9a7; }
.advantage-wrapper .advantage-section .advantage-card .icon-red   { color: #ff5e5e; }

/* 标题 */
.advantage-wrapper .advantage-section .advantage-card .advantage-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 16px;
    text-align: center;
    color: #333;
}

/* 文案 */
.advantage-wrapper .advantage-section .advantage-card .advantage-text {
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
    max-width: 95%;
    color: #919191;
}

.myapp-footer-register {
    width: 100%;

    margin: 0px auto;
    height: 160px;
    min-height: 160px;
    padding-top: 34px;
    background: linear-gradient(90deg, #ffffff 0%, #f9f9f9 40%, #f9f9f9 60%, #ffffff 100%);
    color: #151515;
    text-align: center;
    position: relative;
    overflow: hidden;
}


/* 模块内部动画效果 */
.myapp-footer-register::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgb(205 205 205 / 10%);
    transform: rotate(45deg);
    animation: myapp-moveGradient 2s linear infinite;
    pointer-events: none;
}

@keyframes myapp-moveGradient {
    0% { transform: rotate(45deg) translateX(0) translateY(0); }
    50% { transform: rotate(45deg) translateX(50px) translateY(50px); }
    100% { transform: rotate(45deg) translateX(0) translateY(0); }
}

/* 提示文字样式 */
.myapp-footer-register-title {
    font-size: 27px;
    margin-bottom: 6px;
    font-weight: 600;
}

.myapp-footer-register-desc {
    font-size: 16px;
    margin-bottom: 10px;
    color: #9f9f9f;
}

/* 注册按钮样式 */
.myapp-footer-register-btn {
    display: inline-block;
    padding: 11px 40px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(45deg, #ff512f, #dd2476);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
}

.myapp-footer-register-btn:hover {
    /* transform: scale(.1); */
    box-shadow: 0 10px 14px rgba(255, 81, 47, 0.5);
    color: #ffffff;
}

/* ====== 推荐/热销 Tab 切换 ====== */
.yqy-shop-tab-wrap .box1 {
    position: relative;
}
.yqy-tab-header {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 20px;
}
.yqy-tab-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 22px;
    border-radius: 24px;
    font-size: 16px;
    font-weight: bold;
    color: #999;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    user-select: none;
}
.yqy-tab-btn i {
    font-size: 20px;
    color: inherit;
}
.yqy-tab-btn.active {
    color: #ff6b6b;
    border-color: #ff6b6b;
    background: #fff5f5;
}
.yqy-tab-btn:not(.active):hover {
    color: #666;
    background: #f5f5f5;
}
.yqy-tab-progress {
    flex: 1;
    height: 3px;
    background: #f0f0f0;
    border-radius: 2px;
    margin-left: 12px;
    overflow: hidden;
}
.yqy-tab-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #ff6b6b, #ffb347);
    border-radius: 2px;
    transition: width linear;
}
.yqy-tab-panel {
    display: none !important;
    animation: yqyFadeIn 0.35s ease;
}
.yqy-tab-panel.active {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: flex-start;
}
@keyframes yqyFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ====== Tab ====== */
.yqy-shop-tab-wrap .box1 { position: relative; }
.yqy-tab-header { display: flex; align-items: center; gap: 6px; margin-bottom: 20px; }
.yqy-tab-btn { display: flex; align-items: center; gap: 8px; padding: 8px 22px; border-radius: 24px; font-size: 16px; font-weight: bold; color: #999; cursor: pointer; transition: all 0.3s ease; border: 2px solid transparent; user-select: none; }
.yqy-tab-btn i { font-size: 20px; color: inherit; }
.yqy-tab-btn.active { color: #ff6b6b; border-color: #ff6b6b; background: #fff5f5; }
.yqy-tab-btn:not(.active):hover { color: #666; background: #f5f5f5; }
.yqy-tab-progress { flex: 1; height: 3px; background: #f0f0f0; border-radius: 2px; margin-left: 12px; overflow: hidden; }
.yqy-tab-progress-bar { height: 100%; width: 0%; background: linear-gradient(90deg, #ff6b6b, #ffb347); border-radius: 2px; transition: width linear; }
.yqy-tab-panel { display: none !important; animation: yqyFadeIn 0.35s ease; }
.yqy-tab-panel.active { display: flex !important; flex-wrap: wrap; justify-content: flex-start; }
@keyframes yqyFadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* ====== Tab ====== */
.yqy-tab-header{display:flex;align-items:center;gap:6px;margin-bottom:20px;}
.yqy-tab-btn{display:flex;align-items:center;gap:8px;padding:8px 22px;border-radius:24px;font-size:16px;font-weight:bold;color:#999;cursor:pointer;transition:all 0.3s ease;border:2px solid transparent;user-select:none;}
.yqy-tab-btn i{font-size:20px;color:inherit;}
.yqy-tab-btn.active{color:#ff6b6b;border-color:#ff6b6b;background:#fff5f5;}
.yqy-tab-btn:not(.active):hover{color:#666;background:#f5f5f5;}
.yqy-tab-progress{flex:1;height:3px;background:#f0f0f0;border-radius:2px;margin-left:12px;overflow:hidden;}
.yqy-tab-progress-bar{height:100%;width:0%;background:linear-gradient(90deg,#ff6b6b,#ffb347);border-radius:2px;transition:width linear;}
.yqy-tab-panel{display:none !important;}
.yqy-tab-panel.active{display:flex !important;flex-wrap:wrap;justify-content:flex-start;}
@keyframes yqyFadeIn{from{opacity:0;transform:translateY(8px);}to{opacity:1;transform:translateY(0);}}