/* ========================================
   大猫团建 - 首页样式表
   ======================================== */

/* 全局样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


@keyframes breathe {
    0% {
        transform: scale(1);      /* 初始状态：正常大小 */
    }
    50% {
        transform: scale(1.1);    /* 中间状态：放大 10%（可根据需求调整） */
    }
    100% {
        transform: scale(1);      /* 结束状态：恢复正常大小 */
    }
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #fff;
}

.detail-section span {
  text-wrap-mode: wrap !important;       /* 覆盖原有的 nowrap */
  white-space: normal !important;        /* 强制允许正常换行 */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

/*分页*/

.page-num{
	border: 1px #eaeaea solid;
	padding: 2px 10px;
	border-radius: 4px;
}
.page-num-current{
	color: #fff;
	background: #C30105
}

/* ========================================
   头部导航
   ======================================== */
.header {
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo img {
    height: 60px;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #333;
    font-size: 18px;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #DA251C;
    font-weight: 600;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #DA251C;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone {
    color: #666;
    font-size: 14px;
    font-weight: 600;
}
.phone::before {
  content: '\1F4DE'; /* 电话图标的 Unicode */
  margin-right: 2px; /* 图标与数字之间的间距 */
}

/* 按钮样式 */
.btn-primary {
    background-color: #DA251C;
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: #DA251C;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 184, 0, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: #333;
    border: 1px solid #ddd;
    padding: 12px 40px;
    border-radius: 25px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-outline:hover {
    border-color: #DA251C;
    color: #DA251C;
}

/* ========================================
   主视觉Banner
   ======================================== */
.hero-banner {
    position: relative;
  
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    z-index: 999999;position: absolute;  transform: translate(-50%, -50%); left: 50%; top: 70%;
}

.hero-title {
    font-size: 56px;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 0%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-tags {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.tag {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    backdrop-filter: blur(10px);
}

.search-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
    padding: 8px;
    border-radius: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.search-select {
    border: none;
    padding: 10px 15px;
    font-size: 14px;
    color: #666;
    border-radius: 20px;
    cursor: pointer;
}

.search-input {
    flex: 1;
    border: none;
    padding: 10px 15px;
    font-size: 14px;
    outline: none;
}

.search-btn {
    background-color: #DA251C;
    color: #fff;
    border: none;
    padding: 10px 30px;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.search-btn:hover {
    background-color: #FFA500;
}

/* ========================================
   服务流程
   ======================================== */
.process-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.process-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background-color: #fff;
    padding: 25px;
    border-radius: 12px;
    transition: all 0.3s;
}

.process-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.process-icon img {
    width: 50px;
    height: 50px;
}

.process-info h3 {
    font-size: 16px;
    color: #333;
    margin-bottom: 8px;
}

.process-info p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

.link {
    color: #FF6B35;
    text-decoration: underline;
}

/* ========================================
   热门团建产品
   ======================================== */
.products-section {
    padding: 40px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-title {
    font-size: 32px;
    color: #333;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::before,
.section-title::after {
    content: '✦';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #DA251C;
    font-size: 20px;
}

.section-title::before {
    left: -30px;
}

.section-title::after {
    right: -30px;
}

.section-subtitle {
    font-size: 14px;
    color: #999;
}

.product-category {
    margin-bottom: 50px;
    display: flex;
    gap: 20px;
    align-items: stretch;
}

.category-header {
    padding: 30px;
    border-radius: 12px;
    color: #fff;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    width: 240px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    flex: 1;
}

.category-summer {
   
   background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    
}

.category-theme {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.category-premium {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.category-travel {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.category-header h3 {
    font-size: 28px;
    margin-bottom: 10px;
    border-bottom: 2px solid #fff;
}

.category-header p {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 15px;
    position: relative;
}

.rotundity{
    position: absolute;
    top: -50px;
    left: -50px;
    width: 150px;
    height: 150px;
    border-radius: 150px;
    background: rgba(255, 255, 255, 0.2);
}

.category-header ul {
    list-style: none;
}

.category-header ul li {
    font-size: 13px;
    margin-bottom: 5px;
    opacity: 0.8;
}

.category-header ul li::before {
    content: '▸';
    margin-right: 8px;
}

.product-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-info {
    padding: 20px;
}

.product-info h4 {
    font-size: 15px;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.5;
    height: 45px;
    overflow: hidden;
}

.product-info p {
    font-size: 13px;
    color: #999;
    margin-bottom: 15px;
}

.product-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 12px;
    color: #666;
}

.product-price {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.price {
    font-size: 24px;
    font-weight: 700;
    color: #FF6B35;
}

.unit {
    font-size: 13px;
    color: #999;
}

.view-all {
    text-align: center;
    margin-top: 40px;
}

/* ========================================
   视频展示区
   ======================================== */
.video-section {
    padding: 40px 0;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 1024px) {
    .video-item {
        width: calc(50% - 10px) !important;
    }
}

/* 4. 手机端（≤768px）改为1列 */
@media (max-width: 768px) {
    .video-item {
        width: calc(100% - 0px) !important;
    }
    .video-section {
        padding: 0;
    }
}

.video-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 300px;
}

.video-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s;
}

.video-item:hover .video-overlay {
    background: rgba(0, 0, 0, 0.6);
}

.play-btn {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    margin-bottom: 20px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s;
}

.play-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-left: 20px solid #FF6B35;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
}

.video-item:hover .play-btn {
    transform: scale(1.1);
}

.video-overlay h3 {
    font-size: 24px;
    text-align: center;
    line-height: 1.4;
}

/* ========================================
   热门团建目的地
   ======================================== */
.destinations-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 15px;
}

.destination-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.destination-card.large {
    grid-row: span 2;
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s;
}

.destination-card:hover img {
    transform: scale(1.1);
}

.destination-name {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* ========================================
   客户服务案例
   ======================================== */
.cases-section {
    padding: 80px 0;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.case-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.case-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.case-info {
    padding: 20px;
}

.case-info h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

.case-info p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.brand-item {
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.brand-item:hover {
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.brand-item img {
    max-width: 100%;
    max-height: 40px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s;
}

.brand-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* ========================================
   我们的优势
   ======================================== */
.advantages-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.advantages-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.advantages-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.advantages-desc {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.9;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.8;
}

.advantages-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* ========================================
   团队成员
   ======================================== */
.team-section {
    padding: 80px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.team-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.team-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all 0.3s;
}

.team-card:hover img {
    transform: scale(1.1);
}

.team-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #fff;
}

.team-info h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.team-info p {
    font-size: 13px;
    opacity: 0.8;
}

/* ========================================
   服务特色
   ======================================== */
.features-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-item {
    text-align: center;
}

.feature-icon img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
}

.feature-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}

/* ========================================
   底部信息
   ======================================== */
.footer {
    background-color: #2c2c2c;
    color: #fff;
    padding: 60px 0 30px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 40px;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 10px;
}

.footer-logo p {
    font-size: 13px;
    opacity: 0.7;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-contact span:first-child {
    font-size: 13px;
    opacity: 0.7;
}

.phone-number {
    font-size: 24px;
    font-weight: 700;
    color: #DA251C;
}

.footer-form {
    display: flex;
    gap: 10px;
}

.footer-form input {
    padding: 10px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 20px;
    font-size: 13px;
    outline: none;
}

.footer-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.btn-code {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-code:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.link-column h4 {
    font-size: 15px;
    margin-bottom: 20px;
    color: #DA251C;
}

.link-column a,
.link-column p {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
    transition: color 0.3s;
}

.link-column a:hover {
    color: #DA251C;
}

.qr-codes {
    display: flex;
    gap: 20px;
}

.qr-item {
    text-align: center;
}

.qr-item img {
    width: 100px;
    height: 100px;
    margin-bottom: 10px;
    background-color: #fff;
    padding: 5px;
    border-radius: 8px;
}

.qr-item p {
    font-size: 12px;
    opacity: 0.7;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 2;
}

/* ========================================
   侧边栏
   ======================================== */
.sidebar {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
}

.sidebar-item {
    background-color: #DA251C;
    color: #fff;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.sidebar-item:hover {
    transform: scale(1.1);
}

.sidebar-item img {
    width: 30px;
    height: 30px;
    margin-bottom: 5px;
}

.sidebar-item span {
    display: block;
    font-size: 12px;
}

/* ========================================
   响应式设计
   ======================================== */

/* 平板设备 */
@media (max-width: 1024px) {
    .nav {
        gap: 20px;
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .brands-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 移动设备 */
@media (max-width: 768px) {

    .hero-content{display: none;}
    
    .product-category {
        flex-direction: column;
    }
    
    .category-header {
        width: 100%;
        margin-bottom: 0;
    }
    
    .header-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .destinations-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    
    .destination-card.large {
        grid-row: span 1;
    }
    
    .cases-grid {
        grid-template-columns: 1fr;
    }
    
    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .advantages-content {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sidebar {
        display: none;
    }
}

/* 小屏移动设备 */
@media (max-width: 480px) {
	.logo{display: none}
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-form {
        flex-direction: column;
    }
}
