@charset "utf-8";
/* CSS Document */

/* 全局样式 */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff6f0; /* 浅黄色背景，与主色协调 */
    overflow-x: hidden; /* 隐藏水平滚动条 */
}

a {
    text-decoration: none;
    color: #ff6101; /* 淘宝主色作为链接颜色 */
}

a:hover {
    text-decoration: underline;
}

/* 顶部导航样式 */
.mininav {
    background-color: #ff6101; /* 淘宝主色作为导航背景 */
    padding: 10px;
    text-align: center;
}

.mininav a {
    margin: 0 5px;
    color: white;
}

/* 头部 */
#header {
	display: flex;
	align-items: center;
	padding: 10px 0;
	overflow: hidden;
}

#logoco {
	display: flex;
	align-items: center;
	margin-left: 15px;
	margin-right: 15px;
	min-width: 503px; /* 确保logo区域有足够的最小宽度 */
	flex: 1;
}

.logo-icon {
	display: flex;
	align-items: center;
}

/* 替代火箭图标的黄色圆角方块 */
.logo-icon i {
	width: 24px;
	height: 30px;
	background-color: #FFD700; /* 黄色 */
	border-radius: 6px; /* 圆角 */
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 8px;
	color: #333;
	font-size: 12px;
	font-style: normal; /* 移除斜体 */
}

.logo-icon h1 {
	margin: 0;
	font-size: 30px;
	font-weight: bold;
	color: #333;
	white-space: nowrap;
}

.logo-icon span {
	position: relative;
}

/* 文字倒影效果 - 上浓下淡 */
.logo-icon span::after {
	content: attr(data-text);
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	line-height: 0.8;
	transform: scaleY(-1);
	background: linear-gradient(to top, rgba(0,0,0,0.4), rgba(0,0,0,0.1));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	opacity: 0.3;
	pointer-events: none;
}

/* 推荐网站URL区域 */
#header > div:not(#logoco) {
	display: flex;
	align-items: center;
	flex: 2;
	min-width: 0; /* 允许g区域缩小 */
}

.g468x60,.g250x60 {
	margin-left: 20px;
	flex: 1;
	min-width: 0; /* 允许g区域缩小 */
}

.g250x60 img {
	height: 60px;
	width: 250px;
	display: block;
	object-fit: contain;
}
.g468x60 img{
	height: 60px;
	width: 468px;
	display: block;
	object-fit: contain;
}

/* 手机端布局 */
@media (max-width: 768px) {
	#header {
		flex-direction: column;
		align-items: flex-start;
	}
	
	#logoco {
		margin-right: 0;
		margin-bottom: 10px;
		min-width: auto; /* 重置移动端的最小宽度 */
	}
	
	#header > div:not(#logoco) {
		flex-direction: column;
		width: 100%;
	}
	
	.g468x60, .g250x60 {
		margin-left: 0;
		margin-top: 10px;
		width: 100%;
	}
	
	.g468x60 img, .g250x60 img {
		width: 100%;
		height: auto;
		max-width: 100%;
	}
}



/* 菜单样式 */
#menu ul {
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background-color: #ff6101;
    color: white;
	font-size:18px;
}

#menu li {
    padding: 10px 15px;
}

#menu li a {
    color: white;
}

/* 二级菜单样式 */
#menu2 .menu2-list {
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background-color: #ff8c33; /* 淘宝主色浅一点的色作为二级菜单背景 */
    color: white;
    padding: 0;
    margin: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* 添加阴影效果 */
}

#menu2 .menu2-list li {
    padding: 15px 20px; /* 增加内边距，使菜单项更大 */
    transition: background-color 0.3s ease; /* 添加过渡效果 */
}

#menu2 .menu2-list li a {
    color: white;
    text-decoration: none;
    font-size: 16px; /* 增大字体大小 */
    font-weight: 500; /* 增加字体粗细 */
}

#menu2 .menu2-list li:hover {
    background-color: rgba(255, 255, 255, 0.1); /* 鼠标悬停时背景变色 */
}


/* 媒体查询，针对小屏幕设备（手机） */
@media only screen and (max-width: 768px) {
    #menu li.menu_line {
        display: none;
        padding: 0;
    }

    #menu li.menu_item:not(:last-child)::after {
        content: "|";
        margin-left: 15px;
    }

    #menu2 .menu2-list {
        flex-wrap: wrap;
    }

    #menu2 .menu2-list li {
        flex-basis: 33.33%; /* 每个菜单项占三分之一宽度，实现每行三个菜单项 */
        text-align: center;
        box-sizing: border-box;
    }

    #gzwzsoso input[type="text"] {
        width: 90%;
    }

    #pagecontent .ptable td {
        display: block;
    }
	#pagecontent .ptable .pthead{
		width:100%
	}
}

/* 搜索框样式 */
#gzwzsoso {
    padding: 20px;
    text-align: center;
}

#gzwzsoso input[type="text"] {
    width: 70%;
    max-width: 400px;
    height: 30px;
    padding: 5px;
    margin-right: 5px;
    border: 1px solid #ff6101; /* 淘宝主色边框 */
}

#gzwzsoso input[type="image"] {
    vertical-align: middle;
}

/* 位置导航样式 */
#guide {
    padding: 10px 20px;
    background-color: #ffebe0; /* 浅橙色背景 */
}

/* 主内容样式 */
#mainpage {
    padding: 20px;
}

#mainpage .gg1200 {
    text-align: center;
    margin-bottom: 20px;
    color: #ff6101; /* 淘宝主色标题颜色 */
}

#pagecontent .ptable {
    width: 100%;
    border-collapse: collapse;
}

#pagecontent .ptable td {
    padding: 10px;
    border-bottom: 1px solid #ffc299; /* 浅橙色分隔线 */
}

#pagecontent .ptable .pthead{
	width:15%
}

#pagecontent .page_prompt {
    margin-top: 20px;
    padding: 10px;
    background-color: #ffebe0; /* 浅橙色背景 */
}

.page_content_tit{
	text-align:center;
}
/*网址按钮效果*/
.btn_website{
	padding:20px; 
	font-size: 18px;
	text-align: center;
	border:1px solid #d2a000;
	box-shadow: 0 1px 2px #fedd71 inset,0 -1px 0 #a38b39 inset,0 -2px 3px #fedd71 inset;
	background: -webkit-linear-gradient(top,#fece34,#d8a605);
	background: -moz-linear-gradient(top,#fece34,#d8a605);
	background: linear-gradient(top,#fece34,#d8a605);
}

.btn_website:hover {
	color:#F00;
	border-top: 1px solid #ba8f06;
	box-shadow:-2px 0 1px #deb842 inset;
	background:-webkit-linear-gradient(right,#d5a406,#fdc40b 60%);
	background:-moz-linear-gradient(right,#d5a406,#fdc40b 60%);
	background:linear-gradient(right,#d5a406,#fdc40b 60%); 
	cursor: pointer;
}

/* 快速导航样式 */
.kdaohang {
    padding: 20px;
    text-align: center;
}

.kdaohang ul {
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.kdaohang li {
    margin: 5px 10px;
}

/* 底部广告和页脚样式 */
#footonediv,
#foottwodiv {
    text-align: center;
    padding: 20px;
}

#foottwodiv {
    background-color: #ff6101; /* 淘宝主色页脚背景 */
    color: white;
}

#foottwodiv .footer_txt a {
    color: white;
}

.ggdiv960x90 img {
    max-width: 100%;
    height: auto;
}