* {
	word-wrap: break-word
}

body,
button,
dd,
dl,
dt,
fieldset,
form,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
html,
iframe,
input,
li,
ol,
p,
pre,
td,
textarea,
th,
ul {
	margin: 0;
	padding: 0
}

body,
button,
input,
select,
td,
textarea,
th {
	font-family: Microsoft Yahei, Hiragino Sans GB, Helvetica Neue, Helvetica, tahoma, arial, Verdana, sans-serif, WenQuanYi Micro Hei, "\5B8B\4F53";
	font-size: 12px;
	color: #333;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale
}
      
  /* 全局变量 */
        :root {
            --primary-color: #00FFFF;
            --secondary-color: #6C757D;
            --background-color: #0A0F1B;
            --text-color: #F0F8FF;
            --glass-bg: rgba(255, 255, 255, 0.05);
            --glow-color: rgba(0, 255, 255, 0.3);
            --shadow-color: rgba(0, 0, 0, 0.3);
        }

body {
	display: grid;

	/* align-items: center;*/
	/* justify-items: center;*/
	place-items: center;
	/*min-height: 95vh;*/
	/* background-color: #e52;*/
	/* background-image: url("tupian/dt8.gif");*/

            font-family: 'Roboto', sans-serif;
            min-height: 100vh;
            background: var(--background-color);
            
            justify-content: center;
            align-items: center;
            margin: 0;
            padding: 0;
            color: var(--text-color);
            position: relative;
             
}


/* 背景动态光影效果 */
body::before {
    content: '';
    position: absolute;
    top: 1%; /* 将伪元素的顶部边缘移动到视口高度的50%位置，作为垂直居中的起点 */
    left: 50%; /* 将伪元素的左侧边缘移动到视口宽度的50%位置，作为水平居中的起点 */
    width: 90vw; /* 设置伪元素的宽度为视口宽度，以确保水平方向上覆盖整个视口 */
    height: 210vh; /* 设置伪元素的高度为视口高度的两倍，以确保动画过程中有足够的垂直空间 */
    transform: translate(-50%, -50%); /* 使用transform属性将伪元素向上和向左各移动其自身宽高的一半，以实现真正的居中效果 */
    background: radial-gradient(circle at center, rgba(0, 255, 255, 0.1) 0%, transparent 60%); /* 使用径向渐变作为背景 */
    animation: background-shift 30s linear infinite; /* 应用动画 */
    z-index: -1; /* 确保伪元素位于body内容之下 */
}

/* 定义background-shift动画 */
@keyframes background-shift {
    0% {
        transform: translate(-50%, -50%) scale(1); /* 在动画开始时，元素居中且未缩放 */
    }
    100% {
        transform: translate(-50%, 150%) scale(1); /* 在动画结束时，元素在水平方向上仍然居中，但在垂直方向上移动到视口底部的下方（由于高度设置为200vh，所以150%是相对于自身高度的位置），仍然保持未缩放状态 */
    }
}


.release {
	position: relative;
	border-radius: 20px;
	width: 96%;
	margin-left: auto;
	margin-right: auto;
	max-width: 490px
        }

.release-body .image {
	text-align: center;
}

.release-body .image2 {
	text-align: center
}

.release-body {
	/*background: #fff;*/
	/*border-radius: 30px;*/
	margin-top: 100px;

            background: var(--glass-bg);
            border-radius: 20px;
            padding: 32px;
            box-shadow: 0 8px 32px 0 var(--shadow-color), 0 0 40px 0 var(--glow-color);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            max-width: 490px;
            width: 90%;
            text-align: center;
            animation: fade-in 0.6s ease-out;
}
        @keyframes fade-in {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* 步骤列表样式 */
.steps {
    list-style-type: none;
    padding: 0;
    margin-bottom: 32px;
margin-top: 32px; /* 设置顶部外边距为32像素 */
}

.step {
    position: relative; /* 确保伪元素::before能够正确定位 */
    margin-bottom: 16px;
}

.step-link {
    display: flex;
    align-items: center;
    background: var(--glass-bg);
    border-radius: 15px;
    padding: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px 0 var(--shadow-color);
    text-decoration: none; /* 去除链接的下划线 */
    color: inherit; /* 继承父元素的颜色 */
justify-content: center; 
    align-items: center; 
}

.step-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none; /* 确保伪元素不会干扰链接的点击事件 */
}

.step-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.step-link:hover::before {
    opacity: 1;
}

.step-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-right: 9px;
    margin-left: 9px;
    text-shadow: 0 0 5px var(--primary-color);
}

.step-description {
    text-align: center;
    font-size: 16px;
    color: #007FFF;
}
/* 步骤列表样式 */


.release-body .image img {
    border-radius: 50%;
    width: 100px;
    height: 100px; /* 假设图片高度为100px */
    padding: 1px;
    margin-top: -30px; 
    box-shadow: 0 0 8px 0 rgb(134 134 134/15%);
    /* 增加动画 */
    animation: moveUpHalfHeight 1s ease-in-out forwards;
}
/* 定义动画 */
@keyframes moveUpHalfHeight {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-53%); /* 移动图片高度的一半，即-50px */
    }
}



.release-body .title {
	padding: 10px 0;
	text-align: center
}


.release-body .title h2 {
	font-size: 32px;
	font-weight: 700;
	letter-spacing: 2px;
	margin: 0;
	color: #4D4DFF
}

.release-body .title p {
	font-size: 19px;
	padding-top: 20px;
	color: #007FFF;
	letter-spacing: 2px
}

.release-body .title .sizes {
    font-size: 14px;
    color: #2196F3;
}

.release-body .title2 {
	padding: 7px;
	text-align: left
}

.release-body .title2 h2 {
	font-size: 20px;
	font-weight: 500;
	letter-spacing: 2px;
	margin: 0;
	color: #4D4DFF
}

.release-body .title2 p {
	font-size: 16px;
	padding-top: 20px;
	color: #007FFF;
	letter-spacing: 2px
}

.release-body .title2 p2 {
	font-size: 16px;
	padding-top: 20px;
	color: #676767;
	letter-spacing: 2px
}

.release-body .title2 p2 {
	font-size: 16px;
	padding-top: 20px;
	color: #676767;
	letter-spacing: 2px
}

.release-body .title2 .sizes {
    font-size: 12px;
    color: #2196F3;
}

.release-body .title3 {
	padding: 30px 0;
	text-align: center
}


.release-body .title3 h2 {
	font-size: 32px;
	font-weight: 700;
	letter-spacing: 2px;
	margin: 0;
    margin-left: 6px;
    margin-right: 10px;
	color: #474747
}

.release-body .title3 p {
	font-size: 19px;
	padding-top: 20px;
	color: #676767;
	letter-spacing: 2px
}

.release-body .title3 .sizes {
    font-size: 14px;
    color: #2196F3;
}

.release-body .title4 {
	padding: 7px;
	text-align: left
}

.release-body .title4 h2 {
	font-size: 20px;
	font-weight: 500;
	letter-spacing: 2px;
	margin: 0;
	color: #4D4DFF
}

.release-body .title4 p {
	font-size: 16px;
	padding-top: 20px;
	color: #007FFF;
	letter-spacing: 2px
}

.release-body .title4 .sizes {
    font-size: 12px;
    color: #2196F3;
}

.release-main .links {
	overflow: hidden;
	padding: 15px;
	border-top: 1px solid #f5f5f5;
	border-bottom: 1px solid #f5f5f5;
}

.release-main .links ul {
	display: block
}

.release-main .links ul li {
	list-style: none;
	width: 45%;
	text-align: center;
	padding: 7px 0;
	margin: 0 1.666%;
	float: left
}

.release-main .links ul li a {
	text-decoration: none;
	display: block;
	text-align: center;
	padding: 12px 0;
	font-size: 18px;
	color: #fff;
	margin: 2px;
	border-radius: 34px;
	transition: all .3s ease;
	letter-spacing: 1px;
	font-weight: 700;
	background: linear-gradient(90deg, #f8922d, #ff2f00, #ffc400, #f8922d);
	background-size: 400%;
	position: relative;
	z-index: 1
}

.release-main .links ul li a:hover {
	animation: animate 8s linear infinite
}

.release-main .links ul li a:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	background: linear-gradient(90deg, #f8922d, #ff2f00, #ffc400, #f8922d);
	background-size: 200%;
	border-radius: 40px;
	transition: .5s;
	opacity: 0;
	width: 100%;
	height: 100%
}

.release-main .links ul li a:hover:before {
	filter: blur(10px);
	opacity: 1;
	animation: animate 8s linear infinite
}


/* 。。。。。。ul2。。。。。。。。。。。。。。。。。*/
.release-main .links ul2 {
	display: block
}

.release-main .links ul2 li {
	list-style: none;
	width: 30%;
	text-align: center;
	padding: 7px 0;
	margin: 0 1.666%;
	float: left
}
.release-main .links ul2 li a {
	text-decoration: none;
	display: block;
	text-align: center;
	padding: 12px 0;
	font-size: 18px;
	color: #fff;
	margin: 2px;
	border-radius: 34px;
	transition: all .3s ease;
	letter-spacing: 2px;
	font-weight: 700;
	background: linear-gradient(90deg, #f8922d, #ff2f00, #ffc400, #f8922d);
	background-size: 400%;
	position: relative;
	z-index: 1
}

.release-main .links ul2 li a:hover {
	animation: animate 8s linear infinite
}

.release-main .links ul2 li a:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	background: linear-gradient(90deg, #f8922d, #ff2f00, #ffc400, #f8922d);
	background-size: 200%;
	border-radius: 40px;
	transition: .5s;
	opacity: 0;
	width: 100%;
	height: 100%
}

.release-main .links ul2 li a:hover:before {
	filter: blur(10px);
	opacity: 1;
	animation: animate 8s linear infinite
}

/* 。。。。。。。。ul3。。。。。。。。。。。。。。。。。*/

.release-main .links ul23 {
	display: block
}

.release-main .links ul3 li {
	list-style: none;
	width: 30%;
	text-align: center;
	padding: 7px 0;
	margin: 0 1.666%;
	float: left
}
.release-main .links ul3 li a {
	text-decoration: none;
	display: block;
	text-align: center;
	padding: 12px 0;
	font-size: 18px;
	color: #fff;
	margin: 2px;
	border-radius: 34px;
	transition: all .3s ease;
	letter-spacing: 2px;
	font-weight: 700;
	background: linear-gradient(90deg, #f8922d, #ff2f00, #ffc400, #f8922d);
	background-size: 400%;
	position: relative;
	z-index: 1
}

.release-main .links ul3 li a:hover {
	animation: animate 8s linear infinite
}

.release-main .links ul3 li a:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	background: linear-gradient(90deg, #f8922d, #ff2f00, #ffc400, #f8922d);
	background-size: 200%;
	border-radius: 40px;
	transition: .5s;
	opacity: 0;
	width: 100%;
	height: 100%
}

.release-main .links ul3 li a:hover:before {
	filter: blur(10px);
	opacity: 1;
	animation: animate 8s linear infinite
}


/* 。。。。。。。。以上  a2    a3。。。。。。。。。。。。。。。。。*/





/* 。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。*/

.release-body2 {
	border-radius: 30px;
	margin-top: 90px;
}


.release-main .links2 {
	overflow: hidden;
	padding: 15px;

}

.release-main .links2 ul {
	display: block
}

.release-main .links2 ul li {
	list-style: none;
	width: 30%;
	text-align: center;
	padding: 7px 0;
	margin: 0 1.666%;
	float: left
}

.release-main .links2 ul li a {
	text-decoration: none;
	display: block;
	text-align: center;
	padding: 12px 0;
	font-size: 18px;
	color: purple;
	margin: 2px;
	border-radius: 34px;
	transition: all .3s ease;
	letter-spacing: 2px;
	font-weight: 700;

border: 3px solid purple;

	background-size: 400%;
	position: relative;
	z-index: 1
}

.release-main .links2 ul li a:hover {
	animation: animate 8s linear infinite
}

.release-main .links2 ul li a:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	background: linear-gradient(90deg, #f8922d, #ff2f00, #ffc400, #f8922d);
	background-size: 200%;
	border-radius: 40px;
	transition: .5s;
	opacity: 0;
	width: 100%;
	height: 100%
}

.release-main .links2 ul li a:hover:before {
	filter: blur(10px);
	opacity: 1;
	animation: animate 8s linear infinite
}

/* 。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。*/

@keyframes animate {
	0% {
		background-position: 0
	}

	to {
		background-position: 400%
	}
}

.release-main .links a:last-child {
	border-right: 0
}

.release-main .tips {
	text-align: center;
	padding: 10px 0 5px
}

.release-main .tips p {
	font-size: 12px;
	color: #959595;
	letter-spacing: 2px;
	margin-bottom: 2px;
	line-height: 30px
}

.release-main .tips p b {
	color: #353535;
	padding: 2px;
	margin: 5px;
	border-radius: 5px;
	background-color: #fff;
	border: 1px solid #eaeaea
}

.release-main .tips2 {
	text-align: center;
	padding: 20px 0 20px
}

.release-main .tips2 p {
	font-size: 12px;
	color: #959595;
	letter-spacing: 2px;
	margin-bottom: 10px;
	line-height: 30px
}
.release-main .tips2 p b {
	color: #353535;
	padding: 4px;
	margin: 5px;
	border-radius: 5px;
	background-color: #fff;
	border: 1px solid #eaeaea
}

footer {
	text-align: center;
	padding: 20px 0;
	border-radius: 20px;
	margin: 20px 0;
	background-color: #800080;
	border: 1px solid blue
}

footer p {
	margin-bottom: 0;
	color: #856404;
	letter-spacing: 1px;
	font-size: 16px
}

@media screen and (max-width:500px) {
	.release-body .image img {
		width: 80px;
		margin-top: -40px
	}

	.release-body .title {
		padding: 25px 0
	}

	.release-body .title h2 {
		font-size: 24px
	}

	.release-body .title p {
		font-size: 14px;
		letter-spacing: .8px;
		padding-top: 15px
	}

	.release-main .links ul li {
		width: 30.555%
	}

	.release-main .links ul li:nth-child(3n) {
		margin-right: 0;
	}

	.release-main .links ul li a {
		font-size: 16px;
		font-weight: 400;
		border-radius: 20px;
		letter-spacing: 2px
	}

	.release-main .tips {
		padding: 20px 20px 10px
	}

	.release-main .tips p {
		font-size: 14px
	}

	footer p {
		letter-spacing: 0;
		font-size: 13px
	}
}

* {
	padding: 0;
	margin: 0
}

body {
	/*background-color: #3a6ea5;*/
	color: #fff;
	font-family: -apple-system, BlinkMacSystemFont, Helvetica Neue, PingFang SC, Microsoft YaHei, Source Han Sans SC, Noto Sans CJK SC, WenQuanYi Micro Hei, sans-serif
}

#main {
	margin: 10px auto;
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center
}

.field {
	width: 500px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: #fff;
	color: #6c757d;
	font-size: 16px;
	padding: 15px;
	margin: 5px auto;
	border-radius: 6px
}

.field.desc ul>li {
	text-align: left;
	font-size: 14px
}

@media (max-width:500px) {
	#main {
		padding: 0 5px
	}

	.field {
		width: 100%;
		padding: 15px 0
	}

	.field.desc ul {
		margin: 0 15px
	}

	.field.desc ul>li {
		text-align: left
	}
}

ul>li {
	margin-bottom: 10px;
	list-style-type: none;
	text-align: center
}

ul>li.text {
	font-size: 12px;
	clear: both;
	width: 100%
}

.field .title {
	margin-bottom: 15px;
	font-weight: 700;
	color: #343a40
}

a,
a:active,
a:focus,
a:hover,
a:visited {
	color: inherit;
	text-decoration: none
}

.brand {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	text-align: center;
	color: #000;
	font-size: 30px;
	font-weight: 200;
	padding: 20px;
	cursor: pointer
}

.brand span {
	color: #fff;
	font-weight: 600
}

.brand span.flag {
	color: #3a6ea5;
	background: #fff;
	border-radius: 6px;
	font-size: 20px;
	font-weight: 700;
	display: inline-block;
	padding: 0 5px;
	margin-left: 5px
}

.enter-maomi {
	width: 104%;
	text-align: center;
	line-height: 40px;
	border: 1px solid #00c250;
	border-radius: 15px;
	margin-bottom: 20px;
	margin-top: 20px;
	/* text-align: center; */
	font-size: 19px;
}


.enter-icon {
	width: 32px;
	height: 41px;
	float: left;
	margin-right: 5px;
	background-color: #00c250;
	text-align: center;
}

.enter-link a {
	display: block
}


.c_black {
	color: #333;
	line-height: 30px;
	font-size: 12px
}

.c_blue {
	color: #00c250
}

.c_link {
	font-size: 14px;
	line-height: 30px
}

.fri_link {
	overflow: hidden;
	width: 80%
}

.fri_link li {
	float: left;
	display: block;
	font-size: .875rem;
	width: 33.33333333%
}









        .container {
            text-align: center;
            margin-top: 1px; /* 可根据需要调整顶部外边距 */
        }
        .line {
            display: inline-block;
            width: 15%; /* 可根据需要调整线条长度 */
            border-top: 2px solid #00c250; /* 设置线条样式，颜色和宽度 */
            vertical-align: middle; /* 垂直居中对齐 */
        }
        .text {
            display: inline-block;
            vertical-align: middle; /* 垂直居中对齐 */
            padding: 0 15px; /* 设置文字与线条之间的间距 */
            font-size: 18px; /* 设置文字大小 */
            color: #00c250;
            cursor: pointer; /* 添加点击手势 */
        }
        .text2 {
            display: inline-block;
            vertical-align: middle; /* 垂直居中对齐 */
            padding: 0 15px; /* 设置文字与线条之间的间距 */
            font-size: 18px; /* 设置文字大小 */
            color: #00c250;
            cursor: pointer; /* 添加点击手势 */
        }
       .enter-maomi {
            margin-top: 5px; /* 设置每个块的顶部外边距 */
        }
        .hidden {
            display: none; /* 隐藏元素 */



