

.container {
	width: 100%;
	margin: 0 auto;
	
}

* {
	padding: 0;
	margin: 0;
}



a{
	text-decoration: none;
}


.header {
	height: 30px;
	border-bottom: 1px solid #ededed;
}

.header p,
.header ul li {
	margin: 0 20px;
	font-size: 12px;
}

.header p {
	line-height: 30px;
	float: left;
	color: #7d7d7d;
}

.header p a {
	color: #7d7d7d;
	margin-left: 12px;
}

.header p a:hover,
.header li a:hover,
.foot-top dd a:hover,
.foot-bottom span a:hover {
	color: #008cd6;
}

.header ul {
	float: right;
	list-style: none;
}

.header ul li {
	margin-right: 20px;
	
	margin-top: 8px;
	float: left;
}

.header ul li a{
	color: #2c2c2c;
	text-decoration: none;
    font-weight: bold;
}

.header ul li:last-child {
	border: none;
}




.header-down {
	height: 120px;
}

.header-down img {
	float: left;
	margin-top: 12px;
}

.search {
    margin-top: 44px;
    margin-right: 12px;
    float: right;
    width: 800px;
    height: 40px;
    display: flex;
    align-items: center;
    background-color: #f8f9fa;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.search > form {
    display: flex;
    width: 100%;
}

.search > form > input {
    font-size: 14px;
    padding-left: 10px;
    color: #333;
    border: none;
    outline: none;
    flex-grow: 1;
    border-radius: 5px 0 0 5px;
}

.search select {
    border: none;
    color: #65696b;
    font-size: 14px;
    padding-left: 10px;
    background-color: #e9ecef;
    width: 200px;
    height: 40px;
    border-radius: 5px 0 0 5px;
    outline: none;
}

.search-text {
    flex-grow: 1;
    height: 40px;
    border: none;
    outline: none;
    padding-left: 10px;
    border-radius: 0 5px 5px 0;
}

.header-button {
    width: 93px;
    height: 40px;
}

.header-button input {
    padding-left: 8px;
    color: #fff;
    font-size: 16px;
    width: 100%;
    height: 100%;
    border: none;
    background: url(../images/search_03.gif) no-repeat center left 10px;
    background-color: #007bff;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    outline: none;
}



.navigation-module {
	height: 50px;
}
.nav {
	height: 44px;
	background-color: #31a6ff;
}
.nav ul{
	margin-left: 100px;
	list-style: none;
}
.nav li {
	text-align: center;
	float: left;
	width: 100px;
	line-height: 44px;
	
}

.nav li a {
	color: #fff;
	font-size: 16px;
	text-decoration: none;
}

.nav li:hover {
	background-color: #f58a25;
}

.banner {
	overflow: hidden;
	height: 300px;
	background: url(../images/bpic.jpg) no-repeat;
	background-size: 100% 300px;
}

.cont{

	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 80px;
}



footer {
    background-color: #c7c7c7;
    padding: 10px 0;
}
footer a{
	text-decoration: none;
	color: white;
}



.foot-bottom {
    text-align: center;
    padding: 10px 0;
 
}




.content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}



h1 {
    color: #e67e22;
    text-align: center;
    margin-bottom: 30px;
}

.article-content {
    padding: 30px;
    border-radius: 10px;
}
.content ul {
    margin: 25px 0;
    padding-left: 20px;
}

.content li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;

    list-style: none;
}

.content li::before {
    content: "\2022";
    color: var(--primary);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
}




.food-slider {
    width: 100%;
    height: 400px;
    margin: 30px auto;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.slider-container {
    display: flex;
    width: 300%;
    height: 100%;
    animation: slide 12s infinite;
}

.slider-item {
    width: 33.33%;
    height: 100%;
}

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

@keyframes slide {
    0%, 25% {
        transform: translateX(0);
    }
    33%, 58% {
        transform: translateX(-33.33%);
    }
    66%, 91% {
        transform: translateX(-66.66%);
    }
    100% {
        transform: translateX(0);
    }
}

.food-slider:hover .slider-container {
    animation-play-state: paused;
}

.highlight {
    background-color: #fff9f2;
    padding: 20px;
    border-left: 4px solid #e67e22;
    margin: 20px 0;
}

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