/* 基础配置 */
@charset "UTF-8";
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: '微软雅黑', sans-serif;
}
:root {
  /* 基本色系 */
  --brand-primary: #a8001f;         /* k8凯发(中国)天生赢家品牌主色 */
 --brand-secondary: #0066b3;       /* k8凯发(中国)天生赢家品牌次色 */
 --text-primary: #333;
 --text-secondary: #666;
 --border-color: #eaeaea;
 --background-light: #f8f9fa;
 --state-success: #28a745;         /* 成功状态 */
 --state-warning: #ffc107;         /* 警告状态 */
 --state-danger: #dc3545;          /* 错误状态 */
 --interactive-hover: #c40024;     /* 主色悬停 */
 --interactive-active: #8a0019;    /* 主色点击态 */
 --link-visited: #551a8b;          /* 已访问链接 */
 --base-font-size: 16px;
}
body {
	color: var(--text-primary);
	line-height: 1.6;
	background-color: #fff;
}
a {
	text-decoration: none;
	color: inherit;
	transition: color 0.3s;
}
a:hover {
	color: var(--interactive-hover);
}
aside span a:hover, footer .foot_nav .big a:hover, .baojia a:hover, .tel a:hover {
	color: var(--brand-secondary);
}
/* ========== 导航栏优化 ========== */
.navbar {
 max-width: 1920px;
  margin: 0 auto;
  padding: 1rem 6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar-outer { 
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	background: #fff;
}
.navbar-outer.scrolled {
    box-shadow: 0 2px 10px rgba(0,0,0,0.2) !important;
}
.logo {   
    width: clamp(150px, 12vw, 200px);
    height: auto; /* 保持宽高比 */
    transition: width 0.3s ease; /* 添加平滑过渡效果 */
	object-fit: contain; /* 保持图片比例 */
	display: block; /* 消除图片下方的间隙 */
}
#nav-links {
	display: flex;
	gap: 1rem;
	font-size: clamp(0.9rem, 1.1vw + 2px, 1.5rem);
}
#nav-links a, h3 a{
	text-decoration: none;
	color: var(--text-primary);
	font-weight: 500;
	transition: color 0.3s;
	border-radius: 4px;
	position: relative;
    display: inline-flex;
}
#nav-links a:hover ,  a:hover h3{
	color: var(--brand-primary);	 
} 

#nav-links a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand-primary);
  transition: width 0.3s ease;
}

#nav-links a:hover::after {
  width: 100%;
}

.hamburger {
	background: none;
	display: none;
	cursor: pointer;
	border: none;
	padding: 0;
	font-size: 1.5rem;
	color: var(--brand-primary);
}
 .phone {
      color: #0066b3;
      font-weight: 500;
      height: 100%;
      padding-left: 1rem;
      text-align: center;
      border-left: 1px solid #918f8f;
  }
  .dropdown-menu {
      position: absolute;
      top: 70%;
      left: 0;
      background-color: white;
      border: 1px solid #eee;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      align-items: center;
      display: none;
      gap: 3rem;
      justify-content: center;
      width: 100%;
      padding: 0.8rem 5rem;
      z-index: 100;
  }
  .dropdown-menu.active {
      display: flex;
  }
  /* 只在PC端应用悬停效果 */
  @media (min-width: 769px) {
      .dropdown:hover .dropdown-menu { display: flex; }
  }
  @media (max-width: 768px) {
      .dropdown {      position: relative;    }
      .phone {      display: none;      }
      .dropdown-menu {
          position: static;
          align-items: center;
          display: none;
          gap: 1rem;
          flex-direction: column;
          justify-content: center;
          padding: 1rem 1rem 0rem 1rem;
          align-items: flex-start;
          border: none;
          box-shadow: none;
      }
  }
/* ========== 横幅区域优化 ========== */
.banner-container {	
	position: relative;
	overflow: hidden;
	aspect-ratio: 16/5;  
}
/* banner距离顶部的高度 */
.navbar-outer + .banner-container {
    margin-top: calc(1rem * 2 + 36px); /* 根据导航栏的padding和logo高度计算 */
}
@media (max-width: 1200px) {
    .navbar-outer + .banner-container {
        margin-top: calc(1rem * 2 + clamp(150px, 12vw, 200px) * 0.2);
    }
}
@media (max-width: 768px) {
    .navbar-outer + .banner-container {
        margin-top: calc(0.5rem * 2 + clamp(100px, 25vw, 150px) * 0.3);
    }
}
.banner {
	display: none;
	transition: opacity 0.5s ease;
	width: 100%;
	opacity: 0;
	width: 100%;
   height: 100%;
   object-fit: cover;
}
.banner.active {
	display: block;
	opacity: 1;
}
.banner-dots {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
}
.dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.5);
	cursor: pointer;
	transition: background 0.3s ease;
}
.dot.active {
	background: #fff;
}
/* ========== 面包屑导航优化 ========== */
.bread {
	padding: 0.5rem 6rem;
	background-color: var(--background-light);
}
.bread p.dqwz {
	font-size: 0.9rem;
	line-height: 1.5rem;
	color: var(--text-secondary);
	padding-left: 20px;
	background: url(/images/home.png) no-repeat left center;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.bread p.dqwz a {
	color: var(--text-primary);
	transition: color 0.3s;
}
.bread p.dqwz a:hover {
	color: var(--brand-primary);
}
/* 内容区块************************************************************************************************** */
main {
	padding: 0rem 6rem 1rem 6rem;
	overflow: hidden;
	height: auto;
}
h1 {
  font-size: 2.8rem;
  text-align: center;
  margin: 30px 0 10px; 
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: relative; 
}
/* 中部共用   ***************************************************/
 .section-header {
	text-align: center;
	padding: 2rem 1rem;
	position: relative;
} 
h2 {
	font-size: 2.5rem;	
	letter-spacing: 1.5px;
	margin-bottom: 0.5rem;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
h2.blue {
	color: #083e8d;
}
h2.white {
	color: #fff;
}
h2:hover, .more-blue:hover{
	transform: translateY(-3px);
}
h3{
	padding-bottom:   1rem;
	font-size: 1.6rem; 
	overflow: hidden; 
	white-space: nowrap;  
	text-overflow: ellipsis;
}
h3.yeji{
	padding-bottom:   0rem;	
}  
.section-sub {
	font-size: 1.2rem;
	color: #fb002e;
}
p.more-blue {
	display: block;
	position: absolute;
	right: 5%;
	top: 60%;
	font-size: 18px;	
}
p.more-blue a {
	color: #083E8D;
}
p.more-blue a span {
	display: inline-block;
	width: 44px;
	height: 44px;
	line-height: 40px;
	text-align: center;
	color: #083e8d;
	border-radius: 50%;
	font-weight: bold;
	font-size: 20px;
	margin-left: 10px;
	box-sizing: border-box;
	border: 1px solid #083e8d;
    transition: all .6s;
}
p.more-blue a:hover span, p.more-white a:hover span {
	border: 1px solid #a8001f;
	color: #a8001f;
}
p.more-blue a:hover , p.more-white a:hover  { 
	color: #a8001f;
}  
p.more-white {
	display: block;
	position: absolute;
	right: 5%;
	top: 50%;
	font-size: 18px;
	color: #fff;
}
p.more-white a {
	color: #fff;
}
p.more-white a span {
	display: inline-block;
	width: 44px;
	height: 44px;
	line-height: 40px;
	text-align: center;
	color: #fff;
	border-radius: 50%;
	font-weight: bold;
	font-size: 20px;
	margin-left: 10px;
	box-sizing: border-box;
	border: 1px solid #fff;
 transition: all .6s;
}
p.more-white a:hover span {
	border: 1px solid #a8001f;
	color: #a8001f;
}
p.more-white a:hover { 
	color: #a8001f;
}

.details {
	position: relative; 
	float: right;
	bottom: 10px;	
	font-size: clamp(1rem, 1.25vw + 2px, 1.125rem);
	font-weight: bold;
	line-height: 3rem;
}
 
 
/* 商用  冷水机组 */ 
.commercial-multi, .water-chiller {
	background: #083e8d;
	margin-top: 4rem;
	padding-bottom: 4rem;
}
.commercial-multi img, .water-chiller img {
	width: 90%;
	max-width: 300px;
	height: auto;
	border-radius: 8px;	
	margin-top: 1rem;
	object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
	transition: box-shadow 0.3s ease;
}
.card-columns {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 3rem;
	padding: 0 5rem;
}
.columns-product {
	background: white;
	border-radius: 15px;
	overflow: hidden;
	transition: transform 0.3s;
	position: relative;
	text-align: center
}
.columns-product:hover {
	transform: translateY(-5px);
}
.card-body {
	padding: 1.5rem;
	color: var(--text-primary);
}
p.description {	
	min-height: calc(1.5em * 5);
	text-align: left;
	display: -webkit-box;
	-webkit-line-clamp: 5;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 1.5;
	margin-bottom: 10px;
	color: inherit;
	font-size: clamp(1rem, 1.25vw + 2px, 1.125rem);
}
p.description  a:hover{	
	color: inherit;
}
/* 家用机布局 热泵*/
 .home-multi, .heat-pumps {
	margin-top: 4rem;
	padding-bottom: 1rem;
	background: linear-gradient(to bottom, #88a6d3 0%, #ced7e5 100%);	
}
.card-row {
	margin: 0rem 5rem 1rem 5rem;
	background-color: #083e8d;
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	display: flex;     
    box-shadow: 0 10px 30px rgba(0, 60, 120, 0.3);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);   
    z-index: 1;
}
.card-row:hover {
	transform: translateY(-5px);
}
.product-image {
	position: relative;
	overflow: hidden;
	color: white;
	padding: 1.5rem;
	width: 35%;	
	display: flex;
	flex-direction: column;
    justify-content: center;
}
.product-info {
	position: relative;
	overflow: hidden;
	color: white;	 
	width: 65%;
	padding:  4rem  3.5rem 3.5rem 0;	
}
.product-image img {text-align: center;
	width: 100%;
	max-width: 300px;
	height: auto;
	display: block;
	margin: 0 auto;
	 aspect-ratio: 1 / 1;
}
.product-image:hover img,.columns-product:hover img  {
	transform: scale(1.05);
}
.row-product:hover {
	transform: translateY(-5px);
}
/* 单元机 *********************************************************************/
.split-system {
	padding: 0rem 5rem 5rem 5rem;
	background: linear-gradient(to bottom, #88a6d3 0%, #ced7e5 100%);
	margin-top: 4rem;
}
.split-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}
.split-item {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	border:1px solid rgba(8, 62, 141, 0.8);
	text-align: center;;
}
.split-item img {
	transition: transform 0.3s;
	width: 100%;
	max-width: 300px;
	margin-bottom: 12rem;	 
	height: auto; 
}
.split-item img.yeji {
	margin-bottom: 2rem;	
}
.split-item:hover img {
	transform: scale(1.05);
}
.split-caption {
	position: absolute;
	bottom: 0;
	background: rgba(8, 62, 141, 0.8);
	color: white;
	padding: 1rem;
	width: 100%;
}
 

/* 服务中心 *********************************************************************/
.service-center {
	background: linear-gradient(to bottom, #88a6d3 0%, #ced7e5 100%);
	padding: 4rem 5rem;
	position: relative;
	margin-top: 4rem;
	margin-bottom: 1rem;
}
.service-overlay {
	background: rgba(8, 62, 141, 0.9);
	border-radius: 20px;
}
.service-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	color: white;
	padding: 2rem 5rem;
}
 
.service-list li {
	
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
	display: flex;
	align-items: center;
	position: relative;
	padding-left: 15px;
	font-size: clamp(1rem, 1.25vw + 2px, 1.125rem);
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	line-height: 2.6;
}
.service-list li:before {
	content: "";
	display: block;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	border: 2px solid #fff;
	box-sizing: border-box;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	z-index: 1;
}
 
/*****************************价格************************************************************/
main section .price {
	width:100%;
	overflow: hidden;
	padding-bottom: 10px; 
}
.price-title {
	font-size: 28px;
	position: relative;
}
.price .price-list{
 --primary-color: #2563eb;     /* 主色调 */
 --accent-color: #3b82f6;      /* 强调色 */
 --text-color: #1f2937;        /* 正文颜色 */
 --border-color: #e5e7eb;      /* 边框颜色 */
 --hover-bg: #f8fafc;          /* 悬停背景 */
	overflow-x: auto;
	border-radius: 12px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
	margin: 0rem 0;
	background: white;
}
.price .price-list table {
	font-size: clamp(1rem, 1.25vw + 2px, 1.125rem);
	width: 100%;
	border-collapse: collapse;
	min-width: 600px;
	text-align: center;
}
/* 表头样式 */
.price .price-list thead {
	background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
	color: white;
}
.price .price-list thead th {
	padding: 1rem;
	font-weight: 600;
	position: relative;
}
.price .price-list thead th::after {
 content: "";
 position: absolute;
 right: 0;
 top: 50%;
 transform: translateY(-50%);
 width: 1px;
 height: 60%;
 background: rgba(255, 255, 255, 0.2);
}
.price .price-list thead th:last-child::after {
 display: none;
}
.price .price-list tbody td {
	padding: 0.6rem;
	border-bottom: 1px solid var(--border-color);
	color: var(--text-color);
	transition: all 0.2s ease;
}
.price .price-list tbody tr:nth-child(even) {
 background: #f9fafb;
}
.price .price-list tbody tr:hover td {
	background: var(--hover-bg);
	box-shadow: 2px 0 8px rgba(0, 0, 0, 0.1);
	position: relative;
	z-index: 1;
}
.price .price-list td[rowspan] {
	background: rgba(255, 245, 230, 0.6);
	color: #ea580c;
	font-weight: 500;
	vertical-align: middle;
	position: relative;
}
.price .price-list td[rowspan]::before {
 content: "";
 position: absolute;
 left: 0;
 top: 8px;
 bottom: 8px;
 width: 3px;
 background: #f59e0b;
 border-radius: 2px;
}
.price .price-list .unit {
	font-size: 0.85em;
	opacity: 0.8;
}

/********footer******************************************************************/
footer {
	background-color: var(--brand-primary);
	padding: 2rem 6rem;
	overflow: hidden;
	clear: both;
	color: white;
}
.foot_con {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 1.5rem;
}
.footlogo {
	  align-items: center; 
	display: flex;	
    flex-direction: column;
}
.footlogo img.logo {
	filter: brightness(0) invert(1);
}
.footlogo img.code {
	width: 100px;	
}
.foot_nav .big a {
	font-weight: bold;	
	display: block;
	margin-bottom: 0.5rem;
	font-size: clamp(1rem, 1.25vw + 2px, 1.125rem);
}
.foot_nav .hui {
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.8;
	font-size: clamp(0.9rem, 1.1vw + 2px, 1rem);
	display: block;
	transition: color 0.3s;
}
.foot_nav .hui a:hover {
	color: white;
}
.foot_contact .tel {
	font-size: 1.8rem;
	line-height: 1.2;
	margin: 0.5rem 0;
	font-weight: bold;
}
.foot_contact p {
	font-weight: bold;
	font-size: clamp(1rem, 1.25vw + 2px, 1.125rem);
	display: block;
	margin-bottom: 0.5rem;
}
.foot_contact .zxbtn {
	display: inline-block;
	width: auto;
	height: auto;
	line-height: 1.5;
	text-align: center;
	color: white;
	font-weight: bold;
	font-size: 1.5rem;
	background: var(--brand-secondary);
	margin-top: 1rem;
	padding: 0.8rem 3rem;
	border-radius: 10px;
	transition: all 0.3s ease;
}
.foot_contact .zxbtn:hover {
	background: #0056b3;
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.banquan {
	font-size: clamp(0.9rem, 1.1vw + 2px, 1.1rem);
	text-align: center;
	padding: 1rem 0;
	border-top: 1px solid rgba(255, 255, 255, 0.2);	
}
.banquan a {
	color: white;
	font-weight: 500;
}
footer p.link {
	font-size: clamp(0.9rem, 1.1vw + 2px, 1.1rem);
	line-height: 22px;
	padding-top: 0px;
	padding-right: 10px;
	padding-bottom: 6px;
	color: #999;
}
footer p.link a {
	margin-left: 10px;
	color: #999;
}
/* ========== 底部按钮栏优化 ========== */
/* 基础样式 */
    .footerBtn {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      padding-bottom: env(safe-area-inset-bottom);
      /* 苹果安全区域适配 */
      background: #fff;
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
      border-top: 1px solid rgba(0, 0, 0, 0.05);
    }

    @media (min-width: 769px) {
      .footerBtn {
        display: none !important;
      }
    }

    .footerBtn ul {
      display: flex;
      padding: 0;
      margin: 0;
      list-style: none;
      width: 100%;
    }

    .footerBtn li {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 8px 0;
      position: relative;
    }

    .footer-btn {
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 100%;
      padding: 8px 0;
      text-decoration: none;
      color: #666;
      transition: all 0.3s ease;
    }

    .btn-icon {
      width: 24px;
      height: 24px;
      margin-bottom: 4px;
      transition: all 0.3s ease;
    }

    /* 按钮文字样式 */
    .btn-text {
      text-align: center;
      line-height: 1.3;
    }

    .btn-text strong {
      display: block;
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 2px;
      transition: all 0.3s ease;
    }

    .btn-text span {
      display: block;
      font-size: 10px;
      line-height: 1.3;
      opacity: 0.8;
      margin: 0 auto;
      transition: all 0.3s ease;
    }

    /* 按钮悬停和激活状态 */
    .footer-btn:active {
      transform: scale(0.95);
    }

    /* 各按钮颜色样式 */
    .btn-emergency .btn-icon,
    .btn-emergency .btn-text strong {
      color: #261cdf;
    }

    .btn-emergency:active,
    .btn-emergency.active {
      background-color: rgba(38, 28, 223, 0.05);
    }

    .btn-emergency:active .btn-icon,
    .btn-emergency:active .btn-text strong,
    .btn-emergency.active .btn-icon,
    .btn-emergency.active .btn-text strong {
      color: #1a14b3;
    }

    .btn-case .btn-icon,
    .btn-case .btn-text strong {
      color: #2f8911;
    }

    .btn-case:active,
    .btn-case.active {
      background-color: rgba(47, 137, 17, 0.05);
    }

    .btn-case:active .btn-icon,
    .btn-case:active .btn-text strong,
    .btn-case.active .btn-icon,
    .btn-case.active .btn-text strong {
      color: #24720d;
    }

    .btn-consult .btn-icon,
    .btn-consult .btn-text strong {
      color: #b625ef;
    }

    .btn-consult:active,
    .btn-consult.active {
      background-color: rgba(182, 37, 239, 0.05);
    }

    .btn-consult:active .btn-icon,
    .btn-consult:active .btn-text strong,
    .btn-consult.active .btn-icon,
    .btn-consult.active .btn-text strong {
      color: #9a1dca;
    }

    /* 抖动动画 */
    @keyframes shake {

      0%,
      100% {
        transform: translateX(0);
      }

      25% {
        transform: translateX(-4px) rotate(-3deg);
      }

      75% {
        transform: translateX(4px) rotate(3deg);
      }
    }

    .shake-animation {
      animation: shake 1.2s ease-in-out infinite;
    }

    /* 适配iPhone X及以后的全面屏设备 */
    @supports (padding-bottom: env(safe-area-inset-bottom)) {
      .footerBtn {
        padding-bottom: calc(8px + env(safe-area-inset-bottom));
      }
    }

    /* 小屏幕优化 */
    @media (max-width: 320px) {
      .btn-text strong {
        font-size: 12px;
      }

      .btn-text span {
        font-size: 9px;
      }
    }
  

/* 响应式设计 ********************************************************************************************************/
.dqwz, main , .foot_con, .banquan, .link{
	max-width: 1920px;     margin: 0 auto;   
  }
  @media (min-width: 1921px) {
	  main{padding: 1rem 0rem;}
	  .navbar {padding: 1rem 0rem;}
	}
@media (max-width: 1200px){
	.navbar, .bread, main, footer,.service-center {
	padding-left: 2rem;
	padding-right: 2rem;
   }
   .card-columns ,.split-system{
       padding: 0 2rem 2rem 2rem;
   }
   .service-center{
	padding: 1rem 2rem;
  }
   .card-row {
    margin: 0rem 2rem 1rem 2rem;  
  } 
  h1 {
	font-size: 2.5rem;
   }
	.section-header h2 {
	font-size: 2rem;
   } 
}

@media (max-width: 1000px){
	.product-image {
	flex: 0 0 40%;
   }
   footer .foot_con .footlogo {
	display: none;
   }

   }
   

 @media (max-width: 768px) {
 .banner-container {
    aspect-ratio: 16/7;  
  }
	.price .price-list thead th {
	padding: 1rem;
	}
	.price .price-list tbody td {
	padding: 0.8rem;
	}
	 .price .price-list .modern-pricing-table {
	 border-radius: 8px;
	 box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
	}
	h3{ 
		white-space: pre-line; 
	} 

	}
   @media (max-width: 768px){
	.card-columns, .split-grid {
	grid-template-columns: 1fr;
	padding: 0 1rem;
   }
    .weizhi {
 display: none;
}
   .card-row{
	flex-direction: column;
   }
   .product-image{
	  width: 100%;
   }
   .product-image, .product-info{
	width: 100%;
	padding-left: 1rem;
	padding-right: 1rem;
 }
	.split-system {
	padding: 0rem 0rem 3rem 0rem;
   }
	.service-center {
   grid-template-columns: 1fr;
	padding: 1rem 1rem;
   }
	.service-grid {
	grid-template-columns: 1fr;
	padding:1rem;
	gap: 0rem;
   }
	.card-row {
	grid-template-columns: 1fr;
	margin: 1rem;
   }
	.water-chiller {
   grid-template-columns: 1fr;
	padding-bottom: 4rem;
   }
	h1 {
	font-size: 2.0rem;
   }
	h2 {
	font-size: 1.8rem;
   }
   h3 {
	font-size: 1.4rem;
   }
	.section-header {
	text-align: left;
   }
	.row-product p.description, .row-product h3 {
	padding: 0 1.5rem;
   }
	p.more, p.more-white {
	top: 58%;
   }
	p.more-white a span,  p.more-blue a span {
		display: none;
   }
	.section-sub {
	font-size: 1rem;
   }
	.section-sub {
	width: 70%;
   white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
   }
   }

 @media (max-width: 768px) {
 #nav-links {
 display: none;
 width: 100%;
 flex-direction: column;
 position: absolute;
 top: 100%;
 left: 0;
 background: white;
 padding: 1rem;
 box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
 #nav-links.active {
 display: flex;
}
 .hamburger {
 display: block;
}
 .navbar {
 padding: 1rem 1rem;
}
 main {
 height: auto;
 width:100%;
 padding: 0rem 0rem 1rem 0rem;
}
.price-list{padding: 0 0.5rem;}
 
 	 
/*******底部快捷*************************/
footer {
 padding: 1rem 1rem;
}
 
 footer .foot_con .foot_contact {
 display: none;
}
 footer p.banquan {
 padding-bottom:  1rem;
 padding-top:  1rem;
}
footer p.link {
	padding-bottom:  6rem;	
   }
}
