.index_outerContainer {
	background-color: #2052a1;
	color: white;
	padding: 50px 0;
}

.outerContainer {
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.Content-container {
	display: flex;
	justify-content: space-between;
	width: 100%;
	margin-bottom: 50px;
}

.commitment {
	flex: 1;
	text-align: right;
	padding-right: 50px;
}
.commitment h2{
	font-size: 40px;
}
.commitment p{
	font-size: 30px;
}
.cards {
	display: flex;
	justify-content: flex-start;
	flex: 1;
}

.card {
	background-color: #28b9ee;
	border-radius: 10px;
	padding: 20px;
	margin-left: 20px;
	text-align: center;
	width: calc(50% - 20px);
}
.card p{
	font-size: 18px;
}
.card .icon img {
	margin-top: -60px;
	width: 100px;
	height: 100px;
	margin-bottom: 10px;
}

.certifications {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin-top: 20px;
}

.certifications img {
	border-radius: 50px;
	width: 100px;
	height: auto;
}



.index_product {
	padding: 40px 0;
	text-align: center;
}

.index_product .container {
	margin: 0 auto;
	padding: 0 15px;
}

.section-title {
    font-weight: bold;
	color:#0467AE;
	font-size: 45px;
	margin-bottom: 10px;
}

.section-description {
	color: #666;
	font-size: 18px;
	margin-bottom: 30px;
}

.product-grid {
	display: flex;
    flex-wrap: wrap;
	margin-top: 30px;
}

.product-item {
	width: calc(25% - 20px);
	overflow: hidden;
	margin: 0 10px;
	padding: 20px;

}

.product-container {
    background-color: #e3e3e3;
	display: inline-block;
	padding: 15px;
	border-radius: 15px;
	border: 3px solid transparent;
	text-align: center;
}

.product-container img {
	max-width: 100%;
	height: auto;
	display: block;
	margin-bottom: 10px;
	background-size: cover;
}

.learn-more {
	font-size: 20px;
	color: #0467ae;
	text-decoration: none;
	font-weight: bold;
	display: inline-block;
	padding: 10px 15px;
	border-radius: 50px;
	border: 3px solid transparent;
	transition: border-color 0.3s, color 0.3s;
}

.learn-more:hover {
	border-color: #0467ae;
	color: #0467ae;
}




.product-item h3 {
    height: 60px;
	color: #0467ae;
	font-size: 24px;
	margin: 20px 10px;
}

.button-container {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.button-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.how-to-order,
.order-now {
	width: 250px;
	padding: 10px;
	margin: 5px 0;
	border: none;
	border-radius: 50px;
	cursor: pointer;
	transition: background-color 0.3s, border-color 0.3s, color 0.3s;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 18px;
	box-sizing: border-box;
}

.how-to-order {
	background-color: #ba4efc;
	color: white;
	border: 3px solid #ba4efc;
}

.how-to-order:hover {
	color: #ba4efc;
	background-color: #fff;
	border-color: #ba4efc;
}

.order-now {
	background-color: #ff9830;
	color: white;
	border: 3px solid #ff9830;
}

.order-now:hover {
	color: #ff9830;
	background-color: #fff;
	border-color: #ff9830;
}


.index_solution {
    margin-bottom: 80px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.solution {
    text-align: center;
    max-width:1400px;
    width: 100%;
    padding: 20px;


}

.solution h2 {
	font-size: 42px;
    color: #333;
    margin-bottom: 10px;
}

.solution p {
	font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.category-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
}

.category-item {
    flex: 1 1 calc(25% - 20px);
    min-width: 200px;
    background-color: #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.category-item:hover {
    transform: scale(1.05);
}

.category-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.category-item h3 {
	height: 100%;
    background-color: #777;
    color: white;
    padding: 10px;
    margin: 0;
    font-size: 16px;
}




.index_form {
     background-color: #f9f9f9;
	border-radius: 25px;
	flex-grow: 1;
	margin-left: auto;
	padding: 30px;
}

.index_table {
    text-align: left;
	padding: 30px;

}
.index_table input{
	width: 300px;
	height: 50px;
}
.form_button{
    
    background-color: #f9f9f9;
}
.index_table textarea{
	width: 300px;
	height: 100px;
}

/*index_how_to_order*/
.how_to_order_title h1 {
	text-align: center;
	color: #0467ae;
	font-weight: bold;
	font-size: 42px;
	line-height: 1.1;
	margin-bottom: 20px;
}
.how_to_order_img {
	margin-top: 50px;
	display: flex;
	justify-content: center; /* 水平居中 */
	align-items: center; /* 垂直居中 (需要设置容器高度) */
	
}

.how_to_order_img img {
	max-width: 100%;
	height: auto;
}

.index_company{
    margin: 80px 0;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
.index_company .company_title h1{
    text-transform: uppercase;
	text-align: center;
	color: #0467ae;
	font-weight: bold;
	font-size: 42px;
	line-height: 1.1;
	margin-bottom: 20px;
}
.index_company .company_title p{
	font-size: 18px;

	text-align: center;
}
.company_box{
    margin-top: 30px;
	max-width: 1500px;
	height: 600px;
	display: flex;
}
.img_box{
   width: 200px;
    height: 600px;
    object-fit: cover;
    transition: 0.4s;
}
.img_box img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}


.blur {
    filter: blur(5px);
}
.img_box:nth-child(5){
	width: 900px;

}
.img_box:hover {
    cursor: pointer;
    width: 900px;

}
.img_box:hover ~ .img_box:nth-child(5){
	width: 200px;
}

.solution_title {
    text-align: center;
    margin-bottom: 40px;
    
}
.solution_title h1{
    color: #0467ae;
     font-size: 42px;
     	font-weight: bold;
    line-height: 1.1;
    margin-bottom: 20px;
}
.solution_title p{
    font-size: 18px;
    color: rgb(102, 102, 102);
    
}

.is-fullwidth {
    width: 100% !important;
    max-width: 100% !important;
}
.pt-0 {
    padding-top: 0 !important;
}
.columns.is-variable.is-5>.column {
    padding: 20px;
}

.tile {
    align-items: stretch;
    display: block;
    flex-basis: 0;
    flex-grow: 1;
    flex-shrink: 1;
    min-height: min-content;
}
.tile.is-vertical {
    flex-direction: column;
}
.tile.is-parent {
    padding: 12px;
}
.image.is-5by3 {
    padding-top: 60%;
}
.tile.is-child {
    margin: 0 !important;
}
.image.is-4by5 {
    padding-top: 125%;
}
.image.is-covered img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.image.is-covered img {
	bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}
.image.is-4by5 img {
	    height: 100%;
    width: 100%;
}
.is-min-height-100 {
    min-height: 100%;
}
.is-rounded img {
	border-radius: 30px !important;
    -webkit-border-radius: 30px !important;
}

.image {
    display: block;
    position: relative;
}

.tile.is-vertical>.tile.is-child:not(:last-child) {
    margin-bottom: 24px !important;
}
.image.is-3by2 {
    padding-top: 66.6666%;
}
.hero {
  width: 100%;
  overflow: hidden;
  padding: 0;
  margin: 0;
}

.hero img { 
  display: block;  
}
 
.breadcrumb {
  text-align: center;
  padding: 12px;
  font-size: 0.9rem;
  color: #6c757d;
  background-color: #f1f3f5;
} 
.menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  padding: 15px 10px;
  background-color: white;
 
  gap: 25px;
}

.filament-types a {
  text-decoration: none;
  color: #495057;
  padding: 8px 16px;
  border-radius: 30px;
  font-weight: 800;
  font-size: 20px;
  transition: all 0.3s ease; 
  display: inline-block; /* 必须：让 width 生效 */ 
  text-align: center; /* 文字居中 */
}

.filament-types a:hover {
  background-color: #0056b3;
  color: white;
  transform: translateY(-2px);
}

.filament-types a.active {
  background-color: #2052a1;
  color: white;
  border-color: #0056b3;
} 
.product-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  padding: 40px 20px;
  max-width: 1400px;
  margin: 0 auto;
} 
.products-card {
  height: 350px;
  width: 100%;
  max-width: 340px;
  padding: 20px;
  background-color: #a4b2be82;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  text-align: left;
  transition: none;
  opacity: 0;
  transform: translateX(0);
  display: none;
}

.products-card.show {
  display: block;
  opacity: 1;
  animation: fadeInUp 0.4s ease forwards;
} 
.products-card:hover {
  transform: translateX(-12px) scale(1.03);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

.products-card h2 {
  height: 90px;
  font-size: 28px;
  color: #1a1a1a;
  margin-bottom: 12px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.products-card img {
  width: 100%;
  height: 190px;
  object-fit: cover; 
  margin-bottom: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
} 
.products-card:hover h2,
.products-card:hover img {
  transform: translateX(-14px) scale(1.03);
}
 
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateX(0);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}



 .contact-module {
  display: block;
  width: 100%;
}

.packaging-contact-module {

  max-width: 1200px;
  margin: 30px auto;
  padding: 30px;
  background-color: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  color: #2c3e50;
  line-height: 1.7;
}

.packaging-contact-module .contact-item {
  margin-bottom: 20px;
}

.packaging-contact-module .contact-item:last-child {
  margin-bottom: 0;
}

 
.packaging-contact-module .contact-title {
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 8px 0;
  padding-left: 12px;
  border-left: 4px solid #3498db;
  display: flex;
  align-items: center;
}

 
.packaging-contact-module .office .contact-title {
  color: #2980b9;
}

 
.packaging-contact-module .factory .contact-title {
  color: #e67e22;
  border-left-color: #e67e22;
}

 
.packaging-contact-module .contact-address {
  font-size: 15px;
  color: #34495e;
  margin: 0;
  padding-left: 12px;
}

 
.packaging-contact-module .contact-info {
  padding-top: 16px;
  border-top: 1px dashed #bdc3c7;
  font-size: 15px;
  color: #7f8c8d;
}

 
.packaging-contact-module .contact-detail {
  font-size: 20px;
  margin: 6px 0;
  display: flex;
  align-items: center;
}
 
.contact-icon {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  vertical-align: middle;
  opacity: 0.85;
}

 
.packaging-contact-module .contact-info a {
  color: #3498db;
  text-decoration: none;
}

.packaging-contact-module .contact-info a:hover {
  text-decoration: underline;
}
 .form-control{
    font-size: 16px !important;
}
 .form-select{
    font-size: 16px !important;
}

.row>*{
    
}

.modal-header .btn-close{
    margin: 20px;
    padding: 1px;
}

.module-custom {

	margin: 0;
	padding: 0;
}

.custom-content {
	margin: 0 auto;
	padding: 20px;
	max-width: 1200px;
}

.custom-container {
	display: flex; 
	flex-wrap: wrap;
	padding: 20px;
}

.left-section {
	width: 28%;
}

.right-section {
    margin-left: 30px;
	width: 68%;
}

.blue-box {
    font-family: Poppins;
    font-size: 18px;
    color: #fff;
    font-weight: 700; 
	border-radius: 10px;
	background-color: #1e89db; 
	padding: 15px;
	margin-bottom: 10px;
}

.left-section .content {
	margin: 30px auto;
	padding: 20px;
	border: 1px solid #e0e0e0;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	border-radius: 8px;
}

.content p {
	margin: 0 0 15px 0;
	line-height: 1.6;
	color: #333;
	font-size: 16px;
}

.divider-line {
	width: 100%;
	height: 1px;
	background-color: #ddd;
	margin: 15px 0;
	border: none;
}

.button-container {
	text-align: center;
	margin: 10px 0;
}

#view-more-btn {
	width: 120px;
	height: 40px;
	background-color: #1e89db;
	color: #ffffff;
	border: 1px solid #1e89db;
	border-radius: 20px;
	font-size: 14px;
	font-weight: bold;
	cursor: pointer;
	transition: all 0.3s ease;
	display: inline-block;
}

#view-more-btn:hover {
	background-color: #007bff;
	color: white;
}

#view-more-btn:active {
	transform: translateY(1px);
}

 /* 弹窗样式 */
        .modal {
            /* 默认隐藏 */
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 9000;
            justify-content: center;
            align-items: center;
        }

        /* 当URL包含#modal时显示弹窗 */
        .modal:target {
            display: flex;
        }

        .modal-content {
            max-width: 800px;
            background-color: white;
            padding: 30px;
            border-radius: 8px;  
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            position: relative; 
            overflow-y: auto;
        }
        
        .modal-content p{
            margin: 20px 0;
        }

        .close-btn {
            position: absolute;
            top: 10px;
            right: 15px;
            font-size: 24px;
            color: #aaa;
            text-decoration: none;
            font-weight: bold;
            cursor: pointer;
        }

        .close-btn:hover {
            color: #000;
        }
        .middle-module{
            border-radius: 10px;
            background-image: url('/skin/static/image/food.jpg');
            background-size: cover;
            background-repeat: no-repeat;
            background-position: bottom;  
        }
.middle-section { 
    background-color: #ffffff57;
    display: flex;
    flex-direction: column;
}

.right-section h2 {
    font-size: 24px;
	margin-top: 0;
}

.scrollable-container {
    color: #333;
    padding: 20px 10px;
    height: 200px;
	width: 100%; 
	max-width: 500px;
	overflow-y: auto;
	overflow-x: hidden;
	border-radius: 4px;
	margin-bottom: 15px;
	font-size: 16px;
	line-height: 1.5;
	scrollbar-width: thin;
}

.quote-btn {
	width: 160px;
	height: 45px;
	background-color: #1e89db;
	color: white;
	border: none;
	border-radius: 50px;
	font-size: 16px;
	font-weight: bold;
	cursor: pointer;
	transition: all 0.3s ease;
	display: block; 
}

.quote-btn:hover {
	background-color: #0056b3;
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.quote-btn:active {
	transform: translateY(0);
}

.image-gallery {
	display: flex;
	flex-wrap: nowrap;
	gap: 10px;
	margin-top: 50px;
}

.image-gallery img {
	width: 30%;
	height: auto;
}

.module-Environmental-protection {
	    max-width: 1400px;
	    font-family: Arial, sans-serif;
	    margin: 0 auto;           /* 水平居中 */
	    padding: 20px;      
 }

 .Environmental-container {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px; 
 }

 .Environmental-section {
 	width: calc(33.33% - 20px);
 	background-color: #f4f4f4;
 	margin: 10px;
 	padding: 20px;
 	border-radius: 5px;
 	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
 	transition: transform 0.3s ease;
 }

 .Environmental-section:hover {
 	transform: translateY(-5px);
 }

 .Environmental-section img {
 	width: 100%;
 	height: auto;
 	border-radius: 5px;
 	margin-bottom: 10px;
 }

 .Environmental-content h2 {
    font-size: 20px;
 	color: #333;
 	margin-bottom: 10px;
 }

 .Environmental-content p {
     font-size: 16px;
 	color: #666;
 	line-height: 1.5;
 }
 
@media screen and (min-width: 768px), print {
    .tile:not(.is-child) {
        display: flex;
    }
	.tile.is-3 {
        flex: none;
        width: 25%;
    }
	.tile.is-9 {
        flex: none;
        width: 75%;
    }
}

     /* 响应式设计：平板端 */
@media (min-width: 769px) and (max-width: 1024px) {
     .product-item {
          width: calc(50% - 20px); /* 平板端：一行两个 */
          margin: 0 10px 20px 10px;
            }
     .Content-container {
		flex-direction: column;
		align-items: center;
	}

	.commitment {
		text-align: center;
		padding-right: 0;
		margin-bottom: 20px;
	}

	.cards {
		flex-direction: column;
	}

	.card {
		width: 100%;
		margin-left: 0;
		margin-bottom: 20px;
	}

	.card .icon img {
		margin-top: 0;
		width: 100px;
		height: 100px;
		margin-bottom: 10px;
	}
            
        }

/* 响应式设计 */
@media (max-width: 768px) {
	.Content-container {
		flex-direction: column;
		align-items: center;
	}

	.commitment {
		text-align: center;
		padding-right: 0;
		margin-bottom: 20px;
	}

	.cards {
		flex-direction: column;
	}

	.card {
		width: 100%;
		margin-left: 0;
		margin-bottom: 20px;
	}

	.card .icon img {
		margin-top: 0;
		width: 100px;
		height: 100px;
		margin-bottom: 10px;
	}

 .product-grid {
       flex-direction: column; 
       align-items: center;
            }

            .product-item {
                width: 90%; 
               
                margin: 0 auto 20px auto; 
            }

	.layout>div {
		width: 100%;
		margin: 0;
		margin-bottom: 10px;
	}

	.layout>div:last-child {
		margin-bottom: 0;
	}
		.category-item {
	    flex: 1 1 calc(50% - 20px);
	}
	.hero img {
    height: auto;
  }

  .menu  {
    gap: 8px;
  }

  .filament-types a {
    padding: 6px 10px;
    font-size: 14px;
  }

  .product-cards {
    padding: 20px 10px;
    gap: 16px;
  }

  .products-card {
    max-width: 100%;
  }
    .packaging-contact-module {
    padding: 20px;
    margin: 20px auto;
    font-size: 14px;
  }
  .packaging-contact-module .contact-title {
    font-size: 16px;
  }
  .contact-icon {
    width: 16px;
    height: 16px;
    margin-right: 6px;
  }
  .left-section {
	width: 100%;
}

.right-section {
	width: 100%;
}
.resizee{
    font-size: 18px;
}


    .Environmental-container {
        flex-wrap: wrap;     
    }
    .Environmental-section {
        flex: 1 1 100%;      
    }
	
}


/* 响应式设计 */
@media (max-width: 480px) {
    .category-item {
        flex: 1 1 100%;
    }
      .left-section {
	width: 100%;
}

.right-section {
	width: 100%;
}


    .module-Environmental-protection {
        padding: 10px;         
    }
    .Environmental-section {
        padding: 15px;
    }
    .Environmental-content h2 {
        font-size: 1.2em;
    }
}