/* 定义旋转动画 */
@keyframes rotate {
	from {
		transform: rotate(360deg);
	}

	to {
		transform: rotate(0deg);
	}
}

* {
	margin: 0;
	padding: 0;
	-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
	-webkit-overflow-scrolling: touch;
	overflow-scrolling: touch;
}

ul {
	list-style: none;
}

a {
	text-decoration: none;
}

@media (min-width: 768px) {
    .mobile_header{
        display: none;
    }
	.header {
		position: fixed;
		top: 1vw;
		left: 13.545vw;
		z-index: 99;
		width: 72.91vw;
		height: 4.16vw;
		background: #FFFFFF;
		box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.2);
		border-radius: 10px 10px 10px 10px;
		display: flex;
		align-items: center;
		justify-content: flex-end;
	}
	.find_nav_logo img {
		width: 7.76vw;
		height: 3.23vw;
		position: absolute;
		left: 2.08vw;
		top: 0.465vw;

	}

	.find_nav_r_logo {
		position: relative;
		width: 3.2vw;
		height: 3.2vw;
		display: flex;
		align-items: center;
		justify-content: center;
		margin-right: 1.56vw;
	}

	.AI {
		position: absolute;
		left: 0;
		top: 0;
		width: 3.2vw;
		height: 3.2vw;
		animation: rotate .8s linear infinite;
		/* 动画名称 持续时间 动画速度曲线 重复次数 */
	}

	.AI_in {
		width: 1.777vw;
		height: 1.3vw;
	}

	.header .tab_box {
		width: 34.896vw;
		height: 2.396vw;
		display: flex;
		align-items: center;
		justify-content: space-between;
		position: relative;
		padding: 0 2.6vw;
/* 		border-bottom: 1px solid #D9D9D9; */
		cursor: pointer;
	}
	
	.header .tab_box p {
		font-family: Microsoft YaHei, Microsoft YaHei;
		font-weight: 600;
		font-size: 0.94vw;
		color: #3D3D3D;
		margin-bottom: 0;
	
	}
	.header .tab_box a{
		font-family: Microsoft YaHei, Microsoft YaHei;
		font-weight: 600;
		font-size: 0.94vw;
		color: #3D3D3D;
	}
	
	.header .tab_box .active {
		color: #E80707;
		/* border-bottom: 2px solid #E80707; */
	}
	.header .tab_box .active a{
		color: #E80707;
	}
	
	.header .tab_box .line {
		width: 1.6vw;
		height: 2px;
		background-color: #E80707;
		position: absolute;
		bottom: 0;
		left: 2.7vw;
		transition: all 0.2s;
	
	}
}
@media (max-width: 768px) {
    .header{
        display: none;
    }
    .mobile_header {
        position: fixed;
		top: 3vw;
		left: 3vw;
		z-index: 99;
		width: 94vw;
		height: 10vw;
		background: #FFFFFF;
		box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.2);
		border-radius: 10px 10px 10px 10px;
		display: flex;
		align-items: center;
		justify-content: flex-end;
    }
    .mobile_header_top{
        display: flex;
        align-content: center;
    }
    .menu{
       width: 8.2vw;
		height: 8.2vw; 
    }
    .menu img {
        width: 8.2vw;
		height: 8.2vw;
    }
    .find_nav_logo img {
		width: 23.8vw;
		height: 8.26vw;
		position: absolute;
		left: 2.08vw;
		top: 0.465vw;

	}

	.find_nav_r_logo {
		position: relative;
		width: 8.2vw;
		height: 8.2vw;
		display: flex;
		align-items: center;
		justify-content: center;
		margin-right: 1.56vw;
	}

	.AI {
		position: absolute;
		left: 0;
		top: 0;
		width: 8.2vw;
		height: 8.2vw;
		animation: rotate .8s linear infinite;
		/* 动画名称 持续时间 动画速度曲线 重复次数 */
	}

	.AI_in {
		width: 4.5vw;
		height: 3.46vw;
	}
	.mobile_tab_box{
	    position: absolute;
	    width: 94vw;
	    background: #FFFFFF;
	    top: 9vw;
	    display: flex;
	    flex-direction: column;
	    border-radius: 0 0 10px 10px;
	    overflow: hidden;
	    height: 56vw;
	    transition: all 0.4s;
	}
	.mobile_header .close {
	    height: 0!important;
	}
	.mobile_tab_box p {
	    width: 100%;
	    height: 8vw;
	    line-height: 8vw;
	    display: flex;
	    align-content: center;
	    justify-content: center;
	    color: #666666;
	    border-top: 1px solid #EDEDED;
	    margin-bottom: 0;
	}
	.mobile_tab_box a {
	    color: #666666;
	}
}