@charset "utf-8";

/* 默认状态下表格隐藏 */
/* 父容器样式 */
.parent-container {
    display: flex;
    justify-content: center; /* 水平居中 */
    align-items: center; /* 垂直居中 */
    height: 100%; /* 确保父容器有高度 */
    width: 100%; /* 确保父容器宽度为100% */
    margin: 0 auto; /* 确保父容器水平居中 */
}

/* 确保 slider-container 有宽度 */
.slider-container {
    width: 1200px; /* 设置一个固定宽度 */
    max-width: 100%; /* 确保在小屏幕上不会超出屏幕宽度 */
    
    overflow: hidden;
    margin: 0 auto; /* 确保水平居中 */
}

.slider-container table {
	position: absolute;
	top: 0;
	opacity: 0;
	transition: all 1s ease;
	width: 1200px; /* 默认宽度 */
	
	 left: 0; /* 确保初始位置正确 */
	
}

/* 显示当前表格 */
.slider-container table.active {
    left: 0;
    opacity: 1;
}

/* 前一张表格过渡样式 */
.slider-container table.prev {
     /* 移动到容器左侧 */
    opacity: 0;
	
	left: 100%; /* 移动到容器左侧 */
}


body h2 {
	font-family: "微软雅黑";
	font-size: xx-large;
	margin-bottom: 0px;
	margin-top: 10px;
	margin-right: 10px;
	margin-left: 10px;
	clear: both;
	text-align: left;
}
body h3 {
	font-family: Arial;
	margin-top: 0px;
	margin-right: 10px;
	margin-bottom: 10px;
	margin-left: 10px;
	font-size: x-large;
	text-align: left;
}


body h4 {
	font-family: "微软雅黑";
	margin-top: 10px;
	margin-right: 10px;
	margin-bottom: 10px;
	margin-left: 20px;
	clear: both;
}
body h5 {
	font-family: Arial;
	font-size: large;
	margin-top: 10px;
	margin-right: 10px;
	margin-bottom: -10px;
	margin-left: 10px;
	text-align: left;
}


body h6 {
	font-family: Arial;
	font-size: xx-large;
	margin-bottom: 10px;
	margin-top: 10px;
	margin-right: 10px;
	margin-left: 10px;
	padding-left: 0px;
	width: 65px;
	text-align: center;
	background-color: rgba(255,255,255,0.70);
	color: rgba(111,165,167,1.00);
	height: 30px;
	padding-top: 0px;
	line-height: 30px;
}
body h7 {
	font-family: "微软雅黑";
	font-size: 0px;
	font-weight: bold;
}






body h1 {
	font-family: "微软雅黑";
	font-size: 120%;
	margin-bottom: -5px;
	margin-top: 10px;
	margin-right: 10px;
	margin-left: 10px;
	padding-left: 0px;
	padding-right: 10px;
	clear: both;
}

.navB0c1   {
	text-decoration: none;
	color: rgba(30,154,159,1.00);
	-webkit-transition: all 0.5s ease 0s;
	-o-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
	text-align: left;
	padding-left: 2%;
	font-family: "微软雅黑";
	height: 35px;
}
.navB0c2   {
	text-decoration: none;
	color: rgba(81,81,81,1.00);
	-webkit-transition: all 0.5s ease 0s;
	-o-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
	padding-left: 2%;
	font-family: "微软雅黑";
	height: 35px;
	font-weight: bold;
}
.navB {
	-webkit-transition: all 0.5s ease 0s;
	-o-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
	color: rgba(101,119,129,1);
}
.navB:hover {
	color: rgba(111,165,167,1);
}

.navC {
	-webkit-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}
.navD {
	-webkit-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}
.navE {
	-webkit-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}
.navF {
	-webkit-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}
.navG {
	-webkit-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}
.navH {
	-webkit-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}
.navC:hover {
	color: rgba(111,165,167,1);
}
.navD:hover {
	color: rgba(111,165,167,1);
}
.navE:hover {
	color: rgba(111,165,167,1);
}
.navF:hover {
	color: rgba(111,165,167,1);
}
.navG:hover {
	color: rgba(111,165,167,1);
}
.navH:hover {
	color: rgba(111,165,167,1);
}
.navB0c1:hover {
	color: rgba(0,0,0,1);
	font-size: 18px;
	font-weight: bold;
}
.navB0c2:hover {
	color: rgba(211,211,211,1.00);
	font-size: 18px;
	font-weight: bold;
}
.B0c  {
	color: rgba(255,255,255,1.00);
	background-color: rgba(111,165,167,0.80);
	padding-top: 0px;
	line-height: 35px;
	margin-top: -10px;
	list-style-position: outside;
	padding-left: 0%;
}
.Ctable {
	margin-left: auto;
	margin-right: auto;
}











@media (max-width:1200px){
	
    .slider-container {
        width: 100%; /* 容器宽度为100% */
		height: 320px;
    }
    .slider-container table {
        width: 100%; /* 表格宽度为100% */
		height: 320px;
    }
	
	
.FOOTER2 {
	background-color: rgba(160,208,213,1.00);
	background-repeat: repeat-x;
	margin-left: auto;
	margin-right: auto;
	width: 100%;
}
.FOOTER {
	background-color: rgba(111,165,167,1.00);
	color: rgba(255,255,255,1.00);
	padding-top: 20px;
	padding-bottom: 20px;
	text-align: left;
	width: 100%;
}
.A0 {
	height: 180px;
	margin-top: 0px;
	padding-top: 0px;
	background-image: url(Image/A0D.jpg);
	background-repeat: no-repeat;
	margin-left: 0px;
	clear: both;
	background-size: cover;
	width: 100%;
}
.FOOTERTEXT {
	text-align: center;
	color: rgba(255,255,255,1.00);
	margin-left: auto;
	margin-right: auto;
	width: 100% !important;
}
.Atable {
	margin-left: auto;
	margin-right: auto;
	text-align: right;
	margin-bottom: 50px;
	font-size: 18px;
	margin-top: 50px;
	font-weight: normal;
	width: 100% !important;
}
.Ftable {
	margin-left: auto;
	margin-right: auto;
	text-align: left;
	color: rgba(105,105,105,1);
	font-size: 16px;
	font-weight: bold;
	width: 100%;
}
.navHome {
	-webkit-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	word-spacing: 40px !important;
	letter-spacing: 5px;
	width: 100%;
}
.Btable {
	margin-left: auto; /* 自动调整左边距 */
	margin-right: auto; /* 自动调整右边距 */
	margin-top: 50px; /* 上边距 */
	margin-bottom: 50px; /* 下边距 */
	width: 100%; /* 固定宽度 */
	max-width: 100%; /* 确保在小屏幕上不会超出屏幕宽度 */
	border-collapse: collapse; /* 重置表格边框 */
	font-size: 18px;
	color: rgba(255,255,255,1);
}






































}



@media (max-width:750px){
.FOOTER2 {
	background-color: rgba(160,208,213,1.00);
	background-repeat: repeat-x;
	margin-left: auto;
	margin-right: auto;
	width: 750px;
}
.FOOTER {
	background-color: rgba(111,165,167,1.00);
	color: rgba(255,255,255,1.00);
	padding-top: 20px;
	padding-bottom: 20px;
	text-align: left;
	width: 750px;
}
.A0 {
	height: 180px;
	margin-top: 0px;
	padding-top: 0px;
	background-image: url(Image/A0D.jpg);
	background-repeat: no-repeat;
	margin-left: 0px;
	clear: both;
	background-size: cover;
	width: 750px;
}


























}

.A0c  {
	color: rgba(255,255,255,1.00);
	text-align: right;
	float: right;
	font-size: 15px;
	width: 100%;
	margin-top: -5px;
	font-family: Arial;
}
     tbody tr td {
	text-align: left;
	font-family: "微软雅黑";
	font-weight: normal;
	font-size: 18px;
	color: rgba(81,81,81,1);
}


.A0a p a {
	color: rgba(255,255,255,1.00);
	text-decoration: none;
	font-family: "微软雅黑";
}
.C0 {
	background-color: rgba(0,0,0,1.00);
	height: 800px;
	margin-top: 0px;
	padding-top: 0px;
	background-image: url(%E5%9B%BE%E5%83%8F/1.%20%E9%AB%98%E8%B4%A8%E9%87%8F%E5%8F%91%E5%B1%95%E6%94%BF%E7%AD%96%E4%B8%8E%E4%BA%A7%E4%B8%9A%E5%92%A8%E8%AF%A2%E7%A0%94%E7%A9%B6%E4%B8%8E%E8%A7%84%E5%88%92.png);
	background-repeat: no-repeat;
	background-size: cover;
	width: 3300px;
	margin-left: 0px;
	clear: both;
}
.A0 {
	height: 180px;
	margin-top: 0px;
	padding-top: 0px;
	background-image: url(Image/A0D.jpg);
	background-repeat: no-repeat;
	margin-left: 0px;
	clear: both;
	background-size: cover;
}
.A001Z  {
	margin-top: 0px;
	background-color: rgba(0,0,0,0.50);
	padding-top: 40px;
	padding-bottom: 40px;
	border-bottom: 1px solid rgba(161,187,192,1.00);
	height: auto;
}







.A0b {
	margin-top: 420px;
	margin-right: 10px;
	margin-bottom: 10px;
	margin-left: 10px;
	text-align: right;
	clear: both;
	font-family: "微软雅黑";
	font-size: x-large;
	font-weight: bold;
	color: rgba(255,255,255,1.00);
	float: right;
	/* [disabled]word-spacing: normal; */
}
.A0LOGO {
	margin-left: 10px;
	float: left;
	width: 750px;


}
.F0 .NB0c {
	color: rgba(34,34,34,1.00);
	font-family: "微软雅黑";
	text-align: center;
	font-weight: bold;
	font-size: x-large;
	padding-left: 0%;
	/* [disabled]background-color: rgba(111,165,167,0.80); */
	height: 38px;
	background-image: url(%E5%9B%BE%E5%83%8F/NB0c1.png);
	background-repeat: no-repeat;
	background-position: 0% 0%;
	padding-bottom: 2px;
	background-size: cover;
	width: 140px;
	margin-left: 22%;
	float: left;
}
.G0 .NB0c {
	color: rgba(34,34,34,1.00);
	font-family: "微软雅黑";
	text-align: center;
	font-weight: bold;
	font-size: x-large;
	padding-left: 0%;
	/* [disabled]background-color: rgba(111,165,167,0.80); */
	height: 38px;
	background-image: url(%E5%9B%BE%E5%83%8F/NB0c1.png);
	background-repeat: no-repeat;
	background-position: 0% 0%;
	padding-bottom: 2px;
	background-size: cover;
	width: 140px;
	margin-left: 22%;
	float: left;
}
.H0 .NB0c {
	color: rgba(34,34,34,1.00);
	font-family: "微软雅黑";
	text-align: center;
	font-weight: bold;
	font-size: x-large;
	padding-left: 0%;
	/* [disabled]background-color: rgba(111,165,167,0.80); */
	height: 38px;
	background-image: url(%E5%9B%BE%E5%83%8F/NB0c1.png);
	background-repeat: no-repeat;
	background-position: 0% 0%;
	padding-bottom: 2px;
	background-size: cover;
	width: 140px;
	margin-left: 22%;
	float: left;
}
.E0 .NB0c {
	color: rgba(34,34,34,1.00);
	font-family: "微软雅黑";
	text-align: center;
	font-weight: bold;
	font-size: x-large;
	padding-left: 0%;
	/* [disabled]background-color: rgba(111,165,167,0.80); */
	height: 38px;
	background-image: url(%E5%9B%BE%E5%83%8F/NB0c1.png);
	background-repeat: no-repeat;
	background-position: 0% 0%;
	padding-bottom: 2px;
	background-size: cover;
	width: 140px;
	margin-left: 22%;
	float: left;
}
.D0 .NB0c {
	color: rgba(34,34,34,1.00);
	font-family: "微软雅黑";
	text-align: center;
	font-weight: bold;
	font-size: x-large;
	padding-left: 0%;
	/* [disabled]background-color: rgba(111,165,167,0.80); */
	height: 38px;
	background-image: url(%E5%9B%BE%E5%83%8F/NB0c1.png);
	background-repeat: no-repeat;
	background-position: 0% 0%;
	padding-bottom: 2px;
	background-size: cover;
	width: 140px;
	margin-left: 22%;
	float: left;
}
.C0 .NB0c {
	color: rgba(34,34,34,1.00);
	font-family: "微软雅黑";
	text-align: center;
	font-weight: bold;
	font-size: x-large;
	padding-left: 0%;
	/* [disabled]background-color: rgba(111,165,167,0.80); */
	height: 38px;
	background-image: url(%E5%9B%BE%E5%83%8F/NB0c1.png);
	background-repeat: no-repeat;
	background-position: 0% 0%;
	padding-bottom: 2px;
	background-size: cover;
	width: 140px;
	margin-left: 22%;
	float: left;
}
.NB0c  {
	color: rgba(34,34,34,1.00);
	font-family: "微软雅黑";
	text-align: center;
	font-weight: bold;
	font-size: x-large;
	padding-left: 0%;
	/* [disabled]background-color: rgba(111,165,167,0.80); */
	height: 38px;
	background-image: url(%E5%9B%BE%E5%83%8F/NB0c1.png);
	background-repeat: no-repeat;
	background-position: 0% 0%;
	padding-bottom: 2px;
	background-size: cover;
	width: 140px;
	margin-left: 22%;
	float: left;
}

.A0c  {
	color: rgba(255,255,255,1.00);
	text-align: right;
	float: right;
	font-size: 15px;
	width: 100%;
	margin-top: -5px;
	font-family: Arial;
}

.B0 {
	background-image: url(%E5%9B%BE%E5%83%8F/%E4%B8%8A%E6%B5%B7%E5%B8%82%E7%94%9F%E6%80%81%E7%8E%AF%E5%A2%83%E6%B2%BB%E7%90%86%E6%94%BF%E7%AD%96%E6%A8%A1%E6%8B%9F%E4%B8%8E%E8%AF%84%E4%BC%B0%E9%87%8D%E7%82%B9%E5%AE%9E%E9%AA%8C%E5%AE%A4-%E6%A6%82%E6%8B%AC.jpg);
	height: 800px;
	clear: both;
	background-repeat: no-repeat;
}
.D0 {
	background-image: url(%E5%9B%BE%E5%83%8F/D%E8%A7%82%E7%82%B9.png);
	height: 800px;
	clear: both;
	background-repeat: no-repeat;
	background-size: contain;
	width: 2512px;
}
.E0 {
	background-image: url(%E5%9B%BE%E5%83%8F/E%E7%A7%91%E7%A0%94.png);
	height: 800px;
	clear: both;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	width: 2512px;
}
.F0 {
	background-image: url(%E5%9B%BE%E5%83%8F/F%E5%9B%A2%E9%98%9F.jpg);
	height: 800px;
	width: 2512px;
	clear: both;
}
.H0 {
	background-image: url(%E5%9B%BE%E5%83%8F/H%E5%90%88%E4%BD%9C.jpg);
	height: 800px;
	width: 2512px;
	clear: both;
	background-repeat: no-repeat;
	background-size: 100% auto;
}
.G0 {
	background-image: url(%E5%9B%BE%E5%83%8F/G%E6%9C%8D%E5%8A%A1.png);
	height: 800px;
	width: 2512px;
	clear: both;
	background-repeat: no-repeat;
	background-size: 100% auto;
}
.A0Stable {
	height: 120px;
}


        /* 设置表格单元格样式 */
        table.A6a1 td {
	text-align: left; /* 文本左对齐 */
	vertical-align: middle; /* 垂直居中 */
	color: rgba(255, 255, 255, 1);
	font-weight: normal;
        }
        
     .A6 {
	background-color: rgba(81,81,81,1.00);
	padding-bottom: 30px;
	margin-bottom: 0px;
	padding-top: 20px;
}

.A4表格 {
	margin-left: auto;
	margin-right: auto;
}

.A4 .A4X {
	width: 140px;
	height: 32px;
	margin-left: 20px;
	background-image: url(%E5%9B%BE%E5%83%8F/%E6%9B%B4%E5%A4%9A2.png);
	background-repeat: no-repeat;
	background-size: contain;
	margin-top: 30px;
	font-family: "微软雅黑";
	line-height: 30px;
	padding-left: 30px;
}
.A4c2 {
	margin-top: 0px;
	margin-right: 10px;
	margin-bottom: 20px;
	height: 100px;
	width: 85%;
	float: left;
	margin-left: 0px;
	padding-left: 0px;
}
.A4c1 {
	width: 110px;
	height: 100px;
	float: left;
	margin-right: 0px;
	margin-top: 0px;
	margin-bottom: 0px;
	margin-left: 10px;
	clear: both;
}
.A4b2 {
	height: 100px;
	margin-top: 0px;
	margin-right: 10px;
	margin-bottom: 0px;
	margin-left: 0px;
	width: 85%;
	float: left;
}
.A4b1 {
	height: 100px;
	width: 110px;
	margin-left: 10px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	clear: left;
	float: left;
}

.A4 {
	background-color: rgba(111,165,167,1.00);
	color: rgba(255,255,255,1.00);
	padding-top: 20px;
	padding-bottom: 20px;
	height: auto;
	margin-top: 40px;
	margin-bottom: 0px;
}

.A1a  {
	font-family: "微软雅黑";
	line-height: 36px;
}
.A1more {
	width: 140px;
	height: 32px;
	background-image: url(Image/more1.png);
	background-repeat: no-repeat;
	background-size: contain;
	padding-left: 30px;
	padding-top: 0px;
	line-height: 30px;
	color: rgba(111,165,167,1.00);
	font-family: "微软雅黑";
}
.Atable {
	margin-left: auto;
	margin-right: auto;
	text-align: right;
	margin-bottom: 50px;
	font-size: 18px;
	margin-top: 50px;
	font-weight: normal;
	width: 1200px;
}
.A1TOP {
	width: auto;
	height: 600px;
	background-repeat: no-repeat;
	background-color: rgba(111,165,167,1.00);
	background-image: url(Image/A0.jpg);
	background-size: 2500px 600px;
}


.A0a  {
	color: rgba(111,165,167,1);
	background-color: rgba(11,33,57,0.20);
	clear: both;
	padding-top: 10px;
	padding-bottom: 5px;
	text-align: justify;
	width: 100%;
}



.navHome {
	-webkit-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	word-spacing: 100px;
	letter-spacing: 5px;
	width: 100%;
}


.navHome:hover {
	color: rgba(111,165,167,1);
}
.B0D {
	margin-left: auto;
	margin-right: auto;
	background-color: rgba(111,165,167,1.00);
	font-weight: normal;
	margin-top: 57px;
	
	    width: 100%; /* 确保父容器是响应式的 */
    table-layout: fixed; /* 固定表格布局 */
}
.B0D2 {
	background-color: rgba(239,239,239,1.00);
	font-size: large;
	text-align: center;
	word-spacing: 35px;
}
.B0D1 {
	background-image: url(Image/YM1.jpg);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: 0% 0%;
	width: 160px !important; /* 固定宽度 */
	height: 35px !important; /* 确保内边距和边框包含在宽度和高度内 */
	font-size: 24px;
	font-weight: bold;
	text-align: center; /* 添加这行代码 */
	
	vertical-align: middle; /* 垂直居中 */
}


.B0D4 {
	font-size: 0px;


}
.ZZZ {
	background-color: rgba(101,119,129,1.00);
}
.ZZZ1 {
	background-color: rgba(111,165,167,1.00);
	background-image: url(Image/YM1.jpg);
}

html, body, tbody, tr  {
	margin: 0;
	padding: 0;
	border: 0;
	font-family: "微软雅黑";
}
.C0D2 {
	text-align: center;
	font-size: large;
	word-spacing: 100px; /* 其他列的宽度 */
	width: 530px;
}
.FOOTER {
	background-color: rgba(111,165,167,1.00);
	color: rgba(255,255,255,1.00);
	padding-top: 20px;
	padding-bottom: 20px;
	text-align: left;
}
.FOOTERTEXT {
	text-align: center;
	color: rgba(255,255,255,1.00);
	margin-left: auto;
	margin-right: auto;
	width: 1200px;
}

.Btable {
	margin-left: auto; /* 自动调整左边距 */
	margin-right: auto; /* 自动调整右边距 */
	margin-top: 50px; /* 上边距 */
	margin-bottom: 50px; /* 下边距 */
	width: 1200px; /* 固定宽度 */
	max-width: 100%; /* 确保在小屏幕上不会超出屏幕宽度 */
	border-collapse: collapse; /* 重置表格边框 */
	font-size: 18px;
	color: rgba(255,255,255,1);
}
.B4a {
	background-color: rgba(111,165,167,1.00);
	padding-top: 10px;
	padding-left: 10px;
	padding-right: 10px;
	color: rgba(255,255,255,1.00);
}
.B4b {
	padding-left: 10px;
	padding-top: 10px;
	padding-right: 10px;
	color: rgba(255,255,255,1.00);
	background-color: rgba(101,119,129,1.00);
}
.Ftable {
	margin-left: auto;
	margin-right: auto;
	text-align: left;
	color: rgba(105,105,105,1);
	font-size: 16px;
	font-weight: bold;
}
.Ftable td {
	text-align: center; /* 水平居中 */
	vertical-align: middle; /* 垂直居中 */
	font-size: 18px;
	font-weight: normal;
	color: rgba(105,105,105,1);
}
.E2td {
	margin-left: auto;
	margin-right: auto;
	width: 1200px;
}
.H201 {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	margin-bottom: 10px;
	color: rgba(81,81,81,1.00);
}
.navtext {
	text-decoration: none;
	color: rgba(81,81,81,1.00);

}
.navtext:hover {
	text-decoration: none;
	color: rgba(111,165,167,1.00);

}
.navMore {
	color: rgba(111,165,167,1.00);
	text-decoration: none;

}
.navMore:hover {
	color: rgba(211,211,211,1.00);
	text-decoration: none;
	text-align: right;
	font-size: 18px;

}
.FOOTER2 {
	background-color: rgba(160,208,213,1.00);
	background-repeat: repeat-x;
	margin-left: auto;
	margin-right: auto;
}
.td-JJ {
	letter-spacing: 1px;
	line-height: 22px;
	text-align: center;


}
.td-JJ2 {
	line-height: 32px;


}
.navTable {
	text-decoration: none;
	color: rgba(81,81,81,1.00);
}
.navTable:hover {
	text-decoration: none;
	color: rgba(255,255,255,1.00);
	text-align: left;
}
.BCK {
	background-image: url(Image/BCK.jpg);
	background-repeat: no-repeat;
	background-position: center 0%;
	background-size: cover;
}
.LZQ {
	background-image: url(Image/LZQ.jpg);
	background-repeat: no-repeat;
	background-position: center 0%;
	background-size: cover;
}
.HJ {
	background-image: url(Image/HJ.jpg);
	background-repeat: no-repeat;
	background-position: center 0%;
	background-size: cover;
}
.CSY {
	background-image: url(Image/CSY.jpg);
	background-repeat: no-repeat;
	background-position: center 0%;
	background-size: cover;
}
.MWC {
	background-image: url(Image/MWC.jpg);
	background-repeat: no-repeat;
	background-position: center 0%;
	background-size: cover;
}
.BJ {
	background-image: url(Image/BJ.jpg);
	background-repeat: no-repeat;
	background-position: center 0%;
	background-size: cover;
}
.ZJ {
	background-image: url(Image/ZJ.jpg);
	background-repeat: no-repeat;
	background-position: center 0%;
	background-size: cover;
}
.F-td {
	letter-spacing: 3px;
	word-spacing: 30px;
}

#topButton {
    position: fixed; /* 固定位置 */
    bottom: 200px; /* 距离页面底部20像素 */
    right: 50px; /* 距离页面右侧20像素 */
    width: 50px; /* 按钮宽度 */
    height: 50px; /* 按钮高度 */
    border: none; /* 去掉边框 */
    background-color: transparent; /* 背景透明 */
    cursor: pointer; /* 鼠标悬停时显示为手型 */
    transition: opacity 0.3s ease; /* 淡入淡出效果 */
    opacity: 0.7; /* 初始透明度 */
}

#topButton:hover {
    opacity: 1; /* 鼠标悬停时完全不透明 */
}
.B2name {
	padding-right: 20px;
	line-height: 25px;
}
