2024-11-07 08:32:00 +00:00
|
|
|
.boxbox {
|
2024-10-30 11:12:42 +00:00
|
|
|
width: 1200px;
|
|
|
|
background-color: #fbfbfb;
|
|
|
|
border-radius: 12px;
|
|
|
|
position: relative;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
2024-11-21 07:42:17 +00:00
|
|
|
.boxbox .admission-title {
|
2024-11-21 07:35:46 +00:00
|
|
|
position: absolute;
|
2024-11-21 07:37:10 +00:00
|
|
|
width: 120px;
|
|
|
|
height: 32px;
|
2024-11-21 07:35:46 +00:00
|
|
|
top: -11px;
|
|
|
|
left: 50%;
|
|
|
|
transform: translateX(-50%);
|
2024-11-21 07:42:17 +00:00
|
|
|
display: none;
|
2024-11-21 07:30:31 +00:00
|
|
|
}
|
2024-11-21 07:42:17 +00:00
|
|
|
.boxbox .admission-title .admission-bj {
|
2024-11-21 07:30:31 +00:00
|
|
|
position: absolute;
|
|
|
|
left: -5px;
|
|
|
|
top: -5px;
|
|
|
|
width: 131px;
|
|
|
|
height: 43px;
|
|
|
|
}
|
2024-11-21 07:42:17 +00:00
|
|
|
.boxbox .admission-title .admission-name {
|
2024-11-21 07:30:31 +00:00
|
|
|
width: 70px;
|
|
|
|
height: 18px;
|
2024-11-21 07:35:46 +00:00
|
|
|
position: absolute;
|
|
|
|
top: 7px;
|
|
|
|
left: 50%;
|
|
|
|
transform: translateX(-50%);
|
2024-11-21 07:30:31 +00:00
|
|
|
}
|
2024-11-21 07:42:17 +00:00
|
|
|
.boxbox .admission-title .admission-arrows {
|
2024-11-21 07:30:31 +00:00
|
|
|
width: 13px;
|
|
|
|
height: 6px;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
}
|
2024-11-21 07:42:17 +00:00
|
|
|
.boxbox .admission-title .admission-arrows.admission-arrows-left {
|
2024-11-21 07:30:31 +00:00
|
|
|
left: -6px;
|
|
|
|
}
|
2024-11-21 07:42:17 +00:00
|
|
|
.boxbox .admission-title .admission-arrows.admission-arrows-right {
|
2024-11-21 07:30:31 +00:00
|
|
|
right: -6px;
|
|
|
|
}
|
2024-11-21 07:42:17 +00:00
|
|
|
.boxbox.admission .admission-title {
|
|
|
|
display: block;
|
|
|
|
}
|
2024-11-21 07:25:51 +00:00
|
|
|
.boxbox.admission::after {
|
|
|
|
background: linear-gradient(90deg, #cfe0ec, #8fafc6, #cfe0ec);
|
|
|
|
}
|
2024-11-07 08:32:00 +00:00
|
|
|
.boxbox::after {
|
2024-10-30 11:12:42 +00:00
|
|
|
content: "";
|
|
|
|
position: absolute;
|
|
|
|
top: -5px;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 66px;
|
2024-11-21 07:25:51 +00:00
|
|
|
background: linear-gradient(90deg, #7b8cd3 0%, #dae3fd 99%);
|
2024-10-30 11:12:42 +00:00
|
|
|
border-radius: 18px;
|
|
|
|
z-index: -1;
|
|
|
|
}
|
2024-11-07 08:32:00 +00:00
|
|
|
.boxbox .tab {
|
2024-10-30 11:12:42 +00:00
|
|
|
height: 60px;
|
|
|
|
font-size: 14px;
|
|
|
|
color: #7f7f7f;
|
|
|
|
border-bottom: 1px dotted #ebebeb;
|
|
|
|
padding-left: 24px;
|
|
|
|
}
|
2024-11-11 04:23:54 +00:00
|
|
|
.boxbox .tab a {
|
|
|
|
color: #7f7f7f;
|
|
|
|
}
|
2024-11-25 03:46:48 +00:00
|
|
|
.boxbox .tab a:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
color: #000000;
|
|
|
|
}
|
2024-11-07 08:32:00 +00:00
|
|
|
.boxbox .tab .img {
|
2024-10-30 11:12:42 +00:00
|
|
|
width: 6px;
|
|
|
|
height: 10px;
|
2024-11-22 03:45:18 +00:00
|
|
|
margin: 0 10px;
|
2024-10-30 11:12:42 +00:00
|
|
|
}
|
2024-11-07 08:32:00 +00:00
|
|
|
.boxbox .tab .current {
|
2024-10-30 11:12:42 +00:00
|
|
|
font-family: "PingFangSC-Semibold", "PingFang SC Semibold", "PingFang SC", sans-serif;
|
|
|
|
font-weight: 650;
|
|
|
|
font-style: normal;
|
|
|
|
font-size: 14px;
|
|
|
|
color: #000000;
|
|
|
|
}
|
2024-11-07 08:32:00 +00:00
|
|
|
.boxbox .details {
|
2024-11-13 08:21:32 +00:00
|
|
|
padding: 0 0 0 60px;
|
2024-10-30 11:12:42 +00:00
|
|
|
}
|
2024-11-07 08:32:00 +00:00
|
|
|
.boxbox .details .logo {
|
2024-10-30 11:12:42 +00:00
|
|
|
width: 120px;
|
|
|
|
height: 120px;
|
|
|
|
position: relative;
|
|
|
|
z-index: 1;
|
2024-11-25 08:04:33 +00:00
|
|
|
margin-top: 36px;
|
2024-10-30 11:12:42 +00:00
|
|
|
margin-right: 39px;
|
2024-11-25 08:34:41 +00:00
|
|
|
margin-bottom: 36px;
|
2024-10-30 11:12:42 +00:00
|
|
|
display: inline-flex;
|
|
|
|
}
|
2024-11-13 08:21:32 +00:00
|
|
|
.boxbox .details .right {
|
|
|
|
padding-top: 31px;
|
2024-11-22 09:37:23 +00:00
|
|
|
padding-bottom: 24px;
|
2025-01-03 03:02:18 +00:00
|
|
|
padding-right: 5px;
|
2024-11-13 08:21:32 +00:00
|
|
|
}
|
2024-11-07 08:32:00 +00:00
|
|
|
.boxbox .details .right .name {
|
2024-10-30 11:12:42 +00:00
|
|
|
font-family: "PingFangSC-Semibold", "PingFang SC Semibold", "PingFang SC", sans-serif;
|
|
|
|
font-weight: 650;
|
|
|
|
font-style: normal;
|
2024-11-22 03:45:18 +00:00
|
|
|
font-size: 28px;
|
2024-10-30 11:12:42 +00:00
|
|
|
color: #000000;
|
|
|
|
margin-bottom: 6px;
|
|
|
|
}
|
2024-11-07 08:32:00 +00:00
|
|
|
.boxbox .details .right .name-en {
|
2024-10-30 11:12:42 +00:00
|
|
|
font-family: "PingFangSC-Regular", "PingFang SC", sans-serif;
|
|
|
|
font-weight: 400;
|
|
|
|
font-style: normal;
|
|
|
|
font-size: 14px;
|
|
|
|
color: #7f7f7f;
|
|
|
|
margin-bottom: 15px;
|
|
|
|
}
|
2024-11-07 08:32:00 +00:00
|
|
|
.boxbox .details .right .school {
|
2024-10-30 11:12:42 +00:00
|
|
|
font-size: 16px;
|
|
|
|
color: #333333;
|
|
|
|
margin-bottom: 15px;
|
|
|
|
}
|
2024-11-07 08:32:00 +00:00
|
|
|
.boxbox .details .right .school .icon {
|
2024-10-30 11:12:42 +00:00
|
|
|
height: 20px;
|
|
|
|
margin-right: 9px;
|
|
|
|
}
|
2024-11-12 07:59:15 +00:00
|
|
|
.boxbox .details .right .school a {
|
|
|
|
color: #333333;
|
|
|
|
}
|
2024-11-07 08:32:00 +00:00
|
|
|
.boxbox .details .right .school .line {
|
2024-11-22 03:45:18 +00:00
|
|
|
margin: 0 12px;
|
2024-10-30 11:12:42 +00:00
|
|
|
color: #d7d7d7;
|
|
|
|
}
|
2024-11-07 08:32:00 +00:00
|
|
|
.boxbox .details .right .word {
|
2024-10-30 11:12:42 +00:00
|
|
|
margin-bottom: 15px;
|
2024-11-15 02:57:08 +00:00
|
|
|
font-weight: 400;
|
2024-10-30 11:12:42 +00:00
|
|
|
font-size: 14px;
|
|
|
|
color: #7f7f7f;
|
|
|
|
}
|
2024-11-07 08:32:00 +00:00
|
|
|
.boxbox .details .right .word .img {
|
2024-10-30 11:12:42 +00:00
|
|
|
width: 20px;
|
|
|
|
height: 14px;
|
|
|
|
margin-right: 6px;
|
|
|
|
margin-bottom: 8px;
|
|
|
|
}
|
2024-11-13 08:21:32 +00:00
|
|
|
.boxbox .details .QRCode {
|
|
|
|
position: relative;
|
|
|
|
width: 290px;
|
|
|
|
border-left: 1px dotted #ebebeb;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
.boxbox .details .QRCode .code {
|
|
|
|
width: 120px;
|
|
|
|
height: 120px;
|
|
|
|
background-color: #ffffff;
|
|
|
|
border-radius: 60px;
|
|
|
|
box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.07058824);
|
|
|
|
margin-bottom: 12px;
|
|
|
|
}
|
|
|
|
.boxbox .details .QRCode .code .img {
|
|
|
|
width: 100px;
|
|
|
|
height: 100px;
|
2024-11-13 09:51:22 +00:00
|
|
|
border-radius: 30%;
|
2024-11-13 08:21:32 +00:00
|
|
|
}
|
|
|
|
.boxbox .details .QRCode .hint {
|
|
|
|
font-size: 13px;
|
|
|
|
letter-spacing: normal;
|
|
|
|
color: #333333;
|
|
|
|
}
|
|
|
|
.boxbox .details .QRCode .hint .img {
|
|
|
|
width: 12px;
|
|
|
|
height: 12px;
|
|
|
|
margin-right: 7px;
|
|
|
|
}
|
|
|
|
.boxbox .details .QRCode .triangle {
|
|
|
|
width: 9px;
|
|
|
|
height: 16px;
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
left: 0;
|
|
|
|
transform: translateY(-50%);
|
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.body {
|
|
|
|
align-items: flex-start;
|
2024-11-13 08:51:43 +00:00
|
|
|
margin-bottom: 20px;
|
2024-10-31 04:27:27 +00:00
|
|
|
}
|
|
|
|
.content {
|
2024-10-30 11:12:42 +00:00
|
|
|
background-color: #ffffff;
|
|
|
|
border: 1px solid #f2f2f2;
|
|
|
|
border-radius: 12px;
|
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.content .side {
|
2024-10-30 11:12:42 +00:00
|
|
|
border-radius: 12px 0 0 0;
|
2024-11-14 03:22:27 +00:00
|
|
|
width: 140px;
|
2024-10-30 11:12:42 +00:00
|
|
|
height: 500px;
|
2024-11-07 07:33:39 +00:00
|
|
|
position: sticky;
|
|
|
|
top: 0;
|
2024-10-30 11:12:42 +00:00
|
|
|
flex-direction: column;
|
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.content .side .item {
|
2024-10-30 11:12:42 +00:00
|
|
|
width: 100%;
|
|
|
|
height: 56px;
|
|
|
|
font-size: 15px;
|
|
|
|
color: #555555;
|
|
|
|
cursor: pointer;
|
2024-12-18 07:50:13 +00:00
|
|
|
position: relative;
|
2024-10-30 11:12:42 +00:00
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.content .side .item.pitch {
|
2024-11-27 06:10:44 +00:00
|
|
|
width: calc(100% + 1px);
|
2024-10-30 11:12:42 +00:00
|
|
|
background-color: #fbfbfb;
|
|
|
|
border-top: 1px solid #ebebeb;
|
|
|
|
border-bottom: 1px solid #ebebeb;
|
|
|
|
border-right: none;
|
|
|
|
font-family: "PingFangSC-Semibold", "PingFang SC Semibold", "PingFang SC", sans-serif;
|
|
|
|
font-weight: 650;
|
|
|
|
font-style: normal;
|
|
|
|
font-size: 15px;
|
|
|
|
color: #000000;
|
|
|
|
position: relative;
|
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.content .side .item.pitch:first-of-type {
|
2024-10-30 11:12:42 +00:00
|
|
|
border-top: none;
|
2024-11-14 04:30:07 +00:00
|
|
|
border-radius: 12px 0 0 0;
|
|
|
|
overflow: hidden;
|
2024-10-30 11:12:42 +00:00
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.content .side .item.pitch::after {
|
2024-10-30 11:12:42 +00:00
|
|
|
content: "";
|
|
|
|
width: 5px;
|
|
|
|
height: 100%;
|
|
|
|
display: block;
|
|
|
|
background-color: #6fc16d;
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
top: 0;
|
|
|
|
}
|
2024-12-18 07:53:36 +00:00
|
|
|
.content .side .item .item-text {
|
|
|
|
position: relative;
|
|
|
|
}
|
2024-12-18 07:49:41 +00:00
|
|
|
.content .side .item .red-amount {
|
|
|
|
padding: 0 5px;
|
|
|
|
background-color: #f95d5d;
|
|
|
|
height: 16px;
|
2024-12-18 07:53:36 +00:00
|
|
|
line-height: 16px;
|
2024-12-18 07:49:41 +00:00
|
|
|
font-size: 12px;
|
|
|
|
border-radius: 10px;
|
2024-12-18 07:50:13 +00:00
|
|
|
position: absolute;
|
2024-12-18 07:55:30 +00:00
|
|
|
right: 0;
|
|
|
|
top: -8px;
|
|
|
|
transform: translateX(100%);
|
2024-12-18 07:53:36 +00:00
|
|
|
color: #fff;
|
|
|
|
text-align: center;
|
|
|
|
font-weight: 400;
|
2024-12-18 07:49:41 +00:00
|
|
|
}
|
2024-12-18 08:22:24 +00:00
|
|
|
.content .side .item .red-amount.red-round {
|
|
|
|
padding: 0;
|
|
|
|
width: 16px;
|
|
|
|
border-radius: 50%;
|
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.content .details-box {
|
2024-10-30 11:12:42 +00:00
|
|
|
background-color: #fbfbfb;
|
2024-11-13 08:51:43 +00:00
|
|
|
border-radius: 0 12px 12px 0;
|
2024-11-07 07:33:39 +00:00
|
|
|
border-left: 1px solid #ebebeb;
|
2024-10-30 11:12:42 +00:00
|
|
|
}
|
2024-11-14 07:15:16 +00:00
|
|
|
.content .details-box .side-item {
|
|
|
|
padding-top: 40px;
|
|
|
|
padding-left: 50px;
|
2024-11-14 07:17:14 +00:00
|
|
|
padding-right: 30px;
|
2024-11-14 07:17:57 +00:00
|
|
|
}
|
|
|
|
.content .details-box .side-item:not(:last-of-type) {
|
2024-11-14 07:15:16 +00:00
|
|
|
border-bottom: 1px solid #ebebeb;
|
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.content .details-box .block {
|
2024-10-30 11:12:42 +00:00
|
|
|
background-color: #ffffff;
|
|
|
|
border: 1px solid #ebebeb;
|
|
|
|
border-radius: 12px;
|
|
|
|
}
|
2024-11-21 10:59:50 +00:00
|
|
|
.content .details-box .answer .hint {
|
|
|
|
color: #555555;
|
|
|
|
font-size: 13px;
|
|
|
|
height: 42px;
|
|
|
|
line-height: 42px;
|
|
|
|
border-bottom: 1px solid #ebebeb;
|
|
|
|
padding-left: 17px;
|
|
|
|
}
|
|
|
|
.content .details-box .answer .hint .icon {
|
|
|
|
width: 14px;
|
|
|
|
height: 14px;
|
|
|
|
margin-right: 6px;
|
|
|
|
}
|
|
|
|
.content .details-box .answer .tab {
|
|
|
|
flex-wrap: wrap;
|
|
|
|
padding: 23px 17px 26px;
|
|
|
|
}
|
|
|
|
.content .details-box .answer .tab .tab-item {
|
|
|
|
height: 32px;
|
|
|
|
padding: 0 12px;
|
|
|
|
background-color: #edf0f4;
|
|
|
|
border: 1px solid #ebebeb;
|
|
|
|
border-radius: 114px;
|
|
|
|
font-size: 14px;
|
|
|
|
color: #555555;
|
|
|
|
margin-right: 10px;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
.content .details-box .answer .tab .tab-item.pitch {
|
|
|
|
font-weight: 650;
|
|
|
|
color: #ffffff;
|
|
|
|
background-color: #6fc16d;
|
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
.content .details-box .answer .dialogue {
|
|
|
|
padding: 23px 17px 26px;
|
|
|
|
}
|
|
|
|
.content .details-box .answer .dialogue .info {
|
|
|
|
color: #7f7f7f;
|
|
|
|
font-size: 13px;
|
|
|
|
margin-bottom: 4px;
|
|
|
|
}
|
|
|
|
.content .details-box .answer .dialogue .info .avatar {
|
|
|
|
border-radius: 50%;
|
|
|
|
width: 32px;
|
|
|
|
height: 32px;
|
|
|
|
}
|
|
|
|
.content .details-box .answer .dialogue .dialogue-left .avatar {
|
|
|
|
margin-right: 6px;
|
|
|
|
}
|
|
|
|
.content .details-box .answer .dialogue .dialogue-left .message {
|
|
|
|
margin-left: 38px;
|
|
|
|
border-top-left-radius: 0;
|
|
|
|
background-color: #f6f6f6;
|
|
|
|
}
|
2024-11-22 03:22:12 +00:00
|
|
|
.content .details-box .answer .dialogue .dialogue-left .img {
|
|
|
|
margin-left: 38px;
|
|
|
|
}
|
2024-11-21 10:59:50 +00:00
|
|
|
.content .details-box .answer .dialogue .dialogue-right {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: flex-end;
|
|
|
|
}
|
|
|
|
.content .details-box .answer .dialogue .dialogue-right .info {
|
|
|
|
justify-content: flex-end;
|
|
|
|
}
|
|
|
|
.content .details-box .answer .dialogue .dialogue-right .info .avatar {
|
|
|
|
margin-left: 6px;
|
|
|
|
}
|
|
|
|
.content .details-box .answer .dialogue .dialogue-right .message {
|
|
|
|
margin-right: 38px;
|
|
|
|
border-top-right-radius: 0;
|
|
|
|
background-color: #f4f8fd;
|
|
|
|
}
|
2024-11-22 03:22:12 +00:00
|
|
|
.content .details-box .answer .dialogue .dialogue-right .img {
|
|
|
|
margin-right: 38px;
|
|
|
|
}
|
2024-11-21 10:59:50 +00:00
|
|
|
.content .details-box .answer .dialogue .message {
|
|
|
|
font-size: 14px;
|
|
|
|
color: #000000;
|
|
|
|
line-height: 26px;
|
|
|
|
padding: 10px;
|
|
|
|
width: fit-content;
|
|
|
|
max-width: 80%;
|
|
|
|
min-height: 46px;
|
|
|
|
background: inherit;
|
|
|
|
border: none;
|
|
|
|
border-radius: 16px;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
2024-11-22 03:22:12 +00:00
|
|
|
.content .details-box .answer .dialogue .img {
|
|
|
|
border: 1px solid #e0dfdf;
|
|
|
|
border-radius: 10px;
|
|
|
|
width: 170px;
|
|
|
|
min-height: 100px;
|
|
|
|
max-height: 180px;
|
|
|
|
object-fit: cover;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.content .details-box .item-header {
|
2024-10-30 11:12:42 +00:00
|
|
|
font-family: "PingFangSC-Semibold", "PingFang SC Semibold", "PingFang SC", sans-serif;
|
|
|
|
font-weight: 650;
|
|
|
|
font-style: normal;
|
|
|
|
font-size: 16px;
|
|
|
|
color: #000000;
|
|
|
|
justify-content: space-between;
|
|
|
|
margin-bottom: 22px;
|
|
|
|
position: relative;
|
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.content .details-box .item-header::after {
|
2024-10-30 11:12:42 +00:00
|
|
|
content: "";
|
|
|
|
width: 6px;
|
|
|
|
height: 16px;
|
|
|
|
background-color: #fddf6d;
|
|
|
|
border: 1px solid #cab157;
|
|
|
|
border-radius: 5px;
|
|
|
|
margin-right: 14px;
|
|
|
|
position: absolute;
|
|
|
|
top: 4px;
|
|
|
|
left: -20px;
|
|
|
|
display: block;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.content .details-box .item-header .list-btn {
|
2024-10-30 11:12:42 +00:00
|
|
|
font-weight: 400;
|
|
|
|
font-size: 14px;
|
|
|
|
color: #000000;
|
2024-11-07 07:33:39 +00:00
|
|
|
cursor: pointer;
|
2024-10-30 11:12:42 +00:00
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.content .details-box .item-header .list-btn .icon {
|
2024-10-30 11:12:42 +00:00
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
|
|
|
margin-left: 8px;
|
|
|
|
}
|
2024-11-06 11:05:28 +00:00
|
|
|
.content .details-box .mb40 {
|
|
|
|
margin-bottom: 40px;
|
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.content .details-box .ranking {
|
2024-10-30 11:12:42 +00:00
|
|
|
margin-bottom: 40px;
|
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.content .details-box .ranking .item {
|
2024-10-30 11:12:42 +00:00
|
|
|
height: 76px;
|
|
|
|
border: 1px solid #ebebeb;
|
|
|
|
border-radius: 6px;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.content .details-box .ranking .item:not(:last-of-type) {
|
2024-10-30 11:12:42 +00:00
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.content .details-box .ranking .item .rank {
|
2024-10-30 11:12:42 +00:00
|
|
|
background-color: #ffffff;
|
|
|
|
padding: 0 22px;
|
|
|
|
justify-content: space-between;
|
2024-11-06 11:05:28 +00:00
|
|
|
width: 252px;
|
2024-10-30 11:12:42 +00:00
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.content .details-box .ranking .item .rank .logo {
|
2024-10-30 11:12:42 +00:00
|
|
|
height: 24px;
|
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.content .details-box .ranking .item .rank .number {
|
2024-10-30 11:12:42 +00:00
|
|
|
width: 90px;
|
|
|
|
height: 30px;
|
|
|
|
line-height: 30px;
|
|
|
|
border-radius: 4px;
|
|
|
|
font-family: "Arial-Black", "Arial Black", sans-serif;
|
|
|
|
font-weight: 900;
|
|
|
|
font-size: 18px;
|
|
|
|
color: #ffffff;
|
2024-11-07 07:33:39 +00:00
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
.content .details-box .ranking .item .rank .number.qs {
|
|
|
|
background-color: #f7a602;
|
|
|
|
}
|
|
|
|
.content .details-box .ranking .item .rank .number.times {
|
|
|
|
background: -webkit-linear-gradient(311.63353934deg, #fc392d 0%, #3948ff 135%);
|
|
|
|
background: -moz-linear-gradient(138.36646066deg, #fc392d 0%, #3948ff 135%);
|
|
|
|
background: linear-gradient(138.36646066deg, #fc392d 0%, #3948ff 135%);
|
|
|
|
}
|
|
|
|
.content .details-box .ranking .item .rank .number.usnews {
|
|
|
|
background-color: #025ea7;
|
|
|
|
}
|
|
|
|
.content .details-box .ranking .item .rank .number.ruanke {
|
|
|
|
background-color: #e5122d;
|
|
|
|
}
|
|
|
|
.content .details-box .ranking .item .rank .number .triangle {
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
transform: translateY(-50%);
|
2024-12-17 10:40:59 +00:00
|
|
|
left: -4px;
|
2024-11-07 07:33:39 +00:00
|
|
|
width: 5px;
|
|
|
|
height: 8px;
|
2024-10-30 11:12:42 +00:00
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.content .details-box .ranking .item .rank-box {
|
2024-10-30 11:12:42 +00:00
|
|
|
background-color: #f6f6f6;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.content .details-box .ranking .item .rank-box .itemm {
|
2024-10-30 11:12:42 +00:00
|
|
|
font-size: 14px;
|
|
|
|
padding-left: 20px;
|
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.content .details-box .ranking .item .rank-box .itemm .key {
|
2024-10-30 11:12:42 +00:00
|
|
|
color: #7f7f7f;
|
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.content .details-box .ranking .item .rank-box .itemm .value {
|
2024-10-30 11:12:42 +00:00
|
|
|
color: #333333;
|
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.content .details-box .ranking .item .rank-box .itemm:first-of-type {
|
2024-10-30 11:12:42 +00:00
|
|
|
margin-bottom: 9px;
|
|
|
|
}
|
2024-11-06 11:05:28 +00:00
|
|
|
.content .details-box .text-box {
|
|
|
|
padding: 20px 16px 20px;
|
|
|
|
position: relative;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
.content .details-box .text-box .text-head {
|
|
|
|
font-family: "PingFangSC-Semibold", "PingFang SC Semibold", "PingFang SC", sans-serif;
|
|
|
|
font-weight: 650;
|
|
|
|
font-style: normal;
|
|
|
|
font-size: 18px;
|
|
|
|
color: #000000;
|
|
|
|
text-align: center;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
|
|
|
.content .details-box .text-box .text-head .text-icon {
|
|
|
|
width: 16px;
|
|
|
|
height: 9px;
|
|
|
|
margin: auto auto 11px;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 50%;
|
|
|
|
transform: translateX(-50%);
|
|
|
|
}
|
|
|
|
.content .details-box .text-box .text-list {
|
2024-11-19 07:19:57 +00:00
|
|
|
width: 100%;
|
2024-11-06 11:05:28 +00:00
|
|
|
height: 320px;
|
|
|
|
overflow: hidden;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
.content .details-box .text-box .text {
|
|
|
|
display: inline-block;
|
|
|
|
font-size: 15px;
|
2024-11-15 03:24:03 +00:00
|
|
|
font-weight: 400;
|
2024-11-06 11:05:28 +00:00
|
|
|
color: #000000;
|
|
|
|
line-height: 32px;
|
|
|
|
white-space: pre-line;
|
2024-11-07 07:33:39 +00:00
|
|
|
width: 100%;
|
2024-11-06 11:05:28 +00:00
|
|
|
}
|
|
|
|
.content .details-box .text-box .text.text-center {
|
|
|
|
width: 100%;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
.content .details-box .text-box .text.textRef {
|
|
|
|
position: absolute;
|
|
|
|
color: transparent;
|
|
|
|
top: -10000%;
|
2024-11-19 07:26:43 +00:00
|
|
|
width: calc(100% - 32px);
|
2024-11-06 11:05:28 +00:00
|
|
|
}
|
|
|
|
.content .details-box .text-box .indicate {
|
|
|
|
line-height: 12px;
|
|
|
|
margin-top: 24px;
|
|
|
|
}
|
|
|
|
.content .details-box .text-box .indicate .icon {
|
|
|
|
width: 7px;
|
|
|
|
height: 12px;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
.content .details-box .text-box .indicate .icon.btn-right {
|
|
|
|
transform: rotate(180deg);
|
|
|
|
}
|
|
|
|
.content .details-box .text-box .indicate .text {
|
|
|
|
color: #555555;
|
|
|
|
font-size: 13px;
|
|
|
|
margin: 0 12px;
|
|
|
|
line-height: normal;
|
2024-11-07 07:33:39 +00:00
|
|
|
width: fit-content;
|
2024-11-06 11:05:28 +00:00
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.content .details-box .application-schedule {
|
2024-10-30 11:12:42 +00:00
|
|
|
margin-bottom: 40px;
|
|
|
|
}
|
2024-11-13 07:00:24 +00:00
|
|
|
.content .details-box .application-schedule .list {
|
2024-10-30 11:12:42 +00:00
|
|
|
padding-top: 19px;
|
2024-11-13 07:00:24 +00:00
|
|
|
}
|
|
|
|
.content .details-box .application-schedule .list .index {
|
|
|
|
height: 30px;
|
|
|
|
background-color: #f6f6f6;
|
|
|
|
border-radius: 72px;
|
|
|
|
margin: 0 22.5px 0;
|
|
|
|
font-size: 15px;
|
|
|
|
color: #555555;
|
|
|
|
padding-left: 10px;
|
|
|
|
margin-bottom: 19px;
|
|
|
|
}
|
|
|
|
.content .details-box .application-schedule .list .index .sum {
|
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
|
|
|
line-height: 20px;
|
|
|
|
background-color: #f95d5d;
|
|
|
|
border-radius: 33px;
|
|
|
|
color: #ffffff;
|
|
|
|
margin-right: 10px;
|
|
|
|
}
|
|
|
|
.content .details-box .application-schedule .list .time {
|
2024-10-30 11:12:42 +00:00
|
|
|
padding-bottom: 22px;
|
|
|
|
text-align: center;
|
|
|
|
}
|
2024-12-16 09:57:56 +00:00
|
|
|
.content .details-box .application-schedule .list .time .item {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: space-between;
|
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.content .details-box .application-schedule .list .time .item:first-of-type {
|
2024-10-30 11:12:42 +00:00
|
|
|
border-right: 1px dotted #ebebeb;
|
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.content .details-box .application-schedule .list .time .item .name {
|
2024-10-30 11:12:42 +00:00
|
|
|
font-size: 16px;
|
|
|
|
color: #000000;
|
|
|
|
font-family: "Arial-Black", "Arial Black", sans-serif;
|
|
|
|
font-weight: 900;
|
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.content .details-box .application-schedule .list .time .item .value {
|
2024-10-30 11:12:42 +00:00
|
|
|
font-size: 14px;
|
|
|
|
color: #555555;
|
2024-12-16 09:26:55 +00:00
|
|
|
margin-top: 14px;
|
2024-10-30 11:12:42 +00:00
|
|
|
}
|
2024-12-16 10:00:06 +00:00
|
|
|
.content .details-box .application-schedule .list .time .item .login-show {
|
|
|
|
line-height: 23px;
|
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.content .details-box .application-schedule .application-else {
|
2024-10-30 11:12:42 +00:00
|
|
|
background-color: #f6f6f6;
|
|
|
|
border-radius: 6px;
|
|
|
|
padding: 14px 10px;
|
|
|
|
margin: 0 20px 20px;
|
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.content .details-box .application-schedule .application-else .item:not(:last-of-type) {
|
2024-10-30 11:12:42 +00:00
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.content .details-box .application-schedule .application-else .item .name {
|
2024-10-30 11:12:42 +00:00
|
|
|
font-size: 14px;
|
|
|
|
color: #7f7f7f;
|
|
|
|
margin-right: 11px;
|
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.content .details-box .application-schedule .application-else .item .value {
|
2024-10-30 11:12:42 +00:00
|
|
|
font-size: 14px;
|
|
|
|
color: #333333;
|
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.content .details-box .demand {
|
2024-10-30 11:12:42 +00:00
|
|
|
margin-bottom: 40px;
|
|
|
|
padding: 17px 20px;
|
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.content .details-box .demand .text {
|
2024-10-30 11:12:42 +00:00
|
|
|
font-family: "PingFangSC-Regular", "PingFang SC", sans-serif;
|
|
|
|
font-weight: 400;
|
|
|
|
font-style: normal;
|
|
|
|
font-size: 15px;
|
|
|
|
color: #000000;
|
|
|
|
line-height: 32px;
|
|
|
|
word-break: break-word;
|
|
|
|
white-space: pre-line;
|
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.content .details-box .demand .title {
|
2024-10-30 11:12:42 +00:00
|
|
|
font-weight: 650;
|
|
|
|
font-style: normal;
|
2024-11-28 04:31:08 +00:00
|
|
|
font-size: 16px;
|
2024-10-30 11:12:42 +00:00
|
|
|
color: #000000;
|
2024-11-14 09:40:32 +00:00
|
|
|
margin-top: 32px;
|
2024-10-30 11:12:42 +00:00
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.content .details-box .demand .hint {
|
2024-10-30 11:12:42 +00:00
|
|
|
font-size: 15px;
|
|
|
|
color: #333333;
|
|
|
|
margin-bottom: 21px;
|
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.content .details-box .demand .list .item {
|
2024-10-30 11:12:42 +00:00
|
|
|
background-color: #f6f6f6;
|
|
|
|
border-radius: 6px;
|
|
|
|
padding: 14px 0 14px 28px;
|
|
|
|
position: relative;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
2024-11-28 04:31:08 +00:00
|
|
|
font-size: 14px;
|
2024-10-30 11:12:42 +00:00
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.content .details-box .demand .list .item .triangle {
|
2024-10-30 11:12:42 +00:00
|
|
|
position: absolute;
|
|
|
|
transform: rotate(270deg);
|
2024-11-27 06:10:44 +00:00
|
|
|
top: 22px;
|
2024-10-30 11:12:42 +00:00
|
|
|
left: 7px;
|
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.content .details-box .demand .list .item:not(:last-of-type) {
|
2024-10-30 11:12:42 +00:00
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.content .details-box .demand .list .item .name {
|
2024-10-30 11:12:42 +00:00
|
|
|
color: #7f7f7f;
|
|
|
|
margin-bottom: 8px;
|
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.content .details-box .demand .list .item .value {
|
2024-10-30 11:12:42 +00:00
|
|
|
color: #000000;
|
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.content .details-box .tuition {
|
2024-10-30 11:12:42 +00:00
|
|
|
height: 140px;
|
|
|
|
padding-right: 10px;
|
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.content .details-box .tuition .tuition-left {
|
2024-10-30 11:12:42 +00:00
|
|
|
height: 100%;
|
|
|
|
position: relative;
|
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.content .details-box .tuition .tuition-left .unit {
|
2024-10-30 11:12:42 +00:00
|
|
|
position: absolute;
|
|
|
|
top: 10px;
|
|
|
|
left: 10px;
|
|
|
|
width: 42px;
|
|
|
|
height: 20px;
|
|
|
|
background-color: #f95d5d;
|
|
|
|
border-radius: 15px;
|
|
|
|
font-family: "PingFangSC-Regular", "PingFang SC", sans-serif;
|
|
|
|
font-weight: 400;
|
|
|
|
font-size: 14px;
|
|
|
|
color: #ffffff;
|
|
|
|
text-align: center;
|
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.content .details-box .tuition .tuition-left .number {
|
2024-10-30 11:12:42 +00:00
|
|
|
font-family: "Arial-Black", "Arial Black", sans-serif;
|
|
|
|
font-weight: 900;
|
|
|
|
font-style: normal;
|
|
|
|
font-size: 20px;
|
|
|
|
color: #000000;
|
|
|
|
text-align: center;
|
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.content .details-box .tuition .tuition-left .text {
|
2024-11-27 07:46:31 +00:00
|
|
|
font-size: 14px;
|
2024-10-30 11:12:42 +00:00
|
|
|
color: #555555;
|
|
|
|
text-align: center;
|
2024-12-19 09:11:14 +00:00
|
|
|
margin-right: 10px;
|
2024-10-30 11:12:42 +00:00
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.content .details-box .tuition .tuition-right {
|
2024-10-30 11:12:42 +00:00
|
|
|
width: 240px;
|
|
|
|
height: 120px;
|
|
|
|
background-color: #f6f6f6;
|
|
|
|
border-radius: 6px;
|
|
|
|
padding: 16px 11px;
|
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.content .details-box .tuition .tuition-right .item {
|
2024-10-30 11:12:42 +00:00
|
|
|
justify-content: space-between;
|
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.content .details-box .tuition .tuition-right .item:not(:last-of-type) {
|
2024-11-27 07:46:31 +00:00
|
|
|
margin-bottom: 10px;
|
2024-10-30 11:12:42 +00:00
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.content .details-box .tuition .tuition-right .item .key {
|
2024-11-27 07:46:31 +00:00
|
|
|
font-size: 14px;
|
2024-10-30 11:12:42 +00:00
|
|
|
color: #555555;
|
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.content .details-box .tuition .tuition-right .item .value {
|
2024-10-30 11:12:42 +00:00
|
|
|
font-family: "Arial-Black", "Arial Black", sans-serif;
|
|
|
|
font-weight: 900;
|
|
|
|
font-style: normal;
|
|
|
|
font-size: 16px;
|
|
|
|
color: #000000;
|
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.content .details-box .tuition-scholarships {
|
2024-10-30 11:12:42 +00:00
|
|
|
margin-bottom: 40px;
|
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.content .details-box .tuition-scholarships .left {
|
2024-10-30 11:12:42 +00:00
|
|
|
margin-right: 39px;
|
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.content .details-box .tuition-scholarships .right .scholarships {
|
2024-10-30 11:12:42 +00:00
|
|
|
width: 180px;
|
|
|
|
height: 140px;
|
|
|
|
font-size: 15px;
|
|
|
|
color: #000000;
|
|
|
|
line-height: 34px;
|
|
|
|
text-align: center;
|
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.content .details-box .pattern {
|
2024-11-27 07:46:31 +00:00
|
|
|
padding: 18px 16px 33px;
|
2024-10-30 11:12:42 +00:00
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.content .details-box .pattern .tab {
|
2024-10-30 11:12:42 +00:00
|
|
|
width: 180px;
|
2024-11-22 03:45:18 +00:00
|
|
|
height: 32px;
|
|
|
|
background-color: #edf0f4;
|
2024-10-30 11:12:42 +00:00
|
|
|
border: 1px solid #ebebeb;
|
|
|
|
border-radius: 114px;
|
2024-11-27 07:46:31 +00:00
|
|
|
margin: 0 auto 38px;
|
2024-11-26 04:17:05 +00:00
|
|
|
position: relative;
|
2024-11-26 06:26:36 +00:00
|
|
|
z-index: 1;
|
2024-11-28 04:31:08 +00:00
|
|
|
--tab-left: "-1px";
|
2024-10-30 11:12:42 +00:00
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.content .details-box .pattern .tab .item {
|
2024-10-30 11:12:42 +00:00
|
|
|
height: 100%;
|
2024-11-22 03:45:18 +00:00
|
|
|
font-size: 14px;
|
2024-10-30 11:12:42 +00:00
|
|
|
color: #555555;
|
|
|
|
cursor: pointer;
|
2024-11-26 06:28:03 +00:00
|
|
|
transition: all 0.3s;
|
2024-10-30 11:12:42 +00:00
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.content .details-box .pattern .tab .item.pitch {
|
2024-11-26 04:17:05 +00:00
|
|
|
color: #ffffff;
|
|
|
|
}
|
|
|
|
.content .details-box .pattern .tab::after {
|
|
|
|
content: "";
|
2024-10-30 11:12:42 +00:00
|
|
|
background-color: #6fc16d;
|
|
|
|
border-radius: 22px;
|
2024-11-26 04:17:05 +00:00
|
|
|
display: block;
|
|
|
|
width: 90px;
|
|
|
|
height: 100%;
|
|
|
|
position: absolute;
|
2024-11-28 04:31:08 +00:00
|
|
|
top: -1;
|
2024-11-26 06:26:36 +00:00
|
|
|
left: var(--tab-left);
|
|
|
|
z-index: -1;
|
2024-11-26 06:28:03 +00:00
|
|
|
transition: all 0.3s;
|
2024-11-27 07:46:31 +00:00
|
|
|
border: 1px solid #6fc16d;
|
2024-10-30 11:12:42 +00:00
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.content .details-box .pattern .introduce .item {
|
2024-10-30 11:12:42 +00:00
|
|
|
text-align: center;
|
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.content .details-box .pattern .introduce .item:not(:last-of-type) {
|
2024-10-30 11:12:42 +00:00
|
|
|
border-right: 1px dotted #ebebeb;
|
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.content .details-box .pattern .introduce .item .value {
|
2024-10-30 11:12:42 +00:00
|
|
|
font-size: 16px;
|
|
|
|
color: #000000;
|
|
|
|
font-family: "Arial-Black", "Arial Black", "PingFangSC-Semibold", "PingFang SC Semibold", "PingFang SC", sans-serif;
|
|
|
|
font-weight: 900;
|
2024-11-27 07:46:31 +00:00
|
|
|
margin-bottom: 12px;
|
2024-10-30 11:12:42 +00:00
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.content .details-box .pattern .introduce .item .name {
|
2024-10-30 11:12:42 +00:00
|
|
|
font-size: 14px;
|
|
|
|
color: #555555;
|
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.content .details-box .course {
|
2024-10-30 11:12:42 +00:00
|
|
|
position: relative;
|
|
|
|
padding-top: 19px;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
font-size: 14px;
|
|
|
|
}
|
2024-11-28 07:15:21 +00:00
|
|
|
.content .details-box .course:last-of-type {
|
|
|
|
margin-bottom: 40px;
|
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.content .details-box .course .icon {
|
2024-10-30 11:12:42 +00:00
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 50%;
|
|
|
|
transform: translateX(-50%);
|
|
|
|
width: 16px;
|
|
|
|
height: 9px;
|
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.content .details-box .course .title {
|
2024-10-30 11:12:42 +00:00
|
|
|
font-family: "PingFangSC-Semibold", "PingFang SC Semibold", "PingFang SC", sans-serif;
|
|
|
|
font-weight: 650;
|
|
|
|
font-style: normal;
|
|
|
|
font-size: 18px;
|
|
|
|
color: #000000;
|
|
|
|
text-align: center;
|
2024-11-27 07:46:31 +00:00
|
|
|
margin-bottom: 7px;
|
2024-10-30 11:12:42 +00:00
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.content .details-box .course .hint {
|
2024-10-30 11:12:42 +00:00
|
|
|
color: #555555;
|
|
|
|
line-height: 22px;
|
|
|
|
text-align: center;
|
2024-11-27 07:46:31 +00:00
|
|
|
margin-bottom: 20px;
|
2024-10-30 11:12:42 +00:00
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.content .details-box .course .table-head {
|
2024-10-30 11:12:42 +00:00
|
|
|
background-color: #f6f6f6;
|
|
|
|
border-top: 1px solid #ebebeb;
|
|
|
|
border-bottom: 1px solid #ebebeb;
|
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.content .details-box .course .table-head .item {
|
2024-10-30 11:12:42 +00:00
|
|
|
height: 40px;
|
|
|
|
line-height: 40px;
|
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.content .details-box .course .table-body .list:not(:last-of-type) {
|
2024-10-30 11:12:42 +00:00
|
|
|
border-bottom: 1px solid #ebebeb;
|
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.content .details-box .course .table-body .item {
|
2024-10-30 11:12:42 +00:00
|
|
|
color: #333333;
|
|
|
|
padding: 12px 4px;
|
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.content .details-box .course .table-body .item.name {
|
2024-10-30 11:12:42 +00:00
|
|
|
color: #000000;
|
|
|
|
text-align: left;
|
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.content .details-box .course .table-body .item.name .english {
|
2024-10-30 11:12:42 +00:00
|
|
|
font-family: "Arial Normal", "Arial", sans-serif;
|
|
|
|
color: #aaaaaa;
|
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.content .details-box .course .table-body .item.credit {
|
2024-10-30 11:12:42 +00:00
|
|
|
font-family: "Arial-Black", "Arial Black", sans-serif;
|
|
|
|
font-weight: 900;
|
|
|
|
font-style: normal;
|
|
|
|
font-size: 14px;
|
|
|
|
color: #000000;
|
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.content .details-box .course .item {
|
2024-10-30 11:12:42 +00:00
|
|
|
text-align: center;
|
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.content .details-box .course .item.number {
|
2024-10-30 11:12:42 +00:00
|
|
|
width: 134px;
|
|
|
|
border-right: 1px solid #ebebeb;
|
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.content .details-box .course .item.name {
|
2024-10-30 11:12:42 +00:00
|
|
|
border-right: 1px solid #ebebeb;
|
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.content .details-box .course .item.credit {
|
2024-10-30 11:12:42 +00:00
|
|
|
width: 80px;
|
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.content .details-box .link {
|
2024-10-30 11:12:42 +00:00
|
|
|
font-size: 15px;
|
2024-11-27 07:46:31 +00:00
|
|
|
padding: 17px 20px 29px 15px;
|
2024-10-30 11:12:42 +00:00
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.content .details-box .link.brochure .img {
|
2024-10-30 11:12:42 +00:00
|
|
|
width: 70px;
|
|
|
|
height: 70px;
|
2024-10-31 03:44:53 +00:00
|
|
|
margin-right: 8px;
|
2024-10-30 11:12:42 +00:00
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.content .details-box .link.brochure .title {
|
2024-10-30 11:12:42 +00:00
|
|
|
font-family: "PingFangSC-Semibold", "PingFang SC Semibold", "PingFang SC", sans-serif;
|
|
|
|
font-weight: 650;
|
|
|
|
font-style: normal;
|
|
|
|
color: #000000;
|
|
|
|
line-height: normal;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.content .details-box .link.brochure .name {
|
2024-10-30 11:12:42 +00:00
|
|
|
font-family: "PingFangSC-Regular", "PingFang SC", sans-serif;
|
|
|
|
font-weight: 400;
|
|
|
|
font-style: normal;
|
|
|
|
font-size: 13px;
|
|
|
|
color: #555555;
|
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.content .details-box .link .title {
|
2024-10-30 11:12:42 +00:00
|
|
|
color: #000000;
|
|
|
|
line-height: 34px;
|
|
|
|
margin-bottom: 8px;
|
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.content .details-box .link .text {
|
2024-10-30 11:12:42 +00:00
|
|
|
text-decoration: underline;
|
|
|
|
line-height: 24px;
|
|
|
|
color: #333333;
|
2024-11-27 07:46:31 +00:00
|
|
|
margin-bottom: 34px;
|
2024-10-30 11:12:42 +00:00
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.content .details-box .link .btn {
|
2024-11-27 07:46:31 +00:00
|
|
|
width: 120px;
|
|
|
|
height: 32px;
|
|
|
|
line-height: 32px;
|
2024-10-30 11:12:42 +00:00
|
|
|
cursor: pointer;
|
|
|
|
background-color: #f6f6f6;
|
|
|
|
border: 1px solid #d7d7d7;
|
|
|
|
border-radius: 115px;
|
|
|
|
color: #333333;
|
|
|
|
margin-left: 10px;
|
2024-11-27 07:46:31 +00:00
|
|
|
font-size: 14px;
|
2024-10-30 11:12:42 +00:00
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.content .details-box .link .btn .icon {
|
2024-10-30 11:12:42 +00:00
|
|
|
width: 18px;
|
|
|
|
height: 18px;
|
|
|
|
margin-right: 6px;
|
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.content .details-box .link .btn.open {
|
2024-10-30 11:12:42 +00:00
|
|
|
border: none;
|
|
|
|
background-color: #6fc16d;
|
|
|
|
font-family: "PingFangSC-Semibold", "PingFang SC Semibold", "PingFang SC", sans-serif;
|
|
|
|
font-weight: 650;
|
|
|
|
font-style: normal;
|
|
|
|
color: #ffffff;
|
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.content .details-box .degree {
|
2024-10-30 11:12:42 +00:00
|
|
|
text-align: center;
|
2024-11-26 09:00:50 +00:00
|
|
|
padding: 16px 0 21px;
|
2024-10-30 11:12:42 +00:00
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.content .details-box .degree .title {
|
2024-10-30 11:12:42 +00:00
|
|
|
width: 103px;
|
|
|
|
height: 30px;
|
|
|
|
position: relative;
|
|
|
|
z-index: 1;
|
|
|
|
font-size: 16px;
|
|
|
|
color: #ffffff;
|
|
|
|
margin: 0 auto 16px;
|
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.content .details-box .degree .title .icon {
|
2024-10-30 11:12:42 +00:00
|
|
|
width: 103px;
|
|
|
|
height: 30px;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
z-index: -1;
|
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.content .details-box .degree .name {
|
2024-10-30 11:12:42 +00:00
|
|
|
font-size: 16px;
|
|
|
|
color: #000000;
|
|
|
|
line-height: 34px;
|
2024-11-26 09:00:50 +00:00
|
|
|
margin-bottom: 8px;
|
2024-10-30 11:12:42 +00:00
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.content .details-box .degree .english {
|
2024-10-30 11:12:42 +00:00
|
|
|
font-size: 14px;
|
|
|
|
color: #7f7f7f;
|
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.content .details-box .issue-bj {
|
2024-10-30 11:12:42 +00:00
|
|
|
z-index: 1;
|
|
|
|
position: relative;
|
|
|
|
}
|
2024-11-28 06:50:25 +00:00
|
|
|
.content .details-box .issue-bj:not(:last-of-type) {
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
2024-11-28 06:52:47 +00:00
|
|
|
.content .details-box .issue-bj:last-of-type {
|
|
|
|
margin-bottom: 40px;
|
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.content .details-box .issue-bj .issue {
|
2024-11-28 06:55:59 +00:00
|
|
|
padding: 0 0 0 41px;
|
2024-10-30 11:12:42 +00:00
|
|
|
margin-left: 5px;
|
|
|
|
position: relative;
|
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.content .details-box .issue-bj .issue .index-bj {
|
2024-10-30 11:12:42 +00:00
|
|
|
position: absolute;
|
|
|
|
width: 27px;
|
|
|
|
height: 24px;
|
|
|
|
top: 35px;
|
|
|
|
left: -5px;
|
|
|
|
z-index: -1;
|
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.content .details-box .issue-bj .issue .index {
|
2024-10-30 11:12:42 +00:00
|
|
|
width: 30px;
|
|
|
|
height: 26px;
|
|
|
|
background-color: #f95d5d;
|
|
|
|
border-radius: 0 5px 5px 0;
|
|
|
|
font-family: "Arial-Black", "Arial Black", sans-serif;
|
|
|
|
font-weight: 900;
|
|
|
|
color: #ffffff;
|
|
|
|
position: absolute;
|
|
|
|
top: 21px;
|
|
|
|
left: -5px;
|
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.content .details-box .issue-bj .issue .title {
|
2024-10-30 11:12:42 +00:00
|
|
|
font-family: "PingFangSC-Semibold", "PingFang SC Semibold", "PingFang SC", sans-serif;
|
|
|
|
font-weight: 650;
|
|
|
|
font-style: normal;
|
|
|
|
font-size: 15px;
|
|
|
|
color: #000000;
|
|
|
|
padding-top: 20px;
|
|
|
|
padding-bottom: 15px;
|
|
|
|
border-bottom: 1px dotted #ebebeb;
|
|
|
|
line-height: 28px;
|
2024-11-28 06:55:59 +00:00
|
|
|
padding-right: 10px;
|
2024-10-30 11:12:42 +00:00
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.content .details-box .issue-bj .issue .text {
|
2024-10-30 11:12:42 +00:00
|
|
|
font-size: 15px;
|
|
|
|
color: #555555;
|
|
|
|
line-height: 32px;
|
|
|
|
padding: 19px 0;
|
2024-11-28 06:55:59 +00:00
|
|
|
padding-right: 10px;
|
2024-10-30 11:12:42 +00:00
|
|
|
}
|
2024-11-21 07:04:13 +00:00
|
|
|
.content .details-box .consult-list {
|
|
|
|
padding-bottom: 30px;
|
|
|
|
}
|
2024-11-21 06:39:38 +00:00
|
|
|
.content .details-box .consult-list .consult-item {
|
|
|
|
width: calc(50% - 5px);
|
2024-11-22 03:55:48 +00:00
|
|
|
display: inline-block;
|
2024-11-21 06:39:38 +00:00
|
|
|
background-color: #ffffff;
|
|
|
|
border: 1px solid #ebebeb;
|
|
|
|
border-radius: 12px;
|
|
|
|
padding: 20px 15px 20px 20px;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
.content .details-box .consult-list .consult-item .school {
|
|
|
|
font-weight: 650;
|
|
|
|
font-style: normal;
|
|
|
|
font-size: 16px;
|
|
|
|
color: #000000;
|
|
|
|
margin-bottom: 12px;
|
|
|
|
}
|
|
|
|
.content .details-box .consult-list .consult-item .school .img {
|
2024-12-17 03:57:11 +00:00
|
|
|
width: 22px;
|
2024-11-21 06:39:38 +00:00
|
|
|
margin-right: 11px;
|
2024-12-17 03:58:03 +00:00
|
|
|
height: fit-content;
|
2024-11-21 06:39:38 +00:00
|
|
|
}
|
|
|
|
.content .details-box .consult-list .consult-item .info-item {
|
|
|
|
font-size: 14px;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
color: #7f7f7f;
|
|
|
|
}
|
|
|
|
.content .details-box .consult-list .consult-item .info-item .info-major {
|
|
|
|
margin-right: 11px;
|
|
|
|
}
|
|
|
|
.content .details-box .consult-list .consult-item .info-item .info-value {
|
|
|
|
color: #333333;
|
|
|
|
}
|
|
|
|
.content .details-box .consult-list .consult-item .info-item .line-between {
|
|
|
|
margin: 0 9px;
|
|
|
|
background-color: #d7d7d7;
|
|
|
|
height: 14px;
|
|
|
|
width: 1px;
|
|
|
|
}
|
|
|
|
.content .details-box .consult-list .consult-item .info-item .info-item-results {
|
2024-11-25 08:04:33 +00:00
|
|
|
padding: 0 10px;
|
2024-11-21 06:39:38 +00:00
|
|
|
height: 22px;
|
|
|
|
background-color: #f6f6f6;
|
|
|
|
border-radius: 37px;
|
|
|
|
font-size: 13px;
|
|
|
|
color: #72db86;
|
|
|
|
font-family: "ArialMT", "Arial", sans-serif;
|
|
|
|
}
|
2024-11-21 07:10:06 +00:00
|
|
|
.content .details-box .consult-list .consult-item .info-item .info-item-results.results2 {
|
|
|
|
color: #a7c42e !important;
|
|
|
|
}
|
|
|
|
.content .details-box .consult-list .consult-item .info-item .info-item-results.results3 {
|
|
|
|
color: #62b1ff !important;
|
|
|
|
}
|
|
|
|
.content .details-box .consult-list .consult-item .info-item .info-item-results.results4 {
|
|
|
|
color: #f95d5d !important;
|
|
|
|
}
|
|
|
|
.content .details-box .consult-list .consult-item .info-item .info-item-results.results5 {
|
|
|
|
color: #f59a23 !important;
|
|
|
|
}
|
|
|
|
.content .details-box .consult-list .consult-item .info-item .info-item-results.results6 {
|
|
|
|
color: #8080ff !important;
|
|
|
|
}
|
2024-11-21 06:39:38 +00:00
|
|
|
.content .details-box .consult-list .consult-item .info-xiaobox {
|
|
|
|
height: 46px;
|
|
|
|
background-color: #f6f6f6;
|
|
|
|
border-radius: 6px;
|
|
|
|
padding: 0 11px;
|
|
|
|
margin-bottom: 16px;
|
|
|
|
}
|
|
|
|
.content .details-box .consult-list .consult-item .info-xiaobox .info-content {
|
|
|
|
font-size: 14px;
|
|
|
|
color: #7f7f7f;
|
|
|
|
line-height: 26px;
|
|
|
|
}
|
|
|
|
.content .details-box .consult-list .consult-item .bottom {
|
|
|
|
justify-content: space-between;
|
|
|
|
}
|
|
|
|
.content .details-box .consult-list .consult-item .bottom .bottom-left {
|
|
|
|
font-size: 13px;
|
|
|
|
color: #aaaaaa;
|
|
|
|
}
|
|
|
|
.content .details-box .consult-list .consult-item .bottom .bottom-left .bottom-avatar {
|
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
|
|
|
border-radius: 50%;
|
|
|
|
margin-right: 4px;
|
|
|
|
}
|
|
|
|
.content .details-box .consult-list .consult-item .bottom .numerical-box .item-bottom-item {
|
2024-12-17 03:36:04 +00:00
|
|
|
margin-left: 11px;
|
|
|
|
font-size: 11px;
|
2024-11-21 06:39:38 +00:00
|
|
|
color: #aaaaaa;
|
|
|
|
}
|
|
|
|
.content .details-box .consult-list .consult-item .bottom .numerical-box .item-bottom-item .item-bottom-icon {
|
2024-12-17 03:36:04 +00:00
|
|
|
width: 12px;
|
|
|
|
margin-right: 2px;
|
2024-11-21 06:39:38 +00:00
|
|
|
}
|
2024-11-21 10:14:10 +00:00
|
|
|
.content-right {
|
2024-10-30 11:12:42 +00:00
|
|
|
width: 290px;
|
2024-11-28 04:31:08 +00:00
|
|
|
margin-left: 20px;
|
2024-11-21 09:55:29 +00:00
|
|
|
}
|
2024-11-21 10:14:10 +00:00
|
|
|
.content-right .live {
|
2024-11-21 09:55:29 +00:00
|
|
|
width: 100%;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
background: linear-gradient(-24.24254087deg, #d6dcf0 0%, #dae6f2 19%, #eff2cc 62%, #eff9f1 100%);
|
|
|
|
border-radius: 11px;
|
|
|
|
padding-top: 20px;
|
|
|
|
padding-bottom: 30px;
|
|
|
|
}
|
2024-11-21 10:14:10 +00:00
|
|
|
.content-right .live .head {
|
2024-11-21 09:55:29 +00:00
|
|
|
margin-bottom: 17px;
|
|
|
|
}
|
2024-11-21 10:14:10 +00:00
|
|
|
.content-right .live .head .icon {
|
2024-11-21 09:55:29 +00:00
|
|
|
width: 89px;
|
|
|
|
height: 28px;
|
|
|
|
margin-right: 8px;
|
|
|
|
}
|
2024-11-21 10:14:10 +00:00
|
|
|
.content-right .live .head .text {
|
2024-11-21 09:55:29 +00:00
|
|
|
width: 104px;
|
|
|
|
height: 24px;
|
|
|
|
background-color: #026277;
|
|
|
|
border-radius: 4px;
|
|
|
|
color: #ffffff;
|
|
|
|
font-size: 13px;
|
|
|
|
position: relative;
|
|
|
|
}
|
2024-11-21 10:14:10 +00:00
|
|
|
.content-right .live .head .text .triangle {
|
2024-11-21 09:55:29 +00:00
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
left: -3px;
|
|
|
|
transform: translateY(-50%);
|
|
|
|
width: 6px;
|
|
|
|
height: 11px;
|
|
|
|
}
|
2024-11-21 10:14:10 +00:00
|
|
|
.content-right .live .content-box {
|
2024-11-21 09:55:29 +00:00
|
|
|
position: relative;
|
|
|
|
}
|
2024-11-21 10:14:10 +00:00
|
|
|
.content-right .live .content-box .triangle {
|
2024-11-21 09:55:29 +00:00
|
|
|
width: 14px;
|
|
|
|
height: 5px;
|
|
|
|
position: absolute;
|
|
|
|
bottom: -4px;
|
|
|
|
left: 50%;
|
|
|
|
transform: translateX(-50%) rotate(180deg);
|
|
|
|
}
|
2024-11-21 10:14:10 +00:00
|
|
|
.content-right .live .content-box .point {
|
2024-11-21 09:55:29 +00:00
|
|
|
position: absolute;
|
|
|
|
left: 50%;
|
|
|
|
transform: translateX(-50%);
|
|
|
|
bottom: 28px;
|
|
|
|
}
|
2024-11-21 10:14:10 +00:00
|
|
|
.content-right .live .content-box .point .item {
|
2024-11-21 09:55:29 +00:00
|
|
|
width: 10px;
|
|
|
|
height: 4px;
|
|
|
|
background-color: #d7d7d7;
|
|
|
|
border-radius: 20px;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
2024-11-21 10:14:10 +00:00
|
|
|
.content-right .live .content-box .point .item:not(:last-of-type) {
|
2024-11-21 09:55:29 +00:00
|
|
|
margin-right: 4px;
|
|
|
|
}
|
2024-11-21 10:14:10 +00:00
|
|
|
.content-right .live .content-box .point .item.pitch {
|
2024-11-21 09:55:29 +00:00
|
|
|
background-color: #fa6b11;
|
|
|
|
}
|
2024-11-21 10:14:10 +00:00
|
|
|
.content-right .live .content {
|
2024-11-21 09:55:29 +00:00
|
|
|
height: 340px;
|
|
|
|
background-color: rgba(255, 255, 255, 0.80392157);
|
|
|
|
border-radius: 8px;
|
|
|
|
margin: 0 11px 27px;
|
|
|
|
display: flex;
|
|
|
|
overflow: hidden;
|
|
|
|
position: relative;
|
|
|
|
}
|
2024-11-21 10:14:10 +00:00
|
|
|
.content-right .live .content .swiper {
|
2024-11-21 09:55:29 +00:00
|
|
|
margin-bottom: 5px;
|
|
|
|
display: flex;
|
|
|
|
}
|
2024-11-21 10:14:10 +00:00
|
|
|
.content-right .live .content .swiper .swiper-item {
|
2024-11-21 09:55:29 +00:00
|
|
|
width: 268px;
|
|
|
|
padding-top: 8px;
|
|
|
|
}
|
2024-11-21 10:14:10 +00:00
|
|
|
.content-right .live .content .swiper .swiper-item .item {
|
2024-11-21 09:55:29 +00:00
|
|
|
position: relative;
|
|
|
|
padding-bottom: 13px;
|
|
|
|
}
|
2024-11-21 10:14:10 +00:00
|
|
|
.content-right .live .content .swiper .swiper-item .item:not(:last-of-type)::after {
|
2024-11-21 09:55:29 +00:00
|
|
|
content: "";
|
|
|
|
position: absolute;
|
|
|
|
width: calc(100% - 50px);
|
|
|
|
height: 1px;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
border-bottom: 1px dotted #ebebeb;
|
|
|
|
}
|
2024-11-21 10:14:10 +00:00
|
|
|
.content-right .live .content .swiper .swiper-item .item .icon-box {
|
2024-11-21 09:55:29 +00:00
|
|
|
padding-left: 9px;
|
|
|
|
padding-right: 13px;
|
2024-12-18 02:55:27 +00:00
|
|
|
padding-top: 8px;
|
2024-11-21 09:55:29 +00:00
|
|
|
}
|
2024-11-21 10:14:10 +00:00
|
|
|
.content-right .live .content .swiper .swiper-item .item .icon-box .icon {
|
2024-11-21 09:55:29 +00:00
|
|
|
width: 28px;
|
|
|
|
}
|
2024-11-21 10:14:10 +00:00
|
|
|
.content-right .live .content .swiper .swiper-item .item .text {
|
2024-11-21 09:55:29 +00:00
|
|
|
font-size: 14px;
|
|
|
|
color: #000000;
|
|
|
|
line-height: 26px;
|
|
|
|
display: -webkit-box;
|
|
|
|
-webkit-box-orient: vertical;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
-webkit-line-clamp: 2;
|
|
|
|
padding-top: 8px;
|
|
|
|
padding-right: 8px;
|
|
|
|
}
|
2024-11-21 10:14:10 +00:00
|
|
|
.content-right .live .content .swiper .swiper-item .item .text .admissionState {
|
2024-11-21 09:55:29 +00:00
|
|
|
height: 20px;
|
2024-12-18 02:56:20 +00:00
|
|
|
line-height: 20px;
|
2024-11-21 09:55:29 +00:00
|
|
|
background-color: #b30081;
|
|
|
|
border-radius: 115px;
|
|
|
|
color: #ffffff;
|
|
|
|
font-size: 13px;
|
|
|
|
padding: 0 6px;
|
|
|
|
display: inline-flex;
|
|
|
|
width: fit-content;
|
|
|
|
}
|
2024-11-21 10:14:10 +00:00
|
|
|
.content-right .live .content .swiper .swiper-item .item .text .admissionState.state2 {
|
2024-11-21 09:55:29 +00:00
|
|
|
background-color: #bec105;
|
|
|
|
}
|
2024-11-21 10:14:10 +00:00
|
|
|
.content-right .live .content .swiper .swiper-item .item .text .admissionState.state3 {
|
2024-11-21 09:55:29 +00:00
|
|
|
background-color: #04b0d5;
|
|
|
|
}
|
2024-11-21 10:14:10 +00:00
|
|
|
.content-right .live .word {
|
2024-11-21 09:55:29 +00:00
|
|
|
margin-bottom: 9px;
|
|
|
|
}
|
2024-11-21 10:14:10 +00:00
|
|
|
.content-right .live .word .item {
|
2024-11-21 09:55:29 +00:00
|
|
|
width: 34px;
|
|
|
|
height: 22px;
|
|
|
|
padding: 0 5px;
|
|
|
|
box-sizing: content-box;
|
|
|
|
}
|
2024-11-21 10:14:10 +00:00
|
|
|
.content-right .live .word .item:not(:last-of-type) {
|
2024-11-21 09:55:29 +00:00
|
|
|
border-right: 1px solid #aaaaaa;
|
|
|
|
}
|
2024-11-21 10:14:10 +00:00
|
|
|
.content-right .live .hint {
|
2024-11-21 09:55:29 +00:00
|
|
|
font-size: 13px;
|
|
|
|
color: #333333;
|
|
|
|
line-height: 26px;
|
|
|
|
text-align: center;
|
|
|
|
margin-bottom: 13px;
|
|
|
|
}
|
2024-11-21 10:14:10 +00:00
|
|
|
.content-right .live .QR-code {
|
2024-11-21 09:55:29 +00:00
|
|
|
width: 120px;
|
|
|
|
height: 120px;
|
|
|
|
background-color: #ffffff;
|
|
|
|
border-radius: 8px;
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
2024-11-21 10:14:10 +00:00
|
|
|
.content-right .live .QR-code .icon {
|
2024-11-21 09:55:29 +00:00
|
|
|
width: 103px;
|
|
|
|
height: 103px;
|
|
|
|
}
|
2024-11-21 10:14:10 +00:00
|
|
|
.content-right .else {
|
2024-11-21 09:55:29 +00:00
|
|
|
width: 100%;
|
2024-10-31 03:44:53 +00:00
|
|
|
background: -webkit-linear-gradient(270.00883066deg, #f7fbf7 0%, #eaf6ea 100%);
|
|
|
|
background: -moz-linear-gradient(179.99116934deg, #f7fbf7 0%, #eaf6ea 100%);
|
|
|
|
background: linear-gradient(179.99116934deg, #f7fbf7 0%, #eaf6ea 100%);
|
|
|
|
border: none;
|
|
|
|
border-radius: 12px;
|
2024-11-22 09:15:10 +00:00
|
|
|
padding: 20px 10px 24px;
|
2024-10-31 03:44:53 +00:00
|
|
|
}
|
2024-11-21 10:14:10 +00:00
|
|
|
.content-right .else .school {
|
2024-10-31 03:44:53 +00:00
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
2024-11-21 10:14:10 +00:00
|
|
|
.content-right .else .school .logo {
|
2024-10-31 03:44:53 +00:00
|
|
|
width: 50px;
|
|
|
|
height: 50px;
|
|
|
|
background-color: #ffffff;
|
|
|
|
border: 1px solid #f6f6f6;
|
|
|
|
border-radius: 8px;
|
|
|
|
margin-right: 10px;
|
|
|
|
}
|
2024-11-21 10:14:10 +00:00
|
|
|
.content-right .else .school .logo .img {
|
2024-10-31 03:44:53 +00:00
|
|
|
height: 30px;
|
|
|
|
}
|
2024-11-21 10:14:10 +00:00
|
|
|
.content-right .else .school .info .name {
|
2024-10-31 03:44:53 +00:00
|
|
|
font-family: "PingFangSC-Semibold", "PingFang SC Semibold", "PingFang SC", sans-serif;
|
|
|
|
font-weight: 650;
|
|
|
|
font-style: normal;
|
|
|
|
font-size: 18px;
|
|
|
|
color: #000000;
|
|
|
|
margin-bottom: 5px;
|
|
|
|
}
|
2024-11-21 10:14:10 +00:00
|
|
|
.content-right .else .school .info .name-en {
|
2024-10-31 03:44:53 +00:00
|
|
|
font-size: 13px;
|
|
|
|
color: #555555;
|
|
|
|
}
|
2024-11-21 10:14:10 +00:00
|
|
|
.content-right .else .case {
|
2024-10-31 03:44:53 +00:00
|
|
|
width: 270px;
|
|
|
|
background-color: #ffffff;
|
|
|
|
border-radius: 8px;
|
2024-11-22 09:15:10 +00:00
|
|
|
}
|
|
|
|
.content-right .else .case:not(:last-of-type) {
|
2024-10-31 04:27:27 +00:00
|
|
|
margin-bottom: 20px;
|
2024-10-31 03:44:53 +00:00
|
|
|
}
|
2024-11-21 10:14:10 +00:00
|
|
|
.content-right .else .case .head {
|
2024-10-31 03:44:53 +00:00
|
|
|
width: 270px;
|
|
|
|
height: 45px;
|
|
|
|
border-bottom: 1px dotted #ebebeb;
|
|
|
|
padding: 0 10px;
|
2024-10-31 04:27:27 +00:00
|
|
|
background: linear-gradient(to right, #d8f1d8, rgba(255, 255, 255, 0.501961));
|
|
|
|
border-radius: 8px 8px 0 0;
|
2024-10-31 03:44:53 +00:00
|
|
|
overflow: hidden;
|
|
|
|
}
|
2024-11-21 10:14:10 +00:00
|
|
|
.content-right .else .case .head .dot {
|
2024-10-31 03:44:53 +00:00
|
|
|
width: 14px;
|
|
|
|
height: 14px;
|
|
|
|
background-color: #e7f7ee;
|
|
|
|
border: 1px solid #b7c4bd;
|
|
|
|
border-radius: 39px;
|
|
|
|
position: relative;
|
|
|
|
margin-right: 10px;
|
|
|
|
}
|
2024-11-21 10:14:10 +00:00
|
|
|
.content-right .else .case .head .dot::after {
|
2024-10-31 03:44:53 +00:00
|
|
|
content: "";
|
|
|
|
width: 6px;
|
|
|
|
height: 6px;
|
|
|
|
display: block;
|
|
|
|
background-color: #72db86;
|
|
|
|
border: 1px solid #57a869;
|
|
|
|
border-radius: 39px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
left: 50%;
|
|
|
|
transform: translate(-50%, -50%);
|
|
|
|
}
|
2024-11-21 10:14:10 +00:00
|
|
|
.content-right .else .case .head .text {
|
2024-10-31 03:44:53 +00:00
|
|
|
font-family: "PingFangSC-Semibold", "PingFang SC Semibold", "PingFang SC", sans-serif;
|
|
|
|
font-weight: 650;
|
|
|
|
font-style: normal;
|
|
|
|
font-size: 16px;
|
|
|
|
color: #000000;
|
|
|
|
}
|
2024-11-21 10:14:10 +00:00
|
|
|
.content-right .else .case .head .img {
|
2024-10-31 03:44:53 +00:00
|
|
|
width: 14px;
|
|
|
|
height: 14px;
|
2024-10-31 04:27:27 +00:00
|
|
|
transform: rotate(270deg);
|
2024-10-30 11:12:42 +00:00
|
|
|
}
|
2024-11-21 10:14:10 +00:00
|
|
|
.content-right .else .case .list .item {
|
2024-10-31 04:27:27 +00:00
|
|
|
padding: 20px 10px;
|
2024-11-12 08:58:25 +00:00
|
|
|
display: block;
|
2024-10-31 04:27:27 +00:00
|
|
|
}
|
2024-11-21 10:14:10 +00:00
|
|
|
.content-right .else .case .list .item:not(:last-of-type) {
|
2024-10-31 04:27:27 +00:00
|
|
|
border-bottom: 1px solid #f6f6f6;
|
|
|
|
}
|
2024-11-21 10:14:10 +00:00
|
|
|
.content-right .else .case .list .item .name {
|
2024-10-31 04:27:27 +00:00
|
|
|
font-family: "PingFangSC-Semibold", "PingFang SC Semibold", "PingFang SC", sans-serif;
|
|
|
|
font-weight: 650;
|
|
|
|
font-size: 15px;
|
|
|
|
color: #000000;
|
2024-11-28 06:50:25 +00:00
|
|
|
margin-bottom: 6px;
|
2024-10-31 04:27:27 +00:00
|
|
|
}
|
2024-11-21 10:14:10 +00:00
|
|
|
.content-right .else .case .list .item .brief {
|
2024-10-31 04:27:27 +00:00
|
|
|
font-size: 14px;
|
|
|
|
color: #7f7f7f;
|
|
|
|
}
|
2024-11-21 10:14:10 +00:00
|
|
|
.content-right .else .case .list .item .brief span {
|
2024-10-31 04:27:27 +00:00
|
|
|
color: #d7d7d7;
|
|
|
|
margin: 0 8px;
|
|
|
|
}
|
2024-11-21 10:14:10 +00:00
|
|
|
.content-right .else .case.mj .list .item {
|
2024-10-31 04:27:27 +00:00
|
|
|
padding-top: 15px;
|
|
|
|
}
|
2024-11-21 10:14:10 +00:00
|
|
|
.content-right .else .case.mj .list .item:not(:last-of-type) {
|
2024-10-31 04:27:27 +00:00
|
|
|
border-bottom: 1px dotted #ebebeb;
|
|
|
|
}
|
2024-11-21 10:14:10 +00:00
|
|
|
.content-right .else .case.mj .list .name {
|
2024-10-31 04:27:27 +00:00
|
|
|
font-weight: 650;
|
|
|
|
font-style: normal;
|
|
|
|
font-size: 15px;
|
|
|
|
color: #000000;
|
|
|
|
}
|
2024-11-21 10:14:10 +00:00
|
|
|
.content-right .else .case.mj .list .brief-box {
|
2024-10-31 04:27:27 +00:00
|
|
|
padding: 10px 15px 10px 10px;
|
|
|
|
width: 251px;
|
|
|
|
border-radius: 6px;
|
|
|
|
background-color: #f7f7f7;
|
|
|
|
}
|
2024-11-21 10:14:10 +00:00
|
|
|
.content-right .else .case.mj .list .brief {
|
2024-10-31 04:27:27 +00:00
|
|
|
display: inline-block;
|
|
|
|
font-family: "PingFangSC-Regular", "PingFang SC", sans-serif;
|
|
|
|
font-weight: 400;
|
|
|
|
font-style: normal;
|
|
|
|
color: #555555;
|
|
|
|
line-height: 20px;
|
|
|
|
font-size: 13px;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
display: -webkit-box;
|
|
|
|
-webkit-line-clamp: 2;
|
|
|
|
-webkit-box-orient: vertical;
|
|
|
|
}
|
2024-11-21 10:14:10 +00:00
|
|
|
.content-right .else .case.mj .list .brief .avatar {
|
2024-10-31 04:27:27 +00:00
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
|
|
|
margin-right: 5px;
|
|
|
|
vertical-align: bottom;
|
2024-11-13 07:00:24 +00:00
|
|
|
border-radius: 50%;
|
2024-10-31 04:27:27 +00:00
|
|
|
}
|
2024-11-14 07:43:02 +00:00
|
|
|
.state-mask {
|
|
|
|
width: 100vw;
|
|
|
|
height: 100vh;
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.base {
|
|
|
|
background-color: transparent;
|
2024-11-21 07:17:47 +00:00
|
|
|
box-shadow: none;
|
2024-10-30 11:12:42 +00:00
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.base .type1 {
|
2024-10-31 03:44:53 +00:00
|
|
|
width: 100%;
|
2024-11-07 07:33:39 +00:00
|
|
|
width: 640px;
|
2024-10-31 03:44:53 +00:00
|
|
|
height: 100%;
|
|
|
|
border-radius: 153px;
|
|
|
|
border: 1px solid #dbe0f2;
|
|
|
|
background: linear-gradient(to right, #eef7f5, #dbe3fd);
|
|
|
|
font-size: 15px;
|
|
|
|
color: #000000;
|
2024-12-16 07:39:14 +00:00
|
|
|
box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.24313725);
|
2024-10-31 03:44:53 +00:00
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.base .type1 .btn {
|
2024-10-31 03:44:53 +00:00
|
|
|
line-height: 50px;
|
|
|
|
margin: 0 24px;
|
2024-11-11 10:50:47 +00:00
|
|
|
cursor: pointer;
|
2024-10-31 03:44:53 +00:00
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.base .type1 .btn .img {
|
2024-10-31 03:44:53 +00:00
|
|
|
height: 20px;
|
|
|
|
margin-right: 6px;
|
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.base .type1 .line {
|
2024-10-31 03:44:53 +00:00
|
|
|
width: 1px;
|
|
|
|
height: 20px;
|
|
|
|
background-color: #d7d7d7;
|
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.base .type1 .add {
|
2024-11-22 03:52:17 +00:00
|
|
|
height: 42px;
|
|
|
|
line-height: 42px;
|
2024-10-31 03:44:53 +00:00
|
|
|
text-align: center;
|
|
|
|
background-color: #7b8cd3;
|
|
|
|
border-radius: 158px;
|
|
|
|
font-weight: 400;
|
|
|
|
font-style: normal;
|
|
|
|
font-size: 15px;
|
|
|
|
color: #ffffff;
|
2024-11-22 03:52:17 +00:00
|
|
|
margin-left: 16px;
|
2024-10-30 11:12:42 +00:00
|
|
|
margin-right: 5px;
|
2024-11-07 07:33:39 +00:00
|
|
|
cursor: pointer;
|
2024-10-31 03:44:53 +00:00
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.base .type1 .add .img {
|
2024-10-31 03:44:53 +00:00
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
|
|
|
margin-right: 10px;
|
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.base .type2 {
|
2024-11-07 07:33:39 +00:00
|
|
|
width: 640px;
|
2024-10-31 03:44:53 +00:00
|
|
|
height: 100%;
|
|
|
|
background-color: #f2f2f2;
|
|
|
|
border: 1px solid #d7d7d7;
|
|
|
|
border-radius: 153px;
|
2024-11-21 10:20:57 +00:00
|
|
|
box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.24313725);
|
2024-10-31 03:44:53 +00:00
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.base .type2 .btn {
|
2024-10-30 11:12:42 +00:00
|
|
|
padding: 0 20px;
|
2024-10-31 03:44:53 +00:00
|
|
|
height: 100%;
|
2024-11-27 07:46:31 +00:00
|
|
|
margin-right: 28px;
|
2024-10-31 03:44:53 +00:00
|
|
|
border-right: 1px solid #d7d7d7;
|
|
|
|
cursor: pointer;
|
|
|
|
font-size: 15px;
|
|
|
|
color: #000000;
|
2024-10-30 11:12:42 +00:00
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.base .type2 .btn .img {
|
2024-10-31 03:44:53 +00:00
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
|
|
|
margin-left: 7px;
|
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.base .type2 .input-box {
|
2024-10-31 03:44:53 +00:00
|
|
|
width: 370px;
|
|
|
|
height: 40px;
|
|
|
|
margin-right: 10px;
|
|
|
|
background-color: #ffffff;
|
|
|
|
border-radius: 158px;
|
|
|
|
overflow: hidden;
|
2024-10-30 11:12:42 +00:00
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.base .type2 .input-box .img {
|
2024-10-30 11:12:42 +00:00
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
2024-10-31 03:44:53 +00:00
|
|
|
margin-left: 12px;
|
|
|
|
margin-right: 6px;
|
2024-10-30 11:12:42 +00:00
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.base .type2 .input-box .input {
|
2024-10-31 03:44:53 +00:00
|
|
|
height: 100%;
|
|
|
|
padding-right: 20px;
|
|
|
|
border: none;
|
|
|
|
outline: none;
|
2024-10-30 11:12:42 +00:00
|
|
|
}
|
2024-11-07 07:33:39 +00:00
|
|
|
.base .type2 .state-box {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
.base .type2 .state-box.undetermined .state-btn {
|
|
|
|
background-color: #f95d5d;
|
|
|
|
}
|
|
|
|
.base .type2 .state-box.undetermined .state .state-list .state-item.pitch {
|
|
|
|
color: #f95d5d;
|
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.base .type2 .state-box .state-btn {
|
2024-10-31 03:44:53 +00:00
|
|
|
width: 100px;
|
|
|
|
height: 40px;
|
2024-11-07 07:33:39 +00:00
|
|
|
background-color: #04b0d5;
|
2024-10-31 03:44:53 +00:00
|
|
|
border-radius: 158px;
|
|
|
|
font-size: 15px;
|
|
|
|
color: #ffffff;
|
|
|
|
cursor: pointer;
|
2024-11-07 07:33:39 +00:00
|
|
|
transition: all 0.3s;
|
2024-10-30 11:12:42 +00:00
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.base .type2 .state-box .state-btn .img {
|
2024-10-31 03:44:53 +00:00
|
|
|
width: 11px;
|
|
|
|
height: 6px;
|
|
|
|
margin-left: 8px;
|
2024-10-30 11:12:42 +00:00
|
|
|
}
|
2024-11-07 07:33:39 +00:00
|
|
|
.base .type2 .state-box .state {
|
|
|
|
background-color: #ffffff;
|
|
|
|
border: 1px solid #ebebeb;
|
|
|
|
border-radius: 12px;
|
|
|
|
position: absolute;
|
|
|
|
bottom: 40px;
|
|
|
|
width: 100px;
|
|
|
|
background-color: #f5fcfd;
|
|
|
|
box-shadow: 0 0 7px rgba(0, 0, 0, 0.2);
|
|
|
|
animation: show 0.3s;
|
|
|
|
}
|
|
|
|
@keyframes show {
|
|
|
|
0% {
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.base .type2 .state-box .state .state-item {
|
|
|
|
color: #555555;
|
|
|
|
font-size: 16px;
|
|
|
|
height: 55px;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
.base .type2 .state-box .state .state-item.pitch {
|
|
|
|
color: #04b0d5;
|
|
|
|
}
|
|
|
|
.base .type2 .state-box .state .delete {
|
|
|
|
cursor: pointer;
|
|
|
|
height: 55px;
|
|
|
|
border-top: 1px dotted #d7d7d7;
|
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.base .type3 {
|
2024-11-07 07:33:39 +00:00
|
|
|
width: 640px;
|
2024-10-31 03:44:53 +00:00
|
|
|
height: 100%;
|
2024-10-30 11:12:42 +00:00
|
|
|
background-color: #f2f2f2;
|
2024-10-31 03:44:53 +00:00
|
|
|
border: 1px solid #d7d7d7;
|
|
|
|
border-radius: 153px;
|
2024-11-21 10:20:57 +00:00
|
|
|
box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.24313725);
|
2024-10-31 03:44:53 +00:00
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.base .type3 .btn {
|
2024-10-31 03:44:53 +00:00
|
|
|
padding: 0 20px;
|
|
|
|
height: 100%;
|
|
|
|
margin-right: 20px;
|
|
|
|
border-right: 1px solid #d7d7d7;
|
|
|
|
cursor: pointer;
|
|
|
|
font-size: 15px;
|
|
|
|
color: #000000;
|
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.base .type3 .btn .img {
|
2024-10-31 03:44:53 +00:00
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
|
|
|
margin-left: 7px;
|
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.base .type3 .add-btn {
|
2024-11-22 09:04:34 +00:00
|
|
|
width: 238px;
|
2024-10-31 03:44:53 +00:00
|
|
|
height: 40px;
|
|
|
|
background-color: #7b8cd3;
|
|
|
|
font-size: 15px;
|
|
|
|
color: #ffffff;
|
|
|
|
border-radius: 158px;
|
2024-11-07 07:33:39 +00:00
|
|
|
cursor: pointer;
|
2024-10-31 03:44:53 +00:00
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.base .type3 .add-btn.already {
|
2024-10-31 03:44:53 +00:00
|
|
|
background-color: #fbfbfb;
|
|
|
|
font-size: 16px;
|
|
|
|
color: #aaaaaa;
|
2024-11-26 04:17:05 +00:00
|
|
|
cursor: no-drop;
|
2024-10-31 03:44:53 +00:00
|
|
|
}
|
2024-10-31 04:27:27 +00:00
|
|
|
.base .type3 .add-btn .img {
|
2024-10-31 03:44:53 +00:00
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
|
|
|
margin-right: 10px;
|
2024-10-30 11:12:42 +00:00
|
|
|
}
|
2025-01-08 07:36:06 +00:00
|
|
|
.base .type3.type3new .btn .img {
|
|
|
|
height: 20px;
|
|
|
|
}
|
|
|
|
.base .type3.type3new .add-btn {
|
|
|
|
width: 200px;
|
|
|
|
}
|
2024-11-22 03:22:12 +00:00
|
|
|
.preview-overlay {
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
background-color: rgba(0, 0, 0, 0.5);
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
z-index: 1000;
|
|
|
|
}
|
|
|
|
.preview-overlay .preview-image {
|
|
|
|
max-width: 90%;
|
|
|
|
max-height: 90%;
|
|
|
|
object-fit: contain;
|
|
|
|
}
|
|
|
|
.preview-overlay .preview-close {
|
|
|
|
position: absolute;
|
|
|
|
top: 20px;
|
|
|
|
right: 20px;
|
|
|
|
color: white;
|
|
|
|
font-size: 30px;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
2024-11-14 07:01:34 +00:00
|
|
|
.upglide {
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
2024-11-26 09:03:59 +00:00
|
|
|
#load-mask {
|
2024-11-26 09:00:50 +00:00
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100vw;
|
|
|
|
height: 100vh;
|
2024-11-28 04:31:08 +00:00
|
|
|
background-color: #000000;
|
2024-11-26 09:00:50 +00:00
|
|
|
z-index: 1000;
|
2024-11-28 04:31:08 +00:00
|
|
|
animation: fadeBackground 2s linear infinite;
|
2024-11-26 09:00:50 +00:00
|
|
|
}
|
|
|
|
@keyframes fadeBackground {
|
|
|
|
0% {
|
2024-11-28 04:31:08 +00:00
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
20% {
|
|
|
|
opacity: 0.1;
|
2024-11-26 09:00:50 +00:00
|
|
|
}
|
2024-11-28 04:31:08 +00:00
|
|
|
40% {
|
|
|
|
opacity: 0.3;
|
|
|
|
}
|
|
|
|
60% {
|
|
|
|
opacity: 0.5;
|
|
|
|
}
|
|
|
|
80% {
|
|
|
|
opacity: 0.3;
|
2024-11-26 09:00:50 +00:00
|
|
|
}
|
|
|
|
100% {
|
2024-11-28 04:31:08 +00:00
|
|
|
opacity: 0;
|
2024-11-26 09:00:50 +00:00
|
|
|
}
|
|
|
|
}
|
2024-12-16 09:17:30 +00:00
|
|
|
.login-show {
|
|
|
|
text-decoration: underline;
|
|
|
|
color: #008cf7;
|
2024-12-16 09:20:41 +00:00
|
|
|
cursor: pointer;
|
2024-12-16 09:31:08 +00:00
|
|
|
font-size: 13px;
|
2024-12-16 09:17:30 +00:00
|
|
|
}
|