html,
body {
    width: 100%;
    position: relative;
    overflow-x: hidden !important;
    background: #f1f5f9;
}

.hd-nav {
    position: sticky;
    top: 0;
    z-index: 1071;
    width: 100%;
    height: 60px;
    background-color: #7952b3;
    padding-right: 1rem;
    padding-left: 1rem;
    display: flex;
    flex-direction: row;
    align-items: center;
}


.main {
    padding: 16px 16px;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

#head {
   position: relative;
   width: 330px;
   margin: 0 auto;
}
#head img{
    position: absolute;
    top:0px;
    right: 0px;
}

#record {
    margin-top: 24px;
}

#record h2 {
    height: 32px;
    border-bottom: 1px #ddd solid;
}

#record .record-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 16px;
}


#record .record-list .record-item {
    display: flex;
    flex-direction: row;
    color: #64748b;
    font-size: 14px;
}

#record .record-list .record-item .title {
    width: 50%;
    font-size: 14px;
    padding: 0 0px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis; 
}

#record .record-list .record-item .lang {
    font-size: 14px;
    padding: 0 4px;
    width: 90px;
}

#record .record-list .record-item .email {
    font-size: 14px;
    padding: 0 4px;
    width: 138px;
}

#record .record-list .record-item .time {
    flex: 1;
    width: 140px;
    font-size: 14px;
    padding: 0 4px;
    text-align: right;
}

#hot {
    margin-top: 24px;
}

#hot h2 {
    height: 32px;
    border-bottom: 1px #ddd solid;
}


#hot .hot-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 16px;
}


#hot .hot-list .hot-item {
    padding: 16px;
    box-sizing: border-box;
    width: calc((100% - 32px)/3);
    background-color: hsla(0, 0%, 100%, .9);
    border: rgba(226, 232, 240, .8) 1px solid;
    border-radius: 1rem;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000);
}

#hot .hot-list .hot-item .title {
    color: #64748b;
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 10px;
}

#hot .hot-list .hot-item .meta {
    color: #64748b;
    display: flex;
    flex-direction: row;
    gap: 4px;
    align-items: center;
    line-height: 20px;
    font-size: 14px;
    margin-bottom: 8px;
}

@media screen and (max-width: 670px) {
    #hot .hot-list .hot-item {
        width: 100%;
    }

}