

header {
	width: 100%;
    background: #F859C2;
}

.header_tops {
	width: 100%;
	height: 65px;

}

.header_top {
	width: 100%;
	height: 65px;
	display: flex;
    align-items: center;
}

.logo {
	height: 45px;
	display: block;
	float: left;
	margin-top: 5px;
}

.logo img {
	height: 100%;
	display: block;
}

.header_top1 {
    float: right;
    width: 250px;
    height: 30px;
    border: 1px solid #ffffff;
    display: flex;
    overflow: hidden;
    background: #f859c2;
    border-radius: 20px;
}

.header_top1 input {
	border: none;
	outline: none;
	height: 100%;
	background-color: transparent;
	font-weight: 500;
	font-size: 16px;
	color: #333;
	margin-left: 5px;
}
 /*修改提示文字的颜色*/
       .header_top1 input::-webkit-input-placeholder { /* WebKit browsers */
            color: #C8C9CC;
        }

        .header_top1 input:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
            color: #C8C9CC;
        }

        .header_top1 input::-moz-placeholder { /* Mozilla Firefox 19+ */
       color: #C8C9CC;
        }

        .header_top1 input:-ms-input-placeholder { /* Internet Explorer 10+ */
       color: #C8C9CC;
        }
.header_top1 button {
	border: none;
	outline: none;
	width: 50px;
	height: 100%;
	background-color: transparent;
	background-image: url(../img/serach_1.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 20px auto;
}

.header_top1:hover {
	border-color: #DCDDD9;
}

.header_downs {
    width: 60%;
    border-radius: 0px 0px 0px 0px;
    height: 65px;
    float: left;
    flex: 1;
    margin: 0 15px;
}

.header_down {
	width: 100%;
}
.header_downa{
	width: 100%;

	display: flex;
}
.header_downa1{
    width: 14.28%;
    height: 65px;
}


.header_downa2_1{
	display: block;
}
.header_downa2_2{
	display: none;
}

.header_downb{
	border-top: 1px solid #FFFFFF;
	width: 100%;
	display: flex;
}
.header_downb1{
	width: 11.11%;
	height: 40px;
	text-align: center;
	border-radius: 8px;
	font-weight: 500;
	font-size: 16px;
	color: #FFFFFF;
	line-height: 40px;
	padding: 0 5px;
	display: block;
	white-space: nowrap; /* 防止文本换行 */
	  overflow: hidden; /* 隐藏溢出的内容 */
	  text-overflow: ellipsis; /* 显示省略符号来代表被修剪的文本 */
}
.header_downb1.on{
	background: rgba(255,255,255,0.4);
}

.header_downs .container{
    width: 100%;
}

/* 其他原有样式不变，只修改以下部分 */
/* 其他原有样式不变，仅修改以下部分 */
.header_downa2 {
    font-weight: 500;
    font-size: 16px;
    color: #666666;
    margin: 10px auto;
    height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: relative;  /* 可选：如果伪元素需要绝对定位时启用 */
}

.header_downa2::before {
    content: '';
    display: inline-block;
    width: 1px;
    height: 3px;
    border-radius: 50%;
    background: #FFFFFF;
    box-shadow: 0 5px 0 #FFFFFF, 
                0 10px 0 #FFFFFF, 
                0 15px 0 #FFFFFF;
    margin-right: 10px;      /* 与主内容的间距 */
    vertical-align: middle;  /* 垂直居中（可与文字对齐） */
    margin-top: 15px;
}



/* 关键：让p单独一行，同时适配分割图定位 */
.header_downa2 p {
    display: inline-block;   /* 或 block，保证宽高生效 */
    width: 80px;             /* 根据实际图片宽度调整 */
    height: 40px;            /* 根据实际图片高度调整 */
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain; /* 或 cover，使图片完整显示 */
    text-indent: -9999px;    /* 隐藏文字 */
    overflow: hidden;
    white-space: nowrap;
}

/* 2. 默认图片（未选中） */
.header_downa1:nth-child(1) .header_downa2 { background-image: url('/img/1.png'); }
.header_downa1:nth-child(2) .header_downa2 { background-image: url('/img/2.png'); }
.header_downa1:nth-child(3) .header_downa2 { background-image: url('/img/3.png'); }
.header_downa1:nth-child(4) .header_downa2 { background-image: url('/img/4.png'); }
.header_downa1:nth-child(5) .header_downa2 { background-image: url('/img/5.png'); }
.header_downa1:nth-child(6) .header_downa2 { background-image: url('/img/6.png'); }
.header_downa1:nth-child(7) .header_downa2 { background-image: url('/img/7.png'); }

/* 3. 选中状态图片（.on 类所在的 .header_downa1） */
.header_downa1.on:nth-child(1) .header_downa2 { background-image: url('/img/1-1.png'); }
.header_downa1.on:nth-child(2) .header_downa2 { background-image: url('/img/2-1.png'); }
.header_downa1.on:nth-child(3) .header_downa2 { background-image: url('/img/3-1.png'); }
.header_downa1.on:nth-child(4) .header_downa2 { background-image: url('/img/4-1.png'); }
.header_downa1.on:nth-child(5) .header_downa2 { background-image: url('/img/5-1.png'); }
.header_downa1.on:nth-child(6) .header_downa2 { background-image: url('/img/6-1.png'); }
.header_downa1.on:nth-child(7) .header_downa2 { background-image: url('/img/7-1.png'); }

/* 排除最后一个导航项的分割图 */
.header_downa .header_downa1:last-child .header_downa2 p::after {
    display: none;
}

