@charset "utf-8";

/* ------------------------------------------------------------------
HEADER SECTION
--------------------------------------------------------------------- */
.navbar {
  color: #fff;
  background: #f8f8f8;
  font-size: .875rem;
  padding: .75rem 0;
  /* border-bottom: 1px solid #E5E9EF; */
}

.navbar a {
  color: #fff;
}

.navbar a:hover {
  color: #eb3656;
}

.navbar i {
  font-size: 1rem;
  color: #eb3656;
}

/*---------------------*/
.header .logo>img {
  max-height: 40px;
}

/*------响应式菜单-----*/
.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);
}


.navigation.sticky ul.nav>li>a {
  height: 60px;
}


.header {
  background: #fff;
  box-shadow: 0 0px 10px rgba(0, 0, 0, .2);
  position: relative;
  z-index: 10;
}

/*---------------------------*/
header ul.nav>li {
  margin-right: 2.5rem;
  position: relative;
  transition: all .3s ease-in-out;
}

header ul.nav>li>a {
  color: #333;
  position: relative;
  font-weight: 600;
  height: 85px;
  display: flex;
  align-items: center;
  text-transform: uppercase;
}

header ul.nav>li:hover>a,
header ul.nav>li.active>a {
  color: #eb3656;
}

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);
}

header ul.nav>li>a::after {
  content: '';
  background-color: #eb3656;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 3px;
  border-radius: 2px;
  transition: all 0.3s ease 0s;
  width: 0
}

header ul.nav>li:hover>a:after {
  width: 100%;
}

/*---------目录------*/
header ul.nav>li.dropdown>.submenu-wrapper {
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 100;
  pointer-events: none;
}

header ul.nav>li.dropdown:hover>.submenu-wrapper {
  pointer-events: auto;
}

header ul.nav>li.dropdown>.submenu-wrapper>.submenu-inner {
  width: max-content;
  min-width: 100%;
  opacity: 0;
  visibility: hidden;
  background-color: #fff;
  transform: translateY(30px);
  transition: .3s;
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}

header ul.nav>li.dropdown:hover>.submenu-wrapper>.submenu-inner {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  transition: all 300ms ease;
}

header ul.nav>li.dropdown .submenu-inner ul li {
  position: relative;
  width: 100%;
  padding: 0 1.25rem;
  min-width: 120px;
}

header ul.nav>li.dropdown .submenu-inner ul li a {
  white-space: nowrap;
  display: block;
  position: relative;
  padding: 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.dropdown .submenu-inner ul li:last-child a {
  border-bottom: 0;
}

/*--------------------------*/
header .navigation .search form {
  position: relative;
}

header .navigation .search form input[type="search"] {
  box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.075);
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  font-size: 0.9375rem;
  background-color: #f5f5f5;
  border-radius: 2.25rem;
}

header .navigation .search form input[type="search"]:focus,
header .navigation .search form input[type="search"]:hover {
  border-color: rgba(235,54,86, 0.8);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(235,54,86, 0.25);
}

.form-control:focus{
  border-color: rgba(235, 54, 86, 0.8);
}

header .navigation .search form button[type="submit"] {
  position: absolute;
  top: 0;
  right: .75rem;
  height: 100%;
  display: block;
  transition: all ease 0.5s;
  background-color: transparent;
}

header .navigation .search form .icon-search::before {
  font-size: .9375rem;
  content: "\f002";
}

header .navigation a.language {
  width: 36px;
  height: 36px;
  font-size: 1rem;
  background-color: #003399;
  color: #fff;
}

header .navigation a.language:hover {
  background-color: #007BBA;
}

/*--------------------------*/
.navbar-right {
  position: relative;
  padding-left: 1rem;
  display: none;
}

.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(235,54,86, 0.15);
}

.search-toggler .dropdown-search form {
  position: relative;
}

.search-toggler .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;
}

.search-toggler .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;
}

.search-toggler .dropdown-search form button[type="submit"]::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #eb3656;
  z-index: -1;
}

.search-toggler .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;
}

.search-toggler .dropdown-search form button[type="submit"]:hover:after,
.search-toggler .dropdown-search form button[type="submit"]:focus:after {
  transform: scaleY(1);
}

/*---------------------
CUSTOMIZE THE CAROUSEL
----------------------*/
.carousel-item img:not(:first-child) {
  display: none;
}

.carousel .container {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
}

.carousel .carousel-caption {
  color: #333;
  position: relative;
  right: 0;
  left: 0;
  width: 70%;
}

/* ------------------------------------------------------------------
PROFILE SECTION
--------------------------------------------------------------------- */
.profile-section {
  position: relative;
  color: #fff;
  background: rgb(203 95 114);
  /* background: linear-gradient(33deg, #9D2E7D, #E16E93); */
  /* background: rgba(235, 54, 86, .03137254901960784); */
}

.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 .col-lg-6:nth-of-type(1) {
  width: 52%;
}

.profile-section .col-lg-6:nth-of-type(2) {
  width: 48%;
}

.profile-section .desc h2 {
  font-weight: 700;
}

.profile-section .desc h2:nth-of-type(1) {
  color: #fff;
  font-size: 1.875rem;
}

.profile-section .desc .content-scroll {
  /* color: #333; */
  line-height: 1.8;
}

.profile-section .desc .content-scroll p+p {
  margin-top: 0.9375rem;
}

.profile-section .swiper {
  width: 100%;
  height: 300px;
  margin-bottom: 2.5rem;
}

.profile-section .swiper .swiper-slide {
  height: auto;
  padding-right: 2rem;
}

/* --------------------------------------------------
SECTION TITLE
----------------------------------------------------- */
.section-padding {
  padding: 3.75rem 0;
}

.section-title {
  position: relative;
  margin-bottom: 1.875rem;
}

.section-title h2 {
  font-size: 1.5rem;
  position: relative;
  text-transform: uppercase;
}

.section-title .nav-pills .nav-link {
  padding: 0.45rem 1rem;
  background-color: #f1f2f6;
}

.section-title .nav-pills .nav-item+.nav-item {
  margin-left: 0.625rem;
}

.section-title .nav-pills .nav-item.active .nav-link {
  color: #fff;
  background-color: #eb3656;
}

.section-title .nav-link {
  color: #333;
}

.section-title h2::after {
  content: '';
  display: block;
  height: 2px;
  width: 50px;
  background: #eb3656;
  margin: 1rem 0 0;
  border-radius: 2px;
}

/* ------------------------------------------------------------------
PROFILE SECTION
--------------------------------------------------------------------- */
.product-section {
  position: relative;
  background: rgba(235, 54, 86, .03137254901960784);
}
.card{
  border-color: rgba(235, 54, 86, .075);
}
.card-body {
  background-color: rgba(235, 54, 86, .075);
}

/* .product-section .card {
  border-radius: 0;
  padding: 5px;
} */

/* ------------------------------------------------------------------
NEW SECTION
--------------------------------------------------------------------- */
.news-section .read-more {
  transition: .3s;
}

.news-section .read-more:hover {
  letter-spacing: 1px;
}
.news-section .card {
  border: 1px solid rgba(0, 0, 0, .125);
}

.news-section h2::before {
  background: #666 none repeat scroll 0 0;
}

.news-section .col-lg-6:nth-of-type(1) {
  width: 46%;
}

.news-section .col-lg-6:nth-of-type(2) {
  width: 54%;
}

.news-section .grid-image figure {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: transform 0.5s ease 0s;
}

.news-section a.grid-item {
  height: 100%;
  display: block;
  overflow: hidden;
}

.news-section a.grid-item:hover figure {
  transform: scale(1.1, 1.1);
}

.news-section a.grid-item .grid-image {
  height: 100%;
  position: relative;
}

.news-section a.grid-item .grid-image .news-title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0.625rem 0;
  background-color: rgba(0, 68, 130, .8);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-section a.grid-item .grid-image .news-title h4 {
  color: #fff;
  line-height: 1.8;
  font-size: 1.125rem;
}

.news-section .grid-image .grid-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* object-fit: cover; */
  transition: transform .3s ease-out;
}

.news-section .grid-image .grid-img:hover img {
  transform: scale(1.1, 1.1);
}

.news-section ul.news-list li {
  background-color: #f0f3fa;
  /* padding-bottom: 3%; */
}

/*-------标题-----*/
.news-section .grid-description h3 {
  font-size: 1.625rem;
  margin-bottom: 1rem;
}


/*-----------------------------------*/
/* .news-section ul.news-list li+li {
  padding: 3% 0;
} */


.news-section ul.news-list li .left-content {
  flex: 0 0 125px;
  background-color: #f0f3fa;
  display: flex;
  align-items: center;
}

.news-section ul.news-list li .news-day {
  display: flex;
  flex-direction: column;
  flex: 0 0 100%;
  padding: 1.25rem 0;
  margin: .75rem 0;
  align-items: center;
  border-right: 1px solid #d1d7e5;
}

.news-section ul.news-list li .news-day p {
  color: #333;
  line-height: 1;
  text-align: center;
}

.news-section ul.news-list li .news-day p:nth-of-type(1) {
  font-size: 2.5rem;
}

.news-section ul.news-list li .news-day p:nth-of-type(2) {
  font-size: 1.25rem;
}

.news-section ul.news-list li section {
  position: relative;
  padding: 1.25rem;
  transition: .5s;
}

.news-section ul.news-list li section:hover {
  padding-left: 2.5rem;
}

.news-section ul.news-list li section h4 {
  font-size: 1.125rem;
  color: #333;
  line-height: 1.5;
}


.news-section ul.news-list li:not(:last-child) {
  margin-bottom: 3%;
}

.news-section ul.news-list li section p {
  color: #999;
  font-size: 0.9375rem;
  line-height: 1.75;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  width: 100%;
}

/* --------------------------------------------------
FOOTER SECTION
----------------------------------------------------- */
footer {
  font-size: 0.9375rem;
  /* background: rgba(235, 54, 86, .03137254901960784) */
  background: rgba(235, 54, 86, .08)
}

footer .links-widget a {
  font-size: 0.9375rem;
}

footer .footer-area address p>a:not(:last-child) {
  padding-right: 0.5rem;
}

/*------左侧---------*/
footer .footer-area .left .footer-logo img {
  max-height: 40px;
}

/*------右侧---------*/
footer .footer-area .right .links-widget {
  transition: all 0.3s ease-out;
  max-width: 200px;
}

footer .contact-info {
  max-width: 350px;
}

footer .footer-area .right .scan img {
  max-width: 160px;
  padding: 10px;
  /* border: 1px solid #eb3656; */
  border: 1px solid rgba(235,54,86, 0.2);
}

/*----------------------*/
footer .copyright-area {
  font-size: 1rem;
  background-color: rgba(0, 0, 0, 0.5);
}

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: 6.25rem 0;
}

/* .page-title-section::before {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #000;
  opacity: .15;
} */

.page-header {
  z-index: 1;
}

.page-header h1 {
  font-size: 2.25rem;
}

/* -------------------------------------------------
Breadcrumb
----------------------------------------------------*/
.breadcrumb a,
.breadcrumb>.active,
.breadcrumb-item,
.breadcrumb-item+.breadcrumb-item::before {
  font-size: 1.125rem;
}

.breadcrumb a:hover {
  color: #eb3656;
}

.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, rgba(235, 54, 86, .075), rgba(235, 54, 86, .035));
}

.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: #eb3656;
  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 .opacity-25 {
  opacity: 0.1 !important;
}

.product-des .short h4 {
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 1.5;
  color: #eb3656;
}

.social-share .social-share-icon {
  line-height: 30px;
}

.product-des .card-body {
  background-color: #F8F8F8;
}

.product-des .card-body h3 {
  color: #eb3656;
  font-size: 1.125rem;
}

.product-des .card-body h3 a {
  color: #eb3656;
}

.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: #eb3656;
}

/*----------选项卡-------*/
.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: #eb3656;
  font-weight: bold;
}

.nav-tabs .nav-link.active::after {
  content: '';
  width: 100%;
  height: 2px;
  background-color: #eb3656;
  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,
.product-info .tab-pane .intro table th {
  line-height: 1.5;
  min-width: 50px;
  border: 1px solid #ddd;
  padding: .375rem;
  text-align: center;
  vertical-align: middle;
}

.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;
}


.service-contents [class$=contact] img {
  max-width: inherit;
}

.service-contents [class$=contact] h4 {
  color: #eb3656;
}

.service-contents [class$=contact] .entry-content address {
  line-height: 1.8;
}

.service-contents [class$=contact] .entry-content address h4 {
  color: #333;
  font-weight: bold;
}

.service-contents [class$=contact] .entry-content address a:not(:last-child) {
  padding-right: 0.5rem;
}

.service-contents [class$=contact] .btn-primary {
  background-color: #eb3656;
  border-color: #eb3656;
}

/*--------新闻详情页------*/
.post-meta {
  font-size: 0.9375rem;
  color: #898989;
  flex-wrap: wrap;
  border-bottom: 1px solid #e5e7eb;
}

.post-share-info .tag span i {
  color: #eb3656;
}

.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 ul.news-list li {
  border-bottom: 1px rgba(0, 0, 0, .1) solid;
  padding-bottom: 2%;
}

.service-contents ul.news-list li+li {
  padding: 2% 0;
}

.service-contents ul.news-list li .news-thumb {
  width: 25%;
  overflow: hidden;
  margin-right: 2%;
}

.service-contents ul.news-list li .news-thumb img {
  object-fit: contain;
  transition: transform .3s ease-out;
}

.service-contents ul.news-list li:hover .news-thumb img {
  transform: scale(1.1, 1.1);
}

.service-contents ul.news-list li section {
  position: relative;
}

.service-contents ul.news-list li section h4 {
  line-height: 1.4;
}

.service-contents ul.news-list li:hover h4 a {
  color: #eb3656;
}


.service-contents ul.news-list li section p.desc {
  color: #999;
  line-height: 1.75;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  width: 100%;
}

.service-contents ul.news-list li section .meta {
  font-size: 0.875rem;
  position: absolute;
  bottom: 3.5%;
  color: #a3afb7;
}

.service-contents ul.news-list li section .meta .tags {
  display: inline-block;
  position: relative;
}


.service-contents ul.news-list li section .meta .tags a:first-child {
  background: rgba(235, 54, 86, .03137254901960784);
  color: #eb3656;
}

.service-contents ul.news-list li 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 ul.news-list li section .meta .tags a:hover {
  background: rgba(235, 54, 86, .03137254901960784);
  color: #eb3656;
}

.service-contents ul.news-list li section .meta .time {
  color: #828a92;
  display: inline-block;
}

.service-contents ul.news-list li section .meta .time span:not(:first-child) {
  margin-left: 0.625rem;
}

.service-contents ul.news-list li 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;
}