* {
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    box-sizing: border-box;
    cursor: default
}

.body {
    min-width: 1440px;
}

.wrapper {
    width: 1230px;
    margin: 0 auto;
}

.header {
    width: 100%;
    height: 220px;
    background: url(../picture/bg1.png) no-repeat top center;
    background-size: cover;
}

.header .header-wrapper {
    height: 220px;
    position: relative;
}

.header-wrapper .logo {
    width: auto;
    height: auto;
    position: absolute;
    top: 69px;
    left: 20px;
}

.header-wrapper .logo img {
    width: 500px;
    height: 65px;
}

.header-wrapper .search {
    width: 250px;
    height: 35px;
    position: absolute;
    top: 95px;
    right: 25px;
}

.search .search-box {
    position: relative;
}

.header-wrapper .search input {
    width: 250px;
    height: 35px;
    border: none;
    border-radius: 30px;
    opacity: 80%;
    padding: 2px;
    background-color: #ffffff;
    cursor: text;
}

.header-wrapper .search input::placeholder {
    position: absolute;
    top: 3px;
    left: 10px;
    font-size: 18px;
    font-weight: Regular;
    font-family: SimHei-Regular;
    line-height: 18px;
}

.header-wrapper .search .search-btn {
    position: absolute;
    top: 9px;
    right: 17px;
    width: 18px;
    height: 19px;
    border: none;
    background: url(../picture/button.png) no-repeat;
    cursor: pointer;
}

.header-wrapper .search input:focus,
textarea:focus {
    outline: none;
    /* 移除聚焦时的边框 */
}

.nav {
    width: 100%;
    height: 70px;
}

.nav-wrapper {
    width: 1230px;
    height: 70px;
    position: relative;
    text-align: center;
}

.item-list {
    position: absolute;
    top: 15px;
    width: 1230px;
    height: 40px;
    display: flex;
    justify-content: space-between;
}

.item-list .item {
    width: 155px;
    height: 40px;
    position: relative;
}

.item-list .item a {
    display: block;
    color: black;
    font-size: 25px;
    font-family: SimHei-Regular;
    font-weight: 500;
    line-height: 40px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: all 0.5s ease;
}


.item-list .item a:hover {
    color: #FFFFFF;
}

/* 八边形背景效果 */
.item-list .item>a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 130px;
    /* 减小宽度使形状更接近正方形 */
    height: 50px;
    /* 增加高度使形状更接近正方形 */
    background-color: transparent;
    transform: translate(-50%, -50%) scale(0.8);
    clip-path: polygon(25% 0%, 75% 0%, 100% 25%, 100% 75%, 75% 100%, 25% 100%, 0% 75%, 0% 25%);
    border-radius: 8px;
    /* 增加圆角使其更圆润 */
    transition: all 0.5s ease;
    z-index: -1;
    opacity: 0;
}

/* 鼠标悬停时显示六边形背景 */
.item-list .item>a:hover::before {
    background-color: #007346;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.item-list .item .menu {
    position: absolute;
    top: 55px;
    left: -2px;
    width: 160px;
    background-color: #000000;
    opacity: 0.59;
    border-radius: 4px;
    z-index: 1000;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.5s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
}

.item-list .item:hover .menu {
    opacity: 0.59;
    visibility: visible;
    transform: translateY(0);
}

.item-list .item .menu a {
    width: 160px;
    height: 45px;
    line-height: 45px;
    color: #FFFFFF;
    font-size: 22px;
    font-family: SimHei-Regular;
    font-weight: 500;
    border: 2px;
    text-align: center;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.item-list .item .menu a:hover {
    background-color: #029b60;
}

.item-list .item .menu a:last-child {
    border-bottom: none;
}

.content {
    width: 100%;
    height: 1248px;
}

.content-wrapper {
    width: 1200px;
    height: auto;
    position: relative;
    display: flex;
    margin-top: 61px;
    min-height: 800px
}


.content-wrapper .content-list {
    width: 200px;
    display: flex;
    flex-direction: column;
    margin-right: 38px;
}

.content-list .content-1 {
    width: 200px;
    height: 70px;
    border-top: 5px solid #DEC28E;
    border-left: 5px solid #DEC28E;
    text-align: center;
}

.content-list .content-1 a {
    font-size: 25px;
    font-family: SimHei-Regular;
    line-height: 70px;
    font-weight: 500;
    color: #000000;
    cursor: pointer;
}

.content-list .content-2 {
    display: flex;
    flex-direction: column;
    border-left: 5px solid #DEC28E;
    text-align: center;
}

.content-list .content-2 .nav-item {
    width: 200px;
    height: 50px;
    font-size: 23px;
    font-family: SimHei-Regular;
    line-height: 50px;
    color: #707070;
    cursor: pointer;

}

.content-list .content-2 .nav-item:hover {
    color: #FFFFFF;
    background-color: #007346;
}

.all-content {
    width: 962px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.content-nav {
    width: 962px;
    height: 44px;
    border-bottom: 2px dashed #007346;
}

.content-nav-wrapper {
    position: relative;
    width: 962px;
    height: 44px;
}

.content-nav-wrapper .title {
    width: auto;
    height: 35px;
    font-size: 25px;
    font-family: SimHei-Regular;
    color: #007346;
    line-height: 35px;
}

.content-nav-wrapper .icon img {
    position: absolute;
    top: 12px;
    right: 445px;
}

.content-nav-wrapper .place {
    position: absolute;
    top: 10px;
    left: 520px;
    font-size: 20px;
    font-family: SimHei-Regular;
    color: #707070;
    text-align: center;
}

.content-nav-wrapper .place a {
    font-size: 20px;
    font-family: SimHei-Regular;
    color: #707070;
    text-align: center;
    cursor: pointer;
}

.content-nav-wrapper .place a:not(:last-child)::after {
    content: ">";
    color: #007346;
    font-weight: bold;
}

.text-list {
    width: 962px;
    display: flex;
    flex-direction: column;
    margin-top: 5px;
}

.text-list .text {
    width: 962px;
    height: 85px;
    border-bottom: 2px dashed #DEC28E;
}

.text-list .text .content {
    width: 962px;
    height: 85px;
    position: relative;
}

.text-list .text .content img {
    position: absolute;
    top: 47px;
}

.text-list .text .content .data {
    position: absolute;
    top: 13px;
    left: 24px;
    font-size: 20px;
    font-family: SimHei-Regular;
    color: #007346;
}

.text-list .text .content .word {
    width: 925px;
    height: 31px;
    position: absolute;
    top: 40px;
    left: 25px;
    font-size: 20px;
    font-family: SimHei-Regular;
    line-height: 31px;
    color: #000000;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
}

.text-list .text .content .word:hover {
    color: #007346;
}

.pages {
    width: 610px;
    height: 40px;
    font-size: 20px;
    font-family: SimHei-Regular;
    line-height: 35px;
    color: #707070;
    text-align: center;
    cursor: pointer;
    margin-left: 140px;
}

.footer {
    width: 100%;
    height: 350px;
    background: url(../picture/bg5.png) no-repeat top center;
    background-size: cover;
}

.footer .footer-wrapper {
    width: 1265px;
    height: 100%;
    align-items: center;
}

.footer .footer-wrapper .idea {
    width: 1200px;
    height: auto;
    display: flex;
    flex-direction: column;
}

.footer .footer-wrapper .idea .text {
    width: auto;
    height: auto;
    font-family: SimHei-Regular;
    line-height: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.footer .footer-wrapper .idea .text p {
    width: 850px;
    font-size: 17px;
    color: #FFFFFF;
}

.footer .footer-wrapper .idea .text h3 {
    font-size: 25px;
    color: #FFFFFF;
    text-align: center;
}

.kuang {
    width: 1200px;
    height: 350px;
}

.footer .footer-wrapper .idea2 {
    width: auto;
    height: 184px;
    position: relative;
    margin-top: 40px;
}

.footer .footer-wrapper .idea2 .ewm {
    position: absolute;
    left: 380px;
    text-align: center;
}

.footer .footer-wrapper .idea2 .ewm img {
    width: 150px;
    height: 150px;
}

.footer .footer-wrapper .idea2 .word {
    width: auto;
    height: auto;
    font-size: 15px;
    font-family: SimHei-Regular;
    line-height: 31px;
    color: #FFFFFF;
    position: absolute;
    top: 155px;
    left: 388px;
}

.footer .footer-wrapper .copyright {
    position: absolute;
    top: 18px;
    left: 620px;
    width: 560px;
    height: auto;
    display: flex;
    flex-direction: column;

}

.footer .footer-wrapper .copyright p {
    width: auto;
    height: auto;
    font-size: 16px;
    font-family: SimHei-Regular;
    line-height: 31px;
    color: #FFFFFF;
}