@media screen and (max-width: 800px) {
	body .content img {
		max-width: auto !important;
	}
	.nav {
		width: 100vw;
		height: 0.5rem;
		position: fixed;
		left: 0;
		top: 0;
		z-index: 1000;
	}
	.nav .adorn {
		position: absolute;
		z-index: -1;
		right: 0;
		top: 0;
		width: 2rem;
		height: 100%;
		background-color: #fff;
		right: -100vw;
		transition: all 0.5s;
		opacity: 0;
		box-shadow: 0 0 0.1rem #ccc;
	}
	.nav .navBox {
		position: relative;
		width: 100%;
		height: 100%;
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 0 4%;
		box-sizing: border-box;
		background-color: rgba(0, 0, 0, 0.5);
	}

	.nav .navRight .language {
		display: flex;
		align-items: center;
		gap: 0.1rem;
	}
	.nav .navRight .language .item {
		font-size: 0.14rem;
		list-style: none;
		text-decoration: none;
		color: #fff;
	}
	.nav .navRight .language .navBtn {
		width: 0.32rem;
		height: 0.32rem;
		position: relative;
	}
	.nav .navRight .language .on .b1 {
		position: absolute;
		transition: all 0.5s ease-in-out;
		width: 0.15rem;
		height: 0.02rem;
		background-color: #fff;
		left: 0.03rem;
		top: 0.08rem;
		border-radius: 0.5rem;
	}
	.nav .navRight .language .on .b2 {
		position: absolute;
		transition: all 0.5s ease-in-out;
		width: 0.15rem;
		height: 0.02rem;
		background-color: #fff;
		left: 0.13rem;
		top: 0.08rem;
		border-radius: 0.5rem;
	}
	.nav .navRight .language .on .b3 {
		position: absolute;
		transition: all 0.5s ease-in-out;
		width: 0.25rem;
		height: 0.02rem;
		background-color: #fff;
		left: 0.03rem;
		top: 0.16rem;
		border-radius: 0.5rem;
	}
	.nav .navRight .language .on .b4 {
		position: absolute;
		transition: all 0.5s ease-in-out;
		width: 0.15rem;
		height: 0.02rem;
		background-color: #fff;
		left: 0.03rem;
		top: 0.25rem;
		border-radius: 0.5rem;
	}
	.nav .navRight .language .on .b5 {
		position: absolute;
		transition: all 0.5s ease-in-out;
		width: 0.15rem;
		height: 0.02rem;
		background-color: #fff;
		left: 0.13rem;
		top: 0.25rem;
		border-radius: 0.5rem;
	}
	.nav .navRight .language .off .b1 {
		position: absolute;
		transition: all 0.5s ease-in-out;
		width: 0.15rem;
		height: 0.03rem;
		background-color: #fff;
		left: 0.05rem;
		top: 0.05rem;
		transform: rotate(45deg);
		transform-origin: 0 0;
		border-radius: 0.5rem;
	}
	.nav .navRight .language .off .b2 {
		position: absolute;
		transition: all 0.5s ease-in-out;
		width: 0.15rem;
		height: 0.03rem;
		background-color: #fff;
		left: 0.08rem;
		top: 0.05rem;
		transform: rotate(-45deg);
		transform-origin: 100% 0;
		border-radius: 0.5rem;
	}
	.nav .navRight .language .off .b3 {
		position: absolute;
		transition: all 0.5s ease-in-out;
		width: 0.3rem;
		height: 0.03rem;
		background-color: #fff;
		left: 0.01rem;
		top: 0.15rem;
		transform: scale(0);
		transform-origin: 50% 0;
		border-radius: 0.5rem;
	}
	.nav .navRight .language .off .b4 {
		position: absolute;
		transition: all 0.5s ease-in-out;
		width: 0.15rem;
		height: 0.03rem;
		background-color: #fff;
		left: 0.03rem;
		top: 0.25rem;
		transform: rotate(-45deg);
		transform-origin: 0 0;
		border-radius: 0.5rem;
	}
	.nav .navRight .language .off .b5 {
		position: absolute;
		transition: all 0.5s ease-in-out;
		width: 0.15rem;
		height: 0.03rem;
		background-color: #fff;
		left: 0.11rem;
		top: 0.25rem;
		transform: rotate(45deg);
		transform-origin: 100% 0;
		border-radius: 0.5rem;
	}
	.nav .navRight .mask {
		display: none;
		position: fixed;
		width: 100vw;
		height: calc(100vh - 0.5rem);
		background-color: rgba(0, 0, 0, 0.5);
		z-index: 0;
		left: 0;
		top: 0.5rem;
	}
	.nav .isMenu {
		opacity: 1 !important;
		right: 0 !important;
	}
	.nav .navRight .mask .navList ul,
	.nav .navRight .mask .navList li,
	.nav .navRight .mask .navList a {
		list-style: none;
		text-decoration: none;
		padding: 0;
	}
	.nav .navRight .mask .navList {
		position: absolute;
		right: -100vw;
		top: 0;
		width: 2rem;
		height: 100%;
		background-color: #fff;
		margin: 0;
		padding: 0;
		list-style: none;
		transition: all 0.5s;
		opacity: 0;
		box-shadow: 0 0 0.1rem #ccc;
	}
	.nav .navRight .mask .navList .navItem {
		list-style: none;
		display: flex;
		flex-direction: column;
	}
	.nav .navRight .mask .navList .navItem .item {
		list-style: none;
		text-decoration: none;
	}
	.nav .navRight .mask .navList a {
		display: block flex;
		color: #000;
		height: 0.6rem;
		width: 100%;
		align-items: center;
		padding: 0 0.2rem;
		box-sizing: border-box;
		font-size: 0.18rem;
	}
	.nav .navRight .mask .navList a:hover {
		background-color: #ea433f;
		color: #fff;
	}
	html,
	body {
		width: 100vw;
		overflow-x: hidden;
	}
	.gradientBtn {
		font-size: 0.14rem;
		font-weight: 400;
		padding: 0.08rem 0.36rem;
	}
	.title,
	.title_first {
		background-image: linear-gradient(118.58deg, #bf2228 13.29%, #dc1ecd 75.9%, #4239ea 102.61%, #fb5d14 118.85%);
		font-size: 0.36rem;
		line-height: 1;
		font-weight: 500;
	}
	.text {
		font-size: 0.16rem;
		line-height: 1.8;
		font-weight: 500;
	}
	.content {
		width: 100vw;
	}
	.model {
		width: 100vw;
		position: relative;
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
		overflow: hidden;
	}
	.model1 {
		background-color: #000;
		height: 100vh;
	}

	.model1 .p2 {
		color: #ffffff99;
		font-size: 0.1rem;
		letter-spacing: 0.06rem;
		margin-top: 0.4rem;
	}
	.model1 .video1 {
		width: 100%;
		height: 2.42rem;
	}
	.model1 .p1 {
		width: 3.25rem;
		color: #fff;
		font-size: 0.16rem;
		line-height: 1.8;
		font-weight: 500;
	}
	.model1 .btn-box {
		width: 100%;
		height: 0.32rem;
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 0.5rem;
		margin-top: 0.3rem;
	}
	.model2 {
		display: none;
	}
	.model3 {
		height: 100vh;
	}
	.model3 .img1 {
		width: 100%;
		height: 2rem;
		background-image: url('https://changbudao-1257401975.cos.ap-hongkong.myqcloud.com/images/aura/image/img3p9.webp');
		background-position: 50% 50%;
		background-size: 100% 150%;
	}
	.model3 .img2 {
		width: 1.89rem;
		height: 0.16rem;
		margin: 0.3rem 0 0.5rem 0;
	}
	.model3 .btn {
		display: none;
	}
	.model3 .btn1 {
		width: 1.6rem;
		height: 0.32rem;
		font-size: 0.14rem;
		color: #231f20;
		display: flex;
		align-items: center;
		justify-content: center;
		margin-top: 0.4rem;
	}
	.model3 .imgs {
		width: 100%;
		display: grid;
		grid-template-columns: 50% 50%;
	}
	.model3 .imgs .img {
		width: 1.18rem;
		height: 0.9rem;
		margin: 0.1rem auto;
	}
	.model3 .imgs .img4 {
		transform: scaleX(0.6);
	}
	.model4 {
		height: 100vh;
	}
	.model4 .video1 {
		width: 3.46rem;
		height: 3.13rem;
		border-radius: 0.2rem;
	}
	.model4 .box1 {
		margin-top: 0.8rem;
	}
	.model4 .box1 .p1 {
		width: 3.06rem;
	}
	.model4 .box1 .p2 {
		font-weight: 500;
		font-size: 0.16rem;
		line-height: 1.8;
		color: #231916;
		width: 3.06rem;
		margin-top: 0.2rem;
	}
	.model5 {
		height: 100vh;
	}
	.model5 .d1 {
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
	}
	.model5 .d1 .img1 {
		width: 1.16rem;
		height: 0.14rem;
	}
	.model5 .d1 .p1 {
		margin-top: 0.1rem;
		width: 1.97rem;
		font-size: 0.13rem;
		line-height: 2.13;
		color: #6d6d6dfc;
		font-weight: 290;
		text-align: center;
	}
	.model5 .d2 {
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
	}
	.model5 .d2 .video1 {
		width: 100%;
		height: 2.5rem;
	}
	.model5 .d2 .d3 {
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
		margin-top: 0.7rem;
	}
	.model5 .d2 .d3 .p3 {
		font-size: 0.16rem;
		color: #231916;
		line-height: 1.8;
		font-weight: 500;
		width: 3.17rem;
		margin: 0.2rem 0 0.1rem 0;
	}
	.model6 {
		height: 100vh;
	}
	.model6 .d1 {
		width: 100%;
		display: grid;
		grid-template-columns: 50% 50%;
		grid-template-rows: repeat(15, 0.4rem);
		gap: 0.1rem;
	}
	.model6 .video1 {
		width: 3.4rem;
		height: 2.9rem;
		border-radius: 0.2rem;
		grid-column: 1/3;
		grid-row: 1/5;
		margin: 0 auto;
	}
	.model6 .img2 {
		width: 1.64rem;
		height: 1.27rem;
		border-radius: 0.2rem;
		grid-column: 2/3;
		margin: 0 auto 0 0;
		grid-row: 7/10;
	}
	.model6 .img3 {
		width: 1.64rem;
		height: 1.27rem;
		border-radius: 0.2rem;
		grid-column: 1/2;
		margin: 0 0 0 auto;
		grid-row: 7/10;
	}
	.model6 .d3 {
		grid-column: 1/3;
		grid-row: 11/14;
		padding: 0 0.5rem;
	}
	.model6 .d3 .p3 {
		font-size: 0.16rem;
		line-height: 1.8;
		font-weight: 500;
		color: #231916;
		margin-top: 0.1rem;
	}
	.model7 {
		height: 100vh;
	}
	.model7 .d1 {
		width: 100%;
		position: relative;
		z-index: -2;
		height: 100%;
		background-image: linear-gradient(#fdc58d, #000);
	}
	.model7 .d1 .img1 {
		position: absolute;
		width: 100vw;
		height: 100vh;
		z-index: -1;
		border-radius: 0.2rem;
	}
	.model7 .d1 .d2 {
		padding: 1.2rem 0.5rem;
	}
	.model7 .d1 .d2 .p2 {
		width: 3.01rem;
	}
	.model7 .d1 .d2 .p3 {
		width: 3.01rem;
		color: #fff;
		font-size: 0.16rem;
		line-height: 1.8;
		margin-top: 0.2rem;
	}
	.model8 {
		height: 100vh;
	}
	.model8 .d1 {
		height: 4rem;
	}
	.model8 .d1 .video1 {
		width: 100%;
		height: 100%;
	}
	.model8 .d1 .video2 {
		display: none;
	}
	.model8 .d1 .video3 {
		display: none;
	}
	.model8 .d2 {
		width: 100%;
		padding: 0 0.5rem;
		box-sizing: border-box;
		margin-top: 0.5rem;
	}
	.model8 .d2 .text {
		margin-top: 0.1rem;
	}
	.model9 {
		height: 300vh;
		justify-content: flex-start;
	}
	.model9 .imgs {
		display: none;
	}
	.model9 .img6 {
		width: 100%;
		height: 5rem;
		background-image: url('https://changbudao-1257401975.cos.ap-hongkong.myqcloud.com/images/aura/image/img19p4.webp');
		background-size: 180% 130%;
		background-position: 50% 50%;
	}
	.model9 .d2 {
		height: calc(100vh - 5rem);
		padding: 0 0.5rem;
		width: 100%;
		box-sizing: border-box;
	}
	.model9 .d2 .text {
		color: #231916;
		margin-top: 0.1rem;
	}
	.model9 .imgs1 {
		width: 100%;
		height: 100vh;
		box-sizing: border-box;
		display: grid;
		grid-template-columns: repeat(3, calc((100% - 0.2rem) / 3));
		grid-template-rows: repeat(4, calc((100vh - 0.9rem) / 4));
		gap: 0.1rem;
		padding-top: 0.6rem;
	}
	.model9 .imgs1 .img7 {
		grid-column: 1/2;
		background-image: url('https://changbudao-1257401975.cos.ap-hongkong.myqcloud.com/images/aura/image/img19p5.webp');
		background-size: 180% 130%;
		background-position: 50% 50%;
		grid-row: 1/2;
		background-color: #ccc;
		margin-left: 0.1rem;
		border-radius: 0.2rem;
	}
	.model9 .imgs1 .img8 {
		grid-column: 2/3;
		background-image: url('https://changbudao-1257401975.cos.ap-hongkong.myqcloud.com/images/aura/image/img19p6.webp');
		background-size: 180% 130%;
		background-position: 50% 50%;
		grid-row: 1/2;
		background-color: #ccc;
		margin: 0 0.05rem;
		border-radius: 0.2rem;
	}
	.model9 .imgs1 .img9 {
		grid-column: 3/4;
		background-image: url('https://changbudao-1257401975.cos.ap-hongkong.myqcloud.com/images/aura/image/img19p7.webp');
		background-size: 180% 130%;
		background-position: 50% 50%;
		grid-row: 1/2;
		background-color: #ccc;
		margin-right: 0.1rem;
		border-radius: 0.2rem;
	}
	.model9 .imgs1 .img10 {
		grid-column: 1/4;
		background-image: url('https://changbudao-1257401975.cos.ap-hongkong.myqcloud.com/images/aura/image/img19p8.webp');
		background-size: 180% 130%;
		background-position: 50% 50%;
		grid-row: 2/5;
	}
	.model9 .d4 {
		width: 100%;
	}
	.model9 .d4 .d4_item {
		position: relative;
		width: 100%;
		height: calc(100vh / 5);
	}
	.model9 .d4 .d4_item img:first-child {
		width: 100%;
		height: 101%;
	}
	.model9 .d4 .d4_item img:last-child {
		width: 0.5rem;
		height: 0.27rem;
		position: absolute;
		bottom: 0.2rem;
		right: 0.1rem;
		filter: brightness(100);
	}
	.model10 {
		height: 100vh;
		justify-content: flex-start;
	}
	.model10 .video1 {
		width: 100%;
		height: 3.08rem;
	}
	.model10 .d2 {
		padding: 0.5rem;
		box-sizing: border-box;
		margin-top: 1rem;
	}
	.model10 .d2 .text {
		color: #231916;
		margin-top: 0.2rem;
	}

	.model11 {
		height: 100vh;
	}
	.model11 .d1 {
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
		gap: 0.1rem;
		margin-top: 0.5rem;
	}
	.model11 .d1 .video1 {
		width: 3.7rem;
		height: 2.38rem;
		border-radius: 0.2rem;
	}
	.model11 .d1 .d4 {
		display: flex;
		gap: 0.1rem;
	}
	.model11 .d1 .d4 .img1 {
		width: 1.76rem;
		height: 1.3rem;
		border-radius: 0.2rem;
	}
	.model11 .d1 .d4 .img2 {
		width: 1.76rem;
		height: 1.3rem;
		border-radius: 0.2rem;
	}
	.model11 .d2 {
		width: 100%;
		padding: 0.5rem;
		box-sizing: border-box;
	}
	.model11 .d2 .text {
		color: #231916;
		margin-top: 0.2rem;
	}
	.model12 {
		height: 100vh;
		justify-content: flex-start;
	}
	.model12 .video1 {
		width: 100%;
		height: 4.24rem;
	}
	.model12 .d2 {
		padding: 0.5rem;
		box-sizing: border-box;
		width: 100%;
		margin-top: 0.2rem;
	}
	.model12 .d2 .text {
		color: #231916;
		margin-top: 0.2rem;
	}
	.model13 {
		height: 100vh;
	}
	.model13 .d1 {
		width: 100%;
		height: 9.75rem;
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
		position: relative;
	}
	.model13 .d1 .img1 {
		position: absolute;
		width: 13rem;
		height: 9.76rem;
		left: 50%;
		top: 50%;
		transform: translate(-70%, -50%);
		z-index: -1;
	}
	.model13 .d1 .d2 {
		width: 100%;
		padding: 0.5rem;
		box-sizing: border-box;
	}
	.model13 .d1 .d2 .text {
		color: #fff;
		margin-top: 0.2rem;
	}
	.model14 {
		position: relative;
		height: 100vh;
	}
	.model14 .video1 {
		position: absolute;
		width: 100%;
		height: 100%;
		z-index: -1;
	}
	.model14 .d2 {
		width: 100%;
		height: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
		padding: 0.5rem;
		box-sizing: border-box;
	}
	.model14 .d2 .text {
		color: #fff;
		margin-top: 0.2rem;
	}

	.model15 {
		width: 100%;
		height: 100vh;
		background-image: url('https://changbudao-1257401975.cos.ap-hongkong.myqcloud.com/images/aura/image/img11p6.webp');
		background-position: 44% 50%;
		background-size: 310% 100%;
		padding: 0.5rem;
		box-sizing: border-box;
	}
	.model15 .img1 {
		width: 1.85rem;
		height: 0.6rem;
		margin-bottom: 0.8rem;
	}
	.model15 .img2 {
		width: 1.1rem;
		height: 0.23rem;
		margin-bottom: 0.8rem;
	}
	.model15 .p1 {
		font-size: 0.18rem;
		line-height: 2.13;
		font-weight: 290;
		color: #6d6d6dfc;
	}
	.model16 {
		height: 100vh;
	}
	.model16 .d3 {
		width: 100%;
		height: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
		background-color: #000;
	}
	.model16 .d3 .d1 {
		display: grid;
		grid-template-columns: 50% 50%;
		grid-template-rows: repeat(40, 0.03rem);
		width: 100%;
		padding: 0 0.5rem;
		box-sizing: border-box;
		gap: 0.1rem;
	}
	.model16 .d3 .d1 .img1 {
		grid-column: 1/3;
		grid-row: 1/11;
		width: 100%;
		height: 100%;
	}
	.model16 .d3 .d1 .img2 {
		grid-column: 1/3;
		grid-row: 11/20;
		width: 100%;
		height: 100%;
	}
	.model16 .d3 .d1 .img3 {
		grid-column: 1/2;
		grid-row: 20/28;
		width: 100%;
		height: 100%;
	}
	.model16 .d3 .d1 .img4 {
		grid-column: 1/2;
		grid-row: 28/40;
		width: 100%;
		height: 100%;
	}
	.model16 .d3 .d1 .img5 {
		grid-column: 2/3;
		grid-row: 20/32;
		width: 100%;
		height: 100%;
	}
	.model16 .d3 .d1 .d6 {
		grid-column: 2/3;
		grid-row: 33/40;
		height: auto;
		transform: rotate(90deg) translate(20%, 50%);
		position: relative;
		margin: 0 auto 0 0;
	}
	.model16 .d3 .d1 .d6::after {
		position: absolute;
		content: '';
		display: block;
		width: 0.6rem;
		height: 0.6rem;
		border-bottom: 0.01rem solid #bf2228;
		bottom: 0;
	}
	.model16 .d3 .d1 .d6 p {
		color: #fff;
		font-size: 0.5rem;
		line-height: 0.8;
	}
	.model16 .d3 .d4 .d5 {
		display: none;
	}
	.model16 .d3 .d4 {
		padding: 0 0.5rem;
		margin-top: 0.5rem;
	}
	.model16 .d3 .d4 .text {
		color: #fff;
	}
	.model16 .d3 .d4 .title_first {
		margin-bottom: 0.2rem;
	}
	.model17 {
		height: 100vh;
		background-color: #000;
	}
	.model17 .d1 {
		width: 100%;
		padding: 0.5rem 0.5rem 0 0.5rem;
		box-sizing: border-box;
	}
	.model17 .d1 .text {
		color: #fff;
		margin-top: 0.2rem;
	}
	.model17 .d2 {
		padding: 0 0.5rem;
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
		box-sizing: border-box;
		width: 100%;
		margin-top: 0.2rem;
	}
	.model17 .d2 .imgs {
		width: 100%;
		display: grid;
		grid-template-columns: 33% 33% 33%;
		grid-template-rows: repeat(17, 0.1rem);
	}
	.model17 .d2 .imgs1 .video1 {
		grid-column: 1/2;
		grid-row: 1/16;
		width: 100%;
		height: 100%;
		border-radius: 0.2rem;
		filter: brightness(80%);
		transform: skew(0deg, 10deg);
	}
	.model17 .d2 .imgs1 .topTip {
		grid-column: 2/4;
		grid-row: 1/5;
		color: transparent;
		background-image: linear-gradient(118.58deg, #bf2228 13.29%, #dc1ecd 75.9%, #4239ea 102.61%, #fb5d14 118.85%);
		font-size: 0.24rem;
		background-clip: text;
		-webkit-background-clip: text;
		-moz-background-clip: text;
		font-weight: 500;
		line-height: 1;
		margin-left: 0.2rem;
	}
	.model17 .d2 .imgs1 .leftTip {
		grid-column: 2/4;
		grid-row: 5/12;
		color: #cdcdcd;
		font-weight: 500;
		font-size: 0.16rem;
		line-height: 1.8;
		margin-left: 0.2rem;
	}
	.model17 .d2 .imgs2 .video2 {
		grid-column: 3/4;
		grid-row: 1/16;
		width: 100%;
		height: 100%;
		border-radius: 0.2rem;
		filter: brightness(80%);
	}
	.model17 .d2 .imgs2 .topTip {
		grid-column: 1/3;
		grid-row: 1/5;
		color: transparent;
		background-image: linear-gradient(118.58deg, #bf2228 13.29%, #dc1ecd 75.9%, #4239ea 102.61%, #fb5d14 118.85%);
		font-size: 0.24rem;
		background-clip: text;
		-webkit-background-clip: text;
		-moz-background-clip: text;
		font-weight: 500;
		line-height: 1;
		margin-right: 0.1rem;
	}
	.model17 .d2 .imgs2 .leftTip {
		grid-column: 1/3;
		grid-row: 5/12;
		color: #cdcdcd;
		font-weight: 500;
		font-size: 0.16rem;
		line-height: 1.8;
		margin-right: 0.1rem;
	}
	.model17 .d2 .imgs3 .video3 {
		grid-column: 1/2;
		grid-row: 1/16;
		width: 100%;
		height: 100%;
		border-radius: 0.2rem;
		filter: brightness(80%);
		transform: skew(0deg, 10deg);
	}
	.model17 .d2 .imgs3 .topTip {
		grid-column: 2/4;
		grid-row: 1/5;
		color: transparent;
		background-image: linear-gradient(118.58deg, #bf2228 13.29%, #dc1ecd 75.9%, #4239ea 102.61%, #fb5d14 118.85%);
		font-size: 0.24rem;
		background-clip: text;
		-webkit-background-clip: text;
		-moz-background-clip: text;
		font-weight: 500;
		line-height: 1;
		margin-left: 0.2rem;
	}
	.model17 .d2 .imgs3 .leftTip {
		grid-column: 2/4;
		grid-row: 5/12;
		color: #cdcdcd;
		font-weight: 500;
		font-size: 0.16rem;
		line-height: 1.8;
		margin-left: 0.2rem;
	}
	.model18 {
		width: 100%;
		height: 100vh;
		background-image: url('https://changbudao-1257401975.cos.ap-hongkong.myqcloud.com/images/aura/image/img18p2.webp');
		background-size: 100% 100%;
		background-position: 50% 1.6rem;
		background-color: #000;
		justify-content: flex-start;
	}
	.model18 .img1 {
		width: calc(100% - 0.2rem);
		margin: 1.5rem 0.1rem;
	}
	.model19 {
		height: 100vh;
		flex-direction: column-reverse;
		background-color: #000;
	}
	.model19 .d2 {
		padding: 0 0.1rem;
		box-sizing: border-box;
		width: 100%;
		display: grid;
		grid-template-columns: repeat(2, calc((100% - 0.1rem) / 2));
		grid-template-rows: repeat(6, 0.9rem);
		gap: 0.1rem;
	}
	.model19 .d2 img {
		border-radius: 0.2rem;
	}
	.model19 .d2 .img1 {
		grid-column: 1/2;
		grid-row: 1/2;
		width: 100%;
		height: 100%;
	}
	.model19 .d2 .img2 {
		grid-column: 2/3;
		grid-row: 1/2;
		width: 100%;
		height: 100%;
	}
	.model19 .d2 .img3 {
		grid-column: 1/2;
		grid-row: 6/7;
		width: 100%;
		height: 100%;
	}
	.model19 .d2 .img4 {
		grid-column: 2/3;
		grid-row: 4/6;
		width: 100%;
		height: 100%;
	}

	.model19 .d2 .img5 {
		grid-column: 2/3;
		grid-row: 6/7;
		width: 100%;
		height: 100%;
	}
	.model19 .d2 .img6 {
		grid-column: 1/3;
		grid-row: 2/4;
		width: 100%;
		height: 100%;
	}
	.model19 .d2 .img7 {
		grid-column: 1/2;
		grid-row: 4/5;
		width: 100%;
		height: 100%;
	}
	.model19 .d2 .img8 {
		grid-column: 1/2;
		grid-row: 5/6;
		width: 100%;
		height: 100%;
	}
	.model19 .d1 {
		width: 100%;
		padding: 0 0.5rem;
		box-sizing: border-box;
		display: flex;
		justify-content: flex-end;
	}
	.model19 .d1 .text {
		color: #fff;
		width: 2.85rem;
		text-align: right;
		position: relative;
		margin: 0.8rem 0 0 0;
		font-size: 0.16rem;
		font-weight: 500;
		line-height: 1.8;
	}
	.model19 .d1 .text::before {
		content: '';
		display: block;
		width: 0.96rem;
		height: 0.96rem;
		border-left: 0.01rem solid #fff;
		position: absolute;
		right: -0.48rem;
		top: -0.5rem;
		transform: rotate(45deg);
	}
	.model20 {
		height: 100vh;
		background-color: #000;
		background-image: url('https://changbudao-1257401975.cos.ap-hongkong.myqcloud.com/images/aura/image/img20p3.webp');
		background-position: 50% 50%;
		background-size: 15rem 9.75rem;
	}
	.model20 .img1 {
		width: 0.93rem;
		height: 0.93rem;
		margin-bottom: 0.2rem;
	}
	.model20 .p1 {
		width: 1.32rem;
		font-weight: 400;
		font-size: 0.14rem;
		line-height: 2.27;
		color: #fff;
		text-align: center;
		margin-bottom: 0.5rem;
	}
	.model20 .img2 {
		width: 3.9rem;
		height: 0.32rem;
	}
	.model20 .d1 {
		margin-top: 2rem;
	}
	.model20 .d1 .img3 {
		filter: brightness(3);
	}
	.model20 .d1 .img4 {
		filter: brightness(3);
	}
	.model21 {
		justify-content: space-between;
		padding: 0.5rem;
		box-sizing: border-box;
		background-color: #000;
		background-image: url('https://changbudao-1257401975.cos.ap-hongkong.myqcloud.com/images/aura/image/img21p2.webp');
		background-position: 50% 0%;
		background-size: 11rem 4.5rem;
		background-repeat: no-repeat;
		height: 100vh;
	}
	.model21 .d1 {
		width: 100%;
	}
	.model21 .d1 .d2 {
		width: 100%;
		display: flex;
		align-items: flex-start;
		flex-direction: column;
	}
	.model21 .d1 .d2 .img1 {
		width: 1.44rem;
		height: 0.46rem;
		margin-bottom: 0.3rem;
	}
	.model21 .d1 .d2 .p1 {
		font-size: 0.13rem;
		font-weight: 400;
		line-height: 1.2;
		letter-spacing: 0.01rem;
		color: #fff;
		margin-bottom: 0.2rem;
	}
	.model21 .d1 .d2 .img2 {
		width: 3.32rem;
		height: 0.27rem;
	}
	.model21 .d3 {
		width: 100%;
	}
	.model21 .d3 .d4 {
		width: 100%;
		display: flex;
		align-items: flex-end;
		flex-direction: column;
	}
	.model21 .d3 .d4 .title_first::before {
		left: auto;
		right: -0.34rem;
	}
	.model21 .d3 .d4 .text {
		color: #fff;
		text-align: right;
		margin-top: 0.2rem;
	}
	.model22 {
		height: 100vh;
		justify-content: flex-end;
		background-image: url('https://changbudao-1257401975.cos.ap-hongkong.myqcloud.com/images/aura/image/img1p2.webp');
		background-position: 50% 50%;
		background-size: 200% 100%;
		padding: 0.5rem;
		box-sizing: border-box;
	}
	.model22 .text {
		color: #fff;
		text-align: center;
	}
	.model23 {
		height: 100vh;
		position: relative;
	}
	.model23 .bg {
		position: absolute;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		background-image: url('https://changbudao-1257401975.cos.ap-hongkong.myqcloud.com/images/aura/image/img23p1.webp');
		background-size: 150% 100%;
		background-position: 50% 50%;
		filter: brightness(50%);
		background-color: #000;
		z-index: -1;
	}
	.model23 .title {
		position: relative;
		margin-bottom: 0.2rem;
	}
	.model23 .title::before {
		position: absolute;
		display: block;
		content: '';
		width: 0.72rem;
		height: 0.02rem;
		left: 50%;
		bottom: -0.1rem;
		transform: translateX(-50%);
		background-color: #a10b0a;
	}

	.model23 .table .row {
		display: flex;
		align-items: center;
		line-height: 1.8;
		font-size: 0.12rem;
		color: #cdcdcd;
		font-weight: 400;
		margin-bottom: 0.1rem;
	}
	.model23 .table .row .label {
		width: 1rem;
		text-align: right;
		flex: none;
	}
	.model23 .table .contont {
		display: flex;
		flex: 1;
	}
	.model23 .table .contont .value {
		flex: 1;
		text-align: center;
		line-height: 1.2;
	}
	.model23 .p1 {
		display: none;
	}
	.model24 {
		height: 100vh;
		background-color: #000;
	}
	.model24 .d3 {
		width: 100%;
		height: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
	}
	.model24 .img1 {
		width: 3.76rem;
		height: 2.8rem;
		border-radius: 0.2rem;
	}
	.model24 .d1 {
		width: 3.6rem;
		height: 4.7rem;
		display: flex;
		justify-content: center;
		align-items: flex-start;
		flex-direction: column;
	}
	.model24 .d1 .d2 {
		width: 100%;
		text-align: right;
	}
	.model24 .d1 .text {
		color: #fff;
		font-weight: 700;
		font-size: 0.2rem;
		line-height: 1.6;
	}
	.model24 .d1 .p2::before {
		content: '';
		display: block;
		width: 1.12rem;
		height: 1.12rem;
		border-left: 0.01rem solid #bf2228;
		margin: 0.2rem 0;
	}
	.model25 {
		background-color: #000;
		background-image: url('https://changbudao-1257401975.cos.ap-hongkong.myqcloud.com/images/aura/image/img25p1.webp');
		background-size: 3.75rem 3.75rem;
		background-repeat: no-repeat;
		background-position: 50% 50%;
		height: 100vh;
	}
	.model25 .img1 {
		width: 3.8rem;
		height: 0.15rem;
		filter: brightness(2);
	}
	.model25 .p1 {
		width: 3.7rem;
		font-weight: 500;
		font-size: 0.16rem;
		line-height: 1.8;
		color: #fff;
		margin-top: 0.2rem;
		text-align: center;
	}

	.roll {
		position: fixed;
		right: 0.05rem;
		top: 50%;
		transform: translateY(-50%);
		display: flex;
		flex-direction: column;
		gap: 0.07rem;
	}
	.roll .dot {
		width: 0.05rem;
		height: 0.05rem;
		border-radius: 50%;
		border: 0.01rem solid #ccc;
		cursor: pointer;
	}
	.roll .active {
		background-color: #cf302c;
		border-color: #cf302c;
	}
}
