.banner {
	width: 100%;
}

.banner .swiper-slide {
	background-repeat: no-repeat;
	background-size: cover, cover;
	background-position: center;
	width: 100%;
	height: 100vh;
	padding-top: 90px;
}

.banner .swiper-pagination-bullet {
	border-radius: 0;
	width: 30px;
	height: 4px;
}

.banner .w-1500 {
	height: 100%;
}

.banner .swiper-slide .text {
	display: flex;
	flex-flow: wrap;
	align-items: center;
	align-content: center;
	justify-content: flex-start;
	height: 100%;
	max-width: 650px;
	transform: translateX(100%);
	opacity: 0;
}

.banner .swiper-slide.swiper-slide-active .text {
	transform: translateX(0%);
	opacity: 1;
	transition: all 0.5s ease 0.5s;
}

.banner .text h6 {
	font-size: 14px;
	color: #ffffff;
	width: 100%;
	padding-left: 35px;
	position: relative;
}

.banner .text h6:after {
	content: '';
	display: inline-block;
	width: 20px;
	height: 2px;
	background-color: #EA6D01;
	position: absolute;
	left: 0;
	top: 6px;
}

.banner .text h4 {
	font-size: 40px;
	color: #ffffff;
	width: 100%;
	padding: 40px 0;
	border-bottom: 2px solid #999999;
}

.banner .text p {
	color: #ffffff;
	width: 100%;
	padding: 50px 0;
	padding-right: 50px;
	line-height: 2;
}

@media (max-width:1200px) {
	.banner .swiper-slide {
		height: 700px;
		padding-top: 70px;
	}
	.swiper-button-next:after,
	.swiper-button-prev:after {
		font-size: 30px;
	}
	.banner .text h4 {
		font-size: 32px;
		padding: 30px 0;
	}
	.banner .text p {
		padding: 30px 0;
	}
}

@media (max-width:980px) {
	.banner .swiper-slide {
		height: 550px;
		padding-top: 60px;
	}
	.swiper-button-next:after,
	.swiper-button-prev:after {
		font-size: 30px;
	}
	.banner .text h4 {
		font-size: 24px;
		padding: 20px 0;
	}
	.banner .text p {
		padding: 20px 0;
	}
}

@media (max-width:500px) {
	.banner .swiper-slide {
		height: 350px;
		padding-top: 50px;
	}
	.swiper-button-next:after,
	.swiper-button-prev:after {
		font-size: 20px;
	}
	.banner .text h6 {
		display: none;
	}
	.banner .text h4 {
		font-size: 20px;
		padding: 0px 0 15px;
	}
	.banner .text p {
		padding: 10px 0 20px;
		font-size: 15px;
		line-height: 1.6;
	}
	.banner .swiper-slide .text {
		width: 80%;
		padding-left: 30px;
	}
}

.title-H4 {
	font-size: 15px;
	font-weight: 600;
	color: #333;
	padding-bottom: 10px;
}

.title-H2 {
	font-size: 32px;
	font-weight: 600;
	color: #21242B;
	padding-bottom: 20px;
	margin-bottom: 50px;
	border-bottom: 4px solid #EA6D01;
	display: inline-block;
}

.title-H4.color-f {
	color: #ffffff;
}

.title-H2.color-f {
	color: #ffffff;
}

.product ul {
	display: flex;
	flex-flow: wrap;
	gap: 40px
}

.product ul li {
	width: calc(50% - 20px);
	padding: 80px;
	padding-right: 40px;
	background-color: #fafafa;
	display: flex;
	flex-flow: wrap;
	justify-content: space-between;
	align-items: flex-start;
	align-content: center;
	transition: all 0.3s ease 0s;
}

.product ul li:hover {
	background-color: #eeeeee;
}

.product ul li .li-L {
	width: 60%;
}

.product ul li .li-R {
	width: 30%;
	display: flex;
	flex-flow: wrap;
	justify-content: center;
	align-items: center;
	align-content: center;
}

.product ul li .li-R img {
	max-width: 100%;
	max-height: 190px;
	transform: rotateY(0deg);
	transition: all 0.5s ease 0s;
}

.product ul li:hover .li-R img {
	transform: rotateY(180deg);
}

.product ul li h4 {
	font-size: 24px;
	font-weight: 600;
	color: #21242B;
	padding-bottom: 20px;
}

.product ul li:hover h4 {
	color: #EA6D01;
}

.product ul li p {
	font-size: 16px;
	color: #555555;
	padding-bottom: 50px;
	line-height: 1.6;
}

.product ul li:hover p {
	color: #21242B;
}

@media (max-width:1200px) {
	.title-H2 {
		font-size: 28px;
		padding-bottom: 15px;
		margin-bottom: 35px;
	}
	.product ul li {
		padding: 50px;
		padding-right: 30px;
	}
	.product ul li h4 {
		font-size: 22px;
	}
}

@media (max-width:980px) {
	.title-H2 {
		font-size: 24px;
		padding-bottom: 15px;
		margin-bottom: 30px;
	}
	.product ul {
		gap: 20px;
	}
	.product ul li {
		width: calc(50% - 10px);
		padding: 40px;
		padding-right: 20px;
	}
	.product ul li h4 {
		font-size: 20px;
		padding-bottom: 15px;
	}
	.product ul li p {
		padding-bottom: 30px;
		font-size: 15px;
	}
}

@media (max-width:768px) {
	.product ul {
		gap: 20px;
	}
	.product ul li {
		width: 100%;
	}
}

@media (max-width:500px) {
	.title-H4 {
		font-size: 12px;
		padding-bottom: 8px;
	}
	.title-H2 {
		font-size: 20px;
		padding-bottom: 10px;
		margin-bottom: 10px;
	}
	.product ul {
		gap: 10px;
	}
	.product ul li h4 {
		font-size: 18px;
	}
}

.about {
	background-image: url(/wp-content/themes/aomeisi/images/bg3.jpg);
	background-repeat: no-repeat;
	background-size: cover, cover;
	background-position: center;
}

.about .about-text {
	display: flex;
	flex-flow: wrap;
	justify-content: space-between;
	align-content: flex-start;
	align-items: flex-start;
}

.about .about-L {
	width: 40%;
}

.about .about-R {
	width: 35%;
}

.about .about-R .img img {
	width: 100%;
}

.about .text {
	padding-bottom: 50px;
}

.about p {
	color: #999999;
	line-height: 1.8;
}

.about p+p {
	padding-top: 15px;
}

@media (max-width:1200px) {
	.about .about-L {
		width: 55%;
	}
	.about .about-R {
		width: 35%;
	}
}

@media (max-width:980px) {
	.about .about-L {
		width: 60%;
	}
	.about .about-R {
		width: 35%;
	}
	.about p {
		font-size: 15px;
	}
	.about p+p {
		padding-top: 10px;
	}
}

@media (max-width:768px) {
	.about .about-L {
		width: 95%;
	}
	.about .about-R {
		width: 80%;
	}
	.about .text {
		padding-bottom: 20px;
	}
	.about .about-R .img {
		padding-top: 20px;
	}
}

@media (max-width:500px) {
	.about .about-L {
		width: 100%;
	}
	.about .about-R {
		width: 100%;
	}
}

.advantage {
	background-image: url(/wp-content/themes/aomeisi/images/advantage.jpg);
	background-repeat: no-repeat;
	background-size: cover, cover;
	background-position: center;
}

.advantage .w-1500 {
	display: flex;
	flex-flow: wrap;
	justify-content: flex-end;
	align-content: flex-start;
	align-items: flex-start;
}

.advantage .advantage-L {
	padding-right: 100px;
}

.advantage ul {
	display: flex;
	flex-flow: wrap;
	width: 100%;
	max-width: 720px;
	border-left: 1px solid #ffffff;
	border-right: 1px solid #ffffff;
}

.advantage ul li {
	width: 50%;
	padding: 40px 40px 80px;
}

.advantage ul li:hover {
	background-color: #EA6D01;
}

.advantage ul li .img img {
	width: 50px;
}

.advantage ul li .img {
	background-color: #ffffff;
	border-radius: 50px;
	display: inline-block;
	padding: 2px;
	width: 40px;
}

.advantage ul li .img img {
	width: 100%;
}

.advantage ul li h4 {
	font-size: 32px;
	padding: 30px 0;
	color: #ffffff;
}

.advantage ul li p {
	font-size: 16px;
	line-height: 2;
	color: #ffffff;
}

.advantage ul li:nth-of-type(2n-1) {
	border-right: 1px solid #ffffff;
}

.advantage ul li:nth-of-type(1),
.advantage ul li:nth-of-type(2) {
	border-bottom: 1px solid #ffffff;
}

@media (max-width:1200px) {
	.advantage ul li {
		padding: 40px 40px 60px;
	}
	.advantage ul li h4 {
		font-size: 28px;
		padding: 25px 0;
	}
	.advantage ul li p {
		line-height: 1.8;
	}
}

@media (max-width:980px) {
	.advantage ul li {
		padding: 30px 30px 50px;
	}
	.advantage ul li h4 {
		font-size: 24px;
		padding: 20px 0;
	}
	.advantage ul li p {
		font-size: 15px;
	}
}

@media (max-width:720px) {
	.advantage .w-1500 {
		padding: 0;
	}
}

@media (max-width:500px) {
	.advantage ul li {
		width: 100%;
		padding: 20px 20px 30px;
		border-right: 0px solid #ffffff;
	}
	.advantage ul li h4 {
		font-size: 18px;
		padding: 15px 0 10px;
	}
	.advantage ul li:nth-of-type(3) {
		border-bottom: 1px solid #ffffff;
	}
}

.index-fixd {
	display: flex;
	flex-flow: wrap;
	justify-content: space-between;
	align-items: center;
}

.equipment ul {
	width: 100%;
	display: flex;
	flex-flow: wrap;
	gap: 40px;
}

.equipment ul li {
	width: calc( 33.33% - 80px/3);
}

.equipment ul li a {
	display: inline-block;
	width: 100%;
}

.equipment ul li .img {
	background-repeat: no-repeat;
	background-size: cover, cover;
	background-position: center;
	width: 100%;
}

.equipment ul li .img-1 {
	height: 520px;
}

.equipment ul li .img-2 {
	height: 240px;
}

.equipment ul li a+a {
	margin-top: 40px;
}

@media (max-width:1200px) {
	.equipment ul {
		gap: 20px;
	}
	.equipment ul li {
		width: calc( 33.33% - 40px/3);
	}
	.equipment ul li a+a {
		margin-top: 20px;
	}
	.equipment ul li .img-1 {
		height: 500px;
	}
}

@media (max-width:980px) {
	.equipment ul {
		gap: 10px;
	}
	.equipment ul li {
		width: calc( 33.33% - 20px/3);
	}
	.equipment ul li a+a {
		margin-top: 10px;
	}
	.equipment ul li .img-1 {
		height: 370px;
	}
	.equipment ul li .img-2 {
		height: 180px;
	}
}

@media (max-width:500px) {
	.equipment ul li {
		width: 100%;
	}
	.equipment ul li .img-1 {
		height: 240px;
	}
	.equipment ul li .img-2 {
		height: 180px;
	}
}

.application {
	background-image: url(/wp-content/themes/aomeisi/images/application.jpg);
	background-repeat: no-repeat;
	background-size: cover, cover;
	background-position: center;
}

.application ul {
	display: flex;
	flex-flow: wrap;
	gap: 40px;
}

.application ul li {
	padding: 60px 50px;
	background-color: rgba(0, 0, 0, 0.45);
	width: calc( 25% - 120px/4);
	display: flex;
	flex-flow: wrap;
	align-content: space-between;
	align-items: flex-start;
	justify-content: flex-start;
}

.application ul li>div {
	width: 100%;
}

.application ul li:hover {
	background-color: rgba(0, 0, 0, 0.85);
}

.application ul li .img {
	width: 100%;
}

.application ul li .img img {
	width: 60px;
}

.application ul li h4 {
	font-size: 22px;
	font-weight: 400;
	color: #ffffff;
	padding-top: 40px;
	padding-bottom: 20px;
	width: 100%;
}

.application ul li p {
	font-size: 15px;
	color: #999999;
	padding-bottom: 50px;
	line-height: 1.8;
	width: 100%;
}

@media (max-width:1200px) {
	.application ul {
		gap: 20px;
	}
	.application ul li {
		width: calc( 25% - 60px/4);
		padding: 30px 30px 40px;
	}
	.application ul li h4 {
		padding-top: 30px;
		padding-bottom: 15px;
		font-size: 20px;
	}
	.application ul li p {
		padding-bottom: 30px;
	}
}

@media (max-width:980px) {
	.application ul li {
		width: calc( 50% - 20px/2);
	}
	.application ul li p {
		font-size: 15px;
		padding-bottom: 20px;
	}
	.application ul li .img img {
		width: 50px;
	}
}

@media (max-width:768px) {
	.application ul li {}
}

@media (max-width:500px) {
	.application ul {
		gap: 10px;
	}
	.application ul li {
		width: 100%;
		padding: 20px 20px 30px;
	}
	.application ul li .img img {
		width: 40px;
	}
	.application ul li h4 {
		font-size: 18px;
		padding-top: 15px;
		padding-bottom: 10px;
	}
}

.new ul {
	display: flex;
	flex-flow: wrap;
	gap: 50px;
}

.new ul li {
	width: calc(33.33% - 100px/3);
	border-bottom: 3px solid #dddddd;
}

.new ul li:hover {
	border-bottom: 3px solid #EA6D01;
}

.new ul li .img {
	position: relative;
}

.new ul li .img:after {
	content: '';
	width: 0%;
	height: 0%;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	background-color: rgba(234, 109, 0, 0.75);
	z-index: 1;
	transition: all 0.3s ease 0s;
}

.new ul li:hover .img:after {
	width: 100%;
	height: 100%;
}

.new ul li .img img {
	width: 100%;
}

.new ul li h4 a {
	font-size: 18px;
	color: #21242B;
	display: inline-block;
	padding: 10px 0;
	line-height: 1.6;
}

.new ul li:hover h4 a {
	color: #EA6D01;
}

.new ul li p {
	font-size: 16px;
	color: #555555;
	line-height: 1.6;
	margin-bottom: 20px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.new ul li .time {
	color: #dddddd;
	padding-bottom: 30px;
}

@media (max-width:1200px) {
	.new ul {
		gap: 20px;
	}
	.new ul li {
		width: calc(33.33% - 40px/3);
	}
}

@media (max-width:980px) {
	.new ul li h4 a {
		font-size: 16px;
	}
	.new ul li p {
		font-size: 15px;
	}
}

@media (max-width:768px) {
	.new ul li {
		width: 100%;
	}
}

@media (max-width:500px) {
	.new ul li h4 a {
		padding-bottom: 5px;
	}
	.new ul {
		gap: 10px
	}
	.new ul li p {
		margin-bottom: 10px;
	}
	.new ul li .time {
		padding-bottom: 15px;
		font-size: 14px;
	}
}