diff --git a/css/details.css b/css/details.css
index 235ea08..46711ea 100644
--- a/css/details.css
+++ b/css/details.css
@@ -44,6 +44,9 @@
font-size: 13px;
color: #aaaaaa;
}
+#details .matter .matter-left .matter-head .operate {
+ position: relative;
+}
#details .matter .matter-left .matter-head .operate .view {
font-size: 12px;
color: #aaaaaa;
@@ -65,6 +68,53 @@
width: 18px;
height: 18px;
}
+#details .matter .matter-left .matter-head .operate .mask {
+ position: fixed;
+ top: 0;
+ left: 0;
+ width: 100vw;
+ height: 100vh;
+ z-index: 2;
+ background-color: rgba(0, 0, 0, 0.1);
+}
+#details .matter .matter-left .matter-head .operate .operate {
+ position: absolute;
+ top: 23px;
+ right: 0;
+ width: 100px;
+ background-color: #f2f2f2;
+ border-radius: 8px;
+ padding: 5px;
+ z-index: 2;
+}
+#details .matter .matter-left .matter-head .operate .operate::after {
+ content: "";
+ width: calc(100% - 10px);
+ height: calc(100% - 10px);
+ position: absolute;
+ top: 50%;
+ left: 50%;
+ display: block;
+ transform: translate(-50%, -50%);
+ background-color: #fbfbfb;
+ z-index: -1;
+}
+#details .matter .matter-left .matter-head .operate .operate .item {
+ text-align: center;
+ font-size: 18px;
+ color: #333333;
+ padding: 14px 0;
+ cursor: pointer;
+}
+#details .matter .matter-left .matter-head .operate .operate .item:first-of-type {
+ padding-top: 24px;
+}
+#details .matter .matter-left .matter-head .operate .operate .item:last-of-type {
+ padding-bottom: 24px;
+}
+#details .matter .matter-left .matter-head .operate .operate .item:not(:last-of-type) {
+ border-bottom: 1px dotted #d7d7d7;
+}
#details .matter .matter-left .label {
padding: 20px 30px 20px;
flex-wrap: wrap;
@@ -140,6 +190,67 @@
#details .matter .matter-left .action-bar .action-bar-item:not(:last-child) {
margin-right: 60px;
}
+#details .matter .matter-left .action-bar .action-bar-item.share {
+ position: relative;
+}
+#details .matter .matter-left .action-bar .action-bar-item.share:hover .share-box {
+ display: flex;
+}
+#details .matter .matter-left .action-bar .action-bar-item .share-box {
+ z-index: 2;
+ position: absolute;
+ left: 50%;
+ transform: translateX(-50%);
+ bottom: 42px;
+ width: 130px;
+ height: 100px;
+ background-color: #ffffff;
+ border-radius: 6px;
+ box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.16862745);
+ flex-direction: column;
+ display: none;
+}
+#details .matter .matter-left .action-bar .action-bar-item .share-box .share-item {
+ width: 100%;
+ height: 40px;
+ color: #555555;
+ font-size: 14px;
+}
+#details .matter .matter-left .action-bar .action-bar-item .share-box .share-item:hover {
+ background-color: #f0fafd;
+}
+#details .matter .matter-left .action-bar .action-bar-item .share-box .share-item .share-icon {
+ width: 18px;
+ height: 18px;
+ margin-right: 13px;
+}
+#details .matter .matter-left .action-bar .action-bar-item .share-box .share-item.wenxin:hover .QRcode-box {
+ display: flex;
+}
+#details .matter .matter-left .action-bar .action-bar-item .share-box .share-item .QRcode-box {
+ z-index: 1;
+ display: none;
+ position: absolute;
+ top: 48px;
+ left: 100%;
+ width: 140px;
+ height: 166px;
+ background-color: #ffffff;
+ border-radius: 6px;
+ padding: 20px;
+ box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.16862745);
+ flex-direction: column;
+}
+#details .matter .matter-left .action-bar .action-bar-item .share-box .share-item .QRcode-box .QRcode {
+ width: 100px;
+ height: 100px;
+ margin-bottom: 4px;
+}
+#details .matter .matter-left .action-bar .action-bar-item .share-box .share-item .QRcode-box .text {
+ color: #555555;
+ font-size: 14px;
+ line-height: normal;
+}
#details .matter .matter-left .related .related-head {
padding-left: 30px;
padding-top: 20px;
@@ -320,6 +431,7 @@
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
+ z-index: 2;
}
#details .coins-area .coins-box {
width: 624px;
diff --git a/css/details.less b/css/details.less
index 01ebc93..b4f3f18 100644
--- a/css/details.less
+++ b/css/details.less
@@ -50,6 +50,7 @@
}
.operate {
+ position: relative;
.view {
.icon {
width: 13px;
@@ -74,6 +75,60 @@
height: 18px;
}
}
+
+ .mask {
+ position: fixed;
+ top: 0;
+ left: 0;
+ width: 100vw;
+ height: 100vh;
+ z-index: 2;
+ background-color: rgba(0, 0, 0, 0.1);
+ }
+
+ .operate {
+ position: absolute;
+ top: 23px;
+ right: 0;
+ width: 100px;
+ background-color: rgba(242, 242, 242, 1);
+ border-radius: 8px;
+ padding: 5px;
+ z-index: 2;
+
+ &::after {
+ content: "";
+ width: calc(100% - 10px);
+ height: calc(100% - 10px);
+ position: absolute;
+ top: 50%;
+ left: 50%;
+ display: block;
+ transform: translate(-50%, -50%);
+ background-color: rgba(251, 251, 251, 1);
+ z-index: -1;
+ }
+
+ .item {
+ text-align: center;
+ font-size: 18px;
+ color: #333333;
+ padding: 14px 0;
+ cursor: pointer;
+
+ &:first-of-type {
+ padding-top: 24px;
+ }
+
+ &:last-of-type {
+ padding-bottom: 24px;
+ }
+
+ &:not(:last-of-type) {
+ border-bottom: 1px dotted #d7d7d7;
+ }
+ }
+ }
}
}
@@ -161,6 +216,80 @@
&:not(:last-child) {
margin-right: 60px;
}
+
+ &.share {
+ position: relative;
+ &:hover {
+ .share-box {
+ display: flex;
+ }
+ }
+ }
+
+ .share-box {
+ z-index: 2;
+ position: absolute;
+ left: 50%;
+ transform: translateX(-50%);
+ bottom: 42px;
+ width: 130px;
+ height: 100px;
+ background-color: rgba(255, 255, 255, 1);
+ border-radius: 6px;
+ box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.168627450980392);
+ flex-direction: column;
+ display: none;
+
+ .share-item {
+ width: 100%;
+ height: 40px;
+ color: #555555;
+ font-size: 14px;
+
+ &:hover {
+ background-color: rgba(240, 250, 253, 1);
+ }
+
+ .share-icon {
+ width: 18px;
+ height: 18px;
+ margin-right: 13px;
+ }
+
+ &.wenxin:hover {
+ .QRcode-box {
+ display: flex;
+ }
+ }
+
+ .QRcode-box {
+ z-index: 1;
+ display: none;
+ position: absolute;
+ top: 48px;
+ left: 100%;
+ width: 140px;
+ height: 166px;
+ background-color: #ffffff;
+ border-radius: 6px;
+ padding: 20px;
+ box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.16862745);
+ flex-direction: column;
+
+ .QRcode {
+ width: 100px;
+ height: 100px;
+ margin-bottom: 4px;
+ }
+
+ .text {
+ color: #555555;
+ font-size: 14px;
+ line-height: normal;
+ }
+ }
+ }
+ }
}
}
@@ -380,6 +509,7 @@
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
+ z-index: 2;
.coins-box {
width: 624px;
diff --git a/css/edit.css b/css/edit.css
new file mode 100644
index 0000000..1b5b2bc
--- /dev/null
+++ b/css/edit.css
@@ -0,0 +1,266 @@
+#edit {
+ margin: 0 auto;
+}
+#edit a {
+ text-decoration: none;
+}
+#edit .edit-head {
+ width: 100%;
+ height: 60px;
+ background: linear-gradient(180deg, #ffffff -41%, #eef8f9 96%);
+ margin-bottom: 20px;
+}
+#edit .edit-head .edit-head-container {
+ width: 1200px;
+ margin: 0 auto;
+}
+#edit .edit-head .edit-head-container .icon {
+ width: 135px;
+ height: 33px;
+ margin-right: 20px;
+}
+#edit .edit-head .edit-head-container .dot {
+ width: 6px;
+ height: 6px;
+ background-color: #d35110;
+ border-radius: 50%;
+ margin-right: 20px;
+}
+#edit .edit-head .edit-head-container .title {
+ font-family: "PingFangSC-Semibold", "PingFang SC Semibold", "PingFang SC", sans-serif;
+ font-weight: 650;
+ font-style: normal;
+ font-size: 18px;
+ color: #000000;
+ margin-right: 20px;
+}
+#edit .edit-head .edit-head-container .hint {
+ font-size: 13px;
+ color: #aaaaaa;
+}
+#edit .edit-head .edit-head-container .avatar {
+ width: 32px;
+ height: 32px;
+ border-radius: 50%;
+}
+#edit .edit-container {
+ width: 890px;
+ background-color: #ffffff;
+ border: 1px solid #e9eef2;
+ border-radius: 10px;
+ margin: 0 auto;
+}
+#edit .edit-container .title-input {
+ width: 100%;
+ height: 100px;
+ border: none;
+ outline: none;
+ border-radius: 10px 10px 0 0;
+ font-family: "PingFangSC-Semibold", "PingFang SC Semibold", "PingFang SC", sans-serif;
+ font-weight: 650;
+ font-style: normal;
+ font-size: 24px;
+ padding: 0 36px;
+ border-bottom: 1px solid #ebebeb;
+}
+#edit .edit-container .editor-toolbar {
+ height: 36px;
+ background-color: #fbfbfb;
+ padding-left: 35px;
+}
+#edit .edit-container .editor-toolbar .toolbar-item {
+ cursor: pointer;
+ height: 100%;
+ font-family: "PingFangSC-Regular", "PingFang SC", sans-serif;
+ font-weight: 400;
+ font-style: normal;
+ font-size: 14px;
+ color: #000000;
+ line-height: 23px;
+ margin-right: 50px;
+ position: relative;
+}
+#edit .edit-container .editor-toolbar .toolbar-item .icon {
+ width: 16px;
+ height: 16px;
+ margin-right: 5px;
+}
+#edit .edit-container .editor-toolbar .toolbar-item .file {
+ opacity: 0;
+ /* 隐藏输入框 */
+ background: transparent;
+ border: none;
+ position: absolute;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ cursor: pointer;
+}
+#edit .edit-container .editor-toolbar .toolbar-item .file::after {
+ content: "";
+ width: 100%;
+ height: 100%;
+ position: absolute;
+ top: 0;
+ left: 0;
+}
+#edit .edit-container .editor-toolbar .toolbar-item.expression.pitch .emoji-box-mask {
+ display: block;
+}
+#edit .edit-container .editor-toolbar .toolbar-item.expression.pitch .emoji-box {
+ display: flex;
+}
+#edit .edit-container .editor-toolbar .toolbar-item .emoji-box-mask {
+ position: fixed;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ z-index: 1;
+ background-color: rgba(0, 0, 0, 0.20392157);
+ display: none;
+}
+#edit .edit-container .editor-toolbar .toolbar-item .emoji-box {
+ width: 582px;
+ border-radius: 8px;
+ background-color: #fff;
+ filter: drop-shadow(0 0 11px rgba(0, 0, 0, 0.1));
+ top: 45px;
+ position: absolute;
+ z-index: 1;
+ left: 50%;
+ transform: translateX(-50%);
+ border: 1px solid #ebebeb;
+ display: none;
+ flex-wrap: wrap;
+ font-size: 22px;
+ padding: 8px;
+}
+#edit .edit-container .editor-toolbar .toolbar-item .emoji-box::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: 50%;
+ transform: translateX(-50%);
+}
+#edit .edit-container .editor-toolbar .toolbar-item .emoji-box .emoji-icon {
+ margin: 5px;
+ cursor: pointer;
+}
+#edit .edit-container .content-input {
+ min-height: 509px;
+ font-family: "PingFangSC-Regular", "PingFang SC", sans-serif;
+ font-size: 15px;
+ color: #555555;
+ line-height: 26px;
+ outline: none;
+ padding: 36px 36px 20px;
+ white-space: break-spaces;
+ position: relative;
+}
+#edit .edit-container .content-input.empty:before {
+ content: "输入正文";
+ pointer-events: none;
+ position: absolute;
+ top: 36px;
+ left: 36px;
+ color: #757575;
+}
+#edit .edit-container .content-input img {
+ display: block;
+ max-width: 100%;
+ height: 220px;
+}
+#edit .edit-container .content-input h2 {
+ color: #000000;
+ font-size: 18px;
+ line-height: 30px;
+ font-family: "PingFangSC-Semibold", "PingFang SC Semibold", "PingFang SC", sans-serif;
+ font-weight: 650;
+}
+#edit .edit-container .content-input .blue {
+ color: #026277;
+ margin: 0 4px;
+}
+#edit .edit-container .content-input .fill {
+ width: 100%;
+ height: 26px;
+}
+#edit .edit-container .tags-list {
+ padding: 0 36px;
+ margin-bottom: 10px;
+ flex-wrap: wrap;
+}
+#edit .edit-container .tags-list .tag-item {
+ margin-bottom: 10px;
+ height: 32px;
+ line-height: 32px;
+ background-color: #f6f6f6;
+ border-radius: 73px;
+ padding: 0 14px;
+ font-size: 14px;
+ color: #606060;
+ margin-right: 10px;
+ cursor: pointer;
+}
+#edit .edit-container .action-buttons {
+ border-top: 1px solid #ebebeb;
+ padding: 0 36px;
+ justify-content: space-between;
+}
+#edit .edit-container .action-buttons .left-section {
+ font-size: 14px;
+ color: #333;
+ cursor: pointer;
+}
+#edit .edit-container .action-buttons .left-section .icon-pitch {
+ width: 16px;
+ height: 16px;
+ margin-right: 5px;
+}
+#edit .edit-container .action-buttons .left-section .icon {
+ width: 16px;
+ height: 16px;
+ border: 1px solid #797979;
+ margin-right: 5px;
+}
+#edit .edit-container .action-buttons .right-section {
+ height: 102px;
+}
+#edit .edit-container .action-buttons .right-section .draft-btn,
+#edit .edit-container .action-buttons .right-section .publish-btn {
+ font-size: 14px;
+ border-radius: 8px;
+ cursor: pointer;
+}
+#edit .edit-container .action-buttons .right-section .draft-btn {
+ width: 100px;
+ height: 42px;
+ line-height: 42px;
+ background-color: rgba(242, 242, 242, 0.69803922);
+ color: #7f7f7f;
+ font-size: 14px;
+ margin-right: 15px;
+}
+#edit .edit-container .action-buttons .right-section .draft-btn .icon {
+ width: 20px;
+ height: 20px;
+ margin-right: 6px;
+}
+#edit .edit-container .action-buttons .right-section .publish-btn {
+ width: 150px;
+ height: 40px;
+ line-height: 40px;
+ font-family: "PingFangSC-Semibold", "PingFang SC Semibold", "PingFang SC", sans-serif;
+ font-weight: 650;
+ font-style: normal;
+ font-size: 16px;
+ color: #000000;
+ background-color: #50e3c2;
+}
diff --git a/css/edit.less b/css/edit.less
new file mode 100644
index 0000000..b33bf7a
--- /dev/null
+++ b/css/edit.less
@@ -0,0 +1,302 @@
+#edit {
+ margin: 0 auto;
+
+ a {
+ text-decoration: none;
+ }
+
+ .edit-head {
+ width: 100%;
+ height: 60px;
+ background: linear-gradient(180deg, rgba(255, 255, 255, 1) -41%, rgba(238, 248, 249, 1) 96%);
+ margin-bottom: 20px;
+
+ .edit-head-container {
+ width: 1200px;
+ margin: 0 auto;
+ .icon {
+ width: 135px;
+ height: 33px;
+ margin-right: 20px;
+ }
+
+ .dot {
+ width: 6px;
+ height: 6px;
+ background-color: #d35110;
+ border-radius: 50%;
+ margin-right: 20px;
+ }
+
+ .title {
+ font-family: "PingFangSC-Semibold", "PingFang SC Semibold", "PingFang SC", sans-serif;
+ font-weight: 650;
+ font-style: normal;
+ font-size: 18px;
+ color: #000000;
+ margin-right: 20px;
+ }
+
+ .hint {
+ font-size: 13px;
+ color: #aaaaaa;
+ }
+
+ .avatar {
+ width: 32px;
+ height: 32px;
+ border-radius: 50%;
+ ;
+ }
+ }
+ }
+
+ .edit-container {
+ width: 890px;
+ background-color: rgba(255, 255, 255, 1);
+ border: 1px solid rgba(233, 238, 242, 1);
+ border-radius: 10px;
+ margin: 0 auto;
+
+ .title-input {
+ width: 100%;
+ height: 100px;
+ border: none;
+ outline: none;
+ border-radius: 10px 10px 0 0;
+ font-family: "PingFangSC-Semibold", "PingFang SC Semibold", "PingFang SC", sans-serif;
+ font-weight: 650;
+ font-style: normal;
+ font-size: 24px;
+ padding: 0 36px;
+ border-bottom: 1px solid #ebebeb;
+ }
+
+ .editor-toolbar {
+ height: 36px;
+ background-color: rgba(251, 251, 251, 1);
+ padding-left: 35px;
+ .toolbar-item {
+ .icon {
+ width: 16px;
+ height: 16px;
+ margin-right: 5px;
+ }
+
+ cursor: pointer;
+ height: 100%;
+ font-family: "PingFangSC-Regular", "PingFang SC", sans-serif;
+ font-weight: 400;
+ font-style: normal;
+ font-size: 14px;
+ color: #000000;
+ line-height: 23px;
+ margin-right: 50px;
+ position: relative;
+
+ .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;
+ }
+ }
+
+ &.expression.pitch {
+ .emoji-box-mask {
+ display: block;
+ }
+
+ .emoji-box {
+ display: flex;
+ }
+ }
+
+ .emoji-box-mask {
+ position: fixed;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ z-index: 1;
+ background-color: rgba(0, 0, 0, 0.20392157);
+ display: none;
+ }
+
+ .emoji-box {
+ width: 582px;
+ border-radius: 8px;
+ background-color: #fff;
+ filter: drop-shadow(0 0 11px rgba(0, 0, 0, 0.1));
+ top: 45px;
+ position: absolute;
+ z-index: 1;
+ left: 50%;
+ transform: translateX(-50%);
+ border: 1px solid #ebebeb;
+ 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: 50%;
+ transform: translateX(-50%);
+ }
+
+ .emoji-icon {
+ margin: 5px;
+ cursor: pointer;
+ }
+ }
+ }
+ }
+
+ .content-input {
+ min-height: 509px;
+ font-family: "PingFangSC-Regular", "PingFang SC", sans-serif;
+ font-size: 15px;
+ color: #555555;
+ line-height: 26px;
+ outline: none;
+ padding: 36px 36px 20px;
+ white-space: break-spaces;
+ position: relative;
+
+ &.empty:before {
+ content: "输入正文";
+ pointer-events: none;
+ position: absolute;
+ top: 36px;
+ left: 36px;
+ color: rgba(117, 117, 117, 1);
+ }
+
+ img {
+ display: block;
+ max-width: 100%;
+ height: 220px;
+ }
+
+ h2 {
+ color: #000000;
+ font-size: 18px;
+ line-height: 30px;
+
+ font-family: "PingFangSC-Semibold", "PingFang SC Semibold", "PingFang SC", sans-serif;
+ font-weight: 650;
+ }
+
+ .blue {
+ color: #026277;
+ margin: 0 4px;
+ }
+
+ .fill {
+ width: 100%;
+ height: 26px;
+ }
+ }
+
+ .tags-list {
+ padding: 0 36px;
+ margin-bottom: 10px;
+ flex-wrap: wrap;
+ .tag-item {
+ margin-bottom: 10px;
+ height: 32px;
+ line-height: 32px;
+ background-color: rgba(246, 246, 246, 1);
+ border-radius: 73px;
+ padding: 0 14px;
+ font-size: 14px;
+ color: #606060;
+ margin-right: 10px;
+ cursor: pointer;
+ }
+ }
+
+ .action-buttons {
+ border-top: 1px solid #ebebeb;
+ padding: 0 36px;
+ justify-content: space-between;
+
+ .left-section {
+ .icon-pitch {
+ width: 16px;
+ height: 16px;
+ margin-right: 5px;
+ }
+
+ .icon {
+ width: 16px;
+ height: 16px;
+ border: 1px solid #797979;
+ margin-right: 5px;
+ }
+
+ font-size: 14px;
+ color: #333;
+ cursor: pointer;
+ }
+
+ .right-section {
+ height: 102px;
+ .draft-btn,
+ .publish-btn {
+ font-size: 14px;
+ border-radius: 8px;
+ cursor: pointer;
+ }
+
+ .draft-btn {
+ width: 100px;
+ height: 42px;
+ line-height: 42px;
+ background-color: rgba(242, 242, 242, 0.698039215686274);
+ color: #7f7f7f;
+ font-size: 14px;
+ margin-right: 15px;
+
+ .icon {
+ width: 20px;
+ height: 20px;
+ margin-right: 6px;
+ }
+ }
+ .publish-btn {
+ width: 150px;
+ height: 40px;
+ line-height: 40px;
+ font-family: "PingFangSC-Semibold", "PingFang SC Semibold", "PingFang SC", sans-serif;
+ font-weight: 650;
+ font-style: normal;
+ font-size: 16px;
+ color: #000000;
+ background-color: rgba(80, 227, 194, 1);
+ }
+ }
+ }
+ }
+}
diff --git a/css/index.css b/css/index.css
index 07e0652..0746044 100644
--- a/css/index.css
+++ b/css/index.css
@@ -304,10 +304,8 @@
margin-bottom: 10px;
}
#appIndex .header-content-box .header-content-right .group-box .group {
- background-color: #f6f6f6;
flex-wrap: wrap;
height: 100%;
- border-radius: 8px;
}
#appIndex .header-content-box .header-content-right .group-box .group .group-item {
width: 50%;
@@ -316,10 +314,23 @@
color: #333;
text-decoration: none;
flex-direction: column;
- overflow: hidden;
+ background-color: #f6f6f6;
font-size: 14px;
text-align: center;
line-height: 22px;
+ position: relative;
+}
+#appIndex .header-content-box .header-content-right .group-box .group .group-item:nth-child(1) {
+ border-top-left-radius: 8px;
+}
+#appIndex .header-content-box .header-content-right .group-box .group .group-item:nth-child(2) {
+ border-top-right-radius: 8px;
+}
+#appIndex .header-content-box .header-content-right .group-box .group .group-item:nth-child(3) {
+ border-bottom-left-radius: 8px;
+}
+#appIndex .header-content-box .header-content-right .group-box .group .group-item:nth-child(4) {
+ border-bottom-right-radius: 8px;
}
#appIndex .header-content-box .header-content-right .group-box .group .group-item:nth-child(odd) {
border-right: 1px solid #ebebeb;
@@ -343,6 +354,31 @@
#appIndex .header-content-box .header-content-right .group-box .group .group-item .subtitle {
color: #555555;
}
+#appIndex .header-content-box .header-content-right .group-box .group .group-item:hover .QRcode-box {
+ display: flex;
+}
+#appIndex .header-content-box .header-content-right .group-box .group .group-item .QRcode-box {
+ z-index: 1;
+ display: none;
+ position: absolute;
+ top: 64px;
+ width: 140px;
+ height: 166px;
+ background-color: #ffffff;
+ border-radius: 6px;
+ padding: 20px;
+ box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.16862745);
+ flex-direction: column;
+}
+#appIndex .header-content-box .header-content-right .group-box .group .group-item .QRcode-box .QRcode {
+ width: 100px;
+ height: 100px;
+ margin-bottom: 4px;
+}
+#appIndex .header-content-box .header-content-right .group-box .group .group-item .QRcode-box .text {
+ color: #555555;
+ font-size: 14px;
+}
#appIndex .header-content-box .header-content-right .offer-box {
width: 240px;
height: 214px;
@@ -447,7 +483,6 @@
border-radius: 10px;
}
#appIndex .matter .sidebar .side-box {
- width: 100%;
padding: 17px 10px 10px;
margin-bottom: 12px;
width: 291px;
diff --git a/css/index.less b/css/index.less
index ebb4f4f..5109d20 100644
--- a/css/index.less
+++ b/css/index.less
@@ -362,10 +362,8 @@
margin-bottom: 10px;
.group {
- background-color: rgba(246, 246, 246, 1);
flex-wrap: wrap;
height: 100%;
- border-radius: 8px;
.group-item {
width: 50%;
@@ -375,7 +373,22 @@
color: #333;
text-decoration: none;
flex-direction: column;
- overflow: hidden;
+ background-color: rgba(246, 246, 246, 1);
+
+ &:nth-child(1) {
+ border-top-left-radius: 8px;
+ }
+ &:nth-child(2) {
+ border-top-right-radius: 8px;
+ }
+ &:nth-child(3) {
+ border-bottom-left-radius: 8px;
+ }
+ &:nth-child(4) {
+ border-bottom-right-radius: 8px;
+ }
+
+ // overflow: hidden;
&:nth-child(odd) {
border-right: 1px solid #ebebeb;
@@ -399,6 +412,7 @@
text-align: center;
line-height: 22px;
+ position: relative;
.title {
font-family: "PingFangSC-Semibold", "PingFang SC Semibold", "PingFang SC", sans-serif;
font-weight: 650;
@@ -408,6 +422,34 @@
.subtitle {
color: #555555;
}
+
+ &:hover .QRcode-box {
+ display: flex;
+ }
+
+ .QRcode-box {
+ z-index: 1;
+ display: none;
+ position: absolute;
+ top: 64px;
+ width: 140px;
+ height: 166px;
+ background-color: rgba(255, 255, 255, 1);
+ border-radius: 6px;
+ padding: 20px;
+ box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.168627450980392);
+ flex-direction: column;
+ .QRcode {
+ width: 100px;
+ height: 100px;
+ margin-bottom: 4px;
+ }
+
+ .text {
+ color: #555555;
+ font-size: 14px;
+ }
+ }
}
}
}
@@ -537,7 +579,7 @@
}
.side-box {
- width: 100%;
+ width: 291px;
padding: 17px 10px 10px;
margin-bottom: 12px;
width: 291px;
diff --git a/css/public.css b/css/public.css
index 6799ed7..27c57d5 100644
--- a/css/public.css
+++ b/css/public.css
@@ -6,6 +6,9 @@
font-weight: 400;
font-style: normal;
}
+a {
+ text-decoration: none;
+}
body {
background-color: #eef2f5;
}
@@ -53,6 +56,7 @@ body {
border: 1px solid #e9eef2;
border-radius: 10px;
padding: 18px 20px 0;
+ display: block;
}
.item-box .item-head {
margin-bottom: 14px;
@@ -529,7 +533,9 @@ body {
justify-content: flex-end;
}
.item-box .bottom .bottom-item {
+ height: 100%;
cursor: pointer;
+ position: relative;
}
.item-box .bottom .bottom-item:not(:last-child) {
margin-right: 60px;
@@ -547,6 +553,63 @@ body {
width: 18px;
height: 18px;
}
+.item-box .bottom .bottom-item.share:hover .share-box {
+ display: flex;
+}
+.item-box .bottom .bottom-item .share-box {
+ z-index: 2;
+ position: absolute;
+ left: 50%;
+ transform: translateX(-50%);
+ bottom: 42px;
+ width: 130px;
+ height: 100px;
+ background-color: #ffffff;
+ border-radius: 6px;
+ box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.16862745);
+ flex-direction: column;
+ display: none;
+}
+.item-box .bottom .bottom-item .share-box .share-item {
+ width: 100%;
+ height: 40px;
+ color: #555555;
+ font-size: 14px;
+}
+.item-box .bottom .bottom-item .share-box .share-item:hover {
+ background-color: #f0fafd;
+}
+.item-box .bottom .bottom-item .share-box .share-item .share-icon {
+ width: 18px;
+ height: 18px;
+ margin-right: 13px;
+}
+.item-box .bottom .bottom-item .share-box .share-item.wenxin:hover .QRcode-box {
+ display: flex;
+}
+.item-box .bottom .bottom-item .share-box .share-item .QRcode-box {
+ z-index: 1;
+ display: none;
+ position: absolute;
+ top: 48px;
+ left: 100%;
+ width: 140px;
+ height: 166px;
+ background-color: #ffffff;
+ border-radius: 6px;
+ padding: 20px;
+ box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.16862745);
+ flex-direction: column;
+}
+.item-box .bottom .bottom-item .share-box .share-item .QRcode-box .QRcode {
+ width: 100px;
+ height: 100px;
+ margin-bottom: 4px;
+}
+.item-box .bottom .bottom-item .share-box .share-item .QRcode-box .text {
+ color: #555555;
+ font-size: 14px;
+}
/* offer 录取结果 */
.results.r1 {
background-color: #76c45e;
@@ -1200,6 +1263,27 @@ body {
.box-interviewexperience .slideshow-box .tab-list .tab-item.pitch::before {
background-color: #789feb;
}
+.posts-box .box-newest-head {
+ font-weight: 650;
+ font-size: 16px;
+ color: #000000;
+ padding: 0;
+ height: auto;
+ line-height: normal;
+ padding: 20px 16px 0;
+}
+.posts-box .box-newest-head .icon {
+ width: 22px;
+ height: 22px;
+ margin-right: 8px;
+}
+.posts-box .slideshow-content {
+ margin-left: 10px;
+ transition: all 0.3s;
+}
+.posts-box.box-essence .slideshow-content {
+ margin-left: -263px;
+}
.box-newest .slideshow-box .tab-list .tab-item.pitch::before {
background: linear-gradient(to right, #6ac83e, #6ad2cb);
}
@@ -1227,6 +1311,7 @@ body {
background: #ffffff;
position: relative;
margin-bottom: 12px;
+ overflow: hidden;
}
.box-essence .newest-side-box .bounding,
.box-newest .essence-side-box .bounding {
diff --git a/css/public.less b/css/public.less
index 14097be..e458ec2 100644
--- a/css/public.less
+++ b/css/public.less
@@ -7,6 +7,10 @@
font-style: normal;
}
+a {
+ text-decoration: none;
+}
+
body {
background-color: rgba(238, 242, 245, 1);
}
@@ -63,6 +67,7 @@ body {
border: 1px solid rgba(233, 238, 242, 1);
border-radius: 10px;
padding: 18px 20px 0;
+ display: block;
.item-head {
margin-bottom: 14px;
@@ -633,6 +638,7 @@ body {
justify-content: flex-end;
.bottom-item {
+ height: 100%;
cursor: pointer;
&:not(:last-child) {
margin-right: 60px;
@@ -655,6 +661,80 @@ body {
height: 18px;
}
}
+
+ position: relative;
+
+ &.share {
+ &:hover {
+ .share-box {
+ display: flex;
+ }
+ }
+ }
+
+ .share-box {
+ z-index: 2;
+ position: absolute;
+ left: 50%;
+ transform: translateX(-50%);
+ bottom: 42px;
+ width: 130px;
+ height: 100px;
+ background-color: rgba(255, 255, 255, 1);
+ border-radius: 6px;
+ box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.168627450980392);
+ flex-direction: column;
+ display: none;
+
+ .share-item {
+ width: 100%;
+ height: 40px;
+ color: #555555;
+ font-size: 14px;
+
+ &:hover {
+ background-color: rgba(240, 250, 253, 1);
+ }
+
+ .share-icon {
+ width: 18px;
+ height: 18px;
+ margin-right: 13px;
+ }
+
+ &.wenxin:hover {
+ .QRcode-box {
+ display: flex;
+ }
+ }
+
+ .QRcode-box {
+ z-index: 1;
+ display: none;
+ position: absolute;
+ top: 48px;
+ left: 100%;
+ width: 140px;
+ height: 166px;
+ background-color: #ffffff;
+ border-radius: 6px;
+ padding: 20px;
+ box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.16862745);
+ flex-direction: column;
+
+ .QRcode {
+ width: 100px;
+ height: 100px;
+ margin-bottom: 4px;
+ }
+
+ .text {
+ color: #555555;
+ font-size: 14px;
+ }
+ }
+ }
+ }
}
}
}
@@ -1426,6 +1506,34 @@ body {
background-color: #789feb;
}
+.posts-box {
+ .box-newest-head {
+ font-weight: 650;
+ font-size: 16px;
+ color: #000000;
+ padding: 0;
+ height: auto;
+ line-height: normal;
+ padding: 20px 16px 0;
+ .icon {
+ width: 22px;
+ height: 22px;
+ margin-right: 8px;
+ }
+ }
+
+ .slideshow-content {
+ margin-left: 10px;
+ transition: all 0.3s;
+ }
+
+ &.box-essence {
+ .slideshow-content {
+ margin-left: -263px;
+ }
+ }
+}
+
.box-newest .slideshow-box .tab-list .tab-item.pitch::before {
background: linear-gradient(to right, #6ac83e, #6ad2cb);
}
@@ -1458,6 +1566,7 @@ body {
background: #ffffff;
position: relative;
margin-bottom: 12px;
+ overflow: hidden;
}
.box-essence .newest-side-box .bounding,
diff --git a/css/section-index.css b/css/section.css
similarity index 79%
rename from css/section-index.css
rename to css/section.css
index d8ba7b2..5a1ae9b 100644
--- a/css/section-index.css
+++ b/css/section.css
@@ -71,7 +71,7 @@
border-radius: 16px;
z-index: -1;
}
-#sectionIndex .matter .matter-content .info {
+#sectionIndex .matter .matter-content .info-box {
width: 1035px;
background: -webkit-linear-gradient(270.53908529deg, #ffffff 2%, #ebf8f9 98%);
background: -moz-linear-gradient(179.46091471deg, #ffffff 2%, #ebf8f9 98%);
@@ -83,13 +83,13 @@
padding-bottom: 34px;
margin-bottom: 20px;
}
-#sectionIndex .matter .matter-content .info .img {
+#sectionIndex .matter .matter-content .info-box .img {
width: 80px;
height: 80px;
border-radius: 10px;
margin-right: 20px;
}
-#sectionIndex .matter .matter-content .info .right .title {
+#sectionIndex .matter .matter-content .info-box .right .title {
font-family: "PingFangSC-Semibold", "PingFang SC Semibold", "PingFang SC", sans-serif;
font-weight: 650;
font-style: normal;
@@ -98,7 +98,7 @@
margin-bottom: 15px;
margin-top: 4px;
}
-#sectionIndex .matter .matter-content .info .right .link {
+#sectionIndex .matter .matter-content .info-box .right .link {
flex-wrap: wrap;
border-top: 1px dotted #d7d7d7;
border-bottom: 1px dotted #d7d7d7;
@@ -106,38 +106,38 @@
margin-bottom: 28px;
width: fit-content;
}
-#sectionIndex .matter .matter-content .info .right .link .item {
+#sectionIndex .matter .matter-content .info-box .right .link .item {
padding: 12px 0;
}
-#sectionIndex .matter .matter-content .info .right .link .item:not(:last-child) {
+#sectionIndex .matter .matter-content .info-box .right .link .item:not(:last-child) {
margin-right: 72px;
}
-#sectionIndex .matter .matter-content .info .right .link .item .text {
+#sectionIndex .matter .matter-content .info-box .right .link .item .text {
font-size: 14px;
color: #333333;
margin-right: 8px;
}
-#sectionIndex .matter .matter-content .info .right .link .item .icon {
+#sectionIndex .matter .matter-content .info-box .right .link .item .icon {
width: 12px;
height: 12px;
}
-#sectionIndex .matter .matter-content .info .right .bottom {
+#sectionIndex .matter .matter-content .info-box .right .bottom {
justify-content: space-between;
margin-right: 20px;
}
-#sectionIndex .matter .matter-content .info .right .bottom .data {
+#sectionIndex .matter .matter-content .info-box .right .bottom .data {
font-family: "PingFangSC-Regular", "PingFang SC", sans-serif;
font-weight: 400;
color: #555555;
font-size: 13px;
}
-#sectionIndex .matter .matter-content .info .right .bottom .data .sum {
+#sectionIndex .matter .matter-content .info-box .right .bottom .data .sum {
font-family: "PingFangSC-Semibold", "PingFang SC Semibold", "PingFang SC", sans-serif;
font-weight: 650;
color: #000000;
margin: 0 5px;
}
-#sectionIndex .matter .matter-content .info .right .bottom .btn {
+#sectionIndex .matter .matter-content .info-box .right .bottom .btn {
width: 125px;
height: 32px;
background-color: #50e3c2;
@@ -146,7 +146,7 @@
color: #333;
cursor: pointer;
}
-#sectionIndex .matter .matter-content .info .right .bottom .btn .icon {
+#sectionIndex .matter .matter-content .info-box .right .bottom .btn .icon {
width: 16px;
height: 16px;
margin-right: 3px;
@@ -258,9 +258,30 @@
#sectionIndex .matter .matter-content .details-box .content-box .list-box .item-box {
margin-bottom: 12px;
}
-#sectionIndex .matter .matter-content .details-box .side-box {
+#sectionIndex .matter .matter-content .details-box .adv {
+ display: block;
width: 291px;
- height: 300px;
- background-color: #ecf9fa;
+ height: 220px;
+ margin-bottom: 12px;
+ cursor: pointer;
+}
+#sectionIndex .matter .matter-content .details-box .adv .adv-icon {
+ width: 291px;
+ height: 220px;
border-radius: 10px;
}
+#sectionIndex .matter .matter-content .details-box .side-box {
+ padding: 17px 10px 10px;
+ margin-bottom: 12px;
+ width: 291px;
+ border-radius: 10px;
+}
+#sectionIndex .matter .matter-content .details-box .side-box.offer-side-box {
+ background: linear-gradient(154.12772232deg, #c7edf2 1%, #d3f2f5 100%);
+}
+#sectionIndex .matter .matter-content .details-box .side-box.vote-side-box {
+ background: linear-gradient(151.77562139deg, #c6f4d9 1%, #d9f7e5 100%);
+}
+#sectionIndex .matter .matter-content .details-box .side-box.interviewexperience-side-box {
+ background: linear-gradient(158.64328877deg, #d3e1fb 1%, #dee6f9 100%);
+}
diff --git a/css/section-index.less b/css/section.less
similarity index 89%
rename from css/section-index.less
rename to css/section.less
index a9b344e..52547af 100644
--- a/css/section-index.less
+++ b/css/section.less
@@ -77,7 +77,7 @@
}
.matter-content {
- .info {
+ .info-box {
width: 1035px;
background: -webkit-linear-gradient(270.539085289936deg, rgba(255, 255, 255, 1) 2%, rgba(235, 248, 249, 1) 98%);
background: -moz-linear-gradient(179.460914710064deg, rgba(255, 255, 255, 1) 2%, rgba(235, 248, 249, 1) 98%);
@@ -287,12 +287,46 @@
}
}
+ // .side-box {
+ // width: 291px;
+ // height: 300px;
+ // background-color: rgba(236, 249, 250, 1);
+ // border-radius: 10px;
+ // }
+
+ .adv {
+ display: block;
+ width: 291px;
+ height: 220px;
+ margin-bottom: 12px;
+ cursor: pointer;
+ .adv-icon {
+ width: 291px;
+ height: 220px;
+ border-radius: 10px;
+ }
+ }
+ // .sidebar {
.side-box {
width: 291px;
- height: 300px;
- background-color: rgba(236, 249, 250, 1);
+ padding: 17px 10px 10px;
+ margin-bottom: 12px;
+ width: 291px;
border-radius: 10px;
+
+ &.offer-side-box {
+ background: linear-gradient(154.12772232deg, #c7edf2 1%, #d3f2f5 100%);
+ }
+
+ &.vote-side-box {
+ background: linear-gradient(151.77562139deg, #c6f4d9 1%, #d9f7e5 100%);
+ }
+
+ &.interviewexperience-side-box {
+ background: linear-gradient(158.64328877deg, #d3e1fb 1%, #dee6f9 100%);
+ }
}
+ // }
}
}
}
diff --git a/edit.html b/edit.html
new file mode 100644
index 0000000..e36dfd4
--- /dev/null
+++ b/edit.html
@@ -0,0 +1,86 @@
+
+
+
+
+
+
发布帖子 - 轻论坛
+
+
+
+
+
+
+
+
+
+
+

+
+
发帖
+
发帖奖励 3 个寄托币/篇,每天最高奖励3篇
+
+
![]()
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/img/copy-black-icon.png b/img/copy-black-icon.png
new file mode 100644
index 0000000000000000000000000000000000000000..dd2f03386e3ae3f6678eb671a139d4d97ef837c0
GIT binary patch
literal 742
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
rp_D}(qKai2!j)N+W
zA{791KY{Q0J)9Cl9Uoo#K)XHV%xj+Lbf-|v=SJr~
zRAHPC>d!qmFjHUM;^E$vCf)sz)YfNeGv9rZQNrGsEX$4P#}GT$*v*%RT-EhMGmumI
z?qjBk7ix+}U2~A75E!AfOlT|FRQ-VSxd_SD5RmGcO|2I6h6~&v?Bqnfb?KBtS;viR
z;xH^?y|_>a)1PeL01L>dU#m();g9L}Qi@`|-k=8;1CiDD3h#B+=VcQ=WcRe!9iu3?
z67`u3v6Gq)(MJJdl364^9j8E5Z*1$;lO*>Ub*M7()c3+tEVqoOg^
zZr>iIr9p50MsgYTvBb*Al{E27?kEv#ukX1=Bc0bp^{FwMDY;rO5c`-*m9MqPdJ
zz{3FN(k&H<&?h9ZG4JBg$MICwiBf4$;&idn(zT7^a4LAfWgHC2lv{|&3WO=<(H`><
zj;e*;BzQlwc1wJ3g=K1+7Uf%(vVN>kmOtNuwI0rm^VTeX)A3FEx3B{k`?oy|qLhOF
z+vJXJyY{D7aH)Lbuyfz`WY(%unxxHC`ya)nGOHnaxKjrHe5?vyOCxcRolJv&Rc=@s
zO>dIA4nq+Z|D!BfL(D}jn!a3F+w|%?2L4;%36S-j!S$GExc21wY}j8fraM`TSDVc>B1hJ;gOer8YF+3_vZ-n=9qH5)9{VJN0pV#v630m-7cMQp?L(Nb5j8$Ywb32bXF{+maaWnq+$5@q9EB1>H;^1v~
z1+JaQ&`qs27E}FgdiS*uR&4b2x*9tY45*Pln2_=czu?bo4>5Y4Nkhgh2HHCqBU{(`
z!o4)#Uj
z)yC%P1!?J@f$24!VT17kYE64~6n_}TerQac`>`;!i{>(pxig3{PGIS?%_=dv{D?3!
z(E1c+;#K}KT{vfoq3qk0vqs~aXREo%m_&FHTa=JVQP<;@6LPjX@bA={uB3Hrs*C*2
z=Y?(IvY4#x%2^FYe#aFD*Lu27F&Sx-zHeuBSyP=Sc&aU;isif7A4fN#j9%^YyU_&
zT-n6Z-<8_jb%qk;z}~>5R;s|YIS#JqG2yr(h_{HU_psK6cOraQ6FI-LmmQ_b&{(^4VaG`T_pgL
z`arG;<@3u2j3rBNYP9!1QI0G}C3l_#cVdSl?xZWN?v}WHj!ajn!_x$<>X5YApq^d4
zdQ4zKow93jA}CwlGj!%{Cz$e>W3{f9wJ?A#*)X!bc63z5pwrmg;a;6P&AOkjB4gzyuOp+-9V7DA2r3cF%DzM`&|?avmZG6dlnFg
zD-Gx9&kSMg4lW+qRtUV!)oVLiuVKO7xmMj{hwpsqIxr%PMA=Gzsk&li^DIH5^q(`KULZE75Wc
zP?U&$BL2{N>Lg|8))cBYIAprzeYR{q?)8ySnpnYF@<(VQZ1i=F_C*B@mC3`BAZ9xS
z`-+HU@O?jinH+nZSClC``jAu(>ey($^^^nUdicka3jf=S(Pz`f3Rh9t{IhAiv~6Up
z(k)lMkG94#E@4fCeBO`-Ru~~r)>$FK0`gT#<*k~?o>^}>aJmpZ(6QOPy@qC=c3WaB
zD=H^nf}bufvCv>(2&76Vgx;N*0_BMKN10K?zuKpfefn%@#BeQSu-n;^OFzKr$M=+C
zqRee|6
zE8p-XHZ2T+u7VPixc7KR7keM4`;7!2LOeqv&fjk`k0&_qSrmzY+6Uc%A%?(e@zU+(
z;O8{!_MmWKg^2ciTO5V#ir4#sJKvntl#|8M8yt=E5z1>5yg-T35$JV-j%dwOwai0C7E*kTp*V_g(3~Ny}I60FS(6(j~6ezMpq2g
z?W*re8?@&Xnu4UZw$>xvcb~|7;}e9=Q7
zko?@E^kc`BazcB0bm}SHp?DIUFk`3vWl2*%+p7xs*OIfH4D7wX;!RsM0*?xtj~}UL
z=z~f~ez%F0lm+zAyfDZvI&Xdtotkvj?b%-85%eQ1Z3*@13T+rLV`;w(ZT{REsRWIh
zRSsm`Qos250kr{zc7^x@E9bwcc}J*p0)rHF|rscuMGH;kc-Fm^E|>oj1~BfI7@63kJWF$5VefJKt$wb-oq)a^^L6N
z`+2!l1cx{C(P<~LKXuCCMGbGB?%0EP86sRh5=OE24GxMug2O{Q(Gtm%TIgUTZ%
zzlChvW-Sa%ye*Fa6LE0C*|cL>YSgUmR5-Iu4-*ld$A?e%wjq4hLmQ>?!;|bF?p5c~
z3jNBw#gMx^%qz>&R+}Q7Zf47y0G{QxNjpVbNWPnEmU>K>%CQ8~L;~OI9G(^D&G$Np
zi-vy>KmEP!Xp(yagH4mtmKP&O64(2G-#YQ08dUJd`iz>Ba@F7N@2lwDMm{t2bObYO
zAkpLVDaO=x5d{e5zQ<8Dqx>&ic
z#!Z`FTn3)Li}v3IK6KZd$etk3(FzY*7l!bdKy?_zYoH`hWS<+h#3qh
za|@&h$AvW!i3_br1;u450wm2n(CKqvsB{y-d)*C=wsA$T+6HJL^MvP@2W(NW`w#(!
zBPF)nlWmijFg3>B5igRZGYre<_->9UtN|o0lVW3?k(sroyeP#d7Z3A|4jlj=??G
z&Lmy@*;XE0jb)azMS(Cyz
zD1tRNf1qL9c5@HeZ^e|&}$;n6!&Ck|#L_*0LX=HQDgeD11#i(GU$d(;^?7H-_lR%siS
z4+~2o8(rr(OL3GB{hC&clu@1rk1MVc=r|Gq<#)j`@CW{HTJYmkNq*e*YfYmD*a(&EA2s>Di1ed(`e{G+W-L#5913J()#ZE!nBN(pd(4)UNuH+p<;-fH}svAMaik3>pNb_mJAtr%oC`DE
zb|&U?6-hyWW-ShMdUAV0=fnob#fmE8psBg7l^n~s58x5*R}Wv6Pd(*;ns7j)l8}nd(Bk{x4NUF=N56+k3G2mn)YI08J
z9)>WM5LODId?Pa&)sPje+KrU9fggI)u~+U_Jp$WHuvPe)Mz-5ililLBl1|7tz$#T3
zu2npaeeQMs$kk-@DtJF-E2+6nIOTt_lK!u^WHifi#>rBb-*qJE4*Aan)71oP)T=qf
F{2!FqqMZN$
literal 0
HcmV?d00001
diff --git a/img/img-icon.png b/img/img-icon.png
new file mode 100644
index 0000000000000000000000000000000000000000..33d65522524fa0fb15bb34182dc03064c0f981e2
GIT binary patch
literal 1237
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
E4{|`@4gdfE
literal 0
HcmV?d00001
diff --git a/img/newest-icon.png b/img/newest-icon.png
new file mode 100644
index 0000000000000000000000000000000000000000..c7bb51ebff62820383455c2c1891e69c5d898f47
GIT binary patch
literal 4427
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
R5MTfR002ovPDHLkV1lF-R!jf@
literal 0
HcmV?d00001
diff --git a/img/offer-index-icon.png b/img/offer-index-icon.png
new file mode 100644
index 0000000000000000000000000000000000000000..c2446b103fc774200471576cafbcefab30984f11
GIT binary patch
literal 5321
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
literal 0
HcmV?d00001
diff --git a/img/smiling-face-round-black.png b/img/smiling-face-round-black.png
new file mode 100644
index 0000000000000000000000000000000000000000..06bf727ee63bf0b6d98e63448f4d52ea4dfe711c
GIT binary patch
literal 2471
zcmbtW3s4j177ouVQGB4OK-I<|h^@))CLttSqC^rPlvoT@;sfilyTD?S4cQG3MGHcy
zST9~$RP;)VczLKOiuH=nL8`V=6k)WMD!xFhMQuS8t8)?W1_EvGWvVmXnce;Wo$ov6
zeCM41%;rWc4sm6BvRN#at2$JvW!{0-dz>@#+)pIkU|t@yN=HYMadZk|##suCjK#TX
z0}_vGaRf_C`W6phv78c#C>^cSgu^Il5Fl2JAk|=E*eq7S!c-H2uEA+;EFMo7<-DG{
zlRPeg$$8O!8c<^j!V`$lwPrkW?cykO?HW{u@fI%N2BgA_0Rv7W+*E_!NWrOc-jH3G
zSzA8?Jnj&LUL)rX2c^?QaDzxQ&h-;W_$VZna{XljNFoMBlKEUA2+06Y3P2)02*IEP
z_Vef3E*|5}jK#rPWw6Z`vy<}@Xxan=KuSuAAVnk~&G7&vlQA}gfKbS15PT}lNF%9y
zBjq(>L5WkSnK01=Y2;chBC(`}mh+fMhb0(Hqh^hiElo_qfKYcPzWDO#1xL}b%8CYp*$GvR<1r$~z##Z}3S
zN3W5m@2@W#j2u+%!NK!viu!sbbCaDC{#1%5?xxUea5hGKmc~);W
z0EhNN$SQWyk>p&Ak+;?n*f>JNh=7!>{i%CruK(8x={
z7z)RcW&^@xi?DV(U^2!JdDCcMwUMF`BZ{k)avl?^fFLkf<`*0cLP{|dEDVAmRj|z8
zPbgEWAhARy6iWP{5w4O%E!HZIaIxRGelO#`YbKZzgy_ezf#E2Qf+8_riZQv8fMOXR
z@rV5R5)2h%Qke__#hA5Ehx!E$B`BsCX|~Rf#FK0*J;5Dn5g0+OT`cFJ*0SLk&-R%Z
zL-{Ltw((OEaK`ALlylfSWg9n&cqUUXZ5MzE9fia?inL^g(==ftcqXQH-GE>vcjK`yMfzMeihf8XuA}aOj
zgB6*UPH+Neeycu0k|4=&6};ZyjAfm3#vII31Lt!6?YbSaT~28lu2eOxBi?LJs?47A
z_+)vsZ?Ud=&bjJfQEm_O!?4JKLHhYtL$$FHnDWAI38%{TQx$7#FDMMzuN4{wEU2+hr{GP%TipK-kOK;d&!>EZ$1
z_`&;X5`gnN^|NJrPlBLdy|Yzw2p)qVf@{
z3ai;D$x(UruZx*~;A~c7+!HVNg(YQ6C%YZ((FEGfLY%PhI_dd(@iB+Knp^jsj?Sy=
z-MXpilcX!X^PQu8|6M-brz7Usx-wjzylEgLXvrDQ%7Lx5)1E!}2YfFvbGoyW>EX?a
zYYi0mLF+W1Id>+oZ*{)gB>SkP6Xm?II>kLdalyI5Pdp|L`WGDB%;C(w{hH!lS%rtm
zNg){Q*G+HE)#UwLd8hGqOe?2*=8Ll(_PYnDMJI0d-Qk2!Kd`HE-xnFtS=-C9YxRKW
zJ0(X{D5-CJ`=hyMx7u%*)_bBdeTApb=30H*i9|!Xn^PCX`?;vvK0VBCXU99A9?z(?
z-@c`^Vh^G&eSWAN2{SFLhM|cA8C|fTbhn4}v(nl3u6xZ0`R?+i?o&vW7TAQ<8e-eE
zuUWt=$v=j@Q+wapXlGELk2gD9z7ccb+SQFMo
ze(cs4XIf}ioguoSBA4^w>a@JL!`Ty_dV0m|5>`yDis=9P_1>9(Ps{$XJ)+B9>2+B8
zaC62BQ_$c7yY-eG!e6tyuPnV=RKS_xK6Ni^FBvwjs5Ac1_0sot7k{00*ZH#=MTwGq
zX-&R5rtMMeoUq=^eP4Z?`03lHd)vDzR=j!epB3nbZUdPY0=&~7G)b3W^k75tU>+K;
zDA83NcbL54fcuJ5&$-*&YT6OKeg8h7!vbaYyG5Q3EU)_)Cqg(;-&w9vyzp8oX(p?`E
z_WAS%778GXV*RR%)mmla%5i(xUbD9pXI&0yYb?yps|))wPQEO-yXErzNBtKHgo3VZ
iy8K0F+wQ&?53-&}LuMJLEH1MCI;mBQm4_Cs-uPcA9jGP%
literal 0
HcmV?d00001
diff --git a/img/t-icon.png b/img/t-icon.png
new file mode 100644
index 0000000000000000000000000000000000000000..5ad6f1fb6a0e7bb0e978b8dd866bedcfe71ad553
GIT binary patch
literal 698
zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=jKx9jP7LeL$-D$|Tv8)E(|mmy
zw18|52FCVG1{RPKAeI7R1_tH@j10^`nh_+nfC(<^uz(rC1}St4blSkcz@*~o;uuoF
z_%`~j?_mQ0U3vQ-?(PP{0cr}$229!|LPyx{HuO#4T;OxTh_R&UQ`|}Zl;d7XzbD<;
zH(9T9{kHe_K3krOe3kT3oo&1M3%ROOF`W}5c)#edUC+;WcObXsNY1)~n-1X@EyS53+X`_q{zW+MRb_ky-6~-%+T!p?v|zAvX5keU1(i
zEuHS#jKcZ{p1iAlT9AB#y2#iu=xc|Q4C)xGOG*T;4>toz)O?A@^Cs%}}}
zrY+2Tga~sLPx@g=_L{JAcD%4Jj8M6>Bp-5;=dTG3~$^aSt1tvkZk@>F*qj6P|Ia
z$jwV@usCX5zChC8Gpi8)`X4+Ug>o0RdfBM&*lu+6Ex&YDyr$*$m+w;5qjW8obz#o1>p+8r9n(?3I9wFxSzOjFK@0mvs>6+
z_vM!-&X8HNi}g~Z!%PoT=9CKG^suuHCD**vg3dBX#$BGd^#{*~x$GP2o`(nfIr;R7
z{NHYw*SOf(+p
+
\ No newline at end of file
diff --git a/img/vote-index-icon.png b/img/vote-index-icon.png
new file mode 100644
index 0000000000000000000000000000000000000000..d760b543aa3b5f2f2a756539e488c77fca7ed352
GIT binary patch
literal 4318
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
+
+
+
+ 论坛首页
+
+
+
+
+
-
-
-
- 论坛首页
-
-
-
-
-
+
+