@charset 'UTF-8';
/*去除常见标签默认的margin 和 padding */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
dl,
dt,
dd,
input {
  margin: 0;
  padding: 0;
}
/* 设置网页统一的字体大小,行高,字体系列相关属性 */
body {
  font: 14px/1.5 "Helvetica Neue", "Helvetica", "Arial", "Microsoft Yahei", "Hiragino Sans GB", "Heiti SC", "WenQuanYi Micro Hei", "sans-serif";
  color: #333;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
/* 去除列表默认样式 */
ul,
ol {
  list-style: none;
}
/* 去除默认的倾斜效果 */
em,
i {
  font-style: normal;
}
/* 去除a标签默认下划线,并设置默认文字颜色 */
a {
  text-decoration: none;
  color: #333;
}
/* 设置img 的垂直对方式为居中对齐,去除img默认下间隙 */
img {
  vertical-align: middle;
}
/* 去除input默认样式 */
input {
  border: none;
  outline: none;
  color: #333;
}
/* 左浮动 */
.fl {
  float: left;
}
/* 右浮动 */
.fr {
  float: right;
}
/* 双伪元素清除法 */
.clearfix::before,
.clearfix::after {
  content: "";
  display: table;
}
.clearfix::after {
  clear: both;
}
/* 样式部分，你可以根据需要自定义 */
.cookie-modal {
  display: none;
  /* 初始隐藏 */
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}
.cookie-modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 36px;
  border: 1px solid #888;
  width: 62%;
  border-radius: 8px;
}
.cookie-modal-content button a {
  color: #000;
  text-decoration: none;
}
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}
.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}
/*公共样式*/
@font-face {
  font-family: 'icomoon';
  src: url('../public/icomoon/fonts/icomoon.eot');
  src: url('../public/icomoon/fonts/icomoon.eot') format('embedded-opentype'), url('../public/icomoon/fonts/icomoon.ttf') format('truetype'), url('../public/icomoon/fonts/icomoon.woff') format('woff'), url('../public/icomoon/fonts/icomoon.svg') format('svg');
  font-weight: normal;
  font-style: normal;
}
/*版心*/
.w {
  width: 1260px;
  margin: 0 auto;
}
/* 1. 超小屏幕下  大于等于 576  布局容器的宽度为 100% */
@media screen and (max-width: 576px) {
  .w {
    width: 100%;
    margin: 0 auto;
  }
}
/* 1. 超小屏幕下  大于等于 576  布局容器的宽度为 540px */
@media screen and (min-width: 576px) {
  .w {
    width: 540px;
    margin: 0 auto;
  }
}
/* 1. 超小屏幕下  大于等于 768  布局容器的宽度为 720px */
@media screen and (min-width: 768px) {
  .w {
    width: 720px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 992px) {
  .w {
    width: 960px;
    margin: 0 auto;
  }
}
/* 3. 中等屏幕下 大于等于 1200px   布局容器修改为 1140px */
@media screen and (min-width: 1200px) {
  .w {
    width: 1140px;
    margin: 0 auto;
  }
}
/* 4. 大屏幕下 大于等于1400布局容器修改为 1320 */
@media screen and (min-width: 1400px) {
  .w {
    width: 1320px;
    margin: 0 auto;
  }
}
/*HomePage-Top顶部*/
.HomePage-Top {
  height: 36px;
  background-color: #323131;
}
.HomePage-Top .w {
  display: flex;
  justify-content: space-between;
  line-height: 36px;
}
.HomePage-Top .w .topLeft a,
.HomePage-Top .w .topRight a {
  color: white;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.6px;
}
.HomePage-Top .w .topLeft a {
  margin-right: 20px;
}
.HomePage-Top .w .topRight a {
  margin-left: 12px;
}
.HomePage-Top .w .topLeft a span {
  vertical-align: bottom;
}
.HomePage-Nav {
  display: flex;
  justify-content: space-between;
  height: 82px;
}
.HomePage-Nav .navLogo h1 {
  display: inline-block;
  width: 175px;
  height: 45px;
  background-repeat: no-repeat;
  background-size: 175px 43px;
  font-size: 0;
  color: #323131;
  text-decoration: none;
  vertical-align: sub;
}
.HomePage-Nav .navLogo h1 a {
  display: block;
  width: 100%;
  height: 100%;
}
.HomePage-Nav .navRight ul {
  display: flex;
  justify-content: flex-end;
}
.HomePage-Nav .navRight ul li a {
  margin-left: 66px;
  line-height: 90px;
  font-weight: 800;
  color: #57585b;
}
.h {
  width: 100%;
  height: 888px;
  background-color: pink;
}
.HomePage-Footer {
  width: 100%;
  background-color: #f2f2f2;
}
.HomePage-Footer .w {
  display: flex;
  justify-content: space-between;
}
.HomePage-Footer .w ul {
  margin-top: 26px;
}
.HomePage-Footer .w ul li {
  padding: 8px 0;
}
.HomePage-Footer .w ul li:first-child {
  padding-bottom: 22px;
}
.HomePage-Footer .w ul li:first-child a {
  padding-bottom: 12px;
  border-bottom: 3px solid #083e7f;
  font-weight: 700;
  font-size: 16px;
}
.HomePage-Footer .w ul li a {
  color: #595757;
  letter-spacing: 0.5px;
}
.HomePage-Footer .w ul:nth-child(1) li:nth-child(3),
.HomePage-Footer .w ul:nth-child(1) li:nth-child(5),
.HomePage-Footer .w ul:nth-child(1) li:nth-child(7) {
  line-height: 0;
  padding-bottom: 20px;
}
.HomePage-Footer_Buttom {
  width: 100%;
  bottom: 0;
  background: #e6e6e6;
  height: 40px;
  text-align: center;
  font-size: 12px;
  line-height: 40px;
  clear: both;
}
.HomePage-Footer_Buttom .w a {
  text-decoration: none;
  color: #595757;
  letter-spacing: 0.5px;
  font-family: Microsoft YaHei, Arial, Helvetica, sans-serif;
}
.HomePage-Footer_Buttom .w img {
  width: 8%;
}
/* 返回顶部 */
/* <!-- 第2步之返回顶部，CSS样式 --> */
#TPS_top {
  display: block;
  width: 60px;
  height: 60px;
  position: fixed;
  bottom: 50px;
  right: 40px;
  border-radius: 10px;
  text-decoration: none;
  display: none;
  background-color: #083e7f;
  border: 1px solid #fff;
}
#TPS_top span {
  display: block;
  width: 60px;
  color: #fff;
  font-size: 40px;
  text-align: center;
  margin-top: 4px;
}
#TPS_top span:hover {
  color: #666;
}
.procate-title .joinus-icon .layui-breadcrumb-item {
  font-size: 12px;
  color: #999 !important;
}
.procate-title .joinus-icon .layui-breadcrumb-item:hover {
  color: #083e7f !important;
}
.procate-title .joinus-icon .a_3 {
  color: #083e7f !important;
}
.procate-title .joinus-icon .a_3:hover {
  color: #083e7f !important;
  font-weight: 600;
}
body {
  margin: 0;
  padding: 0;
  /* min-height: 2000px; */
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.42857;
  color: #333;
}
#main {
  background: #e6e6e6;
}
#main .joinde .joinus-icon .layui-breadcrumb-item {
  font-size: 12px;
  color: #999 !important;
}
#main .joinde .joinus-icon .layui-breadcrumb-item:hover {
  color: #083e7f !important;
}
#main .joinde .joinus-icon .a_3 {
  color: #083e7f !important;
}
#main .joinde .joinus-icon .a_3:hover {
  color: #083e7f !important;
  font-weight: 600;
}
body {
  background-color: #f6f6f8;
  /* 返回顶部 */
  /* <!-- 第2步之返回顶部，CSS样式 --> */
}
body .company-banner {
  background-image: linear-gradient(90deg, #2d74bf 0, #0d3ec4 100%);
  padding: 30px 0 10px 0;
}
body .company-banner .company-banner-samll {
  display: flex;
  justify-content: space-between;
}
body .company-banner .company-banner-samll .company-banner-text {
  width: 70%;
}
body .company-banner .company-banner-samll .company-banner-text .company-banner-text1 {
  display: flex;
  margin-bottom: 8px;
}
body .company-banner .company-banner-samll .company-banner-text .company-banner-text1 .company-banner-text1-img {
  width: 112px;
  height: 100px;
  background-color: #f6f6f8;
  border-radius: 6px;
  display: flex;
  align-items: center;
  padding: 2px;
}
body .company-banner .company-banner-samll .company-banner-text .company-banner-text1 .company-banner-text1-img img {
  width: 100%;
}
body .company-banner .company-banner-samll .company-banner-text .company-banner-text1 .company-banner-text1-company {
  margin-left: 16px;
  color: #fff;
}
body .company-banner .company-banner-samll .company-banner-text .company-banner-text1 .company-banner-text1-company h3 {
  padding-bottom: 16px;
}
body .company-banner .company-banner-samll .company-banner-text .company-banner-text2 {
  margin: 26px 0 16px 0;
  overflow: hidden;
}
body .company-banner .company-banner-samll .company-banner-text .company-banner-text2 ul {
  display: flex;
  justify-content: flex-start;
  color: #fff;
  font-size: 14px;
  flex-wrap: wrap;
  text-align: center;
  /* li {
              list-style: none;
              padding-right: 26px;
              font-family: Arial, sans-serif; 
              line-height: 1.5; 
              vertical-align: middle;
            } */
}
body .company-banner .company-banner-samll .company-banner-text .company-banner-text2 ul li {
  list-style: none;
  margin-right: 26px;
  font-family: Arial, sans-serif;
  /* 统一字体 */
  line-height: 1.2;
  /* 调整行高 */
  vertical-align: middle;
  /* 垂直居中对齐 */
  background-color: #fff;
  padding: 6px;
  border-radius: 3px;
  color: #083e7f;
}
body .company-banner .company-banner-samll .company-banner-num {
  width: 30%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  color: #fff;
}
body .company-banner .company-banner-samll .company-banner-num span {
  font-size: 36px;
  font-weight: 800;
}
body .company-tab {
  margin-top: 16px;
  background-color: #fff;
  border-radius: 12px;
  padding: 12px;
  display: flex;
  justify-content: flex-start;
}
body .company-tab div {
  width: 120px;
  margin-right: 16px;
  color: #083e7f;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
}
body .company-tab div a {
  width: 100%;
  color: #083e7f;
  text-decoration: none;
}
body .company-tab .company-tab-active {
  border-bottom: 2px solid #083e7f;
  padding: 6px 0;
}
body .company-hotjob {
  height: 146px;
  margin: 16px auto 0;
  padding: 20px 30px;
  background-color: #0d3ec4;
  border-radius: 12px;
  overflow: visible;
}
body .job-list-card {
  margin-top: 16px;
  background-color: #fff;
  border-radius: 12px;
  padding: 12px;
}
body .job-list-card .job-list-card-more {
  display: flex;
  justify-content: space-between;
  padding-bottom: 5px;
}
body .job-list-card .job-list-card-more span {
  color: #083e7f;
  font-size: 15px;
  font-weight: 600;
}
body .job-list-card .job-list-card-more a {
  color: #083e7f;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
}
body .job-list-card .job-list-card-list {
  display: flex;
  justify-content: space-between;
  gap: 6px;
}
body .job-list-card .job-list-card-list li {
  width: 296px;
  background-color: #f8f8f8;
  padding: 10px;
  border-radius: 6px;
}
body .job-list-card .job-list-card-list li .job-list-card-list-text {
  display: block;
  flex-direction: column;
}
body .job-list-card .job-list-card-list li .job-list-card-list-text .job-list-card-title {
  display: flex;
  justify-content: space-between;
}
body .job-list-card .job-list-card-list li .job-list-card-list-text .job-list-card-title span {
  color: #083e7f;
  font-size: 15px;
  font-weight: 500;
}
body .job-list-card .job-list-card-list li .job-list-card-list-text .job-list-card-title span:last-child {
  color: orange;
}
body .job-list-card .job-list-card-list li .job-list-card-list-text .job-list-card-tag {
  display: flex;
  justify-content: flex-start;
  padding: 20px 8px 20px 0;
  flex-wrap: wrap;
  gap: 5px;
}
body .job-list-card .job-list-card-list li .job-list-card-list-text .job-list-card-tag span {
  padding: 3px 6px;
  background-color: #fff;
  border-radius: 3px;
  color: #083e7f;
  border: 1px solid #083e7f;
  font-size: 12px;
}
body .job-list-card .job-list-card-list li .job-list-card-list-text .job-list-card-address {
  display: flex;
  justify-content: flex-end;
}
body .job-list-card .job-list-card-list li .job-list-card-list-text .job-list-card-address span {
  color: #083e7f;
  font-size: 12px;
}
body .company-box-1 {
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
}
body .company-box-1 .company-text {
  width: 80%;
  background-color: #fff;
  border-radius: 12px 12px 0 0;
  padding: 8px;
}
body .company-box-1 .company-text h4 {
  padding: 12px;
  font-size: 16px;
  font-weight: 600;
  color: #083e7f;
}
body .company-box-1 .company-text .company-text-1 ul {
  margin-top: 8px;
}
body .company-box-1 .company-text .company-text-1 ul li {
  list-style: none;
  margin: 0 0 16px 16px;
}
body .company-box-1 .company-text .company-text-1 ul li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #083e7f;
  border-radius: 50%;
}
body .company-box-1 .company-text .company-text-1 ul li p {
  display: inline;
  font-size: 16px;
  vertical-align: sub;
  letter-spacing: 0.6px;
}
body .company-box-1 .company-text .company-text-1 ul li p span {
  text-indent: 4;
  vertical-align: sub;
  letter-spacing: 0.6px;
}
body .company-box-1 .company-text .company-text-1 ul li p span::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: #083e7f;
  border-radius: 50%;
  margin-right: 6px;
  vertical-align: middle;
}
body .company-box-1 .company-text .company-text-2 .ServicesPage-List .Ser-list ul {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 16px;
}
body .company-box-1 .company-text .company-text-2 .ServicesPage-List .Ser-list ul .Ser-items-1 {
  overflow: hidden;
  position: relative;
  width: 240px;
  height: 162px;
  border: 1px solid #083e7f;
  letter-spacing: 0.8px;
}
body .company-box-1 .company-text .company-text-2 .ServicesPage-List .Ser-list ul .Ser-items-1 img {
  width: 100%;
  height: 100%;
  transition: all 0.4s;
}
body .company-box-1 .company-text .company-text-2 .ServicesPage-List .Ser-list ul .Ser-items-1:hover img {
  transform: scale(1.05);
}
body .company-box-1 .company-text .company-text-2 .ServicesPage-List .Ser-list ul .Ser-items-1::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* 线性渐变 */
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 255, 0.6));
  opacity: 0;
}
body .company-box-1 .company-text .company-text-2 .ServicesPage-List .Ser-list ul .Ser-items-1:hover::after {
  opacity: 1;
}
body .company-box-1 .company-text .company-text-2 .ServicesPage-List .Ser-list ul .Ser-items-1 .Ser-items-list-text {
  position: absolute;
  left: 0;
  bottom: -50px;
  z-index: 999;
  padding: 25px 30px;
  color: #fff;
  font-size: 17px;
  transition: all 0.5s;
}
body .company-box-1 .company-text .company-text-2 .ServicesPage-List .Ser-list ul .Ser-items-1 .Ser-items-list-text a {
  color: #fff;
}
body .company-box-1 .company-text .company-text-2 .ServicesPage-List .Ser-list ul .Ser-items-1 .Ser-items-list-text h4 {
  font-size: 22px;
  margin: 5px 0;
}
body .company-box-1 .company-text .company-text-2 .ServicesPage-List .Ser-list ul .Ser-items-1 .Ser-items-list-text p {
  word-spacing: 0px;
}
body .company-box-1 .company-text .company-text-2 .ServicesPage-List .Ser-list ul .Ser-items-1 .Ser-items-list-text .Ser-items-list-more {
  margin-top: 15px;
}
body .company-box-1 .company-text .company-text-2 .ServicesPage-List .Ser-list ul .Ser-items-1 .Ser-items-list-text .Ser-items-list-more .icon-arrow-right {
  color: red;
}
body .company-box-1 .company-text .company-text-2 .ServicesPage-List .Ser-list ul .Ser-items-1 .Ser-items-list-text .Ser-items-list-more i {
  font-family: "icomoon";
  vertical-align: middle;
}
body .company-box-1 .company-text .company-text-2 .ServicesPage-List .Ser-list ul .Ser-items-1:hover .Ser-items-list-text {
  transform: translateY(-50px);
}
body .company-box-1 .company-text .company-text-3 {
  margin: 16px 0;
  width: 100%;
  height: 380px;
}
body .company-box-1 .company-text .company-text-3 #allmap {
  width: 100%;
  height: 85%;
}
body .company-box-1 .company-hr {
  width: 20%;
  margin-left: 8px;
}
body .company-box-1 .company-hr .company-hr-1 {
  background-color: #fff;
  border-radius: 12px;
  padding: 8px;
  margin-bottom: 9px;
}
body .company-box-1 .company-hr .company-hr-1 h5 {
  display: block;
  color: #083e7f;
  font-size: 15px;
  font-weight: 600;
  padding-bottom: 9px;
}
body .company-box-1 .company-hr .company-hr-1 p {
  color: #595757;
  font-size: 14px;
}
body .company-box-1 .company-hr .company-hr-1 ul {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  text-align: center;
}
body .company-box-1 .company-hr .company-hr-1 ul li {
  width: 46%;
  height: 26px;
  list-style: none;
  background-color: #f6f6f8;
  border-radius: 6px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
body .company-box-1 .company-hr .company-hr-1 ul li span {
  display: inline-block;
  line-height: 26px;
  color: #083e7f;
}
body .company-box-1 .company-hr .company-hr-2 {
  background-color: #fff;
  border-radius: 12px;
  padding: 8px;
  margin-bottom: 12px;
}
body .company-box-1 .company-hr .company-hr-2 h5 {
  display: block;
  color: #083e7f;
  font-size: 15px;
  font-weight: 600;
  padding-bottom: 9px;
}
body .company-box-1 .company-hr .company-hr-2 p {
  color: #595757;
  font-size: 14px;
}
body .company-box-1 .company-hr .company-hr-2 ul {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  text-align: center;
}
body .company-box-1 .company-hr .company-hr-2 ul li {
  height: 32px;
  list-style: none;
  padding: 0 6px 0 0;
  background-color: #f6f6f8;
  border-radius: 6px;
  padding: 0 12px;
}
body .company-box-1 .company-hr .company-hr-2 ul li span {
  display: inline-block;
  line-height: 32px;
  color: #083e7f;
}
body .HomePage-Footer {
  width: 100%;
  background-color: #f2f2f2;
}
body .HomePage-Footer .w {
  display: flex;
  justify-content: space-between;
}
body .HomePage-Footer .w ul {
  margin-top: 26px;
}
body .HomePage-Footer .w ul li {
  padding: 8px 0;
}
body .HomePage-Footer .w ul li:first-child {
  padding-bottom: 22px;
}
body .HomePage-Footer .w ul li:first-child a {
  padding-bottom: 12px;
  border-bottom: 3px solid #083e7f;
  font-weight: 700;
  font-size: 16px;
}
body .HomePage-Footer .w ul li a {
  color: #595757;
  letter-spacing: 0.5px;
}
body .HomePage-Footer .w ul:nth-child(1) li:nth-child(3),
body .HomePage-Footer .w ul:nth-child(1) li:nth-child(5),
body .HomePage-Footer .w ul:nth-child(1) li:nth-child(7) {
  line-height: 0;
  padding-bottom: 20px;
}
body .HomePage-Footer_Buttom {
  width: 100%;
  bottom: 0;
  background: #e6e6e6;
  height: 40px;
  text-align: center;
  font-size: 12px;
  line-height: 40px;
  clear: both;
}
body .HomePage-Footer_Buttom .w a {
  text-decoration: none;
  color: #595757;
  letter-spacing: 0.5px;
  font-family: Microsoft YaHei, Arial, Helvetica, sans-serif;
}
body .HomePage-Footer_Buttom .w img {
  width: 8%;
}
body #TPS_top {
  display: block;
  width: 60px;
  height: 60px;
  position: fixed;
  bottom: 50px;
  right: 40px;
  border-radius: 10px;
  text-decoration: none;
  display: none;
  background-color: #0b5ed7;
  border: 1px solid #fff;
}
body #TPS_top span {
  display: block;
  width: 60px;
  color: #fff;
  font-size: 40px;
  text-align: center;
  margin-top: 4px;
}
body #TPS_top span:hover {
  color: #666;
}
.company-box-2 {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
}
.company-box-2 .company-list-1 {
  width: 20%;
  background-color: #fff;
  margin-right: 8px;
  padding: 9px;
}
.company-box-2 .company-list-1 .company-list-1-ul {
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
}
.company-box-2 .company-list-1 .company-list-1-ul .job-card-box {
  padding: 9px;
  width: 100%;
  background-color: #f8f8f8;
  border-radius: 6px;
  margin-bottom: 18px;
  border: 1px solid #ededed;
}
.company-box-2 .company-list-1 .company-list-1-ul .job-card-box .job-info .job-title {
  display: flex;
  justify-content: space-between;
  padding: 0 0 12px 0;
}
.company-box-2 .company-list-1 .company-list-1-ul .job-card-box .job-info .job-title a {
  color: #083e7f;
  font-size: 16px;
  font-weight: 600;
}
.company-box-2 .company-list-1 .company-list-1-ul .job-card-box .job-info .job-title span {
  color: orange;
  font-size: 16px;
  font-weight: 700;
}
.company-box-2 .company-list-1 .company-list-1-ul .job-card-box .tag-list {
  flex: 8;
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 3px;
  flex-wrap: wrap;
  overflow: hidden;
  align-items: center;
  margin-bottom: 9px;
}
.company-box-2 .company-list-1 .company-list-1-ul .job-card-box .tag-list li {
  font-size: 12px;
  background-color: #ededed;
  padding: 3px 5px;
  border-radius: 6px;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.company-box-2 .company-list-1 .company-list-1-ul .job-card-box .job-card-footer {
  display: flex;
  justify-content: space-between;
  padding-top: 9px;
  font-size: 14px;
  color: #083e7f;
}
.company-box-2 .company-list-1 .company-list-1-ul .job-card-box .job-card-footer div {
  font-weight: 700;
}
.company-box-2 .company-list-1 .company-list-1-ul .job-card-box .job-card-footer div img {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  margin-right: 3px;
  background-color: #ededed;
}
.company-box-2 .company-list-1 .company-list-1-ul .job-card-box:last-child {
  margin-bottom: 0;
}
.company-box-2 .company-list-1 .company-list-1-ul .active {
  border: 1px solid #083e7f;
}
.company-box-2 .company-job-content {
  width: 80%;
  background-color: #fff;
  padding: 9px;
}
.company-box-2 .company-job-content .job-detail-box {
  display: flex;
  flex-direction: column;
}
.company-box-2 .company-job-content .job-detail-box .job-detail-header {
  padding: 9px;
  display: flex;
  justify-content: space-between;
}
.company-box-2 .company-job-content .job-detail-box .job-detail-header .job-header-info {
  display: flex;
  flex-direction: column;
}
.company-box-2 .company-job-content .job-detail-box .job-detail-header .job-header-info .job-header-info-title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.company-box-2 .company-job-content .job-detail-box .job-detail-header .job-header-info .job-header-info-title span {
  font-size: 20px;
  color: #083e7f;
  margin-right: 26px;
  font-weight: 700;
}
.company-box-2 .company-job-content .job-detail-box .job-detail-header .job-header-info .job-header-info-title span:last-child {
  color: orange;
  font-size: 24px;
  font-weight: 700;
}
.company-box-2 .company-job-content .job-detail-box .job-detail-header .job-header-info .job-header-info-tag {
  margin-top: 16px;
}
.company-box-2 .company-job-content .job-detail-box .job-detail-header .job-header-info .job-header-info-tag .job-header-info-tag-list {
  display: flex;
  justify-content: flex-start;
  gap: 12px;
  flex-wrap: wrap;
  overflow: hidden;
  align-items: center;
  margin-bottom: 9px;
}
.company-box-2 .company-job-content .job-detail-box .job-detail-header .job-header-info .job-header-info-tag .job-header-info-tag-list li {
  padding: 3px 5px;
  background-color: #ededed;
  border-radius: 6px;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 12px;
  color: #083e7f;
}
.company-box-2 .company-job-content .job-detail-box .job-detail-header .job-header-tag a {
  background-color: #0b5ed7;
}
.company-box-2 .company-job-content .job-detail-body {
  padding: 9px;
}
.company-box-2 .company-job-content .job-detail-body h3 {
  font-size: 16px;
  color: #083e7f;
  margin-bottom: 16px;
}
.company-box-2 .company-job-content .job-detail-body p {
  font-size: 15px;
  line-height: 32px;
}
.company-box-2 .company-job-content .job-detail-footer {
  height: 200px;
}
.my-box .modal-title {
  font-size: 18px;
  font-weight: 600;
  color: #083e7f;
}
