/* 基础样式 */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f9f9f9;
}

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



/* 内容部分 */
.content {
    padding: 10px 0;
}
.service-list li a {
	color:#000000;
	text-decoration:none;
}

.guide-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    
}
.guide-list a {
	color:#000000;
	text-decoration:none;
}
.guide-item {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 20px;
    width: calc(25% - 40px);
    text-align: center;
    font-size: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.guide-item img {width:100%;}
.guide-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

footer p {
    margin: 0;
    font-size: 14px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .guide-item {
        width: calc(25% - 40px);
            padding: 5px;
                margin: 10px;
  
    }
}





/*list*/
/* 基础样式 */



/* 头部 */
header {
    background-color: #f9f9f9;
    color: #fff;
/*    padding: 20px 0;*/
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 20px;
}
.banner img {width:100%;}

/* 搜索部分 */
form {
    display: flex;
    margin-top: 0em;
}
 .search-container {
    text-align: center;
    background: #efefef;
    padding: 20px;
        }
        .search-input {
            padding: 10px;
            width: 250px;
            border: 1px solid #ccc;
            border-radius: 5px;
        }
        .search-button {
            padding: 10px 20px;
            margin-left: 10px;
            border: none;
            background-color: #007bff;
            color: white;
            border-radius: 5px;
            cursor: pointer;
        }
        .search-button:hover {
            background-color: #0056b3;
        }


.search {
    padding: 40px 0;
    text-align: center;
}

.search h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.search input {
    width: 100%;
    max-width: 600px;
    padding: 10px;
    font-size: 16px;
    border: 2px solid #007BFF;
    border-radius: 5px;
}

/* 内容部分 */
.bs {
	text-align: center;
    font-size: 24px;
}

.content h2 {
	text-align: left;
    font-size: 24px;
    margin-bottom: 0px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 15px;
	padding-left: 20px;
	background: url(btbg.png) no-repeat;
}

.service-list {
    list-style-type: none;
    padding: 0;
	counter-reset: service-counter; /* 初始化计数器 */
}
.service-list span { color: blue; font-weight: bold;margin-right: 5px;}

.service-list li::before {
			content: counter(service-counter) ". "; /* 使用计数器 */
   			counter-increment: service-counter; /* 计数器递增 */
            font-weight: bold;
            margin-right: 5px;
        }
.service-list li:nth-child(1)::before {
            color: #257be0;
        }
.service-list li:nth-child(2)::before {
            color: #257be0;
        }
.service-list li:nth-child(3)::before {
            color: #257be0;
        }

.service-list li {
    border-bottom: 1px solid #ddd;
    padding: 15px;
    margin-bottom: 10px;
    font-size: 18px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

footer p {
    margin: 0;
    font-size: 14px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .service-list li {
        font-size: 16px;
    }
}
/*list*/