/* <main></main>主体部分 */
.flex{
    display: flex;
    flex-direction: column;
    align-items: center;
}



body{
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    background-image: url(../imgs/indexBgs/header_bg.png);
	background-size: cover;
}

.suoyin{
    height: auto;
}


/* 三个索引 */
.suoyin_nav{
    width: 50%;
    margin: 0 auto;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}
#tab a{
    display: block;
    width: 200px;
    height: 56px;
    line-height: 56px;
    font-size: 22px;
    font-weight: 600;
    text-align: center;
    color: #986d43;
    cursor: pointer;
    background: url(../imgs/indexBgs/suoyin1.png) no-repeat center;
    background-size: contain;
}

#tab a:hover{
    color: #fff;
    background: url(../imgs/indexBgs/suoyin2.png) no-repeat center;
    background-size: contain;
}

#tab a.current{
    color: #fff;
    background: url(../imgs/indexBgs/suoyin2.png) no-repeat center ;
    background-size: contain;
}


/* 拼音导航 */

.ul_item .li_name {
    float: left;
    width: 240px;
    height: 48px;
    line-height: 48px;
    border: none;
    background: #f7f6f4;
    border-radius: 12px;
    text-align: center;
    margin: 16px 14px 0 0;
}
.ul_item  .li_name a:hover {
    /* box-shadow: 6px 6px 0 #e2e2e2; */
    border: 1px solid #614525;
    border-radius: 12px;
    background: #f7f6f4;
    color: #614525;
}
.ul_item .li_name a{
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
