html,
body {
	font-size: 10px;
	padding: 0%;
	margin: 0 auto;
	overflow-x: hidden;
	background-color: #7a33c9;
	position: relative;
	z-index: 1;
}

#container {
	font-size: 10px;
	padding: 0%;
	margin: 0 auto;
	max-width: 500px;
	min-height: 100vh;
	background-color: #7a33c9;
	position: relative;
	z-index: 1;
	overflow: hidden;
}

#container::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: url('../static/bj.png');
	background-position: 0% 0%;
	background-size: cover;
	background-repeat: no-repeat;
	filter: blur(5px);
	z-index: -1;
}

.head-img {
	margin: 0 auto;
	max-width: 500px;
	width: 100%;
	position: fixed;
	z-index: 9999999;
	top: 0%;
	left: 50%;
	transform: translate(-50%, 0%);
}

.footer{
	margin: 0 auto;
	max-width: 500px;
	width: 100%;
	position: fixed;
	z-index: 9999999;
	bottom: 0%;
	left: 50%;
	transform: translate(-50%, 0%);
}

.contenBox {
	overflow-y: auto;
}

.uu {
	width: 40%;
	margin: 0 auto;
	margin-top: 18%;
	display: block;
}

.bz {
	width: 94%;
	display: block;
	margin: 0 auto;
}

.siniBox {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 15px;
}

.sini {
	width: 200px;
}
.resmi{
		width: 230px;
}
.right,
.left {
	width: 40px;
	height: 30px;

}

.right {
	margin-left: 14px;
	animation: moveRightLeft 2s ease-in-out infinite;
}

.left {
	margin-right: 14px;
	animation: moveLeftRight 2s ease-in-out infinite;
}

@keyframes moveRightLeft {

	0%,
	100% {
		transform: translateX(0);
	}

	50% {
		transform: translateX(10px);
	}
}

@keyframes moveLeftRight {

	0%,
	100% {
		transform: translateX(0);
	}

	50% {
		transform: translateX(-10px);
	}
}

.grid {
	width: 90%;
	min-height: 450px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
	/* 确保内容在伪元素上方 */
	border-radius: 20px;
	/* 主元素同步圆角 */
	overflow: hidden;
	/* 关键：裁剪伪元素溢出部分 */
	padding: 10px 15px;
}

.grid::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: url('../static/main-border.png');
	background-size: 100% 100%;
	background-repeat: no-repeat;
	z-index: -1;
	border-radius: inherit;
}


/* 三宫格布局 */
.grid-container {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
	padding: 10px;
}

.img-wrap {
	position: relative;
	display: block;
}

.img-wrap img {
	width: 100%;
	aspect-ratio: 1/1;
	object-fit: cover;
	border-radius: 5px;
	display: block;
}

.img-wrap::after {
  content: '';
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  background-image: url('../static/box-order.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  z-index: 1;
  border-radius: 7px;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.img-wrap.active::after {
  opacity: 1;
}
.win-parent{
	position: relative;
	margin-top: 35px;
}
.win-box{
	width: 90%;
	min-height: 151px;
	margin: 0 auto;
	margin-bottom: 30px;
	margin-top: 14px;
	position: relative;
	height: auto;
}
@media screen and (min-width: 340px) and (max-width: 460px) {
.win-box{
	min-height: 180px;
	}
}

@media screen and (min-width: 460px) and (max-width: 3000px) {
.win-box{
	min-height: 200px;
	}
	.win-parent{
		margin-top: 45px;
	}
}



.win-box::after{
	content: '';
	position: absolute;
	top: -15px;
	left: -15px;
	right: -15px;
	bottom: -15px;
	background-image: url('../static/cut_bj.png');
	background-size: 100% 100%;
	background-repeat: no-repeat;
	z-index: 1;
	border-radius: 7px;
}
.jack{
	position: absolute;
	left: 50%;
	top: -9%;
	transform: translate(-50%,-50%);
	z-index: 9999999;
	width: 60%;
}
.win-box .img {
    width: 101%;
    position: absolute;
    top: 0px;
    z-index: 9999;
    left: -1px;
    height: 100%;
    opacity: 0; /* 默认透明度 */
    transition: opacity 0.8s ease-in-out; /* 添加过渡效果 */
}

.win-box .img.active {
    opacity: 1;
}


/* 五、多列左右滚动演示 */

.domo-pic-scroll-lr {
    width: 840px;
    height: 300px;
    position: relative;
    margin: 0 auto;
	margin-bottom: 10px;
}
.domo-pic-scroll-lr .conts{
	margin-top: 40px;
	/* margin-left: -30px; */
}
.domo-pic-scroll-lr .conts li {
    float: left;
    text-align: center;
    width: 100px;
    height: 300px;
    font-size: 16px;
    font-style: italic;
    font-weight: 700;
    text-align: center;
    color: #317bac;
    line-height: 120px;
    padding: 0 10px;
    border-radius: 8px;
    vertical-align: top;
	list-style: none;
}
.domo-pic-scroll-lr .conts li img{
	width: 100%;
}

.domo-pic-scroll-lr .conts li .s1 {
    width: 100px;
    height: 140px;
}

.kfBox {
    position: fixed;
    right: calc((100% - 500px)/2 + 5px); 
    top: 40%;
    z-index: 999999;
    max-width: 500px; 
    margin: 0 auto;
    pointer-events: none; 
}

.kfBox .icon {
    margin-bottom: 10px;
    width: 70px;
    pointer-events: auto;
}

@media screen and (max-width: 500px) {
    .kfBox {
        right: 5px;
    }
}

