* {
							margin: 0;
							padding: 0;
						}

						.swiper-contione {
							width: 100%;
							height: 600px;
							overflow: hidden;
							position: relative;
						}

						.swiper {
							width: 9999999px;
							height: 600px;
							transition: all 1s ease;
						}

						.swiper-item {
							width: 1920px;
							height: 600px;
							float: left;
							position: relative;
							z-index: 999;
						}

						.swiper-item img {
							width: 100%;
							height: 600px;
						}

						.swiper-item p {
							width: 100%;
							height: 50px;
							top: 0;
							left: 0;
							background: rgba(0, 0, 0, 0.5);
							color: #fff;
							text-align: center;
							line-height: 50px;
							cursor: pointer;
						}

						.swiper-point {
							width: 100%;
							height: 40px;
							position: absolute;
							bottom: 0;
							left: 0;
							display: flex;
							justify-content: center;
							align-items: center;
							cursor: pointer;
						}

						.point {
							width: 12px;
							height: 12px;
							border-radius: 50%;
							background: rgba(0, 0, 0, 0.9);
							margin-right: 5px;
							float: left;
						}

						.point.active {
							background: #fff;
						}

						.swiper-left {
							width: 60px;
							height: 100%;
							position: absolute;
							top: 0;
							left: -60px;
							display: flex;
							align-items: center;
							justify-content: center;
							transition: all 0.4s ease;
						}

						.swiper-right {
							width: 60px;
							height: 100%;
							position: absolute;
							top: 0;
							right: -60px;
							display: flex;
							align-items: center;
							justify-content: center;
							transition: all 0.4s ease;
						}

						.swiper-left img,
						.swiper-right img {
							cursor: pointer;
						}

						.swiper-contione:hover .swiper-left {
							left: 0;
						}

						.swiper-contione:hover .swiper-right {
							right: 0;
						}