* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html, body {
    margin: 0;
    display: block;
	width: 100%;
	height: 100%;
	min-width: 1200px;
	overflow: auto;
}
.career {
    width: 100%;
    height: auto;
    overflow: auto;
    min-width: 1200px;
	position: relative;
	background-color: #f5f5f5;
}
@media screen and (min-width: 1200px) {
    .career-common {
        width: 1300px;
        margin: auto;
        padding-top: 16px;
    }
}
@media screen and (max-width: 1200px) {
	.career-common {
		width: 1200px;
		margin: auto;
		padding-top: 16px;
	}
}
.careerWrap{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	overflow: hidden;
	margin-bottom: 20px;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	padding-top: 10px;
}

.career-hero {
    background: linear-gradient(135deg, #e93821 0%, #ff4d4f 50%, #ff7875 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
}

.career-hero-content {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.career-hero-title {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.career-hero-desc {
    font-size: 15px;
    color: rgba(255,255,255,0.9);
    line-height: 1.8;
    margin-bottom: 16px;
    max-width: 900px;
}

.career-hero-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 100%;
    pointer-events: none;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
}

.circle-1 {
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.3);
    top: 20%;
    right: 10%;
    animation: float 6s ease-in-out infinite;
}

.circle-2 {
    width: 150px;
    height: 150px;
    background: rgba(255,255,255,0.2);
    top: 40%;
    right: 25%;
    animation: float 8s ease-in-out infinite reverse;
}

.circle-3 {
    width: 100px;
    height: 100px;
    background: rgba(255,255,255,0.4);
    top: 60%;
    right: 5%;
    animation: float 5s ease-in-out infinite;
}

.circle-4 {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.25);
    top: 10%;
    right: 30%;
    animation: float 7s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.career-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
}

.career-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    min-height: 140px;
}

.career-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(255, 77, 79, 0.18);
    border-color: #ff6b08;
}

.career-card.card-disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

.card-content {
    flex: 1;
    min-width: 0;
}

.card-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.card-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #999;
    white-space: nowrap;
}

.meta-count, .meta-duration {
    display: flex;
    align-items: center;
    gap: 4px;
}

.meta-divider {
    color: #ddd;
}

.card-image {
    flex-shrink: 0;
    width: 135px;
    height: 120px;
    border-radius: 10px;
    overflow: hidden;
    background: #f5f5f5;
}

.card-img {
    width: 100%;
    height: 100%;
}

.card-status {
    position: absolute;
    top: 12px;
    right: 12px;
}

.status-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.status-badge.completed {
    background: #dcfce7;
    color: #16a34a;
}

.status-badge.in-progress {
    background: #fef3c7;
    color: #d97706;
}

.career-report-card {
    background: #f8f8f8;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 140px;
}

.career-report-card.report-completed {
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.report-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #e8e8e8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 12px;
}

.report-check {
    color: #16a34a;
    font-weight: bold;
}

.report-lock {
    opacity: 0.5;
}

.report-content {
    margin-bottom: 12px;
}

.report-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
}

.report-desc {
    font-size: 13px;
    color: #999;
}

.report-btn {
    padding: 6px 24px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #ddd;
    background: #fff;
    color: #999;
}

.career-report-card:not(.report-completed) .report-btn {
    cursor: not-allowed;
}

.career-report-card.report-completed .report-btn {
    background: #ff6b08;
    color: #fff;
    border-color: #ff6b08;
}