彩先知pc
This commit is contained in:
@@ -0,0 +1,319 @@
|
||||
.apply-hidden {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.apply-page {
|
||||
max-width: 1180px;
|
||||
margin: 0 auto;
|
||||
padding: 28px 20px 64px;
|
||||
}
|
||||
|
||||
.apply-shell {
|
||||
background: #fff;
|
||||
border: 1px solid var(--border-light);
|
||||
border-radius: 18px;
|
||||
box-shadow: var(--shadow-md);
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.apply-hero {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
gap: 24px;
|
||||
padding: 30px 34px;
|
||||
border-bottom: 1px solid var(--border-light);
|
||||
background: linear-gradient(120deg, #ffffff 0%, #f5f8fd 70%, #fff9e8 100%);
|
||||
}
|
||||
|
||||
.apply-hero h1 {
|
||||
margin: 0 0 8px;
|
||||
color: var(--primary);
|
||||
font-size: 26px;
|
||||
font-weight: 900;
|
||||
letter-spacing: 0;
|
||||
}
|
||||
|
||||
.apply-hero p {
|
||||
margin: 0;
|
||||
color: var(--text-muted);
|
||||
font-size: 14px;
|
||||
line-height: 1.7;
|
||||
}
|
||||
|
||||
.apply-user-card {
|
||||
min-width: 220px;
|
||||
padding: 16px 18px;
|
||||
border: 1px solid var(--border-light);
|
||||
border-radius: 12px;
|
||||
background: #fff;
|
||||
box-shadow: 0 8px 22px rgba(16, 43, 106, 0.08);
|
||||
}
|
||||
|
||||
.apply-user-card span {
|
||||
display: block;
|
||||
margin-bottom: 6px;
|
||||
color: var(--text-muted);
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
.apply-user-card strong {
|
||||
color: var(--primary);
|
||||
font-size: 18px;
|
||||
font-weight: 900;
|
||||
}
|
||||
|
||||
.apply-layout {
|
||||
display: grid;
|
||||
grid-template-columns: 300px minmax(0, 1fr);
|
||||
gap: 28px;
|
||||
padding: 30px 34px 36px;
|
||||
}
|
||||
|
||||
.apply-side {
|
||||
align-self: start;
|
||||
border-radius: 12px;
|
||||
border: 1px solid var(--border-light);
|
||||
background: var(--bg-light);
|
||||
padding: 22px 22px 20px;
|
||||
}
|
||||
|
||||
.apply-side h2 {
|
||||
position: relative;
|
||||
margin: 0 0 16px;
|
||||
padding-left: 12px;
|
||||
color: var(--primary);
|
||||
font-size: 18px;
|
||||
font-weight: 900;
|
||||
}
|
||||
|
||||
.apply-side h2::before,
|
||||
.apply-section-title span {
|
||||
content: '';
|
||||
display: inline-block;
|
||||
width: 4px;
|
||||
height: 18px;
|
||||
border-radius: 2px;
|
||||
background: linear-gradient(180deg, var(--gold), var(--orange));
|
||||
}
|
||||
|
||||
.apply-side h2::before {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 3px;
|
||||
}
|
||||
|
||||
.apply-side ul {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
.apply-side li {
|
||||
position: relative;
|
||||
padding: 10px 0 10px 20px;
|
||||
border-top: 1px solid rgba(16, 43, 106, 0.08);
|
||||
color: #4d5b75;
|
||||
font-size: 14px;
|
||||
line-height: 1.7;
|
||||
}
|
||||
|
||||
.apply-side li::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 20px;
|
||||
width: 7px;
|
||||
height: 7px;
|
||||
border-radius: 50%;
|
||||
background: var(--gold);
|
||||
}
|
||||
|
||||
.apply-card {
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
.apply-section-title {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 10px;
|
||||
margin-bottom: 18px;
|
||||
color: var(--primary);
|
||||
font-size: 17px;
|
||||
font-weight: 900;
|
||||
}
|
||||
|
||||
.apply-intro-title {
|
||||
margin-top: 30px;
|
||||
}
|
||||
|
||||
.apply-upload-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(2, minmax(0, 1fr));
|
||||
gap: 18px;
|
||||
}
|
||||
|
||||
.apply-upload-card {
|
||||
position: relative;
|
||||
min-height: 210px;
|
||||
padding: 22px 18px 18px;
|
||||
border: 2px dashed var(--border-light);
|
||||
border-radius: 12px;
|
||||
background: #f7f9fd;
|
||||
color: var(--primary);
|
||||
cursor: pointer;
|
||||
overflow: hidden;
|
||||
transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
|
||||
}
|
||||
|
||||
.apply-upload-card:hover {
|
||||
border-color: var(--gold);
|
||||
box-shadow: 0 10px 26px rgba(16, 43, 106, 0.1);
|
||||
transform: translateY(-2px);
|
||||
}
|
||||
|
||||
.apply-upload-plus {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
width: 100%;
|
||||
height: 126px;
|
||||
margin-bottom: 12px;
|
||||
border-radius: 10px;
|
||||
background: rgba(255, 255, 255, 0.8);
|
||||
color: #bac4d6;
|
||||
font-size: 42px;
|
||||
font-weight: 300;
|
||||
}
|
||||
|
||||
.apply-upload-preview {
|
||||
display: none;
|
||||
width: 100%;
|
||||
height: 126px;
|
||||
margin-bottom: 12px;
|
||||
border-radius: 10px;
|
||||
object-fit: cover;
|
||||
background: #fff;
|
||||
}
|
||||
|
||||
.apply-upload-card strong,
|
||||
.apply-upload-card em {
|
||||
display: block;
|
||||
font-style: normal;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.apply-upload-card strong {
|
||||
margin-bottom: 5px;
|
||||
font-size: 15px;
|
||||
font-weight: 900;
|
||||
}
|
||||
|
||||
.apply-upload-card em {
|
||||
color: var(--text-muted);
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
.apply-file-input {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.apply-intro-textarea {
|
||||
display: block;
|
||||
width: 100%;
|
||||
min-height: 150px;
|
||||
padding: 14px 16px;
|
||||
border: 1px solid var(--border-light);
|
||||
border-radius: 12px;
|
||||
background: var(--bg-light);
|
||||
color: var(--text-dark);
|
||||
font: inherit;
|
||||
font-size: 14px;
|
||||
line-height: 1.8;
|
||||
resize: vertical;
|
||||
outline: none;
|
||||
box-sizing: border-box;
|
||||
transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
|
||||
}
|
||||
|
||||
.apply-intro-textarea:focus {
|
||||
border-color: var(--primary);
|
||||
background: #fff;
|
||||
box-shadow: 0 0 0 3px rgba(16, 43, 106, 0.08);
|
||||
}
|
||||
|
||||
.apply-intro-count {
|
||||
margin-top: 8px;
|
||||
color: var(--text-muted);
|
||||
font-size: 12px;
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.apply-intro-count span {
|
||||
color: var(--orange);
|
||||
font-weight: 900;
|
||||
}
|
||||
|
||||
.apply-submit {
|
||||
width: 100%;
|
||||
height: 46px;
|
||||
margin-top: 24px;
|
||||
border: 0;
|
||||
border-radius: 8px;
|
||||
background: var(--primary);
|
||||
color: #fff;
|
||||
font-size: 16px;
|
||||
font-weight: 900;
|
||||
cursor: pointer;
|
||||
box-shadow: 0 10px 22px rgba(16, 43, 106, 0.16);
|
||||
transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
|
||||
}
|
||||
|
||||
.apply-submit:hover {
|
||||
transform: translateY(-1px);
|
||||
box-shadow: 0 14px 28px rgba(16, 43, 106, 0.22);
|
||||
}
|
||||
|
||||
.apply-submit:disabled {
|
||||
cursor: not-allowed;
|
||||
opacity: 0.65;
|
||||
transform: none;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.site-footer__meta a {
|
||||
color: rgba(255, 255, 255, 0.58);
|
||||
}
|
||||
|
||||
@media (max-width: 900px) {
|
||||
.apply-hero,
|
||||
.apply-layout {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
.apply-hero {
|
||||
align-items: flex-start;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.apply-user-card {
|
||||
width: 100%;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 640px) {
|
||||
.apply-page {
|
||||
padding: 18px 12px 44px;
|
||||
}
|
||||
|
||||
.apply-hero,
|
||||
.apply-layout {
|
||||
padding: 22px 18px;
|
||||
}
|
||||
|
||||
.apply-upload-grid {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user