.ciya-carousel {
position: relative;
height: 600px;
overflow: hidden;
background-color: #000;
}
.carousel-track {
display: flex;
width: 100%;
height: 100%;
transition: transform 0.6s ease;
}
.carousel-slide {
min-width: 100%;
height: 100%;
position: relative;
}
.carousel-slide img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
/* 遮罩层 */
.carousel-slide::after {
content: ”;
position: absolute;
inset: 0;
background: rgba(0,0,0,0.25);
z-index: 1;
}
/* 幻灯片文字 */
.slide-content {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%) translateY(30px);
color: #fff;
text-align: center;
z-index: 2;
opacity: 0;
transition: all 0.8s ease;
}
.carousel-slide.active .slide-content {
opacity: 1;
transform: translate(-50%, -50%) translateY(0);
}
.slide-content h1 {
font-size: 48px;
letter-spacing: 5px;
font-weight: 300;
margin-bottom: 20px;
}
.slide-content p {
font-size: 18px;
letter-spacing: 2px;
margin-bottom: 30px;
}
.btn-primary {
padding: 12px 30px;
background: #b89765;
color: #fff;
text-decoration: none;
border-radius: 2px;
}
.carousel-dots {
position: absolute;
bottom: 30px;
left: 50%;
transform: translateX(-50%);
display: flex;
gap: 12px;
z-index: 5;
}
.dot {
width: 25px;
height: 3px;
background: rgba(255,255,255,0.4);
cursor: pointer;
transition: all 0.3s;
}
.dot.active {
background: #fff;
width: 35px;
}
const track = document.getElementById(‘carouselTrack’);
const slides = Array.from(track.children);
const dots = Array.from(document.getElementById(‘carouselDots’).children);
let currentIndex = 0;
const moveToSlide = (index) => {
track.style.transform = `translateX(-${index * 100}%)`;
slides.forEach(s => s.classList.remove(‘active’));
dots.forEach(d => d.classList.remove(‘active’));
slides[index].classList.add(‘active’);
dots[index].classList.add(‘active’);
currentIndex = index;
};
dots.forEach((dot, i) => {
dot.addEventListener(‘click’, () => {
moveToSlide(i);
resetTimer();
});
});
const nextSlide = () => moveToSlide((currentIndex + 1) % slides.length);
let timer = setInterval(nextSlide, 5000);
const resetTimer = () => {
clearInterval(timer);
timer = setInterval(nextSlide, 5000);
};
.ciya-culture-section {
–gold-color: #b89765;
–text-main: #333333;
–text-muted: #666666;
–bg-light: #fbf9f6; /* 古风淡雅米白底色 */
background-color: #ffffff;
padding: 80px 0;
width: 100%;
font-family: “Microsoft YaHei”, -apple-system, BlinkMacSystemFont, sans-serif;
}
.ciya-culture-section .container {
max-width: 1360px; /* 保持与上方精选杯模块一致的大气全宽 */
margin: 0 auto;
padding: 0 30px;
box-sizing: border-box;
}
/* 核心左右双栏布局 */
.ciya-culture-section .culture-flex-wrap {
display: flex !important;
gap: 40px !important;
align-items: stretch; /* 让左右两箱高度对齐 */
justify-content: space-between;
}
/* ==========================================
左侧:品牌故事卡片 (带图文)
========================================== */
.ciya-culture-section .story-card {
flex: 1.2; /* 稍微占宽一点 */
background-color: var(–bg-light);
display: flex !important;
align-items: center;
justify-content: space-between;
border-radius: 4px;
overflow: hidden;
border: 1px solid #f0ece6;
}
.ciya-culture-section .story-text {
padding: 40px 35px;
flex: 1;
}
.ciya-culture-section .story-text h3 {
font-size: 26px;
font-weight: 500;
color: #111;
margin: 0 0 18px 0;
letter-spacing: 3px;
}
.ciya-culture-section .story-text p {
font-size: 14px;
color: var(–text-muted);
line-height: 1.8;
margin: 0 0 30px 0;
letter-spacing: 1px;
}
.ciya-culture-section .btn-more {
display: inline-block;
padding: 8px 30px;
border: 1px solid var(–gold-color);
color: var(–gold-color);
text-decoration: none;
font-size: 13px;
letter-spacing: 1px;
transition: all 0.3s ease;
}
.ciya-culture-section .btn-more:hover {
background-color: var(–gold-color);
color: #ffffff;
}
/* 故事图片容器 */
.ciya-culture-section .story-img-box {
width: 45%;
height: 100%;
min-height: 320px;
overflow: hidden;
}
.ciya-culture-section .story-img-box img {
width: 100% !important;
height: 100% !important;
object-fit: cover !important;
display: block !important;
}
/* ==========================================
右侧:三大工艺核心网格
========================================== */
.ciya-culture-section .craft-card {
flex: 1;
background-color: var(–bg-light);
border-radius: 4px;
border: 1px solid #f0ece6;
display: flex !important;
align-items: center;
justify-content: space-around;
padding: 20px;
}
.ciya-culture-section .craft-item {
text-align: center;
flex: 1;
padding: 10px;
position: relative;
}
/* 工
/* 模块整体背景 */
.product-showcase {
width: 100%;
background-color: #f8f9fa;
padding: 60px 0;
font-family: “Microsoft YaHei”, sans-serif;
}
/* 容器加宽 */
.showcase-container {
max-width: 1400px;
margin: 0 auto;
padding: 0 20px;
text-align: center;
}
.showcase-title {
font-size: 36px;
font-weight: bold;
color: #333;
margin-bottom: 10px;
}
.showcase-subtitle {
font-size: 16px;
color: #666;
margin-bottom: 50px;
position: relative;
display: inline-block;
}
.showcase-subtitle::after {
content: “”;
display: block;
width: 60px;
height: 3px;
background-color: #007bff;
margin: 15px auto 0;
}
/* — 产品网格布局 — */
.product-grid {
display: flex;
flex-wrap: wrap;
gap: 30px;
justify-content: flex-start;
}
/* 单个产品卡片 */
.product-card {
background: #fff;
width: 31.3%;
border-radius: 8px;
overflow: hidden;
transition: all 0.3s ease;
cursor: pointer;
border: 1px solid #eee;
text-decoration: none;
display: block;
margin-bottom: 10px;
}
.product-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 30px rgba(0,0,0,0.15);
border-color: #007bff;
}
/* 图片区域 */
.p-img-box {
width: 100%;
height: 350px;
overflow: hidden;
background: #f0f0f0;
position: relative;
}
.p-img-box img {
width: 100% !important;
height: 100% !important;
object-fit: cover !important;
transition: 0.5s;
display: block !important;
border: none !important;
margin: 0 !important;
padding: 0 !important;
}
.product-card:hover .p-img-box img {
transform: scale(1.05);
}
/* 文字区域 */
.p-info {
padding: 25px 20px;
text-align: center;
}
.p-name {
font-size: 20px;
font-weight: bold;
color: #333;
margin-bottom: 10px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.p-desc {
font-size: 14px;
color: #888;
margin-bottom: 20px;
}
.p-btn {
display: inline-block;
padding: 8px 30px;
border: 1px solid #007bff;
color: #007bff;
border-radius: 30px;
font-size: 15px;
transition: 0.3s;
}
.product-card:hover .p-btn {
background-color: #007bff;
color: #fff;
}
/* 手机端适配 */
@media (max-width: 768px) {
.product-card {
width: 100%;
margin-bottom: 20px;
}
.p-img-box {
height: 250px;
}
.showcase-container {
padding: 0 15px;
}
.product-grid {
justify-content: center;
}
}
工厂直供 · 热销推荐
自有模具 500+ 款 · 支持来图开模定制
.ciya-products-module-fixed {
–gold-color: #b89765;
–text-main: #333333;
–text-muted: #777777;
background-color: #ffffff;
padding: 80px 0;
width: 100%;
font-family: “Microsoft YaHei”, -apple-system, BlinkMacSystemFont, sans-serif;
}
.ciya-products-module-fixed .container {
max-width: 1240px;
margin: 0 auto;
padding: 0 20px;
}
.ciya-products-module-fixed .section-header {
text-align: center;
margin-bottom: 60px;
}
.ciya-products-module-fixed .section-header h3 {
font-size: 30px;
font-weight: 400;
letter-spacing: 4px;
color: #111;
margin: 0 0 12px 0;
}
.ciya-products-module-fixed .section-header p {
font-size: 14px;
color: var(–text-muted);
letter-spacing: 2px;
margin: 0;
}
/* 核心横向排版:防止被后台拆散 */
.ciya-products-module-fixed .products-grid {
display: flex !important;
gap: 25px !important;
justify-content: space-between !important;
flex-direction: row !important;
}
.ciya-products-module-fixed .product-item {
flex: 1;
background: #ffffff;
border: 1px solid #e8e8e8;
text-align: center;
transition: all 0.4s ease;
box-sizing: border-box;
}
.ciya-products-module-fixed .product-item:hover {
border-color: var(–gold-color);
transform: translateY(-8px);
box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}
/* 修复后的图片容器 */
.ciya-products-module-fixed .img-box {
width: 100%;
height: 260px;
background-color: #f9f9f9;
overflow: hidden;
display: block;
}
/* 强制图片正确渲染 */
.ciya-products-module-fixed .img-box img {
width: 100% !important;
height: 100% !important;
object-fit: cover !important;
display: block !important;
}
.ciya-products-module-fixed .info-box {
padding: 25px 15px;
}
.ciya-products-module-fixed .info-box h4 {
font-size: 18px;
font-weight: 400;
color: #222;
margin: 0 0 10px 0;
letter-spacing: 2px;
}
.ciya-products-module-fixed .info-box .price-tag {
font-size: 14px;
color: var(–gold-color);
font-weight: 500;
margin-bottom: 25px;
}
.ciya-products-module-fixed .buy-btn {
display: inline-block;
padding: 6px 30px;
border: 1px solid var(–gold-color);
color: var(–gold-color);
font-size: 13px;
text-decoration: none;
transition: all 0.3s;
background: transparent;
}
.ciya-products-module-fixed .buy-btn:hover {
background-color: var(–gold-color);
color: #ffffff;
}
@media (max-width: 992px) {
.ciya-products-module-fixed .products-grid { flex-wrap: wrap !important; }
.ciya-products-module-fixed .product-item { flex: calc(50% – 13px) !important; margin-bottom: 25px; }
}
@media (max-width: 576px) {
.ciya-products-module-fixed .product-item { flex: 100% !important; }
}
.ciya-dehua-section {
–gold: #b89765;
–text: #222;
–muted: #777;
–bg: #fbf9f6;
width: 100%;
padding: 80px 0;
background: #fff;
font-family: “Microsoft YaHei”, -apple-system, BlinkMacSystemFont, sans-serif;
}
.ciya-dehua-section .container {
max-width: 1200px;
margin: 0 auto;
padding: 0 24px;
}
/* 主结构 */
.ciya-dehua-wrap {
display: flex;
align-items: center;
gap: 60px;
}
/* 左侧文字 */
.ciya-dehua-text {
flex: 1;
}
.ciya-dehua-tag {
display: inline-block;
font-size: 12px;
letter-spacing: 2px;
color: var(–gold);
border: 1px solid var(–gold);
padding: 4px 10px;
margin-bottom: 18px;
}
.ciya-dehua-title {
font-size: 32px;
font-weight: 600;
color: var(–text);
margin: 0 0 18px 0;
letter-spacing: 2px;
}
.ciya-dehua-desc {
font-size: 14px;
line-height: 1.9;
color: var(–muted);
margin-bottom: 30px;
}
.ciya-dehua-btn {
display: inline-block;
padding: 10px 26px;
border: 1px solid var(–gold);
color: var(–gold);
text-decoration: none;
font-size: 13px;
transition: 0.3s;
}
.ciya-dehua-btn:hover {
background: var(–gold);
color: #fff;
}
/* 右侧图片 */
.ciya-dehua-image {
flex: 1;
position: relative;
}
.ciya-dehua-image img {
width: 100%;
height: 420px;
object-fit: cover;
border-radius: 8px;
display: block;
}
/* 装饰金色线条 */
.ciya-dehua-image::before {
content: “”;
position: absolute;
top: -12px;
left: -12px;
width: 80px;
height: 80px;
border-top: 2px solid var(–gold);
border-left: 2px solid var(–gold);
}
.ciya-dehua-image::after {
content: “”;
position: absolute;
bottom: -12px;
right: -12px;
width: 80px;
height: 80px;
border-bottom: 2px solid var(–gold);
border-right: 2px solid var(–gold);
}
/* 响应式 */
@media (max-width: 900px) {
.ciya-dehua-wrap {
flex-direction: column;
gap: 30px;
}
.ciya-dehua-image img {
height: 280px;
}
.ciya-dehua-title {
font-size: 26px;
}
}
/* 自定义页脚容器样式 – 强制取消所有可能出现的边框线 */
.my-custom-footer {
display: block !important;
background-color: #2d2d2d;
color: #cccccc;
font-family: “Microsoft YaHei”, sans-serif;
padding: 60px 0 20px 0;
font-size: 14px;
line-height: 2.0;
position: relative;
z-index: 99;
clear: both;
border-top: none !important; /* 彻底去除顶部线条 */
border-bottom: none !important; /* 彻底去除底部线条 */
}
.footer-container {
max-width: 1400px;
margin: 0 auto;
padding: 0 20px 40px;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
gap: 40px;
border: none !important; /* 删除了原本这里的 border-bottom 线条 */
}
.footer-col {
flex: 1;
min-width: 220px;
text-align: center;
}
.footer-title {
color: #ffffff;
font-size: 18px;
font-weight: bold;
margin-bottom: 20px;
padding-bottom: 10px;
border-bottom: 2px solid #007bff; /* 保留标题下方的小蓝块,如不需要也可以去掉 */
display: inline-block;
}
.footer-links a {
display: block;
color: #cccccc;
text-decoration: none;
margin-bottom: 5px;
transition: 0.3s;
}
.footer-links a:hover { color: #007bff; }
.footer-text, .contact-row {
color: #999;
font-size: 13px;
line-height: 1.8;
}
/* 二维码样式 */
.col-qrcode {
display: flex;
flex-direction: column;
align-items: center;
}
.footer-qrcode-img {
width: 130px;
height: 130px;
background: #fff;
padding: 5px;
border-radius: 4px;
}
/* 备案信息条 */
.beian-bar {
text-align: center;
padding: 25px 0;
font-size: 13px;
color: #666;
border: none !important; /* 确保备案区无边框 */
}
.beian-bar a {
text-decoration: none;
color: #666;
margin: 0 10px;
display: inline-flex;
align-items: center;
}
.beian-bar a:hover { color: #007bff; }
.beian-bar img {
width: 16px;
height: 16px;
margin-right: 4px;
vertical-align: middle;
}
DEHUA PORCELAIN
德化白瓷 传承千年
德化白瓷,中国四大名瓷之一,以“白如雪、明如镜、薄如纸、声如磬”著称。
从选土、成型到1300℃高温烧制,每一只主人杯,都是时间与匠心的结晶。
了解更多 →
从选土、成型到1300℃高温烧制,每一只主人杯,都是时间与匠心的结晶。







