@charset "utf-8";

.iconHome {
    background-image: url(../images/index_icon.png);
    display: inline-block;
}

.box {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

.hero-search {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #1e40af 100%);
    padding: 40px 0 50px;
    position: relative;
}

.hero-search::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59,130,246,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-search::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(249,115,22,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    gap: 30px;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

.hero-search-main {
    flex: 1;
}

.hero-search-form {
    margin-bottom: 16px;
}

.hero-form-row {
    display: flex;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.hero-form-type {
    position: relative;
    width: 100px;
    background: #fff;
    border-right: 1px solid #e2e8f0;
    cursor: pointer;
    flex-shrink: 0;
}

.hero-type-label {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    font-size: 14px;
    color: #1a1a2e;
    gap: 6px;
}

.hero-type-label b {
    font-weight: 600;
}

.hero-arrow {
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid #94a3b8;
    display: inline-block;
}

.hero-type-dropdown {
    display: none;
    position: absolute;
    top: 52px;
    left: 0;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    z-index: 100;
    width: 100px;
}

.hero-form-type.open .hero-type-dropdown {
    display: block;
}

.hero-type-item {
    padding: 10px 15px;
    font-size: 14px;
    color: #4a5568;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

.hero-type-item:hover {
    background: #f0f5ff;
    color: #2563eb;
}

.hero-form-input {
    flex: 1;
    background: #fff;
}

.hero-ipt {
    width: 100%;
    height: 52px;
    border: none;
    padding: 0 20px;
    font-size: 15px;
    color: #1a1a2e;
    outline: none;
    box-sizing: border-box;
}

.hero-ipt::placeholder {
    color: #b0bec5;
}

.hero-btn {
    width: 130px;
    height: 52px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border: none;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    letter-spacing: 2px;
    flex-shrink: 0;
}

.hero-btn:hover {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.hero-hot-words {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.hot-label {
    color: rgba(255,255,255,0.5);
    font-size: 13px;
}

.hot-word {
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    padding: 3px 10px;
    border-radius: 20px;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    text-decoration: none;
}

.hot-word:hover {
    color: #fff;
    background: rgba(255,255,255,0.15);
    text-decoration: none;
}

.hero-side-info {
    width: 240px;
    flex-shrink: 0;
    padding-top: 5px;
}

.hero-stat {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    padding: 18px;
    text-align: center;
    margin-bottom: 12px;
    backdrop-filter: blur(10px);
}

.hero-stat-num {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    font-family: 'DINCondensedC', 'Arial', sans-serif;
    line-height: 1.2;
}

.hero-stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    margin-top: 4px;
}

.hero-phone {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-phone-label {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
}

.hero-phone-num {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    font-family: 'DINCondensedC', 'Arial', sans-serif;
    letter-spacing: 1px;
}

.main-content {
    margin-top: -20px;
    position: relative;
    z-index: 10;
    max-width: 1200px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0 15px;
    box-sizing: border-box;
}

.content-top {
    display: flex;
    gap: 12px;
}

.content-left {
    width: 240px;
    flex-shrink: 0;
}

.cat-menu {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    overflow: hidden;
    padding: 8px 0;
}

.cat-menu-group,
.cat-menu-single {
    position: relative;
}

.cat-menu-title {
    padding: 14px 18px;
    display: flex;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

.cat-menu-title:hover {
    background: #f0f5ff;
}

.cat-arrow {
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid #94a3b8;
    position: absolute;
    right: 16px;
}

.cat-menu-title h3 {
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.cat-main-link {
    color: #1a1a2e;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
}

.cat-main-link:hover {
    color: #2563eb;
    text-decoration: none;
}

.cat-sub-link {
    color: #94a3b8;
    font-size: 12px;
    font-weight: 400;
    text-decoration: none;
}

.cat-sub-link:hover {
    color: #2563eb;
}

.cat-menu-dropdown {
    display: none;
    position: absolute;
    left: 240px;
    top: 0;
    width: 460px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    padding: 16px 20px;
    z-index: 200;
}

.cat-menu-group:hover .cat-menu-dropdown {
    display: block;
}

.cat-menu-group:hover .cat-menu-title {
    background: #f0f5ff;
}

.cat-dropdown-header {
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e2e8f0;
}

.cat-dropdown-header a {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a2e;
    text-decoration: none;
}

.cat-dropdown-header a:hover {
    color: #2563eb;
}

.cat-dropdown-body {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.cat-dropdown-body a {
    font-size: 13px;
    color: #4a5568;
    padding: 5px 12px;
    border-radius: 6px;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    text-decoration: none;
}

.cat-dropdown-body a:hover {
    background: #f0f5ff;
    color: #2563eb;
}

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

.banner-slider {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    height: 440px;
    background: #e2e8f0;
}

.banner-slider .slider-pre,
.banner-slider .slider-next {
    position: absolute;
    top: 50%;
    margin-top: -25px;
    z-index: 10;
    width: 36px;
    height: 50px;
    background: rgba(0,0,0,0.35);
    color: #fff;
    font-size: 24px;
    line-height: 50px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    display: none;
    border-radius: 4px;
}

.banner-slider:hover .slider-pre,
.banner-slider:hover .slider-next {
    display: block;
}

.banner-slider .slider-pre {
    left: 0;
    border-radius: 0 4px 4px 0;
}

.banner-slider .slider-next {
    right: 0;
    border-radius: 4px 0 0 4px;
}

.banner-slider .slider-pre:hover,
.banner-slider .slider-next:hover {
    background: rgba(0,0,0,0.6);
}

.banner-slider .slider-list {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.banner-slider .slider-list li {
    list-style: none;
    height: 100%;
}

.banner-slider .slider-list li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section {
    margin-top: 24px;
    max-width: 1200px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0 15px;
    box-sizing: border-box;
}

.section-inner {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    padding: 28px;
}

.section-banner-ad .section-inner {
    background: transparent;
    box-shadow: none;
    padding: 0;
}

.banner-ad-item {
    display: block;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 10px;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

.banner-ad-item:last-child {
    margin-bottom: 0;
}

.banner-ad-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.banner-ad-item img {
    width: 100%;
    display: block;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e2e8f0;
}

.section-title-group {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.section-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a2e;
    position: relative;
    padding-left: 14px;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 4px;
    background: linear-gradient(180deg, #2563eb 0%, #f97316 100%);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 13px;
    color: #94a3b8;
    letter-spacing: 0.5px;
}

.section-more {
    font-size: 14px;
    color: #2563eb;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    padding: 6px 16px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
}

.section-more:hover {
    background: #2563eb;
    color: #fff;
    border-color: #2563eb;
    text-decoration: none;
}

.company-ad-grid {
    display: flex;
    gap: 12px;
}

.company-ad-card {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    border: 1px solid #e2e8f0;
}

.company-ad-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transform: translateY(-3px);
    border-color: transparent;
}

.company-ad-card a {
    display: block;
}

.company-ad-card img {
    width: 100%;
    display: block;
    max-height: 140px;
    object-fit: cover;
}

.job-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    overflow: hidden;
}

.job-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    position: relative;
}

.job-card:hover {
    border-color: #2563eb;
    box-shadow: 0 8px 30px rgba(37,99,235,0.15);
    transform: translateY(-4px);
}

.job-card-head {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    gap: 8px;
}

.job-name {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a2e;
    text-decoration: none;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    flex: 1;
    min-width: 0;
    transition: color 0.3s;
}

.job-name:hover {
    color: #2563eb;
    text-decoration: none;
}

.job-badge-hot {
    background: linear-gradient(135deg, #ef4444 0%, #f97316 100%);
    color: #fff;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 500;
    flex-shrink: 0;
    margin-right: 4px;
}

.job-salary {
    font-size: 15px;
    font-weight: 700;
    color: #f97316;
    white-space: nowrap;
    flex-shrink: 0;
}

.job-card-company {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    gap: 8px;
}

.job-company-name {
    font-size: 13px;
    color: #4a5568;
    text-decoration: none;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    flex: 1;
    min-width: 0;
    transition: color 0.3s;
}

.job-company-name:hover {
    color: #2563eb;
    text-decoration: none;
}

.job-company-info {
    font-size: 12px;
    color: #94a3b8;
    white-space: nowrap;
    flex-shrink: 0;
}

.job-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 14px;
    min-height: 28px;
}

.job-tag {
    font-size: 12px;
    color: #94a3b8;
    background: #f1f5f9;
    padding: 3px 10px;
    border-radius: 4px;
    white-space: nowrap;
}

.job-card-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid #f1f5f9;
}

.job-location {
    font-size: 13px;
    color: #94a3b8;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    max-width: 65%;
    display: flex;
    align-items: center;
    gap: 4px;
}

.icon-location {
    display: inline-block;
    width: 13px;
    height: 16px;
    background-image: url(../images/index_icon.png);
    background-position: 0 -108px;
    flex-shrink: 0;
}

.job-apply-btn {
    font-size: 13px;
    color: #2563eb;
    border: 1px solid #2563eb;
    border-radius: 20px;
    padding: 5px 18px;
    text-decoration: none;
    transition: all 0.3s;
    white-space: nowrap;
    flex-shrink: 0;
}

.job-apply-btn:hover {
    background: #2563eb;
    color: #fff;
    text-decoration: none;
}

.company-card-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    overflow: hidden;
}

.company-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px 16px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    position: relative;
    overflow: hidden;
}

.company-card:hover {
    border-color: #2563eb;
    box-shadow: 0 8px 30px rgba(37,99,235,0.15);
    transform: translateY(-4px);
}

.company-card-link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.company-card-top {
    position: relative;
    z-index: 2;
    pointer-events: none;
    padding-bottom: 16px;
    border-bottom: 1px dashed #e2e8f0;
}

.company-card-name {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 10px;
    margin-top: 12px;
}

.company-card-name a {
    color: #1a1a2e;
    text-decoration: none;
    pointer-events: auto;
}

.company-card-name a:hover {
    color: #2563eb;
}

.company-card-divider {
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #2563eb, #f97316);
    border-radius: 2px;
    margin: 0 auto 10px;
}

.company-card-tags {
    display: flex;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
}

.company-tag {
    font-size: 12px;
    color: #2563eb;
    background: #eff6ff;
    padding: 3px 10px;
    border-radius: 4px;
}

.company-card-bottom {
    position: relative;
    z-index: 2;
    pointer-events: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    padding-top: 16px;
}

.company-stat-item {
    text-align: center;
}

.company-stat-val {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #2563eb;
}

.company-stat-label {
    font-size: 12px;
    color: #94a3b8;
    margin-top: 4px;
}

.resume-card-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    overflow: hidden;
}

.resume-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px 16px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

.resume-card:hover {
    border-color: #2563eb;
    box-shadow: 0 8px 30px rgba(37,99,235,0.15);
    transform: translateY(-4px);
}

.resume-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 12px;
    border: 3px solid #f1f5f9;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

.resume-card:hover .resume-avatar {
    border-color: #2563eb;
}

.resume-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.resume-name {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 6px;
}

.resume-name a {
    color: #1a1a2e;
    text-decoration: none;
}

.resume-name a:hover {
    color: #2563eb;
}

.resume-info {
    font-size: 12px;
    color: #94a3b8;
    margin-bottom: 10px;
}

.resume-skills {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 14px;
    min-height: 26px;
}

.resume-skill-tag {
    font-size: 11px;
    color: #2563eb;
    background: #eff6ff;
    padding: 3px 8px;
    border-radius: 4px;
}

.resume-view-btn {
    display: inline-block;
    font-size: 13px;
    color: #2563eb;
    border: 1px solid #2563eb;
    border-radius: 20px;
    padding: 5px 20px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

.resume-view-btn:hover {
    background: #2563eb;
    color: #fff;
    text-decoration: none;
}

.news-layout {
    display: flex;
    gap: 24px;
}

.news-featured {
    flex: 1;
}

.news-featured-item {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e2e8f0;
}

.news-featured-img {
    width: 190px;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.news-featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-featured-info {
    flex: 1;
}

.news-featured-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
}

.news-featured-title a {
    color: #1a1a2e;
    text-decoration: none;
}

.news-featured-title a:hover {
    color: #2563eb;
}

.news-featured-cat {
    font-size: 12px;
    color: #2563eb;
    background: #eff6ff;
    display: inline-block;
    padding: 2px 10px;
    border-radius: 4px;
    margin-bottom: 8px;
}

.news-featured-date {
    font-size: 12px;
    color: #94a3b8;
}

.news-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.news-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px dashed #f1f5f9;
}

.news-list li a {
    font-size: 14px;
    color: #4a5568;
    text-decoration: none;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    max-width: 70%;
}

.news-list li a:hover {
    color: #2563eb;
}

.news-list li span {
    font-size: 12px;
    color: #94a3b8;
    flex-shrink: 0;
}

.news-hot {
    width: 280px;
    flex-shrink: 0;
    background: #fafbfc;
    border-radius: 12px;
    padding: 20px;
}

.news-hot-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid #2563eb;
}

.news-hot-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.news-hot-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
}

.news-rank {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    background: #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.news-rank.hot1,
.news-rank.hot2,
.news-rank.hot3 {
    background: linear-gradient(135deg, #2563eb 0%, #f97316 100%);
}

.news-hot-list li a {
    font-size: 13px;
    color: #4a5568;
    text-decoration: none;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.news-hot-list li a:hover {
    color: #2563eb;
}

.links-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.link-item {
    font-size: 13px;
    color: #4a5568;
    text-decoration: none;
    padding: 6px 16px;
    background: #f8fafc;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

.link-item:hover {
    color: #2563eb;
    border-color: #2563eb;
    background: #eff6ff;
    text-decoration: none;
}

.ajax_load {
    font-size: 14px;
    text-align: center;
    padding: 15px 0 0 0;
    color: #666;
}

.lazyload img {
    max-height: 200px;
}

@media screen and (max-width: 1200px) {
    .hero-inner {
        flex-direction: column;
    }
    .hero-side-info {
        width: 100%;
        display: flex;
        gap: 12px;
    }
    .hero-stat {
        flex: 1;
        margin-bottom: 0;
    }
    .hero-phone {
        flex-direction: row;
        align-items: center;
        gap: 8px;
    }
    .content-top {
        flex-direction: column;
    }
    .content-left {
        width: 100%;
    }
    .cat-menu-dropdown {
        left: 0;
        top: 100%;
        width: 100%;
    }
    .job-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .company-card-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .resume-card-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .news-layout {
        flex-direction: column;
    }
    .news-hot {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .hero-search {
        padding: 24px 0 30px;
    }
    .hero-form-type {
        width: 80px;
    }
    .hero-btn {
        width: 80px;
        font-size: 14px;
        letter-spacing: 0;
    }
    .hero-ipt {
        height: 44px;
        font-size: 14px;
        padding: 0 12px;
    }
    .hero-type-label {
        height: 44px;
        font-size: 13px;
    }
    .hero-form-row {
        border-radius: 8px;
    }
    .job-card-grid {
        grid-template-columns: 1fr;
    }
    .company-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .resume-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .company-ad-grid {
        flex-direction: column;
    }
    .section-inner {
        padding: 16px;
    }
    .section-title {
        font-size: 18px;
    }
    .banner-slider {
        height: 200px;
    }
}

@media screen and (max-width: 480px) {
    .box {
        padding: 0 10px;
    }
    .hero-side-info {
        flex-direction: column;
    }
    .company-card-grid {
        grid-template-columns: 1fr;
    }
    .resume-card-grid {
        grid-template-columns: 1fr;
    }
    .hero-form-type {
        display: none;
    }
    .hero-ipt {
        height: 40px;
    }
    .hero-btn {
        width: 70px;
        height: 40px;
        font-size: 13px;
    }
}
