* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Microsoft YaHei', sans-serif;
    line-height: 1.6;
    color: #333;
}

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

.icp{
    color: #fff;
}

/* 头部样式 */
header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #1890ff;
}

.logo img {
    height: 40px;
    object-fit: contain;
}

/* PC端导航样式 */
@media (min-width: 769px) {
    .main-nav {
        display: block;
    }

    nav ul {
        display: flex;
        list-style: none;
        gap: 30px;
    }

    nav ul li {
        position: relative;
    }

    nav ul li a {
        text-decoration: none;
        color: #333;
        font-size: 16px;
        font-weight: 500;
        padding: 8px 0;
        transition: all 0.3s ease;
    }

    nav ul li a:hover,
    nav ul li a.active {
        color: #1890ff;
    }

    nav ul li a:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: #1890ff;
        transition: width 0.3s ease;
    }

    nav ul li a:hover:after,
    nav ul li a.active:after {
        width: 100%;
    }
}

/* 移动端导航样式 */
@media (max-width: 768px) {
    header .container {
        padding: 15px;
        position: relative;
    }

    .mobile-menu-btn {
        display: block;
        background: none;
        border: none;
        padding: 10px;
        cursor: pointer;
        position: absolute;
        left: 15px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1001;
    }

    .logo {
        margin: 0 auto;
        text-align: center;
        width: 100%;
        padding: 0 50px;
    }

    .logo img {
        max-height: 40px;
        width: auto;
    }

    .mobile-menu-btn span {
        display: block;
        width: 25px;
        height: 2px;
        background: #333;
        margin: 5px 0;
        transition: all 0.3s ease;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: #fff;
        padding: 20px;
        transition: left 0.3s ease;
        z-index: 1000;
        box-shadow: 2px 0 5px rgba(0,0,0,0.1);
    }

    .main-nav.active {
        left: 0;
    }

    .main-nav ul {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-top: 40px;
    }

    .main-nav ul li {
        list-style: none;
    }

    .main-nav ul li a {
        display: block;
        padding: 12px 0;
        font-size: 16px;
        color: #333;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .main-nav ul li a:hover,
    .main-nav ul li a.active {
        color: #1890ff;
    }

    .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .nav-overlay.active {
        display: block;
        opacity: 1;
    }

    .container {
        padding: 0 15px;
    }
}

/* Banner样式 */
.banner {
    background: url('../images/banner.jpg');
    background-size: cover;
    background-position: center;
    height: 600px;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
    margin-top: 60px;
}

.banner h1 {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.banner p {
    font-size: 24px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* 园区优势样式 */
.advantages {
    background-color: #fff;
    padding: 80px 0;
}

.advantages h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #333;
    font-size: 32px;
    position: relative;
}

.advantages h2:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #1890ff;
    margin: 15px auto 0;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.advantage-item {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

.advantage-item:hover {
    transform: translateY(-5px);
}

.advantage-icon {
    width: 60px;
    height: 60px;
    background: #1890ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.advantage-icon i {
    font-size: 24px;
    color: #fff;
}

.advantage-item h3 {
    color: #333;
    font-size: 20px;
    margin-bottom: 15px;
}

.advantage-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.advantage-item ul li {
    color: #666;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 8px;
    padding-left: 15px;
}

@media (max-width: 992px) {
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .advantages-grid {
        gap: 15px;
    }
    
    .advantage-item {
        padding: 15px;
    }
}

/* 园区环境展示样式 */
.gallery {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.gallery h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #1890ff;
}

.gallery-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.gallery-item {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.gallery-item.active {
    opacity: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: #fff;
    font-size: 18px;
    text-align: center;
}

.gallery-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.gallery-controls button {
    background: #1890ff;
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    margin: 0 10px;
    transition: background 0.3s;
}

.gallery-controls button:hover {
    background: #40a9ff;
}

.gallery-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: #1890ff;
}

/* 办公室图文列表样式 */
.office-list {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.office-list h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #1890ff;
}

.office-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.office-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.office-item:hover {
    transform: translateY(-5px);
}

.office-image {
    height: 200px;
    overflow: hidden;
}

.image-slider {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.slider-container {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease;
}

.slider-container img {
    min-width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-prev,
.slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
    transition: background 0.3s;
}

.slider-prev:hover,
.slider-next:hover {
    background: rgba(0, 0, 0, 0.8);
}

.slider-prev {
    left: 10px;
}

.slider-next {
    right: 10px;
}

.slider-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}

.slider-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s;
}

.slider-dots .dot.active {
    background: white;
}

.office-info {
    padding: 20px;
}

.office-info h3 {
    color: #1890ff;
    margin-bottom: 15px;
    font-size: 20px;
}

.office-info p {
    color: #666;
    margin-bottom: 8px;
    font-size: 14px;
}

/* 办公环境链接样式 */
.office-link {
    display: inline-block;
    margin-top: 15px;
    color: #1890ff;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

.office-link:after {
    content: '→';
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.office-link:hover {
    color: #0069d9;
}

.office-link:hover:after {
    transform: translateX(5px);
}

/* 办公空间详情按钮 */
.detail-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 15px;
    background-color: #1890ff;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.detail-btn:hover {
    background-color: #0069d9;
    transform: translateY(-2px);
}

/* 入驻企业logo列表样式 */
.enterprises {
    background-color: #fff;
    padding: 80px 0;
}

.enterprises h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #333;
    font-size: 28px;
}

.enterprise-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.enterprise-logos img {
    width: 15%;
    object-fit: contain;
    transition: all 0.3s ease;
    background: #fff;
    padding: 10px;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.enterprise-logos img:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .enterprise-logos {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        padding: 0 10px;
    }
    
    .enterprise-logos img {
        width: 100%;
        height: auto;
        padding: 10px;
        background: #fff;
        border-radius: 4px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
}

/* 荣誉资质区域样式 */
.honors {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.honors h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #333;
    font-size: 32px;
    position: relative;
}

.honors h2:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #1890ff;
    margin: 15px auto 0;
}

.honors-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.honor-item {
    text-align: center;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.honor-item:hover {
    transform: translateY(-5px);
}

.honor-item img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    border-radius: 4px;
    margin-bottom: 15px;
    background: #f5f5f5;
    padding: 10px;
}

.honor-item p {
    color: #666;
    font-size: 16px;
    margin: 0;
}

@media (max-width: 768px) {
    .honors {
        padding: 40px 0;
    }
    
    .honors-list {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        padding: 0 10px;
    }
    
    .honor-item {
        width: calc(50% - 5px);
        padding: 10px;
    }
    
    .honor-item img {
        height: 100px;
        margin-bottom: 8px;
    }
    
    .honor-item p {
        font-size: 14px;
    }
}

/* 园区资讯样式 */
.news {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.news h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #333;
    font-size: 28px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.news-column {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.news-column h3 {
    color: #1890ff;
    margin-bottom: 20px;
    font-size: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #1890ff;
}

.news-featured {
    margin-bottom: 20px;
    display: flex;
    gap: 15px;
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.news-featured img {
    width: 40%;
    height: 90px;
    object-fit: cover;
    border-radius: 4px;
}

.news-featured-content {
    flex: 1;
}

.news-featured-content h4 {
    margin: 5px 0;
    font-size: 16px;
}

.news-featured-content h4 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.news-featured-content h4 a:hover {
    color: #1890ff;
}

.news-featured-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 5px 0 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-clamp: 2;
}

.news-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.news-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px dashed #eee;
}

.news-list li:last-child {
    border-bottom: none;
}

.news-list a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
    flex: 1;
    font-size: 14px;
    line-height: 1.4;
    margin-right: 15px;
}

.news-list a:hover {
    color: #1890ff;
}

.news-list .date {
    color: #999;
    font-size: 14px;
    white-space: nowrap;
    margin-left: 15px;
}

/* 页脚样式 */
footer {
    background: #001529;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .banner h1 {
        font-size: 36px;
    }

    .banner p {
        font-size: 18px;
    }

    .gallery-container {
        height: 300px;
    }

    .gallery-caption {
        font-size: 16px;
        padding: 15px;
    }

    .gallery-controls button {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    .office-grid {
        grid-template-columns: 1fr;
    }
    
    .office-image {
        height: 250px;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .news-featured {
        flex-direction: column;
    }
    
    .news-featured img {
        width: 100%;
        height: 150px;
    }
}

/* 园区简介样式 */
.intro {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.intro-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.intro-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.intro-image:hover img {
    transform: scale(1.05);
}

.intro-text {
    flex: 1;
}

.intro-text h2 {
    color: #333;
    font-size: 32px;
    margin-bottom: 20px;
    position: relative;
}

.intro-text h2:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #1890ff;
    margin: 15px 0;
}

.intro-text p {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.intro-text ul {
    list-style: none;
    margin-bottom: 30px;
}

.intro-text ul li {
    color: #666;
    font-size: 16px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.intro-text ul li i {
    color: #1890ff;
    margin-right: 10px;
    font-size: 18px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: #1890ff;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn:hover {
    background: #40a9ff;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .intro-content {
        flex-direction: column;
        gap: 30px;
    }

    .intro-image {
        width: 100%;
    }

    .intro-text h2 {
        font-size: 28px;
    }

    .intro-text p {
        font-size: 15px;
    }

    .intro-text ul li {
        font-size: 15px;
    }
}

/* 浮动按钮样式 */
.float-buttons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.float-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #1890ff;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.float-button:hover {
    background: #40a9ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.float-button i {
    font-size: 20px;
}

.back-to-top {
    display: none;
}

.back-to-top.show {
    display: flex;
}

/* 园区规划样式 */
.planning {
    padding: 80px 0;
    background: #f8f9fa;
}

.planning h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #333;
    font-size: 32px;
    position: relative;
}

.planning h2:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #1890ff;
    margin: 15px auto 0;
}

.planning-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.planning-item {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.planning-item:hover {
    transform: translateY(-5px);
}

.planning-item h3 {
    color: #333;
    font-size: 20px;
    margin-bottom: 15px;
}

.planning-item p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.planning-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.planning-item ul li {
    color: #666;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.planning-item ul li i {
    color: #1890ff;
    position: absolute;
    left: 0;
}

/* 统计数据样式 */
.stats {
    background-color: #fff;
    padding: 80px 0;
}

.stats h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #333;
    font-size: 32px;
    position: relative;
}

.stats h2:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #1890ff;
    margin: 15px auto 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-label {
    font-size: 18px;
    color: #666;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .planning-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .planning-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .stat-label {
        font-size: 16px;
    }
}

/* 地图样式 */
.map {
    background-color: #fff;
    padding: 80px 0;
}

.map h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #333;
    font-size: 32px;
    position: relative;
}

.map h2:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #1890ff;
    margin: 15px auto 0;
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

#map {
    width: 100%;
    height: 100%;
}

.map-info {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
}

.info-item i {
    color: #1890ff;
    font-size: 20px;
}

@media (max-width: 768px) {
    .map-container {
        height: 300px;
    }
    
    .map-info {
        flex-direction: column;
        gap: 15px;
    }
}

/* 返回顶部按钮样式 */
#back-to-top {
    display: none;
    position: fixed;
    right: 20px;
    bottom: 80px;
    width: 40px;
    height: 40px;
    background-color: #1890ff;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s ease;
}

#back-to-top:hover {
    background-color: #40a9ff;
}

#back-to-top i {
    font-size: 18px;
    line-height: 40px;
    display: block;
}

/* 园区概况样式 */
.overview {
    padding: 80px 0;
    background: #fff;
}

.overview-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.overview-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.overview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.overview-image:hover img {
    transform: scale(1.05);
}

.overview-text {
    flex: 1;
}

.overview-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.feature-item {
    text-align: center;
    padding: 20px;
    background: #f5f5f5;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 24px;
    color: #1890ff;
    margin-bottom: 10px;
}

.feature-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.feature-item p {
    color: #666;
    font-size: 14px;
}

/* 园区特色样式 */
.features {
    padding: 80px 0;
    background: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: #1890ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    color: #fff;
    font-size: 24px;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.feature-card p {
    color: #666;
}

/* 园区规划样式 */
.planning {
    padding: 80px 0;
    background: #f8f9fa;
}

.planning-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.planning-text {
    flex: 1;
}

.planning-text h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

.planning-text p {
    color: #666;
    margin-bottom: 20px;
}

.planning-text ul {
    list-style: none;
}

.planning-text ul li {
    color: #666;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.planning-text ul li i {
    color: #1890ff;
    margin-right: 10px;
}

.planning-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.planning-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 响应式布局 */
@media (max-width: 992px) {
    .overview-content,
    .planning-content {
        flex-direction: column;
    }

    .overview-features,
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .timeline:before {
        left: 30px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 80px;
        padding-right: 0;
    }

    .timeline-item:nth-child(odd) {
        margin-left: 0;
    }

    .timeline-year {
        left: 0;
    }

    .timeline-item:nth-child(odd) .timeline-content:before {
        left: -10px;
    }

    .timeline-item:nth-child(even) .timeline-content:before {
        left: -10px;
    }
}

@media (max-width: 768px) {
    .overview-features,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-item,
    .feature-card {
        padding: 20px;
    }
}

/* 发展历程样式 */
.history {
    padding: 80px 0;
    background: #f8f9fa;
}

.history h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #333;
    font-size: 28px;
    position: relative;
}

.history h2:after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: #1890ff;
    margin: 10px auto 0;
}

.timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.timeline:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: #e8e8e8;
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 0 40px;
    box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
    margin-left: 50%;
}

.timeline-item:nth-child(even) {
    text-align: right;
}

.year {
    position: absolute;
    top: 0;
    width: 80px;
    height: 80px;
    background: #1890ff;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(24,144,255,0.3);
}

.timeline-item:nth-child(odd) .year {
    left: -40px;
}

.timeline-item:nth-child(even) .year {
    right: -40px;
}

.content {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    position: relative;
}

.content:before {
    content: '';
    position: absolute;
    top: 20px;
    width: 0;
    height: 0;
    border-style: solid;
}

.timeline-item:nth-child(odd) .content:before {
    left: -10px;
    border-width: 10px 10px 10px 0;
    border-color: transparent #fff transparent transparent;
}

.timeline-item:nth-child(even) .content:before {
    right: -10px;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent #fff;
}

.content h3 {
    color: #333;
    font-size: 18px;
    margin-bottom: 10px;
}

.content p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* 响应式布局 */
@media (max-width: 768px) {
    .timeline:before {
        left: 30px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 80px;
        margin-left: 0 !important;
        text-align: left !important;
    }

    .year {
        left: 0 !important;
        right: auto !important;
        width: 60px;
        height: 60px;
        font-size: 16px;
    }

    .content:before {
        left: -10px !important;
        right: auto !important;
        border-width: 10px 10px 10px 0 !important;
        border-color: transparent #fff transparent transparent !important;
    }
}

/* 园区服务样式 */
.services {
    padding: 80px 0;
    background: #f8f9fa;
}

.services h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #333;
    font-size: 32px;
    position: relative;
}

.services h2:after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: #1890ff;
    margin: 15px auto 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.service-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #1890ff;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover:before {
    transform: scaleX(1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: #1890ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: #fff;
    border: 2px solid #1890ff;
}

.service-icon i {
    color: #fff;
    font-size: 24px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon i {
    color: #1890ff;
}

.service-card h3 {
    color: #333;
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.service-card ul li {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(24, 144, 255, 0.1);
}

.service-card ul li:hover {
    color: #1890ff;
    transform: translateX(5px);
}

.services-desc {
    text-align: center;
    color: #666;
    font-size: 16px;
    margin-bottom: 30px;
}

.services-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    display: block;
    font-size: 28px;
    font-weight: bold;
    color: #007bff;
    margin-bottom: 5px;
}

.stat-label {
    color: #666;
    font-size: 14px;
    text-align: center;
}

.service-desc {
    color: #666;
    font-size: 13px;
    text-align: center;
    margin: 10px 0 15px;
    line-height: 1.6;
}

.service-tags {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.services-more {
    text-align: center;
    margin-top: 40px;
}

.more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    background: #1890ff;
    color: #fff;
    border-radius: 25px;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

.more-btn:hover {
    background: #40a9ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(24, 144, 255, 0.3);
}

.more-btn i {
    transition: transform 0.3s ease;
}

.more-btn:hover i {
    transform: translateX(4px);
}

/* 响应式布局 */
@media (max-width: 992px) {
    .services-stats {
        gap: 30px;
    }
    
    .stat-number {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .services-desc {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .services-stats {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .stat-item {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }
    
    .stat-number {
        margin-bottom: 0;
        font-size: 24px;
    }
    
    .more-btn {
        padding: 10px 25px;
        font-size: 14px;
    }
}

/* 响应式布局 */
@media (max-width: 768px) {
    .banner {
        height: 400px;
        margin-top: 50px;
    }
    
    .overview,
    .history,
    .features,
    .services,
    .planning,
    .stats {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .banner {
        height: 300px;
        margin-top: 40px;
    }
    
    .overview,
    .history,
    .features,
    .services,
    .planning,
    .stats {
        padding: 40px 0;
    }
}

/* 校企合作样式 */
.cooperation {
    padding: 80px 0;
    background: #fff;
}

.cooperation h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #333;
    font-size: 32px;
    position: relative;
}

.cooperation h2:after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: #1890ff;
    margin: 15px auto 0;
}

.cooperation-desc {
    text-align: center;
    color: #666;
    font-size: 16px;
    margin-bottom: 30px;
}

.cooperation-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.cooperation-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.cooperation-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cooperation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.cooperation-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #1890ff;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.cooperation-card:hover:before {
    transform: scaleX(1);
}

.cooperation-icon {
    width: 60px;
    height: 60px;
    background: #1890ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.cooperation-card:hover .cooperation-icon {
    background: #fff;
    border: 2px solid #1890ff;
}

.cooperation-icon i {
    color: #fff;
    font-size: 24px;
    transition: all 0.3s ease;
}

.cooperation-card:hover .cooperation-icon i {
    color: #1890ff;
}

.cooperation-card h3 {
    color: #333;
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
}

.cooperation-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.cooperation-card ul li {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(24, 144, 255, 0.1);
}

.cooperation-card ul li:last-child {
    border-bottom: none;
}

.cooperation-card ul li:hover {
    color: #1890ff;
    transform: translateX(5px);
}

.cooperation-tags {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.cooperation-more {
    text-align: center;
    margin-top: 40px;
}

/* 响应式布局 */
@media (max-width: 992px) {
    .cooperation-stats {
        gap: 30px;
    }
    
    .cooperation-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .cooperation-desc {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .cooperation-stats {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .stat-item {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }
    
    .cooperation-grid {
        grid-template-columns: 1fr;
    }
}

/* 园区环境样式 */
.environment {
    padding: 80px 0;
    background: #fff;
}

.environment h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
    font-size: 32px;
    position: relative;
}

.environment h2:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #1890ff;
    margin: 15px auto 0;
}

.environment-desc {
    text-align: center;
    color: #666;
    font-size: 16px;
    margin-bottom: 40px;
}

.environment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.environment-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.environment-card:hover {
    transform: translateY(-5px);
}

.environment-image {
    height: 200px;
    overflow: hidden;
}

.environment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.environment-card:hover .environment-image img {
    transform: scale(1.05);
}

.environment-content {
    padding: 20px;
}

.environment-content h3 {
    color: #333;
    font-size: 20px;
    margin-bottom: 15px;
}

.environment-content p {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.environment-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.environment-content ul li {
    color: #666;
    font-size: 14px;
    margin-bottom: 8px;
    padding-left: 15px;
    position: relative;
}

.environment-content ul li:before {
    content: '•';
    color: #1890ff;
    position: absolute;
    left: 0;
}

/* 设施配套样式 */
.facilities {
    padding: 80px 0;
    background: #f8f9fa;
}

.facilities h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
    font-size: 32px;
    position: relative;
}

.facilities h2:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #1890ff;
    margin: 15px auto 0;
}

.facilities-desc {
    text-align: center;
    color: #666;
    font-size: 16px;
    margin-bottom: 40px;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.facility-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.facility-card:hover {
    transform: translateY(-5px);
}

.facility-icon {
    width: 60px;
    height: 60px;
    background: #1890ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.facility-icon i {
    color: #fff;
    font-size: 24px;
}

.facility-card h3 {
    color: #333;
    font-size: 18px;
    margin-bottom: 15px;
}

.facility-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.facility-card ul li {
    color: #666;
    font-size: 14px;
    margin-bottom: 8px;
}

/* 周边环境样式 */
.surrounding {
    padding: 80px 0;
    background: #fff;
}

.surrounding h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
    font-size: 32px;
    position: relative;
}

.surrounding h2:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #1890ff;
    margin: 15px auto 0;
}

.surrounding-desc {
    text-align: center;
    color: #666;
    font-size: 16px;
    margin-bottom: 40px;
}

.surrounding-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.surrounding-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.surrounding-card:hover {
    transform: translateY(-5px);
}

.surrounding-icon {
    width: 60px;
    height: 60px;
    background: #1890ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.surrounding-icon i {
    color: #fff;
    font-size: 24px;
}

.surrounding-card h3 {
    color: #333;
    font-size: 18px;
    margin-bottom: 15px;
}

.surrounding-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.surrounding-card ul li {
    color: #666;
    font-size: 14px;
    margin-bottom: 8px;
}

/* 响应式布局 */
@media (max-width: 992px) {
    .environment-grid,
    .facilities-grid,
    .surrounding-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .environment-grid {
        grid-template-columns: 1fr;
    }
    
    .environment-card,
    .facility-card,
    .surrounding-card {
        padding: 20px;
    }
    
    .environment-image {
        height: 180px;
    }
}

/* 办公室环境样式 */
.office-environment {
    padding: 80px 0;
    background: #f8f9fa;
}

.office-environment h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
    font-size: 32px;
    position: relative;
}

.office-environment h2:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #1890ff;
    margin: 15px auto 0;
}

.office-desc {
    text-align: center;
    color: #666;
    font-size: 16px;
    margin-bottom: 40px;
}

.office-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.office-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.office-card:hover {
    transform: translateY(-5px);
}

.office-image {
    height: 200px;
    overflow: hidden;
}

.office-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.office-card:hover .office-image img {
    transform: scale(1.05);
}

.office-content {
    padding: 20px;
}

.office-content h3 {
    color: #333;
    font-size: 20px;
    margin-bottom: 15px;
}

.office-content p {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.office-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.office-content ul li {
    color: #666;
    font-size: 14px;
    margin-bottom: 8px;
    padding-left: 15px;
    position: relative;
}

.office-content ul li:before {
    content: '•';
    color: #1890ff;
    position: absolute;
    left: 0;
}

/* 响应式布局 */
@media (max-width: 992px) {
    .office-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .office-grid {
        grid-template-columns: 1fr;
    }
    
    .office-card {
        padding: 20px;
    }
    
    .office-image {
        height: 180px;
    }
}

/* 政策页面样式 */
.policy-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/office1-1.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

.policy-banner-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.policy-banner-content p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #3498db;
}

/* 政策优势样式 */
.policy-overview {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.policy-advantages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.policy-advantage-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    background-color: #fff;
    transition: transform 0.3s ease;
}

.policy-advantage-item:hover {
    transform: translateY(-10px);
}

.advantage-icon {
    margin-bottom: 20px;
}

.policy-advantage-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.policy-advantage-item p {
    color: #666;
    line-height: 1.6;
}

/* 政策详情样式 */
.policy-details {
    padding: 80px 0;
}

.policy-details .container {
    max-width: 1200px;
    margin: 0 auto;
}

.policy-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
}

.policy-category {
    flex: 0 0 calc(50% - 15px);
    margin-bottom: 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    background-color: #fff;
}

@media (max-width: 768px) {
    .policy-category {
        flex: 0 0 100%;
        margin-bottom: 30px;
    }
    
    .policy-category:last-child {
        margin-bottom: 0;
    }
}

.policy-category-header {
    display: flex;
    align-items: center;
    padding: 20px;
    background-color: #3498db;
    color: #fff;
}

.policy-category-icon {
    margin-right: 15px;
}

.policy-category-icon i {
    font-size: 2rem;
}

.policy-category-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
}

.policy-category-content {
    padding: 20px;
}

.policy-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.policy-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.policy-list li:last-child {
    margin-bottom: 0;
}

.policy-list li i {
    color: #3498db;
    margin-right: 10px;
    margin-top: 3px;
}

/* 申请流程样式 */
.application-process {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 30px;
    position: relative;
}

.process-step {
    flex: 0 0 calc(25% - 30px);
    text-align: center;
    position: relative;
    z-index: 1;
    background-color: #fff;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.step-icon {
    margin-bottom: 15px;
}

.step-icon i {
    font-size: 2rem;
    color: #3498db;
}

.process-step h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    font-weight: 600;
}

.process-step p {
    color: #666;
    line-height: 1.5;
    font-size: 0.9rem;
}

/* 成功案例样式 */
.success-cases {
    padding: 80px 0;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.case-card {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    background-color: #fff;
    transition: transform 0.3s ease;
}

.case-card:hover {
    transform: translateY(-10px);
}

.case-image {
    height: 200px;
    overflow: hidden;
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.case-card:hover .case-image img {
    transform: scale(1.1);
}

.case-content {
    padding: 20px;
}

.case-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.case-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.case-results {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.case-results span {
    background-color: #f0f8ff;
    color: #3498db;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}

.case-results span i {
    margin-right: 5px;
}

/* 咨询表单样式 */
.consultation-form {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.form-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
    gap: 20px;
}

.form-group {
    flex: 1 0 calc(50% - 10px);
}

.form-group.full-width {
    flex: 0 0 100%;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: #3498db;
    outline: none;
}

.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    margin-bottom: 0;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    margin-right: 8px;
}

.form-submit {
    text-align: center;
    margin-top: 20px;
}

.btn-submit {
    background-color: #3498db;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #2980b9;
}

/* 响应式调整 */
@media (max-width: 992px) {
    .process-steps:before {
        display: none;
    }
    
    .process-step {
        flex: 0 0 calc(50% - 15px);
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .policy-banner {
        padding: 60px 0;
    }
    
    .policy-banner-content h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .form-group {
        flex: 0 0 100%;
    }
    
    .form-container {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .process-step {
        flex: 0 0 100%;
    }
    
    .case-card {
        max-width: 350px;
        margin: 0 auto;
    }
    
    .policy-advantage-item {
        padding: 20px 15px;
    }
}

/* 资讯页面样式 */
.news-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/office1-1.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 100px 0;
    text-align: center;
    margin-top: 60px;
}

.news-banner-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.news-banner-content p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

.news-content {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.news-content .news-list {
    gap: 20px;
}

.news-wrapper {
    display: flex;
    gap: 30px;
}

.news-main {
    flex: 1;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
}

.news-sidebar {
    width: 350px;
    flex-shrink: 0;
}

/* 资讯分类导航 */
.news-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.news-categories a {
    display: inline-block;
    padding: 8px 20px;
    background-color: #f0f8ff;
    color: #3498db;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.news-categories a:hover,
.news-categories a.active {
    background-color: #3498db;
    color: #fff;
}

/* 精选资讯 */
.featured-news {
    display: flex;
    margin-bottom: 40px;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.featured-news-image {
    width: 40%;
    position: relative;
}

.featured-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-news-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #3498db;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
}

.featured-news-content {
    width: 60%;
    padding: 25px;
}

.featured-news-content h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.news-meta {
    display: flex;
    gap: 15px;
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 15px;
}

.news-meta i {
    margin-right: 5px;
    color: #3498db;
}

.featured-news-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.read-more {
    display: inline-flex;
    align-items: center;
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
}

.read-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.read-more:hover {
    color: #2980b9;
}

.read-more:hover i {
    transform: translateX(3px);
}

/* 资讯列表 */
.news-list {
    display: grid;
}

.news-item {
    display: flex;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.news-item:hover {
    transform: translateY(-5px);
}

.news-item-image {
    width: 35%;
    position: relative;
}

.news-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-item-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #3498db;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
}

.news-item-content {
    width: 65%;
    padding: 20px;
}

.news-item-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.news-item-content h3 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-item-content h3 a:hover {
    color: #3498db;
}

.news-item-content p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* 分页 */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    gap: 10px;
}

.pagination a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    background-color: #fff;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.pagination a:hover,
.pagination a.active {
    background-color: #3498db;
    color: #fff;
}

.pagination a.next {
    width: auto;
    padding: 0 15px;
}

/* 侧边栏部件 */
.sidebar-widget {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 25px;
    margin-bottom: 30px;
}

.widget-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #3498db;
    position: relative;
}

/* 搜索部件 */
.search-form {
    display: flex;
    position: relative;
}

.search-form input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.search-form input:focus {
    border-color: #3498db;
    outline: none;
}

.search-form button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #3498db;
    cursor: pointer;
    font-size: 16px;
}

/* 热门资讯部件 */
.popular-news-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.popular-news-list li {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.popular-news-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.popular-news-list li:first-child {
    padding-top: 0;
}

.popular-news-image {
    width: 80px;
    height: 60px;
    border-radius: 5px;
    overflow: hidden;
}

.popular-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popular-news-content {
    flex: 1;
}

.popular-news-content h4 {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 5px;
}

.popular-news-content h4 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.popular-news-content h4 a:hover {
    color: #3498db;
}

.popular-news-content .date {
    font-size: 0.8rem;
    color: #777;
}

/* 分类部件 */
.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    margin-bottom: 10px;
}

.category-list li:last-child {
    margin-bottom: 0;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    color: #555;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 0;
}

.category-list a:hover {
    color: #3498db;
    padding-left: 5px;
}

.category-list a span {
    color: #999;
}

/* 标签部件 */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-cloud a {
    display: inline-block;
    padding: 5px 12px;
    background-color: #f0f8ff;
    color: #3498db;
    border-radius: 20px;
    font-size: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag-cloud a:hover {
    background-color: #3498db;
    color: #fff;
}

/* 响应式布局 */
@media (max-width: 992px) {
    .news-wrapper {
        flex-direction: column;
    }

    .news-sidebar {
        width: 100%;
    }

    .featured-news {
        flex-direction: column;
    }

    .featured-news-image,
    .featured-news-content {
        width: 100%;
    }

    .featured-news-image {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .news-banner {
        padding: 60px 0;
        margin-top: 50px;
    }

    .news-banner-content h1 {
        font-size: 2rem;
    }

    .news-item {
        flex-direction: column;
    }

    .news-item-image,
    .news-item-content {
        width: 100%;
    }

    .news-item-image {
        height: 200px;
    }
}

/* 文章详情页样式 */
.article-content {
    padding: 60px 0;
    background-color: #f8f9fa;
    margin-top: 60px;
}

.article-wrapper {
    display: flex;
    gap: 30px;
}

.article-main {
    flex: 1;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
}

.article-sidebar {
    width: 350px;
    flex-shrink: 0;
}

/* 面包屑导航 */
.breadcrumb {
    margin-bottom: 25px;
    color: #777;
    font-size: 14px;
}

.breadcrumb a {
    color: #777;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #3498db;
}

.breadcrumb a.current {
    color: #3498db;
    pointer-events: none;
}

/* 文章标题区 */
.article-header {
    margin-bottom: 30px;
}

.article-title {
    font-size: 2rem;
    line-height: 1.4;
    margin-bottom: 20px;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 14px;
    color: #777;
}

.article-meta i {
    margin-right: 5px;
    color: #3498db;
}

/* 文章特色图片 */
.article-featured-image {
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
}

.article-featured-image img {
    width: 100%;
    height: auto;
}

/* 文章内容 */
.article-body {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.article-body p {
    margin-bottom: 20px;
}
.article-body img{
    width: 100%;
}

.article-body h2 {
    margin: 40px 0 20px;
    font-size: 1.5rem;
}

.article-body blockquote {
    margin: 30px 0;
    padding: 20px;
    background-color: #f9f9f9;
    border-left: 4px solid #3498db;
    font-style: italic;
    color: #555;
}

.article-image {
    margin: 30px 0;
    border-radius: 10px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: auto;
}

.image-caption {
    text-align: center;
    margin-top: 10px;
    font-size: 14px;
    color: #777;
    font-style: italic;
}

/* 文章标签 */
.article-tags {
    margin: 40px 0 20px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-label {
    color: #333;
    font-weight: 500;
}

.tag {
    display: inline-block;
    padding: 5px 15px;
    background-color: #f0f8ff;
    color: #3498db;
    border-radius: 20px;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag:hover {
    background-color: #3498db;
    color: #fff;
}

/* 文章分享 */
.article-share {
    margin: 20px 0 40px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.share-label {
    color: #333;
    font-weight: 500;
}

.share-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #f0f8ff;
    color: #3498db;
    border-radius: 50%;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-icon:hover {
    background-color: #3498db;
    color: #fff;
}

/* 文章导航 */
.article-navigation {
    display: flex;
    justify-content: space-between;
    margin: 40px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 20px 0;
}

.prev-article,
.next-article {
    flex: 0 0 48%;
}

.next-article {
    text-align: right;
}

.nav-label {
    display: block;
    font-size: 12px;
    color: #777;
    margin-bottom: 5px;
}

.article-navigation a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.article-navigation a:hover {
    color: #3498db;
}

/* 相关推荐 */
.related-articles {
    margin-top: 40px;
}

.related-title {
    font-size: 1.3rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #3498db;
}

.related-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.related-item {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.related-item:hover {
    transform: translateY(-5px);
}

.related-image {
    height: 150px;
}

.related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-content {
    padding: 15px;
}

.related-content h4 {
    font-size: 15px;
    line-height: 1.4;
    margin-bottom: 10px;
}

.related-content h4 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-content h4 a:hover {
    color: #3498db;
}

.related-meta {
    font-size: 12px;
    color: #777;
}

.related-meta i {
    margin-right: 5px;
    color: #3498db;
}

/* 作者信息 */
.author-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-content h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.author-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* 响应式布局 */
@media (max-width: 992px) {
    .article-wrapper {
        flex-direction: column;
    }

    .article-sidebar {
        width: 100%;
    }

    .related-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .article-content {
        padding: 40px 0;
        margin-top: 50px;
    }

    .article-title {
        font-size: 1.5rem;
    }

    .article-meta {
        gap: 10px;
    }

    .related-list {
        grid-template-columns: 1fr;
    }

    .article-navigation {
        flex-direction: column;
        gap: 15px;
    }

    .prev-article,
    .next-article {
        flex: 0 0 100%;
        text-align: left;
    }
}

/* 联系页面样式 */
.contact-banner {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/banner.jpg');
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    align-items: center;
    margin-top: 70px;
    color: #fff;
    text-align: center;
}

.contact-info-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.contact-title {
    text-align: center;
    margin-bottom: 50px;
}

.contact-title h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.contact-title h2:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: #1890ff;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.contact-title p {
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.contact-boxes {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.contact-box {
    flex: 1;
    min-width: 250px;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.contact-box:hover {
    transform: translateY(-10px);
}

.contact-box-icon {
    width: 70px;
    height: 70px;
    background-color: #1890ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-box-icon i {
    font-size: 30px;
    color: #fff;
}

.contact-box h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.contact-box p {
    color: #666;
    line-height: 1.6;
}

.contact-form-section {
    padding: 80px 0;
    background-color: #fff;
}

.form-wrap {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.form-row {
    display: flex;
    margin-bottom: 20px;
    gap: 20px;
}

.form-group {
    flex: 1;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-control:focus {
    border-color: #1890ff;
    outline: none;
}

.form-message {
    resize: vertical;
    min-height: 150px;
}

.form-button {
    background-color: #1890ff;
    color: #fff;
    border: none;
    padding: 14px 30px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.form-button:hover {
    background-color: #40a9ff;
}

.transport-info {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.transport-item {
    display: flex;
    align-items: center;
    background-color: #fff;
    padding: 15px 25px;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.03);
}

.transport-item i {
    color: #1890ff;
    font-size: 24px;
    margin-right: 15px;
}

/* 联系页面响应式样式 */
@media (max-width: 768px) {
    .contact-boxes {
        flex-direction: column;
    }
    
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .map-container {
        height: 350px;
    }
    
    .transport-info {
        flex-direction: column;
        gap: 15px;
    }
}

.property-services {
    background-color: #fff;
    padding: 80px 0;
}

.property-services h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 32px;
    color: #333;
}

.service-main {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    background: #fff;
    padding: 20px;
    border-radius: 6px;
}

.service-image {
    flex: 1;
    border-radius: 6px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-intro {
    flex: 1;
    padding: 15px;
}

.service-intro h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
}

.service-intro p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}

.service-stats {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.stat-label {
    color: #666;
    font-size: 14px;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.service-item {
    background-color: #fff;
    padding: 20px;
    border-radius: 6px;
    display: flex;
    gap: 15px;
    border: 1px solid #e8e8e8;
}

.service-item:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.service-icon {
    width: 50px;
    height: 50px;
    background: #f0f7ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-icon i {
    font-size: 24px;
    color: #007bff;
}

.service-content {
    flex: 1;
}

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

.service-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-content ul li {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 8px;
    padding-left: 15px;
    position: relative;
}

.service-content ul li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #007bff;
}

@media (max-width: 768px) {
    .service-main {
        flex-direction: column;
    }
    
    .service-image {
        height: 200px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .property-services {
        padding: 30px 0;
    }
}