/*全局*/
* {
	margin: 0;
	padding: 0;
    box-sizing: border-box;
    font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
}

a{
	text-decoration:none;
}

:root {
    --primary: #0D53C2;
    --secondary: #0A43A0;
    --light: #F2F7FF;
    --dark: #222;
}
/* 移动端 */
@media (max-width: 768px) {
.nav-menu { gap: 16px; }
.slider { height: 300px; }
.slide-text h2 { font-size: 26px; }
.attraction-list { grid-template-columns: 1fr; }
.food-banner { height: 200px; }
.banner-content h1 { font-size: 28px; }
.banner-content p { font-size: 16px; }
.food-list { grid-template-columns: 1fr; }
.food-img { height: 180px; }
.footer-container { flex-direction: column; }
}

body {
    background-color: #f9fbfd;
    color: #333;
    line-height: 1.6;
}

/* 导航栏 */
.navbar {
    background: white;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 9999;
}
.nav-container {
    width: 96%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
}
.logo {
    font-size: 22px;
    font-weight: bold;
    color: var(--primary);
}
.nav-menu {
    display: flex;
    gap: 32px;
     list-style: none;
}
.nav-menu a {
    text-decoration: none;
    color: #444;
    font-weight: 500;
    transition: 0.3s;
}
.nav-menu a:hover {
    color: var(--primary);
}
.nav-btn {
    padding: 8px 16px;
    background: var(--primary);
    color: white !important;
    border-radius: 8px;
}
.nav-btn:hover {
    background: var(--secondary);
}
.container {
    max-width: 96%;
    margin: 0 auto;
    padding: 20px;
}
/*首页*/
/* 首页轮播banner - 核心视觉区 */
.hero-banner {
    width: 100%;
    height: 600px;
    background: linear-gradient(rgba(13, 83, 194, 0.7), rgba(10, 67, 160, 0.7)),url('/static/images/3.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
}
.hero-content {
    max-width: 800px;
    padding: 0 20px;
}
.hero-title {
    font-size: 52px;
    margin-bottom: 20px;
    text-shadow: 0 3px 10px rgba(0,0,0,0.3);
    line-height: 1.2;
}
.hero-desc {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.hero-btn {
    display: inline-block;
    padding: 12px 30px;
    background: white;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.hero-btn:hover {
    background: var(--light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* 通用容器与标题样式 */
.section-title {
    text-align: center;
    margin: 0 0 16px;
    font-size: 32px;
    color: var(--dark);
    position: relative;
}
.section-title::after {
    content: "";
    width: 60px;
    height: 4px;
    background: var(--primary);
    display: block;
    margin: 16px auto 0;
    border-radius: 2px;
}
.section-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 18px;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* 核心服务模块 - 四大分类入口 */
.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-bottom: 80px;
}
.service-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(13, 83, 194, 0.12);
}
.service-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.service-content {
    padding: 24px;
    text-align: center;
}
.service-icon {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 16px;
}
.service-title {
    font-size: 22px;
    color: var(--dark);
    margin-bottom: 12px;
    font-weight: 600;
}
.service-desc {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.7;
}

/* 精选内容展示区 - 各模块精选内容 */
.featured-section {
    background: white;
    padding: 60px 0;
    margin: 40px 0;
}
.featured-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 28px;
}
.featured-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}
.featured-card:hover {
    transform: translateY(-5px);
}
.featured-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.featured-content {
    padding: 20px;
}
.featured-tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--light);
    color: var(--primary);
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 10px;
}
.featured-title {
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 8px;
    font-weight: 600;
}
.featured-desc {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.6;
}

/* 攻略推荐模块 - 列表样式 */
.guide-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}
.guide-item {
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}
.guide-item:hover {
    transform: translateY(-3px);
}
.guide-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.guide-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}
.guide-author {
    font-size: 14px;
    color: var(--dark);
    font-weight: 500;
}
.guide-date {
    font-size: 12px;
    color: var(--gray);
}
.guide-title {
    font-size: 16px;
    color: var(--dark);
    margin-bottom: 8px;
    font-weight: 600;
}
.guide-desc {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}

/* 景点-轮播图 */
.slider {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}
.slides {
	width: 300%;
    height: 100%;
    display: flex;
    transition: 0.6s;
}
.slide {
    width: 100%;
    height: 100%;
    position: relative;
}
.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.slide-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}
.slide-text h2 {
    font-size: 42px;
    margin-bottom: 12px;
}
.slide-text p {
    font-size: 18px;
}
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.3);
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
}
.prev { left: 20px; }
.next { right: 20px; }
.dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}
.dot {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
}
.dot.active {
    background: white;
}

/* 网格布局 */
.attraction-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

/* 卡片 */
.card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.35s ease;
}
.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
}

/* 统一景点图片 */
.card-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

/* 卡片头部 */
.card-head {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f2f2f2;
}
.card-title {
    font-size: 19px;
    font-weight: 600;
    color: #222;
}

/* 等级标签 */
.level {
    padding: 5px 11px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: bold;
}
.level-5a { background: #E63946; color: white; }
.level-4a { background: #F59E0B; color: white; }
.level-3a { background: #10B981; color: white; }
.level-0a { background: #8395A7; color: white; }

/* 卡片内容 */
.card-body { padding: 22px 24px; }
.desc {
    color: #555;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 18px;
}
.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}
.tag {
    padding: 5px 11px;
    background: #EDF4FF;
    color: var(--primary);
    border-radius: 12px;
    font-size: 12px;
}

/* 门票价格 */
.price {
    padding: 14px 0;
    border-top: 1px dashed #eee;
    font-size: 16px;
    font-weight: bold;
    color: #E63946;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}
.price::before {
    content: "💰";
    font-size: 16px;
}

.address {
    padding-top: 16px;
    border-top: 1px dashed #eee;
    font-size: 14px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 6px;
}
.address::before { content: "📍"; }

/* 联系我们 */
.contact-banner {
    width: 100%;
    height: 300px;
    background: linear-gradient(rgba(13, 83, 194, 0.8), rgba(10, 67, 160, 0.8)),url('/static/images/contact_bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}
.banner-content h1 {
    font-size: 42px;
    margin-bottom: 12px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.banner-content p {
    font-size: 18px;
    opacity: 0.9;
}

/* 联系内容布局 */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

/* 联系信息卡片 */
.contact-info {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}
.info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}
.info-icon {
    width: 40px;
    height: 40px;
    background: var(--light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
.info-text h3 {
    font-size: 18px;
    color: #222;
    margin-bottom: 8px;
}
.info-text p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}
.info-text a {
    color: var(--primary);
    text-decoration: none;
    transition: 0.3s;
}
.info-text a:hover {
    color: var(--secondary);
    text-decoration: underline;
}

/* 营业时间 */
.business-hours {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px dashed #eee;
}
.business-hours h3 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #222;
}
.hours-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.hours-item {
    flex: 1;
    min-width: 120px;
    padding: 8px 12px;
    background: var(--light);
    border-radius: 8px;
    font-size: 14px;
    color: var(--primary);
}

/* 二维码展示区域（替换原表单） */
.qrcode-section {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.qrcode-title {
    font-size: 20px;
    font-weight: 600;
    color: #222;
    margin-bottom: 30px;
    text-align: center;
}
.qrcode-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
}
.qrcode-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background: var(--light);
    border-radius: 12px;
    transition: transform 0.3s ease;
}
.qrcode-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(13, 83, 194, 0.1);
}
.qrcode-img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 12px;
    border: 1px solid #eee;
}
.qrcode-desc {
    font-size: 14px;
    color: #333;
    font-weight: 500;
    text-align: center;
    margin-bottom: 6px;
}
.qrcode-tips {
    font-size: 12px;
    color: #666;
    text-align: center;
}

/* 地图模块 */
.map-section {
    margin-top: 40px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}
.map-container {
    width: 100%;
    height: 400px;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 16px;
}

/*景点详细信息展示*/
/* 景点头部banner（轮播图区域） */
.spot-banner {
    width: 100%;
    height: 500px;
    position: relative;
    overflow: hidden;
}
.banner-slider {
    display: flex;
    width: 300%;
    height: 100%;
    transition: transform 0.5s ease;
}
.banner-slide {
    width: 100%;
    height: 100%;
}
.banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* 轮播控制按钮 */
.banner-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    color: var(--primary);
    border: none;
    z-index: 10;
}
.prev-btn {
    left: 20px;
}
.next-btn {
    right: 20px;
}
/* 轮播指示器 */
.banner-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}
.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.6);
    cursor: pointer;
    transition: background 0.3s;
}
.indicator.active {
    background: white;
    width: 30px;
    border-radius: 6px;
}
/* 景点基本信息 */
.spot-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    gap: 20px;
}
.spot-title-wrap {
    flex: 1;
}
.spot-title {
    font-size: 32px;
    color: var(--dark);
    margin-bottom: 12px;
}
.spot-tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--light);
    color: var(--primary);
    border-radius: 20px;
    font-size: 14px;
    margin-right: 8px;
    margin-bottom: 10px;
}
.spot-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 16px;
    color: var(--gray);
    font-size: 14px;
}
.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}
.meta-icon {
    color: var(--primary);
    font-size: 16px;
}

/* 景点信息卡片 */
.spot-card {
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    width: 280px;
    flex-shrink: 0;
}
.card-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--light-gray);
}
.card-item:last-child {
    border-bottom: none;
}
.card-label {
    color: var(--gray);
    font-size: 14px;
}
.card-value {
    color: var(--dark);
    font-weight: 500;
    font-size: 14px;
}
.book-btn {
    width: 100%;
    padding: 12px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    margin-top: 20px;
    cursor: pointer;
    transition: background 0.3s;
}
.book-btn:hover {
    background: var(--secondary);
}

/* 内容标签栏 */
.content-tabs {
    display: flex;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.tab-item {
    padding: 16px 30px;
    flex: 1;
    text-align: center;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
    border-bottom: 3px solid transparent;
}
.tab-item.active {
    color: var(--primary);
    border-bottom: 3px solid var(--primary);
    background: var(--light);
}
.tab-item:hover {
    color: var(--primary);
    background: var(--light);
}

/* 景点详情内容 */
.content-wrap {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    margin-bottom: 40px;
}
.content-section {
    display: none;
}
.content-section.active {
    display: block;
}

/* 景点介绍 */
.intro-content h3 {
    font-size: 20px;
    color: var(--dark);
    margin: 24px 0 12px;
}
.intro-content p {
    color: #444;
    line-height: 1.8;
    margin-bottom: 16px;
    text-indent: 2em;
}
.intro-img-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 20px 0;
}
.intro-img {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    object-fit: cover;
}

/* 游玩攻略 */
.strategy-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.strategy-item {
    padding: 20px;
    background: var(--light);
    border-radius: 12px;
}
.strategy-item h4 {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.strategy-item p {
    color: #444;
    line-height: 1.7;
}

/* 用户点评 */
.review-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.review-item {
    padding: 20px;
    border-bottom: 1px solid var(--light-gray);
}
.review-item:last-child {
    border-bottom: none;
}
.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}
.user-info {
    display: flex;
    align-items: center;
    gap: 10px;
}
.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-weight: bold;
}
.user-name {
    font-weight: 500;
    color: var(--dark);
}
.review-time {
    color: var(--gray);
    font-size: 12px;
}
.review-rating {
    color: #FFB800;
    font-size: 16px;
}
.review-content {
    color: #444;
    line-height: 1.7;
    margin-bottom: 10px;
}
.review-img {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}
.review-img img {
    width: 80px;
    height: 80px;
    border-radius: 4px;
    object-fit: cover;
}

/*美食推荐首页*/
/* 美食页面banner - 沿用联系页banner结构，替换内容和背景 */
.food-banner {
    width: 100%;
    height: 300px;
    background: linear-gradient(rgba(13, 83, 194, 0.8), rgba(10, 67, 160, 0.8)), 
url('/static/images/tong1.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}
.banner-content h1 {
    font-size: 42px;
    margin-bottom: 12px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.banner-content p {
    font-size: 18px;
    opacity: 0.9;
}

/* 美食概述模块 - 匹配原有布局风格 */
.food-intro {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    margin-bottom: 60px;
    line-height: 1.8;
}
.food-intro h3 {
    color: var(--primary);
    font-size: 20px;
    margin-bottom: 16px;
}
.food-intro p {
    color: #666;
    margin-bottom: 12px;
}

/* 美食列表布局 - 沿用网格布局逻辑 */
.food-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

/* 美食卡片 - 匹配原有卡片风格 */
.food-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}
.food-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(13, 83, 194, 0.12);
}
.food-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.food-card-content {
    padding: 24px;
}
.food-card-title {
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 12px;
    font-weight: 600;
}
.food-card-desc {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 16px;
}
.food-card-tag {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.tag-item {
    padding: 4px 12px;
    background: var(--light);
    color: var(--primary);
    border-radius: 20px;
    font-size: 13px;
}

/* 美食街区推荐 - 匹配原有信息卡片风格 */
.food-area {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}
.area-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 24px;
}
.area-item {
    padding: 20px;
    background: var(--light);
    border-radius: 12px;
}
.area-item h4 {
    color: var(--primary);
    font-size: 18px;
    margin-bottom: 10px;
}
.area-item p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* 底部 - 完全复用原有样式 */
footer {
    background: #1E293B;
    color: #fff;
    padding: 50px 20px;
    margin-top: 70px;
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}
.footer-col {
    flex: 1;
    min-width: 250px;
}
.footer-col h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #fff;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}
.footer-logo-img {
    height: 36px;
    width: auto;
    border-radius: 4px;
}
.footer-logo-text {
    font-size: 20px;
    font-weight: bold;
    color: white;
}
.footer-col p {
    color: #ccc;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.8;
}
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid #333;
    color: #999;
    font-size: 14px;
}







/* 底部 */
footer {
    background: #1E293B;
    color: #fff;
    padding: 50px 20px;
    margin-top: 70px;
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}
.footer-col {
    flex: 1;
    min-width: 250px;
}
.footer-col h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #fff;
}
.footer-col p {
    color: #ccc;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.8;
}
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid #333;
    color: #999;
    font-size: 14px;
}


















/*页脚-版权*/
#footercp{
	width:90%;
	height:300px;
	margin:auto 5%;
	overflow:hidden;
}
#footercp h1{
	width:100%;
	height:100px;
	line-height:100px;
	border-bottom:1px solid #D7D7D7;
}
#footercp ul{
	width:25%;
	height:250px;
	float:left;
}
#footercp ul li{
	width:80%;
	height:30px;
	line-height:30px;
	overflow:hidden;
	text-align:center;
	margin:5px auto;
}
/*页脚无版权*/
#footer{
	width:100%;
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: white;
    margin-top:30px;
}


/*关于我们*/
.about_i{
	width:80%;
	height:auto;
	overflow:hidden;
	margin:50px auto;
}
.about_il{
	width:46%;
	height:600px;
	float:left;
	background:#FFF;
	margin:1px 2%;
	border-radius:35px;
}
.about_ilt{
	width:100%;
	height:50px;
}
.about_ilt h1{
	width:50%;
	height:50px;
	line-height:50px;
	padding-left:30px;
	margin-top:20px;
	font-size:26px;
	font-weight:bold;
	border-bottom:3px solid #B2080B;
}
.about_ilif{
	width:96%;
	margin:auto 2%;
	height:550px;
	overflow:hidden;
}
.about_ilif ul{
	width:120px;
	height:170px;
	float:left;
	margin:10px;
}
.about_ilif ul li{
	width:100%;
	height:auto;
	min-height:25px;
	line-height:25px;
	text-align:center;
}
.about_ilif ul li img{
	width:120px;
	height:120px;
}
.about_ir{
	width:46%;
	height:600px;
	float:right;
	background:#FFF;
	margin:1px 2%;
	border-radius:35px;
}
.about_irt{
	width:100%;
	height:50px;
}
.about_ir h1{
	width:50%;
	height:50px;
	line-height:50px;
	padding-left:30px;
	margin-top:20px;
	font-size:26px;
	font-weight:bold;
	border-bottom:3px solid #B2080B;
}
.about_irif{
	width:96%;
	height:550px;
	margin:auto 2%;
}
.about_irif ul{
	width:100%;
	height:100%;
}
.about_irif ul li{
	width:100%;
	height:30px;
	line-height:30px;
	font-size:16px;
	margin:10px;
}