/* topbar begin*/
html{
	font-size:16px;
	background-color: #663300;
}

body{
	
	background-color: #663300;
}


/**
begin
top right corner two buttons
*/



/**
begin
search section (slogan + search bar)
*/
.search-wrapper {
  position: absolute;
  left: 55%;
  transform: translateX(-50%);
  width: 96%;
  max-width: 900px;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.search-slogan {
  width: 72%;
  max-width: 648px;
  font-size: 18px;
  color: rgb(102, 51, 0);
  font-weight: bold;
  text-align: center;
  white-space: normal;
  line-height: 1.3;
  margin-bottom: 0;
}

.search {
  width: 86%;
  max-width: 648px;
  height: 38px;
  border-radius: 10px;
  padding: 0 20px;
  border: 1px solid #d4a74a;
  background: #fff;
  font-size: 16px;
  box-sizing: border-box;
}

.search-form {
  width: 72%;
  max-width: 648px;
  display: flex;
  justify-content: center;
}

@media (max-width: 768px) {
  .search-wrapper {
    position: static;
    transform: none;
    width: 100%;
    max-width: 100%;
    gap: 0.3rem;
    padding: 0.5rem 0.75rem;
  }

  .search-slogan {
    width: 100%;
    max-width: 100%;
    font-size: 14px;
  }

  .search,
  .search-form {
    width: 100%;
    max-width: 100%;
    height: 34px;
    font-size: 14px;
    border-radius: 8px;
  }

  .header-actions {
    position: static;
    right: auto;
    gap: 0.4rem;
    padding: 0.25rem 0.5rem;
  }

  .d-flex > .header-nav {
    width: 100%;
    flex-wrap: nowrap;
    overflow-x: visible;
    margin: 0.4rem 0 0;
  }

  .d-flex > .header-nav > .nav-item {
    flex: 1 0 20%;
    overflow: hidden;
  }

  .d-flex > .header-nav > .nav-item + .nav-item {
    border-left: 1px solid rgba(212, 167, 74, 0.4);
  }

  .d-flex > .header-nav .nav-link-n {
    font-size: 0.75rem;
    padding: 0.4rem 0.15rem;
  }

  .d-flex > .header-nav .dropdown-panel a {
    font-size: 0.7rem;
    padding: 0.3rem 0.15rem;
  }
}

@media (max-width: 480px) {
  .logo-pic {
    height: 70px;
  }

  .search-wrapper {
    padding: 0.4rem 0.5rem;
    gap: 0.25rem;
  }

  .search-slogan {
    font-size: 12px;
  }

  .search,
  .search-form {
    width: 100%;
    height: 30px;
    font-size: 13px;
    border-radius: 6px;
    padding: 0 10px;
  }

  .header-actions {
    gap: 0.3rem;
    padding: 0.2rem 0.4rem;
  }

  .header-actions .welcome-text {
    font-size: 0.65rem;
  }

  .action-btn {
    padding: 0.2rem 0.4rem;
    font-size: 0.7rem;
    border-radius: 2px;
  }

  .cart-btn .cart-icon {
    margin-right: 0.15rem;
    font-size: 0.85rem;
  }

  .header-nav {
    flex-wrap: nowrap;
    overflow-x: hidden;
  }

  .header-nav .nav-item {
    flex: 1 0 20%;
  }

  .header-nav .nav-item + .nav-item {
    border-left: 1px solid rgba(212, 167, 74, 0.4);
  }

  .header-nav .nav-link-n {
    font-size: 0.7rem;
    padding: 0.35rem 0.1rem;
  }

  .header-nav .dropdown-panel {
    position: fixed;
    left: 0;
    right: 0;
    width: 100vw;
  }
}

/**
end
search section
*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* 父容器：右上角绝对定位，适配所有屏幕 */
.header-actions {
  position: absolute;
  top: 0rem;
  right: 5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* Welcome 文字 */
.header-actions .welcome-text {
  font-size: 0.85rem;
  color: rgb(102, 51, 0);
  font-weight: bold;
  white-space: nowrap;
}

/* 按钮基础样式：统一圆角、背景、文字 */
.action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 0.3rem 0.6rem;
  font-size: 0.8rem;
  background-color: #f2d388;
  border: 1px solid #d4a74a;
  border-radius: 3px;
  text-decoration: none;
  color: #5a3a00;
  font-weight: bold;
  white-space: nowrap;
  transition: all 0.2s ease;
  height: auto;
  min-height: 0;
}

/* 购物车按钮：图标间距 */
.cart-btn .cart-icon {
  margin-right: 0.3rem;
  font-size: 1rem;
  line-height: 1;
}

/* 媒体查询：小屏幕（≤768px，平板/手机）自适应优化 */
@media (max-width: 768px) {
  .header-actions {
    top: 0.5rem;
    right: 0.75rem;
    gap: 0.4rem;
  }

  .header-actions .welcome-text {
    font-size: 0.75rem;
  }

  .action-btn {
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    border-radius: 3px;
  }
}

@media (max-width: 480px) {
  .header-actions {
    top: 0.5rem;
    right: 0.5rem;
    gap: 0.3rem;
    justify-content: flex-end;
  }

  .header-actions .welcome-text {
    font-size: 0.7rem;
  }

  .action-btn {
    padding: 0.2rem 0.45rem;
    font-size: 0.7rem;
    border-radius: 2px;
  }

  .cart-btn .cart-icon {
    margin-right: 0.2rem;
    font-size: 0.9rem;
  }
}

/* 可选：hover交互，提升体验 */
.action-btn:hover {
  background-color: #f0c86a;
  transform: translateY(-1px);
}


/**
end
top right corner two buttons
*/

/* 卡片容器：完全复刻图片风格——干净、简约、灰白底、柔和阴影 */
        .service-showcase {
            max-width: none;
            width: 100%;
            background-color: #ffffff;
            /*border-radius: 28px;*/
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05), 0 4px 8px rgba(0, 0, 0, 0.02);
            padding: 2.2rem 2rem;
            transition: all 0.2s;
            margin-bottom: 20px;
        }

        /* 网格布局：五个卡片，响应式展示，完全参照图片疏密有致 */
        .service-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 6px;
            align-items: stretch;
            width: 100%;
        }

        /* 每个服务项卡片样式 - 极简居中，类似图片内的块状结构 */
        .service-item {
            text-align: center;
            padding: 0.75rem 0.5rem;
            transition: transform 0.2s ease;
        }

        .service-item:hover {
            transform: translateY(-3px);
        }

        /* 图标区域：统一圆形容器 + 柔和背景，使视觉干净且有层次 */
        .icon-circle {
            width: 70px;
            height: 70px;
            background: #f9f5ef;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem auto;
            transition: all 0.2s;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
        }

        /* 使用 emoji + 简单图形，与图片风格一致，且兼容各种设备 */
        .icon-emoji {
            font-size: 2.3rem;
            line-height: 1;
        }

        /* 主标题样式：加粗，深褐色，接近原图深沉质感 */
        .service-title {
            font-size: 1.08rem;
            font-weight: 700;
            color: #2e2a24;
            letter-spacing: 0.3px;
            margin-bottom: 0.35rem;
        }

        /* 副标题/描述文字：轻量，柔和暖灰色 */
        .service-desc {
            font-size: 0.8rem;
            color: #7b6e5c;
            font-weight: 450;
            line-height: 1.4;
        }

        /* 如果某些特殊项需要细微调整间距 */
        .service-item .service-desc {
            margin-top: 2px;
        }

        /* 完全还原图片里的分割精神：干净，无冗余边框，仅靠间距区分 */

        /* 响应式布局: 在大屏幕上保持5列，中等屏幕自适应 */
        @media (max-width: 1000px) {
            .service-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 6px;
            }
            .service-showcase {
                padding: 1.8rem;
            }
        }

        @media (max-width: 650px) {
            .service-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 4px;
            }
            .icon-circle {
                width: 60px;
                height: 60px;
            }
            .icon-emoji {
                font-size: 1.9rem;
            }
            .service-title {
                font-size: 0.95rem;
            }
            .service-desc {
                font-size: 0.7rem;
            }
        }

        @media (max-width: 480px) {
            .service-grid {
                grid-template-columns: 1fr;
                gap: 3px;
            }
            .service-item {
                display: flex;
                align-items: center;
                text-align: left;
                gap: 1rem;
                padding: 0.6rem 0;
            }
            .icon-circle {
                margin: 0;
                width: 55px;
                height: 55px;
                flex-shrink: 0;
            }
            .service-text {
                flex: 1;
            }
            .service-title {
                margin-bottom: 0.2rem;
            }
        }

        /* 可选装饰：极简上边框线，与图片气质吻合（原图无过多装饰，但增加干净边界）*/
        .service-showcase {
            border: 1px solid #f0e9df;
        }

/**
five button
begin
*/


/**
five button
end
*/




**/
.topbar {
	text-align: center;
	background-color: black;
	color: white;
	padding: 8px 0;
}

.ad_line {
	font-size: 16px;
	font-weight:400;
}
/* topbar end*/

/* head begin*/

.top-memu {
	background-color: #111728;
}

.logo-pic {
	height: 120px;
}
.menubars ul {
	height:114px;
	line-height:114px;
	background-color: #111728;
}

.menubars ul li {
	float: left;
	margin-right:20px;
	background-color: #111728;
	
}
.menubars ul li:hover a {
	color:yellow;

}
.menubars ul li a {
	color:white;
	font-size:24px;
}

/* head end */


/* footer begin */
.site-footer {
	background-color: #fffae9;
	color: #5a3a00;
	padding: 3rem 0 0;
}

.footer-inner {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
	padding: 0 5% 2rem;
}

.footer-col {
	min-width: 0;
}

.footer-heading {
	font-size: 1rem;
	font-weight: bold;
	margin-bottom: 1rem;
	color: #5a3a00;
}

.footer-links {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-links li {
	margin-bottom: 0.5rem;
}

.footer-links a {
	color: #8a6010;
	text-decoration: none;
	font-size: 0.9rem;
	transition: color 0.2s;
}

.footer-links a:hover {
	color: #d4a74a;
}

.footer-contact {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-contact li {
	margin-bottom: 0.5rem;
	font-size: 0.9rem;
	color: #8a6010;
	line-height: 1.5;
}

.footer-social {
	display: flex;
	gap: 0.75rem;
	margin-top: 1rem;
}

.footer-social-row {
	display: none;
	justify-content: center;
	gap: 1rem;
	padding: 1rem 15%;
}

.social-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background-color: #d4a74a;
	color: #fff;
	font-size: 1.1rem;
	text-decoration: none;
	transition: background-color 0.2s;
}

.social-icon:hover {
	background-color: #5a3a00;
}

.footer-bottom {
	border-top: 1px solid #e8d5a0;
	padding: 1.5rem 15%;
	text-align: center;
}

.footer-bottom p {
	margin: 0;
	font-size: 0.85rem;
	color: #8a6010;
	padding: 0 15%;
}

@media (max-width: 768px) {
	.footer-inner {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.5rem;
		padding: 0 0 0;
	}

	.footer-heading {
		margin-bottom: 0.75rem;
	}
}

@media (max-width: 480px) {
	.site-footer {
		padding: 1.5rem 0 0;
	}

	.footer-inner {
		grid-template-columns: 1fr;
		gap: 0;
		padding: 0 0 0;
	}

	.footer-col {
		border-bottom: 1px solid #e8d5a0;
		padding: 1rem 0;
	}

	.footer-social {
		display: none;
	}

	.footer-social-row {
		display: flex;
		padding: 1rem 0;
	}

	.footer-heading {
		margin-bottom: 0;
		display: flex;
		justify-content: space-between;
		align-items: center;
		cursor: pointer;
		user-select: none;
	}

	.footer-arrow {
		display: inline-block;
		width: 10px;
		height: 10px;
		border-right: 2px solid #5a3a00;
		border-bottom: 2px solid #5a3a00;
		transform: rotate(45deg);
		transition: transform 0.3s;
		flex-shrink: 0;
	}

	.footer-accordion-toggle[aria-expanded="true"] .footer-arrow,
	.footer-heading.active .footer-arrow {
		transform: rotate(225deg);
	}

	.footer-accordion-body {
		display: none;
		padding-top: 0.75rem;
	}

	.footer-heading.active + .footer-accordion-body {
		display: block;
	}

	.footer-bottom {
		padding: 1.5rem 0;
	}

	.footer-bottom p {
		padding: 0;
	}
}
/* footer end*/

/* home links section begin */
.home-links-row {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 4px;
  width: 100%;
}

.home-link-img {
  flex: 1 1 0;
  width: 0;
  height: auto;
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .home-links-row {
    gap: 3px;
  }

  .home-link-img {
    flex: 1 1 0;
    width: 0;
  }
}

@media (max-width: 480px) {
  .home-links-row {
    gap: 2px;
  }

  .home-link-img {
    flex: 1 1 0;
    width: 0;
  }
}
/* home links section end */

/* header nav begin */
.header-nav {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin: 0.5rem 0 0;
  border-top: 1px solid rgba(212, 167, 74, 0.4);
  border-bottom: 1px solid rgba(212, 167, 74, 0.4);
}

.header-nav .nav-item {
  position: relative;
  flex: 1;
  text-align: center;
}

.header-nav .nav-item + .nav-item {
  border-left: 1px solid rgba(212, 167, 74, 0.4);
}

.header-nav .nav-link-n {
  display: block;
  padding: 0.5rem 0.25rem;
  font-size: 0.9rem;
  font-weight: bold;
  color: #5a3a00;
  text-decoration: none;
  background-color: #f2d388;
  transition: background-color 0.2s;
}

.header-nav .nav-link-n:hover {
  background-color: #d4a74a;
  color: #fff;
}

.header-nav .dropdown-panel {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #fff;
  border: 1px solid #d4a74a;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  z-index: 100;
}

.header-nav .nav-item:hover .dropdown-panel {
  display: block;
}

.header-nav .dropdown-panel a {
  display: block;
  padding: 0.4rem 0.25rem;
  font-size: 0.85rem;
  color: #5a3a00;
  text-decoration: none;
  text-align: center;
  border-bottom: 1px solid rgba(212, 167, 74, 0.3);
  transition: background-color 0.2s;
}

.header-nav .dropdown-panel a:last-child {
  border-bottom: none;
}

.header-nav .dropdown-panel a:hover {
  background-color: #f2d388;
  color: #5a3a00;
}

@media (max-width: 768px) {
  .header-nav {
    margin: 0.4rem 0 0;
  }

  .header-nav .nav-link-n {
    font-size: 0.75rem;
    padding: 0.4rem 0.15rem;
  }

  .header-nav .dropdown-panel a {
    font-size: 0.7rem;
    padding: 0.3rem 0.15rem;
  }
}

@media (max-width: 480px) {
  .header-nav {
    flex-wrap: wrap;
  }

  .header-nav .nav-item {
    flex: 0 0 33.33%;
  }

  .header-nav .nav-item:nth-child(3) + .nav-item {
    border-left: none;
  }

  .header-nav .nav-link-n {
    font-size: 0.7rem;
  }
}
/* header nav end */


/*
.banner1 .container {
	max-width: 2000px;
	height:1080px;
	background-image: linear-gradient(#01072c,#0165a3);

	 
}

.banner {
	max-width: 2000px;
	height:1080px;
	background-image: url("../../images/banner2.jpg.webp");
	background-repeat: no-repeat;
	background-position: center center; 
	 
}

.banner2 {
	background-image: url("../../images/what-we-offer-bg.jpg");
	background-repeat: no-repeat;
	background-position: center center; 
	margin: 80px 0;
		
}

.banner2 .banner-ads{
	text-align: center;
	padding:1px;

}
.banner2 .banner-ads .ads-title{
	font-size:40px;	
	font-weight: bold;
	margin-top: 80px;
}

.banner2 .banner-ads .ads-info{
	font-size:16px;	
	color: #6d7182;
}
*/
.ads-banner {
		margin-bottom:80px;
}
.banner11 {
	margin: 30px;
	padding: 1px;
	min-width:250px;
	background-color: #fff;
	box-shadow: 1px 0 10px #d0def2;
	border-radius: 10px;
}

.banner11 .banner-img1{
	background-image: url("../../images/what-we-offer.png");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 0 -71px;
	width: 84px;
	height:73px;
	margin: 0 auto;
	margin-top:36px;
	margin-bottom:36px;
}

.banner11 h5 {
	font-weight: 600;
	font-size:24px;
	margin-bottom:7px;
}

.banner11 p {

	margin-bottom:36px;
}






.banner22 {
	margin: 30px;
	padding: 1px;
	min-width:250px;
	background-color: #fff;
	box-shadow: 1px 0 10px #d0def2;
	border-radius: 10px;
}

.banner22 .banner-img1{
	background-image: url("../../images/what-we-offer.png");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 0 0;
	width: 84px;
	height:73px;
	margin: 0 auto;
	margin-top:36px;
	margin-bottom:36px;
}

.banner22 h5 {
	font-weight: 600;
	font-size:24px;
	margin-bottom:7px;
}

.banner22 p {

	margin-bottom:36px;
}







.banner33 {
	margin: 30px;
	padding: 1px;
	min-width:250px;
	background-color: #fff;
	box-shadow: 1px 0 10px #d0def2;
	border-radius: 10px;
}

.banner33 .banner-img1{
	background-image: url("../../images/what-we-offer.png");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 0 -145px;
	width: 84px;
	height:73px;
	margin: 0 auto;
	margin-top:36px;
	margin-bottom:36px;
}

.banner33 h5 {
	font-weight: 600;
	font-size:24px;
	margin-bottom:7px;
}

.banner33 p {

	margin-bottom:36px;
}

/*Main Content*/
.main_content{
	margin-bottom: 40px;
	background-color: #663300;
}

.list_title {
	padding-left:12px;
	padding-right: 20px;
	font-size: 20px;
	border-right: 1px solid skyblue;
}
.title_most {
	margin-bottom: 12px;
}
.title_most .goods_content {
	margin-top: 40px;
	
}

.goods_content .goods_item {
	border-radius: 15px;
    margin: 8px 8px;
	padding: 20px 10px;
	box-sizing: border-box;
	height: 440px;
	background-color: #fff;
	
}


.goods_content .goods_item .goods_price_info {
	margin-top:18px;
}
.goods_content .goods_item img{
	width:180px;
	margin: 0 auto;
}


.goods_content .goods_item .goods_price_info span {
	font-size: 18px;
	font-weight:700;
	color: #36da7a;
}

.goods_content .goods_name{
	text-align: center;
	margin-top: 12px;
	padding-bottom:18px;
	font-size: 20px;
	font-weight:bold;
	border-bottom: 1px solid #eaebf1;
}
.goods_price_info .cart_but {
	padding:10px;
	background-color: #ffa31b;
	border-radius:8px;
} 

.img-responsive {
	width:200px;
	
}
.count-input {
    position: relative;
    width: 100%;
    max-width: 165px;
    margin: 10px 0;
}
.count-input.count-input-sm {
    max-width: 75px;
}
.count-input .incr-btn {
    display: block;
    position: absolute;
    width: 30px;
    height: 30px;
    font-size: 26px;
    font-weight: 300;
    text-align: center;
    line-height: 30px;
    top: 50%;
    right: 0;
    margin-top: -15px;
    text-decoration: none;
    text-indent: -10000px;
    color: black;
 
}
.count-input .incr-btn:first-child {
    right: auto;
    left: 0;
    top: 50%;
    
}
.count-input .incr-btn:last-child {
	
}

.product-detail .action a {
    color: #f9a503;
}

.count-input input {
    width: 100%;
    height: 37px;
    border: 1px solid #9c9c9c;
    border-radius: 2px;
    background: #fff;
    text-align: center;
    
}
.count-input.count-input-sm input {
    height: 36px;
}
.list_img{
	width:60px;
	height:60px;
}
.btn-customer {
    background: -moz-linear-gradient(left, #f45 0%, #e44150 80%);
    background: -webkit-linear-gradient(left, #f45 0%, #e44150 80%);
    background: linear-gradient(to right, #f45 0%, #e44150 80%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f45', endColorstr='#e44150', GradientType=1);
    color: #ffffff;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.img-cart{
	width:120px;
	height:120px;
}
.cart-table{
	vertical-align: middle;
}
.cart_number {
	position: relative;
	top: -16px;
	right: 1px;
	padding: 3px 6px;
	background: #f45;
	border-radius:10000px;
	-webkit-border-radius:10000px;
	font-size: 10px;
	line-height: 1;
    transform: scale(0.8);
    -webkit-transform: scale(0.8);
}

