body{
	background-color: #e6f0ff;
	color: #444;
	font-family: "Open Sans", sans-serif;   
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

a{
	color: #1bb1dc;
	transition: 0.5s;
}

a:hover,
a:active,
a:focus{
	color: #0a98c0;
	outline: none;
	text-decoration: none;
}

p{
	padding: 0;
	margin: 0 0 30px 0;
}

h1,
h2,
h3,
h4,
h5,
h6{
	font-family: "Montserrat", sans-serif;
	font-weight: 400;
	margin: 0 0 20px 0;
	padding: 0;
}

/* Back to top button */

.back-to-top{
	position: fixed;
	display: none;
	background: #1bb1dc;
	color: #fff;
	width: 44px;
	height: 44px;
	text-align: center;
	line-height: 1;
	font-size: 16px;
	border-radius: 50%;
	right: 15px;
	bottom: 15px;
	transition: background 0.5s;
	z-index: 11;
}

.back-to-top i{
	padding-top: 12px;
	color: #fff;
}

/* Prelaoder */

#preloader{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
	overflow: hidden;
	background: #fff;
}

#preloader:before{
	content: "";
	position: fixed;
	top: calc(50% - 30px);
	left: calc(50% - 30px);
	border: 6px solid #f2f2f2;
	border-top: 6px solid #1bb1dc;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	-webkit-animation: animate-preloader 1s linear infinite;
	animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader{
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes animate-preloader{
	0%{
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100%{
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

/* Features Section
--------------------------------*/

#features {
	padding: 10px;
	background-color: #e6f0ff;
    width: 50%;
}

#features .container {
		width: 100%;
		overflow: hidden; /* 防止子元素溢出 */
        margin-right: auto
        
        /* ========== 头部区域（职位+薪资+收藏） ========== */
        .header {
            margin-top: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .header-left h1 {
            font-size: 24px;
            margin-bottom: 8px;
        }
        .salary {
            font-size: 18px;
            color: #007bff; /* 蓝色薪资 */
            margin-bottom: 8px;
        }
        .info {
            font-size: 14px;
            color: #666;
        }
        .collect-btn {
            display: flex;
            align-items: center;
            gap: 6px;
            color: #007bff;
            cursor: pointer;
            font-size: 14px;
        }
        .collect-btn:hover {
            text-decoration: underline;
        }

        /* ========== 职位描述区域 ========== */
        .job-description {
            padding: 20px;
			background-color: #fff;
			margin: 20px auto;
		    border-radius: 8px;
        }
        .section-title {
            font-size: 18px;
            margin-bottom: 12px;
        }

        /* 标签组（成本决策、成本预测等） */
        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 20px;
        }
        .tag {
            background-color: #f0f0f0;
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 12px;
            color: #666;
        }

        /* 职责/要求列表 */
        .content-section {
            margin-bottom: 20px;
        }
        .content-section h3 {
            font-size: 16px;
            margin-bottom: 8px;
        }
        .content-section ul {
            list-style: disc;
            padding-left: 20px;
        }
        .content-section li {
            margin-bottom: 8px;
            font-size: 14px;
        }
}

#go-home {
  margin: 20px 0;  
  width: 50%;  
}
#zhaopin-head {
  margin: 20px 0;  
  height: 300px;
  width: 50%;  
  display: flex;
  justify-content: center; /* 水平居中 */
  align-items: center;     /* 垂直居中 */
}
#zhaopin-head img {
   height: 100%;
   width: 100%;
   display: block;
   border-radius: 8px;
}


/* Portfolio Section
--------------------------------*/