@charset "utf-8";
/*header*/
.header{
	position: static;
    height: 300px;
	width: 100%;
	max-width: 720px;
	background: #D2B335;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
}
.header.index-header{
	height: 230px;
}
.header .head-title-img{
	position: relative;
/*	background: rgba(0,0,0,0.6);*/
}
.head-title-img .natural{
	display: block;
	position: absolute;
	top: 2px;
	width: 60px;
	height: 60px;
	left: 50%;
	margin-left: -30px;
	-webkit-animation: z 5s linear 0s infinite;
    -moz-animation: z 5s linear 0s infinite;
    -ms-animation: z 5s linear 0s infinite;
    animation: z 5s linear 0s infinite;
    box-shadow: 0px 0px 20px #000;
    border-radius: 50%;
}
@-webkit-keyframes z {
	from {
		-webkit-transform: translateX(0) translateY(0) translateZ(0) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scaleX(1) scaleY(1) scaleZ(1);
		-moz-transform: translateX(0) translateY(0) translateZ(0) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scaleX(1) scaleY(1) scaleZ(1);
		-ms-transform: translateX(0) translateY(0) translateZ(0) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scaleX(1) scaleY(1) scaleZ(1);
		transform: translateX(0) translateY(0) translateZ(0) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scaleX(1) scaleY(1) scaleZ(1);
	}
	to {
		-webkit-transform: translateX(0) translateY(0) translateZ(0) rotateX(0deg) rotateY(0deg) rotateZ(360deg) scaleX(1) scaleY(1) scaleZ(1);
		-moz-transform: translateX(0) translateY(0) translateZ(0) rotateX(0deg) rotateY(0deg) rotateZ(360deg) scaleX(1) scaleY(1) scaleZ(1);
		-ms-transform: translateX(0) translateY(0) translateZ(0) rotateX(0deg) rotateY(0deg) rotateZ(360deg) scaleX(1) scaleY(1) scaleZ(1);
		transform: translateX(0) translateY(0) translateZ(0) rotateX(0deg) rotateY(0deg) rotateZ(360deg) scaleX(1) scaleY(1) scaleZ(1);
	}
}
.header .logo-box {
    height: 200px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    overflow: hidden;
    border: none;
}

.header .logo {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header .logo .logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}



.nullbox{
	height: 80px;
}
.subnullbox{
	height: 0px;
}
/*nav*/
.nav {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(3, 40px);
   /*height: 90px;  可以加上或调整高度 */
    overflow-y: auto; /* 允许垂直滚动 */
    border-top: 1px solid #d13d3d;
    background: #cca832;
    margin-bottom: 0;
    border-bottom: none;
}

.nav span {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    line-height: 30px;
    text-align: center;
    cursor: pointer;
    /* 去掉 float 和 width */
}
.nav span:hover{
	background: #b32020;
}
.nav.pf span:hover{

}
.box{
	margin:5px 0;
	border-radius: 5px;
	overflow: hidden;
	background: #cca832;
	filter: progid:DXImageTransform.Microsoft.gradient(startcolorstr=#99000000, endcolorstr=#99000000);
}
/*news*/
.news-title{
	float: left;
    height: 35px;
    line-height: 35px;
    padding-left: 5px;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;

}
.news-title img{
	display: block;
	float: left;
	width: 35px;
	height: 35px;
	margin-right:5px;
}
.txtMarquee-left{ padding:0 5px;width:auto;position:relative;height:35px;line-height: 35px;overflow: hidden;}
.txtMarquee-left .bd ul{ overflow:hidden; zoom:1; }
.txtMarquee-left .bd ul li{ margin-right:20px;  float:left; height:35px; line-height:35px;  text-align:left; _display:inline; width:auto !important;color: #000;  }/* 用 width:auto !important 覆盖SuperSlide自动生成的宽度，解决文字不衔接问题 */
.txtMarquee-left .bd ul li a{color: #fff;}
.txtMarquee-left .bd ul li a:hover{text-decoration: underline;}


/*content*/
.subnav {
    border-radius: 12px;
    padding: 12px 0;
    background: linear-gradient(90deg, #f9e547 0%, #f7d358 100%);
    box-shadow: 0 4px 16px rgba(232, 223, 35, 0.15);
    overflow: hidden;
}

.subnav a {
    display: block;
    float: left;
    width: 20%;
    text-align: center;
    font-size: 16pt;
    color: #222;
    font-weight: 600;
    font-family: 'Segoe UI', '微软雅黑', Arial, sans-serif;
    text-shadow: 0px 2px 6px #ffe066;
    transition: color 0.3s, transform 0.3s;
    letter-spacing: 1px;
    padding: 8px 0;
}

.subnav a img {
    display: block;
    width: 90px;
    height: 80px;
    margin: 0 auto 8px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(255, 156, 0, 0.15);
    animation-duration: 2.5s;
    animation-fill-mode: both;
}

.subnav a:nth-child(1) img,
.subnav a:nth-child(2) img {
    animation-name: fadeInLeft;
}
.subnav a:nth-child(3) img {
    animation-name: bounceInDown;
}
.subnav a:nth-child(4) img,
.subnav a:nth-child(5) img {
    animation-name: fadeInRight;
}

.subnav a:hover {
    color: #ff9c00;
    transform: scale(1.08);
}

.subnav a:hover img {
    animation-name: pulse;
    animation-duration: 1s;
    animation-fill-mode: both;
    box-shadow: 0 4px 24px #ff9c00;
}

@keyframes fadeInLeft {
    0% { opacity: 0; transform: translate3d(-100%, 0, 0) scale(0.8);}
    80% { opacity: 0.8; }
    100% { opacity: 1; transform: none; }
}
@keyframes fadeInRight {
    0% { opacity: 0; transform: translate3d(100%, 0, 0) scale(0.8);}
    80% { opacity: 0.8; }
    100% { opacity: 1; transform: none; }
}
@keyframes bounceInDown {
    0% { opacity: 0; transform: translate3d(0, -3000px, 0) scale(0.8);}
    60% { opacity: 1; transform: translate3d(0, 25px, 0);}
    75% { transform: translate3d(0, -10px, 0);}
    90% { transform: translate3d(0, 5px, 0);}
    100% { transform: none;}
}
@keyframes pulse {
    0% { transform: scale(1);}
    50% { transform: scale(1.12);}
    100% { transform: scale(1);}
}

.ggimg {
    margin: 8px 0;
}
.ggimg a img {
    width: 64px;
    height: 64px;
    border-radius: 8px;
    box-shadow: 0 2px 8px #ffe066;
}

.pad {
    padding: 0px 0px;
}
.xjbox{
	margin: 5px 0;
    border-radius: 5px;
    overflow: hidden;
    background: #000;
}
.sup-title{
	font-size: 14pt;
	height: 50px;
	line-height: 50px;
	margin:5px 0;
	text-align: center;
	color: #fff;
	background: #76A9BE;
	border-radius: 5px;
	text-shadow: 0px 1px 10px #000;
	overflow: hidden;
	border:1px solid #000;

}
.jiesitable{
	width: 100%;
	text-align: center;
	word-wrap: break-word;
	font-size:13pt;
	table-layout: fixed;
	border-radius: 8px;
	color: #fff;
	font-weight: bold;
	font-family: 'simsun';
}
.jiesitable tr{
	height: 30px;
}
.jiesitable th,.jiesitable td{
/*	white-space: nowrap;
	overflow: hidden;*/
	text-overflow: ellipsis;
	border:1px solid #76A9BE;	
}
.listtable th {
    font-size: 20px;
    font-weight: bold;
    color: #1565c0;
    background: #e3f0ff;
    text-align: left;
    padding: 12px 10px;
    border-bottom: 2px solid #3399ff;
}

.listtable td {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    padding: 10px 8px;
    background: #fff;
    border-bottom: 1px solid #e3f0ff;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.img-title{
	width: 65%;
	float: right;
	text-align: center;
	margin-bottom: 35px;
}
.img-title h1{
	margin-top: 30px;
	font-size: 52px;
	letter-spacing: 6px;
	text-shadow: 0px 2px 1px #000;
	color: red;
}
.img-title h2{
	margin-top: 32px;
	font-size: 24px;
	color: #0060ff;
	letter-spacing: 13px;
	text-shadow: 0px 2px 1px #000;
}
.text-box{
	height: 197px;
	background: url('../images/zgl.png') no-repeat left top;
}
.listtable.icon6{
	background: #fff url('../images/img1.png') no-repeat bottom right;
}
.listtable.icon6 td a{
	color: #000;
}
.xjimg-list{
	background: rgba(255,255,255,0.6)
}
.img-list-box{
	background: url('../images/img2.png') no-repeat top right;
}
.img-list-title {
    margin: 12px 0;
    text-align: center;
    font-size: 36px;
    color: #ffff00;
    font-weight: bold;
    text-shadow: 0px 2px 8px #000, 0 0 12px #ff0;
    letter-spacing: 2px;
    animation: blinkText 1s infinite alternate;

}

@keyframes blinkText {
    0% {
        color: #ffff00;
        text-shadow: 0px 2px 8px #000, 0 0 12px #ff0;
    }
    100% {
        color: #fff;
        text-shadow: 0px 2px 16px #ff0, 0 0 24px #ff0;
    }
}
.sideMenu{ height: 248px;border:1px solid #000; border-radius: 5px;overflow: hidden;}
.sideMenu h3{ height:42px; line-height:42px; padding-left:10px;  cursor:pointer;font-size:20px;color: #fff;text-align:center;background: #000;border-bottom:1px solid #fff;}
.sideMenu h3 em{ float:right; display:block; width:40px; height:42px;   background:url('../images/icoAdd.png') no-repeat 16px 12px; cursor:pointer }
.sideMenu h3.on em{ background-position:16px -57px; }
.sideMenu ul{ padding:20px 25px; color:#999; display:none;}
.sideMenu ul li{
	float: left;
	width: 25%;
	height: 80px;
}
.sideMenu ul li a{
	display: block;
	width: 90%;
	margin:0 auto;
	height: 80px;
	line-height: 80px;
	text-align: center;
	background: rgba(97,152,191,0.7);
	border-radius: 10px;
	border:1px solid #fff;
	color: #000e42;
	font-size: 18px;
	transition: all 0.5s;
}
.sideMenu ul li a:hover{
	background: rgba(0,0,0,0.7);
	color: #fff;
	border:1px solid #000;
}
.qxtable{
	color: #d53939;
    background: #d63c3c;
    font-weight: bold;
    word-wrap: break-word;
    word-break: break-all;
    text-align: center;;
}
.qxtable tr {
     height: 30px;
}
.qxtable th, .qxtable td {
    border:1px solid #41c837;
}
.qxtable th{
	font-size: 18px;
	background: #378c37;
	text-align: center;
	color: red;
}
.qxtable td {
    text-overflow: ellipsis;
    font-size: 16px;
}
.qxtable.left{
	text-align: left;
}
.qxtable.left th{
	text-align: left;
}
.qxtable.yxym{
	table-layout:auto;
	word-wrap: break-word;
    word-break: break-all;
/*    background:#fff url(../images/tjl.png) center center no-repeat;
*/}
.qxtable.yxym td{
	font-size: 12pt;
}

.qxtable.yxym tr td:nth-child(2){
	width: 40%;
}
.list-title{

	background: linear-gradient(transparent,#dacfcf);
	color: yellow;
	text-shadow: 0px 0px 10px red;
	border-left: 1px solid #76A9BE;
	border-right: 1px solid #76A9BE;

	height: 40px;
	line-height: 40px;
	font-size: 20pt;
    text-align: center;
    border-bottom: 1px solid #000;
    text-shadow: 1px 4px 1px #f6c86a;
    
    font-weight: bold;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
#yxym .list-title{
	background: linear-gradient(transparent,#dacfcf);
	color: yellow;
	text-shadow: 0px 0px 10px red;
	border-left: 1px solid #76A9BE;
	border-right: 1px solid #76A9BE;
}

.jueshatable{
	table-layout: auto;
	color: #000;
	border-radius: 5px;
	overflow: hidden;
	text-align: center;
	background: rgba(255,255,255,0.6);
	filter: progid:DXImageTransform.Microsoft.gradient(startcolorstr=#99ffffff, endcolorstr=#99ffffff);
}
.jueshatable tr{
	height: 35px;
}
.jueshatable th{
	background: #000;
	color: #fff;
	border:1px solid #636262;
}
.jueshatable td{
	font-weight: bold;
	border:1px solid #636262;
}

/*友情链接*/
.yqlj .link{
    height: 30px;
    line-height:30px;
    text-align: center;
    border-bottom: 1px solid #000;
    background:#0000FF;
    color: #fff;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    font-weight: bold;
    font-size: 16px;
}
.yqlj li{
    float: left;
    padding:2px 1px;
    width: 25%;
}
.yqlj li a{
    display: block;
    text-align: center;
    background:#000;
    color: #fff;
    padding:2px 0;
    border:1px solid #fff;
    border-radius: 3px;
    transition: all 0.3s;
}
.yqlj li a:hover{
    text-decoration: underline;
}

/*footer*/
.foot-img{
	padding-bottom: 40px;
	background: url('../images/foot-img.png') no-repeat center bottom;
}
.copyright{
	width: 80%;
	margin:0 auto;
	text-align: center;
	padding-bottom: 5px;
	margin-bottom:5px;
	border-bottom:1px solid #000;
}
.xjct{
	background:rgba(189,182,87,0.6);
	filter: progid:DXImageTransform.Microsoft.gradient(startcolorstr=#99bdb657, endcolorstr=#99bdb657);
}






/*sub*/
.tablebox{
	text-align: center; 
	border-collapse: collapse;
	table-layout: fixed;
	width: 100%;
}
.tablebox tr{
	line-height: 32px;
}
.tablebox td{
	border: 1px solid #e5e5e5;
    word-break: break-all;
    padding: 3px 2px;
}
.tablebox a{
	color: rgb(255, 0, 0);
	text-decoration: underline;
	font-weight: bold;
	font-size: 16px;
}
.subList-bg{
	background:#fff url('../images/subList-bg.png') no-repeat top right;
}
.subTextTitle{
	color: #000;
    padding: 8px 8px 0px 8px;
    border-top-left-radius:8px;
    border-top-right-radius:8px;
}
.subTextTitle h1{
	height: 40px;
	line-height: 40px;
	overflow: hidden;
    font-size: 18px;
    font-weight: bold;
}
.subTextTitle h2{
	color: #9e6101;
	text-indent: 6px;
}
.subTextTitle p{
	color: #d2b335;
	border-top: 1px solid #ffeda4;
	border-bottom: 1px solid #ffeda4;
	padding:10px 0;
	margin-top:10px;
	text-indent: 6px;
}
.tablebox.imgbox a {
    display: block;
    height: 44px;
}
.tablebox.imgbox img {
    width: 100%;
    height: 44px;
}
.subListTable{
	padding:4px 8px 8px 8px;
	color: #000;
}
.subListTable td{
	line-height: 32px;
	border-bottom: 1px solid #ffeda4;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	font-weight: bold;
}
.foot-subTextTitle{
	padding:0 8px;
}
.foot-subTextTitle p{
	color: #d2b335;
	padding-bottom: 10px;
	border-bottom: 1px solid #ffeda4;
}



@media screen and (max-width: 720px) {
    .box, .subnav, .xjbox {
        margin: 5px 5px;
    }

    .subnav a {
        font-size: 11pt;
    }

    .subnav a img {
        width: 67.2px;
        height: 60.8px;
    }

    .ggimg a img {
        width: 40px;
        height: 40px;
    }

    .xjbox table, .listtable td {
        font-size: 10pt;
    }

    .sideMenu ul li a {
        font-size: 12px;
    }

    .img-title {
        width: 90%;
    }

    .img-title h2 {
        letter-spacing: 7px;
    }

    .head-title-img .natural {
        left: 73%;
    }

    .header .logo {
        margin-left: 0px;
    }

    .nav span {
        font-size: 10px;
    }

    .qxtable.yxym td {
        font-size: 12px;
    }

    .qxtable.yxym tr td:nth-child(2) {
        font-size: 13px;
    }
}
.ad-explain {
    width: 100%;
    background: #ffe066;
    border-radius: 8px 8px 0 0;
    padding: 12px 0;
    text-align: center;
    font-size: 18px;
    color: #333;
    font-weight: bold;
    letter-spacing: 2px;
}
.ad-row {
    display: flex;
    width: 100%;
    background: #ff0000;
    border-radius: 0 0 8px 8px;
    overflow: hidden;
}
.ad-cell {
    flex: 1;
    background: #000;
    border: 5px double #ff0;
    margin: 5px;
    color: #ff0;
    font-family: '方正粗黑宋简体', '微软雅黑', Arial;
    font-size: 16pt;
    text-align: center;
    min-height: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    word-break: break-all;
    box-sizing: border-box;
    padding: 10px;
}
.ad-cell a {
    color: #FFFF00;
    text-decoration: none;
    font-weight: bold;
    display: block;
    width: 100%;
    height: 100%;
}
/* CSS */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(5, 1fr); /* 每行高度相等 */
    gap: 18px;
    margin-top: 12px;
    height: 2400px; /* 可根据实际需要设置总高度 */
}
.gallery-item {
    background: #fffbe6;
    border-radius: 10px;
    box-shadow: 0 2px 8px #ffe066;
    padding: 0;
    text-align: center;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}
.img-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
}

.img-modal-content {
    max-width: 90vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    margin: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 4px 24px #ff9c00;
}

.img-modal-close {
    position: absolute;
    top: 30px; right: 40px;
    color: #fff;
    font-size: 48px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
}
