@keyframes spread {
	0% {
		transform: scale(0);
		-webkit-transform: scale(0);
		-moz-transform: scale(0);
		transform: scale(0);
	}

	100% {
		transform: scale(1);
		-webkit-transform: scale(1);
		-moz-transform: scale(1);
		transform: scale(1);
	}
}

@-webkit-keyframes spread {
	0% {
		transform: scale(0);
		-webkit-transform: scale(0);
		-moz-transform: scale(0);
		transform: scale(0);
	}

	100% {
		transform: scale(1);
		-webkit-transform: scale(1);
		-moz-transform: scale(1);
		transform: scale(1);
	}
}

@-moz-keyframes spread {
	0% {
		transform: scale(0);
		-webkit-transform: scale(0);
		-moz-transform: scale(0);
		transform: scale(0);
	}

	100% {
		transform: scale(1);
		-webkit-transform: scale(1);
		-moz-transform: scale(1);
		transform: scale(1);
	}
}

@-o-keyframes spread {
	0% {
		transform: scale(0);
		-webkit-transform: scale(0);
		-moz-transform: scale(0);
		transform: scale(0);
	}

	100% {
		transform: scale(1);
		-webkit-transform: scale(1);
		-moz-transform: scale(1);
		transform: scale(1);
	}
}

.w {
	width: 1200px;
	margin: 0 auto;
}
/* header */
.header-box {
	position: relative;
	width: 100%;
}

.banner-info p {
  font-family: 'Microsoft YaHei';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0.155em;
  color: #FFFFFF;
  text-align: center;
}

.header-top {
	position: absolute;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
	z-index: 11;
	width: 1200px;
	height: 60px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.header-left {
	display: flex;
	align-items: center;
}

.header-left img {
	width: 40px;
	margin-right: 13px;
}
.header-title h1 {
	font-family: 'Microsoft YaHei';
	font-style: normal;
	font-size: 18px;
	line-height: 24px;
	color: #fff;
	margin-top: 3px;
}
.header-title span {
	font-family: 'Microsoft YaHei';
	font-style: normal;
	font-weight: 400;
	font-size: 12px;
	color: #fff;
}
.header-right {
	display: flex;
	align-items: center;
}
.header-right a {
	font-size: 16px;
	font-family: MicrosoftYaHei;
	color: #FFFFFF;
	letter-spacing: 1px;
	margin-left: 64px;
}
.header-right a:hover {
	color: #45D0FF;
}
.header-right a:last-child {
	position: relative;
	overflow: hidden;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 140px;
  height: 40px;
	background: linear-gradient(98.5deg, #5C84FF 6.09%, #45D0FF 72.01%);
	border-radius: 20px;
	font-size: 16px;
	font-family: MicrosoftYaHei;
	color: #FFFFFF;
	cursor: pointer;
}
.header-right a:last-child i {
	position: absolute;
	top: 50%;
	left: 50%;
	background: rgba(255, 255, 255, .2);
	width: 280px;
	height: 280px;
	border-radius: 50%;
	margin-left: -140px;
	margin-top: -140px;
	animation: spread 1.5s infinite both;
	-webkit-animation: spread 1.5s infinite both;
	-moz-animation: spread 1.5s infinite both;
	-o-animation: spread 1.5s infinite both;
	z-index: 1;
}
.header-right a:hover:last-child {
	background: linear-gradient(98.5deg, #45D0FF 6.09%, #5C84FF 72.01%);
}

.download-btn {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 324px;
	height: 97px;
	background: #F53963;
	border-radius: 13px;
	margin: 0 auto;
	margin-top: 70px;
	margin-bottom: 12px;
	position: relative;
	overflow: hidden;
	z-index: 2;
}

.download-btn i {
	position: absolute;
	top: 50%;
	left: 50%;
	background: rgba(255, 255, 255, .2);
	width: 478px;
	height: 280px;
	border-radius: 50%;
	margin-left: -239px;
	margin-top: -140px;
	animation: spread 1.5s infinite both;
	-webkit-animation: spread 1.5s infinite both;
	-moz-animation: spread 1.5s infinite both;
	-o-animation: spread 1.5s infinite both;
	z-index: 1;
}

.download-btn:hover {
	background: #e23e61;
}
.download-btn span {
	font-size: 32px;
	font-family: MicrosoftYaHei;
	color: #FFFFFF;
	letter-spacing: 3px;
	margin: 0 24px;
}


/* hidden-header */
.hidden-header-box {
	display: none;
	width: 100%;
	height: 60px;
	background-color: #FFFFFF;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
	border-bottom: 1px solid #ddd;
}
.hidden-header-box .header-left h1 {
	color: #000;
}
.hidden-header-box .header-right a {
	color: #000;
}
.hidden-header-box .header-right a:hover {
	color: #45D0FF;
}
.hidden-header-box .header-right a:last-child {
	color: #FFFFFF;
}
/* banner */
.banner-content {
	height: 970px;
}
.banner-detail {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
	height: 970px;
}
.banner-detail.hide {
	display: none;
}
.banner-content ul {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
}
.banner-content ul li {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 91px;
}
.banner-content ul li:last-child {
  margin-right: 0;
}
.banner-content ul li h2 {
	font-family: 'Inter';
	font-style: normal;
	font-weight: 400;
	font-size: 20px;
	line-height: 24px;
	color: #FFFFFF;
  margin-top: 4px;
}
.banner-title {
  position: relative;
  width: fit-content;
}
.banner-title h1 {
	font-family: 'Microsoft YaHei';
	font-style: normal;
	font-weight: 700;
	font-size: 71px;
	line-height: 94px;
	color: #F1F7FE;
}
.banner-title h1 img {
  position: absolute;
  right: -9px;
  top: -20px;
  height: 83px;
  width: 510px;
}
.banner-label {
  position: absolute;
	right: -70px;
	top: -34px;
}
.banner-label span {
  position: absolute;
  left: 18px;
  top: 8px;
  width: max-content;
	font-family: 'Inter';
	font-style: normal;
	font-weight: 400;
	font-size: 18.5714px;
	line-height: 22px;
	color: #FFFFFF;
}
.banner-label span i {
  font-style: normal;
}
.banner-p1 {
  display: flex;
  align-items: center;
  margin-top: 28px;
  margin-bottom: 51px;
}
.banner-p1 p {
	font-family: 'Microsoft YaHei';
	font-style: normal;
	font-weight: 400;
	font-size: 27.9438px;
	line-height: 37px;
	letter-spacing: -0.01em;
	color: #F1F7FE;
  margin: 0 16px;
}
.banner-p1 i {
  display: inline-block;
  width: 11.53px;
  height: 3.55px;
  background: #fff;
}
.banner-p2 {
  width: 900px;
  font-family: 'Microsoft YaHei';
  font-style: normal;
  font-weight: 400;
  font-size: 23px;
  line-height: 30px;
  text-align: center;
  color: #FFFFFF;
  opacity: 0.9;  
  margin-bottom: 54px;
}
.banner-des-box {
  display: flex;
  align-items: center;
  margin-top: 34px;
  margin-bottom: 20px;
}
.banner-des-box p {
  display: flex;
  align-items: center;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 21.119px;
  line-height: 26px;
  color: #FFFFFF;
}
.banner-des-box p:first-child {
  margin-right: 20px;
}
.banner-des-box p img {
  display: inline-block;
  margin-top: 3px;
  margin-right: 5px;
}
.banner-num-box {
	position: absolute;
	left: 50%;
  bottom: 90px;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
}

.banner-num-box p {
	width: max-content;
  font-family: 'PingFang SC';
  font-style: normal;
  font-weight: 500;
  font-size: 25px;
  line-height: 35px;
  color: rgba(255, 255, 255, .8);
  mix-blend-mode: normal;
}
.banner-num-box p:first-child {
	margin-right: 143px;
}
.banner-num-box p i {
	display: inline-block;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	margin-right: 24px;
}

.banner-num-box p i {
	background: linear-gradient(139.57deg, #5C80FF 13.67%, #45CFFF 83.56%);
}

.banner-num-box p span {
  font-family: 'Microsoft YaHei';
  font-style: normal;
  font-weight: 400;
  font-size: 42px;
  line-height: 55px;
  text-align: center;
  color: #FFFFFF;
  margin-right: 4px;
}

.banner-info p {
  font-family: 'Microsoft YaHei';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0.155em;
  color: #FFFFFF;
  text-align: center;
}
.common-btn-box {
  display: flex;
  align-items: center;
  justify-content: center;
}
.common-btn {
  position: relative;
}
.common-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
	width: 323px;
	height: 74px;
	background: linear-gradient(92.72deg, #5B80FF 4.33%, #45CEFF 94.96%);
	border-radius: 14px;
}
.common-btn a:hover {
	background: linear-gradient(92.72deg, #45CEFF 4.33%, #5B80FF 94.96%);
}
.common-btn a span {
	font-family: 'Source Han Sans CN';
	font-style: normal;
	font-weight: 500;
	font-size: 24px;
	line-height: 36px;
	color: #F1F7FE;
  margin: 0 21px;
}
.common-btn a img:nth-child(1) {
  width: 30px;
}
.common-btn-label {
  position: absolute;
  right: -20px;
  top: -21px;
  display: none;
}
.common-btn-label.show {
  display: block;
}
.common-btn-label span {
  position: absolute;
  left: 14px;
  top: 2px;
  font-family: 'Microsoft YaHei';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 21px;
  color: #FFFFFF;
}
.fullyear {
  font-style: normal;
}

.video-box {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}
.video-box video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.mask-box {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, .3);
}

/* 水印处理 简单好用 */
.easy-box {
	width: 100%;
	background: url(../imgs/easy-bg.png) no-repeat center center;
	background-size: cover;
	padding-top: 167px;
	padding-bottom: 111px;
	box-sizing: border-box;
}
.easy-box h1 {
	font-family: 'Microsoft YaHei';
	font-style: normal;
	font-weight: 700;
	font-size: 48px;
	line-height: 63px;
	letter-spacing: 0.05em;
	color: #1C3B6A;	
	text-align: center;
	margin-bottom: 60px;
}
.easy-tab-box {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 545px;
	height: 54px;
	background: #F1F7FE;
	box-shadow: 0px 0px 14px #BDCCFE;
	border-radius: 100px;	
	margin: 0 auto;
	margin-bottom: 82px;
}

.tab-item {
	width: 179px;
	height: 46px;
	line-height: 46px;
	border-radius: 100px;	
	font-family: 'Microsoft YaHei';
	font-style: normal;
	font-weight: 400;
	font-size: 24px;
	letter-spacing: 0.05em;
	color: #1C3B6A;
	text-align: center;
	cursor: pointer;
}
.easy-content {
	display: flex;
	align-items: center;
}
.tab-item.active {
	font-weight: 700;
	background: linear-gradient(260.13deg, #5897FF 11.39%, #44CEFF 92.22%);
	color: #F1F7FE;
}
.text-item {
	display: none;
}
.text-item.show {
	display: block;
}
.easy-img-box img {
	display: none;
}
.easy-img-box img.show {
	display: block;
}
.easy-text-box {
	margin-top: -76px;
}
.text-item h2 {
	font-family: 'Microsoft YaHei';
	font-style: normal;
	font-weight: 400;
	font-size: 36px;
	line-height: 48px;
	color: #1C3B6A;
}
.text-item ul {
	display: flex;
	align-items: center;
	margin-top: 32px;
	margin-bottom: 26px;
}
.text-item ul li {
	padding: 6px 14px;
	border-radius: 20.9794px;
	background-clip: padding-box, border-box;
	background-origin: padding-box, border-box;
	background-image: linear-gradient(to right, #F1F7FE, #F1F7FE), linear-gradient(90.95deg, #48CBFF 1.85%, #5A9AFF 99.38%);
	box-sizing: border-box;
	border: 1px solid transparent;
	border-radius: 44px;	
	margin-right: 16px;
}
.text-item ul li:last-child {
	margin-right: 0;
}
.text-item ul li span {
	font-family: 'Microsoft YaHei';
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 21px;
	background: linear-gradient(90.95deg, #48CBFF 1.85%, #5A9AFF 99.38%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-fill-color: transparent;
}
.text-item p {
	width: 383px;
	height: 36px;
	font-family: 'Microsoft YaHei';
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 23px;
	letter-spacing: 0.05em;
	color: #7183A4;
	margin-bottom: 59px;
}

.text-item a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 201px;
	height: 62px;
	background: linear-gradient(266.02deg, #5997FF 5.69%, #46CAFF 80.48%);
	border-radius: 31px;	
}
.text-item a:hover {
	background: linear-gradient(266.02deg, #46CAFF 5.69%, #5997FF 80.48%);
}
.text-item a span {
	font-family: 'Microsoft YaHei';
	font-style: normal;
	font-weight: 400;
	font-size: 22px;
	line-height: 29px;
	color: #FFFFFF;
	margin-left: 12px;
}

/* 水印处理 一看就会 */
.intro-box {
	width: 100%;
	padding-top: 118px;
	padding-bottom: 88px;
	box-sizing: border-box;
	background: linear-gradient(0deg, #F1F7FE, #F1F7FE), #F1F4FC;
}
.intro-box h1 {
	font-family: 'Microsoft YaHei';
	font-style: normal;
	font-weight: 700;
	font-size: 48px;
	line-height: 63px;
	letter-spacing: 0.05em;
	color: #1C3B6A;
	text-align: center;
	margin-bottom: 62px;
}

.intro-content {
	position: relative;
	display: flex;
	justify-content: center;	
}
.intro-left-box {
	width: 58.4vw;
  height: 100vh;
}
.intro-left {
	position: absolute;
	top: calc((100vh - 30.7vw) / 2);
	bottom: auto;	
	width: 100%;
	min-width: 400px;
	height: 30.7vw;
	max-height: 660.92px;	
}
.intro-left.fixedIn {
	position: fixed;
	margin: auto;
	top: 0;
	bottom: 0;	
}
.intro-left.fixedOut {
	position: absolute;
	top: auto;
	bottom: calc((100vh - 30.7vw) / 2);	
}
.intro-left video {
	max-width: 990px;
	position: absolute;
	opacity: 0;
	top: 50%;
	right: 43.6vw;
	width: 46vw;
	transform: translateY(-50%);
	transition: opacity 1s;

	width: 670px;
	padding: 24px;
	box-sizing: border-box;
	background: #e8edf3;
	border-radius: 18.509px;
}
.intro-left video.fade {
	opacity: 1;
	transition: opacity 1.5s;	
}

.intro-right-box {
	margin-left: 40px;
	flex: 1 1;	
}
.intro-right-item {
	height: calc(100vh);
	display: flex;
	flex-direction: column;
	justify-content: center;	
}
.intro-right-item-text {
	opacity: .2;
	transition-property: all;
	transition-duration: .4s;
	width: 268px;	
}
.intro-right-item-text.fade2 {
	opacity: 1;
}
.intro-right-item-text h2 {
	font-family: 'Microsoft YaHei';
	font-style: normal;
	font-weight: 700;
	font-size: 38px;
	line-height: 50px;
	letter-spacing: 0.05em;
	color: #344154;	
	margin-bottom: 20px;
}
.intro-right-item-text p {
	width: 268px;
	font-family: 'Microsoft YaHei';
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 21px;
	letter-spacing: 0.05em;
	color: #344154;	
}


/* 满足各种剪辑需求 */
.func-box {
	width: 100%;
	padding-top: 75px;
	background: linear-gradient(0deg, #F1F7FE, #F1F7FE), #F1F4FC;
}
.func-box h1 {
	font-size: 36px;
	font-family: Source Han Sans CN-Bold, Source Han Sans CN;
	font-weight: bold;
	color: #000000;
	line-height: 42px;
	-webkit-background-clip: text;
	text-align: center;
}
.func-content {
	display: flex;
	align-items: center;
	margin-top: 89px;
}
.func-content ul li {
	display: flex;
	align-items: center;
	width: 445px;
	height: 111px;
	border-radius: 10px;
	padding-left: 28px;
	box-sizing: border-box;
}
.func-content ul li:hover {
	background: #FFFFFF;
	box-shadow: 0px 15px 24px #D5DDF8;
	border-radius: 10px;
}
.func-content ul li.active {
	background: #FFFFFF;
	box-shadow: 0px 15px 24px #D5DDF8;
	border-radius: 10px;
}
.func-content ul li img:nth-child(1) {
	display: block;
}
.func-content ul li img:nth-child(2) {
	display: none;
}
.func-content ul li.active img:nth-child(1) {
	display: none;
}
.func-content ul li.active img:nth-child(2) {
	display: block;
}
.func-text {
	margin-left: 30px;
}
.func-text h2 {
	font-family: 'Source Han Sans SC';
	font-style: normal;
	font-weight: 700;
	font-size: 22px;
	line-height: 32px;
	color: #1C3B6A;
	margin-bottom: 7px;
}
.func-content ul li.active .func-text h2 {
	font-family: 'Source Han Sans SC';
	font-style: normal;
	font-weight: 700;
	font-size: 22px;
	line-height: 32px;
	color: #1C3B6A;
}
.func-text p {
	width: 283px;
	font-family: 'Microsoft YaHei';
	font-style: normal;
	font-weight: 400;
	font-size: 15px;
	line-height: 20px;
	color: #7183A4;
}
.func-content ul li.active .func-text p {
	width: 283px;
	font-family: 'Microsoft YaHei';
	font-style: normal;
	font-weight: 400;
	font-size: 15px;
	line-height: 20px;
	color: #7183A4;
}
.func-img-box {
	position: relative;
	width: 500px;
}
.func-img-box img {
	display: none;
}
.func-img-box img.active {
	display: block;
}
/* 应用场景 */
.scen-box {
	width: 100%;
	background: linear-gradient(0deg, #F1F7FE, #F1F7FE), #F1F4FC;
}
.scen-bg {
	width: 100%;
	padding-top: 151px;
	padding-bottom: 174px;
	background: url(../imgs/scen-bg.png) no-repeat center center;
	background-size: cover;
	box-sizing: border-box;
}
.scen-box h1 {
	font-family: 'Microsoft YaHei';
	font-style: normal;
	font-weight: 700;
	font-size: 36px;
	line-height: 48px;
	letter-spacing: 0.05em;
	color: #000000;
	text-align: center;
}
.scen-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 1200px;
	margin: 0 auto;
	margin-top: 70px;
}
.scen-box .swiper-container {
	position: relative;
	width: 647px;
	border-radius: 4px;
}
.scen-box .swiper-pagination {
	position: absolute;
	left: 50%;
	bottom: 4px;
	transform: translateX(-50%);
	z-index: 10;
}
.scen-box .swiper-pagination .swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	background: #E3E3E3;
	margin-right: 8px;
	opacity: 1;
}
.scen-box .swiper-pagination .swiper-pagination-bullet-active {
	width: 17px;
	height: 8px;
	background: linear-gradient(0deg, #46CEFF, #46CEFF);
	border-radius: 4px;
}
.scen-box .swiper-pagination .swiper-pagination-bullet:last-child {
	margin-right: 0;
}
.scen-box .swiper-slide {
	position: relative;
}
.scen-box .swiper-slide h1 {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 88px;
	line-height: 68px;
	background: rgba(255, 255, 255, 0.25);	
	font-family: 'Microsoft YaHei';
	font-style: normal;
	font-weight: 700;
	font-size: 27px;
	letter-spacing: 0.05em;
	color: #FFFFFF;
	text-align: center;
}
.scen-right-box {
	position: relative;
}
.scen-middle-box img {
	position: absolute;
	left: 0;
	top: 53%;
	transform: translateY(-50%);
	display: none;
}
.scen-img-item {
	cursor: pointer;
}
.scen-middle-box img.active {
	display: block;
}
.scen-img-item img:nth-child(1) {
	display: block;
}
.scen-img-item img:nth-child(2) {
	display: none;
}
.scen-img-item.active img:nth-child(1) {
	display: none;
}
.scen-img-item.active img:nth-child(2) {
	display: block;
}
.scen-img-item img {
	z-index: 11;
}
.scen-img-item:nth-child(1) img {
	position: absolute;
	right: 146px;
	top: -10px;
}
.scen-img-item:nth-child(2) img {
	position: absolute;
	right: 22px;
	top: 74px;
}
.scen-img-item:nth-child(3) img {
	position: absolute;
	right: -42px;
	top: 167px;
}
.scen-img-item:nth-child(4) img {
	position: absolute;
	right: 19px;
	bottom: 85px;
}
.scen-img-item:nth-child(5) img {
	position: absolute;
	right: 146px;
	bottom: 5px;
}

.scen-img-item span {
	position: absolute;
	z-index: 10;
	font-family: 'Microsoft YaHei';
	font-style: normal;
	font-weight: 400;
	font-size: 18px;
	line-height: 24px;
	color: #1C3B6A;
	padding: 8px 0;
	padding-left: 24px;
	padding-right: 34px;
	background: #FFFFFF;
	border: 1px solid #1C3B6A;
	border-radius: 50px 0 0 50px;
	box-sizing: border-box;
	white-space: nowrap;
}
.scen-img-item:first-child span {
	padding-left: 35px;
	padding-right: 30px;
}
.scen-img-item:nth-child(1).active span {
	color: #54A3FF;
	border: 1px solid #54A3FF;
}
.scen-img-item:nth-child(2).active span {
	color: #FF8082;
	border: 1px solid #FF8082;
}
.scen-img-item:nth-child(3).active span {
	color: #FFCF7C;
	border: 1px solid #FFCF7C;
}
.scen-img-item:nth-child(4).active span {
	color: #78E3E4;
	border: 1px solid #78E3E4;
}
.scen-img-item:nth-child(5).active span {
	color: #F86ABE;
	border: 1px solid #F86ABE;
}
.scen-img-item:nth-child(1) span {
	left: 57px;
	top: -1px;
}
.scen-img-item:nth-child(2) span {
	left: 158px;
	top: 82px;
}
.scen-img-item:nth-child(3) span {
	left: 219px;
	top: 175px;
}
.scen-img-item:nth-child(4) span {
	left: 162px;
	top: 264px;
}
.scen-img-item:nth-child(5) span {
	left: 34px;
	top: 344px;
}
/* 评价 */
.assess-box {
  width: 100%;
	padding-bottom: 100px;
  box-sizing: border-box;
	background: linear-gradient(0deg, #F1F7FE, #F1F7FE), #F1F4FC;
}

.assess-content {
  width: 1200px;
  margin: 0 auto;
}

.assess-content ul:nth-child(1) li {
  display: none;
  width: 100%;
  height: 307px;
  box-sizing: border-box;
  background: #FEFDFF;
  border-radius: 30px;
  position: relative;
  z-index: 10;
  text-align: center;
  padding-top: 48px;
}

.assess-star h1 {
  font-size: 26px;
  font-weight: 700;
  color: #2D2856;
  margin-bottom: 24px;
}

.assess-content ul:nth-child(1) li span {
  display: block;
  width: 1000px;
  height: 1px;
  background: #EDF0F3;
  border-radius: 0px 0px 0px 0px;
  margin: 40px auto 0 auto;
}

.assess-content ul:nth-child(1) li p {
  font-size: 18px;
  font-weight: 400;
  color: #666473;
  margin-top: 44px;
}

.assess-content ul:nth-child(1) li i {
  display: block;
  width: 40px;
  height: 40px;
	background: #FEFDFF;
  border-radius: 2px 2px 2px 2px;
  transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  position: absolute;
  bottom: -20px;
}

.left1 {
  left: 79px;
}

.left2 {
  left: 277px;
}

.left3 {
  left: 479px;
}

.left4 {
  left: 680px;
}

.left5 {
  left: 879px;
}

.left6 {
  left: 1078px;
}

.assess-content ul:nth-child(1) li:first-child {
  display: block;
}

.assess-content ul:nth-child(2) {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-top: 63px;
}

.assess-content ul:nth-child(2) li {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.assess-content ul:nth-child(2) li:hover {
  cursor: pointer;
}

.assess-content ul:nth-child(2) li img {
  width: 76px;
  height: 76px;
}

.assess-content ul:nth-child(2) li p {
	font-family: 'Microsoft YaHei UI';
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 30px;
	text-transform: lowercase;
	color: #666473;
  margin-top: 17px;
  margin-bottom: 11px;
}

.assess-content ul:nth-child(2) li h2 {
	font-family: 'Microsoft YaHei UI';
	font-style: normal;
	font-weight: 400;
	font-size: 20px;
	line-height: 30px;
	text-align: center;
	letter-spacing: 0.01em;
	color: #283256;
}