@charset "utf-8";
/* CSS Document */
*{
	margin: 0;
	padding: 0;
}
html,body{
	width:100%;
	min-width:1550px;
 }
a{
	text-decoration:none;
	color:black;
	font-size:18px;
   }
body{
	text-align: center;
	font-family: -apple-system-font,Helvetica Neue,sans-serif;
	text-rendering:ptimizeLegibility;
	margin: 0;
	padding: 0;
	width: 100%;
    background-color: white;
}
.dy{
    width: 1300px;
    height: auto;
    margin: 2% auto 0 auto;
	padding: 1%;
    background: linear-gradient(49deg, 
    rgba(188, 242, 255, 0.41), 
    rgba(135, 189, 255, 0.50));
}
.dy_box{
	border: 1px dotted #87bdff;
    padding: 2%;
    border-radius: 4px;
    position: relative;
}
.dy p{
    text-indent: 2em;
    text-align: left;
	margin: 0 auto;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.05);
    line-height: 2;
    color: #2b6200;
    font-size: 19px;
	max-width: 1200px;
}
.snjc{
	width: 1300px;
	height: auto;
	overflow: hidden;
	margin: 4% auto 0 auto;
}
.snjc_main {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	margin: 1.5% auto 0 auto;
}
.image-item {
	flex: 1;
	min-width: 0;
	text-align: center;
	text-decoration: none; 
	color: #333; 
	transition: transform 0.3s ease; 
}
.image-item:hover {
	transform: translateY(-5px); 
}
.image-item img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	border-radius: 5px; 
	box-shadow: 0 2px 5px rgba(0,0,0,0.1); 
	margin-bottom: 10px;
}
.image-item .title {
	font-size: 16px;
	font-weight: 600;
	padding: 5px 0;
}
.tlxc{
	width: 1300px;
	height: auto;
	overflow: hidden;
	margin: 6% auto 0 auto;
}
.tlxc_main{
	width: 100%;
	height: auto;
	margin: 2% auto 0 auto;
}
.tlxc_main_img{
	width: 32%;
	float: left;
	margin:0 0 1% 0.7%;
	height: auto;
}
.tlxc_main p{
	line-height: 1.8;
	width: 99%;
	height: auto;
	margin: 2% auto;
}
.lovesummer{
	width: 1300px;
	margin: 6% auto 0 auto;
	overflow: hidden;
	position: relative;
	border-radius: 8px;
	padding: 0 10px;
	box-sizing: border-box;
}
.love_main {
	position: relative;
	width: 100%;
	overflow: hidden;
	border-radius: 5px;
	backdrop-filter: blur(10px);
	padding: 30px 0;
}

.slider {
	display: flex;
	width: calc(300px * 12);
	animation: slide 30s linear infinite;
}

.slider:hover {
	animation-play-state: paused;
}

.slider-item {
	width: 300px;
	height: 220px;
	margin: 0 10px;
	border-radius: 5px;
	overflow: hidden;
	position: relative;
	transition: all 0.4s ease;
	flex-shrink: 0;
}

.slider-item:hover {
	transform: scale(1.08);
	z-index: 10;
}

.slider-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

@keyframes slide {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(calc(-300px * 6)); 
	}
}

.end{
    text-align: center;
    height: 90px;
    width: 100%;
	margin: 2% auto 0 auto;
}
.end p {
    font-size: 15px;
    line-height: 30px;
	text-align: center;
}
.end a {
    font-size: 15px;
}