
	/* 公共头部 */
	
	.top_nav{
      display: flex;
      align-items: center;
      justify-content: center;
	   width: 100%px;
	   height: 30px;
	   background-color: #f2f2f2;
		
	}
	.top_nav .left {
      width: 200px;
      float: left;
      padding: 5px;
    }
   .top_nav .right {
      margin-left: 500px;
      padding: 5px;
    }
	.top_nav .right a {
		
   color: #333;                   /* 默认文字颜色 */
   text-decoration: none;         /* 去除下划线 */
   font-size: 12px;               /* 字体大小 */
   padding: 0 8px;                /* 左右内边距 */
   line-height: 40px;             /* 行高，与导航栏高度相同，确保垂直居中 */
   transition: color 0.2s ease;   /* 颜色过渡动画 */
   white-space: nowrap;           /* 防止文字换行 */   
    }
	
	
       .kenfeng_nav {
            width: 100%;
            height: 60px;
            background:#FF5722;
            box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.1); 
            /* 解释：
            0（水平偏移），10px（垂直向下偏移，让阴影主要在下方），
            15px（模糊半径），-5px（阴影扩散半径，这里负值表示向内收缩一点阴影范围），
            rgba(0,0,0,0.1)（阴影颜色及透明度）
            */
        }
		
		
   /* 新增：分类按钮容器 */
    .category-container {
      position: relative;
      display: inline-block;
    }
    /* 分类触发按钮 */
    .category-trigger {
      display: inline-block;
      padding: 0 20px;
      height: 60px;
      line-height: 60px;
	  width: 120px;
      background: #F08200;
      color: white;
      cursor: pointer;
    }
    /* 初始隐藏菜单 */
    .vip-nav {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      width: 158px;
      z-index: 999;
    }
    /* 鼠标悬停时显示 */
    .category-container:hover .vip-nav {
      display: block;
    }
    .vip-nav .layui-menu-body-title {
      padding: 0 15px;
      height: 42px;
      line-height: 42px;
      color: #000;
	  background: #fff;
    }
    .vip-nav .layui-menu-body-title:hover {
      color: #FFF !important;
      background: #F08200 !important;
    }
    .vip-nav .layui-icon {
      margin-right: 8px;
      color: #999;
    }
    .vip-nav .layui-badge {
      background: #f94d4d;
    }
    .vip-nav .layui-menu-item-divider {
      margin: 5px 0;
      background-color: #f5f5f5;
    }
    /* 二级菜单面板样式 */
    .vip-nav .layui-menu-body-panel {
      left: 145px;
      width: 600px;
      padding: 15px;
      background: #FFF;
    border: none !important;  /* 直接移除所有边框 */
    box-shadow: none !important;  /* 如果需要，也移除阴影 */
    }
    /* 分类标签组样式 */
    .category-tags {
      display: flex;
      flex-wrap: wrap;
    }
    .category-tags a {
      margin: 0 15px 10px 0;
      color: #666;
    }
    .category-tags a:hover {
      color: #f94d4d;
    }


		
		
		
   .header {
      display: flex;
	   width: 1000px;
	   height: 100px;
	   margin:auto;
      align-items: center;
      padding: 10px 20px;
    }
   .logo {
      display: flex;
      align-items: center;
      margin-right: 20px;
    }
   .logo img {
      height: 50px;
    }
   .service {
      display: flex;
      align-items: center;
      margin-left: auto;
    }
   .service-item {
      display: flex;
      align-items: center;
      margin-right: 10px;
	  color: #FF5722;
    }
   .service-item i {
      font-size: 20px;
      margin-right: 5px;
    }
   .search {
      display: flex;
      align-items: center;
      margin-left: 20px;
    }
   .search input {
      height: 36px;
      padding: 0 10px;
      border: 2px solid #FF5722;
      border-right: none;
      border-radius: 5px 0 0 5px;
      width: 300px;
    }
   .search button {
      height: 40px;
      padding: 0 15px;
      background-color: #FF5722;
      color: #fff;
      border: none;
      border-radius: 0 5px 5px 0;
      cursor: pointer;
    }
   .shopping-cart1 {
      display: flex;
      align-items: center;
      margin-left: 20px;

	  border-radius: 5px;
    }
   .shopping-cart1 i {
      font-size: 20px;
      margin-right: 5px;
    }
   .shopping-cart1 span {
      font-size: 14px;
    }
   .shopping-cart1 em {
      font-style: normal;
      background-color: #FF5722;
      color: #fff;
      border-radius: 50%;
      width: 20px;
      height: 20px;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-left: 5px;
    }
	
	/*首页流媒体*/
	.flow-demo {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
	  justify-content: center; 
    }

   .item {
      flex: 1 1 calc(25% - 10px);
      border: 1px solid #ddd;
      padding: 10px;
      box-sizing: border-box;
    }

   .item img {
      width: 100%;
      height: auto;
    }

   .title {
      font-size: 18px;
      margin: 10px auto;
	  text-align:center;
    }

   .discount {
      color: #FF5722;
      font-size: 18px;
      margin-bottom: 10px;
	  text-align:center;
    }

   .btn {
      display: block;
      padding: 10px;
      background-color: #FF5722;
      color: #fff;
      text-align: center;
      text-decoration: none;
      border: none;
      border-radius: 3px;
    }
	
   .item:hover {
   border: 1px solid #ff5722; /* 鼠标悬停时边框变为黄色 */   
}
.item:hover .btn {
   background-color: #fff; /* 鼠标悬停时按钮背景变为白色 */
   color: #ff5722; /* 鼠标悬停时按钮文字变为黄色 */
   border: 1px solid #ff5722; /* 可选：添加黄色边框 */   
}
	
	
	/* 侧边固定栏 */
       .fixed-sidebar {
            position: fixed;
            top: 0;
            right: 0;
            bottom: 0;
            width: 35px;
			background-color: #000;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }
		
	 .shopping-user {
      width: 35px;
      height: 100px;
	  margin-top:50px;
      background-color: #000;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      color: white;
    }
	.shopping-cart {
      width: 35px;
      height: 200px;
      background-color: #FF5722;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      color: white;
    }
   .layui-icon {
      font-size: 30px;
    }
   .count {
      font-size: 12px;
      background-color: white;
      color: #FF5722;
      border-radius: 50%;
      width: 20px;
      height: 20px;
      display: flex;
      justify-content: center;
      align-items: center;
    }
	
	
	
	/*
   * 基于复选框和单选框的卡片风格多选组件支付方式
   */
  /* 支付选择组件 */
  .layui-form-checkbox>.lay-skin-checkcard,
  .layui-form-radio>.lay-skin-checkcard {
    display: table;
    display: flex;
	margin-top: 20px;
    padding: 12px;
    white-space: normal;
    border-radius: 10px;
    border: 1px solid #e5e5e5;
    color: #000;
    background-color: #fff;
  }
  .layui-form-checkbox>.lay-skin-checkcard>*,
  .layui-form-radio>.lay-skin-checkcard>* {
    /* display: table-cell; */  /* IE */
    vertical-align: top;
  }
  /* 悬停 */
  .layui-form-checkbox:hover>.lay-skin-checkcard,
  .layui-form-radio:hover>.lay-skin-checkcard {
    border-color: #FF5722;
  }
  /* 选中 */
  .layui-form-checked>.lay-skin-checkcard,
  .layui-form-radioed[lay-skin="none"]>.lay-skin-checkcard {
    color: #000;
    border-color: #FF5722;
    background-color: rgb(225 87 34 / 10%) !important;
		
  }
  /* 禁用 */
  .layui-checkbox-disabled>.lay-skin-checkcard,
  .layui-radio-disabled>.lay-skin-checkcard {
    box-shadow: none;
    border-color: #e5e5e5 !important;
    background-color: #eee !important;
  }
  /* card 布局 */
  .lay-skin-checkcard-avatar {
    padding-right: 8px;
  }
  .lay-skin-checkcard-detail {
    overflow: hidden;
    width: 100%;
  }
  .lay-skin-checkcard-header {
    font-weight: 500;
    font-size: 16px;
    white-space: nowrap;
    margin-bottom: 4px;
  }
  .lay-skin-checkcard-description {
    font-size: 13px;
    color: #5f5f5f;
  }
  .layui-disabled  .lay-skin-checkcard-description{
    color: #c2c2c2! important;
  }
  
  /* 选中 dot-2 */
  .layui-form-checked>.lay-check-dot-2:before,
  .layui-form-radioed>.lay-check-dot-2:before {
    position: absolute;
    font-family: "layui-icon";
    content: "\e605";
    color: #fff;
    bottom: 4px;
    right: 3px;
    font-size: 9px;
    z-index: 12;
  }
  .layui-form-checked>.lay-check-dot-2:after,
  .layui-form-radioed>.lay-check-dot-2:after {
    position: absolute;
    content: "";
    bottom: 2px;
    right: 2px;
    width: 0;
    height: 0;
    display: inline-block;
    vertical-align: middle;
    border-width: 10px;
    border-style: dashed;
    border-color: transparent;
    border-top-left-radius: 6px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 6px;
    border-bottom-left-radius: 0px;
    border-right-color: #FF5722;
    border-right-style: solid;
    border-bottom-color: #FF5722;
    border-bottom-style: solid;
    overflow: hidden;
  }
  .layui-checkbox-disabled>.lay-check-dot-2:before,
  .layui-radio-disabled>.lay-check-dot-2:before {
    color: #eee !important;
  }
  .layui-checkbox-disabled>.lay-check-dot-2:after,
  .layui-radio-disabled>.lay-check-dot-2:after {
    border-bottom-color: #d2d2d2;
    border-right-color: #d2d2d2;
  }
  /****结算订单****/
  .custom-header {
            background-color: #ffffff;
            border-bottom: 1px solid #e6e6e6;
			border-top: 1px solid #e6e6e6;
			border-right: 1px solid #e6e6e6;
			border-left: 4px solid #FF5722;
            padding: 10px 10px;
        }
        .custom-title {
            font-size: 16px;
            color: #000000;
        }
        .custom-link {
            color: #1E9FFF;
            margin-left: 20px;
            cursor: pointer;
        }
        .address-card {
            margin-bottom: 15px;
            border: 1px solid #e6e6e6;
            border-radius: 2px;
            padding: 15px;
            background-color: #ffffff;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        }
		

		
		
        .address-card .name {
            font-weight: bold;
            color: #000000;
            margin-right: 15px;
        }
        .address-card .phone {
            color: #666666;
            margin: 5px 0;
        }
        .address-card .address {
            color: #000000;
            margin-top: 5px;
        }
        .address-card .operations {
            margin-top: 10px;
        }
        .address-card .operations span {
            color: #1E9FFF;
            margin-right: 10px;
            cursor: pointer;
        }
        .address-card .divider {
            height: 1px;
            margin: 10px 0;
            background-image: linear-gradient(to right, #FF5722, #1E9FFF);
            background-repeat: repeat-x;
            background-size: 4px 1px;
        }
        .add-address-box {
            height: 200px;
            border: 1px dashed #e6e6e6;
            background-color: #f8f8f8;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            cursor: pointer;
        }
        .add-address-box .icon {
            font-size: 40px;
            color: #666666;
            margin-bottom: 10px;
        }
        .add-address-box .text {
            color: #666666;
        }
        .address-row {
            display: flex;
            flex-wrap: wrap;
            margin: 0 -10px;
        }
        .address-col {
            padding: 0 10px;
            width: 33.33%;
            box-sizing: border-box;
        }

.address-card {
    margin-bottom: 15px;
    border: 1px solid #e6e6e6;
    border-radius: 6px;
    padding: 15px;
    background-color: #ffffff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.address-card:hover {
    content:"\e605";
    background-color: #F0F0F0;
    border-color: #FF5722;
	border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    transform: translateY(-2px);

}

.address-card.active {
    background-color: #F0F0F0;
    border-color: #FF5722;
	border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    transform: translateY(-2px);
	position: relative;

}
  
.address-card.active:after {
	font-family: "layui-icon";
    content: '\e605';
	color:#fff;
	font-size: 9px;
    z-index: 12;
    position: absolute;
    right: 3px;
    bottom: 3px;
    width: 0;
    height: 0;
    border-width: 15px;
    border-style: dashed;
    border-color: transparent;
    border-top-left-radius: 6px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 6px;
    border-bottom-left-radius: 0px;
    border-right-color: #FF5722;
    border-right-style: solid;
    border-bottom-color: #FF5722;
    border-bottom-style: solid;
    box-shadow: 1px 1px 2px rgba(0,0,0,0.15);
    pointer-events: none;

}	
		
	/* 公共底部 */   
.footer-icon {background:#000; width:100%;text-align:center}
.footer-container {
   width: 100%;
   background-color: #f2f2f2;
   padding: 30px 0;   
}   
.footer-list {
   max-width: 1000px;
   margin: 0 auto;
   display: flex;
   justify-content: space-between;   
}   
.footer-list ul {
   flex: 1;
   margin: 0 15px;
   border-right: 1px solid #e6e6e6;
   padding: 0 20px;   
}   
.footer-list ul:last-child {
   border-right: none;   
}   
.footer-list li {
   margin-bottom: 15px;
   line-height: 1.8;   
}   
.footer-list li:first-child {
   font-weight: bold;
   color: #333;
   font-size: 16px;
   margin-bottom: 20px;   
}   
.footer-list a {
   color: #666;
   transition: all 0.3s;   
}   
.footer-list a:hover {
   color: #FF5722;
   padding-left: 5px;   
}

 .footer-nav-bar {
   width:1000px;
   margin:auto;
   margin-top:40px;
   background-color: #FF5722;
   padding: 10px;
   text-align:center;
   border-radius: 4px;   
}
   
.footer-nav-bar a:not(:last-child)::after {
   content: "|";
   margin-left: 10px;
   color: white;   
}
   
.footer-nav-bar a {
   color: white;
   text-decoration: none;
   margin-right: 10px;   
}
  
/* 响应式调整 */   
@media screen and (max-width: 768px) {
   .footer-list {
    flex-wrap: wrap;
   }
   .footer-list ul {
    flex: 0 0 50%;
    border-right: none;
    border-bottom: 1px solid #e6e6e6;
    margin-bottom: 20px;
    padding-bottom: 20px;
   }   
} 

