/* 
.> 弹出窗口>>>添加网址板块的样式
*/

/* 
.custom-nav .edit-topsite .topsiteForm formInput h3 fieldsPreview .formWrapper
*/
.custom-nav .edit-topsite{
    width: 640px;
    height: 320px;
    background-color:#faf3f3;
    z-index: -300;

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity .5s ease-out;
    
    
}

.custom-nav .edit-topsite .topsiteForm{
    width: 498px;
    height: 258px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;    
    bottom: 0;
    margin: auto;
    display: grid;
    background-color: #39512870;
    grid-template-rows:200px 58px;
    grid-template-columns: 80%;
    justify-content: center;
    align-items: center;
 }

 .custom-nav .edit-topsite .topsiteForm .formInput{
    width: 100%;
    display: grid;
    row-gap: 24px;
    justify-content: center;
   }


   



.custom-nav .edit-topsite .topsiteForm .formInput .fieldsPreview .formWrapper input {
    /* width: 80%; */
    /* padding: 16px; */
    font-size: 16px;
    padding: 4px 6px;
    text-indent: 1em;
    border-radius: 6px;
    outline: none;
    border: none;
}


    /* 添加取消按钮外部盒*/

    .custom-nav .edit-topsite .topsiteForm .actions{
    /* grid-row: 2/3; */
    background-color: gray;
    /* height: 58px; */
    margin-bottom: 30px;

    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.custom-nav .edit-topsite .topsiteForm .actions button{
    
    padding:6px 10px;
    margin-right: 30px;
    border-radius: 4px;
    outline: none;
    border: none;

    
}

.custom-nav .edit-topsite .topsiteForm .actions button.che:hover,
.custom-nav .edit-topsite .topsiteForm .actions button.ad:hover{
    background-color: rgb(105, 222, 205);
    cursor: pointer;
}