xg-project-library/css/common.css

808 lines
18 KiB
CSS
Raw Normal View History

2024-10-31 04:27:27 +00:00
* {
padding: 0;
margin: 0;
box-sizing: border-box;
2024-11-07 07:33:39 +00:00
text-decoration: auto;
2024-11-14 06:13:40 +00:00
word-break: break-word;
2024-10-31 04:27:27 +00:00
}
.flexflex {
display: flex;
}
.flexcenter {
display: flex;
justify-content: center;
align-items: center;
}
.flexjcenter {
display: flex;
justify-content: center;
}
.flexacenter {
display: flex;
align-items: center;
}
.flex1 {
flex: 1;
}
.flexcolumn {
display: flex;
flex-direction: column;
}
body {
background-color: #eef2f5;
font-family: "PingFangSC-Regular", "PingFang SC", sans-serif;
}
.main {
width: 1200px;
margin: 0 auto;
}
.main .index-icon {
width: 184px;
height: 42px;
margin-top: 37px;
margin-bottom: 40px;
}
2024-11-25 09:38:50 +00:00
.scrollbar::-webkit-scrollbar-track-piece {
background-color: transparent;
}
.scrollbar::-webkit-scrollbar {
width: 7px;
height: 7px;
background-color: transparent;
}
.scrollbar::-webkit-scrollbar-thumb {
border-radius: 5px;
background-color: #ebebeb;
}
2024-10-31 04:27:27 +00:00
.base {
width: 640px;
2024-11-22 03:52:17 +00:00
height: 54px;
2024-11-21 03:55:42 +00:00
background: linear-gradient(264.64417496deg, #dbe3fd 0%, #eef7f5 100%);
box-shadow: 0px 0px 7px #7b8cd3;
2024-10-31 04:27:27 +00:00
border-radius: 153px;
2024-11-13 06:17:13 +00:00
position: sticky;
2024-10-31 04:27:27 +00:00
bottom: 15px;
2024-11-27 09:32:17 +00:00
left: calc((100% - 640px) / 2);
2024-11-05 11:00:36 +00:00
z-index: 100;
2024-10-31 04:27:27 +00:00
}
.base .left {
width: 450px;
2024-11-22 04:15:23 +00:00
height: 44px;
2024-10-31 04:27:27 +00:00
background-color: #fff;
border-radius: 153px 15px 15px 153px;
margin-right: 5px;
padding: 0 20px;
2024-12-18 06:32:00 +00:00
position: relative;
2024-12-18 07:40:02 +00:00
transition: all 0.2s;
2024-12-19 03:43:46 +00:00
border-color: #c4c7ce;
2024-10-31 04:27:27 +00:00
}
2024-12-18 07:32:19 +00:00
.base .left.input-active {
border: 1px solid #c4c7ce;
2024-12-19 03:41:57 +00:00
border-radius: 0 0 4px 10px;
2024-12-18 07:37:14 +00:00
border-top: none;
2024-12-18 07:32:19 +00:00
}
2024-10-31 04:27:27 +00:00
.base .left .text {
font-family: "PingFangSC-Regular", "PingFang SC", sans-serif;
font-weight: 400;
font-style: normal;
2024-11-22 04:16:41 +00:00
font-size: 15px;
2024-12-18 06:35:22 +00:00
height: 100%;
outline: none;
border: none;
2024-12-18 07:40:02 +00:00
padding-right: 10px;
2024-10-31 04:27:27 +00:00
}
.base .left .img {
width: 20px;
height: 20px;
}
2024-12-18 06:35:22 +00:00
.base .left .hint-list {
2024-12-18 07:32:19 +00:00
position: absolute;
2024-12-18 07:37:14 +00:00
width: 450px;
2024-12-18 07:32:19 +00:00
height: 0;
max-height: 400px;
2024-12-18 07:37:14 +00:00
bottom: 43px;
2024-12-18 07:32:19 +00:00
left: -1px;
background-color: #ffffff;
2024-12-18 07:37:14 +00:00
border-radius: 10px 10px 0 0;
2024-12-18 07:32:19 +00:00
z-index: 10;
overflow: auto;
animation: hintShow 0.3s forwards;
border: 0px solid #c4c7ce;
2024-12-18 07:37:14 +00:00
border-bottom: none;
2024-12-18 07:32:19 +00:00
}
@keyframes hintShow {
0% {
height: 0;
}
100% {
border-width: 1px;
height: auto;
}
}
.base .left .hint-list .item {
color: #333333;
font-size: 14px;
padding: 10px 20px;
cursor: pointer;
line-height: 30px;
display: block;
}
.base .left .hint-list .item:not(:last-of-type) {
border-bottom: 1px #e6e4e4 dotted;
2024-12-18 06:35:22 +00:00
}
2024-10-31 04:27:27 +00:00
.base .rigth {
width: 175px;
2024-11-22 04:15:23 +00:00
height: 44px;
2024-10-31 04:27:27 +00:00
background-color: #fff;
border-radius: 15px 153px 153px 15px;
padding-left: 19px;
2024-11-08 10:13:20 +00:00
cursor: pointer;
2024-10-31 04:27:27 +00:00
}
.base .rigth .img {
2024-11-22 04:16:41 +00:00
width: 23px;
height: 20px;
2024-10-31 04:27:27 +00:00
margin-right: 5px;
}
.base .rigth .text {
2024-11-22 04:16:41 +00:00
font-size: 15px;
2024-10-31 04:27:27 +00:00
color: #333333;
margin-right: 9px;
}
.base .rigth .number {
height: 20px;
line-height: 20px;
background-color: #f2f2f2;
border-radius: 150px;
font-size: 13px;
color: #f95d5d;
padding: 0 8px;
}
2024-11-13 08:51:43 +00:00
.base .rigth .number.number-no {
background-color: transparent;
}
2024-10-31 11:03:26 +00:00
.one-line-display {
word-break: keep-all;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.tag {
flex-wrap: wrap;
}
.tag .tag-item {
width: fit-content;
2024-11-22 03:45:18 +00:00
height: 20px;
line-height: 20px;
2024-10-31 11:03:26 +00:00
background-color: #f9f8f8;
border: 1px solid #aaaaaa;
border-radius: 6px;
2024-11-22 03:45:18 +00:00
padding: 0 6px;
font-size: 12px;
2024-10-31 11:03:26 +00:00
color: #7f7f7f;
margin-right: 10px;
margin-bottom: 10px;
2024-11-19 08:37:50 +00:00
display: flex;
align-items: center;
2024-10-31 11:03:26 +00:00
}
.tag .tag-item.gray {
background-color: #333333;
color: #ffffff;
border: none;
}
.tag .tag-item.semester {
color: #ffffff;
background-color: #f95d5d;
border: none;
}
2024-11-05 11:00:36 +00:00
.tag .tag-item.admissions {
background-color: #73d1e5;
border: none;
color: #fff;
}
2024-10-31 11:03:26 +00:00
.red-dot {
position: fixed;
width: 10px;
height: 10px;
background-color: red;
border-radius: 50%;
top: -5%;
left: -5%;
2024-11-14 09:58:10 +00:00
z-index: 101;
2024-10-31 11:03:26 +00:00
transition: left 0.3s linear, top 0.3s cubic-bezier(0.5, -0.5, 1, 1);
}
.my-project {
width: 100vw;
height: 100vh;
2024-11-01 11:12:06 +00:00
background-color: rgba(0, 0, 0, 0.5);
2024-10-31 11:03:26 +00:00
position: fixed;
top: 0;
left: 0;
z-index: 999;
display: flex;
justify-content: center;
}
2024-11-01 11:12:06 +00:00
.my-project .my-box .head {
height: 54px;
background-color: #7b8cd3;
border-radius: 10px 10px 0 0;
justify-content: space-between;
}
.my-project .my-box .head .item {
font-size: 16px;
color: #ffffff;
position: relative;
height: 100%;
z-index: 1;
cursor: pointer;
2024-12-18 09:19:59 +00:00
flex: 1;
2024-11-01 11:12:06 +00:00
}
2024-12-18 10:26:16 +00:00
.my-project .my-box .head .item .boxx {
position: absolute;
2024-12-18 10:39:10 +00:00
top: 50%;
transform: translateY(-50%);
2024-12-18 10:26:16 +00:00
}
2024-11-01 11:12:06 +00:00
.my-project .my-box .head .item.pitch {
color: #000000;
2024-12-18 09:19:59 +00:00
flex: none;
2024-11-01 11:12:06 +00:00
}
2024-12-18 10:41:40 +00:00
.my-project .my-box .head .item.pitch.item-left .boxx {
2024-12-18 10:45:08 +00:00
left: 147px;
}
.my-project .my-box .head .item.pitch.item-long-left .boxx {
2024-12-18 10:41:40 +00:00
left: 188px;
}
2024-12-18 10:39:10 +00:00
.my-project .my-box .head .item.pitch.item-right .boxx {
left: 262px;
}
2024-11-01 11:12:06 +00:00
.my-project .my-box .head .item.pitch .bj,
.my-project .my-box .head .item.pitch .icon {
display: block;
}
.my-project .my-box .head .item .bj {
display: none;
height: 61px;
bottom: -1px;
z-index: -1;
}
.my-project .my-box .head .item .bj.bj-left {
left: 0;
}
.my-project .my-box .head .item .bj.bj-right {
right: 0;
}
.my-project .my-box .head .item .icon {
display: none;
width: 25px;
height: 22px;
margin-right: 8px;
}
.my-project .my-box .contrast-box {
background-color: #ffffff;
border-radius: 0 0 12px 12px;
}
.my-project .my-box .contrast-box .left {
2024-12-18 10:31:47 +00:00
width: 577px;
2024-11-01 11:12:06 +00:00
}
.my-project .my-box .contrast-box .left.left1 {
width: 820px;
}
.my-project .my-box .contrast-box .left .hint {
height: 65px;
color: #333333;
padding: 25px 30px 20px;
border-bottom: 1px solid #ebebeb;
justify-content: space-between;
}
2024-11-14 06:12:30 +00:00
.my-project .my-box .contrast-box .left .hint .text {
font-size: 14px;
}
2024-11-01 11:12:06 +00:00
.my-project .my-box .contrast-box .left .hint .btn .delete {
width: 64px;
height: 32px;
line-height: 32px;
text-align: center;
background-color: rgba(123, 140, 211, 0);
border: 1px solid #f2f2f2;
border-radius: 32px;
margin-right: 10px;
font-size: 14px;
color: #d7d7d7;
}
.my-project .my-box .contrast-box .left .hint .btn .delete.have {
border-color: #d7d7d7;
color: #333333;
cursor: pointer;
}
.my-project .my-box .contrast-box .left .hint .btn .delete.have:hover {
color: #fff;
border: none;
background-color: #f95d5d;
}
.my-project .my-box .contrast-box .left .hint .btn .begin {
width: 130px;
height: 32px;
line-height: 32px;
text-align: center;
background-color: #f2f2f2;
border-radius: 32px;
font-size: 15px;
color: #ffffff;
}
.my-project .my-box .contrast-box .left .hint .btn .begin.have {
background-color: #6fc16d;
cursor: pointer;
}
.my-project .my-box .contrast-box .left .hint .btn .begin.have:hover {
background-color: #4fa44d;
}
.my-project .my-box .contrast-box .left .empty-box {
height: 575px;
}
.my-project .my-box .contrast-box .left .empty-box .icon {
margin-bottom: 18px;
}
.my-project .my-box .contrast-box .left .list {
height: 575px;
overflow: auto;
margin-right: 5px;
}
.my-project .my-box .contrast-box .left .list .item {
padding: 15px 0;
justify-content: space-between;
margin-left: 30px;
margin-right: 27px;
}
2024-11-14 07:26:55 +00:00
.my-project .my-box .contrast-box .left .list .item.pitch {
background-color: #f6f6f6;
}
2024-11-01 11:12:06 +00:00
.my-project .my-box .contrast-box .left .list .item:not(:last-of-type) {
border-bottom: 1px dotted #d7d7d7;
}
.my-project .my-box .contrast-box .left .list .item .left {
padding-left: 40px;
}
.my-project .my-box .contrast-box .left .list .item .left .name {
font-family: "PingFangSC-Semibold", "PingFang SC Semibold", "PingFang SC", sans-serif;
font-weight: 650;
font-style: normal;
font-size: 15px;
color: #000000;
margin-bottom: 5px;
position: relative;
2024-11-27 09:19:38 +00:00
display: block;
2024-11-01 11:12:06 +00:00
}
2024-11-27 06:10:44 +00:00
.my-project .my-box .contrast-box .left .list .item .left .name:hover {
text-decoration: underline;
}
2024-11-01 11:12:06 +00:00
.my-project .my-box .contrast-box .left .list .item .left .name::after {
content: "";
position: absolute;
top: 50%;
left: -30px;
transform: translateY(-50%);
width: 7px;
height: 7px;
box-sizing: border-box;
background-color: #fddf6d;
border: 1px solid #cab157;
border-radius: 50%;
}
.my-project .my-box .contrast-box .left .list .item .left .english {
color: #7f7f7f;
font-size: 13px;
margin-bottom: 10px;
}
.my-project .my-box .contrast-box .left .list .item .left .message {
font-size: 14px;
color: #333333;
}
.my-project .my-box .contrast-box .left .list .item .left .message .icon {
width: 18px;
height: 18px;
margin-right: 7px;
}
.my-project .my-box .contrast-box .left .list .item .left .message .line {
color: #d7d7d7;
margin: 0 12px;
}
.my-project .my-box .contrast-box .left .list .item .left .message .state-text {
padding: 0 6px;
background-color: #f2f2f2;
border: 1px solid #d7d7d7;
border-radius: 6px;
color: #555555;
font-size: 13px;
}
.my-project .my-box .contrast-box .left .list .item .btn {
padding: 10px;
cursor: pointer;
}
.my-project .my-box .contrast-box .left .list .item .btn .icon {
width: 20px;
height: 20px;
}
2024-11-04 08:24:44 +00:00
.my-project .my-box .contrast-box .left .list .item .btn.btn-forbid {
cursor: not-allowed !important;
}
.my-project .my-box .contrast-box .left .list .item .btn.btn-normal {
cursor: pointer !important;
}
2024-11-01 11:12:06 +00:00
.my-project .my-box .contrast-box .right {
width: 420px;
height: 640px;
background-color: #f6f6f6;
border-radius: 0 0 12px 0;
2024-11-25 09:32:21 +00:00
overflow: hidden;
2024-11-19 10:21:52 +00:00
animation: contrastRightShow 0.3s;
2024-11-22 08:00:44 +00:00
border-left: 1px solid #ebebeb;
2024-11-19 10:21:52 +00:00
}
@keyframes contrastRightShow {
0% {
width: 0;
}
100% {
2024-11-19 10:23:32 +00:00
width: 420px;
2024-11-19 10:21:52 +00:00
}
2024-11-01 11:12:06 +00:00
}
.my-project .my-box .contrast-box .right .hint {
font-size: 14px;
color: #000000;
padding: 25px 20px 20px;
}
.my-project .my-box .contrast-box .right .list {
height: 575px;
padding-left: 20px;
overflow: auto;
margin-right: 5px;
}
.my-project .my-box .contrast-box .right .list .item {
2024-12-18 10:39:10 +00:00
width: 375px;
2024-11-01 11:12:06 +00:00
background-color: #ffffff;
border: 1px solid #f2f2f2;
border-radius: 8px;
padding: 15px;
justify-content: space-between;
position: relative;
margin-bottom: 10px;
overflow: auto;
2024-11-14 03:36:28 +00:00
overflow: hidden;
2024-11-01 11:12:06 +00:00
}
.my-project .my-box .contrast-box .right .list .item .project-list .project-item {
font-size: 14px;
color: #333333;
}
.my-project .my-box .contrast-box .right .list .item .project-list .project-item .icon {
height: 18px;
margin-right: 10px;
}
.my-project .my-box .contrast-box .right .list .item .project-list .project-item:not(:last-of-type) {
margin-bottom: 10px;
}
.my-project .my-box .contrast-box .right .list .item .project-list .project-item .arrows {
width: 12px;
height: 12px;
margin: 0 10px;
}
.my-project .my-box .contrast-box .right .list .item .project-list .project-item .text {
width: 182px;
}
.my-project .my-box .contrast-box .right .list .item .btn {
width: 26px;
height: 26px;
background-color: #6fc16d;
border-radius: 32px;
2024-11-14 03:45:50 +00:00
cursor: pointer;
2024-11-01 11:12:06 +00:00
}
.my-project .my-box .contrast-box .right .list .item .btn .icon {
width: 14px;
height: 6px;
}
.my-project .my-box .contrast-box .right .list .item:hover .dot {
display: block;
}
.my-project .my-box .contrast-box .right .list .item .dot {
position: absolute;
width: 18px;
height: 18px;
top: 4px;
right: 10px;
display: none;
cursor: pointer;
}
.my-project .my-box .contrast-box .right .list .item .delete-mask {
width: 100vw;
height: 100vh;
position: fixed;
top: 0;
left: 0;
background-color: transparent;
z-index: 10;
}
.my-project .my-box .contrast-box .right .list .item .delete {
width: 71px;
background-color: #f95d5d;
position: absolute;
top: 0;
2024-11-14 03:38:18 +00:00
right: 0;
2024-11-01 11:12:06 +00:00
height: 100%;
color: #ffffff;
font-size: 13px;
border-radius: 0 8px 8px 0;
cursor: pointer;
z-index: 11;
2024-11-14 03:36:28 +00:00
animation: deleteShow 0.3s;
}
@keyframes deleteShow {
0% {
2024-11-14 03:37:10 +00:00
right: -71px;
2024-11-14 03:36:28 +00:00
}
100% {
right: 0;
}
2024-11-01 11:12:06 +00:00
}
.my-project .my-box .manage-box {
width: 920px;
height: 640px;
background-color: #fff;
border-radius: 0 0 12px 12px;
}
.my-project .my-box .manage-box .tab-list {
font-size: 14px;
height: 65px;
color: #555555;
padding: 25px 30px 20px;
margin-bottom: 5px;
}
.my-project .my-box .manage-box .tab-list .item {
cursor: pointer;
margin-right: 36px;
font-size: 14px;
color: #555555;
font-family: "PingFangSC-Regular", "PingFang SC", sans-serif;
position: relative;
}
.my-project .my-box .manage-box .tab-list .item.pitch {
font-family: "PingFangSC-Semibold", "PingFang SC Semibold", "PingFang SC", sans-serif;
font-weight: 650;
font-style: normal;
color: #000000;
}
.my-project .my-box .manage-box .tab-list .item.pitch::after {
content: "";
position: absolute;
left: 0;
bottom: -4px;
display: block;
width: 100%;
height: 3px;
background-color: #6fc16d;
border-radius: 39px;
}
.my-project .my-box .manage-box .empty-box {
height: 575px;
}
.my-project .my-box .manage-box .empty-box .icon {
margin-top: -135px;
margin-bottom: 20px;
}
.my-project .my-box .manage-box .list {
height: 570px;
padding-left: 30px;
overflow: auto;
margin-right: 5px;
}
.my-project .my-box .manage-box .list .hint {
width: 860px;
height: 40px;
background-color: #f2f2f2;
border-radius: 4px;
font-size: 14px;
color: #555555;
line-height: 24px;
justify-content: space-between;
padding: 0 10px;
margin-bottom: 20px;
2024-11-08 10:13:20 +00:00
cursor: pointer;
2024-11-01 11:12:06 +00:00
}
.my-project .my-box .manage-box .list .hint .icon {
width: 16px;
height: 16px;
}
.my-project .my-box .manage-box .list .list-box {
flex-wrap: wrap;
width: 860px;
justify-content: space-between;
2024-11-15 10:59:31 +00:00
align-items: flex-start;
position: relative;
2024-11-01 11:12:06 +00:00
}
.my-project .my-box .manage-box .list .item {
width: 420px;
background-color: #fbfbfb;
border: 1px solid #f2f2f2;
border-radius: 12px;
margin-bottom: 20px;
2024-11-15 10:59:31 +00:00
position: absolute;
transition: all 0.3s;
2024-11-18 08:58:17 +00:00
user-select: none;
}
.my-project .my-box .manage-box .list .item.load {
transition: auto;
z-index: 1000;
}
2024-11-18 09:16:23 +00:00
.my-project .my-box .manage-box .list .item.zindex {
z-index: 3;
}
2024-11-01 11:12:06 +00:00
.my-project .my-box .manage-box .list .item .top {
padding: 16px 10px 14px;
border-bottom: 1px solid #f2f2f2;
}
.my-project .my-box .manage-box .list .item .top .info .name {
font-family: "PingFangSC-Semibold", "PingFang SC Semibold", "PingFang SC", sans-serif;
font-weight: 650;
font-style: normal;
font-size: 15px;
color: #000000;
margin-bottom: 5px;
}
.my-project .my-box .manage-box .list .item .top .info .english {
font-family: "PingFangSC-Regular", "PingFang SC", sans-serif;
font-weight: 400;
font-style: normal;
color: #7f7f7f;
font-size: 13px;
margin-bottom: 11px;
}
.my-project .my-box .manage-box .list .item .top .info .school {
font-size: 14px;
color: #333333;
}
.my-project .my-box .manage-box .list .item .top .info .school .icon {
height: 18px;
margin-right: 7px;
}
.my-project .my-box .manage-box .list .item .top .state-box {
position: relative;
}
.my-project .my-box .manage-box .list .item .top .state-box .btn {
cursor: pointer;
width: 64px;
height: 26px;
2024-11-04 08:24:44 +00:00
background-color: #04b0d5;
2024-11-01 11:12:06 +00:00
border-radius: 32px;
font-size: 14px;
color: #ffffff;
}
.my-project .my-box .manage-box .list .item .top .state-box .btn .icon {
width: 9px;
height: 5px;
margin-left: 9px;
}
2024-11-04 08:24:44 +00:00
.my-project .my-box .manage-box .list .item .top .state-box .btn.undetermined {
background-color: #f95d5d;
}
2024-11-14 06:19:00 +00:00
.my-project .my-box .manage-box .list .item .top .state-box .state-list-mask {
position: fixed;
width: 100vw;
height: 100vh;
top: 0;
left: 0;
}
2024-11-01 11:12:06 +00:00
.my-project .my-box .manage-box .list .item .top .state-box .state-list-box {
background-color: #ffffff;
border-radius: 12px;
width: 300px;
height: 47px;
position: absolute;
right: 0;
top: 41px;
filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.12941176));
padding: 0 10px;
}
.my-project .my-box .manage-box .list .item .top .state-box .state-list-box::after {
content: "";
width: 0;
height: 0;
border: 10px solid transparent;
position: absolute;
top: -16px;
right: 20px;
border-bottom-color: #ffffff;
}
.my-project .my-box .manage-box .list .item .top .state-box .state-list-box .state-item {
width: 60px;
height: 26px;
2024-11-04 08:24:44 +00:00
text-align: center;
line-height: 26px;
2024-11-01 11:12:06 +00:00
background-color: #f2f2f2;
font-size: 14px;
color: #7f7f7f;
2024-11-04 08:24:44 +00:00
cursor: pointer;
2024-11-01 11:12:06 +00:00
}
.my-project .my-box .manage-box .list .item .top .state-box .state-list-box .state-item:not(:last-of-type) {
border-right: 1px solid #d7d7d7;
}
.my-project .my-box .manage-box .list .item .top .state-box .state-list-box .state-item:first-of-type {
border-radius: 4px 0 0 4px;
}
.my-project .my-box .manage-box .list .item .top .state-box .state-list-box .state-item:last-of-type {
border-radius: 0 4px 4px 0;
}
.my-project .my-box .manage-box .list .item .top .state-box .state-list-box .state-item.pitch {
background-color: #7b8cd3;
color: #ffffff;
border-right: none;
}
.my-project .my-box .manage-box .list .item .top .state-box .state-list-box .delete {
width: 26px;
height: 26px;
border-radius: 50%;
background-color: #f2f2f2;
margin-left: 15px;
2024-11-19 07:13:48 +00:00
cursor: pointer;
2024-11-01 11:12:06 +00:00
}
.my-project .my-box .manage-box .list .item .top .state-box .state-list-box .delete .delete-icon {
width: 13px;
height: 14px;
}
.my-project .my-box .manage-box .list .item .bottom {
padding: 14px 10px 5px;
}
.my-project .my-box .manage-box .list .item .bottom .edit {
width: 24px;
height: 24px;
border-radius: 50%;
background-color: #f2f2f2;
margin-right: 10px;
}
.my-project .my-box .manage-box .list .item .bottom .edit .icon {
width: 16px;
height: 16px;
}
2024-11-18 09:25:58 +00:00
.my-project .my-box .manage-box .list .item .bottom .drag-icon {
width: 16px;
height: 16px;
margin-top: 6px;
cursor: pointer;
-webkit-user-drag: none;
}
.manage-input {
2024-11-01 11:12:06 +00:00
padding-top: 4px;
border: none;
outline: none;
background-color: transparent;
resize: none;
font-family: "PingFangSC-Regular", "PingFang SC", sans-serif;
2024-11-18 09:33:18 +00:00
min-height: 34px;
2024-11-18 09:04:32 +00:00
padding-right: 10px;
2024-11-18 09:23:06 +00:00
font-size: 14px;
2024-11-18 09:27:39 +00:00
width: 348px;
2024-11-25 09:51:05 +00:00
white-space: pre-line;
2024-11-01 11:12:06 +00:00
}
.empty-box {
flex-direction: column;
}
.empty-box .icon {
width: 80px;
height: 94px;
}
.empty-box .text {
font-size: 14px;
color: #7f7f7f;
text-align: center;
line-height: 24px;
}
2024-11-14 06:56:14 +00:00
.upglide {
2024-11-14 07:01:34 +00:00
font-size: 12px;
2024-11-14 06:56:14 +00:00
color: #aaaaaa;
padding-bottom: 60px;
2024-11-14 07:01:34 +00:00
margin-top: 20px;
2024-11-14 06:56:14 +00:00
}
2024-12-18 04:32:05 +00:00
.hint-mask {
position: fixed;
width: 100%;
height: 100%;
top: 0;
left: 0;
z-index: -1;
}