@charset "utf-8";
/* reset */
* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

body {
	font-size: 12px;
	font-family: pp-rg, Arial, 微软雅黑;
	color: #333;
	overflow-x: hidden;
	background: #000;
}

h1,
h2,
h3,
h4,
h5 {
	font-weight: normal;
}

em,
i {
	font-style: normal;
}

li {
	list-style: none;
}

a {
	text-decoration: none;
	color: inherit!important;
}

a:focus {
	text-decoration: none;
	outline: none;
}

img {
	border: none;
	max-width: 100%;
	max-height: 100%;
}




/* 内容浮动清除 */
.clearfix {*zoom: 1;}
.clearfix:before,.clearfix:after {content:'';display: block;height: 0;clear: both;visibility: hidden;}




/* 图片盒子缩放居中 */
.img_box {
	font-size: 0;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

.img_box img {
	-webkit-transition: all .6s ease-in-out;
	-moz-transition: all .6s ease-in-out;
	transition: all .6s ease-in-out;
}

.img_box:hover img {
	transform: scale(1.2);
	-ms-transform: scale(1.2);
	-webkit-transform: scale(1.2);
}

.img_box2 {
	font-size: 0;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}




/* 图片盒子适应填充 */
.img-cover {
	font-size: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.img-cover img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	-webkit-transition: all .6s ease-in-out;
	-moz-transition: all .6s ease-in-out;
	transition: all .6s ease-in-out;
}

.img-cover:hover img {
	transform: scale(1.1);
	-ms-transform: scale(1.1);
	-webkit-transform: scale(1.1);
}

.img-cover2 {
	font-size: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.img-cover2 img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}




/* 响应式内容区 */
.main{max-width:1600px; margin: 0 auto;}
@media (max-width:1600px){
	.main{padding-left:15px;padding-right:15px;box-sizing: border-box;}
}




/**
 * 响应式样式
 * 只保留隐藏样式
 */
/*当页面大于1200px时，大屏幕主要是PC端*/
@media (min-width:1200px){
	.hidden-lg{
		display: none!important;
	}
}

/*在992和1199像素之间的屏幕里，中等屏幕，分辨率低的PC*/
@media (min-width:992px) and (max-width:1199px){
	.hidden-md{
		display: none!important;
	}
}

/*在768和991像素之间的屏幕里，小屏幕，主要是PAD*/
@media (min-width:768px) and (max-width:991px){
	.hidden-sm{
		display: none!important;
	}
}

/*在小于767像素的屏幕，微小屏幕，更低分辨率的手机*/
@media (max-width: 767px){
	.hidden-xs{
		display: none!important;
	}
}




@font-face {
	font-family: pp-rg;
	src: url(../fonts/Poppins-Regular.otf);
}




.banner,
.inner-banner {
	font-size: 0;
}

.banner img,
.inner-banner img {
	width: 100%;
}




.swiper-pagination-bullet,
.swiper-button-prev,
.swiper-button-next {
	opacity: 1 !important;
	border: none;
	outline: none;
}

.swiper .swiper-pagination {
	font-size: 0;
	bottom: 0;
}

.swiper-button-prev,
.swiper-button-next,
.swiper-button-prev::after,
.swiper-button-next::after {
	background-size: contain;
	background-repeat: no-repeat;
}

.swiper-button-prev,
.swiper-button-next
{
	margin-top: 0;
}

.swiper-button-prev {
	left: 0;
	right: auto;
	background-position: left center;
}

.swiper-button-next {
	left: auto;
	right: 0;
	background-position: right center;
}

.swiper-button-prev::after,
.swiper-button-next::after {
	content: '';
	position: absolute;
	background-position: center;
}




.font-omit1,
.font-omit2,
.font-omit3 {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
}

.font-omit1 {
	line-clamp: 1;
	-webkit-line-clamp: 1;
}

.font-omit2 {
	line-clamp: 2;
	-webkit-line-clamp: 2;
}

.font-omit3 {
	line-clamp: 3;
	-webkit-line-clamp: 3;
}




.pb-menu {
	border-bottom: 1px solid #dcdcdc;
	background-color: #fff;
}

.pb-menu li {
	color: #333;
	font-size: 18px;
	line-height: 80px;
	height: 80px;
	float: left;
	position: relative;
}

.pb-menu li:not(:last-child) {
	margin-right: 20px;
}

.pb-menu li::after {
	content: '';
	width: 0;
	height: 4px;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 0;
	transition: all ease-in-out .6s;
	background-color: #291770;
}

.pb-menu li.on::after,
.pb-menu li:hover::after {
	width: 100%;
}

.pb-menu li a {
	width: 100%;
	height: 100%;
	padding: 0 25px;
	display: inline-block;
}




.listbox .list a {
	width: 100%;
	height: 100%;
	display: inline-block;
}




.page {
	text-align: center;
	padding: 40px 0;
}

.page .pagination {
	display: inline-block;
}

.page .pagination li {
	color: #fff;
	font-size: 20px;
	font-family: 'pp-rg';
	float: left;
	width: 26px;
	height: 45px;
	line-height: 45px;
	margin: 0 10px;
}

.page .pagination li span,
.page .pagination li a {
	display: block;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	padding: 0 3px;
}

.page .pagination li.active,
.page .pagination li:hover {
	border-bottom: 1px solid #fff;
}




@media(max-width:1200px) {
	.page .pagination li {
		font-size: 17px;
		width: 25px;
		height: 40px;
		line-height: 40px;
		margin: 0 8px;
	}
}

@media(max-width:768px) {
	.page .pagination li {
		font-size: 15px;
		width: 25px;
		height: 38px;
		line-height: 38px;
	}
}

@media(max-width:430px) {
	.page .pagination li {
		font-size: 13px;
		width: 20px;
		height: 35px;
		line-height: 35px;
	}
}




.breadcrumbs {
	padding: 30px 0;
	background: #f4f4f4;
}

.breadcrumbs ul {
	display: flex;
	align-items: center;
}

.breadcrumbs li {
	color: #666;
	font-size: 16px;
	line-height: 30px;
	height: 30px;
	position: relative;
	transition: all .3s;
}

.breadcrumbs li:not(
	:first-child,
	:last-child) 
{
	margin-right: 16px;
}

.breadcrumbs li:not(
	:first-child,
	:last-child)::after 
{
	content: '/';
	width: 4px;
	position: absolute;
	top: 50%;
	transform: translate(0 , -50%);
	left: auto;
	right: -10px;
}

.breadcrumbs li a {
	height: 100%;
	display: inline-block;
}

.breadcrumbs li a:hover {
	color: var(--theme-color);
}




@media(max-width:1200px) {
	.breadcrumbs {
		padding: 20px 0;
	}
	
	.breadcrumbs li {
		font-size: 14px;
		line-height: 28px;
		height: 28px;
	}
	
	.breadcrumbs li:not(
		:first-child,
		:last-child) 
	{
		margin-right: 14px;
	}
	
	.breadcrumbs li:not(
		:first-child,
		:last-child)::after 
	{
		right: -9px;
	}
}

@media(max-width:1200px) {
	.breadcrumbs {
		display: none;
	}
}




.grid2,
.grid3,
.grid4 {
	display: grid;
}

.grid2 {
	grid-template-columns: 1fr;
}

.grid3 {
	grid-template-columns: repeat(3, 1fr);
}

.grid4 {
	grid-template-columns: repeat(4, 1fr);
}




.flex,
.flex-center,
.flex-between {
	display: flex;
	flex-wrap: wrap;
}

.flex-center {
	align-items: center;
	justify-content: center;
}

.flex-between {
	justify-content: space-between;
}




input,
select,
textarea,
button {
	border: none;
	outline: none;
	display: block;
	border-radius: 0;
}

textarea {
	font-family: 'Arial';
	resize: none;
	overflow: hidden;
}

button {
	cursor: pointer;
}




.form .captcha {
	cursor: pointer;
}

.form .captcha img {
	width: 100%;
	height: 100%;
}




.around-btn {
	display: flex;
	align-items: center;
	justify-content: center;
}

.around-btn .swiper-button-prev,
.around-btn .swiper-button-next,
.around-btn .swiper-pagination 
{
	position: static;
}

.around-btn .swiper-button-prev,
.around-btn .swiper-button-next 
{
	width: 75px;
	height: 75px;
	margin-top: 0;
	position: relative;
	background-image: url(../images/prev.png);
}

/* .around-btn .swiper-button-prev {
	margin-right: 35px;
} */

.around-btn .swiper-button-next {
	transform: rotate(180deg);
}

.around-btn .swiper-button-prev:hover,
.around-btn .swiper-button-next:hover {
	background-image: url(../images/prev-touch.png);
}

.around-btn .swiper-pagination {
	font-size: 0;
	width: auto;
	margin: 0 80px;
}

.around-btn .swiper-pagination-bullet {
	width: 22px;
	height: 22px;
	margin: 0 5px !important;
	background: rgba(255, 255, 255, .5);
}

.around-btn .swiper-pagination-bullet-active {
	background: #fff;
}




@media(max-width:1400px) {
	.around-btn .swiper-button-prev,
	.around-btn .swiper-button-next 
	{
		width: 60px;
		height: 60px;
	}

	.around-btn .swiper-pagination {
		margin: 0 40px;
	}

	.around-btn .swiper-pagination-bullet {
		width: 18px;
		height: 18px;
	}
}

@media(max-width:1200px) {
	.around-btn .swiper-button-prev,
	.around-btn .swiper-button-next 
	{
		width: 50px;
		height: 50px;
	}

	.around-btn .swiper-pagination {
		margin: 0 35px;
	}

	.around-btn .swiper-pagination-bullet {
		width: 15px;
		height: 15px;
	}
}

@media(max-width:768px) {
	.around-btn .swiper-button-prev,
	.around-btn .swiper-button-next 
	{
		width: 40px;
		height: 40px;
	}

	.around-btn .swiper-pagination {
		margin: 0 25px;
	}

	.around-btn .swiper-pagination-bullet {
		width: 12px;
		height: 12px;
	}
}

@media(max-width:430px) {
	.around-btn .swiper-button-prev,
	.around-btn .swiper-button-next 
	{
		width: 32px;
		height: 32px;
	}

	.around-btn .swiper-pagination {
		margin: 0 20px;
	}

	.around-btn .swiper-pagination-bullet {
		width: 10px;
		height: 10px;
		margin: 0 4px!important;
	}
}




.icon,
.bgCover {
	background-repeat: no-repeat;
	background-position: center;
}

.icon {
	display: block;
	background-size: contain;
}

.bgCover {
	background-size: cover;
}




*::after {
	box-sizing: border-box;
	position: absolute;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}




:root {
    --theme-color:#a7212f;
	--theme-touch-color:#c42738;
}




/* .theme-title {
	
} */




.theme-background-color {
	background: #000;
}




.navbar {
	border-bottom: 1px solid #e5e5e5;
}

.navbar ul {
	max-width: 1400px;
	display: flex;
	margin: 0 auto;
}

.navbar ul li {
	color: #666;
	font-size: 18px;
	line-height: 78px;
	height: 78px;
	position: relative;
}

.navbar ul li:not(:last-child) {
	margin-right: 45px;
}

.navbar ul li.active,
.navbar ul li:hover {
	color: var(--theme-color);
	font-weight: bold;
}

.navbar ul li::after {
	content: '';
	width: 0;
	height: 3px;
	top: auto;
	transform: translate(-50% , 0);
	bottom: 0;
	transition: all ease-in-out .4s;
	background: var(--theme-color);
}

.navbar ul li.active::after,
.navbar ul li:hover::after {
	width: 100%;
}

.navbar ul li a {
	width: 100%;
	height: 100%;
	display: inline-block;
}




.inner-title-container {
	display: flex;
	flex-wrap: wrap;
	max-width: 1600px;
	margin: 0 auto;
}

.inner-title-container .theme-inner-navbar {
	margin: 48px 0 0 auto;
}




@media(max-width:1600px)  {
	.inner-title-container {
		padding: 0 15px;
	}
}

@media(max-width:1400px) {
	.inner-title-container .theme-inner-navbar {
		margin: 35px 0 0 auto;
	}
}

@media(max-width:1200px) {
	.inner-title-container .theme-inner-navbar {
		margin: 30px 0 0 auto;
	}
}

/* @media(max-width:430px) {
	.inner-title-container .theme-inner-navbar {
		margin: 25px 0 0 auto;
	}
} */




.theme-inner-title {
	color: #fff;
}

.theme-inner-title h2 {
	font-size: 46px;
	text-transform: uppercase;
	padding-left: 91px;
	position: relative;
}

.theme-inner-title h2::before,
.theme-inner-title h2::after {
	content: '';
	width: 38px;
	height: 38px;
	box-sizing: border-box;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	border-radius: 50%;
	border: 2px solid var(--theme-color);
	background: var(--theme-color);
}

.theme-inner-title h2::before {
	left: 0;
}

.theme-inner-title h2::after {
	left: 43px;
	background: transparent;
}

.theme-inner-title p {
	font-size: 20px;
	line-height: 1;
	display: inline-block;
	padding-bottom: 3px;
	margin-left: 91px;
	border-bottom: 1px solid #fff;
}




@media(max-width:1400px) {
	.theme-inner-title h2 {
		font-size: 35px;
		padding-left: 70px;
	}

	.theme-inner-title h2::before,
	.theme-inner-title h2::after {
		width: 30px;
		height: 30px;
	}

	.theme-inner-title h2::after {
		left: 35px;
	}

	.theme-inner-title p {
		font-size: 18px;
		margin-left: 70px;
	}
}

@media(max-width:1200px) {
	.theme-inner-title h2 {
		font-size: 30px;
		padding-left: 55px;
	}

	.theme-inner-title h2::before,
	.theme-inner-title h2::after {
		width: 24px;
		height: 24px;
	}

	.theme-inner-title h2::after {
		left: 27px;
	}

	.theme-inner-title p {
		font-size: 15px;
		margin-left: 55px;
	}
}

@media(max-width:768px) {
	.theme-inner-title h2 {
		font-size: 24px;
		padding-left: 48px;
		margin-bottom: 3px;
	}

	.theme-inner-title h2::before,
	.theme-inner-title h2::after {
		width: 20px;
		height: 20px;
	}

	.theme-inner-title h2::after {
		left: 23px;
	}

	.theme-inner-title p {
		font-size: 14px;
		margin-left: 48px;
	}
}

@media(max-width:430px) {
	.theme-inner-title h2 {
		font-size: 20px;
		padding-left: 42px;
	}

	.theme-inner-title h2::before,
	.theme-inner-title h2::after {
		/* width: 18px;
		height: 18px; */
		width: 17px;
		height: 17px;
	}

	.theme-inner-title h2::after {
		left: 20px;
	}

	.theme-inner-title p {
		font-size: 13px;
		line-height: 20px;
		margin-left: 40px;
	}
}




.theme-inner-navbar {
	display: flex;
	flex-wrap: wrap;
}

.theme-inner-navbar li {
	color: #fff;
	font-size: 20px;
	line-height: 69px;
	text-transform: capitalize;
	height: 69px;
	transition: all .2s;
	position: relative;
}

.theme-inner-navbar li:not(:last-child) {
	margin-right: 69px;
}

.theme-inner-navbar li.active,
.theme-inner-navbar li:hover {
	color: var(--theme-color);
}

.theme-inner-navbar li::after {
	content: '';
	width: 0;
	height: 3px;
	left: 50%;
	transform: translateX(-50%);
	bottom: 0;
	transition: all .2s;
	background: #fff;
}

.theme-inner-navbar li.active::after,
.theme-inner-navbar li:hover::after {
	width: 27px;
}

.theme-inner-navbar li a {
	height: 100%;
	display: inline-block;
}




@media(max-width:1400px) {
	.theme-inner-navbar li {
		font-size: 18px;
		line-height: 55px;
		height: 55px;
	}

	.theme-inner-navbar li:not(:last-child) {
		margin-right: 50px;
	}
}

@media(max-width:1200px) {
	.theme-inner-navbar li {
		font-size: 16px;
		line-height: 45px;
		height: 45px;
	}

	.theme-inner-navbar li:not(:last-child) {
		margin-right: 40px;
	}

	.theme-inner-navbar li::after {
		height: 2px;
	}
}

@media(max-width:768px) {
	.theme-inner-navbar {
		width: 100%;
	}

	.theme-inner-navbar li {
		font-size: 15px;
		line-height: 35px;
		height: 35px;
	}

	.theme-inner-navbar li:not(:last-child) {
		margin-right: 30px;
	}

	.theme-inner-navbar li::after {
		height: 2px;
	}

	.theme-inner-navbar li.active::after,
	.theme-inner-navbar li:hover::after {
		width: 20px;
	}
}

@media(max-width:430px) {
	.theme-inner-navbar li {
		font-size: 14px;
		text-align: center;
		line-height: 28px;
		height: 28px;
	}

	.theme-inner-navbar li:not(:last-child) {
		margin-right:24px;
	}

	.theme-inner-navbar li::after {
		height: 2px;
	}

	.theme-inner-navbar li.active::after,
	.theme-inner-navbar li:hover::after {
		width: 18px;
	}
}




.list-border-line {
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
}

.list-border-line .packaging {
	max-width: 1600px;
	margin: 0 auto;
	border-left: 1px solid #fff;
	border-right: 1px solid #fff;
}




@media(max-width:1600px) {
	.list-border-line {
		padding: 0 45px;
	}
}

@media(max-width:768px) {
	.list-border-line {
		padding: 0 30px;
	}
}

@media(max-width:430px) {
	.list-border-line {
		padding: 0 15px;
	}

	.list-border-line .packaging {
		border: none;
	}
}




.list-container .group a {
	width: 100%;
	height: 100%;
	display: inline-block;
}




.pb-form  {
	padding: 102px 0 144px;
}

.pb-form .ligrop:nth-child(1),
.pb-form .ligrop:nth-child(2) {
	margin-bottom: 56px;
}

.pb-form .li p {
	color: #010000;
	font-size: 22px;
	line-height: 1;
	padding: 0 10px;
}

.pb-form input,
.pb-form select {
	color: #666;
	font-size: 16px;
	font-family: pp-rg;
	width: 100%;
	border: none;
	border-bottom: 1px solid #b2b1b5;
	background-color: transparent;
}

.pb-form input {
	padding: 10px 10px 19px;
}

.pb-form .infor {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0 181px;
	padding-right: 162px;
}

.pb-form .distpicker .selebox {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 0 162px;
}

.pb-form .distpicker select {
	appearance: none;
	-ms-appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	padding: 10px 58px 19px 10px;
	background: url(../images/down.png) no-repeat right 37px center/11px 7px;
}

.pb-form .msg {
	margin-bottom: 73px;
}

.pb-form .subbtn {
	display: grid;
	grid-template-columns: 1fr 610px;
	gap: 0 120px;
	padding-right: 70px;
}

.pb-form .subbtn .li {
	position: relative;
}

.pb-form .subbtn input {
	width: 100%;
	padding: 10px 150px 19px 10px!important;
}

.pb-form .subbtn .captcha {
	width: 160px;
	height: 50px;
	position: absolute;
	top: 10px;
	right: 0;
}

.pb-form .subbtn button {
	color: #fff;
	font-size: 26px;
	font-family: pp-rg;
	height: 70px;
	margin-top: auto;
	transition: all ease-in-out .4s;
	background-color: var(--theme-color);
}

.pb-form .subbtn button:hover {
	background-color: var(--theme-touch-color);
}




@media(max-width:1600px) {
	.pb-form  {
		padding: 102px 15px 144px;
	}
}

@media(max-width:1400px) {
	.pb-form .infor,
	.pb-form .distpicker .selebox {
		gap: 0 120px;
	}

	.pb-form .ligrop:not(:last-child) {
		margin-bottom: 55px!important;
	}

	.pb-form .infor {
		padding-right: 0;
	}

	.pb-form .li p {
		font-size: 20px;
	}
	
	.pb-form input {
		padding: 10px;
	}

	.pb-form .distpicker select {
		padding: 10px 20px 10px 10px;
		background-position: right 10px center;
	}

	.pb-form .subbtn {
		grid-template-columns: repeat(2, 1fr);
		padding-right: 0;
	}

	.pb-form .subbtn input {
		padding: 10px 130px 10px 10px!important;
	}

	.pb-form .subbtn .captcha {
		width: 130px;
		height: 45px;
	}

	.pb-form .subbtn button {
		font-size: 22px;
		height: 60px;
	}
}

@media(max-width:1200px) {
	.pb-form .infor,
	.pb-form .distpicker .selebox,
	.pb-form .subbtn {
		gap: 0 80px;
	}

	.pb-form .ligrop:not(:last-child) {
		margin-bottom: 50px!important;
	}

	.pb-form .infor {
		padding-right: 0;
	}

	.pb-form .li p {
		font-size: 18px;
	}
	
	.pb-form input {
		font-size: 14px;
	}

	.pb-form .subbtn button {
		font-size: 20px;
		height: 50px;
	}
}

@media(max-width:768px) {
	.pb-form {
        padding: 90px 15px 120px;
    }

	.pb-form .infor,
	.pb-form .distpicker .selebox,
	.pb-form .subbtn {
		grid-template-columns: 1fr;
		gap: 17px 0;
	}

	.pb-form .ligrop:not(:last-child) {
		margin-bottom: 17px!important;
	}

	.pb-form .infor {
		padding-right: 0;
	}

	.pb-form .li p {
		font-size: 17px;
		line-height: normal;
		padding: 0;
		margin-bottom: 3px;
	}

	.pb-form input,
	.pb-form .distpicker select {
		border-bottom: none!important;
		background-color: #ddd;
	}
	
	.pb-form input {
		font-size: 14px;
		padding: 15px;
	}

	.pb-form .distpicker .selebox {
		gap: 10px 0;
	}

	.pb-form .distpicker select {
		font-size: 14px;
		padding: 15px 20px 15px 10px;
	}

	.pb-form .subbtn {
		gap: 55px 0;
	}

	.pb-form .subbtn input {
        padding: 15px 130px 15px 10px !important;
    }

	.pb-form .subbtn .captcha {
        width: 130px;
        height: 51px;
		top: auto;
		bottom: 0;
    }

	.pb-form .subbtn button {
		font-size: 17px;
		height: 50px;
	}
}

@media(max-width:430px) {
	.pb-form {
        /* padding: 80px 15px 105px; */
		padding: 67px 15px 100px;
    }

	.pb-form .infor,
	.pb-form .distpicker .selebox,
	.pb-form .subbtn {
		gap: 15px 0;
	}

	.pb-form .ligrop:not(:last-child) {
		margin-bottom: 15px!important;
	}

	.pb-form .li p {
		font-size: 16px;
	}

	.pb-form input, .pb-form select {
		font-size: 13px;
	}

	.pb-form .subbtn {
		gap: 50px 0;
	}

	.pb-form .subbtn input {
        padding: 15px 115px 15px 10px!important;
    }

	.pb-form .subbtn .captcha {
		width: 115px;
		height: 50px;
	}

	.pb-form .subbtn button {
		font-size: 16px;
	}
}




.mark-icon {
	width: 108px;
	height: 83px;
}

.redleft-mark-icon {
	background-image: url(../images/red-opening-quote.png);
}

.redright-mark-icon {
	background-position: right center;
	background-image: url(../images/red-closing-quote.png);
}

.whiteleft-mark-icon {
	background-image: url(../images/white-opening-quote.png);
}




@media(max-width:1400px) {
	.mark-icon {
		width: 85px;
		height: 65px;
	}
}

@media(max-width:1200px) {
	.mark-icon {
		width: 70px;
		height: 50px;
	}
}

@media(max-width:768px) {
	.mark-icon {
		width: 55px;
		height: 35px;
	}
}

@media(max-width:430px) {
	.mark-icon {
		width: 40px;
		height: 30px;
	}
}




.theme-markers-title {
	display: flex;
	align-items: flex-end;
}

.theme-markers-title h2 {
	color: #fff;
	font-size: 30px;
	line-height: 1;
	display: inline-block;
	padding-left: 33px;
	margin-left: 44px;
	position: relative;
	border-bottom: 1px solid #fff;
}

.theme-markers-title h2::after {
	content: '';
	width: 25px;
	height: 25px;
	top: 50%;
	left: 3px;
	transform: translateY(-50%);
	border-radius: 50%;
	background: #fff;
}




@media(max-width:1400px) {
	.theme-markers-title h2 {
		font-size: 28px;
		padding-left: 25px;
		margin-left: 30px;
	}
	
	.theme-markers-title h2::after {
		width: 20px;
		height: 20px;
		left: 0;
	}
}

@media(max-width:1200px) {
	.theme-markers-title h2 {
		font-size: 24px;
		padding-left: 20px;
		margin-left: 20px;
	}
	
	.theme-markers-title h2::after {
		width: 18px;
		height: 18px;
	}
}

@media(max-width:768px) {
	.theme-markers-title h2 {
		font-size: 20px;
		padding-left: 18px;
		margin-left: 18px;
	}
	
	.theme-markers-title h2::after {
		width: 15px;
		height: 15px;
	}
}

@media(max-width:430px) {
	.theme-markers-title h2 {
		font-size: 18px;
		padding-left: 15px;
		margin-left: 15px;
	}
	
	.theme-markers-title h2::after {
		width: 13px;
		height: 13px;
	}
}




.theme-text-style {
	color: #fff;
	font-size: 20px;
	line-height: 40px;
}




@media(max-width:1400px) {
	.theme-text-style {
		font-size: 17px;
		line-height: 34px;
	}
}

@media(max-width:1200px) {
	.theme-text-style {
		font-size: 15px;
		line-height: 30px;
	}
}

@media(max-width:768px) {
	.theme-text-style {
		font-size: 14px;
		line-height: 26px;
	}
}

@media(max-width:430px) {
	.theme-text-style {
		font-size: 13px;
		line-height: 23px;
	}
}




.img {
	font-size: 0;
}




.ornament {
	color: #fff;
	font-size: 15px;
	text-transform: uppercase;
	margin: 100px 0 60px;
	padding: 24px 0;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
}

.ornament .content {
	display: flex;
	align-items: center;
	max-width: 1600px;
	margin: 0 auto;
}

.ornament .li:not(:first-child) {
	margin-left: auto;
}




@media(max-width:1600px) {
	.ornament {
		margin: 100px 0 60px;
	}

	.ornament .content {
		padding: 0 15px;
	}
}

@media(max-width:1400px) {
	.ornament {
		font-size: 14px;
		padding: 18px 0;
		margin: 70px 0 60px;
	}
}

@media(max-width:1200px) {
	.ornament {
		font-size: 13px;
		padding: 15px 0;
		margin: 25px 0 50px;
	}
}


@media(max-width:768px) {
	.ornament {
		font-size: 13px;
		padding: 15px 0;
		margin: 0 0 50px;
	}
}

@media(max-width:430px) {
	.ornament {
		font-size: 12px;
		padding: 13px 0;
		margin: 15px 0 40px;
	}
}




.banner-content-container {
	position: relative;
}

.banner-content-container .wrapper {
	width: 100%;
	position: absolute;
	left: 0;
	bottom: 40px;
}

.banner-content-container .theme-inner-title {
	max-width: 1600px;
	margin: 0 auto;
}




@media(max-width:1600px) {
    .banner-content-container .theme-inner-title {
		padding: 0 15px;
	}
}

@media(max-width:430px) {
	.banner-content-container .wrapper {
		bottom: 25px;
	}
}




.theme-index-title {
	align-items: normal;
    flex-direction: column;
}

.theme-index-title .icon {
    margin-bottom: 28px;
}

.theme-index-title h2 {
	font-size: 75px;
    line-height: 85px;	
	padding-left: 0;
	margin-left: 0;
	border: none;
}

.theme-index-title h2::after {
	display: none;
}




@media(max-width:1400px)  {
	.theme-index-title h2 {
		font-size: 45px;
		line-height: 60px;	
	}
}

@media(max-width:1200px)  {
	.theme-index-title .icon {
		margin-bottom: 20px;
	}

	.theme-index-title h2 {
		font-size: 35px;
		line-height: 38px;	
	}
}

@media(max-width:768px) {
	.theme-index-title .icon {
		margin-bottom: 15px;
	}

	.theme-index-title h2 {
		font-size: 24px;
		line-height: 32px;	
	}
}

@media(max-width:430px) {
	.theme-index-title h2 {
		font-size: 20px;
		line-height: 26px;	
	}
}




.theme-index-text {
	font-size: 20px;
	line-height: 36px;
}




@media(max-width:1400px) {
	.theme-index-text {
		font-size: 16px;
		line-height: 32px;
	}
}

@media(max-width:1200px) {
	.theme-index-text {
		font-size: 14px;
		line-height: 28px;
	}
}

@media(max-width:768px) {
	.theme-index-text {
		line-height: 26px;
	}
}

@media(max-width:430px) {
	.theme-index-text {
		font-size: 13px;
		line-height: 25px;
	}
}




.long-line {
	border-bottom: 1px solid #fff;
}