/* CSS Document */
body{font-family:"微软雅黑",Arial,Verdana;font-size:12px;color: #333}
body,p,span,ol,li,ul,dl,dt,dd,form{margin:0;padding:0;display: block}
ul,ol{list-style:none;}
img{border:0;float:left;}
a:link{text-decoration:none;color:#333;}
a:visited{text-decoration:none;color:#333;}
a:hover{color:#333;text-decoration:none;}
.clear{clear:both;}
.fl{float: left}
.fr{float: right}
.ov{overflow: hidden}
.warp {
    width: 100%;
    margin: 0 auto;
}
.main {
    width: 1442px;
    margin: 0 auto;clear: both;
}
/* 导航栏 */
.header {
    justify-content: center;
    align-items: center;
    margin-top: 7px;
    display: flex;
}

/* logo */
.logo {
    width: 214px;
}

/* 搜索框 */
.search {
    display: flex;
    width: 360px;
    height: 48px;
    background: #FFFFFF;
    border-radius: 30px 30px 30px 30px;
    border: 1px solid #E8E8E8;
    margin-left: 220px;
    align-items: center;
}

.search input {
    flex: 1;
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    line-height: 48px;
    border: none !important;
    text-indent: 20px;
    font-size: 14px;
}

/* 搜索图标 */
.search .serach_img {
    width: 2rem;
    height: 2rem;
    margin-right: 5px;
    background: url("/style/img/Frame.png") no-repeat center/contain;
    cursor: pointer;
}

.search input::placeholder {
    color: #9797A4;
}

/* 导航 */
.nav {
    width: 560px;
    margin-left: 126px;
}

.nav ul {
    display: flex;
}

.nav li {
    position: relative;
    /* 为了让伪元素相对 li 定位 */
    margin-right: 56px;
}

.nav li:nth-child(4) {
    margin-right: 0;
}

.nav a {
    display: block;
    padding: 6px 0;
    font-size: 28px;
    line-height: 80px;
    color: #333;
    text-decoration: none;
    position: relative;
    /* 关键：让伪元素相对 a 定位 */
    border-bottom: 3px solid #fff;
}

.nav li .active {
    color: #ACC864;
    border-bottom: 2px solid #ACC864;
    font-weight: bold;
}

/* 公共横线：active 和 hover 共用 */
.nav li a:hover {
    border-bottom: 2px solid #ACC864;
    color: #ACC864;
    font-weight: bold;
}
.title01 {
    display: flex;
    align-items: center;
}

.title01 h3 {
    font-size: 40px;
    color: #1A1A25;
}

.title01 span {
    margin-top: 5px;
    display: inline-block;
    margin-left: 15px;
}
/* 底部 */
.footer {
    padding: 1.5% 0;
    background: #1A1A25;
    display: flex !important;
    justify-content: center !important;
}

.footer .inner {
    display: inline-flex !important;
    align-items: center;
    gap: 15px;
}

.footer p {
    color: #fff;
}
/* 媒体查询适配不同屏幕尺寸 */
@media screen and (max-width: 1000px) {
    body {
        width: 1442px;
    }
    .main {
        width: 1400px;
        margin: 0 auto;overflow: hidden;clear: both;
    }
    .nav {
        width: 450px;
        margin-left: 50px;
    }
}
