/* 主体 */

.byz-list-main {
	display: flex;
	gap: 20px;
	margin-bottom: 20px;
}

.byz-list-right {
	width: 300px;
}


/* 左栏内容 */
.by-job-detail {
    width: 880px;
    background: #fff;
    box-shadow: 0 0 0 1px #f1f1f1;
    color: #333;
}
/* 标题 */

.by-job-header {
    padding: 25px;
    border-bottom: 1px solid #eee;
}
.by-job-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 15px;
}
.by-job-salary {
    font-size: 20px;
    font-weight: 700;
    color: #ff5b22;
}
/* 基本信息 */

.by-job-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 40px;
    padding: 25px;
    border-bottom: 1px solid #eee;
}
.by-job-info-item {
    display: flex;
    font-size: 15px;
}
.by-job-info-label {
    width: 90px;
    color: #888;
    flex-shrink: 0;
}
.by-job-info-value {
    color: #333;
}
.by-job-info-full {
    grid-column: 1 / -1;
}
/* 模块 */

.by-job-section {
    padding: 25px;
    border-bottom: 1px solid #f3f3f3;
}
.by-job-section:last-child {
    border-bottom: none;
}
.by-job-section-title {
    font-size: 17px;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
}
.by-job-section-content {
    font-size: 15px;
    color: #555;
    white-space: pre-line;
    line-height: 1.9;
}
.by-job-section-content p {
    margin: 0 0 12px;
}
/* 联系方式 */

.by-job-contact-item {
    display: flex;
    margin-bottom: 12px;
}
.by-job-contact-item:last-child {
    margin-bottom: 0;
}
.by-job-contact-label {
    width: 80px;
    color: #888;
    flex-shrink: 0;
}
.by-job-contact-value {
    color: #333;
}
/* 发布时间 */

.by-job-publish {
    padding-top: 18px;
    color: #999;
    font-size: 14px;
}

/* 提示 */
.by-job-tip{
    margin-top:20px;
    padding:25px;
    background:#fcf1ea;
    box-shadow: 0 0 0 1px #f1f1f1;
    position:relative;
    overflow:hidden;
}

.by-job-tip-title{
    font-size:15px;
    font-weight:700;
    color:#b34b40;
    margin-bottom:16px;
}

.by-job-tip-desc{
    color:#b34b40;
    font-size:14px;
    line-height:1.9;
    margin-bottom:12px;
}

.by-job-tip-subtitle{
    color:#b34b40;
    font-size:14px;
    margin:18px 0 10px;
}

.by-job-tip-list{
    margin:0;
    padding-left:22px;
}

.by-job-tip-list li{
    color:#b34b40;
    font-size:14px;
    line-height:2;
    list-style: disc;
}

.by-job-tip-bottom{
    margin-top:22px;
    display:flex;
    align-items:center;
    gap:14px;
    color:#b34b40;
    font-size:14px;
}

.by-job-tip-report{
    display:inline-block;
    font-size: 12px;
    padding:4px 10px;
    border:1px solid #c56b5f;
    border-radius:3px;
    color:#b34b40;
    text-decoration:none;
    transition:.2s;
}

.by-job-tip-report:hover{
    background:#b34b40;
    color:#fff;
}

.by-job-tip-icon{
    position:absolute;
    right:-20px;
    bottom:-20px;
    color:#fde1d4;
    line-height:1;
    user-select:none;
}

.by-job-tip-icon i{
    font-size:110px;
}


/* 右侧模块 */

.right-box {
    background: #fff;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 0 0 1px #f1f1f1;
}
.byz-home-topic-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.byz-home-module-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}
.byz-home-more {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #999;
    font-size: 14px;
}
.byz-home-more:hover {
    color: #08c26e;
}
.byz-home-more i {
    font-size: 12px;
}


/* 常见问题 */
.job-qa {
    list-style: none;
    padding: 0 0 5px;
}

.job-qa a {
    display: block;
    margin-bottom: 18px;
    font-size: 15px;
    text-decoration: none;
}

.job-qa a:last-child {
    margin-bottom: 0;
}

.job-qa a:hover {
    text-decoration: underline;
}

/* 联系客服 */
.job-contact {
    list-style: none;
    padding: 0 0 5px;
}
.job-contact span {
    display: block;
    margin-bottom: 14px;
    font-size: 14px;
}
.job-contact span:last-child {
    margin-bottom: 0;
}
.job-contact span a {
    color: #222;
    text-decoration: none;
}
.job-contact span a:hover {
    text-decoration: underline;
}


/* 广告 */

.adia-box {
	padding: 0;
	margin-bottom: 20px;
}

.adia-box img {
	width: 100%;
	display: block;
}

/* 手机 */

@media(max-width:768px) {
	.byz-list-main {
		flex-direction: column;
	}

	.byz-list-left, .byz-list-right {
		width: 100%;
	}
}