*{
    margin: 0;
    padding: 0;
}
html{
    width: 100%;
    height: 100%;
}
li {
    list-style: none;
}
a {
    text-decoration: none
}

/* 搜索框样式begin */
.inputTab {
	min-width: 400px;
	padding-left: 5px;
}

.inputTab > ul > li {  
    float: left;  
    margin-right: 8px;  
    background-color: rgba(168, 168, 168, 0.6);
    color: black;  
    cursor: pointer;  
    width: 56px;  
	border-radius: 4px 4px 0px 0px;
    height: 32px;  
    line-height: 32px;  
    text-align: center;  
	list-style: none;
}

.inputBox {
    width: 40%;
    height: 44px;
	min-width: 400px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.6);
    padding: 0 20px;
    border-radius: 20px;
}

.inputBox > input{
    background: none;
    border: none;
    outline: none;
    padding: 0 10px 0 0;
    flex: 1;
    height: 44px;
    color: #242323;
    font-size: 16px;
}

.inputBox > input::placeholder{
    color: #242323;
    font-size: 16px;
}

.inputBox > img{
    width: 1.5rem;
    height: 1.5rem;
}

.inputBox > img:hover{
    cursor: pointer;
}
/* 搜索框样式end */

/*-----------------------------导航样式 开始---------------------------------------------------*/
.nav-content {
    overflow: hidden;
}
.jj-list {
    /* width: 33.33%; */
	min-width: 420px;
    float: left;
    margin-bottom: 30px;
	margin-left: 40px;
	margin-right: 40px;
}
.jj-list:nth-of-type(3n) {
    padding-right: 0;
}
.jj-list-tit {
    font-size: 16px;
    line-height: 25px;
    color: rgba(49, 70, 89, 1);
    font-weight: bold;
}
.jj-list-con {
    overflow: hidden;
    margin: 0 auto;

}
.jj-list-con li {
    box-sizing: border-box; /*以IE盒子模型的width为标准*/
    padding: 1px 1px; /*设置div的内边距*/
    width: 33.33%; /*div等分成3部分*/
    float: left;
    transform-origin: center top;
}

.jj-list-con li:hover {
    animation: swing 1.5s linear 0s 1 forwards
}
@keyframes swing {
    0%, 100% {
        transform: perspective(200px) rotateX(0);
    }
    20% {
        transform: perspective(200px) rotateX(-45deg);
    }
    40% {
        transform: perspective(200px) rotateX(45deg);
    }
   50% {
        transform: perspective(200px) rotateX(-25deg);
    }
    60% {
        transform: perspective(200px) rotateX(25deg);
    }
   70% {
        transform: perspective(200px) rotateX(-5deg);
    }
    80% {
        transform: perspective(200px) rotateX(5deg);
    }
    90% {
        transform: perspective(200px) rotateX(-3deg);
    }
    95% {
        transform: perspective(200px) rotateX(3deg);
    }
}

.jj-list-link {
    display: block;
    background: rgba(255, 255, 255, 0.6);
    color:rgba(49, 70, 89, 1);
    font-size: 13px;
    text-align: center;
    line-height: 44px;
    transition: all 0.2s;
    border-radius: 2px;
}
.jj-list-link:hover {
    background: #1890FF 100%;
/*    font-size: 18px;
    font-weight: bold; */
    color: #fff;
}

/*-----------------------------导航样式 结束---------------------------------------------------*/