2023-12-07 15:11:20 +08:00
|
|
|
|
.register * {
|
|
|
|
|
box-sizing: content-box;
|
|
|
|
|
}
|
|
|
|
|
|
2023-12-06 15:23:13 +08:00
|
|
|
|
.index-footer {
|
|
|
|
|
margin-top: 0 !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
header.page-header .box .tab-list .item.pitch {
|
2024-07-10 10:45:22 +08:00
|
|
|
|
color: #fddf6d !important;
|
2023-12-06 15:23:13 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
header.page-header .box .tab-list .item.pitch::after {
|
|
|
|
|
background-color: rgba(253, 223, 109, 1) !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
body {
|
|
|
|
|
&::-webkit-scrollbar {
|
|
|
|
|
width: 0 !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
scrollbar-width: none;
|
|
|
|
|
-ms-overflow-style: none;
|
|
|
|
|
}
|
|
|
|
|
|
2024-07-26 18:49:40 +08:00
|
|
|
|
@font-face {
|
|
|
|
|
font-family: "emojifont";
|
|
|
|
|
src: url("https://oss.x-php.com/static/riposte/emojifont-sbix.ttf?t=questions");
|
|
|
|
|
}
|
|
|
|
|
|
2023-12-13 14:06:08 +08:00
|
|
|
|
#answer-app * {
|
2023-12-06 15:23:13 +08:00
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
|
|
|
|
box-sizing: border-box;
|
2024-07-10 10:45:22 +08:00
|
|
|
|
font-family: "PingFangSC-Regular", "PingFang SC", sans-serif;
|
2023-12-06 15:23:13 +08:00
|
|
|
|
// font-style: normal;
|
2024-02-21 17:09:57 +08:00
|
|
|
|
word-break: break-all;
|
2023-12-06 15:23:13 +08:00
|
|
|
|
}
|
|
|
|
|
|
2023-12-07 15:11:20 +08:00
|
|
|
|
a {
|
|
|
|
|
text-decoration: none !important;
|
|
|
|
|
}
|
|
|
|
|
|
2023-12-06 15:23:13 +08:00
|
|
|
|
/* Webkit浏览器(Chrome、Safari等) */
|
|
|
|
|
*::-webkit-scrollbar {
|
|
|
|
|
width: 8px;
|
|
|
|
|
background-color: transparent;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
*::-webkit-scrollbar-thumb {
|
|
|
|
|
background-color: #d7d7d7;
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
*::-webkit-scrollbar-thumb:hover {
|
|
|
|
|
background-color: #666;
|
|
|
|
|
}
|
|
|
|
|
|
2024-07-30 19:00:24 +08:00
|
|
|
|
*::-webkit-scrollbar-button {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
2023-12-06 15:23:13 +08:00
|
|
|
|
/* Firefox浏览器 */
|
|
|
|
|
/* 注意:Firefox浏览器不支持修改滚动条的宽度 */
|
|
|
|
|
/* 若要修改滚动条的宽度,可以使用一些特殊的插件或者自定义滚动条的替代方案 */
|
|
|
|
|
/* 以下代码只是修改滚动条的颜色和背景色 */
|
|
|
|
|
* {
|
|
|
|
|
scrollbar-width: thin;
|
|
|
|
|
scrollbar-color: #d7d7d7 transparent;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
*::-moz-scrollbar-thumb {
|
|
|
|
|
background-color: #d7d7d7;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
*::-moz-scrollbar-thumb:hover {
|
|
|
|
|
background-color: #666;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.flexflex {
|
|
|
|
|
display: flex;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.flex1 {
|
|
|
|
|
flex: 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.flexcenter {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
align-items: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.flexacenter {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.flexjcenter {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* // 一行显示 */
|
|
|
|
|
.ellipsis {
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#answer-app {
|
|
|
|
|
min-width: 1200px;
|
|
|
|
|
overflow-x: hidden;
|
|
|
|
|
word-break: break-all;
|
2023-12-15 11:28:35 +08:00
|
|
|
|
min-height: calc(100vh - 253px);
|
2023-12-06 15:23:13 +08:00
|
|
|
|
|
|
|
|
|
header {
|
|
|
|
|
background: rgba(246, 246, 246, 1);
|
|
|
|
|
height: 150px;
|
|
|
|
|
border: 1px solid rgba(235, 235, 235, 1);
|
|
|
|
|
min-width: 1200px;
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
padding-top: 24px;
|
|
|
|
|
|
|
|
|
|
.top {
|
|
|
|
|
width: 1200px;
|
|
|
|
|
margin-bottom: 31px;
|
|
|
|
|
|
|
|
|
|
.logo {
|
|
|
|
|
width: 73px;
|
|
|
|
|
// height: 36px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.right {
|
|
|
|
|
justify-content: flex-end;
|
|
|
|
|
|
|
|
|
|
.searchInput {
|
|
|
|
|
width: 320px;
|
|
|
|
|
height: 32px;
|
|
|
|
|
border: 1px solid rgba(235, 235, 235, 1);
|
|
|
|
|
border-radius: 104px;
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
padding-right: 16px;
|
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
|
|
input {
|
|
|
|
|
border: none;
|
|
|
|
|
outline: none;
|
|
|
|
|
height: 100%;
|
|
|
|
|
padding-left: 16px;
|
|
|
|
|
border-radius: 104px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.input-icon {
|
|
|
|
|
width: 20px;
|
|
|
|
|
height: 20px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.clear-search {
|
|
|
|
|
.cross-circle-black {
|
|
|
|
|
width: 14px;
|
|
|
|
|
height: 14px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.halving-line {
|
|
|
|
|
width: 1px;
|
|
|
|
|
height: 13px;
|
|
|
|
|
background-color: #ebebeb;
|
|
|
|
|
margin: 0 17px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.history-box {
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 36px;
|
|
|
|
|
left: 0;
|
|
|
|
|
width: 320px;
|
|
|
|
|
background-color: rgba(255, 255, 255, 1);
|
|
|
|
|
border: 1px solid rgba(235, 235, 235, 1);
|
|
|
|
|
border-radius: 10px;
|
|
|
|
|
padding-top: 15px;
|
2023-12-15 17:45:53 +08:00
|
|
|
|
z-index: 10;
|
2023-12-06 15:23:13 +08:00
|
|
|
|
padding-bottom: 14px;
|
|
|
|
|
|
|
|
|
|
.history-title {
|
|
|
|
|
font-size: 13px;
|
2024-07-10 10:45:22 +08:00
|
|
|
|
color: #aaaaaa;
|
2023-12-06 15:23:13 +08:00
|
|
|
|
padding-left: 16px;
|
|
|
|
|
margin-bottom: 9px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.history-list {
|
|
|
|
|
.history-item {
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
color: #333;
|
|
|
|
|
height: 30px;
|
|
|
|
|
line-height: 30px;
|
|
|
|
|
padding: 0 16px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.btn-list {
|
|
|
|
|
width: 221px;
|
|
|
|
|
height: 30px;
|
|
|
|
|
border: 1px solid rgba(235, 235, 235, 1);
|
|
|
|
|
border-radius: 5px;
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
color: #555;
|
|
|
|
|
margin-left: 20px;
|
|
|
|
|
|
|
|
|
|
.item {
|
|
|
|
|
text-align: center;
|
|
|
|
|
position: relative;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
|
|
&:not(:last-of-type)::before {
|
2024-07-10 10:45:22 +08:00
|
|
|
|
content: "|";
|
2023-12-06 15:23:13 +08:00
|
|
|
|
position: absolute;
|
|
|
|
|
top: 50%;
|
|
|
|
|
right: 0;
|
|
|
|
|
transform: translateY(-50%);
|
2024-07-10 10:45:22 +08:00
|
|
|
|
color: #d7d7d7;
|
|
|
|
|
font-size: 13px;
|
2023-12-06 15:23:13 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.add-btn {
|
|
|
|
|
width: 130px;
|
|
|
|
|
height: 30px;
|
|
|
|
|
background-color: rgba(253, 223, 109, 1);
|
|
|
|
|
border-radius: 5px;
|
|
|
|
|
color: #000000;
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
margin-left: 20px;
|
|
|
|
|
|
|
|
|
|
.add-icon {
|
|
|
|
|
width: 14px;
|
|
|
|
|
height: 14px;
|
|
|
|
|
margin-right: 4px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tab-box {
|
|
|
|
|
width: 100%;
|
|
|
|
|
min-width: 1200px;
|
|
|
|
|
z-index: 1;
|
|
|
|
|
background-color: #f6f6f6;
|
|
|
|
|
padding: 5px 0;
|
|
|
|
|
|
|
|
|
|
&.tab-list-fixed {
|
|
|
|
|
position: fixed;
|
|
|
|
|
top: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
|
|
|
|
|
.tab-list {
|
|
|
|
|
width: 1200px;
|
|
|
|
|
|
|
|
|
|
.item {
|
|
|
|
|
text-align: center;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
height: 24px;
|
|
|
|
|
color: #333;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
2024-07-10 10:45:22 +08:00
|
|
|
|
&:not(:last-of-type) {
|
2024-05-16 16:49:10 +08:00
|
|
|
|
margin-right: 23px;
|
|
|
|
|
}
|
|
|
|
|
|
2023-12-06 15:23:13 +08:00
|
|
|
|
&.pitch {
|
|
|
|
|
padding: 0 11px;
|
|
|
|
|
background-color: rgba(250, 107, 17, 1);
|
|
|
|
|
border-radius: 19px;
|
|
|
|
|
font-weight: 650;
|
2024-07-10 10:45:22 +08:00
|
|
|
|
color: #ffffff;
|
2023-12-06 15:23:13 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.halving-line {
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
color: #d7d7d7;
|
|
|
|
|
margin-right: 23px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.main {
|
|
|
|
|
// width: 1200px;
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
// height: calc(100vh - 150px);
|
|
|
|
|
height: calc(100vh - 167px);
|
|
|
|
|
justify-content: center;
|
|
|
|
|
background-color: #fbfbfb;
|
|
|
|
|
min-width: 1200px;
|
|
|
|
|
|
|
|
|
|
.transmit-mask {
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
z-index: 1;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
// background-color: rgba(0, 0, 0, 0.5);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&.mode-list {
|
|
|
|
|
background: #fff;
|
2023-12-13 14:06:08 +08:00
|
|
|
|
height: auto;
|
2023-12-06 15:23:13 +08:00
|
|
|
|
|
|
|
|
|
.main-header {
|
2023-12-20 19:11:08 +08:00
|
|
|
|
width: 100%;
|
2023-12-06 15:23:13 +08:00
|
|
|
|
border-right: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.list-box .list .item {
|
|
|
|
|
border-right: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.list-box .list .item:nth-child(2) {
|
|
|
|
|
border-top: 1px solid #ebebeb;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.main-header {
|
|
|
|
|
// width: 1200px;
|
|
|
|
|
min-width: 508px;
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
// justify-content: space-between;
|
|
|
|
|
padding-left: calc((100vw - 1200px) / 2);
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
width: calc((100vw - 1200px) / 2 + 512px);
|
|
|
|
|
background: #fff;
|
|
|
|
|
border-right: 1px solid #ebebeb;
|
|
|
|
|
|
|
|
|
|
.search-keyword {
|
2024-07-10 10:45:22 +08:00
|
|
|
|
color: #fa6b11;
|
2023-12-06 15:23:13 +08:00
|
|
|
|
font-size: 14px;
|
|
|
|
|
height: 20px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
max-width: 400px;
|
|
|
|
|
|
|
|
|
|
.search-keyword-cross {
|
|
|
|
|
width: 14px;
|
|
|
|
|
height: 14px;
|
|
|
|
|
margin-left: 8px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
padding-right: 20px;
|
|
|
|
|
margin-right: 20px;
|
2023-12-21 11:39:15 +08:00
|
|
|
|
border-right: 1px solid #ebebeb;
|
2023-12-06 15:23:13 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
height: 68px;
|
|
|
|
|
padding-top: 28px;
|
|
|
|
|
|
|
|
|
|
.total {
|
|
|
|
|
// width: 552px;
|
|
|
|
|
font-size: 13px;
|
2024-07-10 10:45:22 +08:00
|
|
|
|
color: #7f7f7f;
|
2023-12-06 15:23:13 +08:00
|
|
|
|
height: 20px;
|
|
|
|
|
|
|
|
|
|
// height: 68px;
|
|
|
|
|
// padding-top: 28px;
|
|
|
|
|
// border-bottom: 1px solid #ebebeb;
|
|
|
|
|
}
|
2023-12-20 19:11:08 +08:00
|
|
|
|
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
|
|
|
|
.look-only {
|
|
|
|
|
font-size: 13px;
|
2024-07-10 10:45:22 +08:00
|
|
|
|
color: #7f7f7f;
|
2023-12-20 19:11:08 +08:00
|
|
|
|
height: 20px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
|
|
.look-icon {
|
|
|
|
|
width: 12px;
|
|
|
|
|
height: 12px;
|
|
|
|
|
margin-right: 8px;
|
|
|
|
|
}
|
|
|
|
|
}
|
2023-12-06 15:23:13 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.list-box {
|
|
|
|
|
overflow-y: auto;
|
|
|
|
|
overflow-x: hidden;
|
|
|
|
|
padding-right: 15px;
|
|
|
|
|
|
|
|
|
|
&::-webkit-scrollbar {
|
|
|
|
|
width: 0 !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
scrollbar-width: none;
|
|
|
|
|
-ms-overflow-style: none;
|
|
|
|
|
|
|
|
|
|
.list {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
// margin: 0 auto;
|
|
|
|
|
position: relative;
|
|
|
|
|
min-width: 508px;
|
|
|
|
|
|
|
|
|
|
.item {
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
position: absolute;
|
|
|
|
|
padding: 20px 0 0;
|
|
|
|
|
// transition: all .5s;
|
|
|
|
|
transition-property: top, left, background;
|
|
|
|
|
transition-duration: 0.5s;
|
|
|
|
|
border-right: 1px solid #ebebeb;
|
|
|
|
|
|
2023-12-18 12:29:05 +08:00
|
|
|
|
// height: 128px;
|
2023-12-06 15:23:13 +08:00
|
|
|
|
background-color: #fff;
|
|
|
|
|
|
|
|
|
|
&:first-of-type {
|
|
|
|
|
border-top: 1px solid #ebebeb;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&.upLevel {
|
|
|
|
|
.content {
|
|
|
|
|
border: none;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&.pitch {
|
|
|
|
|
background-color: rgba(251, 251, 251, 1);
|
|
|
|
|
border-top: 1px solid #ebebeb;
|
|
|
|
|
border-bottom: 1px solid #ebebeb;
|
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
|
|
&::after {
|
|
|
|
|
content: "";
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 0;
|
|
|
|
|
right: -1px;
|
|
|
|
|
width: 4px;
|
|
|
|
|
height: 100%;
|
|
|
|
|
background-color: rgba(253, 223, 109, 1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&::before {
|
|
|
|
|
content: "";
|
|
|
|
|
position: absolute;
|
|
|
|
|
width: 5px;
|
|
|
|
|
height: 10px;
|
|
|
|
|
right: -5px;
|
|
|
|
|
top: 50%;
|
|
|
|
|
transform: translateY(-50%);
|
2024-07-10 10:45:22 +08:00
|
|
|
|
background-image: url("./img/triangle-icon.svg");
|
2023-12-06 15:23:13 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.content {
|
|
|
|
|
border: none;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2023-12-07 15:11:20 +08:00
|
|
|
|
&:hover .issue {
|
|
|
|
|
text-decoration: underline;
|
|
|
|
|
}
|
|
|
|
|
|
2023-12-06 15:23:13 +08:00
|
|
|
|
// background-color: rgba(251, 251, 251, 1);
|
|
|
|
|
// position: relative;
|
|
|
|
|
|
|
|
|
|
// &::after {
|
|
|
|
|
// content: "";
|
|
|
|
|
// background-color: rgba(251, 251, 251, 1);
|
|
|
|
|
// width: 200px;
|
|
|
|
|
// height: 108px;
|
|
|
|
|
// position: absolute;
|
|
|
|
|
// top: 0;
|
|
|
|
|
// right: 0;
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
.dot {
|
|
|
|
|
width: 6px;
|
|
|
|
|
height: 6px;
|
|
|
|
|
margin-top: 8px;
|
|
|
|
|
margin-right: 14px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.content {
|
|
|
|
|
// width: 531px;
|
|
|
|
|
border-bottom: 1px dotted #ebebeb;
|
2023-12-18 12:29:05 +08:00
|
|
|
|
padding-bottom: 24px;
|
2023-12-06 15:23:13 +08:00
|
|
|
|
|
|
|
|
|
// transition: all 0.3s;
|
|
|
|
|
|
|
|
|
|
.issue-title {
|
|
|
|
|
.hot-icon {
|
|
|
|
|
width: 16px;
|
|
|
|
|
height: 16px;
|
|
|
|
|
margin-right: 8px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.issue {
|
|
|
|
|
font-weight: 650;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
color: #000000;
|
|
|
|
|
line-height: 22px;
|
|
|
|
|
|
|
|
|
|
em {
|
|
|
|
|
color: #ff0000;
|
|
|
|
|
}
|
|
|
|
|
}
|
2023-12-18 18:47:07 +08:00
|
|
|
|
|
|
|
|
|
.recommend {
|
|
|
|
|
font-size: 12px;
|
2024-07-10 10:45:22 +08:00
|
|
|
|
color: #72db86;
|
2023-12-18 18:47:07 +08:00
|
|
|
|
text-align: center;
|
2023-12-19 19:07:58 +08:00
|
|
|
|
// width: 58px;
|
2023-12-18 18:47:07 +08:00
|
|
|
|
height: 21px;
|
|
|
|
|
background-color: rgba(114, 219, 134, 0.117647);
|
|
|
|
|
padding: 0 5px;
|
|
|
|
|
border-radius: 5px;
|
|
|
|
|
margin-right: 10px;
|
|
|
|
|
}
|
2023-12-06 15:23:13 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.answer {
|
|
|
|
|
color: #555;
|
|
|
|
|
height: 22px;
|
|
|
|
|
line-height: 22px;
|
|
|
|
|
font-size: 13px;
|
2023-12-07 15:11:20 +08:00
|
|
|
|
text-decoration: none;
|
2023-12-18 12:29:05 +08:00
|
|
|
|
margin-top: 8px;
|
2023-12-06 15:23:13 +08:00
|
|
|
|
|
2023-12-20 19:11:08 +08:00
|
|
|
|
& * {
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
}
|
|
|
|
|
|
2023-12-06 15:23:13 +08:00
|
|
|
|
em {
|
|
|
|
|
color: #ff0000;
|
|
|
|
|
}
|
2023-12-18 18:47:07 +08:00
|
|
|
|
|
|
|
|
|
.halving-line {
|
|
|
|
|
margin: 0 10px;
|
2024-07-10 10:45:22 +08:00
|
|
|
|
color: #d7d7d7;
|
2023-12-19 19:07:58 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.value-value {
|
|
|
|
|
&:not(:last-of-type) {
|
|
|
|
|
padding-right: 10px;
|
|
|
|
|
position: relative;
|
|
|
|
|
margin-right: 10px;
|
2023-12-20 16:32:13 +08:00
|
|
|
|
|
2023-12-19 19:07:58 +08:00
|
|
|
|
&::after {
|
|
|
|
|
content: "|";
|
|
|
|
|
position: absolute;
|
|
|
|
|
right: 0;
|
|
|
|
|
top: 50%;
|
2024-07-10 10:45:22 +08:00
|
|
|
|
color: #d7d7d7;
|
2023-12-19 19:07:58 +08:00
|
|
|
|
transform: translateY(-50%);
|
|
|
|
|
}
|
|
|
|
|
}
|
2023-12-18 18:47:07 +08:00
|
|
|
|
}
|
2023-12-06 15:23:13 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.bottom {
|
2023-12-18 12:29:05 +08:00
|
|
|
|
margin-top: 18px;
|
|
|
|
|
|
2023-12-06 15:23:13 +08:00
|
|
|
|
font-size: 12px;
|
2023-12-13 14:06:08 +08:00
|
|
|
|
// justify-content: flex-end;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
|
|
|
|
.typename {
|
|
|
|
|
font-size: 12px;
|
2024-07-10 10:45:22 +08:00
|
|
|
|
color: #7f7f7f;
|
2023-12-13 14:06:08 +08:00
|
|
|
|
background-color: rgba(246, 246, 246, 1);
|
|
|
|
|
border: 1px solid rgba(235, 235, 235, 1);
|
|
|
|
|
border-radius: 5px;
|
|
|
|
|
padding: 0 3px;
|
2023-12-18 12:29:05 +08:00
|
|
|
|
height: 21px;
|
2023-12-13 14:06:08 +08:00
|
|
|
|
}
|
2023-12-06 15:23:13 +08:00
|
|
|
|
|
|
|
|
|
.quantity {
|
|
|
|
|
color: #aaa;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.longString {
|
|
|
|
|
width: 1px;
|
|
|
|
|
height: 13px;
|
|
|
|
|
background-color: #d7d7d7;
|
|
|
|
|
margin: 0 15px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.answer-btn {
|
2024-07-10 10:45:22 +08:00
|
|
|
|
color: #72db86;
|
2023-12-06 15:23:13 +08:00
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.empty-box {
|
|
|
|
|
width: 690px;
|
|
|
|
|
height: 490px;
|
|
|
|
|
background-color: #ffffff;
|
|
|
|
|
border-radius: 6px;
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
|
|
|
|
.dot-list .item {
|
|
|
|
|
width: 8px;
|
|
|
|
|
height: 8px;
|
|
|
|
|
|
|
|
|
|
&:not(:last-of-type) {
|
|
|
|
|
margin-right: 5px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.empty-icon {
|
|
|
|
|
width: 100px;
|
|
|
|
|
height: 100px;
|
|
|
|
|
margin-top: 10px;
|
|
|
|
|
margin-bottom: 15px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.empty-hint {
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
color: #7f7f7f;
|
|
|
|
|
line-height: 22px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.details-area-box {
|
|
|
|
|
width: calc((100vw - 1200px) / 2 + 688px);
|
|
|
|
|
min-width: 688px;
|
|
|
|
|
// min-height: 1000vh;
|
|
|
|
|
// background-color: #72DB86;
|
|
|
|
|
background-color: rgba(251, 251, 251, 1);
|
|
|
|
|
// border-left: 1px solid #ebebeb;
|
|
|
|
|
overflow-y: auto;
|
|
|
|
|
overflow-x: hidden;
|
|
|
|
|
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
|
|
.loading-bj {
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
z-index: 1;
|
|
|
|
|
background-color: rgba(255, 255, 255, 0.5);
|
2024-04-09 12:20:38 +08:00
|
|
|
|
padding-left: 53px;
|
|
|
|
|
width: 688px;
|
2024-07-10 10:45:22 +08:00
|
|
|
|
|
2023-12-06 15:23:13 +08:00
|
|
|
|
svg {
|
2024-04-09 12:30:04 +08:00
|
|
|
|
width: 60px;
|
2023-12-06 15:23:13 +08:00
|
|
|
|
animation: spin 2s linear infinite;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@keyframes spin {
|
|
|
|
|
0% {
|
|
|
|
|
transform: rotate(0deg);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
100% {
|
|
|
|
|
transform: rotate(360deg);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.details-box {
|
|
|
|
|
width: 688px;
|
2023-12-15 11:28:35 +08:00
|
|
|
|
padding-left: 53px;
|
2023-12-06 15:23:13 +08:00
|
|
|
|
flex-direction: column;
|
|
|
|
|
flex: 1;
|
|
|
|
|
position: relative;
|
|
|
|
|
|
2025-01-17 17:19:18 +08:00
|
|
|
|
.emoji-box-mask {
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
z-index: 1;
|
|
|
|
|
}
|
|
|
|
|
|
2023-12-06 15:23:13 +08:00
|
|
|
|
.close-box {
|
|
|
|
|
height: 69px;
|
|
|
|
|
padding-top: 29px;
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: flex-end;
|
|
|
|
|
|
|
|
|
|
.close-circle {
|
|
|
|
|
position: relative;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
width: 20px;
|
|
|
|
|
height: 20px;
|
|
|
|
|
|
|
|
|
|
.close-icon {
|
|
|
|
|
width: 20px;
|
|
|
|
|
height: 20px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.details-cross-icon {
|
|
|
|
|
width: 10px;
|
|
|
|
|
height: 10px;
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 50%;
|
|
|
|
|
left: 50%;
|
|
|
|
|
transform: translate(-50%, -50%);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2025-01-16 19:03:25 +08:00
|
|
|
|
.label {
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
height: 21px;
|
|
|
|
|
line-height: 21px;
|
|
|
|
|
padding: 0 4px;
|
|
|
|
|
background-color: rgba(114, 219, 134, 1);
|
|
|
|
|
border-radius: 5px;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
margin-left: 23px;
|
|
|
|
|
margin-bottom: 12px;
|
|
|
|
|
}
|
|
|
|
|
|
2023-12-06 15:23:13 +08:00
|
|
|
|
.details-issue {
|
2023-12-20 16:32:13 +08:00
|
|
|
|
// width: 627px;
|
2023-12-06 15:23:13 +08:00
|
|
|
|
border-radius: 8px;
|
|
|
|
|
background-color: #fff;
|
2025-01-16 19:03:25 +08:00
|
|
|
|
-moz-box-shadow: 0 0 11px rgba(0, 0, 0, 0.101960784313725);
|
|
|
|
|
-webkit-box-shadow: 0 0 11px rgb(0 0 0 / 10%);
|
|
|
|
|
box-shadow: 0 0 11px rgb(0 0 0 / 10%);
|
|
|
|
|
padding-top: 19px;
|
2023-12-06 15:23:13 +08:00
|
|
|
|
margin-bottom: 28px;
|
|
|
|
|
position: relative;
|
|
|
|
|
word-break: break-all;
|
|
|
|
|
|
|
|
|
|
.icon {
|
|
|
|
|
background-color: #72db86;
|
2024-07-10 10:45:22 +08:00
|
|
|
|
font-family: "PingFangSC-Semibold", "PingFang SC Semibold", "PingFang SC", sans-serif;
|
2023-12-06 15:23:13 +08:00
|
|
|
|
font-weight: 650;
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
width: 28px;
|
|
|
|
|
height: 28px;
|
|
|
|
|
line-height: 20px;
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
color: #fff;
|
|
|
|
|
border: 4px solid #fbfbfb;
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: -4px;
|
|
|
|
|
left: -4px;
|
|
|
|
|
}
|
|
|
|
|
|
2023-12-13 14:06:08 +08:00
|
|
|
|
.qq {
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: -5px;
|
|
|
|
|
left: -5px;
|
|
|
|
|
width: 28px;
|
|
|
|
|
}
|
|
|
|
|
|
2023-12-07 18:58:40 +08:00
|
|
|
|
.titletitle {
|
2023-12-06 15:23:13 +08:00
|
|
|
|
font-weight: 650;
|
|
|
|
|
font-size: 18px;
|
|
|
|
|
line-height: 22px;
|
|
|
|
|
color: #000000;
|
|
|
|
|
padding: 0 24px;
|
2025-01-16 19:03:25 +08:00
|
|
|
|
margin-bottom: 12px;
|
2023-12-06 15:23:13 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.hint {
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
color: #555;
|
|
|
|
|
line-height: 24px;
|
|
|
|
|
margin-bottom: 20px;
|
|
|
|
|
padding: 0 24px;
|
2024-02-01 14:09:06 +08:00
|
|
|
|
white-space: pre-line;
|
2025-01-03 18:15:58 +08:00
|
|
|
|
img {
|
|
|
|
|
height: auto !important;
|
|
|
|
|
}
|
2023-12-06 15:23:13 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.operate-box {
|
|
|
|
|
.answer-btn {
|
|
|
|
|
width: 120px;
|
|
|
|
|
height: 28px;
|
|
|
|
|
background-color: rgba(246, 246, 246, 1);
|
|
|
|
|
// border: 1px solid rgba(235, 235, 235, 1);
|
|
|
|
|
border-radius: 43px;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
color: #555555;
|
|
|
|
|
line-height: 20px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
|
|
&.white {
|
|
|
|
|
background-color: rgba(98, 177, 255, 1);
|
2024-07-10 10:45:22 +08:00
|
|
|
|
color: #ffffff;
|
2023-12-06 15:23:13 +08:00
|
|
|
|
|
|
|
|
|
.answer-icon-white {
|
|
|
|
|
display: block;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.answer-icon-edit {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.answer-btn-icon {
|
|
|
|
|
width: 16px;
|
|
|
|
|
height: 16px;
|
|
|
|
|
margin-right: 8px;
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.answer-icon-edit {
|
|
|
|
|
display: block;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2025-01-16 19:03:25 +08:00
|
|
|
|
.answer-discuss {
|
|
|
|
|
background-color: rgba(255, 255, 255, 1);
|
|
|
|
|
border: 1px solid rgba(235, 235, 235, 1);
|
|
|
|
|
border-radius: 10px;
|
|
|
|
|
box-shadow: 0 0 3px rgba(0, 0, 0, 0.117647058823529);
|
|
|
|
|
padding: 18px 22px;
|
|
|
|
|
|
|
|
|
|
.header {
|
|
|
|
|
font-family: "PingFangSC-Semibold", "PingFang SC Semibold", "PingFang SC", sans-serif;
|
|
|
|
|
font-weight: 650;
|
|
|
|
|
color: #000000;
|
|
|
|
|
font-size: 16px;
|
2025-01-17 17:19:18 +08:00
|
|
|
|
margin-bottom: 17px;
|
2025-01-16 19:03:25 +08:00
|
|
|
|
.num {
|
|
|
|
|
font-family: "PingFangSC-Regular", "PingFang SC", sans-serif;
|
|
|
|
|
color: #555555;
|
|
|
|
|
margin-left: 10px;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
margin-left: 6px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.input-box {
|
|
|
|
|
background-color: rgba(246, 246, 246, 1);
|
|
|
|
|
border-radius: 10px;
|
2025-01-17 17:19:18 +08:00
|
|
|
|
padding-top: 11px;
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
.top {
|
|
|
|
|
padding: 0 14px;
|
2025-01-21 19:06:13 +08:00
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
|
|
.input-placeholder {
|
|
|
|
|
color: #7f7f7f;
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 0;
|
|
|
|
|
left: 14px;
|
|
|
|
|
}
|
|
|
|
|
|
2025-01-17 17:19:18 +08:00
|
|
|
|
.avatar {
|
|
|
|
|
width: 24px;
|
|
|
|
|
height: 24px;
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
display: block;
|
|
|
|
|
margin-right: 10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.input-textarea {
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
border: none;
|
|
|
|
|
outline: none;
|
|
|
|
|
background-color: transparent;
|
|
|
|
|
min-height: 80px;
|
|
|
|
|
padding-bottom: 11px;
|
|
|
|
|
&.placeholder::after {
|
|
|
|
|
content: "说说你的看法…";
|
|
|
|
|
color: #7f7f7f;
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.picture-box {
|
|
|
|
|
padding-bottom: 10px;
|
|
|
|
|
border-bottom: 1px dotted rgba(215, 215, 215, 0.501961);
|
|
|
|
|
padding-left: 14px;
|
|
|
|
|
|
|
|
|
|
.picture {
|
|
|
|
|
position: relative;
|
|
|
|
|
width: fit-content;
|
|
|
|
|
|
|
|
|
|
.img {
|
|
|
|
|
height: 60px;
|
|
|
|
|
border-radius: 5px;
|
|
|
|
|
display: block;
|
|
|
|
|
}
|
2025-01-16 19:03:25 +08:00
|
|
|
|
|
2025-01-17 17:19:18 +08:00
|
|
|
|
.close {
|
|
|
|
|
width: 17px;
|
|
|
|
|
height: 17px;
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 0;
|
|
|
|
|
right: 0;
|
|
|
|
|
transform: translate(50%, -50%);
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2025-01-16 19:03:25 +08:00
|
|
|
|
.bottom {
|
2025-01-17 17:19:18 +08:00
|
|
|
|
height: 52px;
|
|
|
|
|
padding: 0 14px;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
.operate {
|
|
|
|
|
.item {
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
margin-right: 20px;
|
|
|
|
|
position: relative;
|
|
|
|
|
z-index: 1;
|
|
|
|
|
&.pitch {
|
|
|
|
|
.emoji-box {
|
|
|
|
|
display: flex;
|
|
|
|
|
}
|
|
|
|
|
&::after {
|
|
|
|
|
content: "";
|
|
|
|
|
width: 28px;
|
|
|
|
|
height: 28px;
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 50%;
|
|
|
|
|
left: 50%;
|
|
|
|
|
transform: translate(-50%, -50%);
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
border-radius: 5px;
|
|
|
|
|
z-index: -1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.icon {
|
|
|
|
|
width: 16px;
|
|
|
|
|
height: 16px;
|
|
|
|
|
cursor: pointer; /* 鼠标悬停时显示为可点击 */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.emoji-box {
|
|
|
|
|
width: 581px;
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
// box-shadow: 0 0 11px rgba(0, 0, 0, 0.1);
|
|
|
|
|
filter: drop-shadow(0 0 11px rgba(0, 0, 0, 0.1));
|
|
|
|
|
top: 45px;
|
|
|
|
|
position: absolute;
|
|
|
|
|
z-index: 1;
|
|
|
|
|
left: -14px;
|
|
|
|
|
border: 1px solid rgb(235, 235, 235);
|
|
|
|
|
display: none;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
font-size: 22px;
|
|
|
|
|
padding: 8px;
|
|
|
|
|
&::after {
|
|
|
|
|
content: "";
|
|
|
|
|
width: 0;
|
|
|
|
|
height: 0;
|
|
|
|
|
border-left: 8px solid transparent;
|
|
|
|
|
border-right: 8px solid transparent;
|
|
|
|
|
border-bottom: 8px solid #ffffff;
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: -8px;
|
|
|
|
|
left: 15px;
|
|
|
|
|
}
|
|
|
|
|
.emoji-icon {
|
|
|
|
|
margin: 5px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.file {
|
|
|
|
|
opacity: 0; /* 隐藏输入框 */
|
|
|
|
|
background: transparent;
|
|
|
|
|
border: none;
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
|
|
&::after {
|
|
|
|
|
content: "";
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&:hover .file-hint {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.file-hint {
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
text-align: center;
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
height: 22px;
|
|
|
|
|
line-height: 22px;
|
|
|
|
|
background-color: rgba(51, 51, 51, 1);
|
|
|
|
|
border-radius: 137px;
|
|
|
|
|
padding: 0 8px;
|
|
|
|
|
margin-left: 9px;
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2025-01-16 19:03:25 +08:00
|
|
|
|
.btn {
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
color: #333;
|
|
|
|
|
width: 80px;
|
|
|
|
|
height: 28px;
|
|
|
|
|
line-height: 28px;
|
|
|
|
|
text-align: center;
|
|
|
|
|
background-color: rgba(253, 223, 109, 1);
|
|
|
|
|
border-radius: 43px;
|
2025-01-17 17:19:18 +08:00
|
|
|
|
cursor: pointer;
|
2025-01-16 19:03:25 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2023-12-06 15:23:13 +08:00
|
|
|
|
.answer-total-amount {
|
|
|
|
|
color: #555555;
|
|
|
|
|
line-height: 22px;
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
margin-bottom: 20px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.your-answer-box {
|
|
|
|
|
border: 1px solid rgba(235, 235, 235, 1);
|
|
|
|
|
border-radius: 10px;
|
|
|
|
|
-moz-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.117647058823529);
|
|
|
|
|
-webkit-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.117647058823529);
|
|
|
|
|
box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.117647058823529);
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
margin-bottom: 25px;
|
|
|
|
|
|
|
|
|
|
.your-answer-header {
|
|
|
|
|
height: 67px;
|
|
|
|
|
font-weight: 650;
|
|
|
|
|
font-size: 18px;
|
|
|
|
|
color: #000000;
|
|
|
|
|
line-height: 26px;
|
|
|
|
|
padding-left: 24px;
|
|
|
|
|
border-bottom: 1px dotted #ebebeb;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.your-answer-textarea {
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
padding: 20px 23px;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 224px;
|
|
|
|
|
border: none;
|
|
|
|
|
outline: none;
|
|
|
|
|
resize: none;
|
2023-12-06 19:06:10 +08:00
|
|
|
|
overflow-x: hidden;
|
|
|
|
|
overflow-y: auto;
|
|
|
|
|
|
|
|
|
|
&.placeholder::after {
|
2023-12-13 14:06:08 +08:00
|
|
|
|
content: "输入图文内容回答提问(支持直接粘贴图片)";
|
2023-12-06 19:06:10 +08:00
|
|
|
|
color: #999;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
img {
|
|
|
|
|
max-width: 100%;
|
|
|
|
|
}
|
2023-12-06 15:23:13 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.your-answer-bottom {
|
|
|
|
|
height: 50px;
|
|
|
|
|
background-color: rgba(246, 246, 246, 1);
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
padding-left: 25px;
|
2024-02-02 16:19:34 +08:00
|
|
|
|
border-radius: 0 0 10px 10px;
|
2023-12-06 15:23:13 +08:00
|
|
|
|
|
|
|
|
|
.option-box {
|
|
|
|
|
font-size: 14px;
|
2024-07-10 10:45:22 +08:00
|
|
|
|
color: #7f7f7f;
|
2023-12-06 15:23:13 +08:00
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
|
|
.option-icon {
|
|
|
|
|
width: 12px;
|
|
|
|
|
height: 12px;
|
|
|
|
|
margin-right: 8px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.your-answer-submit {
|
|
|
|
|
width: 120px;
|
|
|
|
|
height: 50px;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
color: #333;
|
|
|
|
|
border-radius: 0 0 10px 0;
|
|
|
|
|
background-color: rgba(253, 223, 109, 1);
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.answer-box-item {
|
2023-12-20 16:32:13 +08:00
|
|
|
|
// width: 627px;
|
2023-12-06 15:23:13 +08:00
|
|
|
|
border-radius: 8px;
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
-moz-box-shadow: 0px 0px 11px rgba(0, 0, 0, 0.101960784313725);
|
|
|
|
|
-webkit-box-shadow: 0px 0px 11px rgb(0 0 0 / 10%);
|
|
|
|
|
box-shadow: 0px 0px 11px rgb(0 0 0 / 10%);
|
|
|
|
|
padding-top: 24px;
|
|
|
|
|
margin-bottom: 21px;
|
|
|
|
|
position: relative;
|
2024-01-31 18:51:05 +08:00
|
|
|
|
// overflow: hidden;
|
2024-07-26 18:49:40 +08:00
|
|
|
|
.edit-btn {
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
width: 24px;
|
|
|
|
|
height: 24px;
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
background-color: #f6f6f6;
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 10px;
|
|
|
|
|
right: 10px;
|
|
|
|
|
|
|
|
|
|
.edit-icon {
|
|
|
|
|
width: 16px;
|
|
|
|
|
height: 16px;
|
|
|
|
|
}
|
|
|
|
|
}
|
2023-12-06 15:23:13 +08:00
|
|
|
|
|
2024-07-10 10:45:22 +08:00
|
|
|
|
* {
|
|
|
|
|
white-space: break-spaces !important;
|
|
|
|
|
}
|
|
|
|
|
|
2023-12-13 14:06:08 +08:00
|
|
|
|
.aa {
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: -5px;
|
|
|
|
|
left: -5px;
|
|
|
|
|
width: 28px;
|
|
|
|
|
}
|
|
|
|
|
|
2023-12-06 15:23:13 +08:00
|
|
|
|
.icon-box {
|
|
|
|
|
background-color: #62b1ff;
|
2024-07-10 10:45:22 +08:00
|
|
|
|
font-family: "PingFangSC-Semibold", "PingFang SC Semibold", "PingFang SC", sans-serif;
|
2023-12-06 15:23:13 +08:00
|
|
|
|
font-weight: 650;
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
width: 28px;
|
|
|
|
|
height: 28px;
|
|
|
|
|
line-height: 20px;
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
color: #fff;
|
|
|
|
|
border: 4px solid #fbfbfb;
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: -4px;
|
|
|
|
|
left: -4px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.answer-text {
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
color: #555555;
|
2023-12-15 17:45:53 +08:00
|
|
|
|
// line-height: 26px;
|
2023-12-06 15:23:13 +08:00
|
|
|
|
padding: 0 24px;
|
|
|
|
|
margin-bottom: 20px;
|
|
|
|
|
word-break: break-all;
|
|
|
|
|
|
|
|
|
|
img {
|
|
|
|
|
max-width: 100%;
|
|
|
|
|
cursor: pointer;
|
2025-01-03 18:15:58 +08:00
|
|
|
|
height: auto !important;
|
2023-12-06 15:23:13 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.operate-box {
|
2024-07-29 17:58:59 +08:00
|
|
|
|
// height: 76px;
|
|
|
|
|
padding: 0 24px;
|
2024-07-26 18:49:40 +08:00
|
|
|
|
background-color: rgba(251, 251, 251, 1);
|
2023-12-06 15:23:13 +08:00
|
|
|
|
|
2024-07-26 18:49:40 +08:00
|
|
|
|
.interaction-box {
|
|
|
|
|
.interaction-item {
|
|
|
|
|
font-family: "PingFangSC-Regular", "PingFang SC", sans-serif;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
font-style: normal;
|
|
|
|
|
color: #555555;
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
line-height: 20px;
|
2023-12-06 15:23:13 +08:00
|
|
|
|
cursor: pointer;
|
2024-07-26 18:49:40 +08:00
|
|
|
|
position: relative;
|
|
|
|
|
.amount {
|
|
|
|
|
color: #555555;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
}
|
2023-12-06 15:23:13 +08:00
|
|
|
|
|
2024-07-26 18:49:40 +08:00
|
|
|
|
&:not(:last-of-type) {
|
|
|
|
|
margin-right: 40px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&.pitch {
|
|
|
|
|
font-weight: 650;
|
|
|
|
|
color: #000000;
|
|
|
|
|
|
|
|
|
|
&::after {
|
|
|
|
|
content: "";
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 24px;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 4px;
|
|
|
|
|
background-color: rgba(253, 223, 109, 1);
|
|
|
|
|
border-radius: 43px;
|
|
|
|
|
}
|
2023-12-06 15:23:13 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2024-07-26 18:49:40 +08:00
|
|
|
|
.answer-coins {
|
|
|
|
|
background-color: #fbfbfb;
|
2024-07-29 17:58:59 +08:00
|
|
|
|
padding: 22px 22px 40px;
|
2024-07-26 18:49:40 +08:00
|
|
|
|
border-radius: 0 0 8px 8px;
|
|
|
|
|
|
|
|
|
|
.coins-show {
|
|
|
|
|
height: 56px;
|
|
|
|
|
background-color: rgba(255, 255, 255, 1);
|
|
|
|
|
border: 1px solid rgba(235, 235, 235, 1);
|
|
|
|
|
border-radius: 10px;
|
|
|
|
|
padding-left: 20px;
|
|
|
|
|
padding-right: 8px;
|
|
|
|
|
.coins-icon {
|
|
|
|
|
width: 31px;
|
|
|
|
|
height: 36px;
|
|
|
|
|
margin-right: 10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.coins-text {
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
color: #333333;
|
|
|
|
|
.quantity {
|
|
|
|
|
font-family: "Arial-Black", "Arial Black", sans-serif;
|
|
|
|
|
font-weight: 900;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.coins-btn {
|
|
|
|
|
width: 125px;
|
|
|
|
|
height: 40px;
|
|
|
|
|
background-color: rgba(98, 177, 255, 1);
|
|
|
|
|
border-radius: 150px;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.answer-coins-list {
|
|
|
|
|
margin-top: 20px;
|
|
|
|
|
max-height: 253px;
|
|
|
|
|
overflow: auto;
|
|
|
|
|
background-color: rgba(255, 255, 255, 1);
|
|
|
|
|
border: 1px solid rgba(235, 235, 235, 1);
|
|
|
|
|
border-radius: 10px;
|
|
|
|
|
|
|
|
|
|
.answer-coins-item {
|
|
|
|
|
padding: 16px 20px 14px 32px;
|
|
|
|
|
|
2024-08-12 10:55:31 +08:00
|
|
|
|
&:not(:last-of-type) {
|
2024-07-29 16:58:41 +08:00
|
|
|
|
border-bottom: 1px dotted #f2f2f2;
|
|
|
|
|
}
|
|
|
|
|
|
2024-07-26 18:49:40 +08:00
|
|
|
|
.ranking {
|
|
|
|
|
width: 118px;
|
|
|
|
|
font-family: "Arial-BoldMT", "Arial Bold", "Arial", sans-serif;
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
color: #333333;
|
|
|
|
|
}
|
|
|
|
|
.coins-user {
|
2024-07-29 16:58:41 +08:00
|
|
|
|
cursor: pointer;
|
2024-07-26 18:49:40 +08:00
|
|
|
|
.coins-user-img {
|
|
|
|
|
width: 24px;
|
|
|
|
|
height: 24px;
|
|
|
|
|
margin-right: 18px;
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
}
|
|
|
|
|
.coins-user-name {
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
color: #555555;
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.bi {
|
|
|
|
|
color: #000000;
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
line-height: 16px;
|
|
|
|
|
.bi-amount {
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.respond-area {
|
|
|
|
|
background-color: rgba(251, 251, 251, 1);
|
2024-07-29 17:58:59 +08:00
|
|
|
|
padding: 13px 24px 40px;
|
2024-07-26 18:49:40 +08:00
|
|
|
|
display: flex;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
border-radius: 0 0 8px 8px;
|
|
|
|
|
|
|
|
|
|
.respond-already-item {
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
color: #555555;
|
|
|
|
|
text-align: center;
|
|
|
|
|
padding: 0 6px;
|
|
|
|
|
width: fit-content;
|
|
|
|
|
height: 30px;
|
|
|
|
|
line-height: 30px;
|
|
|
|
|
border: 1px solid rgba(215, 215, 215, 1);
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
margin-right: 10px;
|
|
|
|
|
margin-bottom: 10px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
|
|
&.pitch {
|
|
|
|
|
background: rgba(242, 242, 242, 1);
|
|
|
|
|
border: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.code {
|
|
|
|
|
font-family: "emojifont";
|
|
|
|
|
margin-right: 4px;
|
|
|
|
|
font-size: 15px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.respond-select {
|
|
|
|
|
height: 30px;
|
|
|
|
|
background-color: rgba(255, 255, 255, 1);
|
|
|
|
|
border: 1px solid rgba(235, 235, 235, 1);
|
|
|
|
|
border-radius: 6px 15px 15px 6px;
|
|
|
|
|
margin-right: 10px;
|
|
|
|
|
padding-left: 16px;
|
|
|
|
|
|
|
|
|
|
.respond-select-item {
|
|
|
|
|
font-family: "emojifont";
|
|
|
|
|
margin-right: 16px;
|
|
|
|
|
font-size: 15px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.plus-add {
|
|
|
|
|
width: 30px;
|
|
|
|
|
height: 30px;
|
|
|
|
|
background-color: rgba(98, 177, 255, 1);
|
|
|
|
|
border-radius: 15px;
|
|
|
|
|
.plus-icon {
|
|
|
|
|
width: 14px;
|
|
|
|
|
height: 14px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.respond-list-btn {
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
color: #555555;
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
2024-07-29 18:59:40 +08:00
|
|
|
|
align-items: center;
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
padding-top: 10px;
|
|
|
|
|
width: 100%;
|
2024-07-26 18:49:40 +08:00
|
|
|
|
|
|
|
|
|
.respond-list-btn-amount {
|
|
|
|
|
font-weight: 650;
|
|
|
|
|
color: #333;
|
|
|
|
|
margin: 0 5px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.respond-list-btn-icon {
|
|
|
|
|
width: 6px;
|
|
|
|
|
margin-left: 5px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2024-07-29 16:58:41 +08:00
|
|
|
|
.comments-area {
|
|
|
|
|
background-color: rgba(251, 251, 251, 1);
|
|
|
|
|
border-radius: 6px;
|
2024-07-29 17:58:59 +08:00
|
|
|
|
padding-top: 13px;
|
2024-07-29 16:58:41 +08:00
|
|
|
|
padding-bottom: 40px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.post-comment-box {
|
|
|
|
|
background-color: rgba(251, 251, 251, 1);
|
|
|
|
|
// padding-bottom: 17px;
|
|
|
|
|
border-radius: 6px;
|
|
|
|
|
}
|
|
|
|
|
|
2023-12-06 15:23:13 +08:00
|
|
|
|
.post-comment {
|
2024-07-29 16:58:41 +08:00
|
|
|
|
background-color: rgba(255, 255, 255, 1);
|
|
|
|
|
border: 1px solid rgba(215, 215, 215, 1);
|
|
|
|
|
border-radius: 6px;
|
2023-12-06 15:23:13 +08:00
|
|
|
|
position: relative;
|
|
|
|
|
z-index: 2;
|
2024-07-29 16:58:41 +08:00
|
|
|
|
margin: 0 23px;
|
2024-02-01 12:32:34 +08:00
|
|
|
|
|
2023-12-06 15:23:13 +08:00
|
|
|
|
.post-input {
|
2024-07-29 16:58:41 +08:00
|
|
|
|
height: 60px;
|
2023-12-06 15:23:13 +08:00
|
|
|
|
background-color: transparent;
|
2024-07-29 16:58:41 +08:00
|
|
|
|
border: none;
|
2023-12-15 17:45:53 +08:00
|
|
|
|
outline: none;
|
2024-07-29 16:58:41 +08:00
|
|
|
|
padding: 8px;
|
2023-12-06 15:23:13 +08:00
|
|
|
|
font-size: 14px;
|
|
|
|
|
|
|
|
|
|
&::placeholder {
|
2024-07-10 10:45:22 +08:00
|
|
|
|
color: #aaaaaa;
|
2023-12-06 15:23:13 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.post-ok {
|
2024-07-29 16:58:41 +08:00
|
|
|
|
width: 60px;
|
|
|
|
|
height: 60px;
|
2023-12-06 15:23:13 +08:00
|
|
|
|
background-color: rgba(98, 177, 255, 1);
|
|
|
|
|
color: #fff;
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
cursor: pointer;
|
2024-07-29 16:58:41 +08:00
|
|
|
|
border-radius: 6px;
|
2023-12-06 15:23:13 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.comments-empty-box {
|
|
|
|
|
height: 321px;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
}
|
2025-01-17 17:19:18 +08:00
|
|
|
|
}
|
2023-12-06 15:23:13 +08:00
|
|
|
|
|
2025-01-17 17:19:18 +08:00
|
|
|
|
.comments-box {
|
|
|
|
|
// background-color: rgba(251, 251, 251, 1);
|
|
|
|
|
// padding: 17px 24px 29px;
|
|
|
|
|
// padding: 17px 24px 0;
|
|
|
|
|
padding: 17px 0 0;
|
|
|
|
|
border-radius: 6px;
|
2023-12-06 15:23:13 +08:00
|
|
|
|
|
2025-01-17 17:19:18 +08:00
|
|
|
|
&.show-one-comment {
|
|
|
|
|
// padding-bottom: 0;
|
2024-01-31 18:51:05 +08:00
|
|
|
|
|
2025-01-17 17:19:18 +08:00
|
|
|
|
.comments-item {
|
|
|
|
|
&:not(:first-of-type) {
|
|
|
|
|
// display: none;
|
2024-01-31 18:51:05 +08:00
|
|
|
|
}
|
2025-01-17 17:19:18 +08:00
|
|
|
|
}
|
2024-01-31 18:51:05 +08:00
|
|
|
|
|
2025-01-17 17:19:18 +08:00
|
|
|
|
.reverl-all {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.comments-item {
|
|
|
|
|
padding: 13px 0 0;
|
|
|
|
|
|
|
|
|
|
&:not(:last-of-type) {
|
|
|
|
|
.child-comments {
|
|
|
|
|
border-bottom: 1px dotted #ebebeb;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.comments-content {
|
|
|
|
|
border-bottom: 1px dotted #ebebeb;
|
2024-01-31 18:51:05 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2025-01-17 17:19:18 +08:00
|
|
|
|
&:last-of-type {
|
|
|
|
|
.child-comments {
|
|
|
|
|
border-top: 1px dotted #ebebeb;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.comments-header {
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
margin-bottom: 9px;
|
|
|
|
|
|
|
|
|
|
.comments-header-left {
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
position: relative;
|
2023-12-06 15:23:13 +08:00
|
|
|
|
|
2025-01-17 17:19:18 +08:00
|
|
|
|
.comments-avatar {
|
|
|
|
|
width: 20px;
|
|
|
|
|
height: 20px;
|
|
|
|
|
margin-right: 10px;
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
cursor: pointer;
|
2023-12-15 11:28:35 +08:00
|
|
|
|
}
|
|
|
|
|
|
2025-01-17 17:19:18 +08:00
|
|
|
|
.comments-username {
|
|
|
|
|
color: #555;
|
|
|
|
|
margin-right: 10px;
|
|
|
|
|
cursor: pointer;
|
2023-12-15 11:28:35 +08:00
|
|
|
|
}
|
|
|
|
|
|
2025-01-17 17:19:18 +08:00
|
|
|
|
.comments-time {
|
|
|
|
|
color: #aaaaaa;
|
|
|
|
|
margin-right: 8px;
|
2023-12-15 11:28:35 +08:00
|
|
|
|
}
|
|
|
|
|
|
2025-01-17 17:19:18 +08:00
|
|
|
|
.comments-identity {
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
color: #7f7f7f;
|
|
|
|
|
padding: 0 3px;
|
|
|
|
|
height: 20px;
|
|
|
|
|
background-color: rgba(240, 242, 245, 1);
|
|
|
|
|
border: 1px solid rgba(215, 215, 215, 1);
|
|
|
|
|
border-radius: 5px;
|
|
|
|
|
}
|
|
|
|
|
}
|
2023-12-06 15:23:13 +08:00
|
|
|
|
|
2025-01-17 17:19:18 +08:00
|
|
|
|
.comments-header-right {
|
|
|
|
|
.menu-box {
|
2023-12-14 11:42:04 +08:00
|
|
|
|
position: relative;
|
2023-12-06 15:23:13 +08:00
|
|
|
|
|
2025-01-17 17:19:18 +08:00
|
|
|
|
&:hover .report-box {
|
|
|
|
|
display: flex;
|
2023-12-06 15:23:13 +08:00
|
|
|
|
}
|
|
|
|
|
|
2025-01-17 17:19:18 +08:00
|
|
|
|
.menu-icon {
|
|
|
|
|
width: 14px;
|
|
|
|
|
height: 14px;
|
2023-12-14 11:42:04 +08:00
|
|
|
|
cursor: pointer;
|
2023-12-06 15:23:13 +08:00
|
|
|
|
}
|
|
|
|
|
|
2025-01-17 17:19:18 +08:00
|
|
|
|
.report-box {
|
|
|
|
|
display: none;
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 24px;
|
|
|
|
|
right: 0;
|
|
|
|
|
width: 60px;
|
|
|
|
|
height: 24px;
|
|
|
|
|
background-color: rgba(246, 246, 246, 1);
|
2023-12-06 15:23:13 +08:00
|
|
|
|
border: 1px solid rgba(215, 215, 215, 1);
|
|
|
|
|
border-radius: 5px;
|
2025-01-17 17:19:18 +08:00
|
|
|
|
font-size: 12px;
|
|
|
|
|
color: #7f7f7f;
|
|
|
|
|
cursor: pointer;
|
2023-12-06 15:23:13 +08:00
|
|
|
|
|
2025-01-17 17:19:18 +08:00
|
|
|
|
&::after {
|
|
|
|
|
content: "";
|
|
|
|
|
width: 58px;
|
|
|
|
|
height: 36px;
|
2023-12-06 15:23:13 +08:00
|
|
|
|
position: absolute;
|
2025-01-17 17:19:18 +08:00
|
|
|
|
top: -14px;
|
2023-12-06 15:23:13 +08:00
|
|
|
|
right: 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
2025-01-17 17:19:18 +08:00
|
|
|
|
}
|
2023-12-06 15:23:13 +08:00
|
|
|
|
|
2025-01-17 17:19:18 +08:00
|
|
|
|
.comment-icon {
|
|
|
|
|
width: 14px;
|
|
|
|
|
height: 13px;
|
|
|
|
|
margin-left: 40px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
2023-12-06 15:23:13 +08:00
|
|
|
|
|
2025-01-17 17:19:18 +08:00
|
|
|
|
.like-box {
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
color: #aaa;
|
|
|
|
|
margin-left: 40px;
|
|
|
|
|
cursor: pointer;
|
2023-12-06 15:23:13 +08:00
|
|
|
|
|
2025-01-17 17:19:18 +08:00
|
|
|
|
.like-icon {
|
|
|
|
|
width: 14px;
|
|
|
|
|
height: 14px;
|
|
|
|
|
}
|
2023-12-06 15:23:13 +08:00
|
|
|
|
|
2025-01-17 17:19:18 +08:00
|
|
|
|
.like-quantity {
|
|
|
|
|
margin-left: 6px;
|
2023-12-06 15:23:13 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2025-01-17 17:19:18 +08:00
|
|
|
|
}
|
2023-12-06 15:23:13 +08:00
|
|
|
|
|
2025-01-17 17:19:18 +08:00
|
|
|
|
.comments-content {
|
|
|
|
|
margin-left: 30px;
|
|
|
|
|
padding-bottom: 12px;
|
|
|
|
|
// border-bottom: 1px dotted #ebebeb;
|
2023-12-06 15:23:13 +08:00
|
|
|
|
|
2025-01-17 17:19:18 +08:00
|
|
|
|
.input-box {
|
|
|
|
|
position: relative;
|
|
|
|
|
margin-right: 6px;
|
|
|
|
|
.cross {
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 5px;
|
|
|
|
|
right: 8px;
|
|
|
|
|
width: 12px;
|
|
|
|
|
height: 12px;
|
|
|
|
|
cursor: pointer;
|
2023-12-06 15:23:13 +08:00
|
|
|
|
}
|
2025-01-17 17:19:18 +08:00
|
|
|
|
}
|
2023-12-06 15:23:13 +08:00
|
|
|
|
|
2025-01-17 17:19:18 +08:00
|
|
|
|
.comments-text {
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
line-height: 22px;
|
|
|
|
|
color: #333333;
|
|
|
|
|
white-space: pre-wrap;
|
|
|
|
|
/* 保留空白符并自动换行 */
|
|
|
|
|
word-break: break-word;
|
|
|
|
|
/* 在单词内部进行断行 */
|
|
|
|
|
overflow-wrap: break-word;
|
|
|
|
|
/* 允许长单词内部断行 */
|
|
|
|
|
margin-bottom: 13px;
|
|
|
|
|
.comments-reply {
|
|
|
|
|
color: #92a1bf;
|
|
|
|
|
display: inline;
|
|
|
|
|
}
|
|
|
|
|
}
|
2023-12-06 15:23:13 +08:00
|
|
|
|
|
2025-01-20 19:08:21 +08:00
|
|
|
|
.comments-img {
|
|
|
|
|
width: 75px;
|
|
|
|
|
margin-bottom: 13px;
|
|
|
|
|
}
|
|
|
|
|
|
2025-01-17 17:19:18 +08:00
|
|
|
|
.comments-input-box {
|
|
|
|
|
margin-top: 13px;
|
2023-12-06 15:23:13 +08:00
|
|
|
|
|
2025-01-17 17:19:18 +08:00
|
|
|
|
.comments-input {
|
|
|
|
|
width: 519px;
|
|
|
|
|
height: 60px;
|
|
|
|
|
border: 1px solid rgba(215, 215, 215, 1);
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
margin-right: 16px;
|
|
|
|
|
position: relative;
|
|
|
|
|
z-index: 1;
|
2023-12-06 15:23:13 +08:00
|
|
|
|
|
2025-01-17 17:19:18 +08:00
|
|
|
|
&::after {
|
|
|
|
|
content: "";
|
|
|
|
|
width: 20px;
|
|
|
|
|
height: 20px;
|
|
|
|
|
display: block;
|
|
|
|
|
background-color: rgba(215, 215, 215, 1);
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: -2px;
|
|
|
|
|
left: 21px;
|
|
|
|
|
transform: rotate(45deg);
|
|
|
|
|
z-index: -1;
|
|
|
|
|
}
|
2023-12-15 17:45:53 +08:00
|
|
|
|
|
2025-01-17 17:19:18 +08:00
|
|
|
|
textarea {
|
|
|
|
|
border: none;
|
|
|
|
|
outline: none;
|
|
|
|
|
resize: none;
|
|
|
|
|
padding: 11px 16px;
|
|
|
|
|
border-radius: 7px 0 0 7px;
|
2023-12-15 17:45:53 +08:00
|
|
|
|
|
2025-01-17 17:19:18 +08:00
|
|
|
|
&::-webkit-scrollbar {
|
|
|
|
|
width: 0 !important;
|
2023-12-06 15:23:13 +08:00
|
|
|
|
}
|
|
|
|
|
|
2025-01-17 17:19:18 +08:00
|
|
|
|
scrollbar-width: none;
|
|
|
|
|
-ms-overflow-style: none;
|
2023-12-06 15:23:13 +08:00
|
|
|
|
}
|
|
|
|
|
|
2025-01-17 17:19:18 +08:00
|
|
|
|
.comments-btn {
|
|
|
|
|
width: 58px;
|
|
|
|
|
height: 58px;
|
|
|
|
|
background-color: rgba(114, 219, 134, 1);
|
|
|
|
|
border-radius: 0 7px 7px 0;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
color: #ffffff;
|
2023-12-06 15:23:13 +08:00
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2025-01-17 17:19:18 +08:00
|
|
|
|
.forkfork {
|
|
|
|
|
width: 12px;
|
|
|
|
|
height: 12px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
2023-12-06 15:23:13 +08:00
|
|
|
|
}
|
2025-01-17 17:19:18 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
2023-12-06 15:23:13 +08:00
|
|
|
|
|
2025-01-17 17:19:18 +08:00
|
|
|
|
.child-comments {
|
|
|
|
|
margin-left: 24px;
|
|
|
|
|
// border-bottom: 1px dotted #ebebeb;
|
2023-12-06 15:23:13 +08:00
|
|
|
|
|
2025-01-17 17:19:18 +08:00
|
|
|
|
.comments-item:last-of-type .comments-content {
|
|
|
|
|
border-bottom: none;
|
2023-12-06 15:23:13 +08:00
|
|
|
|
}
|
|
|
|
|
|
2025-01-17 17:19:18 +08:00
|
|
|
|
.comments-also {
|
|
|
|
|
color: #62b1ff;
|
|
|
|
|
line-height: 22px;
|
2023-12-06 15:23:13 +08:00
|
|
|
|
font-size: 13px;
|
2025-01-17 17:19:18 +08:00
|
|
|
|
height: 46px;
|
|
|
|
|
margin-left: 30px;
|
2023-12-06 15:23:13 +08:00
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
2025-01-17 17:19:18 +08:00
|
|
|
|
.also-icon {
|
2023-12-06 15:23:13 +08:00
|
|
|
|
width: 10px;
|
|
|
|
|
height: 10px;
|
2025-01-17 17:19:18 +08:00
|
|
|
|
margin-left: 8px;
|
2023-12-06 15:23:13 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
2025-01-17 17:19:18 +08:00
|
|
|
|
}
|
2024-01-31 18:51:05 +08:00
|
|
|
|
|
2025-01-17 17:19:18 +08:00
|
|
|
|
.reverl-all {
|
|
|
|
|
width: 120px;
|
|
|
|
|
height: 28px;
|
|
|
|
|
border: 1px solid rgba(235, 235, 235, 1);
|
|
|
|
|
border-radius: 43px;
|
|
|
|
|
color: #555555;
|
|
|
|
|
line-height: 20px;
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
margin: 16px auto 0;
|
|
|
|
|
cursor: pointer;
|
2024-01-31 18:51:05 +08:00
|
|
|
|
|
2025-01-17 17:19:18 +08:00
|
|
|
|
.arrow-circular {
|
|
|
|
|
width: 10px;
|
|
|
|
|
height: 10px;
|
|
|
|
|
margin-left: 10px;
|
2024-01-31 18:51:05 +08:00
|
|
|
|
}
|
2023-12-06 15:23:13 +08:00
|
|
|
|
}
|
|
|
|
|
|
2025-01-17 17:19:18 +08:00
|
|
|
|
.more-comments {
|
|
|
|
|
width: 120px;
|
|
|
|
|
height: 28px;
|
|
|
|
|
border: 1px solid rgba(235, 235, 235, 1);
|
|
|
|
|
border-radius: 43px;
|
|
|
|
|
color: #555;
|
|
|
|
|
line-height: 28px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
margin: 20px auto 0;
|
|
|
|
|
|
|
|
|
|
.more-comments-icon {
|
|
|
|
|
width: 12px;
|
|
|
|
|
height: 12px;
|
|
|
|
|
margin-left: 10px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.info-box {
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
padding: 0 24px;
|
|
|
|
|
margin-bottom: 20px;
|
|
|
|
|
|
|
|
|
|
.user-info {
|
2023-12-13 18:41:15 +08:00
|
|
|
|
cursor: pointer;
|
|
|
|
|
position: relative;
|
|
|
|
|
|
2023-12-06 15:23:13 +08:00
|
|
|
|
.avatar {
|
|
|
|
|
width: 20px;
|
|
|
|
|
height: 20px;
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
margin-right: 8px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.user-name {
|
|
|
|
|
color: #7f7f7f;
|
|
|
|
|
font-size: 13px;
|
2025-01-21 19:06:13 +08:00
|
|
|
|
margin-right: 10px;
|
2023-12-06 15:23:13 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.homeShare {
|
|
|
|
|
height: 14px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.time {
|
|
|
|
|
font-size: 12px;
|
2024-07-10 10:45:22 +08:00
|
|
|
|
color: #aaaaaa;
|
2023-12-06 15:23:13 +08:00
|
|
|
|
}
|
2025-01-21 19:06:13 +08:00
|
|
|
|
|
|
|
|
|
.operate-item {
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
color: #7f7f7f;
|
|
|
|
|
margin-right: 7px;
|
|
|
|
|
.operate-icon {
|
|
|
|
|
margin-right: 7px;
|
|
|
|
|
}
|
|
|
|
|
}
|
2023-12-06 15:23:13 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.operate-box {
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
height: 54px;
|
|
|
|
|
border-top: 1px dotted #ebebeb;
|
|
|
|
|
padding: 0 24px;
|
2024-07-26 18:49:40 +08:00
|
|
|
|
flex: 1;
|
2025-01-21 19:06:13 +08:00
|
|
|
|
position: relative;
|
2023-12-06 15:23:13 +08:00
|
|
|
|
|
|
|
|
|
.operate-list {
|
|
|
|
|
.operate-item {
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
color: #7f7f7f;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
height: 53px;
|
2025-01-21 19:06:13 +08:00
|
|
|
|
&:not(:first-of-type) {
|
|
|
|
|
margin-left: 36px;
|
|
|
|
|
}
|
2023-12-06 15:23:13 +08:00
|
|
|
|
// background-color: #333333;
|
2025-01-21 19:06:13 +08:00
|
|
|
|
.operate-icon {
|
|
|
|
|
margin-right: 5px;
|
|
|
|
|
}
|
|
|
|
|
// position: relative;
|
2023-12-06 15:23:13 +08:00
|
|
|
|
// z-index: 1;
|
|
|
|
|
|
|
|
|
|
&.commentnum {
|
|
|
|
|
z-index: 1;
|
|
|
|
|
|
|
|
|
|
&::after {
|
|
|
|
|
content: "";
|
|
|
|
|
width: 80px;
|
|
|
|
|
height: 100%;
|
|
|
|
|
background: inherit;
|
|
|
|
|
background-color: rgba(246, 246, 246, 1);
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 0;
|
|
|
|
|
left: 50%;
|
|
|
|
|
z-index: -1;
|
|
|
|
|
transform: translateX(-50%);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.operate-icon {
|
2025-01-21 19:06:13 +08:00
|
|
|
|
margin-right: 5px;
|
2023-12-06 15:23:13 +08:00
|
|
|
|
|
|
|
|
|
&.operate-transmit-icon {
|
|
|
|
|
width: 14px;
|
|
|
|
|
height: 14px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&.operate-comment-icon {
|
|
|
|
|
width: 14px;
|
|
|
|
|
height: 13px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&.operate-collect-icon {
|
|
|
|
|
width: 16px;
|
|
|
|
|
height: 16px;
|
|
|
|
|
}
|
2025-01-21 19:06:13 +08:00
|
|
|
|
|
|
|
|
|
&.operate-like-icon {
|
|
|
|
|
width: 16px;
|
|
|
|
|
height: 16px;
|
|
|
|
|
}
|
2023-12-06 15:23:13 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&.operate-transmit {
|
2025-01-21 19:06:13 +08:00
|
|
|
|
// position: relative;
|
2023-12-06 15:23:13 +08:00
|
|
|
|
|
|
|
|
|
// z-index: 1;
|
|
|
|
|
// &:hover {
|
2023-12-15 17:45:53 +08:00
|
|
|
|
&:hover::after {
|
2023-12-06 15:23:13 +08:00
|
|
|
|
content: "";
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 20px;
|
|
|
|
|
z-index: 10;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.transmit-box {
|
2024-01-31 18:51:05 +08:00
|
|
|
|
// width: 628px;
|
|
|
|
|
width: 635px;
|
2023-12-06 15:23:13 +08:00
|
|
|
|
border: 1px solid rgba(235, 235, 235, 1);
|
|
|
|
|
border-radius: 10px;
|
|
|
|
|
-moz-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.117647058823529);
|
|
|
|
|
-webkit-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.117647058823529);
|
|
|
|
|
box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.117647058823529);
|
|
|
|
|
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 64px;
|
2025-01-21 19:06:13 +08:00
|
|
|
|
left: 0;
|
2023-12-06 15:23:13 +08:00
|
|
|
|
background: #fff;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
padding: 40px 35px 42px;
|
|
|
|
|
z-index: 3;
|
|
|
|
|
|
2023-12-07 11:12:12 +08:00
|
|
|
|
.cross-icon {
|
|
|
|
|
width: 22px;
|
|
|
|
|
height: 22px;
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 6px;
|
|
|
|
|
right: 6px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
padding: 6px;
|
|
|
|
|
}
|
|
|
|
|
|
2023-12-06 15:23:13 +08:00
|
|
|
|
.transmit-title {
|
|
|
|
|
font-weight: 650;
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
color: #000000;
|
|
|
|
|
line-height: 24px;
|
|
|
|
|
margin-bottom: 24px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.transmit-content {
|
|
|
|
|
border: 1px solid rgba(242, 242, 242, 1);
|
|
|
|
|
border-radius: 16px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.transmit-web {
|
|
|
|
|
.transmit-content {
|
|
|
|
|
width: 300px;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
line-height: 24px;
|
|
|
|
|
padding: 14px 16px;
|
|
|
|
|
margin-bottom: 32px;
|
|
|
|
|
|
|
|
|
|
.transmit-headline {
|
|
|
|
|
color: #333333;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.transmit-url {
|
2024-07-10 10:45:22 +08:00
|
|
|
|
color: #aaaaaa;
|
2023-12-06 15:23:13 +08:00
|
|
|
|
word-wrap: break-word;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.transmit-web-btn {
|
|
|
|
|
width: 120px;
|
|
|
|
|
height: 38px;
|
|
|
|
|
background-color: rgba(253, 223, 109, 1);
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
color: #000000;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.transmit-mini {
|
|
|
|
|
.transmit-content {
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
padding: 22px 44px;
|
|
|
|
|
|
|
|
|
|
.transmit-mini-img {
|
|
|
|
|
width: 90px;
|
|
|
|
|
height: 90px;
|
|
|
|
|
margin-bottom: 21px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
color: #555555;
|
|
|
|
|
// line-height: 22px;
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
|
|
|
|
|
.give-sweep {
|
|
|
|
|
width: 12px;
|
|
|
|
|
height: 12px;
|
|
|
|
|
margin-right: 8px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.copyright {
|
|
|
|
|
font-size: 13px;
|
2024-07-10 10:45:22 +08:00
|
|
|
|
color: #aaaaaa;
|
2023-12-15 11:28:35 +08:00
|
|
|
|
margin-top: 10px;
|
|
|
|
|
margin-bottom: 30px;
|
2023-12-06 15:23:13 +08:00
|
|
|
|
text-align: center;
|
|
|
|
|
height: 32px;
|
|
|
|
|
background-color: rgba(242, 242, 242, 1);
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mobile-phone-check {
|
|
|
|
|
width: 150px;
|
|
|
|
|
padding: 10px 0;
|
|
|
|
|
margin-bottom: 50px;
|
|
|
|
|
// height: 36px;
|
2024-07-10 10:45:22 +08:00
|
|
|
|
color: #7f7f7f;
|
2023-12-06 15:23:13 +08:00
|
|
|
|
font-size: 13px;
|
|
|
|
|
border: 1px solid rgba(235, 235, 235, 1);
|
|
|
|
|
border-radius: 20px;
|
2023-12-15 11:28:35 +08:00
|
|
|
|
margin: 39px auto 50px;
|
2023-12-06 15:23:13 +08:00
|
|
|
|
cursor: pointer;
|
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
|
|
.QRCode-icon {
|
|
|
|
|
width: 16px;
|
|
|
|
|
height: 16px;
|
|
|
|
|
margin-right: 10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&:hover .QRCode-pop {
|
|
|
|
|
display: flex;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.QRCode-pop {
|
|
|
|
|
display: none;
|
|
|
|
|
position: absolute;
|
|
|
|
|
bottom: 45px;
|
|
|
|
|
width: 200px;
|
|
|
|
|
height: 200px;
|
|
|
|
|
background-color: rgba(255, 255, 255, 1);
|
|
|
|
|
border-radius: 17px;
|
|
|
|
|
-moz-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.16078431372549);
|
|
|
|
|
-webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.16078431372549);
|
|
|
|
|
box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.16078431372549);
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
z-index: 1;
|
|
|
|
|
|
|
|
|
|
.offer-mini-QRcode {
|
|
|
|
|
width: 113px;
|
|
|
|
|
// height: 113px;
|
|
|
|
|
margin-bottom: 18px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.QRCode-hint {
|
|
|
|
|
.QRCode-img {
|
|
|
|
|
width: 12px;
|
|
|
|
|
height: 12px;
|
|
|
|
|
margin-right: 12px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
color: #333333;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.empty-box {
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
margin-bottom: 16px;
|
|
|
|
|
|
|
|
|
|
.dot-list {
|
|
|
|
|
margin-bottom: 8px;
|
|
|
|
|
|
|
|
|
|
.dot-item {
|
|
|
|
|
width: 8px;
|
|
|
|
|
height: 8px;
|
|
|
|
|
|
|
|
|
|
&:not(:last-of-type) {
|
|
|
|
|
margin-right: 5px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.empty-icon {
|
|
|
|
|
width: 100px;
|
|
|
|
|
height: 100px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.empty-hint {
|
2024-07-10 10:45:22 +08:00
|
|
|
|
color: #7f7f7f;
|
2023-12-06 15:23:13 +08:00
|
|
|
|
line-height: 22px;
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.issue-box {
|
|
|
|
|
.choosing-theme {
|
|
|
|
|
width: 530px;
|
|
|
|
|
// height: 329px;
|
|
|
|
|
background: inherit;
|
|
|
|
|
background-color: rgba(255, 255, 255, 1);
|
|
|
|
|
border: none;
|
|
|
|
|
border-radius: 10px;
|
|
|
|
|
-moz-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.117647058823529);
|
|
|
|
|
-webkit-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.117647058823529);
|
|
|
|
|
box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.117647058823529);
|
|
|
|
|
padding: 30px 36px 45px;
|
|
|
|
|
|
2023-12-07 18:58:40 +08:00
|
|
|
|
.titletitle {
|
2023-12-06 15:23:13 +08:00
|
|
|
|
font-size: 14px;
|
|
|
|
|
font-weight: 650;
|
|
|
|
|
color: #000000;
|
|
|
|
|
position: relative;
|
|
|
|
|
margin-bottom: 30px;
|
|
|
|
|
|
|
|
|
|
&::before {
|
|
|
|
|
content: "";
|
|
|
|
|
width: 5px;
|
|
|
|
|
height: 12px;
|
|
|
|
|
background-color: rgba(114, 219, 134, 1);
|
|
|
|
|
border-radius: 3px;
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 50%;
|
|
|
|
|
left: -15px;
|
|
|
|
|
transform: translateY(-50%);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.theme-list {
|
|
|
|
|
// justify-content: space-between;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
|
|
|
|
|
.theme-stair-box {
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
// border-bottom: 1px dotted #dedede;
|
|
|
|
|
// margin-bottom: 20px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.theme-item {
|
|
|
|
|
width: 106px;
|
|
|
|
|
height: 36px;
|
|
|
|
|
background-color: rgba(246, 246, 246, 1);
|
|
|
|
|
border-radius: 5px;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
color: #333333;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
|
|
margin-bottom: 10px;
|
|
|
|
|
|
|
|
|
|
&:not(:nth-child(4n)) {
|
|
|
|
|
margin-right: 11px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
|
color: #000000;
|
|
|
|
|
background-color: rgba(253, 223, 109, 1);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.issue-form {
|
|
|
|
|
padding-top: 30px;
|
|
|
|
|
// width: 721px;
|
|
|
|
|
// height: 520px;
|
|
|
|
|
width: 720px;
|
|
|
|
|
height: 520px;
|
|
|
|
|
// background-color: #fff;
|
|
|
|
|
border-radius: 10px;
|
|
|
|
|
position: relative;
|
|
|
|
|
z-index: 1;
|
|
|
|
|
// background-image: url(../img/issue-bj.svg);
|
|
|
|
|
background-position: -4px -3px;
|
|
|
|
|
|
|
|
|
|
.issue-bj {
|
|
|
|
|
position: absolute;
|
|
|
|
|
left: -4px;
|
|
|
|
|
top: -3px;
|
|
|
|
|
width: 727px;
|
|
|
|
|
height: 526px;
|
|
|
|
|
z-index: -1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.q {
|
|
|
|
|
width: 20px;
|
|
|
|
|
height: 20px;
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
font-weight: 650;
|
|
|
|
|
font-style: normal;
|
|
|
|
|
font-size: 13px;
|
2024-07-10 10:45:22 +08:00
|
|
|
|
color: #ffffff;
|
2023-12-06 15:23:13 +08:00
|
|
|
|
background-color: #72db86;
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: -1px;
|
|
|
|
|
left: -1px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cross-icon {
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 12px;
|
|
|
|
|
right: 12px;
|
|
|
|
|
width: 12px;
|
|
|
|
|
height: 12px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
input,
|
|
|
|
|
textarea {
|
|
|
|
|
border: none;
|
|
|
|
|
outline: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.issue-input {
|
|
|
|
|
padding: 0 30px;
|
|
|
|
|
width: 720px;
|
|
|
|
|
height: 80px;
|
|
|
|
|
border-bottom: 1px dotted #ebebeb;
|
|
|
|
|
|
|
|
|
|
textarea {
|
|
|
|
|
font-size: 18px;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
resize: none;
|
|
|
|
|
|
|
|
|
|
&::placeholder {
|
2024-07-10 10:45:22 +08:00
|
|
|
|
color: #aaaaaa;
|
2023-12-06 15:23:13 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.issue-replenish {
|
|
|
|
|
width: 720px;
|
|
|
|
|
height: 360px;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
padding: 20px 30px;
|
|
|
|
|
resize: none;
|
|
|
|
|
display: block;
|
|
|
|
|
|
|
|
|
|
&::placeholder {
|
2024-07-10 10:45:22 +08:00
|
|
|
|
color: #aaaaaa;
|
2023-12-06 15:23:13 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.issue-bottom {
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
height: 50px;
|
|
|
|
|
background-color: rgba(246, 246, 246, 1);
|
|
|
|
|
border-radius: 0 0 10px 10px;
|
|
|
|
|
padding-left: 30px;
|
|
|
|
|
|
|
|
|
|
.option-box {
|
|
|
|
|
font-size: 14px;
|
2024-07-10 10:45:22 +08:00
|
|
|
|
color: #7f7f7f;
|
2023-12-06 15:23:13 +08:00
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
|
|
.option-icon {
|
|
|
|
|
width: 12px;
|
|
|
|
|
height: 12px;
|
|
|
|
|
margin-right: 6px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.issue-btn {
|
|
|
|
|
width: 120px;
|
|
|
|
|
height: 50px;
|
|
|
|
|
background-color: rgba(253, 223, 109, 1);
|
|
|
|
|
border-radius: 0 0 10px 0;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
color: #333333;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.i-answer-box {
|
|
|
|
|
width: 720px;
|
|
|
|
|
height: 660px;
|
2023-12-08 19:08:55 +08:00
|
|
|
|
max-height: 92vh;
|
2023-12-06 15:23:13 +08:00
|
|
|
|
background-color: rgba(255, 255, 255, 1);
|
|
|
|
|
// border: 1px solid rgba(235, 235, 235, 1);
|
|
|
|
|
border-radius: 10px;
|
|
|
|
|
-moz-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.117647058823529);
|
|
|
|
|
-webkit-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.117647058823529);
|
|
|
|
|
box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.117647058823529);
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
|
|
.close-icon {
|
|
|
|
|
width: 12px;
|
|
|
|
|
height: 12px;
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 12px;
|
|
|
|
|
right: 12px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.question-header {
|
|
|
|
|
padding: 25px 8px 25px 20px;
|
|
|
|
|
border-bottom: 1px solid #ebebeb;
|
|
|
|
|
|
|
|
|
|
.question-title {
|
|
|
|
|
.question-icon {
|
|
|
|
|
width: 20px;
|
|
|
|
|
height: 20px;
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
background-color: #72db86;
|
|
|
|
|
font-weight: 650;
|
|
|
|
|
font-size: 13px;
|
2024-07-10 10:45:22 +08:00
|
|
|
|
color: #ffffff;
|
2023-12-06 15:23:13 +08:00
|
|
|
|
margin-right: 12px;
|
|
|
|
|
margin-top: 3px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
font-size: 18px;
|
|
|
|
|
color: #000000;
|
|
|
|
|
font-weight: 650;
|
|
|
|
|
// line-height: 22px;
|
|
|
|
|
margin-bottom: 20px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.question-replenish {
|
|
|
|
|
// width: 642px;
|
|
|
|
|
max-height: 87px;
|
2024-07-10 10:45:22 +08:00
|
|
|
|
color: #7f7f7f;
|
2023-12-06 15:23:13 +08:00
|
|
|
|
line-height: 24px;
|
|
|
|
|
overflow: auto;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
padding-left: 33px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.question-middle {
|
|
|
|
|
flex: 1;
|
|
|
|
|
padding: 23px 20px;
|
2023-12-08 19:08:55 +08:00
|
|
|
|
height: calc(100% - 172px);
|
2023-12-06 15:23:13 +08:00
|
|
|
|
|
|
|
|
|
.question-icon {
|
|
|
|
|
font-weight: 650;
|
|
|
|
|
font-size: 13px;
|
2024-07-10 10:45:22 +08:00
|
|
|
|
color: #ffffff;
|
2023-12-06 15:23:13 +08:00
|
|
|
|
width: 20px;
|
|
|
|
|
height: 20px;
|
|
|
|
|
background-color: #62b1ff;
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
margin-right: 12px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.question-textarea {
|
|
|
|
|
// height: 412px;
|
|
|
|
|
width: 100%;
|
|
|
|
|
border: none;
|
|
|
|
|
outline: none;
|
|
|
|
|
background-color: transparent;
|
|
|
|
|
resize: none;
|
|
|
|
|
overflow: auto;
|
2023-12-08 19:08:55 +08:00
|
|
|
|
font-size: 14px;
|
2023-12-06 15:23:13 +08:00
|
|
|
|
|
|
|
|
|
&.placeholder::after {
|
2023-12-13 14:06:08 +08:00
|
|
|
|
content: "输入图文内容回答提问(支持直接粘贴图片)";
|
2023-12-06 15:23:13 +08:00
|
|
|
|
color: #999;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
img {
|
|
|
|
|
max-width: 100%;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.detail-image-mask {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
max-width: none;
|
|
|
|
|
max-height: none;
|
|
|
|
|
border: none;
|
|
|
|
|
position: fixed;
|
|
|
|
|
top: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
background-color: rgba(255, 255, 255, 0.8);
|
|
|
|
|
z-index: 100;
|
|
|
|
|
|
|
|
|
|
.detail-image {
|
|
|
|
|
width: 80vw;
|
|
|
|
|
height: 80vh;
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
background-color: #111;
|
|
|
|
|
|
|
|
|
|
.detail-img {
|
|
|
|
|
max-width: 100%;
|
|
|
|
|
max-height: 100%;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2023-12-13 14:06:08 +08:00
|
|
|
|
.box-item {
|
|
|
|
|
// height: 16px;
|
|
|
|
|
position: fixed;
|
|
|
|
|
min-width: 380px;
|
2024-07-10 10:45:22 +08:00
|
|
|
|
border: 1px solid #ebeef5;
|
2023-12-13 14:06:08 +08:00
|
|
|
|
border-radius: 4px;
|
|
|
|
|
position: fixed;
|
|
|
|
|
left: 50%;
|
|
|
|
|
transform: translateX(-50%);
|
|
|
|
|
background-color: #edf2fc;
|
2024-07-10 10:45:22 +08:00
|
|
|
|
transition: opacity 0.3s, transform 0.4s, top 0.4s;
|
2023-12-13 14:06:08 +08:00
|
|
|
|
padding: 15px 15px 15px 20px;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
z-index: 5000;
|
2023-12-06 15:23:13 +08:00
|
|
|
|
|
2023-12-13 14:06:08 +08:00
|
|
|
|
&-success {
|
|
|
|
|
background-color: #f0f9eb;
|
|
|
|
|
border-color: #e1f3d8;
|
|
|
|
|
color: #67c23a;
|
|
|
|
|
}
|
2023-12-06 15:23:13 +08:00
|
|
|
|
|
2023-12-13 14:06:08 +08:00
|
|
|
|
&-warning {
|
|
|
|
|
background-color: #fdf6ec;
|
|
|
|
|
border-color: #faecd8;
|
|
|
|
|
color: #e6a23c;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&-error {
|
|
|
|
|
background-color: #fef0f0;
|
|
|
|
|
border-color: #fde2e2;
|
|
|
|
|
color: #f56c6c;
|
|
|
|
|
}
|
2023-12-06 15:23:13 +08:00
|
|
|
|
}
|
2024-07-30 12:28:12 +08:00
|
|
|
|
}
|