#lineup {
	margin-top: 80px;
}

#lineup .list {
	display: flex;
	flex-flow: row wrap;
}

#lineup .list > li {
	width: 25%;
}

#lineup .list > li:nth-of-type(n+5) {
	margin-top: 50px;
}

#lineup .list > li > a,
#lineup .list > li > span {
	overflow: hidden;
	display: block;
	position: relative;
	z-index: 1;
	height: 100%;
	color: #bfa46f;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.3s;
}

#lineup .list > li > a .thumb,
#lineup .list > li > span .thumb {
	overflow: hidden;
	display: block;
	position: relative;
	z-index: 1;
	line-height: 0;
}

#lineup .list > li > a .thumb::before,
#lineup .list > li > span .thumb::before {
	content: "";
	opacity: 0;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 10;
	width: 1px;
	height: 100%;
	background: #bfa46f;
}

#lineup .list > li > a .thumb::after,
#lineup .list > li > span .thumb::after {
	content: "";
	opacity: 0;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 10;
	width: 100%;
	height: 100%;
	background: #bfa46f;
	transition: all 0.3s;
}

#lineup .list > li > a .name,
#lineup .list > li > span .name {
	display: block;
	padding: 20px;
	font-size: 0.9em;
	line-height: 1.7em;
	text-align: left;
	transition: all 0.3s;
}

#lineup .list > li > a:hover .thumb::after,
#lineup .list > li > span:hover .thumb::after {
	opacity: 0.5;
}

#lineup .list > li:not(:nth-of-type(4n+1)) .thumb::before {
	opacity: 0.3 !important;
}

#detail {
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	text-align: left;
}

#detail > .pic {
	width: 360px;
}

#detail > .desc {
	width: calc(100% - 360px - 60px);
}

#detail > .desc > h1 {
	margin-bottom: 20px;
	border-bottom: 1px solid rgba(191, 164, 111, 0.3);
	padding-bottom: 20px;
	color: #bfa46f;
	font-size: 1.6em;
	line-height: 1.4em;
}

#detail > .desc .icons {
	display: flex;
	flex-flow: row wrap;
	margin-bottom: 10px;
}

#detail > .desc .icons > li {
	box-sizing: border-box;
	display: flex;
	flex-flow: row nowrap;
	justify-content: center;
	align-items: center;
	margin-bottom: 5px;
	border-radius: 2px;
	padding: 0 15px;
	min-width: 90px;
	height: 20px;
	background: #474749;
	color: #fff;
	font-size: 0.7em;
	line-height: 1.2em;
	white-space: nowrap;
	text-align: center;
}

#detail > .desc .intro {
	font-size: 0.9em;
	line-height: 1.6em;
}

#detail > .desc .spec {
	margin-top: 5px;
	font-size: 0.9em;
	line-height: 1.4em;
	text-align: left;
}

#detail > .desc .spec > table {
	width: 100%;
}

#detail > .desc .spec > table th,
#detail > .desc .spec > table td {
	padding: 5px 0;
	font-weight: 400;
	vertical-align: top;
}

#detail > .desc .spec > table th {
	color: #bfa46f;
}

#detail .goods-slider .slick-list {
	border: 1px solid #bfa46f;
	background: #bfa46f;
}

#detail .goods-slider .slick-dots {
	display: flex;
	flex-flow: row wrap;
	margin: 0;
	padding: 0;
	width: 100%;
}

#detail .goods-slider .slick-dots > li {
	margin: 6px 0 0 6px;
	width: calc((100% - 24px) / 5);
}

#detail .goods-slider .slick-dots > li:nth-of-type(5n+1) {
	margin-left: 0;
}

#detail .goods-slider .slick-dots > li button {
	box-sizing: border-box;
	overflow: hidden;
	outline: none;
	position: relative;
	z-index: 1;
	margin: 0;
	border: 1px solid #a0d8ef;
	padding: 0;
	background: #bfa46f;
	font-size: 1px;
	line-height: 0;
	transition: all 0.3s;
}

#detail .goods-slider .slick-dots > li button img {
	transition: all 0.3s;
}

#detail .goods-slider .slick-dots > li.slick-active button,
#detail .goods-slider .slick-dots > li:not(.slick-active) button:hover {
	border-color: #bfa46f;
}

#detail .goods-slider .slick-dots > li.slick-active button img,
#detail .goods-slider .slick-dots > li:not(.slick-active) button:hover img {
	opacity: 0.4;
}

@media screen and (max-width: 750px) {

#lineup {
	margin-top: 100px;
}

#lineup .list > li {
	width: 50%;
}

#lineup .list > li:nth-of-type(n+3) {
	margin-top: 50px;
}

#lineup .list > li > a .name,
#lineup .list > li > span .name {
	padding: 15px;
	font-size: 1em;
	line-height: 1.3em;
}

#lineup .list > li > a:hover .thumb::after,
#lineup .list > li > span:hover .thumb::after {
	opacity: 0;
}

#lineup .list > li:nth-of-type(odd) .thumb::before {
	opacity: 0 !important;
}

#lineup .list > li:nth-of-type(even) .thumb::before {
	opacity: 0.3 !important;
}

#detail {
	display: block;
}

#detail > .pic {
	margin: 0 auto 60px;
	width: 560px;
}

#detail > .desc {
	width: auto;
}

#detail > .desc > h1 {
	margin-bottom: 30px;
	border-bottom-width: 2px;
}

#detail > .desc .icons {
	margin-bottom: 15px;
}

#detail > .desc .icons > li {
	height: 26px;
}

#detail > .desc .intro {
	font-size: 1em;
	line-height: 1.8em;
}

#detail > .desc .spec {
	border-width: 2px 0;
	padding: 10px 0;
	font-size: 1em;
	line-height: 1.4em;
}

#detail > .desc .spec > table th,
#detail > .desc .spec > table td {
	padding: 7px 0;
}

#detail .goods-slider .slick-list {
	border-width: 2px;
}

#detail .goods-slider .slick-dots > li {
	margin: 10px 0 0 10px;
	width: calc((100% - 40px) / 5);
}

#detail .goods-slider .slick-dots > li button {
	border-width: 2px;
}

#detail .goods-slider .slick-dots > li:not(.slick-active) button:hover {
	border-color: #a0d8ef;
}

#detail .goods-slider .slick-dots > li:not(.slick-active) button:hover img {
	opacity: 1;
}

}


/*# sourceMappingURL=../map/goods.css.map */
