#user-list .user-item { margin-top: 10px; background-color: rgba(255, 255, 255, 0.4); box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1); border-radius: 10px; -webkit-border-radius: 10px; -moz-border-radius: 10px; -ms-border-radius: 10px; -o-border-radius: 10px; font-size: 12px; user-select: none; } #user-list .user-info { display: flex; align-items: center; padding: 10px; border-radius: 10px; -webkit-border-radius: 10px; -moz-border-radius: 10px; -ms-border-radius: 10px; -o-border-radius: 10px; } #user-list .user-info .user-gender { margin-left: 6px; width: 16px; height: 16px; } #user-list .user-info:active { background-color: rgba(255, 255, 255, 0.6); } .report-list { padding-bottom: 10px; } .report-item { font-style: italic; color: #666666; font-size: 12px; padding: 8px; text-decoration: underline; cursor: pointer; padding: 8px 20px; margin-bottom: 4px; } .report-item:active { color: #a882ff; } #report-window { position: fixed; width: 90%; height: 80%; background-color: rgba(0, 0, 0, 0.4); border-radius: 10px; -webkit-border-radius: 10px; -moz-border-radius: 10px; -ms-border-radius: 10px; -o-border-radius: 10px; box-sizing: border-box; } #report-window .report-window-header { background-color: rgba(0, 0, 0, 0.4); position: fixed; width: 90%; height: 60px; display: flex; align-items: center; box-sizing: border-box; padding: 10px 10px 10px 20px; } .report-window-header .title { color: #ffffff; margin: 0; flex: 1; font-size: 18px; } .report-window-header #close-report-btn { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; } .report-window-header #close-report-btn img { height: 30px; width: 30px; } .no-report { text-align: center; padding: 14px 0; } #report-window-container { height: calc(100% - 60px); margin-top: 60px; box-sizing: border-box; overflow-y: auto; overflow-x: hidden; /* 启用垂直滚动条 */ position: relative; /* 保证内容流在容器中 */ } /* 弹窗的背景遮罩 */ .input-modal { /* 默认隐藏 */ display: none; position: fixed; z-index: 3; /* 确保弹窗在最顶层 */ left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.5); /* 背景透明 */ justify-content: center; align-items: center; } .modal-content { background-color: rgba(255, 255, 255, 0.7); /* 背景透明度 */ backdrop-filter: blur(5px); /* 背景模糊效果 */ padding: 20px; border-radius: 15px; text-align: center; width: 300px; box-shadow: 0px 0px 24px rgba(255, 255, 255, 0.65); /* 与其他元素一致的阴影效果 */ } .modal-content #phone-input { padding: 6px 10px; border-radius: 10px; border: 1px solid #dedede; background-color: #f5f5f5; outline: none; margin: 20px 0; } /* 按钮样式 */ .model-btn button { margin: 5px; padding: 10px 25px; border: none; border-radius: 10px; background: linear-gradient(to right bottom, rgb(212, 96, 241), rgba(145, 66, 197, 0.5)); /* 紫色渐变 */ color: white; font-size: 16px; cursor: pointer; transition: background 0.3s ease; } .model-btn button:active { background: linear-gradient(to right bottom, rgba(145, 66, 197, 1), rgb(212, 96, 241)); /* 悬停时加深渐变 */ } .panel-title { display: flex; align-items: center; justify-content: space-between; } .panel-title .search { cursor: pointer; display: flex; align-items: center; justify-content: center; background-color: rgba(255, 255, 255, 0.4); padding: 6px 14px; border-radius: 10px; -webkit-border-radius: 10px; -moz-border-radius: 10px; -ms-border-radius: 10px; -o-border-radius: 10px; user-select: none; } .panel-title .search:active { background-color: rgba(255, 255, 255, 0.6); } .panel-title .search img { width: 14px; height: 14px; margin-right: 6px; } #report-window-container { background-color: #ffffff; /* background: rgba(255, 255, 255, 0.55); */ /* border-radius: 10px; */ padding: 40px 60px; box-shadow: 0 0 10px rgba(145, 66, 197, 0.3); transition: all 0.3s ease; flex: 1; } #report-box h1 { position: relative; } #report-box h1:before { position: absolute; content: ""; width: 100%; height: 2px; background-color: #000; left: 0; bottom: -10px; } #markdown-content img { max-width: 100%; } #report-box .header-img { display: flex; align-items: center; justify-content: center; } #report-box .header-img .img-item { width: 200px; height: auto; } #report-box .header-img .img-item:not(:first-child) { margin-left: 40px; } #report-box table { width: 100%; text-align: left; } #report-box table th, #report-box table td { padding: 10px 0; margin: 0; } #report-box table tbody tr { position: relative; } #report-box table tbody tr:after { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 1px; background-color: #000; } #report-box pre { margin: 4px auto; padding: 24px; background-color: #f5f5f5; border: 1px solid #b3b3b3; border-radius: 4px; overflow-wrap: break-word; text-wrap: wrap; } #img-box { display: flex; align-items: center; flex-wrap: wrap; justify-content: center; } #img-box img { width: 200px; height: auto; } #img-box img:not(:first-child) { margin-left: 20px; }