xg-project-library/css/subject.less

395 lines
13 KiB
Plaintext
Raw Normal View History

2024-11-07 08:25:29 +00:00
.boxbox {
2024-10-31 04:27:27 +00:00
width: 1200px;
background-color: rgba(255, 255, 255, 1);
border-radius: 12px;
position: relative;
margin-bottom: 20px;
&::after {
content: "";
position: absolute;
top: -5px;
left: 0;
width: 100%;
height: 66px;
background: -webkit-linear-gradient(0deg, rgba(123, 140, 211, 1) 0%, rgba(218, 227, 253, 1) 99%);
background: -moz-linear-gradient(90deg, rgba(123, 140, 211, 1) 0%, rgba(218, 227, 253, 1) 99%);
background: linear-gradient(90deg, rgba(123, 140, 211, 1) 0%, rgba(218, 227, 253, 1) 99%);
border-radius: 18px;
z-index: -1;
}
.tab {
height: 60px;
font-size: 14px;
color: #7f7f7f;
border-bottom: 1px dotted rgb(235, 235, 235);
padding-left: 24px;
.img {
width: 6px;
height: 10px;
margin: 0 15px;
}
2024-11-25 03:46:48 +00:00
2024-11-11 06:41:57 +00:00
a {
color: #7f7f7f;
2024-11-25 03:46:48 +00:00
&:hover {
text-decoration: underline;
color: #000000;
}
2024-11-11 06:41:57 +00:00
}
2024-10-31 04:27:27 +00:00
.current {
font-family: "PingFangSC-Semibold", "PingFang SC Semibold", "PingFang SC", sans-serif;
font-weight: 650;
font-style: normal;
font-size: 14px;
color: #000000;
}
}
.info {
padding: 41px 60px 0;
margin-bottom: 40px;
.img {
width: 120px;
height: 120px;
margin-right: 40px;
}
.title {
font-family: "PingFangSC-Semibold", "PingFang SC Semibold", "PingFang SC", sans-serif;
font-weight: 650;
font-style: normal;
font-size: 24px;
color: #000000;
margin-bottom: 20px;
}
.list {
flex-wrap: wrap;
.item {
width: fit-content;
height: 36px;
line-height: 36px;
padding: 0 17px;
background-color: rgba(251, 251, 251, 0);
border: 1px solid rgba(235, 235, 235, 1);
border-radius: 12px;
font-size: 14px;
color: #333333;
margin-bottom: 10px;
margin-right: 10px;
2024-11-05 11:00:36 +00:00
cursor: pointer;
2024-10-31 04:27:27 +00:00
&.pitch {
background-color: rgba(123, 140, 211, 1);
color: #ffffff;
border: none;
}
}
}
}
}
.body {
background-color: rgba(255, 255, 255, 1);
border-radius: 12px;
// align-items: flex-start;
.left {
width: 200px;
font-size: 16px;
color: #333333;
border-right: 1px solid rgba(235, 235, 235, 1);
.item {
height: 56px;
padding-left: 34px;
2024-11-05 11:00:36 +00:00
cursor: pointer;
2024-11-15 04:07:04 +00:00
font-weight: 400;
2024-11-15 04:07:55 +00:00
font-size: 15px;
2024-10-31 04:27:27 +00:00
.img {
width: 18px;
margin-right: 12px;
}
&.pitch {
background-color: rgba(251, 251, 251, 1);
border-top: 1px solid rgba(235, 235, 235, 1);
border-bottom: 1px solid rgba(235, 235, 235, 1);
2024-11-14 09:52:52 +00:00
width: 200px;
2024-10-31 04:27:27 +00:00
position: relative;
color: #000000;
font-weight: 650;
&::after {
content: "";
width: 5px;
2024-11-14 09:14:37 +00:00
height: 100%;
2024-10-31 04:27:27 +00:00
background-color: rgba(111, 193, 109, 1);
position: absolute;
top: 0;
left: 0;
}
}
}
}
.right {
background-color: rgba(251, 251, 251, 1);
border-top: 1px solid rgba(235, 235, 235, 1);
padding: 0 32px;
2024-11-14 06:56:14 +00:00
border-radius: 0 0 12px 0;
2024-10-31 04:27:27 +00:00
.h {
justify-content: space-between;
padding-top: 27px;
margin-bottom: 24px;
.total {
font-size: 14px;
color: #7f7f7f;
}
.item {
font-size: 14px;
color: #000000;
cursor: pointer;
2024-11-11 06:28:21 +00:00
&.sort {
position: relative;
.sort-mask {
width: 100vw;
height: 100vh;
position: fixed;
top: 0;
left: 0;
z-index: 101;
}
.sort-list {
width: 100%;
background-color: #ffffff;
border: 1px solid #e4e7ed;
border-radius: 10px;
box-shadow: 0 0 12px rgba(0, 0, 0, 0.078);
position: absolute;
top: 25px;
left: 50%;
z-index: 102;
transform: translateX(-50%);
2024-11-11 06:32:24 +00:00
animation: sortShow 0.3s;
overflow: hidden;
@keyframes sortShow {
0% {
height: 0;
}
100% {
height: 150px;
}
}
2024-11-11 06:28:21 +00:00
.sort-item {
height: 50px;
line-height: 50px;
text-align: center;
&:not(:last-of-type) {
border-bottom: 1px solid #e4e7ed;
}
2024-11-11 06:32:24 +00:00
&.pitch {
color: #9a9d02;
font-weight: 650;
}
2024-11-11 06:28:21 +00:00
}
}
}
2024-10-31 04:27:27 +00:00
.img-sort {
width: 20px;
height: 20px;
margin-left: 8px;
}
.img-school {
width: 16px;
height: 16px;
margin-left: 8px;
}
}
}
.list {
flex-wrap: wrap;
justify-content: space-between;
.item {
width: 460px;
background-color: rgba(255, 255, 255, 1);
border: 1px solid rgba(242, 242, 242, 1);
border-radius: 12px;
2024-11-19 07:45:46 +00:00
padding: 21px 15px 11px;
2024-11-14 10:00:53 +00:00
margin-bottom: 19px;
2024-11-22 10:54:26 +00:00
.school {
font-size: 14px;
color: #333333;
margin-bottom: 14px;
.icon {
height: 18px;
margin-right: 8px;
}
}
2024-10-31 04:27:27 +00:00
.name {
font-family: "PingFangSC-Semibold", "PingFang SC Semibold", "PingFang SC", sans-serif;
font-weight: 650;
font-style: normal;
font-size: 16px;
color: #000000;
margin-bottom: 12px;
2024-11-15 06:10:20 +00:00
padding-right: 80px;
2024-10-31 04:27:27 +00:00
}
.english {
font-family: "PingFangSC-Regular", "PingFang SC", sans-serif;
font-weight: 400;
font-style: normal;
font-size: 14px;
color: #555555;
margin-bottom: 12px;
}
.introduce {
color: #555555;
font-size: 14px;
margin-bottom: 12px;
2024-11-14 06:56:14 +00:00
flex-wrap: wrap;
2024-10-31 04:27:27 +00:00
.quantity {
font-family: "Arial-Black", "Arial Black", sans-serif;
font-weight: 900;
color: #000000;
margin-left: 8px;
}
.line {
color: #d7d7d7;
margin: 0 10px;
}
}
.word {
background-color: rgba(249, 248, 248, 1);
border-radius: 3px;
padding: 10px 15px;
font-size: 14px;
color: #7f7f7f;
margin-bottom: 12px;
}
.operate {
position: absolute;
top: 18px;
right: 24px;
.circle {
position: relative;
2024-11-05 11:00:36 +00:00
z-index: 4;
2024-10-31 04:27:27 +00:00
cursor: pointer;
width: 28px;
height: 28px;
background-color: rgba(219, 227, 253, 1);
border: 1px solid rgba(175, 181, 202, 1);
border-radius: 20px;
.img-add {
width: 12px;
height: 12px;
}
.img-dot {
width: 18px;
height: 8px;
}
}
2024-11-05 11:00:36 +00:00
.select-mask {
position: fixed;
width: 100%;
height: 100%;
z-index: 2;
top: 0;
left: 0;
}
2024-10-31 04:27:27 +00:00
.select {
position: absolute;
top: -18px;
right: -24px;
background-color: rgba(251, 251, 251, 1);
border-radius: 8px;
-moz-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.180392156862745);
-webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.180392156862745);
box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.180392156862745);
flex-direction: column;
transition: all 0.3s;
overflow: hidden;
opacity: 0;
2024-11-05 11:00:36 +00:00
width: 0;
2024-10-31 04:27:27 +00:00
height: 0;
align-items: center;
padding-top: 68px;
2024-11-05 11:00:36 +00:00
z-index: 2;
2024-10-31 04:27:27 +00:00
&.show {
2024-11-05 11:00:36 +00:00
width: 285px;
2024-10-31 04:27:27 +00:00
height: 171px;
opacity: 1;
}
.title {
.dot {
width: 8px;
height: 8px;
border-radius: 50%;
border: 1px solid rgb(202, 177, 87);
background-color: rgb(253, 223, 109);
margin-right: 5px;
}
font-size: 14px;
color: #7f7f7f;
margin-bottom: 19px;
}
.btn {
cursor: pointer;
width: 144px;
height: 36px;
background: -webkit-linear-gradient(194.036243467926deg, rgba(219, 227, 253, 1) 0%, rgba(238, 247, 245, 1) 100%);
background: -moz-linear-gradient(255.963756532074deg, rgba(219, 227, 253, 1) 0%, rgba(238, 247, 245, 1) 100%);
background: linear-gradient(255.963756532074deg, rgba(219, 227, 253, 1) 0%, rgba(238, 247, 245, 1) 100%);
border-radius: 158px;
font-size: 14px;
color: #333333;
.img {
width: 16px;
height: 16px;
margin-right: 8px;
}
}
// }
}
.already {
font-size: 14px;
color: #7f7f7f;
.tick-box {
width: 20px;
height: 20px;
background-color: rgba(246, 246, 246, 1);
border: 1px solid rgba(215, 215, 215, 1);
border-radius: 20px;
margin-right: 5px;
.img-tick {
width: 10px;
height: 8px;
}
}
}
}
}
}
}
}
2024-11-05 11:00:36 +00:00
.empty-box {
height: 500px;
}