/* style.css */
body {
  margin: 0;
  padding: 0;
  background: #0050c8;
  font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
  color: #ffffff;
  max-width: 640px;
  margin:  0 auto;
}

.banenr{
	overflow: hidden;
	position: relative;
	text-align: center;
}
.title{
	text-align: center;
	margin-top: 20px;
}
.title h1{
	height: 8px;
	line-height: 0px;
}
.title h1:nth-child(2){
	margin-top: -20px;
}
.title h2{
	background: linear-gradient(90deg, #e8ba7e, #fcf3ed);
	    -webkit-background-clip: text;
	    background-clip: text;
	    color: transparent;
		font-size:1.5rem;
		line-height: 50px;
		margin-top: 10px;
}
.list{
	overflow: hidden;
	margin-top: 40px;
}
.list-box{
	display: flex;
	justify-content: center;
	padding: 10px 20px;
}
.list-l{
	width: 50%;
}
.list-r{
	width: 50%;
}
.list-box h1{
	text-align: center;
}
.list-box h1 img{
	width: 80%;
	max-width: 248px;
}
.list-box h2{
	font-size: 40px;
	font-weight: bold;
	padding: 0 30px;
}
.list-box p{
	font-size: 14px;
	padding: 10px 30px;
	
}
.biepa{
	border: 1px #fff solid;
	margin: 40px;
}
.biepa-box{
	display: flex;
	justify-content: center;
	padding: 20px;
	border-bottom: 1px #fff solid;
}
.biepa-box h1{
	font-size: 50px;
	width: 40%;
	background: linear-gradient(90deg, #e8ba7e, #fcf3ed);
	    -webkit-background-clip: text;
	    background-clip: text;
	    color: transparent;
}
.biepa-box p{
	font-size: 18px;
	margin-top: 5px;
}
.biepa-box2{
	padding: 20px;
}
.contat{
	background: #fff;
	border-radius: 10px;
	padding: 20px;
	margin: 20px;
}
.contat h1{
	color: #0a61bd;
	font-size: 20px;
	font-weight: bold;
}
.contat p{
	font-size: 14px;
	color: #666;
	margin-top: 10px;
}
.huoke{
	text-align: center;
	margin: 30px;
	margin-bottom: 40px;
}
.huoke h1{
	font-size: 20px;
}
.huoke a{
	

}
.pulse-button {
	display: block;
	border-radius: 50px;
    display: inline-block;
    padding: 10px 20px;;
    background-color: #ffc600;;
    color: #000;
    text-decoration: none;
    animation: pulse 2s infinite;
    transition: transform 0.3s ease;
	font-size: 20px;
	width: 90%;
}

.pulse-button:hover {
    animation: none;
    transform: scale(1.05);
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}