/* 标签初始化 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 全局样式 */
body {
    font-family: 12px / 140% Arial, "宋体", Helvetica, sans-serif, "Microsoft YaHei", Verdana;
}

/* 容器宽度设置 */
.container {
    max-width: 1200px !important;
    width: 1200px;
    padding-right: 0;
    padding-left: 0;
    margin-right: auto;
    margin-left: auto;
}

/* 顶部信息栏样式 */
.top-bar {
    background-color: #f8f8f8;
    padding: 8px 0;
    font-size: 14px;
    border-bottom: 1px solid #eee;
    font-family: "Microsoft YaHei", "微软雅黑", sans-serif;
    color: #5a5a5a;
}

.company-slogan {
    color: #666;
}

.top-links {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: right;
}

/* 顶部链接样式 */
.top-links li {
    display: inline-block;
    margin-left: 10px;  /* 从15px改为10px */
}

/* 顶部链接分隔符样式 */
.top-links .divider {
    color: #999;
    margin: 0 2px;  /* 从5px改为2px */
}

.top-links li a {
    color: #666;
    text-decoration: none;
}

.top-links li a:hover {
    color: var(--basecolor);
}

/* 调整原有导航栏位置 */
.navbar {
    position: relative;
    width: 100%;
    height: 95px;  /* 添加固定高度 */
    background-color: rgba(255, 255, 255, 0.95) !important;
/*    padding: 60px 0px;  */
    z-index: 1000;
    display: flex;
    align-items: center;  /* 垂直居中内容 */
}

/* 删除 .navbar.scrolled 样式，因为不再需要滚动效果 */
.scrolled .navbar{
    position: fixed;
}
.scrolled .top-bar{
    
}
/* 调整轮播图位置 */
.carousel-item {
    margin-top: 0;  /* 移除顶部边距 */
}
#navbarNav{
    padding-top: 30px!important;
}
/* 导航栏样式调整 */
.navbar .nav-link {
    color: #333 !important;
    font-size: 16px;
    padding: 8px 19px !important;
    position: relative;
}

/* 导航栏样式调整 */
.navbar .nav-link.btn-danger {
    background-image: url('/static/picture/2_09.jpg');
    background-repeat: no-repeat;
    background-position: 10px center;
    background-color: var(--basecolor);
    border-radius: 25px;
    width: 190px;
    height: 39px;
    color: #fff !important;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 35px !important;
}

/* 移除电话按钮的悬停效果 */
.navbar .nav-link.btn-danger:hover {
    background-color: var(--basecolor);
    border-color: var(--basecolor);
    color: #fff!important;
}
.navbar .nav-item.tel{
    padding-left: 60px!important;
}
/* 添加导航下拉菜单样式 */
.nav-item {
    position: relative;
}

.nav-item:hover .dropdown-menu {
    display: block;
}

/* 下拉菜单基础样式 */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--basecolor);  /* 修改为红色背景 */
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-radius: 0px;
    min-width: 100px;
    padding: 0px 0;
    border: none;  /* 移除边框 */
    text-align: center;
    font-size: 12px;
    z-index: 10;

}

.dropdown-menu a {
    display: block;
    padding: 8px 20px;
    color: #fff;  /* 修改为白色文字 */
    text-decoration: none;
    width:90%;
    margin:0 auto;
}

.dropdown-menu a:hover {
    background-color: var(--basedeepcolor)!important; 
    color: #000;
}
.nav-item:hover .dropdown-menu {
    display: block;
    visibility: visible; 
}

.dropdown-menu:hover {
    visibility: visible; 
}
.navbar-nav .nav-item:nth-child(3) .dropdown-menu{
    width: 230px;
}
.navbar-nav .nav-item:nth-child(4) .dropdown-menu{
    width: 170px;
}
/* 轮播图样式 */
.carousel-item {
    height: 770px;  /* 修改固定高度 */
    position: relative;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
}

/* 轮播图样式 */
/* 轮播图说明部分样式 */
.carousel-caption {
    position: absolute;
    top: 50%;
    left: 60%;  /* 修改为居中定位 */
    transform: translate(-50%, -50%);  /* 修改transform实现完全居中 */
    text-align: left;
    width: 600px;
    padding: 40px;
    background: rgba(0, 0, 0, 0.29);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 10px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    bottom:auto;

}

/* 移除之前添加的flex布局相关样式 */
.carousel-caption h1,
.carousel-caption p {
    margin-bottom: 15px;  /* 恢复原有间距 */
}
.carousel-caption h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.carousel-caption p {
    font-size: 18px;
    color: #fff;
    margin-bottom: 20px;
    border-bottom: 2px solid rgba(204, 0, 0, 0.8);
    padding-bottom: 10px;
    display: inline-block;  /* 让下划线跟随文字长度 */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    border-image: linear-gradient(to right, var(--basedeepcolor) 50%, white 50%) 1;
}

/* 轮播图按钮样式 */
.carousel-caption .btn {
    color: var(--basecolor);
    border: none;
    padding: 10px 30px;
    font-size: 16px;
    border-radius: 0;
    display: block;
    width: 116px;
    font-size: 14px;
    background-color: #fff;
}

.carousel-caption .btn:hover {
    background-color: var(--basedeepcolor);
    color: #fff;
}

/* 公司简介样式 */
.company-intro {
    padding: 80px 0;
    background: #fff;
    font-size: 14px;
    font-family: "Microsoft YaHei";
}
.company-intro h2:after {
    content: '';
    position: absolute;
    width: 125px;
    height: 2px;
    background-color: var(--basecolor);
    margin-top: 41px;
    margin-left: -127px;
}
.company-intro .btn{
    font-size: medium;
    font-weight: bolder;
}
/* 团队部分样式 */
.team-section {
    background-color: #1a1a1a;
    color: #fff;
    padding: 80px 0;
    font-family: "Microsoft YaHei";
}
.team-section .col-md-6{
    flex: 0 0 45%;
}
.team-section .row{
    gap: 10%;
}
.team-section h2 {
    color: #fff;
    margin-bottom: 50px;
    text-align: center;
    font-size: 24px;
}
.team-section h2:after {
    content: '';
    position: absolute;
    width: 96px;
    height: 2px;
    background-color: var(--basecolor);
    margin-top: 35px;
    margin-left: -96px;
}
.team-card {
    display: flex;
    gap: 20px;
}

.team-left {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.team-img {
    width: 195px;
    height: 260px;
    object-fit: cover;
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
    border-left: 0;
    border-right: 0;
}

.team-left .contact {
    text-align: center;
}

.team-left .contact p {
    margin: 0;
    color: #999;
    font-size: 14px;
    line-height: 1.8;
}

.team-info {
    flex: 1;
    width: 450px;
}
.team-info img{
 width: 100%;
}
.team-info h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: normal;
}

.team-info .description,
.team-left .contact p {
    font-size: 12px;
    line-height: 226%;
    font-family: 微软雅黑;
    color: rgb(255, 255, 255);
    margin-bottom: 0;
}

.team-left .contact {
    text-align: left;
    padding-top: 10px;
}

.team-info .contact {
    color: rgb(255, 255, 255);
    font-size: 14px;
    margin-top: 20px;
}

.team-info .title {
    color: var(--basecolor);
    font-size: 18px;
    margin-bottom: 15px;
}

.team-info .description {
    color: rgb(255, 255, 255);
    line-height: 226%;
}

/* 六大优势样式 */
.advantages {
    padding: 80px 0;
    background: #fff;
    font-family: "Microsoft YaHei";
}

.advantages .content-wrapper {
    display: flex;
    justify-content: center;
    gap: 50px;
}

.advantages .text-content {
    flex: 0 0 20%;
    padding-top: 65px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.advantages .text-content .btn{
    width: 111px;
    font-size: x-small;
}
.advantages .cards-content {
    flex: 0 0 40%;
    position: relative;
    padding-top: 50px;
}

.advantages h2 {
    position: absolute;
    right: auto;
    top: 0;
    text-align: right;
    font-size: 24px;
    margin-bottom: 15px;
}

.advantages h2:after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 0;
    width: 96px;
    height: 2px;
    background-color: var(--basecolor);
}

.advantages .cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 500px;
}

.advantage-card {
    height: 130px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;  /* 修改transition，包含所有属性 */
    box-shadow: 0px 0px 5px #000;

}
.advantage-card h4{
    font-size: .8em;
}

.advantages .bg-danger{
    background-color: var(--basedeepcolor)!important;
}
.advantage-card.bg-dark:hover {
    background-color:  var(--basedeepcolor)!important;
}

.advantage-card.bg-danger:hover {
    background-color: #000 !important;
}

.advantage-card:hover {
    transform: translateY(0px);
}

/* 页脚样式 */
footer {
    background-color: #1a1a1a;
    padding: 15px 0;
    font-size: 12px;
    line-height: 1.8;
    color: rgb(217, 217, 217);
}

footer p {
    color: rgb(217, 217, 217);
    margin: 0;  /* 移除底部边距 */
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer .footer-info {
    color: rgb(217, 217, 217);
}

footer .footer-info p {
    margin: 3px 0;
    line-height: 200%;
    color: rgb(217, 217, 217);
    font-family: 微软雅黑;
}

footer .footer-qr {
    text-align: right;
    display: flex;
    flex-direction: row;  /* 改为水平排列 */
    align-items: center;  /* 垂直居中对齐 */
    gap: 15px;  /* 添加间距 */
}

footer .footer-qr img {
    height: 80px;
    width: auto;
    margin-bottom: 0;  /* 移除底部间距 */
}

footer .footer-qr .qr-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;  /* 文字左对齐 */
}

footer .footer-qr .qr-title {
    font-weight: normal;
    margin-bottom: 3px;
    color: #fff;
    font-size: 14px;
}

footer .footer-qr .qr-name {
    color: #fff;
    font-size: 16px;
    font-weight: bold;
}

footer .footer-qr p {
    margin-top: 5px;
    color: rgb(217, 217, 217);
    font-size: 12px;
}

/* 按钮通用样式 */
.btn-danger {
    background-color: var(--basecolor);
    border-color: var(--basecolor);
    padding: 10px 30px;
}

.btn-danger:hover {
    background-color: var(--basedeepcolor);
    border-color: var(--basedeepcolor);
}


/* 导航栏样式调整 */
.navbar .navbar-brand img {
    width: 240px;
    height: auto;
}

/* 导航栏样式调整 */
.navbar .nav-link:hover {
    color: var(--basecolor) !important;
}

/* 下拉菜单悬停效果 */
.dropdown-menu a:hover {
    background-color: var(--basecolor);
    color: #fff;
}

/* 轮播图控制样式 */
.carousel-indicators {
    bottom: 0px;
}

.carousel-indicators li {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.5);
    border:1px solid var(--basecolor);
}
.carousel-indicators li:hover {
   /* border:1px solid var(--basecolor); */
   background-color: var(--basecolor);
}
.carousel-indicators .active {
    background-color: var(--basecolor);
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    display: none;
}


/* 轮播图3D效果 */
.carousel-inner {
    perspective: 1000px;
}

/* 轮播图过渡效果 */
.carousel-item {
    transition: opacity 0.6s ease-in-out;
    position: absolute;
    top: 0;
    width: 100%;
    display: block;
}

.carousel-item:not(.active) {
    opacity: 0;
}

.carousel-item.active {
    opacity: 1;
    position: relative;
}

/* 轮播图容器样式 */
.carousel-inner {
    position: relative;
    height: 770px;
    overflow: hidden;
    background-color: #000;
}

/* 轮播图过渡效果 */
.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
}

.carousel-fade .carousel-item,
.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next,
.carousel-fade .carousel-item-prev {
    display: block;
}

.carousel-fade .carousel-item-next,
.carousel-fade .carousel-item-prev {
    position: absolute;
    top: 0;
    width: 100%;
}

/* 轮播图文字动画 */
.carousel-caption {
    opacity: 1;
    transform: translateY(-170px);
    transition: all 0.8s ease 0.3s;
}

.carousel-item.active .carousel-caption {
    opacity: 1;
    transform: translateY(0);
}
.btn{
    border-radius: 0px;
}

.team-section .btn {
    font-size: 14px;
    font-weight: bold;
    padding: 10px 30px;
    min-width: 120px;
    width: 111px;
    font-size: x-small;
}

.team-section .btn:hover {
     background-color: var(--basedeepcolor);
    border-color: var(--basedeepcolor);
}
/* 页面标题样式 */
.aboutus-page-header {
    background: url('/static/picture/1aefa3_krtr.jpg') no-repeat center;
    height: 554px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 0px;
    font-size: 32px;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-family: Calibri;
    color:#5a5a5a;
}

.aboutus-page-header h1 {
    font-size: 36px;
    line-height: 1.5;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    letter-spacing: 10px;
}

.aboutus-page-header span {
    font-size: 32px;
    display: block;
    letter-spacing: 10px;
}

/* 公司详情样式 */
.company-detail {
    padding: 60px 0;
}
.company-detail hr{
    margin-top: 50px;
    margin-bottom: 50px;
}
.section-title {
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
    text-align: center;  /* 添加居中对齐 */
    font-size: 19px;
    letter-spacing: 3px;
    line-height: 140%;
    color: rgb(0, 0, 0);
    font-family: 微软雅黑;
    font-weight: 800;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;  /* 修改为居中定位 */
    transform: translateX(-50%);  /* 添加水平居中变换 */
    width: 100px;
    height: 2px;
    background-color: var(--basecolor);
}

.info-item {
    margin-bottom: 30px;
    display: flex;
}

.info-item .label {
    width: 120px;
    font-weight: bold;
    color: #333;
    flex-shrink: 0;
    font-family: "Microsoft YaHei";
    
    color: rgb(0, 0, 0);
}
.company-info >.info-item> .label {
    font-size: 26px;
    width: 300px;
}
.info-item .content {
    flex: 1;
    line-height: 1.8;
}

/* 客户logo样式 */
.client-logos {
    margin-top: 20px;
}

.client-group {
    margin-bottom: 30px;
}

.client-group h4 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #666;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    align-items: center;
}

.logo-grid img {
    max-width: 100%;
    height: auto;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.logo-grid img:hover {
    filter: grayscale(0%);
}

.contact-us {
    padding: 60px 0;
    background: #fff;
}

.contact-content {
    margin-top: 40px;
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

/* 左侧地图容器 */
.map-container {
    flex: 0 0 40%;
    height: 500px;
    background: #f8f8f8;
    border: 1px solid #eee;
}

/* 中间联系信息 */
.contact-info {
    flex: 0 0 35%;
    padding: 0 20px;
}

.company-name {
    margin-bottom: 30px;
}

.company-name h4 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}

.company-name .en-name {
    color: #666;
    font-style: italic;
    margin-bottom: 5px;
}

.company-name .website {
    color: var(--basecolor);
    font-weight: bold;
}

.office {
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f8f8;
    border-left: 4px solid var(--basecolor);
}

.office h5 {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
    font-weight: bold;
}

.office p {
    color: #666;
    margin-bottom: 8px;
    line-height: 1.6;
}

/* 右侧二维码 */
.qr-section {
    flex: 0 0 25%;
    text-align: center;
    padding: 30px 20px;
    background: #f8f8f8;
    border: 1px solid #eee;
}

.qr-section img {
    width: 180px;
    height: 180px;
    margin-bottom: 15px;
}

.qr-section p {
    color: #333;
    font-size: 16px;
    font-weight: bold;
}

.job-footer  a{
    color: #fff;
}
.job-center {
    padding: 60px 0;
    background: #fff;
}

.job-content {
    margin-top: 40px;
    display: flex;
    gap: 50px;
    margin-bottom: 50px;
}

/* 左侧表单样式 */
.job-form {
    flex: 0 0 45%;
    padding: 0px;
    background: #fff;
}

.job-form .form-group {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1px;
}

.job-form label {
    width: 100px;
    margin-bottom: 0;
    flex-shrink: 0;
    line-height: 34px;
    font-weight: bolder;
    font-size: 16px;
    font-family: "Microsoft YaHei";
    color: rgb(0, 0, 0);
    line-height: 275%;
    letter-spacing: 1px;
}

.job-form .form-control {
    flex: 1;
    border-radius: 0;
    border: 1px solid #ddd;
    height: 2.5em;
    margin-top: 5px;
}

.job-form button {
    margin-left: 100px;
    margin-top: 15px;
    width: 100px!important;

}
.job-form input{
    background-color:#f5f5f5 ;
}
.job-form textarea.form-control {
    min-height: 80px;
    background-color:#f5f5f5 ;
}

.job-form .form-control {
    border-radius: 0;
    border: 1px solid #ddd;
    padding: 8px 12px;
}

.job-form .btn {
    width: 100px;
    padding: 8px;
    font-size: 14px;
    font-weight: normal;
}

.job-form textarea.form-control {
    resize: none;
}

.job-form .btn {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    font-weight: bold;
}

/* 右侧职位列表样式 */
.job-list {
    flex: 0 0 65%;
}

.job-info .company-info {
    line-height: 1.8;
    color: #666;
}
.job-info .company-info p{
    font-size: 16px!important;
    line-height: 275%;
    color: rgb(0, 0, 0);
    font-family: "Microsoft YaHei";
    letter-spacing: 1px;
}
.job-info .company-info p:first-child{
    font-weight: bolder;
    font-size: 16px;
    font-family: "Microsoft YaHei";
    color: rgb(0, 0, 0);
    line-height: 275%;
    letter-spacing: 1px;
}
/* 职位列表样式 */
.job-categories {
    margin-top: 30px;
    border-top: 1px solid #eee;
    padding-top: 30px;
}

.job-categories h4 {
    font-size: 18px;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 0px solid var(--basecolor);
}

.job-content-wrapper {
    display: flex;
    gap: 30px;
}

.job-nav {
    flex: 0 0 25%;
    background: #f5f5f5;
    padding: 0;
}

.job-list-content {
    flex: 0 0 75%;
}

.job-items {
    margin-top: 0;
}

/* 职位导航样式 */
.job-nav {
    background: #f5f5f5;
    padding: 0;
}

.job-nav .nav-link {
    color: #333;
    padding: 15px 20px;
    font-size: 14px;
    border: none;
    background: #f5f5f5;
    margin-bottom: 1px;
}

.job-nav .nav-link:hover,
.job-nav .nav-link.active,.job-list-content .nav-link.active {
    color: #fff;
    background: var(--basecolor);
}

.job-items .job-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.job-link {
    color: #333;
    text-decoration: none;
    font-size: 14px;
}
.job-link .category {
    color: var(--basecolor);
}
.job-link:hover {
    color: var(--basecolor);
    text-decoration: none;
}

.job-date {
    color: #999;
    font-size: 14px;
}

.job-categories h4 {
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--basecolor);
}

/* 调整职位列表标题样式 */
.job-categories h4 {
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 0px solid var(--basecolor);
}

.job-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.job-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.job-link {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.job-link:hover {
    color: var(--basecolor);
    text-decoration: none;
}

.job-date {
    color: #999;
    font-size: 14px;
}

/* 分页和申请按钮样式 */
.job-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.pagination {
    margin-bottom: 0;
    justify-content: center !important;
}

.pagination .page-link,.pagination li{
    color: #333;
    border: 1px solid var(--basecolor);
    padding:0px;
    margin: 0 5px;
    min-width: 40px;
    text-align: center;
    background-color: transparent;
    font-size: 16px;
}

.pagination a{
    color: inherit;
    display: block;
    height: 35px;
    width: 35px;
    line-height: 35px;
}
.pagination span{
    display: block;
    height: 35px;
    width: 35px;
    line-height: 35px;
}
.pagination .page-link:hover ,.pagination li:hover {
    color: #fff!important;
    background-color: var(--basecolor);
}
.pagination .disabled,.pagination .active{
    color: #333!important;
    background-color: transparent;
    border: 1px solid #fff;
}
.pagination .disabled:hover,.pagination .active:hover{
    color: #333!important;
    background-color: transparent;
    border: 1px solid #fff;
}
.pagination .page-item.active .page-link{
    background-color: var(--basecolor);
    border-color: var(--basecolor);
    color: #fff;
}

.apply-btn {
    min-width: 150px;
    font-weight: bold;
    padding: 12px 30px;
}
.bg_w353_1_b{
    width: 100%;
}
.job-info-detail{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}
.job-info-detail .h88_pr,.job-info-detail .h88_left{
    width: 100%;
}
.job-info-detail .h88_right{
        display: flex;
    flex-direction: row;
    justify-content: center;
}
.job-info-detail .fz16_p2030,.job-info-detail .fz14_c666{
    color:#fff;
    border:none;
}
.job-item a,.job-list-content a{
    color: #333;
}
.lang.cur{
    color:rgb(157 155 155);
}
.lang.cur:hover{
    color:rgb(157 155 155);
}
.top-links li a:hover{
    color:rgb(90 90 90);
}
@media (max-width: 767px) {
  body {
    font-size: 14px;
    background-color: #d0d0d0;
  }
  nav{
    position: fixed!important;
  }
  nav .navbar-collapse,nav .navbar-nav,.navbar-nav .dropdown-menu {
    text-align: right;
    float: right;
    width: 100%!important;
  }
  nav .navbar-collapse{
    background-color: #fff;
  }
  .navbar .nav-item.tel{
    display: none;
  }
  .carousel-caption{
    top: 10%;
    left: 0%;
    width: 100% !important;
    transform: scale(0.5);
  }
  .container{
    width: 100%!important;
  }
  .team-info {
    width: 100vw!important;
    padding: 15px!important;
  }
  .advantages .content-wrapper{
        flex-direction: column;
  }
  .advantages .text-content,.advantages .cards-content{
    text-align: center!important;
    padding: 15px;
  }
  .advantages .text-content .btn{
    margin: 0 auto;
  }
  .advantages h2{
    text-align: center!important;
    position: relative;
  }
  .advantages h2:after{
        right: calc(50% - 48px);
  }
  .advantages .cards-grid{
    width: auto;
    gap: 0px;
  }
  footer .container,.contact-content{
    flex-direction: column-reverse;
    padding: 15px 20px;
  }
  .contact-content>div{
    min-height: 300px;
    width: 100%!important;
  }
  .company-info >.info-item> .label{
    display: none;
  }
  .company-info >.info-item .content{
     padding: 15px 20px;
  }
  .company-info >.info-item .content p img{
     width: 100%;
  }
  .job-content-wrapper,.job-center .job-content{
    flex-direction: column;
    padding: 15px 20px;
  }
  .job-content-wrapper .job-nav ul{
        flex-direction: row !important;
  }
  .job-categories h4{
    text-align: center;
  }
  .territoryico{
    width: 40%;
    font-size: 20px!important;
  }
  .territoryico img{
    padding: 15px;
  }
  .job-info-detail .lh30_pt15,.job-info-detail .fz24,.job-info-detail .fz16_p2030,.job-info-detail .fz14_c666{
    font-size: 9px;
    line-height: 14px;

  }
  .job-info-detail .title998{
    padding-top: 6px;
  }
  .job-info-detail .lh30_pt15{
    padding-top: 4px;
  }
  .job-info-detail .fz16_p2030{
       padding: 10px 5px 10px 5px;
  }
  .carousel-inner,.carousel-item,.carousel-caption{
    height: 300px;
  }
}