.appBar {
    padding: 0 60px;
    height: 60px;
    width: 100%;
    background-color: #000;
    transition: all ease 0.3s;
    display: flex;
    position: fixed;
    z-index: 2;
}

.barContainer {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start
}

.barContainer img {
    height: auto;
    width: 117px;
    margin-right: 48px;
    display: block;
    pointer-events: none;
}

.barContainer .text_container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: #fdfdfd;
    font-size: 14px;
    height: 100%;
}

.barContainer .text_container .text_item{
    height: 100%;
}

.barContainer .text_container .menu_item {
    display: flex;
    align-items: center;
    height: 100%;
    cursor: pointer;
    transition: all ease 0.3s;
    padding: 0 20px;
}

 .text_container .menu_item i{
    transition: all ease 0.3s;
    color: #fdfdfd;
}

 .text_container .text_item:hover .menu_item{
    color: #2DD4E0 !important;
    cursor: default;
}

 .text_container .text_item:hover i{
    color: #2DD4E0 !important;
    transform:rotate(-180deg);
}

.list_container {
    position: fixed;
    top: 60px;
    width: 100%;
    background-color: #fff;
    z-index: 2;
    display: none;
    left: 0;
    padding: 0 18%;
    box-shadow:  0  2px 2px 0 rgba(0, 0, 0, 0.1);
}

.barContainer .text_container .text_item:hover .list_container{
    display: block;
    /* transform: translateY(630px); */
}

.barContainer .text_container a{
    color: #fdfdfd;
    margin-right: 20px;
}

.barContainer .text_container a:hover {
    color: #2DD4E0 !important;
}

.list_detail {
   transition-delay: 80ms; 
}


.list_detail .detail_form {
    border-bottom: 1px solid #e3e5f1;
    padding: 20px 0;
    word-wrap: break-word;
}

.list_detail .detail_form h3{
    margin-bottom: 8px;
}

.list_detail  :last-child{
    border-bottom: none;
}

.list_detail .detail_form .detail_title {
    font-size: 14px;
    color: #2dd4e0;
   
}

.list_detail .detail_form .detail_content {
    display: flex;
    justify-content: flex-start;
    flex-wrap:wrap ;
}

.list_detail .detail_form .detail_content .detail_item{
    width: 131px;
    margin:10px 20px 0 0;
    color: #393f56;
    font-size: 14px;
    cursor: pointer;
    transition: all ease 0.3s;
}

.list_detail .detail_form .detail_content .detail_item:hover {
    color: #2dd4e0;
}