/* 全局CSS */

html {
	font-family: 'W3',-apple-system,BlinkMacSystemFont,Roboto,Helvetica,Arial,sans-serif;
}

* {
	margin: 0;
	padding: 0;
}

img {
	object-fit: cover;
}

a {
	text-decoration: none;
}

li {
	list-style: none;
}

a,
b,
span {
	color: #333333;
}

.pointer {
	cursor: pointer;
}

@font-face {
  font-family: 'Yuanti-SC-Light';
  src: url('../font/Yuanti-SC-Light.eot');
  src:
    url('../font/Yuanti-SC-Light.eot?#font-spider') format('embedded-opentype'),
    url('../font/Yuanti-SC-Light.woff') format('woff'),
    url('../font/Yuanti-SC-Light.ttf') format('truetype'),
    url('../font/Yuanti-SC-Light.svg') format('svg');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'FZLTCHJW--GB1-0';
  src: url('../font/FZLTCHJW--GB1-0.eot');
  src:
    url('../font/FZLTCHJW--GB1-0.eot?#font-spider') format('embedded-opentype'),
    url('../font/FZLTCHJW--GB1-0.woff') format('woff'),
    url('../font/FZLTCHJW--GB1-0.ttf') format('truetype'),
    url('../font/FZLTCHJW--GB1-0.svg') format('svg');
  font-weight: normal;
  font-style: normal;
}

@font-face {
	font-family: 'Montserrat-Medium';
	src: url(../font/Montserrat-Medium.otf);
}

@font-face {
	font-family: 'Montserrat-Light';
	src: url(../font/Montserrat-Light.otf);
}

/*这里可以定义元素的大小*/

input[type="checkbox"],
input[type="radio"] {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	position: relative;
	right: 0;
	bottom: 0;
	left: 0;
	height: 22px;
	width: 22px;
	vertical-align: -0.8rem;
	transition: all 0.15s ease-out 0s;
	color: #fff;
	cursor: pointer;
	display: inline-block;
	margin: 0.4rem;
	outline: none;
	border-radius: 10%;
}


/* Checkbox */

input[type="checkbox"]:before,
input[type="checkbox"]:after {
	position: absolute;
	content: "";
	background: #fff;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

input[type="checkbox"]:before {
	left: 8%;
	top: 56%;
	width: 40%;
	height: 2px;
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
}

input[type="checkbox"]:after {
	left: 52%;
	bottom: 16%;
	width: 2px;
	height: 65%;
	transform: rotate(40deg);
	-webkit-transform: rotate(40deg);
	-moz-transform: rotate(40deg);
	-ms-transform: rotate(40deg);
	-o-transform: rotate(40deg);
	transition-delay: 0.2s;
}


/*input[type=checkbox]:checked:before {
    left: 1px;
    top: 64%;
    width: 40%;
    height: 2px;
}

input[type=checkbox]:checked:after {
    left: 56%;
    bottom: 9%;
    width: 2px;
    height: 80%;
}*/

input[type="checkbox"]:indeterminate:before,
input[type="checkbox"]:indeterminate:after {
	width: 7px;
	height: 2px;
	transform: rotate(0);
	-webkit-transform: rotate(0);
	-moz-transform: rotate(0);
	-ms-transform: rotate(0);
	-o-transform: rotate(0);
}

input[type="checkbox"]:indeterminate:before {
	left: 1px;
	top: 7px;
}

input[type="checkbox"]:indeterminate:after {
	right: 1px;
	bottom: 7px;
}


/* Radio */

input[type="radio"] {
	border-radius: 50%;
}

input[type="radio"]:checked:before {
	transform: scale(1);
}


/*这里可以改变radio 中间圆点的大小*/

input[type="radio"]:before {
	content: "";
	display: block;
	width: 13px;
	height: 13px;
	border-radius: 50%;
	transform: scale(0);
	transition: all ease-out 250ms;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}


/* Colors */

input[type="checkbox"],
input[type="radio"] {
	border: 1px solid #cccccc;
}

input[type="checkbox"]:checked,
input[type="checkbox"]:indeterminate,
input[type="radio"]:checked:before {
	background: #B2A390;
}


/* Complement colors */

input[type="checkbox"].blue,
input[type="radio"].blue {
	border: 1px solid #B2A390;
}

input[type="checkbox"].blue:checked,
input[type="checkbox"].blue:indeterminate,
input[type="radio"].blue:checked:before {
	background: #B2A390;
}

input[type="checkbox"].red,
input[type="radio"].red {
	border: 1px solid #f44336;
}

input[type="checkbox"].red:checked,
input[type="checkbox"].red:indeterminate,
input[type="radio"].red:checked:before {
	background: #f44336;
}

input[type="checkbox"].orange,
input[type="radio"].orange {
	border: 2px solid #ffc107;
}

input[type="checkbox"].orange:checked,
input[type="checkbox"].orange:indeterminate,
input[type="radio"].orange:checked:before {
	background: #ffc107;
}


/*导航右侧按钮*/
.nav-toggle {
	width: 54px;
	height: 54px;
	position: absolute;
	right: 5px;
	top: 0;
	bottom: 0;
	margin: auto;
	cursor: pointer;
	z-index: 999;
}

.nav-toggle .icon {
	width: 21px;
	height: 2px;
	background: #FFFFFF;
	position: absolute;
	top: 26px;
	left: 16px;
	transition-duration: .5s;
	-webkit-transition-duration: .5s;
	-moz-transition-duration: .5s;
	-o-transition-duration: .5s;
}

.nav-toggle .icon::before,
.nav-toggle .icon::after {
	content: "";
	width: 21px;
	height: 2px;
	background: #FFFFFF;
	border-radius: 2px;
	position: absolute;
	transition-duration: .5s;
	-webkit-transition-duration: .5s;
	-moz-transition-duration: .5s;
	-o-transition-duration: .5s;
}

.nav-toggle .icon:before {
	top: -6px;
}

.nav-toggle .icon:after {
	top: 6px;
}

.nav-open .nav-toggle .icon {
	width: 0;
	background: #000000;
}

.nav-open .nav-toggle .icon:before {
	background: #FFFFFF;
	-webkit-transform: translateY(6px) rotate(45deg);
	-ms-transform: translateY(6px) rotate(45deg);
	transform: translateY(6px) rotate(45deg);
}

.nav-open .nav-toggle .icon:after {
	background: #FFFFFF;
	-webkit-transform: translateY(-6px) rotate(-45deg);
	-ms-transform: translateY(-6px) rotate(-45deg);
	transform: translateY(-6px) rotate(-45deg);
}
/*导航右侧按钮*/

/*页面向下箭头*/
.next-page {
	height: 70px;
	position: absolute;
	bottom: 10px;
	left: 0;
	right: 0;
	margin: auto;
	text-align: center;
    z-index: 99;
    /* pointer-events: none; */
}

.next-page > img {
	width: 22px;
	height: 12px;
	padding: 20px 20px 40px;
	cursor: pointer;
	position: relative;
	top: 0;
	transition: all .8s;
}

.next-page > img:hover {
	top: 10px;
}
/*页面向下箭头*/

/*移动端导航*/

.navigaiont-mobile {
	width: 100%;
	height: 100vh;
	background: #000000;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
	transition: all .4s;
}

.nm-header {
	height: 40px;
	line-height: 40px;
	border: 1px solid red;
	display: flex;
	justify-content: space-between;
}

.nm-logo {
	width: 22px;
	height: 19px;
	margin-top: 9px;
}

/*右侧菜单开始*/
.fl-wrapper-right-box {
	width: 198px;
	height: 100%;
	padding: 0 21px;
	box-sizing: border-box;
	position: fixed;
	right: -198px;
	top: 0;
	z-index: 9999;
	background: #FFFFFF;
	transition: all 0.4s;
}

.menu-btn-close {
	text-align: right;
	font-size: 14px;
}

.menu-btn-close > img {
	padding: 20px;
	cursor: pointer;
	position: relative;
	left: 15px;
}

.menu-router {
	overflow: hidden;
}

.menu-router > a {
	display: block;
	color: #000;
	font-size: 13px;
	padding: 20px 0 20px 13px;
	border-bottom: 1px solid #E0E0E0;
}

.menu-code {
	padding-bottom: 20px;
	border-bottom: 1px solid #E0E0E0;
}

.menu-code span{
	display: block;
	color: #000;
	font-size: 13px;
	padding: 20px 0 20px 13px;
}

.menu-code img {
	width: 98px;
	height: 98px;
	margin-left: 13px;
}

.menu-parentr {
	padding-bottom: 20px;
	border-bottom: 1px solid #E0E0E0;
}

.menu-parentr span{
	display: block;
	color: #000;
	font-size: 13px;
	padding: 20px 0 20px 13px;
}

.menu-parentr span{
	display: block;
	color: #000;
	font-size: 13px;
	padding: 20px 0 20px 13px;
}

.menu-parentr a {
	display: block;
	color: #000;
	font-size: 13px;
	padding-left: 13px;
	margin-top: 5px;
}
/*右侧菜单结束*/

/*蒙版*/

#modal {
	width: 100%;
	height: 100vh;
	background: #FFFFFF;
	position: fixed;
	z-index: 1000;
	top: 0;
	left: 0;
}

/* 返回顶部按钮 */
.scroll-top,
.scroll-top-index {
	width: 45px;
	height: 45px;
	border-radius: 50px;
	background: rgba(0,0,0,0.6);
	position: fixed;
	bottom: 50px;
	right: 30px;
	z-index: 9999;
	cursor: pointer;
	display: none;
	transition: all .3s;
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
}

.scroll-top img,
.scroll-top-index img {
	width: 80%;
	height: 80%;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	transition: all .3s;
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
}

.scroll-top:hover,
.scroll-top-index:hover {
	background: rgba(0,0,0,0.8);
}

.scroll-top:hover img,
.scroll-top-index:hover img {
	top: -2px;
}

/*  首行缩进两个字 */
.indent {
  text-indent: 2em;  
}