351 lines
7.3 KiB
CSS
351 lines
7.3 KiB
CSS
.boxbox {
|
|
width: 1200px;
|
|
background-color: #ffffff;
|
|
border-radius: 12px;
|
|
position: relative;
|
|
margin-bottom: 20px;
|
|
}
|
|
.boxbox::after {
|
|
content: "";
|
|
position: absolute;
|
|
top: -5px;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 66px;
|
|
background: -webkit-linear-gradient(0deg, #7b8cd3 0%, #dae3fd 99%);
|
|
background: -moz-linear-gradient(90deg, #7b8cd3 0%, #dae3fd 99%);
|
|
background: linear-gradient(90deg, #7b8cd3 0%, #dae3fd 99%);
|
|
border-radius: 18px;
|
|
z-index: -1;
|
|
}
|
|
.boxbox .tab {
|
|
height: 60px;
|
|
font-size: 14px;
|
|
color: #7f7f7f;
|
|
border-bottom: 1px dotted #ebebeb;
|
|
padding-left: 24px;
|
|
}
|
|
.boxbox .tab .img {
|
|
width: 6px;
|
|
height: 10px;
|
|
margin: 0 15px;
|
|
}
|
|
.boxbox .tab a {
|
|
color: #7f7f7f;
|
|
}
|
|
.boxbox .tab .current {
|
|
font-family: "PingFangSC-Semibold", "PingFang SC Semibold", "PingFang SC", sans-serif;
|
|
font-weight: 650;
|
|
font-style: normal;
|
|
font-size: 14px;
|
|
color: #000000;
|
|
}
|
|
.boxbox .info {
|
|
padding: 41px 60px 0;
|
|
margin-bottom: 40px;
|
|
}
|
|
.boxbox .info .img {
|
|
width: 120px;
|
|
height: 120px;
|
|
margin-right: 40px;
|
|
}
|
|
.boxbox .info .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;
|
|
}
|
|
.boxbox .info .list {
|
|
flex-wrap: wrap;
|
|
}
|
|
.boxbox .info .list .item {
|
|
width: fit-content;
|
|
height: 36px;
|
|
line-height: 36px;
|
|
padding: 0 17px;
|
|
background-color: rgba(251, 251, 251, 0);
|
|
border: 1px solid #ebebeb;
|
|
border-radius: 12px;
|
|
font-size: 14px;
|
|
color: #333333;
|
|
margin-bottom: 10px;
|
|
margin-right: 10px;
|
|
cursor: pointer;
|
|
}
|
|
.boxbox .info .list .item.pitch {
|
|
background-color: #7b8cd3;
|
|
color: #ffffff;
|
|
border: none;
|
|
}
|
|
.body {
|
|
background-color: #ffffff;
|
|
border-radius: 12px;
|
|
}
|
|
.body .left {
|
|
width: 200px;
|
|
font-size: 16px;
|
|
color: #333333;
|
|
border-right: 1px solid #ebebeb;
|
|
}
|
|
.body .left .item {
|
|
height: 56px;
|
|
padding-left: 34px;
|
|
cursor: pointer;
|
|
}
|
|
.body .left .item .img {
|
|
width: 18px;
|
|
margin-right: 12px;
|
|
}
|
|
.body .left .item.pitch {
|
|
background-color: #fbfbfb;
|
|
border-top: 1px solid #ebebeb;
|
|
border-bottom: 1px solid #ebebeb;
|
|
width: 201px;
|
|
position: relative;
|
|
color: #000000;
|
|
font-weight: 650;
|
|
}
|
|
.body .left .item.pitch::after {
|
|
content: "";
|
|
width: 5px;
|
|
height: 100%;
|
|
background-color: #6fc16d;
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
}
|
|
.body .right {
|
|
background-color: #fbfbfb;
|
|
border-top: 1px solid #ebebeb;
|
|
padding: 0 32px;
|
|
border-radius: 0 0 12px 0;
|
|
}
|
|
.body .right .h {
|
|
justify-content: space-between;
|
|
padding-top: 27px;
|
|
margin-bottom: 24px;
|
|
}
|
|
.body .right .h .total {
|
|
font-size: 14px;
|
|
color: #7f7f7f;
|
|
}
|
|
.body .right .h .item {
|
|
font-size: 14px;
|
|
color: #000000;
|
|
cursor: pointer;
|
|
}
|
|
.body .right .h .item.sort {
|
|
position: relative;
|
|
}
|
|
.body .right .h .item.sort .sort-mask {
|
|
width: 100vw;
|
|
height: 100vh;
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
z-index: 101;
|
|
}
|
|
.body .right .h .item.sort .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%);
|
|
animation: sortShow 0.3s;
|
|
overflow: hidden;
|
|
}
|
|
@keyframes sortShow {
|
|
0% {
|
|
height: 0;
|
|
}
|
|
100% {
|
|
height: 150px;
|
|
}
|
|
}
|
|
.body .right .h .item.sort .sort-list .sort-item {
|
|
height: 50px;
|
|
line-height: 50px;
|
|
text-align: center;
|
|
}
|
|
.body .right .h .item.sort .sort-list .sort-item:not(:last-of-type) {
|
|
border-bottom: 1px solid #e4e7ed;
|
|
}
|
|
.body .right .h .item.sort .sort-list .sort-item.pitch {
|
|
color: #9a9d02;
|
|
font-weight: 650;
|
|
}
|
|
.body .right .h .item .img-sort {
|
|
width: 20px;
|
|
height: 20px;
|
|
margin-left: 8px;
|
|
}
|
|
.body .right .h .item .img-school {
|
|
width: 16px;
|
|
height: 16px;
|
|
margin-left: 8px;
|
|
}
|
|
.body .right .list {
|
|
flex-wrap: wrap;
|
|
justify-content: space-between;
|
|
}
|
|
.body .right .list .item {
|
|
width: 460px;
|
|
background-color: #ffffff;
|
|
border: 1px solid #f2f2f2;
|
|
border-radius: 12px;
|
|
padding: 21px 15px;
|
|
margin-bottom: 20px;
|
|
position: relative;
|
|
}
|
|
.body .right .list .item .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;
|
|
width: 345px;
|
|
}
|
|
.body .right .list .item .english {
|
|
font-family: "PingFangSC-Regular", "PingFang SC", sans-serif;
|
|
font-weight: 400;
|
|
font-style: normal;
|
|
font-size: 14px;
|
|
color: #555555;
|
|
margin-bottom: 12px;
|
|
}
|
|
.body .right .list .item .introduce {
|
|
color: #555555;
|
|
font-size: 14px;
|
|
margin-bottom: 12px;
|
|
flex-wrap: wrap;
|
|
}
|
|
.body .right .list .item .introduce .quantity {
|
|
font-family: "Arial-Black", "Arial Black", sans-serif;
|
|
font-weight: 900;
|
|
color: #000000;
|
|
margin-left: 8px;
|
|
}
|
|
.body .right .list .item .introduce .line {
|
|
color: #d7d7d7;
|
|
margin: 0 10px;
|
|
}
|
|
.body .right .list .item .word {
|
|
background-color: #f9f8f8;
|
|
border-radius: 3px;
|
|
padding: 10px 15px;
|
|
font-size: 14px;
|
|
color: #7f7f7f;
|
|
margin-bottom: 12px;
|
|
}
|
|
.body .right .list .item .operate {
|
|
position: absolute;
|
|
top: 18px;
|
|
right: 24px;
|
|
}
|
|
.body .right .list .item .operate .circle {
|
|
position: relative;
|
|
z-index: 4;
|
|
cursor: pointer;
|
|
width: 28px;
|
|
height: 28px;
|
|
background-color: #dbe3fd;
|
|
border: 1px solid #afb5ca;
|
|
border-radius: 20px;
|
|
}
|
|
.body .right .list .item .operate .circle .img-add {
|
|
width: 12px;
|
|
height: 12px;
|
|
}
|
|
.body .right .list .item .operate .circle .img-dot {
|
|
width: 18px;
|
|
height: 8px;
|
|
}
|
|
.body .right .list .item .operate .select-mask {
|
|
position: fixed;
|
|
width: 100%;
|
|
height: 100%;
|
|
z-index: 2;
|
|
top: 0;
|
|
left: 0;
|
|
}
|
|
.body .right .list .item .operate .select {
|
|
position: absolute;
|
|
top: -18px;
|
|
right: -24px;
|
|
background-color: #fbfbfb;
|
|
border-radius: 8px;
|
|
-moz-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.18039216);
|
|
-webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.18039216);
|
|
box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.18039216);
|
|
flex-direction: column;
|
|
transition: all 0.3s;
|
|
overflow: hidden;
|
|
opacity: 0;
|
|
width: 0;
|
|
height: 0;
|
|
align-items: center;
|
|
padding-top: 68px;
|
|
z-index: 2;
|
|
}
|
|
.body .right .list .item .operate .select.show {
|
|
width: 285px;
|
|
height: 171px;
|
|
opacity: 1;
|
|
}
|
|
.body .right .list .item .operate .select .title {
|
|
font-size: 14px;
|
|
color: #7f7f7f;
|
|
margin-bottom: 19px;
|
|
}
|
|
.body .right .list .item .operate .select .title .dot {
|
|
width: 8px;
|
|
height: 8px;
|
|
border-radius: 50%;
|
|
border: 1px solid #cab157;
|
|
background-color: #fddf6d;
|
|
margin-right: 5px;
|
|
}
|
|
.body .right .list .item .operate .select .btn {
|
|
cursor: pointer;
|
|
width: 144px;
|
|
height: 36px;
|
|
background: -webkit-linear-gradient(194.03624347deg, #dbe3fd 0%, #eef7f5 100%);
|
|
background: -moz-linear-gradient(255.96375653deg, #dbe3fd 0%, #eef7f5 100%);
|
|
background: linear-gradient(255.96375653deg, #dbe3fd 0%, #eef7f5 100%);
|
|
border-radius: 158px;
|
|
font-size: 14px;
|
|
color: #333333;
|
|
}
|
|
.body .right .list .item .operate .select .btn .img {
|
|
width: 16px;
|
|
height: 16px;
|
|
margin-right: 8px;
|
|
}
|
|
.body .right .list .item .operate .already {
|
|
font-size: 14px;
|
|
color: #7f7f7f;
|
|
}
|
|
.body .right .list .item .operate .already .tick-box {
|
|
width: 20px;
|
|
height: 20px;
|
|
background-color: #f6f6f6;
|
|
border: 1px solid #d7d7d7;
|
|
border-radius: 20px;
|
|
margin-right: 5px;
|
|
}
|
|
.body .right .list .item .operate .already .tick-box .img-tick {
|
|
width: 10px;
|
|
height: 8px;
|
|
}
|
|
.empty-box {
|
|
height: 500px;
|
|
}
|