@charset "utf-8";
.shipListBox {
	overflow: hidden;
}

.shipList {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 138px;
}

.shipList li {
  width: 33.3333333%;
	position: relative;
	overflow: hidden;
}

.shipList li::after,
.shipList li::before {
	width: 100%;
	height: 1px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	content: "";
	background: #fff;
}

.shipList li::after {
	width: 1px;
	height: 100%;
}

.shipList li:nth-child(3n) {
	left: -1px;
}

.shipList li:nth-child(3n-2)::after {
	display: none;
}

.shipList li img {
  width: 100%;
  display: block;
}

.shipList li a {
	overflow: hidden;
  display: block;
}

.shipPicSpace {
	display: block;
}

.shipList li a:hover {
  opacity: 1;
}

.shipList li a .shipPic {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	width: 100%;
  transition: width .5s ease;
}

.shipList li a:hover .shipPic {
  width: 105%;
}

.shipText {
	position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
	background-color: rgba(51,94,118,.6);
	display: flex;
	align-items: center;
	justify-content: center;
}

.shipInner {
	color: #fff;
  text-align: center;
  position: relative;
  z-index: 1;
}

.shipInner p {
	font-size: 23px;
	font-weight: 400;
	letter-spacing: 1.2px;
}

.shipInner span {
	display: block;
	font-size: 13px;
	font-weight: 400;
	line-height: 1.6;
	letter-spacing: .6px;
	margin-top: 18px;
	margin-bottom: 20px;
	white-space: pre-wrap;
}

.itemEnName {
	text-align: center;
	position: absolute;
	left: 0;
	width: 100%;
	bottom: 25px;
	font-size: 15px;
	color: #fff;
	letter-spacing: .8px;
	z-index: 1;
}

@media all and (min-width: 0) and (max-width: 767px) {
	.shipList li,
	.shipList li:nth-child(3n) {
		flex: 0 0 50%;
	}

	.shipInner p {
		font-size: 14px;
		letter-spacing: 0.2px;
		line-height: 1.5;
	}

	.shipList {
		margin-right: 0;
		margin-bottom: 90px;
	}

	.shipList li:nth-child(3n) {
		left: 0;
	}

	.shipList li:nth-child(3n-2)::after {
		display: block;
	}

	.shipList li:nth-child(2n-1)::after {
		display: none;
	}

	.shipList li a:hover .shipPic {
		width: 100%;
	}

	.itemEnName {
		bottom: 17px;
		font-size: 12px;
	}
}
