@charset "utf-8";

/* ------------------------------------------------------------------
TOP BAR
--------------------------------------------------------------------- */
.top-bar {
  background: #363636;
  font-size: .875rem;
}

.top-bar .left .list-inline-item:not(:first-child) {
  display: none;
}

.top-bar a {
  color: #fff;
}

.top-bar a:hover {
  color: #ffa000;
}

.top-bar i {
  margin-right: .5rem;
}

/*---------------------*/
.header .logo>img {
  max-height: 55px;
}

/*------响应式菜单-----*/
.header .top-menu {
  display: none;
  margin-left: 30px;
}

/* ------------------------------------------------------------------
NAVIGATION
--------------------------------------------------------------------- */
.navigation.sticky {
  animation: 700ms ease-in-out 0s normal none 1 running fadeInDown;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 11;
  border: none;
  box-shadow: 0 0px 10px rgba(0, 0, 0, .2);
}

.header {
  width: 100%;
}

.header .navigation.sticky ul.nav>li>a {
  line-height: 70px;
}

/*---------------------------*/
header ul.nav>li {
  position: relative;
  transition: all .3s ease-in-out;
  margin-right: 30px;
}

header ul.nav>li:last-child {
  margin-right: 20px;
}

header ul.nav>li>a {
  color: #333;
  position: relative;
  text-transform: capitalize;
  font-weight: 500;
  display: block;
  line-height: 90px;
}

header ul.nav>li:hover>a,
header ul.nav>li.active>a {
  color: #EE3338;
}

header ul.nav>li.dropdown>a>i.fa-angle-down {
  margin-left: .3125rem;
  transition: all 0.3s ease-out;
}

header ul.nav>li.dropdown:hover>a>i.fa-angle-down {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

/*-------横线before------*/
header ul.nav>li>a::after {
  content: '';
  width: 0;
  height: 2px;
  background-color: #EE3338;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  transition: .3s;
}

header ul.nav>li:hover>a::after,
header ul.nav>li.active>a::after {
  color: #EE3338;
  width: 100%;
}

/*---------目录------*/
header ul.nav>li>ul,
header ul.nav>li>ul>li>ul {
  position: absolute;
  min-width: 100%;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  background-color: #fff;
  transform: translateY(30px);
  transition: .3s;
  box-shadow: 2px 2px 5px 1px rgb(0 0 0 / 5%), -2px 0px 5px 1px rgb(0 0 0 / 5%);
}

header ul.nav li a>img {
  max-height: 15px;
  display: inline-block;
}

header ul.nav>li.dropdown:hover>ul,
header ul.nav>li>ul>li.dropdown:hover>ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

header ul.nav>li.dropdown:hover>ul>a,
header ul.nav>li>ul>li.dropdown:hover>a {
  color: #EE3338;
}

header ul.nav>li>ul {
  left: 0;
  top: 100%;
  box-shadow: 2px 2px 5px 1px rgb(0 0 0 / 5%), -2px 0px 5px 1px rgb(0 0 0 / 5%);
}

header ul.nav>li>ul>li>ul {
  left: 100%;
  top: 0;
  -webkit-box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.1);
}

header ul.nav>li>ul li {
  position: relative;
  width: 100%;
  padding: 0 1.25rem;
  min-width: 175px;
}

header ul.nav>li>ul li a {
  white-space: nowrap;
  display: block;
  position: relative;
  padding: 0.5rem 1rem 0.5rem 0;
  border-bottom: 1px solid #e9e5df;
  line-height: 1.5;
  font-weight: 500;
  font-size: 0.9375rem;
  text-transform: capitalize;
}

header ul.nav>li>ul li:last-child a {
  border-bottom: 0;
}

header ul.nav>li>ul>li.dropdown>a:after {
  position: absolute;
  content: "\f105";
  right: 0;
  font-family: 'Font Awesome 6 Pro';
  font-weight: 400;
}

/*--------------------------*/
.navbar-right {
  position: relative;
  padding-left: 20px;
}

.navbar-right::before {
  content: '';
  position: absolute;
  width: 1px;
  background: rgb(225, 225, 225);
  height: 40px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.search-toggler>button {
  width: 20px;
  background: transparent;
}

/*-------子菜单-------*/
.search-toggler .dropdown-search {
  display: none;
  position: absolute;
  top: 100%;
  z-index: 2;
  min-width: 300px;
  background-color: #fff;
  border-radius: 4px;
  left: auto;
  right: 0;
  padding: 15px;
  box-shadow: 7px 5px 30px 0 rgba(72, 73, 121, 0.15);
}

.dropdown-search form {
  position: relative;
}

.dropdown-search form input[type="search"] {
  box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.075);
  transition: border linear .2s, box-shadow linear .2s;
}

.dropdown-search form button[type="submit"] {
  position: absolute;
  right: 0;
  top: 0;
  width: 40px;
  height: 100%;
  color: #fff;
  overflow: hidden;
  transition: all ease 0.5s;
  border-radius: 0 0.25rem 0.25rem 0;
  z-index: 0;
}

.dropdown-search form button[type="submit"]::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #EE3338;
  z-index: -1;
}

.dropdown-search form input[type="search"]:focus,
.dropdown-search form input[type="search"]:hover {
  border-color: rgba(238, 51, 56, 0.8);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(238, 51, 56, 0.25);
}

.dropdown-search form button[type="submit"]::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #31333e;
  transform: scaleY(0);
  transition: transform .3s ease-out;
  z-index: -1;
}

.dropdown-search form button[type="submit"]:hover:after,
.dropdown-search form button[type="submit"]:focus:after {
  transform: scaleY(1);
}

/*---------------------
CUSTOMIZE THE CAROUSEL
----------------------*/
.carousel-item img:not(:first-child) {
  display: none;
}

/*---------------------
icon-grid
-------------------------*/
.item-grid {
  background-color: #f8f8f8;
}

.item-grid .row {
  padding: 1.5rem 0;
}

.item-grid .row img {
  max-height: 80px;
}

.item-grid .item-desc h4 {
  font-size: 1rem;
  color: #333;
  font-weight: 500;
}

.item-grid .item-desc h4 span {
  font-size: 2.5rem;
}

.item-grid ul>li+li {
  border-left: 1px solid #e0e0e0;
}

/* ------------------------------------------------------------------
PROFILE SECTION
--------------------------------------------------------------------- */
.profile-section .video-wrapper {
  position: relative;
}

.profile-section .video-wrapper::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.03);
}

.profile-section .video-wrapper>img {
  width: 100%;
}

.profile-section .video-wrapper .video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  background: url('../images/owl.video.play.png') no-repeat;
  cursor: pointer;
  z-index: 1;
  transition: transform .1s ease;
  top: 50%;
  left: 50%;
  margin-left: -40px;
  margin-top: -40px;
}

.profile-section .video-wrapper .video-play-icon:hover {
  -ms-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3);
}

.profile-section .desc .sub-title {
  font-size: 1.375rem;
}

.profile-section .desc {
  padding: 3% 4%;
}

.profile-section .desc h2 {
  font-size: 1.75rem;
  color: #a4031f;
}

.profile-section .desc p {
  line-height: 1.75;
}

.profile-section .swiper {
  width: 100%;
  height: 300px;
  margin-bottom: 2.75rem;
}

.profile-section .swiper .swiper-slide {
  height: auto;
  padding-right: 3rem;
}

.profile-section .desc p+p {
  margin-top: 0.9375rem;
}

/* --------------------------------------------------
SECTION TITLE
----------------------------------------------------- */
.section-padding {
  padding: 3.75rem 0;
}

.section-title {
  position: relative;
  margin-bottom: 1.875rem;
}

.section-title>hgroup>h2 {
  color: #a4031f;
  font-weight: 600;
}

.section-title>hgroup>h3 {
  font-size: 1.25rem;
  padding-right: 30px;
  position: relative;
}

.section-title>hgroup>h3::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #e5e5e5;
}

.section-title::after {
  content: '';
  position: absolute;
  width: calc(100% - 285px);
  height: 1px;
  background: #e5e5e5;
  bottom: 10px;
  right: 0;
  z-index: 1;
}

.section-title .nav-pills .nav-link {
  padding: .45rem 1rem;
  color: #fff;
  background-color: #555;
}

.section-title .nav-pills .nav-item.active .nav-link {
  background-color: #EE3338;
}

.section-title .nav-pills .nav-item+.nav-item {
  margin-left: 0.625rem;

}

/* ------------------------------------------------------------------
ADVANTAGE SECTION
--------------------------------------------------------------------- */
.advantage-section {
  position: relative;
  width: 100%;
  background: url(../images/about-bg.jpg) no-repeat fixed center;
  background-size: cover;
  position: relative;
}

.advantage-section::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(54, 66, 74, 0.9);
}

.advantage-section>.container * {
  z-index: 2;
}

.advantage-section .section-title>hgroup>h2,
.advantage-section .section-title>hgroup>h3 {
  color: #fff;
}

.advantage-section .section-title::after {
  width: calc(100% - 270px);
  opacity: 0.4;
}

.advantage-section .col {
  transition: all 0.3s ease-out 0s;
}

.advantage-section .col:hover a {
  background: rgba(255, 255, 255, 0.1);
}

.advantage-section .col:hover {
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
}

.advantage-section .col>a {
  width: 100%;
  height: 100%;
  padding: 30px;
  background: rgba(255, 255, 255, 0.2);
  position: relative;
}

.advantage-section .col>a>.icon-square {
  width: 92px;
  height: 92px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.advantage-section .col>a>.icon-square i {
  color: #fff;
  font-size: 2.5rem;
}

.advantage-section .col section {
  color: #fff;
}

.advantage-section .col section h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;

}

.advantage-section .col section p {
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* --------------------------------------------------
PRODUCT SECTION
----------------------------------------------------- */
.product-section .tab-box .tab-conbox {
  transition: all 0.5s ease;
}

.product-section .tab-box .tab-conbox+.tab-conbox {
  display: none;
}

/* ------------------------------------------------------------------
SERVICE SECTION
--------------------------------------------------------------------- */
.service-section {
  background: url(../images/process-bg.jpg) no-repeat fixed top center;
  background-size: cover;
}

.service-section .section-title::after {
  width: calc(100% - 405px);
  background: #a7acb1;
}

.service-section .section-title>hgroup>h3::after {
  background: #a7acb1;
}

/* ------------------------------------------------------------------
NEW SECTION
--------------------------------------------------------------------- */
.news-section {
  background-image: linear-gradient(0deg, rgba(240, 240, 240, 1), rgba(255, 255, 255, 1));
}

.news-section .swiper-slide {
  padding-top: 5px;
  transition: all 0.2s ease-in-out;
}

.news-section .tab-box .tab-conbox {
  transition: all 0.5s ease;
}

.news-section .tab-box .tab-conbox+.tab-conbox {
  display: none;
}

.news-section .swiper-slide {
  transition: all ease .3s;
  box-shadow: 0 1px 0 0 rgba(0, 0, 0, .1);
  margin-bottom: 15px;
}

.news-section .swiper-slide:hover {
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, .2);
  box-shadow: 0 5px 15px rgba(0, 0, 0, .2);
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
}

.news-section .swiper-slide:hover .hover {
  color: #EE3338;
}

.news-section section {
  font-size: 0.9375rem;
}

.news-section .post-calendar {
  margin-bottom: 0.625rem;
}

.news-section .post-calendar i {
  color: #EE3338;
  position: relative;
  margin-right: 5px;
}

.news-section .post-calendar span::before {
  content: '|';
  padding: 0 0.625rem;
}

.news-section section p {
  line-height: 1.7;
  margin-bottom: 0.625rem;
  height: 50px;
  overflow: hidden;
}

.news-section .read-more {
  transition: .3s;
}

.news-section .read-more:hover {
  letter-spacing: 1px;
}

/* --------------------------------------------------
FOOTER SECTION
----------------------------------------------------- */
footer {
  background-color: #292929;
  color: #c6c4c4;
}

footer .footer-area h5 {
  color: #fff;
}

footer a {
  color: #c6c4c4;
}

footer .footer-area address p>a:not(:last-child) {
  padding-right: 0.5rem;
}

footer .copyright-area {
  background-color: rgba(0, 0, 0, 0.3);
}

footer .copyright-area p {
  margin: 0;
}

/*-------SWIPER-------*/
.service-section .swiper-slide {
  margin-bottom: 5px;
}

/* --------------------------------------------------
PAGE TITLE SECTION
----------------------------------------------------- */
.page-title-section {
  transition: height .2s ease-in-out;
  background-position: center;
  background-size: cover;
  padding: 4.5rem 0;
}

.page-title-section::before {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #000;
  opacity: .6;
}

.page-header {
  z-index: 1;
}

.page-header h1 {
  color: #fff;
  font-size: 2.25rem;
}

/* -------------------------------------------------
Breadcrumb
----------------------------------------------------*/
.breadcrumb a,
.breadcrumb>.active,
.breadcrumb-item,
.breadcrumb-item+.breadcrumb-item::before {
  color: #fff;
}

.breadcrumb a:hover {
  color: #EE3338;
}

.breadcrumb-item i {
  margin-right: .5rem;
}

/*--------------------
WEB WIDTH
-------------------------*/
.service-contents .col-lg-3 {
  width: 22%;
}

.service-contents .col-lg-9 {
  width: 78%;
}

/* -------------------------------------------------
SHOP TITLE
----------------------------------------------------*/
.shop-title {
  background: -webkit-linear-gradient(left, #ebebeb, #f8f8f8);
}

.shop-title .shop-total a {
  padding: 0 1rem;
  font-size: 1.125rem;
  border: 1px solid #e8e8e8;
  text-align: center;
  background: #F7F7F7;
  color: #999;
}

.shop-title .shop-total a:hover {
  background: #fff;
}

.shop-title .shop-total span i {
  color: #EE3338;
  font-style: normal;
}

/* -------------------------------------------------
PRODUCT DETAIL
----------------------------------------------------*/
.product-gallery {
  width: 45%;
}

.product-gallery .sp-wrap {
  width: 100%;
}

.product-gallery .sp-current-big img {
  width: 100%;
}

.product-gallery .sp-thumbs {
  height: 60px;
  margin-top: 10px;
}

.product-gallery .sp-thumbs a {
  margin-right: 10px;
}

.product-des {
  width: 55%;
}

.product-des .short h4 {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.5;
}

.social-share .social-share-icon {
  line-height: 30px;
}

.product-des .card-body {
  background-color: #F8F8F8;
}

.product-des .card-body h3 {
  color: #EE3338;
  font-size: 1.125rem;
}

.product-des .card-body h3 a {
  color: #EE3338;
}

.product-des .card-body h3 a:hover {
  text-decoration: underline;
}


.product-des .description>li {
  line-height: 1.75;
  color: #666;
}

.product-des .description>li span,
.product-des .description>li a {
  color: #EE3338;
}

/*----------选项卡-------*/
.tab-content {
  border-left: 1px solid #dee2e6;
  border-right: 1px solid #dee2e6;
  border-bottom: 1px solid #dee2e6;
}

.nav-tabs .nav-link {
  color: #333;
  font-size: 1rem;
  position: relative;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav-tabs .nav-link.active {
  color: #EE3338;
  font-weight: bold;
}

.nav-tabs .nav-link.active::after {
  content: '';
  width: 100%;
  height: 2px;
  background-color: #EE3338;
  position: absolute;
  left: 0;
  right: 0;
  top: -1px;
  z-index: 1;
}

.product-info .tab-pane .intro {
  position: relative;
}

.product-info .tab-pane .intro img {
  max-width: 100%;
}

.product-info .tab-pane .intro p {
  line-height: 1.75;
}

.product-info .tab-pane .intro table,
.product-info .tab-pane .intro>p {
  margin-bottom: .75rem;
}

.product-info .tab-pane .intro table td.tb-rl {
  margin: 0 auto;
  text-align: center;
  writing-mode: tb-rl;
  letter-spacing: .25rem;
  width: 40px;
}

/* .product-info .tab-pane .intro table td img {
  height: 20px;
} */

.product-info .tab-pane .intro ul, .product-info .tab-pane .intro ol,
.product-info .tab-pane .intro .list-paddingleft-2 {
  padding-left: 20px;
}

.product-info .tab-pane .intro li{
  line-height: 1.75;
}

.oblique {
  text-align: left !important;
  position: relative;
  background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxsaW5lIHgxPSIwIiB5MT0iMCIgeDI9IjEwMCUiIHkyPSIxMDAlIiBzdHJva2U9IiNkZmU2ZWMiIHN0cm9rZS13aWR0aD0iMSIvPjwvc3ZnPgo=) no-repeat 100% center;
}

.span-5 {
  display: inline-block;
  width: 50%;
}

.span-left {
  position: absolute;
  bottom: 5px;
}

.span-right {
  position: absolute;
  top: 5px;
  right: 0;
}

.product-info .tab-pane .intro table td p {
  margin-bottom: 0;
}

/*------产品滚动-----*/
.product-slide {
  display: none;
  width: 100%;
  transform: translate3d(0, 0, 0);
  overflow: hidden;
  position: relative;
}

.product-slide .swiper-slide {
  position: relative;
  text-align: center;
  transform: translate3d(0, 0, 0);
}

.product-slide .pagination {
  position: absolute;
  z-index: 20;
  bottom: 3px;
  text-align: center;
  right: 0;
}

.product-slide .swiper-pagination-bullet {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 5px;
  background: #333;
  margin: 0 2px;
  opacity: 0.8;
  cursor: pointer;
}

.product-slide .swiper-pagination-bullet-active {
  background: #EE3338;
}

/*-------单页内容-------*/
.entry-header a {
  cursor: pointer;
}

.entry-content {
  font-size: 1rem;
}

.entry-content p {
  line-height: 1.75;
  margin-bottom: 15px;
}

.entry-content img {
  max-width: 100%;
}

.entry-content img[align='left'] {
  margin-right: 15px;
  -webkit-border-radius: .3em;
  -moz-border-radius: .3em;
  border-radius: .3em;
}

/*--------新闻详情页------*/
.post-meta {
  font-size: 0.9375rem;
  color: #898989;
  flex-wrap: wrap;
  border-bottom: 1px solid #e5e7eb;
}

.post-share-info .tag span i {
  color: #EE3338;
}

.post-share-info .tag a {
  position: relative;
  padding-right: 10px;
  font-weight: 500;
}

hr.divider {
  opacity: 1;
  border-bottom: 1px solid #e5e7eb !important;
}

nav.prevnext {
  flex-wrap: wrap;
  line-height: 1.8;
}

.quality-list {
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
}

.quality-slide .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  font-size: 12px;
  color: #000;
  opacity: 1;
  background: rgba(0, 0, 0, 0.2);
}

.quality-slide .swiper-pagination-bullet-active {
  color: #fff;
  background: #007aff;
}

/*------内页新闻列表------*/
.service-contents .list-group .list-group-item .img {
  width: 25%;
  overflow: hidden;
  margin-right: 2%;
}

.service-contents .list-group .list-group-item section {
  flex: 1;
  position: relative;
}

.service-contents .list-group .list-group-item:hover .thumb img {
  transform: scale(1.1, 1.1);
}

.service-contents .list-group .list-group-item section p.desc {
  color: #828a92;
  height: 52px;
  line-height: 1.75;
  overflow: hidden;
}

.service-contents .list-group .list-group-item section .meta {
  font-size: 0.875rem;
  position: absolute;
  bottom: 3.5%;
  color: #a3afb7;
}

.service-contents .list-group .list-group-item section .meta .tags {
  display: inline-block;
  position: relative;
  margin-right: .3125rem;
}

.service-contents .list-group .list-group-item section .meta .tags::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  bottom: 0;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.2);
  height: 15px;
  width: 1px;
}

.service-contents .list-group .list-group-item section .meta .tags a:first-child {
  background: #cbd8eb;
  color: #2e64b0;
}

.service-contents .list-group .list-group-item section .meta .tags a {
  display: inline-block;
  padding: 0 8px;
  background: #f9f9f9;
  border-radius: 2px;
  line-height: 1.6;
  font-weight: 400;
  color: #999;
  margin-right: 8px;
}

.service-contents .list-group .list-group-item section .meta .tags a:hover {
  background: #cbd8eb;
  color: #2e64b0;
}

.service-contents .list-group .list-group-item section .meta .time {
  color: #828a92;
  display: inline-block;
}

.service-contents .list-group .list-group-item section .meta .time span:not(:first-child) {
  margin-left: 0.625rem;
}

.service-contents .list-group .list-group-item section .meta .time span i {
  margin-right: .3125rem;
}

/*--------人才招聘--------*/
.job-title {
  background-color: #2e64af;
}

.job-title ul li {
  color: #fff;
  text-align: center;
  padding: 15px 0;
  font-size: 1rem;
  width: 20%;
}

.job-list {
  background-color: #f6f4f4;
  margin-bottom: 20px;
}

.job-list .job-content .job-desc {
  display: none;
}

.job-list .job-content>ul {
  cursor: pointer;
  border-bottom: 1px solid #e8e7e7;
}

.job-list .job-content>ul>li {
  color: #393939;
  padding: 15px 0;
  text-align: center;
  width: 20%;
}

.job-list .job-content.active>ul>li,
.job-list .job-content>ul:hover>li {
  color: #2e64af;
}

.job-tip {
  line-height: 1.7;
  margin-bottom: 20px;
}

.job-tip p {
  margin: 0;
}

.job-contact h2 {
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 20px;
}

.job-contact p {
  line-height: 1.7;
}

/*-------职位描述-----*/
.job-list .job-desc {
  width: 100%;
  padding: 20px 50px;
  border-bottom: 1px solid #e5e5e5;
}

.job-list .job-desc>ul {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e5e5e5;
}

.job-list .job-desc>ul>li {
  line-height: 1.8;
}

.job-list .job-desc ul li span {
  color: #666;
}

/*--------岗位职责-----*/
.job-list .job-desc .zhize.z1 {
  margin-bottom: 20px;
}

.job-list .job-desc h2 {
  font-weight: 600;
  font-size: 1rem;
  color: #333;
  margin-bottom: 10px;
}

.job-list .job-desc p {
  line-height: 1.75;
}