.aboutbg {
position: relative;
color: #2c2418;
line-height: 1.6;
min-height:92vh;
padding: 100px 0 50px;
background: linear-gradient(145deg, #fef7e8 0%, #fff4e4 100%);}
/* 暖色基底替代透明层，阅读更舒适 */
/* 柔和纹理装饰 (提升自然感) */
.aboutbg::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image: radial-gradient(rgba(212, 167, 106, 0.08) 1px, transparent 1px);
background-size: 28px 28px;
pointer-events: none;
z-index: 0;
}
/* 主容器优化: 增加微光晕 + 呼吸空间 */
.about-main-container {
max-width: 1560px;
width:100%;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
gap:40px;
position: relative;
z-index: 2;
backdrop-filter: blur(0px);
animation: about-fadeIn 0.9s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}
/* 左侧卡片质感 (自然白瓷质感) */
.about-intro-section {
flex: 0 0 58%;
background: rgba(255, 252, 245, 0.85);
backdrop-filter: blur(2px);
border-radius:10px;
padding:40px 50px;
box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.02);
transition: transform 0.3s ease, box-shadow 0.3s ease;
border: 1px solid rgba(212, 167, 106, 0.25);
}
.about-intro-section:hover {
box-shadow: 0 28px 40px -16px rgba(0, 0, 0, 0.12);
transform: translateY(-3px);
}
/* 右侧区域精致化 */
.about-right-section {
flex: 1;
display: flex;
flex-direction: column;
gap: 32px;
min-width: 300px;
}
/* 标题典雅细腻 */
.about-section-title {
font-size: 2.2rem;
margin-bottom: 20px;
padding-bottom: 14px;
border-bottom: 2px solid #d4a76a;
position: relative;
font-weight: 700;
letter-spacing: -0.2px;
color: #3e2a1f;
}
.about-section-title:after {
content: '';
position: absolute;
width: 80px;
height: 3px;
background: #c28a3e;
bottom: -2px;
left: 0;
border-radius: 4px;
}
/* 正文阅读优化 */
.about-intro-content {
font-size: 1.1rem;
color: #2b2a28;
}
.about-intro-content p {
margin-bottom: 1.5rem;
text-align: justify;
line-height: 1.7;
}
.about-highlight {
color: #b56a2c;
font-weight: 700;
background: linear-gradient(120deg, rgba(212, 167, 106, 0.12), transparent 60%);
padding: 0 4px;
border-radius: 8px;
}
/* 地理位置板块 —— 特色古朴 */
.about-history-facts {
background: #fef3e2;
border-left: 5px solid #d4a76a;
padding: 18px 26px;
margin: 30px 0 20px;
border-radius: 28px 12px 28px 12px;
box-shadow: 0 6px 14px rgba(0, 0, 0, 0.02);
transition: all 0.25s;
}
.about-history-facts h3 {
color: #9b5e2c;
margin-bottom: 12px;
font-size: 1.35rem;
display: flex;
align-items: center;
gap: 10px;
}
.about-history-facts p {
margin-bottom: 0;
font-weight: 450;
}
/* 荣誉徽章柔和风格 */
.about-historical-badges {
display: flex;
flex-wrap: wrap;
gap: 14px;
margin-top: 28px;
}
.about-badge {
background: rgba(212, 167, 106, 0.18);
color: #7a481f;
padding: 8px 20px;
border-radius: 60px;
font-weight: 550;
display: inline-flex;
align-items: center;
gap: 8px;
backdrop-filter: blur(2px);
border: 0.5px solid rgba(212, 167, 106, 0.4);
transition: all 0.2s;
font-size: 0.9rem;
}
.about-badge i {
color: #c28a3e;
font-size: 0.9rem;
}
.about-badge:hover {
background: rgba(212, 167, 106, 0.35);
transform: translateY(-2px);
}
/* ========= 相册区域 (优雅 3D 轻质感) ========= */
.about-gallery-section {
border-radius:15px;
overflow: hidden;
background: #fffbf4;
box-shadow: 0 12px 28px -10px rgba(0, 0, 0, 0.1);
transition: all 0.2s;
}
.about-gallery-title {
background: linear-gradient(105deg, #c6934b 0%, #b57a38 100%);
color: white;
padding: 14px 24px;
font-size: 1.3rem;
font-weight: 600;
letter-spacing: 1px;
display: flex;
align-items: center;
gap: 12px;
}
.about-gallery-container {
position: relative;
height: 340px;
overflow: hidden;
background: #e9dfcf;
}
.about-slides {
position: relative;
height: 100%;
width: 100%;
}
.about-slide {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0;
transition: opacity 0.9s cubic-bezier(0.2, 0.9, 0.4, 1.1);
background-size: cover;
background-position: center 30%;
background-repeat: no-repeat;
transform: scale(1.02);
filter: brightness(0.98);
}
.about-slide.active {
opacity: 1;
transform: scale(1);
transition: opacity 0.9s ease, transform 0.6s ease;
}
/* 信息浮层柔化 */
.about-slide-info {
position: absolute;
bottom: 0;
left: 0;
right: 0;
background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.2) 70%, transparent);
color: white;
padding: 22px 20px 18px;
transform: translateY(0);
transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
backdrop-filter: blur(2px);
}
.about-slide:hover .about-slide-info {
transform: translateY(-4px);
background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.35));
}
.about-slide-info h3 {
font-size: 1.3rem;
font-weight: 600;
margin-bottom: 6px;
letter-spacing: 1px;
}
/* 控制按钮精致圆润 */
.about-gallery-controls {
display: flex;
justify-content: space-between;
position: absolute;
top: 50%;
transform: translateY(-50%);
width: 100%;
padding: 0 20px;
z-index: 10;
pointer-events: none;
}
.about-gallery-btn {
pointer-events: auto;
background-color: rgba(45, 35, 25, 0.7);
backdrop-filter: blur(4px);
color: #f0e0c0;
border: none;
width: 46px;
height: 46px;
border-radius: 60px;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.3rem;
transition: all 0.25s ease;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.about-gallery-btn:hover {
background-color: #c28a3e;
color: white;
transform: scale(1.08);
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
/* 指示器 (灵动圆点) */
.about-slide-indicators {
position: absolute;
bottom: 18px;
left: 0;
right: 0;
display: flex;
justify-content: center;
gap: 12px;
z-index: 12;
}
.about-indicator {
width: 10px;
height: 10px;
border-radius: 50%;
background-color: rgba(255, 245, 225, 0.65);
cursor: pointer;
transition: all 0.25s ease;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}
.about-indicator.active {
background-color: #f5bc70;
width: 28px;
border-radius: 20px;
box-shadow: 0 0 8px rgba(212, 167, 106, 0.6);
}
/* 右侧按钮区域 (玻璃质感 + 优雅动效) */
.about-button-section {
display: flex;
flex-direction: column;
gap: 20px;
}
.about-action-btn {
display: flex;
align-items: center;
gap: 20px;
padding: 20px 30px;
background: rgba(255, 250, 240, 0.9);
backdrop-filter: blur(4px);
border: 1px solid rgba(212, 168, 106, 0.45);
border-radius:12px;
cursor: pointer;
transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.2);
text-decoration: none;
color: #3e2a1f;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}
.about-action-btn:hover {
background: linear-gradient(105deg, #fef1df, #fff7ed);
border-color: #d4a76a;
transform: translateY(-5px);
box-shadow: 0 18px 28px -12px rgba(160, 100, 30, 0.2);
}
.about-btn-icon {
font-size: 2.2rem;
color: #c28a3e;
transition: transform 0.25s;
}
.about-action-btn:hover .about-btn-icon {
transform: scale(1.08);
color: #b3621a;
}
.about-btn-text h3 {
font-size: 1.35rem;
margin-bottom: 6px;
font-weight: 700;
}
.about-btn-text p {
font-size: 0.9rem;
opacity: 0.8;
margin: 0;
}
/* 动画定义 (优雅入场) */
@keyframes about-fadeIn {
from {
opacity: 0;
transform: translateY(18px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@keyframes about-slideInLeft {
from {
opacity: 0;
transform: translateX(-28px);
}
to {
opacity: 1;
transform: translateX(0);
}
}
@keyframes about-scaleIn {
from {
opacity: 0;
transform: scale(0.96);
}
to {
opacity: 1;
transform: scale(1);
}
}
/* 响应式 — 自然流畅 */
@media (max-width: 1100px) {
.about-main-container {
width: 94%;
gap: 30px;
}
.about-intro-section {
flex: 0 0 55%;
padding: 32px 32px;
}
}
@media (max-width: 992px) {
.about-main-container {
flex-direction: column;
}
.about-intro-section {
flex: 0 0 100%;
border-radius: 40px;
}
.about-right-section {
flex: 0 0 100%;
}
.about-gallery-container {
height: 360px;
}
}
@media (max-width: 768px) {
.aboutbg {
padding: 20px 0 45px;
}
.about-intro-section,
.about-right-section {
}
.about-section-title {
font-size: 1.9rem;
}
.about-gallery-container {
height: 280px;
}
.about-action-btn {
padding: 16px 24px;
gap: 18px;
}
.about-btn-icon {
font-size: 1.8rem;
}
.about-btn-text h3 {
font-size: 1.2rem;
}
}
@media (max-width: 560px) {
.about-intro-section {
padding: 24px 18px;
}
.about-gallery-container {
height: 240px;
}
.about-history-facts {
padding: 14px 18px;
}
.about-badge {
padding: 5px 14px;
font-size: 0.8rem;
}
}
/* 玩转杨家城模块 - 全新样式 */
.yangjia-module {
position: relative;
width: 100%;
min-height:700px;
margin: 0 auto;
padding:100px 50px;
overflow: hidden;
background-color: #2c2418; /* 备用背景色 */
display: flex;
align-items: center;
justify-content: center;
}
/* 动态背景层 (带轻微缩放动画) */
.module-bg-animate {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image: url('../../Public/images/zs.jpg');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
z-index: 0;
animation: slowScale 20s ease-in-out infinite alternate;
transform-origin: center;
}
@keyframes slowScale {
0% {
transform: scale(1);
}
100% {
transform: scale(1.08);
}
}
/* 内容容器 (相对定位，置于背景之上) */
.module-container {
position: relative;
z-index: 2;
max-width: 1000px;
width: 100%;
margin: 0 auto;
text-align: center;
}
/* 主标题样式 (移除原eng-title) */
.module-title {
font-size: 3rem;
font-weight:700;
color: #fff;
text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
margin-bottom: 30px;
letter-spacing: 2px;
}
/* 透明信息卡片 */
.info-card {
background: rgba(255, 248, 235, 0.28);
backdrop-filter: blur(2px);
border-radius:24px;
padding:25px 35px;
margin:150px auto;
box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.25);
border:0px solid rgba(212, 167, 106, 0.5);
transition: transform 0.3s ease, box-shadow 0.3s ease;
text-align: left;
}
.info-card:hover {
transform: translateY(-3px);
box-shadow: 0 28px 40px -16px rgba(0, 0, 0, 0.35);
}
.info-card p {
font-size: 1.05rem;
line-height: 1.75;
color: #2c2418;
margin: 0;
text-align: justify;
}
/* 四个链接按钮容器 */
.link-buttons {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 24px;
margin-top: 20px;
}
/* 单个链接按钮 (保持原有卡片风格，改为a标签) */
.link-btn {
flex: 1;
min-width: 200px;
max-width: 240px;
background: rgba(255, 252, 245, 0.95);
backdrop-filter: blur(2px);
border-radius: 16px;
padding: 20px 15px;
text-decoration: none;
transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.2);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
border: 1px solid rgba(212, 167, 106, 0.4);
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
}
.link-btn:hover {
transform: translateY(-8px);
background: #fffef7;
border-color: #b56a2c;
box-shadow: 0 18px 28px -12px rgba(139, 69, 19, 0.3);
}
.link-btn .btn-icon {
font-size: 2.4rem;
color: #b56a2c;
margin-bottom:5px;
transition: transform 0.2s;
}
.link-btn:hover .btn-icon {
transform: scale(1.08);
color: #8b4513;
}
.link-btn .btn-title {
font-size: 1.3rem;
font-weight: 700;
color: #3e2a1f;
margin-bottom: 6px;
}
.link-btn .btn-desc {
font-size: 0.85rem;
color: #7a6a5f;
line-height: 1.4;
}
/* 响应式调整 */
@media (max-width: 992px) {
.yangjia-module {
padding: 50px 20px;
min-height: 550px;
}
.module-title {
font-size: 2.5rem;
}
.info-card {
padding: 24px 28px;
margin-bottom: 40px;
}
.info-card p {
font-size: 1rem;
}
.link-buttons {
gap: 18px;
}
.link-btn {
min-width: 170px;
padding: 18px 12px;
}
.link-btn .btn-icon {
font-size: 2rem;
}
.link-btn .btn-title {
font-size: 1.2rem;
}
}
@media (max-width: 768px) {
.yangjia-module {
padding: 40px 16px;
min-height: auto;
}
.module-title {
font-size: 2rem;
margin-bottom: 20px;
}
.info-card {
padding: 20px 22px;
margin-bottom: 32px;
border-radius: 20px;
}
.info-card p {
font-size: 0.95rem;
line-height: 1.65;
}
.link-buttons {
gap: 14px;
flex-direction: column;
align-items: center;
}
.link-btn {
width: 100%;
max-width: 280px;
flex-direction: row;
justify-content: flex-start;
gap: 18px;
padding: 16px 20px;
text-align: left;
}
.link-btn .btn-icon {
margin-bottom: 0;
font-size: 1.8rem;
}
.link-btn .btn-text {
text-align: left;
}
.link-btn .btn-title {
font-size: 1.1rem;
}
.link-btn .btn-desc {
font-size: 0.8rem;
}
}
@media (max-width: 480px) {
.module-title {
font-size: 1.8rem;
}
.info-card {
padding: 16px 18px;
}
.info-card p {
font-size: 0.9rem;
}
.link-btn {
padding: 14px 18px;
gap: 14px;
}
.link-btn .btn-icon {
font-size: 1.6rem;
}
}