@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: #e5f6e5; /* 浅绿色背景，与主色协调 */
    overflow-x: hidden; /* 隐藏水平滚动条 */
}

a {
    text-decoration: none;
    color: #07c160; /* 微信主色作为链接颜色 */
}

a:hover {
    text-decoration: underline;
}

/* 顶部导航样式 */
.mininav {
    background-color: #07c160; /* 微信主色作为导航背景 */
    padding: 10px;
    text-align: center;
}

.mininav a {
    margin: 0 5px;
    color: white;
}

/* 头部样式 */
#header .head_con {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-around;
    align-items: center;
}

#header .logo,
#header .gg468x60,
#header .gg250x60 {
    margin: 0 5px;
}

#header {
    padding: 20px;
    text-align: center;
}

#header .logo img {
    max-width: 100%;
    height: auto;
}

#header .gg468x60 img,
#header .gg250x60 img {
    max-width: 100%;
    height: auto;
    margin: 10px 0;
}

/* 菜单样式 */
#menu ul {
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background-color: #07c160;
    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: #34d97e; /* 微信主色浅一点的色作为二级菜单背景 */
    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 #07c160; /* 微信主色边框 */
}

#gzwzsoso input[type="image"] {
    vertical-align: middle;
}

/* 位置导航样式 */
#guide {
    padding: 10px 20px;
    background-color: #d3f0e0; /* 浅绿背景 */
}

/* 主内容样式 */
#mainpage {
    padding: 20px;
}

#mainpage .gg1200 {
    text-align: center;
    margin-bottom: 20px;
    color: #07c160; /* 微信主色标题颜色 */
}

#pagecontent .ptable {
    width: 100%;
    border-collapse: collapse;
}

#pagecontent .ptable td {
    padding: 10px;
    border-bottom: 1px solid #a3e9c3; /* 浅绿分隔线 */
}

#pagecontent .ptable .pthead {
    width: 15%
}

#pagecontent .page_prompt {
    margin-top: 20px;
    padding: 10px;
    background-color: #d3f0e0; /* 浅绿背景 */
}

.page_content_tit {
    text-align: center;
}

/*网址按钮效果*/
.btn_website {
    padding: 20px;
    font-size: 18px;
    text-align: center;
    border: 1px solid #07a350;
    box-shadow: 0 1px 2px #50e090 inset, 0 -1px 0 #068a43 inset, 0 -2px 3px #50e090 inset;
    background: -webkit-linear-gradient(top, #50e090, #07a350);
    background: -moz-linear-gradient(top, #50e090, #07a350);
    background: linear-gradient(top, #50e090, #07a350);
}

.btn_website:hover {
    color: #F00;
    border-top: 1px solid #068a43;
    box-shadow: -2px 0 1px #34d97e inset;
    background: -webkit-linear-gradient(right, #07a350, #50e090 60%);
    background: -moz-linear-gradient(right, #07a350, #50e090 60%);
    background: linear-gradient(right, #07a350, #50e090 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: #07c160; /* 微信主色页脚背景 */
    color: white;
}

#foottwodiv .footer_txt a {
    color: white;
}

.ggdiv960x90 img {
    max-width: 100%;
    height: auto;
}