body {
    background-color: #F9F9F9;
}
.swiper-pagination-bullet {
    width: 20px;
    /* 长条的宽度 */
    height: 4px;
    /* 长条的高度 */
    border-radius: 2px;
    /* 圆角 */
    background-color: #ccc;
    /* 默认颜色 */
    opacity: 1;
    margin: 0 4px;
    /* 长条之间的间距 */
    transition: width 0.3s ease;
    /* 添加过渡效果 */
}

.swiper-pagination-bullet-active {
    background-color: #007aff;
    /* 选中颜色 */
    width: 40px;
    /* 选中时长条的宽度 */
}

.top-tot-wrap {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    position: relative;
   margin-top: -534px;
   z-index: 1;
    
}

.look-more{
    /* font-weight: 600; */
	color:#999;
	position: relative;
	top:0px;
	width: 143px;
}
.other-icon{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 15px;
    width: 20px;
}
.other-icon span{
    background: #333;
    height: 2px;
    display: inline-block;
}
.other-icon span:nth-child(1){
    width: 90%;
}
.other-icon span:nth-child(2){
    width: 60%;
}
.other-icon span:nth-child(3){
    width: 40%;
}
.top-left-cate {
    flex-grow: 1;
    background-color: #fff;
    flex-wrap: wrap;
    justify-content: space-between;
    font-size: 14px;
    color: #666;
    position: relative;
    border-radius: 6px;
    border: 1px solid #fff;
    padding: 10px;
}
.top-cate-item-title{
    color: #666 ;
}
.top-cate-item-title:hover{
    background-image: radial-gradient(circle, #1165FF, #39DEFF);
        -webkit-background-clip: text;
        color: transparent;
        display: inline-block;
}

.top-cate-item-new:hover{
    color: #1165FF !important;
}
.top-cate-item-new{
    display: flex;
    align-items: center;
    flex-direction: column;
   gap: 10px;
   cursor: pointer;
   margin-left: 10px;
    /* margin-top: 10px; */
}
.top-cate-item:hover i,.top-cate-item:hover a .top-cate-item-title{
	background-image: radial-gradient(circle, #1165FF, #39DEFF);
	    -webkit-background-clip: text;
	    color: transparent;
	    display: inline-block;
}
.top-cate-list{
    flex-wrap: wrap;
    gap: 10px;
    position: absolute;
    top: -2px;
    left: calc(100%);
    width: 0px;
    height: 380px;
    padding: 10px 30px;
    background-color: #fff;
    z-index: 9;
    animation: expandWidth 0.25s ease-in-out forwards; /* 只展示一次，并保持最终状态 */
    display: none;
    border: 1px solid #F9CDB1;
    border-radius: 6px;
}
@keyframes expandWidth {
    0% {
        width: 0px; /* 动画开始时的宽度 */
    }
    100% {
        width: 860px; /* 动画结束时的宽度 */
    }
}
.top-cate-wrap {
    width: 282px;
	border-radius: 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: flex-start;
    gap: 10px;
    background-color: #fff;
}

.top-cate-item {
    width: 48%;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-top: 21px;
    color: #B7B7B7 !important;
}
.top-cate-item:nth-child(1),
.top-cate-item:nth-child(2){
    margin-top: 0;
}

.kanban {
    height: 24px;
    line-height: 24px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
}

.kanban:after {
    display: block;
    content: '';
    width: 0;
    height: 2px;
    background: #F76E1D;
    transition: all .2s ease;

}

.kanban:hover:after {
    width: 100%;
}

.kanban.kanban-active:after {
    width: 100%;
}

.kanban-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
   

}

.kanban-item {
    width: 210px;
    border: 2px solid #fff;
}

.kanban-item:hover {
    cursor: pointer;
    border: 2px solid #FD6A28;
}

.kanban-title {
    font-size: 16px;
    color: #333;
    margin-top: 10px;
}

.kanban-time {
    margin-top: 6px;
    font-size: 12px;
    color: #666;
    padding-bottom: 20px;
}

.news-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.news-list {
    display: flex;
    flex-grow: 1;
    height: 398px;
    flex-direction: column;
    gap: 20px;
}

.news-item {
    cursor: pointer;
}

.news-title {
    font-weight: 400;
    font-size: 16px;
    color: #333;
    width: 780px;
    /* 容器宽度 */
    white-space: nowrap;
    /* 禁止换行 */
    overflow: hidden;
    /* 隐藏超出内容 */
    text-overflow: ellipsis;
    /* 超出部分显示为省略号 */
}

.news-time {
    font-size: 12px;
    color: #666;
    margin-top: 16px;
}

.news-content {
    font-size: 12px;
    color: #666;
    width: 780px;
    /* 容器宽度 */
    display: -webkit-box;
    /* 使用弹性盒子布局 */
    -webkit-box-orient: vertical;
    /* 垂直排列 */
    -webkit-line-clamp: 2;
    /* 显示的行数 */
    overflow: hidden;
    /* 隐藏超出内容 */
    text-overflow: ellipsis;
    /* 超出部分显示为省略号 */
    margin-top: 16px;
}


.tabs {
margin:0px 0 15px;
    padding: 0px 40px;
    overflow: hidden;
    border-radius: 24px;
}

.tabs-header {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    /* Internet Explorer 10+ */
    scrollbar-width: none;
    /* 对于移动设备 */
	justify-content: center;
}

.tab-item {
    /* flex: 0 0 auto; */
   
    cursor: pointer;
    font-size: 14px;
    color: #333;
    display: flex;
    align-items: center;
    margin-right: 28px;
}
.tab-text{
    display: inline-block;
    max-width: 140px;
    height: 42px;
    line-height: 42px;
    position: relative;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    transition: all 0.3s ease;
    color: #666;
}
.tab-text::after{
    content: '';
    width: 0;
    height: 2px;
   background: linear-gradient( 270deg, #1165FF 0%, #39DEFF 100%);
    position: absolute;
    bottom: 2px;
    left: 0;
	right: 0;
	margin: auto;
    transition: all 0.3s ease;

}
.tab-text:hover::after{
   width: 20px;
}
.tab-active{
   /* color: #333 !important;
    font-weight: 600;
	background: linear-gradient(180deg, #1165FF 0%, #39DEFF 100%); */
	background-image: radial-gradient(circle, #1165FF,  #39DEFF);
	  -webkit-background-clip: text;
	  color: transparent;
	  display: inline-block;
}
.tab-active::after{
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 20px;
    height: 2px;
    background: linear-gradient( 270deg, #1165FF 0%, #39DEFF 100%);
}

.tabs-content>.tab-content {
    display: none;
}

.tabs-content>.tab-content.active {
    display: block;
}

.tabs-active {
    color: #F76E1D !important;
}

.first-col{
    font-weight: 600;
}
.tabs-content{
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    color: #333;
  background: #fff;
    width: 100%;
   height: 80px;
   align-items: center;
    border-bottom: 1px solid #eee;
}
.tabs-content-img-box{
    width: 100px;
    text-align: center;
    display: flex;
    justify-content: center;
 
    
}
.tabs-content-img{
    width: 60px;
    height: 60px;
    background-color: #f5f5f5;
    border-radius: 4px;
}
.tabs-content-title{
    width: 70px;
    text-align: center;
}
.tabs-content-title-box{
    width: 200px;
    text-align: center;
}
.tabs-content-address{
    width: 150px;
    text-align: center;
}
.tabs-content-supplier{
    width: 100px;
    text-align: center;
}
.tabs-content-time{
    width: 160px;
    text-align: center;
}
.tabs-content-operation{
    width: 100px;
    text-align: center;
}
.color-g{
    color: #1165FF;
    cursor: pointer;
	width: 81px;
	height: 28px;
	background: rgba(17,101,255,0.1);
	border-radius: 16px 16px 16px 16px;
	display: block;
	line-height: 28px;
}
.zixun-wrap{
    width: 1200px;
    overflow: hidden;
    display: flex;
    gap: 26px;
    align-items: center;
    margin-top: 20px;
}
.zixun-item{
    width: 280px;
    height: 150px;
    background-color: #f5f5f5;
    border-radius: 10px;
    position: relative;
}
.zixun-item-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.zixun-item-title{
    position: absolute;
    width: 100%;
    height: 30px;
    line-height: 30px;
    bottom: 0px;
    left: 0px;
    color: #fff;
    z-index: 1;
    font-size: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    background-color: rgba(0,0,0,0.5);
}

.item-goods{
border-radius:4px;
overflow:hidden;
background: #fff;
}
.item-goods:hover{
}
.shopinfo{
padding:0 6px;
padding-bottom:10px;
}
.fast-grid-content{
	    font-size: 14px;
	    overflow: hidden;
	    position: relative;
		width: 1200px;
    margin: 0 auto;
    height:465px;
    background-color: white;
    margin: 0px 5px 0 5px;
    border-radius: 3px;
    font-size: 14px;
    overflow: hidden;
    position: relative;
}
.fast-plate{
	margin-top: 20px;border-radius: 6px;background-color: #fff;padding-top: 0px;
	overflow: hidden;
}
.fase-p-title{
	display: flex;
	justify-content: space-between;
	align-items: center;padding:25px 0 5px;
}
.fast-p-top{
	display: flex;
	    align-items: center;
	    justify-content: space-between;
	    width: 100%;
}
.fast-p-top h3{
	color:#F76E1D;
}
.fast-p-top span{
	color: #666;
	    font-size: 18px;
	    position: relative;
	    top: -4px;
	    width: 100%;
	    margin: 0 auto;
	    left:-15px;
	    right: 0;
	    display: block;
	    text-align: center;
}
.fast-grid-table{
	display: flex;
	position: sticky;
	top: 0; /* 距离父元素顶部0px */
}
.bg-f2f5{
	background: #fff;
	border-bottom: 1px solid #e5e5e5;
}
.fast-cell{
	flex: 1;		
	text-align: center;
}
.lin-height-45{
	height:78px;
	line-height: 78px;
}
.scroll-content{
	
}
.s-c-item-list{
	display: flex;
	text-align: center;
	align-items: center;
	padding: 15px 0;
}
.s-c-item-list(5n+1) {
    margin-left: 0 !important;
	border-bottom: 1px solid 1px solid rgb(236 236 236 / 0%);
}
.fast-cell img{
	width: 53px;
	height: 53px;
	display: block;
	margin: auto;
}
.scroll-content {   
   
}
.topright-contents{
	background: #fff;
	width: 305px;
	border-radius: 24px;
	height:454px;
	overflow: auto;
	position: relative;
}
.topright-contents h3{
	align-items: center;
	height: 60px;
	line-height: 60px;
	margin-left: 10px;
	background: #fff;
	position: sticky;
	    top: 0;
	    left: 0;
	    right: 0;
	    z-index: 1;
}
.topright-contents h3 img{
	margin-left: 2px;
}
.rm-item{
	gap: 10px;
	margin:0 12px 12px;
	
}

.rm-item .img{
	width: 76px;
	height: 76px;
	align-items: center;	
	border-radius: 12px;
}
.rm-item .img img{
	width: 76px;
	height: 76px;
	display:block;
}
.rm-item-box{
	width: 170px;
	
}
.rm-item-box p{
	height: 20px;
	font-weight: bold;
	font-size: 12px;
	color: #161616;
	
}
.rm-item-box span{
	width: 80px;
	height: 18px;
	display:flex;
	border-radius: 20px 20px 20px 20px;
	font-size: 12px;
	color: #fff;
	display: block;
	text-align: center;
	
}
.rm-item-box .span1{	
	background: #C00000;
	color: #fff;
}
.rm-item-box .span2{
	color: #C00000;
	border: 1px solid #C00000;
}
.jinhuo{
	color: rgba(0,0,0,0.4);
	font-size: 12px;
}
.jinhuo i{
	color: #C00000;
	font-size: 12px;
	margin-left: 5px;
}
.jinhuo1{
	color: rgba(0,0,0,0.4);
	font-size: 12px;
}
.jinhuo1 .jh-1{
	display: block;
}
.jinhuo1 .jh-1 i{
	color: rgba(0,0,0,0.4);
	font-size: 12px;
	margin-left: 5px;
}
.jinhuo1 .jh-2{
	font-weight: normal;
	font-size: 12px;
}
.waaper-carousel{
	height: 454px;width: 535px;border-radius: 6px;background: #fff;
}
.nav-container {
           position: relative;
               margin-bottom: 10px;
               width: 535px;
               overflow-x: scroll;
               scrollbar-width: thin;
        }

        .category-nav {
            display: flex;
            scroll-behavior: smooth;
            padding: 10px 5px 0px;
            position: relative;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        .category-nav::-webkit-scrollbar {
            display: none;
        }

        .category-btn {
            flex: 0 0 auto;
            padding:10px 5px;
            margin: 0 8px;
            border-radius: 50px;
            font-size: 14px;
            color: #495057;
            cursor: pointer;
            white-space: nowrap;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .category-btn i {
            margin-right: 10px;
            font-size: 18px;
        }

        .category-btn:hover {
             color: #1165FF;
        }

        .category-btn.active {
            color: #4361ee;
        }
        .category-btn.active::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 20px;
            height: 2px;
            background: linear-gradient(270deg, #1165FF 0%, #39DEFF 100%);
            margin: 0 auto;
            right: 0;
        }
       .tab-active::after {
           content: '';
           position: absolute;
           bottom: 2px;
           left: 0;
           width: 20px;
           height: 2px;
           background: linear-gradient(270deg, #1165FF 0%, #39DEFF 100%);
       }


        .scroll-indicator {
            height: 4px;
            background-color: #e9ecef;
            border-radius: 2px;
            margin: 0 50px 30px;
            overflow: hidden;
        }

        .scroll-progress {
            height: 100%;
            width: 25%;
            background-color: #4361ee;
            border-radius: 2px;
            transition: transform 0.3s ease;
        }

        .content-area {
            border-radius: 12px;
            min-height: 300px;

        }

        .category-content {
            display: none;
        }

        .category-content.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }

        .category-content h2 {
            color: #2c3e50;
            margin-bottom: 20px;
            font-size: 2rem;
        }

        .category-content p {
            color: #5a6c7d;
            max-width: 700px;
            margin: 0 auto 25px;
            font-size: 1.1rem;
        }

        .products {
            display: flex;
            flex-wrap: wrap;
            gap: 3px;
          margin: 10px;
        }

        .product {
           width:113px;
          height: 109px;
          background: #FFFFFF;
          border-radius: 16px 16px 16px 16px;
          border: 6px solid #F9F9F9;
          display: flex;
          align-items: center;
        }

        .product img{
          width: 100%;
          height: auto;
          border-radius: 0px 0px 0px 0px;
          margin: 0 auto;
          display: block;
        }

        .product i {
            font-size: 36px;
            color: #4361ee;
            margin-bottom: 15px;
        }

        .product h3 {
            color: #2c3e50;
            margin-bottom: 10px;
        }
		.find-god-item{
			width:290px;
			height: 260px;
			border-radius: 16px 16px 16px 16px;
			margin-left: 13px;
			background: #FFFFFF;
		}
		.find-god-item:nth-child(4n+1){
			margin-left: 0;
		}
		.f-g-item{
			width:290px;
			height: 248px;
			border-radius: 16px 16px 16px 16px;
			margin-left: 12px;
			
		}
		.f-g-item .img{
			width: 270px;
			    height: 186px;
			    border-radius: 16px 16px 16px 16px;
			    overflow: hidden;
			    margin: 10px auto;
		}
		.f-g-item .img img{
			width: 270px;
			    display: block;
			    height: 186px;
			    object-fit: cover;
		}
		.f-g-item:nth-child(4n+1) {
		    margin-left: 0 !important;
		}
		.f-g-item p{
			margin: 10px 12px;
		}
		
		.swiper-slide a {
		    width: 176px;
		        display: block;
		        background: #fff;
		        margin-right: 20px;
		        border-radius: 10px;
		}