html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

img {
	max-width: 100%;
	max-height: 100%;
}

:root {
	--purp-color: #643775;
}

html, body {
	height: 100%;
	box-sizing: border-box;
}
body {
	font-family: 'Inter', sans-serif;
	font-size: 16px;

	/*background: fixed url('bg.png') no-repeat center center / cover;*/
	background-color: #fff;

	display: flex;
	flex-direction: column;
}

main {
	max-width: 680px;
	margin: 0 auto;
	text-align: center;

	padding-top: 50px;
	padding-bottom: 0;

	position: relative;
}


main section {
	position: relative;
	z-index: 3;
}

main h1 {
	text-transform: uppercase;
	font-size: 46px;
	color: #f67f35;
	background: var(--purp-color);
	font-weight: 700;
	margin-bottom: 25vh;

	display: inline-block;

	padding: 10px 20px;
	border-radius: 30px;


}

main .block-btn {
	text-align: center;
}


:root {
	--col-gray: #596471;
	--col-darkblue: #060448;
}

img {
	max-width: 100%;
	max-height: 100%;
}

header {
	background: rgba(6, 5, 46, 0.88);
	padding: 9px 0;
	text-align: center;
}

header .block .logotype {
	display: inline-block;
	max-width: 151px;
	margin: 0 auto;
	text-decoration: none; /* 去掉下划线 */

}

.logo {
	color: #fff;
	font-size: 32px;
	font-weight: 700;
	text-decoration: none; /* 去掉下划线 */
}


.title {
	color: var(--col-gray);
	font-size: 31px;
	font-weight: 700;

	text-align: left;

	max-width: 455px;
	margin: 35px auto 0;
}

.title span {
	font-size: 31px;
	display: block;
	text-align: right;
}

.sub-title {
	color: var(--col-gray);
	font-weight: 700;
	font-size: 31px;
	text-align: right;

	margin-top: 15px;
}

.prod-title {
	color: var(--col-darkblue);
	font-weight: 700;
	font-size: 44px;
	text-align: center;

	margin-top: 35px;
	margin-bottom: 35px;
}

.prod-list {
	padding-bottom: 50px;
}

.prod-list .list {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
}

.prod-list .list .item {
	width: calc(33.33333% - 36px);

	max-height: 214px;
	background: #fff;
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
	border-radius: 9px;

	padding: 12px;

	display: flex;
	flex-direction: column;

	outline: none;
	text-decoration: none;

	transition: all .3s;
}
.prod-list .list .item:hover {
	box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);

	transform: scale(1.1);
}
.prod-list .list .item h3 {
	font-size: 21px;
	text-transform: uppercase;
	font-weight: 600;
	color: #000;
	margin-bottom: 15px;
}
.prod-list .list .item img {
	margin: auto;
}

.prod-list .list .item img.max-width {
	max-width: 135px;
}


/*main .block-btn .btn {
	background: #008037;
	text-align: center;
	text-transform: uppercase;
	font-size: 44px;
	font-weight: 700;
	display: inline-block;
	padding: 15px 35px;

	color: #fff;
	text-decoration: none;
	border-radius: 40px;

	transition: all .3s;
}

main .block-btn .btn:hover {
	background: #0c4424;
}*/


footer {
  margin-top: auto;
  background: #2E2E2E;
  padding: 35px 0;
  text-align: center;

  position: relative;
  z-index: 3;
}
footer ul {
  list-style: none;
  padding: 0;
}
footer ul li {
  margin-bottom: 15px;
}
footer ul li:last-child {
  margin-bottom: 0;
}
footer a {
  color: #fff;
}

footer a:hover {
  color: #ccc;
}

.block-btn {
	text-align: center;
}
.block-btn .btn {
	display: block;
	height: auto;
  outline: none;
  cursor: pointer;
  position: relative;
  z-index: 0;
  padding: 14px 0;
  font-size: 34px;
  letter-spacing: 1.5px;
  margin: 35px auto 10px;
  width: 100%;
  max-width: 370px;
  font-weight: 300;
  border-radius: 50px;
  background: #ffa41c;
  border: 1px solid #ff8f00;
  box-shadow: 0 2px 5px 0 hsl(180deg 5% 84% / 50%);
  color: #0f1111;
  text-decoration: none;

  transition: all. 3s;
}
.block-btn .btn:hover {
	filter: brightness(95%);
}

@media (max-width: 890px) {
	main .box {
		display: flex;
		align-items: flex-start;
	}
	main .b-pos {
		position: relative;
		top: 0;
		left: 0;
		right: 0;
	}

	main {
		padding: 0 15px;
	}

	.title,
	.title span,
	.sub-title {
		font-size: 26px;
	}

	.prod-title {
		font-size: 36px;
	}

	.prod-list .list .item {
		width: calc(50% - 33px);
	}
}

@media (max-width: 455px) {
	.prod-list .list .item {
		width: 100%;
	}
}
