﻿/* 公用 */
* {
    padding: 0;
    margin: 0;
}

body {
    background-color: #f5f5f5;
}

body > div {
    height: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main {
    min-height: 100vh;
}

.rel-container {
    position: relative;
}

.rel-container {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out;
}

.rel-container.loaded {
    opacity: 1;
    visibility: visible;
}

a,
a:hover,
a:focus,
a:active,
a:link {
    display: block;
    text-decoration: none;
}

li {
    list-style: none;
}

img {
    object-fit: content;
}

.container.no-limit {
    width: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.image-container {
    width: 100%;
}

.image-container img {
    width: 100%;
    height: auto; /* 保持宽高比 */
    display: block; /* 去除 inline 空白 */
    max-width: 100%; /* 确保不溢出 */
}

.overlay-container {
    position: relative;
    display: inline-block;
    width: 100%;
}

.overlay-container img[class^="overlay-img"] {
    opacity: 0.5;
    transition: opacity 0.3s ease; /* 添加过渡效果 */
}

/* 鼠标移上去时变成不透明 */
.overlay-container img[class^="overlay-img"]:hover {
    opacity: 1;
}

/* 内存回收 */
.overlay-img1 {
    position: absolute;
    top: 6%;
    left: 1%;
    width: 30%;
}

/* GPU虚拟化 */
.overlay-img2 {
    position: absolute;
    top: 10%;
    left: 1%;
    width: 30%;
}

/* 智能带宽 */
.overlay-img3 {
    position: absolute;
    top: 14%;
    left: 1%;
    width: 30%;
}

/* 热迁移 */
.overlay-img4 {
    position: absolute;
    top: 18%;
    left: 1%;
    width: 30%;
}

/* 插件能力 */
.overlay-img5 {
    position: absolute;
    top: 22%;
    left: 1%;
    width: 30%;
}

.switch-img {
    display: none;
    position: absolute;
    top: 10.7%;
    left: 32%;
    width: 66%;
    opacity: 0.5;
}

/* 默认显示的 */
.switch-img.active {
    display: block;
    opacity: 1;
}

.third-grid {
    position: absolute;
    top: 32%;
    left: 6%;
    right: 6%;
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 列 */
    column-gap: 2%;
    row-gap: 8%;
    color: white;
}

.third-grid img {
    width: 30%;
    margin-bottom: 10px;
}

.third-grid span {
    font-size: clamp(9px, 2vw, 35px);
    font-weight: bold;
}

.fourth-grid {
    position: absolute;
    top: 22%;
    left: 6%;
    right: 6%;
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 列 */
    gap: 30px;
    color: white;
}

.fourth-grid img {
    width: 20%;
    margin-bottom: 10px;
}

.fourth-grid span {
    font-size: clamp(8.5px, 2vw, 35px);
    font-weight: bold;
}

.educate-grid {
    position: absolute;
    top: 18%;
    left: 6%;
    right: 6%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 90px;
    column-gap: 30px;
    color: white;
}

.educate-grid img {
    width: 20%;
    margin-bottom: 10px;
}

.educate-grid > div {
    display: flex;
    align-items: center; /* 垂直居中 */
    gap: 15px; /* 图片和文字之间间距 */
}

.educate-grid span {
    font-size: 35px;
    font-weight: bold;
}

.icons-grid {
    position: absolute;
    top: 38%;
    left: 2%; /* 调整位置，避免和“所有功能”重叠 */
    right: 2%; /* 调整位置，避免和“所有功能”重叠 */
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 列等宽 */
    grid-template-rows: repeat(7, 1fr); /* 7 行 */
    gap: clamp(5px, 1.5vw, 20px); /* 图片间距 */
    z-index: 10;
}

.icon-item {
    display: flex;
    align-items: center;
}

.icon-item img {
    width: 50%;
    height: auto;
}

.icon-item span {
    color: white;
    margin-left: 10px;
    font-size: clamp(4.5px, 1.5vw, 30px);
    font-weight: bold
}

.about-grid {
    position: absolute;
    top: 83%;
    left: 6%;
    right: 6%;
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* 左侧占 60% */
.about-left {
    flex: 6;
    font-size: clamp(8px, 1.5vw, 30px);
    font-weight: bold;
    color: white;
}

.about-left p {
    line-height: 1.8;
}

/* 右侧占 40% */
.about-right {
    flex: 4;
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: center;
}

.about-data {
    display: flex;
    align-items: center;
    gap: clamp(4px, 1.5vw, 15px);
    color: white;
}

.about-img {
    flex: 0 0 50px;
}

.about-img img {
    width: clamp(12px, 2vw, 50px);
    height: auto;
}

.marquee-wrapper {
    position: absolute;
    bottom: 3%;
    left: 0;
    width: 100%;
    overflow: hidden;
}

.marquee-track-two {
    display: inline-block;
    white-space: nowrap;
}

.marquee-track-two img {
    max-width: 20vw;
    margin: 0 40px;
    vertical-align: middle;
}


/* 表格样式 */
.pricing-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    text-align: center;
    font-size: 14px;
    color: white;
}

.pricing-table th, .pricing-table td {
    border: 1px solid #ccc;
    padding: 6px;
}

.pricing-table thead {
    background: #002b36;
    color: #ffffff;
}

/* 按钮样式 */
.pricing-table a.btn {
    font-size: 12px; /* 字体更小 */
    padding: 2px 8px; /* 内边距小一点 */
    border-radius: 15px; /* 圆角 */
    white-space: nowrap; /* 避免换行 */
}

.videos-modal {
    display: none; /* 默认隐藏 */
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* 半透明遮罩 */
}

.videos-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: black;
    padding: 0;
}

.videos-content video {
    display: block;
}

.videos-content .close {
    position: absolute;
    top: 0px;
    right: -30px;
    font-size: 15px;
    color: #fff;
    opacity: 1;
    cursor: pointer;
}

/* 跑马灯容器：覆盖在视频上方，可自行调 bottom 数值位置 */
.image-marquee {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 5%;
    overflow: hidden;
    z-index: 2;
}

.marquee-track {
    display: inline-flex;
    align-items: center;
    gap: 40px;
    will-change: transform;
    transform: translateX(0);
    white-space: nowrap;
}

.marquee-track img {
    height: 72px;
    flex: 0 0 auto;
    object-fit: contain;
    user-select: none;
    pointer-events: auto;
}

/* 可选：悬停时暂停（JS 会配合） */
.image-marquee.paused .marquee-track {
    transition: none;
}


.image-git {
    display: flex;
    align-items: center;
}

.links {
    display: none;
    margin-left: 20px;
}

.image-git:hover .links {
    display: block;
}


#partnerMarquee {
    position: absolute;
    top: 80%;
    left: 0;
    width: 100%;
    overflow: hidden;
}

/* 使用 ::before 和 ::after 做左右渐隐遮罩 */
#partnerMarquee::before,
#partnerMarquee::after {
    content: "";
    position: absolute;
    top: 0;
    width: 300px;
    height: 100%;
    z-index: 10;
    pointer-events: none; /* 不影响鼠标事件 */
}

#partnerMarquee::before {
    left: 0;
    background: linear-gradient(to right, black, transparent);
}

#partnerMarquee::after {
    right: 0;
    background: linear-gradient(to left, black, transparent);
}

.img_box {
    display: block;
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
}

.img_box > img {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}

/* 头部 */
/* 轮播项目 */
.header {
    position: relative;
}

.header > img {
    width: 100%;
}

.carousel-inner {
    width: 100%;
    height: 40vw;
}

.carousel-inner .item {
    width: 100%;
    height: 100%;
}

.carousel-inner .item > img {
    object-fit: fill;
    height: 100%;
    width: 100%;
}

.rotation_img_script {
    height: 64%;
    color: #fff;
    position: absolute;
    top: 20%;
    left: 0;
    right: 0;
}

.rotation_img_script h1 {
    font-size: 70px;
    margin: 0;
    line-height: 90px;
}

.rotation_img_script h2 {
    margin: 0;
    line-height: 45px;
}

.rotation_img_script h2:first-of-type {
    margin-top: 36px;
}

.rotation_img_btn {
    color: #fff;
    position: absolute;
    bottom: 0px;
    background-color: rgba(221, 42, 27, 1);
    border-radius: 6px;
    font-size: 20px;
    border: none;
    padding: 16px 42px;
}

.rotation_img_btn > img {
    margin-left: 5px;
    margin-bottom: 3px;
}

.rotation_img_btn:active {
    background-color: rgba(221, 42, 27, 0.8);
}

/* 轮播切换 */
.rotation_btn {
    font-size: 32px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.rotation_btn a {
    opacity: 0.8;
}

.rotation_btn a:active {
    opacity: 0.5;
}

.glyphicon-chevron-right,
.glyphicon-chevron-left {
    color: #fff;
    border: 1px solid #fff;
    border-radius: 50%;
    padding: 13px;
}

.rotation_btn_left {
    width: 60px;
    height: 60px;
    display: block;
    position: absolute;
    right: 95px;
    bottom: 0%;
    margin-bottom: 10%;
}

.rotation_btn_right {
    width: 60px;
    height: 60px;
    display: block;
    position: absolute;
    right: 15px;
    bottom: 0%;
    margin-bottom: 10%;
}


/* 容器固定右侧中间 */
#assistant-icons {
    position: fixed;
    top: 50%;
    right: 0px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

/* 单个图标 */
.assistant-icon {
    position: relative;
}

.assistant-icon img {
    width: 50px;
    height: 50px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

/* 悬停动画 */
.assistant-icon:hover img {
    transform: scale(1.2) rotate(-10deg);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    animation: none;
}

/* 漂浮动画 */
@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

/* 二维码样式 */
.assistant-icon .qr-code {
    position: absolute;
    right: 60px; /* 图标左侧距离 */
    top: 50%;
    transform: translateY(-50%);
    display: none; /* 默认隐藏 */
    background: #fff;
    padding: 5px;
    border-radius: 6px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.assistant-icon .qr-code img {
    width: 150px;
    height: 150px;
}


/* 导航条 */
.nav-menu {
    position: relative;
    z-index: 999;
}

nav {
    position: absolute;
    top: 30px;
    left: 30px;
    right: 30px;
    height: 80px;
    /*background-color: #fff;*/
    padding: 20px 36px 0;
    border-radius: 6px;
    display: flex;
}

nav .logo {
    width: 20%;
    height: 40px;
}

nav .logo a {
    display: inline-block;
}

nav .logo a img {
    height: 40px;
}

nav .nav {
    display: flex;
    height: 40px;
}

nav .nav h4 {
    display: inline-block;
}

nav .nav > li > a {
    color: white;
}

nav .nav > li > a:hover,
nav .nav > li > a:active,
nav .nav > li > a:focus {
    background-color: #0000;
}

#slidingLine {
    position: absolute;
    bottom: 27px;
    background-color: #dd2a1b;
    height: 3px;
    pointer-events: none;
}

nav .submenu {
    position: absolute;
    top: 10px;
    left: 5px;
    display: none;
    padding: 20px 14% 50px;
    border-radius: 6px;
    transition: all 0.2s;
}

nav .submenu > li {
    float: none;
    margin: 0;
    display: block;
}

nav .nav-link.on {
    height: 60px;
}

nav .submenu a {
    color: white;
    white-space: nowrap;
}

nav .submenu > li > h4 {
    font-weight: 600;
}

nav .submenu > li > ul > li {
    line-height: 2.3
}

nav .submenu > li > ul > li > a {
    display: contents;
}

nav .search {
    margin-left: auto;
    position: relative;
}

nav .search input {
    border: 1px solid #ececec;
    border-radius: 6px;
    line-height: normal;
    width: 256px;
    padding: 7px;
    padding-inline-start: 10px;
    padding-inline-end: 36px;
}

nav .search input:focus {
    border-color: #66afe9;
    outline: 0;
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%), 0 0 8px rgb(102 175 233 / 60%);
}

nav .search img {
    position: absolute;
    right: 0;
    top: 0;
    padding: 7px 8px;
}

.listnav {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
}

.title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.deep_header {
    position: absolute;
    bottom: 70px;
    left: 0;
    right: 0;
}

.button-container {
    position: absolute;
    top: 80%;
    left: 65%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.deep_jump {
    position: absolute;
    bottom: 20px; /* 离图片底部上方 20px */
    left: 50%; /* 水平居中 */
    transform: translateX(-50%); /* 水平居中 */
    display: block;
}

.video-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.video-content {
    position: relative;
    margin: 10% auto;
    padding: 10px;
    width: 640px;
    background: #fff;
    border-radius: 10px;
    z-index: 10000;
}

.video-content video {
    width: 100%;
    height: auto;
}

.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.title h1 {
    font-size: 42px;
    line-height: 70px;
    color: #fff;
    margin: 0;
}

.breadcrumb {
    padding: 0px;
    margin-bottom: 30px;
    background: none;
    color: #fff;
}

.breadcrumb a {
    display: contents;
    color: #fff;
}

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

/* 主体 */
.index .main_header {
    text-align: center;
    background-color: #fff;
}

.index h1 {
    font-size: 38px;
    margin-top: 65px;
    margin-bottom: 0px;
    font-weight: 600;
}

.index span {
    display: inline-block;
    width: 100px;
    height: 2px;
    background-color: red;
    margin-top: 20px;
}

.index h6 {
    font-size: 14px;
    margin-top: 26px;
    margin-bottom: 56px;
}

.index .main_list {
    background-color: rgba(245, 245, 245, 1);
    border-radius: 6px;
}

.index .main_list img {
    width: 46px;
    height: 46px;
    margin: 20px auto 10px;
}

.index .main_list div {
    padding: 10px;
    width: 100%;
}

.index .main_list a {
    font-size: 18px;
    line-height: 50px;
    background-color: #fff;
    color: #000;
    text-decoration: none;
    border-radius: 6px;
}

.index .main_header > div > a {
    display: inline-block;
    margin: 60px auto;
    border-radius: 6px;
}

.index .main_header button {
    padding: 16px 42px;
    background-color: #dd2a1b;
    font-size: 20px;
    color: #fff;
    border: none;
    border-radius: 6px;
}

.index .main_header button:active {
    background-color: rgba(221, 42, 27, 0.8);
}

.index .main_services {
    text-align: center;
    position: relative;
}

.index .main_services_row {
    margin-bottom: 100px;
}

.index .services-list {
    position: relative;
}

.index .services-list > img {
    width: 100%;
}

.index .services-list a:hover .services-icon {
    background-color: rgba(0, 0, 0, 0);
}

.index .services-icon {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.index .services-icon div {
    width: 72px;
    height: 72px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-top: -23px;
}

.index .services-icon p {
    margin-top: 23px;
    font-size: 18px;
}

.index .main_services_row > div :nth-child(5) .services-icon p {
    margin-top: 10px;
    font-size: 18px;
}

/* 新闻动态 */
.index .main_news {
    text-align: center;
    position: relative;
    background-color: #fff;
}

.index .main_news_row {
    margin-top: 50px;
    margin-bottom: 100px;
}

.index .news_list {
    border-radius: 6px;
    box-shadow: 0px 0px 30px 0px rgb(0 0 0 / 6%);
    position: relative;
}

.index .news_list > img {
    width: 100%;
    object-fit: cover;
    height: 20vh;
}

.index .news_list > h6 {
    font-size: 16px;
    text-align: left;
    line-height: 26px;
    margin: 12px;
    height: 52px;
    overflow: hidden;
}

.index .news_list > h6 > a {
    color: #000;
}

.index .news_list > p {
    display: inline-block;
    color: #666;
    font-size: 14px;
    text-align: left;
    margin: 0px 12px 20px;
    height: 60px;
    overflow: hidden;
}

.index .news_list > i {
    display: block;
    width: 98%;
    height: 3px;
    background-color: #dd2a1b;
    opacity: 0.19;
    position: absolute;
    bottom: 2px;
    left: 1%;
    right: 1%;
}

.index .news_time {
    position: absolute;
    top: 3%;
    left: 3%;
    color: #fff;
}

.index .news_time p {
    height: 46px;
    width: 70px;
    font-size: 30px;
    background-color: red;
    line-height: 46px;
    margin-bottom: 0px;
}

.index .news_time span {
    display: inline-block;
    height: 22px;
    width: 70px;
    line-height: 22px;
    background-color: #000;
    margin-top: 0px;
}

/* 合作伙伴 */
.index .main_partner {
    text-align: center;
    position: relative;
}

.index .main_partner_row {
    margin-top: 50px;
    margin-bottom: 60px;
}

.index .partner_list {
    border-radius: 6px;
    height: 80px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.index .partner_list a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.index .partner_list img {
    max-width: 100%;
}

/* 底部 */
.footer {
    background-color: black;
    color: #fff;
}

.footer_top {
    margin-top: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer_top > ul {
    width: 40%;
}

.footer_top > ul > li {
    margin-bottom: 20px;
}

.footer_top p {
    margin: 0;
    margin-top: 15px;
    line-height: 24px;
}

.footer_top_logo {
    width: 150px;
    height: auto;
}

.footer_top_code {
    width: 200px;
    height: auto;
}

.footer_top a {
    display: inline-block;
}

.footer_top .right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer_top .right a img {
    width: 210px;
}

.footer_top .phone img {
    width: 30px;
    margin-right: 10px;
}

/* 最底部 */
.footer_bottom {
    background-color: black;
}

/*.footer_bottom p {*/
/*    padding: 15px 0px;*/
/*    margin: 0;*/
/*    text-align: center;*/
/*}*/
.footer_bottom a {
    display: inline; /* 确保是内联元素 */
    color: #fff; /* 设置文本颜色为白色 */
}

/*.footer_bottom .honour {*/
/*    display: flex;*/
/*    !*align-items: center;*!*/
/*    !*justify-content: center;*!*/
/*    margin-bottom: 15px;*/
/*}*/
/* 容器使用 Flex 布局，左右排列，垂直居中 */
.footer-container {
    display: flex;
    align-items: center; /* 垂直居中 */
    justify-content: flex-start; /* 左对齐，链接在左，文字在右 */
    gap: 20px; /* 左右元素之间的间距 */
}

/* 可选：美化 span 文字 */
.power-service {
    font-size: 14px;
    color: white;
    /*padding-left: 280px;*/
    text-align: center;
}

.footer_bottom .honour a {
    display: inline-block;
    height: 32px;
    background-image: url('../image/phone_list20190617.png');
    text-indent: -99em;
}

.footer_bottom .honour a:not(:last-child) {
    margin-right: 1rem;
}

.footer_bottom .honour a:first-child {
    width: 86px;
    background-position: 0 -387px;
}

.footer_bottom .honour a:nth-child(2) {
    width: 102px;
    background-position: 0 -429px;
}

.footer_bottom .honour a:last-child {
    width: 114px;
    background-position: 0 -155px;
}

/* 教育服务页面 */
.service .main_header {
    margin: 46px auto;
}

.service .main_header > div {
    position: relative;
}

.service .main_header p {
    font-size: 16px;
    line-height: 2;
    margin: 0;
}

.service .main_header button {
    position: absolute;
    top: 10px;
    right: 15px;
    color: #fff;
    padding: 10px 32px;
    background-color: #DD2A1B;
    border-radius: 6px;
    border: none;
}

.main_header button:active {
    opacity: 0.5;
}

.main_advantage {
    background-color: #fff;
}

.main_advantage > div > div {
    margin-top: 50px;
    margin-bottom: 22px;
}

.main_advantage_list {
    height: 145px;
    display: flex;
    align-items: flex-start;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.06);
    border-radius: 6px;
    position: relative;
    margin-bottom: 40px;
}

.main_advantage_list i {
    position: absolute;
    bottom: 0px;
    left: 1%;
    right: 1%;
    width: 98%;
    height: 3px;
    background-color: #DD2A1B;
    opacity: 0.19;
    margin-bottom: 1px;
}

.main_advantage_item_img {
    min-width: 100px;
    text-align: center;
    margin-top: 32px;
}

.main_advantage_item h4 {
    font-weight: 600;
    margin-top: 32px;
}

.main_advantage_item p {
    line-height: 24px;
    margin-top: 14px;
    color: #666;
    margin-bottom: 32px;
    margin-right: 40px;
}

.main_courseoverview {
    position: relative;
}

.main_courseoverview img {
    width: 100%;
}

.main_courseoverview > div {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    text-align: center;
}

.main_courseoverview > div h1 {
    font-size: 38px;
    font-weight: 600;
    margin-top: 50px;
}

.main_courseoverview > div p {
    width: 900px;
    text-align: left;
    margin: auto;
    font-size: 16px;
    line-height: 2;
    margin-top: 30px;
    margin-bottom: 60px;
}

.main_teachingobjectives {
    background-color: #fff;
}

.main_teachingobjectives > div > h1 {
    font-size: 38px;
    font-weight: 600;
    margin-top: 60px;
    margin-bottom: 18px;
    text-align: center;
}

.main_teachingobjectives > div > h4 {
    font-size: 16px;
    text-align: center;
    margin-bottom: 115px;
}

.main_teachingobjectives_list {
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.06);
    border-radius: 6px;
    height: 220px;
    position: relative;
    margin-bottom: 90px;
}

.main_teachingobjectives_list > h1 {
    color: #fff;
    font-family: D-DIN;
    font-weight: normal;
    font-size: 60px;
    width: 118px;
    height: 118px;
    background-color: #DD2A1B;
    text-align: center;
    line-height: 118px;
    border-radius: 50%;
    position: absolute;
    top: -59px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.main_teachingobjectives_list > p {
    position: absolute;
    top: 106px;
    margin: 0 42px;
    font-size: 16px;
    line-height: 26px;
}

.main_applications > div > h1 {
    font-size: 38px;
    font-weight: 600;
    text-align: center;
    margin: 66px auto 40px;
}

.main_applications_list {
    display: flex;
    background-color: #fff;
    padding: 22px 47px;
    margin-bottom: 94px;
}

.main_applications_list > img {
    min-width: 147px;
    height: 136px;
}

.main_applications_list > div {
    margin-left: 32px;
}

.main_applications_list > div h3 {
    font-weight: 600;
}

.main_applications_list > div p {
    line-height: 2;
}

.service .main_bottom {
    background-color: #fff;
    padding-top: 66px;
    padding-bottom: 100px;
}

.service .main_bottom button {
    display: block;
    margin: 0 auto;
    color: #fff;
    font-size: 24px;
    background-color: #DD2A1B;
    border-radius: 6px;
    padding: 8px 52px;
    border: none;
}

.service .main_bottom button:active {
    opacity: 0.5;
}

/* 解决方案页面 */
.plan > div h1 {
    font-weight: 600;
    font-size: 38px;
    margin-top: 40px;
    text-align: center;
}

.plan > div h3 {
    text-align: center;
    margin-bottom: 36px;
}

.plan .content {
    background-color: #fff;
    padding-top: 42px;
    padding-bottom: 42px;
}

.plan .content > div > p {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 30px;
}

.plan .content > div > img {
    width: 100%;
    margin-bottom: 42px;
}

.plan .laboratory {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.plan .laboratory div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 0, 0, 0.32);
    transform: translateY(500px);
    transition: 0.3s;
}

.plan .laboratory div > p {
    font-size: 1.2vw;
    color: #fff;
    margin: 15% 20px auto;
}

.plan .laboratory img {
    width: 100%;
}

.plan .laboratory:hover div {
    transform: translateY(0px);
}

/* 示范案例页面 */
.case {
    padding-top: 69px;
    padding-bottom: 69px;
    background-color: #fff;
}

.case > div {
    display: flex;
    position: relative;
}

.nav-tab {
    border-right: 1px solid #ECECEC;
    font-size: 16px;
    font-weight: 600;
    min-width: 150px;
}

.nav-tab > li {
    line-height: 50px;
    text-indent: 15px;
    background-color: #f9f9f9
}

.nav-tab > li > a {
    font-size: 14px;
    padding: 0;
    color: #000;
}

.nav-tab > li > a > img {
    position: absolute;
    top: 21px;
    right: 20px;
    display: none;
}

.nav-tab > .active {
    background-color: #f9f9f9;
}

.nav-tab > .active > a,
.nav-tab > .active > a > img {
    display: block;
    color: #DD2A1B;
    cursor: default;
}

.case .tab-content {
    width: 100%;
}

.case .tab-pane {
    margin-left: 54px;
}

.case .tab-pane .nav > li {
    margin-right: 10px;
}

.case .tab-pane .nav > li > a {
    color: #000;
    padding: 6px 21px;
}

.case .nav-pills {
    position: relative;
}

.case .nav-pills > li.active > a,
.case .nav-pills > li.active > a:focus,
.case .nav-pills > li.active > a:hover {
    color: #fff;
    background-color: #DD2A1B;
}

.case .form-control {
    width: 280px;
    height: 32px;
    position: absolute;
    right: 0;
}

.case .content .tab-pane {
    margin-left: -15px;
    margin-top: 30px;
}

.case .content .tab-pane > div {
    margin-bottom: 50px;
}

.case .content .tab-pane img {
    width: 100%;
    height: 25vh;
    object-fit: cover;
}

.case .content .tab-pane h4 {
    margin: 20px auto 10px;
}

.case .content .tab-pane h4 a {
    color: #000;
    display: inline-block;
}

.case .content .tab-pane p {
    font-size: 12px;
    color: #666;
    margin: 0;
}

.pagination {
    display: flex;
    justify-content: center;
    margin: 30px auto 60px;
}

.pagination li {
    margin: 0 5px;
}

.pagination a {
    margin: 0 5px;
    background-color: #f5f5f5;
    display: block;
    text-align: center;
    height: 40px;
    width: 40px;
    line-height: 38px;
    color: black;
    border-radius: 6px;
    padding: 0;
    border: 1px solid #ddd;
}

.pagination a:first-child,
.pagination a:last-child {
    width: 80px;
}

.pagination a.active,
.pagination a:hover {
    background-color: #dd2a1b;
    color: white;
    border: 1px solid #dd2a1b;
}

/* 示范案例详情页面 */
.cases .main_top {
    padding-top: 42px;
    padding-bottom: 58px;
}

.cases .main_top > div {
    display: flex;
}

.schoolbadge {
    height: 180px;
    width: 180px;
    background-color: #FFF;
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
}

.schoolbadge img {
    max-width: 80%;
}

.schoolinformation {
    margin-left: 45px;
}

.schoolinformation h3 {
    font-weight: 600;
    margin: 10px auto;
}

.schoolinformation p {
    color: #555;
    line-height: 2;
}

.schoolinformation h6 {
    font-size: 14px;
    line-height: 2;
    color: #000;
}

.cases .main_bottom {
    background-color: #fff;
    padding-top: 50px;
    padding-bottom: 50px;
}

.cases .main_bottom img {
    width: 100%;
}

.cases .content h1 {
    font-size: 38px;
    margin-top: 50px;
    margin-bottom: 10px;
}

.cases .content p {
    line-height: 2;
    margin-bottom: 20px;
}

/* 教育与研究-协同育人页面 */
.researcha {
    background-color: #fff;
    padding: 80px 0;
}

.researcha > div {
    display: flex;
}

.researcha > div img {
    width: 650px;
    height: 500px;
}

.researcha .content {
    margin-left: 86px;
}

.researcha .content h1 {
    font-size: 38px;
    font-weight: 600;
    color: #000;
    line-height: 53px;
    margin: 0 0 13px 0;
}

.researcha .content h2 {
    color: #000;
    line-height: 42px;
    margin: 0 0 38px 0;
}

.researcha .content p {
    font-size: 16px;
    line-height: 2;
}

/* 教育与研究-科技赋能页面 */
.researchb .main_top {
    padding-top: 69px;
    background-color: #fff;
}

.researchb .main_top h1 {
    font-weight: 600;
    font-size: 38px;
    text-align: center;
    margin: 0 auto 24px;
}

.researchb .main_top p {
    font-size: 16px;
    line-height: 2;
    padding-bottom: 24px;
}

.researchb .main_bottom > div {
    padding-left: 100px;
    padding-right: 100px;
}

.researchb .main_bottom h4 {
    margin: 43px auto 52px;
    text-align: center;
}

.researchb .main_bottom ul {
    width: 100%;
    height: 1px;
    border: 1px solid #DCDCDC;
    display: flex;
    justify-content: space-between;
    margin: 120px auto 154px;
}

.researchb .main_bottom ul li {
    text-align: center;
    position: relative;
    width: 88px;
    height: 88px;
    border-radius: 50%;
    color: #fff;
}

.researchb .main_bottom ul li {
    width: 34px;
    height: 34px;
    padding-top: 7px;
    top: -17px;
    font-family: D-DIN, D;
}

.researchb .main_bottom ul li:nth-of-type(1) {
    width: 88px;
    height: 88px;
    background-color: #00DAFF;
    padding-top: 24px;
    top: -44px;
    letter-spacing: 2px;
}

.researchb .main_bottom ul li:last-of-type {
    width: 88px;
    height: 88px;
    background-color: #DD2A1B;
    padding-top: 24px;
    top: -44px;
    letter-spacing: 2px;
}

.researchb .main_bottom ul li:nth-of-type(2) {
    background-color: #0098FF;
}

.researchb .main_bottom ul li:nth-of-type(3) {
    background-color: #004CFF;
}

.researchb .main_bottom ul li:nth-of-type(4) {
    background-color: #3900FF;
}

.researchb .main_bottom ul li:nth-of-type(5) {
    background-color: #8700FF;
}

.researchb .main_bottom ul li:nth-of-type(6) {
    background-color: #FF00DE;
}

.researchb .main_bottom ul span {
    width: 112px;
    color: #666;
    position: absolute;
    left: -38px;
}

.researchb .main_bottom ul li:nth-of-type(2) span {
    top: -36px;
}

.researchb .main_bottom ul li:nth-of-type(3) span {
    top: 48px;
}

.researchb .main_bottom ul li:nth-of-type(4) span {
    top: -56px;
}

.researchb .main_bottom ul li:nth-of-type(5) span {
    top: 48px;
}

.researchb .main_bottom ul li:nth-of-type(6) span {
    top: -56px;
}

/* 教育与研究-师资研修页面 */
.researchc {
    background-color: #fff;
}

.researchc > div h1 {
    font-weight: 600;
    font-size: 38px;
    text-align: center;
    margin: 69px auto 66px;
}

.researchc .content {
    margin-bottom: 122px;
    display: flex;
}

.researchc .content img {
    margin-top: 7px;
    width: 650px;
    height: 350px;
}

.introduction {
    margin-left: 83px;
}

.introduction p {
    font-size: 16px;
    line-height: 2;
}

/* 合作与生态页面 */
.cooperate {
    background-color: #fff;
    padding-top: 50px;
    padding-bottom: 60px;
}

.cooperate .list {
    position: relative;
    background-color: #fff;
    box-shadow: 0px 0px 30px 0px rgb(0 0 0 / 6%);
    overflow: hidden;
}

.cooperate .list h2 {
    margin: 32px auto;
    text-align: center;
    font-weight: 600;
}

.cooperate .item {
    margin: 0 40px;
}

.cooperate .list img {
    width: 100%;
    margin-bottom: 25px;
}

.cooperate .list p {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 20px;
}

.cooperate .list button {
    margin: 35px auto 55px;
    display: block;
    color: #fff;
    padding: 10px 32px;
    background-color: #DD2A1B;
    border: none;
    border-radius: 6px;
}

.cooperate .list button:active {
    background-color: rgba(221, 42, 27, 0.8);
}

.cooperate .list i {
    width: 98%;
    height: 3px;
    background-color: #DD2A1B;
    opacity: 0.19;
    margin-bottom: 2px;
    position: absolute;
    bottom: 0;
    left: 1%;
    right: 1%;
}

/* 合作与生态-伙伴新闻页面 */
.cooperate_new {
    /*background-color: #fff;*/
    padding: 0 100px; /* 左右边距各 100px */
    padding-top: 50px;
    padding-bottom: 60px;
}

.cooperate_new .list {
    margin: 30px auto;
    display: flex;
    flex-direction: column;
    gap: 40px; /* 每条新闻间隔 */
}

.cooperate_new .item {
    margin-bottom: 42px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.cooperate_new .item.reverse {
    flex-direction: row-reverse; /* 文字在左，图片在右 */
}

.cooperate_new .item img {
    width: 500px;
    max-width: 40%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.cooperate_new .item .content {
    flex: 1;
    margin-left: 37px;
    color: white;
}

.cooperate_new .item.reverse .content {
    margin-left: 0;
    margin-right: 37px; /* 反向时把间距切换到右边 */
}

.cooperate_new > div h1 {
    font-weight: 600;
    font-size: 38px;
    margin: 0;
    text-align: center;
    padding-bottom: 30px;
    border-bottom: 1px solid #ECECEC;
}

.cooperate_new .date {
    display: flex;
    align-items: center;
    line-height: 28px;
    margin-bottom: 13px;
    color: #f0f0f0;
    font-size: 20px;
}

/* .cooperate_new .date img:last-of-type {
    margin-left: 25px;
} */
.cooperate_new .date span {
    font-family: PingFangSC-Regular, PingFang SC;
    margin-left: 30px;
    color: #f0f0f0;
}

.cooperate_new .content h3 {
    margin: 0 0 13px 0;
}

.cooperate_new .content p {
    color: white;
    line-height: 2;
    margin: 0 0 13px 0;
    font-size: 20px
}

.cooperate_new .content button {
    color: #DD2A1B;
    border-radius: 6px;
    border: 1px solid #DD2A1B;
    padding: 9px 31px;
    /*background-color: #fff;*/
}

.cooperate_new .content button:active {
    opacity: 0.5;
}

/* 合作与生态 伙伴新闻 详情 */
.cooperate_news {
    background-color: #fff;
    padding-top: 50px;
    padding-bottom: 60px;
}

.cooperate_news > div h2 {
    font-weight: 600;
    margin: 0;
    color: #000;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 1px solid #ECECEC;
}

.cooperate_news > div h2 p {
    font-family: PingFangSC-Regular, PingFang SC;
    margin-top: 17px;
    font-size: 18px;
    color: #666;
    line-height: 2;
}

.cooperate_news > div h2 p span {
    margin-left: 30px;
}

.cooperate_news .content {
    margin: 40px auto 36px;
}

.cooperate_news .content img {
    width: 60%;
    display: block;
    margin: 0 auto;
    margin-bottom: 78px;
}

.cooperate_news .content p {
    font-size: 16px;
    color: #000;
    line-height: 32px;
}

/* 关于我们页面 */
/* 导航栏 */
.nav-bar {
    background-color: #fff;
    border-bottom: 1px solid #ECECEC;
}

.nav-bar .nav {
    display: flex;
    justify-content: center;
}

.nav-bar .nav > li {
    width: 20%;
}

.nav-bar .nav > li > a {
    font-size: 16px;
    padding: 14px 15px;
    text-align: center;
    color: #000;
    background-color: #F5F5F5;
}

.nav-bar .nav > li.active > a,
.nav-bar .nav > li.active > a:focus,
.nav-bar .nav > li.active > a:hover {
    cursor: default;
    color: #fff;
    background-color: #DD2A1B;
}

/* 首页 */
.home_row {
    display: flex;
    align-items: center; /* 垂直居中 */
    justify-content: space-between; /* 左边是文本，右边是图片 */
    margin-bottom: 20px; /* 设置每个项的下方间距 */
}

.text {
    /* 如果需要，可以设置文本的样式 */
    margin-right: 10px; /* 设置文本和图片之间的间距 */
}

.image {
    margin-left: auto; /* 将图片推到右边 */
    margin-right: 150px; /* 设置图片距离右边的间距为30px */
}

.image img {
    width: 100%; /* 设置图片宽度 */
    height: auto; /* 保持图片比例 */
}

.home_bottom_link a {
    text-decoration: none; /* 去掉默认的下划线 */
    color: black; /* 设置字体颜色 */
}

.home_bottom_link a:hover {
    text-decoration: underline; /* 鼠标悬停时显示下划线 */
    color: blue;
}

.home_bottom_link a h3 {
    text-align: left; /* 设置文字靠左 */
}

.home_bottom_link ul {
    margin-bottom: 30px; /* 为每个 ul 元素增加上下间距 */
    padding: 0; /* 移除 ul 默认的 padding */
}

.companyprofile {
    background-color: #fff;
    padding-top: 50px;
    padding-bottom: 66px;
}

.about > div h1 {
    font-size: 2vw;
    font-weight: 600;
    margin: 0;
    margin-bottom: 15px;
}

.about > div small {
    font-size: 28px;
    font-weight: 600;
    text-transform: uppercase;
}

.position {
    display: flex;
    justify-content: space-between;
}

.companyprofile p {
    line-height: 28px;
}

.companyprofile h4 {
    font-weight: 600;
    line-height: 25px;
}

.middle-image {
    width: 100%;
}

.companybrand {
    background-color: #fff;
    padding-top: 72px;
    padding-bottom: 82px;
}

.companybrand p {
    text-align: center;
    line-height: 22px;
    margin: 0;
}

.companybrand img {
    width: 100%;
    display: block;
    margin: auto;
    margin-bottom: 38px;
}

.right-border {
    border-right: 1px solid #ECECEC;
}

.project {
    margin: 90px auto;
}

.developmentpath {
    background-color: #fff;
    padding-top: 85px;
    padding-bottom: 91px;
}

.time {
    margin-right: -1px;
    text-align: right;
    padding-bottom: 30px;
    border-right: 1px solid #ECECEC;
}

.time h3 {
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 0;
}

.time .time_top {
    margin-top: 0;
}

.time p {
    margin: 0;
    color: #666;
    margin-right: 5px;
    line-height: 2;
}

.event {
    border-left: 1px solid #ECECEC;
    padding-bottom: 30px;
}

.event i {
    width: 11px;
    height: 11px;
    background-color: #DD2A1B;
    position: absolute;
    top: 8px;
    left: -6px;
    border-radius: 50%;
}

.event p {
    margin: 0;
    margin-left: 30px;
    line-height: 2;
}

/* 管理与服务团队页面 */
.manage {
    background-color: #fff;
    padding-top: 50px;
}

.postcard {
    padding: 20px;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.06);
    border-radius: 6px;
    margin-bottom: 40px;
}

.postcard > p {
    margin-top: 16px;
    margin-bottom: 25px;
    color: #666;
    height: 240px;
    overflow: hidden;
}

.postcard > img {
    position: absolute;
    bottom: 60px;
}

.personal {
    display: flex;
    align-items: center;
}

.photo {
    height: 80px;
    min-width: 80px;
    width: 80px;
    display: inline-block;
    border-radius: 50%;
    background-color: #d8d8d8;
    overflow: hidden;
}

.photo img {
    height: 100%;
}

.name {
    margin-left: 20px;
}

.name h3 {
    margin: 0;
}

.name span {
    color: #666;
}

/* 海文荣誉页面 */
.honor {
    background-color: #fff;
    padding-top: 50px;
    padding-bottom: 40px;
}

.col-sm-2dot4 {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}

@media (min-width: 992px) {
    .col-sm-2dot4 {
        float: left;
    }

    .col-sm-2dot4 {
        width: 20%;
    }

    .col-sm-pull-2dot4 {
        right: 20%;
    }

    .col-sm-push-2dot4 {
        left: 20%;
    }

    .col-sm-offset-2dot4 {
        margin-left: 20%;
    }
}

.col-sm-2dot4 {
    margin-bottom: 40px;
}

.honor img {
    width: 100%;
}

/* 公司愿景页面 */
.companyvision {
    background-color: #fff;
    padding-top: 50px;
    padding-bottom: 80px;
}

.companyvision > div {
    position: relative;
}

.companyvision img {
    width: 100%;
}

.companyvision h1 {
    font-size: 42px;
    color: #fff;
    display: block;
    position: absolute;
    top: 40%;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
}

/* 加入我们 */
.join {
    background-color: #fff;
}

.join table {
    width: 100%;
}

.join table tr td {
    font-size: 16px;
    padding: 36px 0px;
    border-bottom: 1px solid #ccc;
    color: #333;
}

.join table tr td:nth-child(1) {
    width: 48%;
    padding-left: 50px;
}

.join table tr td:nth-child(2) {
    width: 19%;
}

.join table tr td:nth-child(3) {
    width: 17%;
}

.join table tr td:nth-child(4) {
    width: 16%;
    padding-right: 50px;
}

.join table tr td:nth-child(1) h4 {
    display: inline-block;
    font-size: 16px;
    margin: 0;
    font-weight: 600;
}

.join table tr td:nth-child(4) a {
    display: inline-block;
    padding: 0 30px;
    line-height: 38px;
    color: #333;
    border: 1px solid #333;
}

.join table tr td:nth-child(4) a:hover {
    background: #f54b4c;
    color: #fff;
    border: 1px solid #fff;
}

/* 加入我们详情 */
.join .row > div {
    margin-top: 60px;
    margin-bottom: 60px
}

.join .row h1 {
    margin: 0;
    font-size: 4rem;
    font-weight: bold;
}

.join .row p {
    margin: 0;
    margin-top: 24px;
    line-height: 1.7;
}

.join .row h4 {
    margin: 0;
    margin-top: 30px;
    font-weight: bold;
}

.join .join-one h4 {
    color: #f54b4c;
    font-weight: 100;
}

.join .row > div > div {
    border-bottom: 1px solid #333;
    padding-bottom: 40px;
}

.join .row > div a {
    margin-top: 36px;
    margin-bottom: 10px;
    text-align: center;
    line-height: 4rem;
    color: #333;
    border: 1px solid #333;
}

.join .row > div a:hover {
    color: #fff;
    background: #f54b4c;
    border: 1px solid #f54b4c;
}

.join-two ul {
    margin-top: 20px;
    padding-left: 20px;
}

.join-two ul > li {
    list-style: initial;
    line-height: 3rem;
}

/* 海文人才 */
.rencai {
    background-color: #eee;
}

.interest {
    background-color: #fff;
    padding-top: 70px;
    padding-bottom: 70px;
}

.interest img {
    width: 100%;
}

.interest p {
    color: #333;
    text-align: center;
    margin: 20px auto 0;
}

.youzhiqiye > div {
    height: 55vh;
    background: url(../image/131.jpg) no-repeat center;
}

.youzhiqiye > div h3 {
    margin: 0;
    font-weight: bold;
    margin-top: 25vh;
    margin-left: 15vw;
}

.youzhiqiye > div p {
    line-height: 30px;
    color: #000;
    margin: 0;
    margin-top: 30px;
    margin-left: 15vw;
}

.online {
    background-color: #2d2d2d;
}

.online > div {
    height: 50vh;
    background: url(../image/132.jpg) no-repeat center;
    color: #fff;
}

.online > div h3 {
    font-size: 28px;
    font-weight: bold;
    margin: 0;
    margin-top: 6%;
    margin-left: 60%;
}

.online > div p {
    margin: 0;
    margin-top: 2%;
    line-height: 1.5em;
    margin-left: 60%;
}

.online > div span {
    font-weight: bold;
}

.lietoufuwu {
    height: 50vh;
    background: url(../image/133.jpg) no-repeat center;
    color: #fff;
}

.lietoufuwu > div h3 {
    margin: 0;
    font-weight: bold;
    margin-top: 18vh;
    margin-left: 10vw;
}

.lietoufuwu > div p {
    line-height: 30px;
    margin: 0;
    margin-top: 30px;
    margin-left: 10vw;
}

.oneToOne {
    background-color: #fff;
    text-align: center;
    color: #000;
}

.oneToOne > div {
    padding: 70px 0;
}

.oneToOne > div h2 {
    margin: 0;
    font-size: 28px;
    font-weight: bold;
}

.oneToOne > div p {
    margin: 0;
    line-height: 24px;
    margin-top: 33px;
}

.oneToOne .row {
    margin-top: 60px
}

.oneToOne img {
    width: 84%;
}

.liaojie {
    text-align: center;
    padding-top: 60px;
    position: relative;
}

.liaojie .col-sm-4 {
    margin-bottom: 60px;
}

.liaojie_text {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
}

.liaojie_text h4 {
    font-size: 20px;
    color: #fff;
    margin: 0;
    margin-top: 8.6vh;
    margin-bottom: 5vh;
}

.liaojie_text p {
    margin: 0;
    margin-top: 2vh;
}

.liaojie_text a {
    display: inline-block;
    color: #333;
    line-height: 2;
    border: 1px solid #f54b4c;
    border-radius: 15px;
    padding: 0px 40px;
    margin-top: 2vh;
}

.liaojie_text a:hover {
    background: #f54b4c;
    color: #fff;
}

.liaojie form {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    background: rgba(0, 0, 0, 0.4);
    display: none;
}

.liaojie .form {
    width: 300px;
    background: #fff;
    margin: 62px auto 0;
}

.form-title {
    background: #333;
    padding: 20px 30px;
}

.form-title p {
    margin: 0;
    font-size: 20px;
    color: #fff;
}

.form-title p span {
    color: #f54b4c;
}

.msg label {
    display: block;
    margin-top: 28px;
}

.msg input {
    height: 28px;
}

.msg input[type=submit] {
    background: #f54b4c;
    border: none;
    color: #fff;
    width: 100px;
    height: 34px;
    margin: 30px 15px 30px 0;
}

.msg input[type=button] {
    background: #333;
    border: none;
    color: #fff;
    width: 100px;
    height: 34px;
    margin: 30px 0;
}

.mingqi {
    padding-top: 70px;
    padding-bottom: 70px;
    background-color: #fff;
    text-align: center;
}

.mingqi h2 {
    margin: 0;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 60px;
}

.mingqi img {
    width: 50%;
}

.mingqi .col-xs-4 {
    padding: 0 45px;
    border-right: 1px solid #ccc;
}

.mingqi .col-xs-4:last-child {
    border: none;
}

.mingqi .col-xs-4 > p {
    margin-top: 24px;
}

.mingqi .col-xs-4 > p:first-of-type {
    text-align: left;
}

.mingqi .col-xs-4 > p:last-child {
    text-align: right;
}

.koubei {
    padding-top: 69px;
    padding-bottom: 69px;
}

.koubei > div {
    display: flex;
    justify-content: center;
}

.koubei-bg {
    position: relative;
}

.koubei-text {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    color: #fff;
}

.koubei-text h4 {
    line-height: 1.3;
    font-size: 24px;
    font-weight: bold;
    margin-top: 45%;
    margin-left: 13%;
}

.koubei-text p {
    line-height: 1.5;
    margin-left: 13%;
    margin-top: 5%;
}

/* 海文国际 */
.international {
    background-color: #fff;
}

.introduce {
    padding: 70px 0;
}

.introduce .row > div:first-of-type {
    padding: 25px;
}

.introduce .row > div:last-child div {
    background-color: #ccc;
}

.introduce h2 {
    margin: 0;
    text-align: center;
    font-size: 28px;
    line-height: 38px;
    font-weight: bold;
}

.introduce p {
    margin: 0;
    margin-top: 30px;
    text-indent: 2rem;
    line-height: 24px;
}

.linian {
    padding-top: 69px;
    text-align: center;
    background-color: #eee;
}

.linian .row {
    display: flex;
    flex-wrap: wrap;
}

.linian .col-sm-4 {
    margin-bottom: 69px;
}

.linian .list {
    height: 100%;
    background-color: #fff;
}

.linian h2 {
    font-size: 28px;
    font-weight: bold;
    margin: 0;
}

.linian p {
    margin: 15px auto 40px;
}

.linian .col-sm-4 {
    padding: 0 45px;
}

.linian .list:hover {
    box-shadow: 0px 5px 20px 5px #ccc;
}

.linian .list-con {
    padding: 30px;
}

.linian .list-con p {
    margin: 0;
    line-height: 29px;
}

.linian .list-title {
    position: relative;
}

.linian .list-title span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-size: 18px;
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tixi {
    position: relative;
    color: #fff;
    overflow: hidden;
}

.tixi img {
    width: 100%;
}

.tixi > div {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin-top: 3vw;
}

.tixi h2 {
    text-align: center;
    font-size: 28px;
    margin: 0;
}

.tixi p {
    width: 60%;
    text-indent: 2rem;
    line-height: 24px;
    margin: 3vw auto 0;
}

.train-center {
    background-color: #fff;
    padding: 70px 0;
}

.train-center h2 {
    text-align: center;
    font-size: 28px;
    margin: 0;
    font-weight: bold;
}

/* 轮播图 */
#test1 {
    display: flex;
    margin-top: 60px;
    width: 100%;
    overflow: hidden;
}

#m1 {
    width: 100%;
    display: flex;
}

#test1 img {
    height: 100%;
    padding-right: 20px;
}

.teachers {
    padding: 70px 0;
    background-color: #eee;
}

.teachers h2 {
    font-weight: bold;
    text-align: center;
    margin: 0;
}

.teachers > div > div {
    margin-top: 40px;
    border-top: 1px solid #ccc;
    position: relative;
}

.teachers ul {
    position: absolute;
    top: 0;
    right: 0;
    margin-top: 60px;
    width: 60%;
}

.teachers li {
    float: left;
    width: 21%;
    font-size: 1.6rem;
    margin-right: 4%;
    margin-bottom: 2%;
}

.teachers p {
    margin: 0;
    margin-top: 10px;
    white-space: nowrap;
}

.teachers p span {
    font-size: 14px;
}

.teachers a {
    font-size: 20px;
    color: #fff;
    background-color: #e44549;
    width: 220px;
    text-align: center;
    height: 60px;
    border: none;
    line-height: 60px;
    position: absolute;
    bottom: 50px;
    right: 100px;
    border-radius: 3px;
}

/* 企业服务 */
.service_qiye {
    background-color: #fff;
}

.service-one {
    padding: 70px 0;
}

.service-one .col-sm-4 {
    padding: 0;
    height: 440px;
    padding: 40px 30px;
    overflow: hidden;
}

.service-one .col-sm-4 h3 {
    margin-top: 100px;
    text-align: center;
}

.service-one .col-sm-4 span {
    display: block;
    height: 2px;
    width: 50px;
    background-color: #ccc;
    margin: 20px auto;
}

.service-one .col-sm-4 p {
    margin-top: 20px;
    line-height: 24px;
}

.service-one .col-sm-4:nth-child(1) {
    background: url("../image/167.jpg") no-repeat center 40px;
}

.service-one .col-sm-4:nth-child(2) {
    background: url("../image/168.jpg") no-repeat center 40px;
}

.service-one .col-sm-4:nth-child(3) {
    background: url("../image/169.jpg") no-repeat center 40px;
}

.service-one .col-sm-4:hover {
    box-shadow: 0px 0px 10px #ccc;
}

.service-one .col-sm-4:hover:nth-child(1) {
    background: url("../image/170.jpg") no-repeat center 40px;
}

.service-one .col-sm-4:hover:nth-child(2) {
    background: url("../image/171.jpg") no-repeat center 40px;
}

.service-one .col-sm-4:hover:nth-child(3) {
    background: url("../image/172.jpg") no-repeat center 40px;
}

.service-one .col-sm-4:hover h3 {
    color: red;
}

.service-one .col-sm-4:hover span {
    background-color: red;
}

.service-two {
    position: relative;
    overflow: hidden;
}

.service-two > img {
    width: 100%;
}

.service-two > div {
    width: 50%;
    position: absolute;
    margin: 3vw auto 0;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
}

.service-two > div > img {
    width: 50%;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.two-right {
    width: 50%;
    height: 20vw;
    background-color: #fff;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    padding: 0 10%;
    overflow: hidden;
}

.two-right p {
    margin-top: 30%;
}

.two-right h4 {
    margin-top: 24px;
    font-weight: bold;
}

.two-right span {
    font-size: 16px;
}

.service-three {
    background-color: #eee;
    padding: 70px 0;
}

.service-three h2 {
    font-weight: bold;
    text-align: center;
}

.three_content {
    margin-top: 70px;
    display: flex;
    height: 12vw;
    overflow: hidden;
}

.three_content > div {
    margin-left: 30px;
}

.three_content p {
    margin-top: 5%;
}

.service-four {
    padding: 70px 0;
}

.service-four > div > div {
    width: calc(50% - 2px);
    padding: 0 8vw;
    float: left;
}

.service-four > div > div:nth-child(2) {
    border-left: 1px solid #333;
}

.service-four h2 {
    font-size: 28px;
    font-weight: bold;
    margin: 0;
}

.service-four h5 {
    font-weight: bold;
    margin: 0;
    margin-top: 60px;
    line-height: 24px;
}

.service-four p {
    margin: 0;
    margin-top: 24px;
    line-height: 24px;
}

.service-four label {
    display: block;
    margin: 0;
    margin-top: 24px;
}

.service-four input {
    width: 75%;
    height: 32px;
    border: 1px solid #ccc;
}

.service-four input[type="submit"] {
    margin: 24px auto 0 50px;
    width: 80px;
    background-color: #fff;
}

/* 校企合作 */
.hezuo {
    background-color: #fff;
}

.hezuo-one {
    text-align: center;
    padding: 70px 0;
}

.hezuo-one h2 {
    font-weight: bold;
    margin: 0;
    font-size: 28px;
    margin-bottom: 15px;
}

.hezuo-one .row {
    margin-top: 36px;
}

.hezuo-one h4 {
    margin: 0;
    line-height: 50px;
}

.hezuo-one p {
    margin: 0;
    line-height: 24px;
}

.hezuo-two {
    background-color: #eee
}

.hezuo-three .row > div {
    margin-bottom: 50px;
}

.hezuo-three .row p {
    line-height: 36px;
}

.hezuo-three img {
    height: 120px;
}

.hezuo-three a {
    width: 118px;
    line-height: 36px;
    font-size: 16px;
    border-radius: 5px;
    color: #fff;
    background: #e44549;
    margin: 0 auto;
}

.hezuo-three a:hover {
    opacity: 0.6;
}

.hezuo-four {
    background-color: #eee;
}

.hezuo-four .row {
    margin: 50px 100px 0;
}

.hezuo-four .row p {
    line-height: 36px;
}

.hezuo-four img {
    width: 160px;
}

.hezuo-five .col-sm-4 {
    padding: 0 60px;
    text-align: left;
}

.hezuo-five h4 {
    color: #fff;
    background: #e44549;
    line-height: 60px;
    padding-left: 24px;
}

.hezuo-five .row p {
    width: 100%;
    height: 130px;
    background-color: #f5f5f5;
    padding: 20px 55px 20px 55px;
}

/* 合作院校 */
.hezuo_more {
    background-color: #fff;
}

/* 社会责任 */
.responsibility {
    background-color: #fff;
}

.responsibility > div {
    padding: 70px 8vw;
}

.responsibility > div > div {
    width: calc(50% - 2px);
    padding: 0 25px;
    float: left;
}

.responsibility .left h2 {
    font-weight: bold;
    text-align: right;
    margin-top: 55px;
    margin-bottom: 18px;
}

.responsibility .left p {
    line-height: 24px;
    margin-bottom: 65px;
    width: 80%;
    margin-left: 20%;
    height: 120px;
    overflow: hidden;
}

.responsibility .right h2 {
    font-weight: bold;
    margin-top: 5vw;
    margin-bottom: 18px;
}

.responsibility .right p {
    line-height: 24px;
    width: 80%;
    height: 176px;
    overflow: hidden;
}

.responsibility img {
    width: 100%;
}

/* 技能竞赛页面 */
.bgcolor055 {
    background-color: hsla(0, 0%, 0%, 0.55);
}

.skill > div {
    background-color: #f5f5f5;
}

.skill > div {
    margin-top: 50px;
}

.tendencies {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #fff;
    box-shadow: 0px 0px 30px 0px rgb(0 0 0 / 6%);
}

.tendencies i {
    width: 99%;
    height: 3px;
    background-color: #dd2a1b;
    opacity: 0.19;
    margin-bottom: 2px;
}

.tendencies .nav-tabs {
    margin-top: 30px;
    border: none;
}

.tendencies .nav-item {
    margin: 0 20px;
    border: none;
}

.tendencies .nav-link {
    font-size: 24px;
    color: #666;
    margin-right: 0;
    width: 180px;
    text-align: center;
    border: none;
    border-radius: 0%;
    border-bottom: 3px solid #ececec;
}

.skill .nav-tabs > li.active > a,
.skill .nav-tabs > li.active > a:focus,
.skill .nav-tabs > li.active > a:hover {
    color: black;
    border: none;
    border-bottom: 3px solid #dd2a1b;
}

.tendencies .tab-content {
    margin: 40px 70px;
}

.tendencies .tab-pane {
    line-height: 2;
}

.tendencies > button {
    color: #fff;
    font-size: 20px;
    padding: 16px 60px;
    border-radius: 6px;
    background-color: #dd2a1b;
    border: none;
    margin: 20px auto 40px;
}

.tendencies > button:active {
    background-color: rgba(221, 42, 27, 0.5);
}

.skill .news {
    display: flex;
    justify-content: space-between;
}

.skill .news img {
    object-fit: cover;
    width: 100%;
    height: 36vh;
}

.skill .news .news_right,
.skill .news .news_left {
    position: relative;
    width: 48.5%;
    padding: 32px;
    background-color: #fff;
    box-shadow: 0px 0px 30px 0px rgb(0 0 0 / 6%);
}

.skill .news .news_right h3,
.skill .news .news_left h3 {
    margin: 0 0 26px 0;
}

.skill .news .news_right i,
.skill .news .news_left i {
    width: 98%;
    height: 3px;
    background-color: #DD2A1B;
    opacity: 0.19;
    margin-bottom: 2px;
    position: absolute;
    bottom: 0px;
    left: 1%;
    right: 1%;
}

.skill .news_left .carousel-indicators {
    margin-left: -20%;
    text-align: right;
}

.skill .news_left .carousel-indicators .active {
    background-color: red;
}

.skill .news_left .carousel-indicators li {
    background-color: #fff;
}

.skill .news_right li {
    margin-bottom: 20px;
}

.skill .news_right p {
    display: inline-block;
    max-width: 70%;
    margin-bottom: 0px;
}

.skill .news_right span {
    font-family: PingFangSC-Regular, PingFang SC;
    float: right;
}

.skill .news_right a {
    color: #000;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.participating-schools {
    box-shadow: 0px 0px 30px 0px rgb(0 0 0 / 6%);
    background-color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 80px;
}

.participating-schools h3 {
    margin: 33px auto 44px;
}

.schools {
    display: flex;
    justify-content: space-evenly;
    margin-bottom: 40px;
}

.schools > div {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.schools img {
    height: 12vh;
}

.schools p {
    margin: 20px auto;
}

.schools p a {
    color: #000;
}

.participating-schools i {
    width: 98%;
    height: 3px;
    background-color: #DD2A1B;
    opacity: 0.19;
    margin-bottom: 2px;
    position: absolute;
    bottom: 0px;
    left: 1%;
    right: 1%;
}

/* 技能竞赛-新闻资讯页面 */
.skill_new > div {
    margin-top: 50px;
    margin-bottom: 80px;
}

.skill_new .news {
    position: relative;
    background-color: #fff;
    box-shadow: 0px 0px 30px 0px rgb(0 0 0 / 6%);
    overflow: hidden;
}

.skill_new .news h1 {
    font-size: 38px;
    font-weight: 600;
    text-align: center;
    padding: 33px;
    margin: 0;
    border-bottom: 1px solid #ccc;
}

.news i {
    width: 98%;
    height: 3px;
    background-color: #DD2A1B;
    opacity: 0.19;
    margin-bottom: 2px;
    position: absolute;
    bottom: 0;
    right: 1%;
    left: 1%;
}

.skill_new .news .content ul {
    margin: 40px 92px 0 92px;
}

.skill_new .news .content li {
    line-height: 40px;
}

.skill_new .news .content li p {
    display: inline-block;
    max-width: 70%;
    margin: 0;
}

.skill_new .news .content li p a {
    color: #000;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.skill_new .news .content li span {
    font-family: PingFangSC-Regular, PingFang SC;
    float: right;
    color: #555;
}

/* 技能竞赛-新闻资讯-新闻详情页面 */
.skill_news > div {
    margin-top: 50px;
    margin-bottom: 80px;
}

.skill_news .news {
    position: relative;
    background-color: #fff;
    box-shadow: 0px 0px 30px 0px rgb(0 0 0 / 6%);
    overflow: hidden;
}

.skill_news .news h2 {
    text-align: center;
    font-weight: 600;
    line-height: 42px;
    padding: 40px 170px 33px;
    margin: 0;
    border-bottom: 1px solid #ccc;
}

.skill_news .news h2 p {
    font-family: PingFangSC-Regular, PingFang SC;
    font-size: 18px;
    color: #666;
    margin-top: 20px;
    margin-bottom: 0;
}

.skill_news .news .content {
    margin: 40px 76px 130px 76px;
}

.skill_news .news .content p {
    margin-bottom: 25px;
    line-height: 2;
}

/* 技能竞赛-报名页面 */
.skill_news_register > div {
    margin-top: 50px;
    margin-bottom: 60px;
}

.skill_news_register .regsiter {
    position: relative;
    background-color: #fff;
    box-shadow: 0px 0px 30px 0px rgb(0 0 0 / 6%);
    overflow: hidden;
}

.skill_news_register .regsiter h1 {
    font-size: 38px;
    font-weight: 600;
    text-align: center;
    padding: 33px;
    margin: 0;
    border-bottom: 1px solid #ccc;
}

.skill_news_register .regsiter i {
    width: 98%;
    height: 3px;
    background-color: #DD2A1B;
    opacity: 0.19;
    margin-bottom: 2px;
    position: absolute;
    bottom: 0;
    left: 1%;
    right: 1%;
}

.skill_news_register .regsiter .form-horizontal {
    margin: 40px 76px 80px 76px;
}

.skill_news_register .regsiter h3 {
    display: block;
    text-align: center;
    margin: 40px auto 30px;
}

.skill_news_register .regsiter button {
    display: flex;
    margin: 36px auto 0px;
    font-size: 20px;
    padding: 16px 60px;
    background-color: #dd2a1b;
    border: none;
    border-radius: 6px;
    color: #fff;
}

.skill_news_register .regsiter button:active {
    background-color: rgba(222, 44, 27, 0.5);
}

.skill_news_register .form-group {
    margin-bottom: 20px;
}

.skill_news_register .form-group span {
    color: red;
}

.skill_news_register label {
    font-size: 16px;
}

.skill_news_register .sex {
    line-height: 34px;
}

.skill_news_register .sex input {
    vertical-align: middle;
    zoom: 1.2;
    margin-bottom: 6px;
    margin-right: 5px;
}

.skill_news_register .sex input:last-child {
    margin-left: 10px;
}

/* 海文国际模态框 */
@media (min-width: 768px) {
    .modal-dialog {
        margin: 10% auto 0;
    }
}

.modal-content {
    text-align: center;
}

/* 专家顾问-主页面 */
.expert_home {
    margin-top: 40px;
}

.expert_home .card {
    background-color: #fff;
    box-shadow: 1px 1px 4px 0px #d7d7d7;
    margin-bottom: 30px;
}

.expert_home .card span {
    color: #797979;
    font-size: 16px;
    white-space: nowrap;
}

/* .expert_home .img_box{
    padding-bottom: 76.92%;
} */
.expert_home .info {
    padding: 15px;
}

.expert_home .info_title {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.expert_home .info_title a {
    color: #000;
    font-size: 18px;
}

.expert_home .info_title a:hover {
    color: #ff8c00;
}

.expert_home .line-clamp-1 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.expert_home .placeholder {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 300px;
    text-align: center;
    background-color: #f7f7f7;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.expert_home .placeholder img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.expert_home .placeholder h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.expert_home .placeholder p {
    font-size: 1.2em;
    color: #999;
}

/* 专家顾问详情 */
.expert_detail {
    margin: 50px auto;
}

.expert_detail .info h1 {
    font-size: 24px;
    font-weight: bold;
    margin: 0 0 10px;
}

.expert_detail .info h1 span {
    font-size: 20px;
    font-weight: bold;
    margin-left: 50px;
}

.expert_detail .info .titles {
    margin-bottom: 24px;
}

.expert_detail .info .titles span {
    font-size: 20px;
    font-weight: bold;
    margin-right: 10px;
}

/* 专题页 */
#home-banner {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 0;
    padding-bottom: 20.83%;
}

#home-banner > img {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}

#home-banner .banner_text {
    position: absolute;
    width: 100%;
    height: 70%;
    bottom: 0;
    left: 0;
    color: #FFF;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#home-banner .banner_text > h1 {
    font-weight: bold;
    font-size: 2.5vw;
    margin-bottom: 2vw;
}

#home-banner .banner_text > p {
    font-size: 1.2vw;
    margin: 0;
}

#home-body {
    margin-bottom: 50px;
}

#home-body .row_box {
    border: 1px solid #c4ddf9;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
}

#home-body > div {
    margin-top: 50px;
}

#home-body > div > h1 {
    font-size: 36px;
    text-align: center;
    font-weight: bold;
    margin-bottom: 15px;
}

#home-body > div > i {
    display: block;
    width: 200px;
    height: 3px;
    background-color: #0078ff;
    margin: 0 auto;
}

#home-body .home_news .news_classify {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#home-body .home_news .news_classify > div {
    width: 47px;
    flex-shrink: 0;
}

#home-body .home_news .news_classify > div a {
    font-size: 16px;
}

#home-body .home_news .news_classify .nav .nav-link {
    font-size: 16px;
    font-weight: bold;
}

#home-body .home_news .news_classify .nav .nav-link.active {
    color: #047aff;
}

#home-body .home_news .img_box > div {
    position: absolute;
    top: 10px;
    left: 10px;
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    background-color: rgb(229, 241, 255);
    color: #000;
}

#home-body .home_news .img_box > div > p {
    background-color: rgb(0, 119, 255);
    margin-bottom: 0;
    padding: 0 5px;
    color: #fff;
}

#home-body .home_contest .contest_intro {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
}

#home-body .home_contest .contest_intro > div {
    width: 47px;
    flex-shrink: 0;
}

#home-body .home_contest .contest_intro > div a {
    font-size: 16px;
}

#home-body .home_contest .info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 10px 20px;
}

#home-body .home_contest .info b {
    font-size: 16px;
}

#home-body .home_contest .info > span {
    flex-shrink: 0;
    font-size: 20px;
    color: #E60012;
    font-weight: bold;
}

#home-body .home_app .app_intro {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
}

#home-body .home_app .app_intro > div {
    width: 47px;
    flex-shrink: 0;
}

#home-body .home_app .app_intro > div a {
    font-size: 16px;
}

#home-body .lab_environment > div {
    margin-top: 2rem;
}

#home-body .lab_environment > div .col-md-5 {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

#home-body .lab_environment > div .col-md-5 span {
    color: #0078ff;
    font-size: 20px;
    font-weight: bold;
}

#home-body .lab_environment > div .col-md-5 h3 {
    font-size: 20px;
    font-weight: bold;
    margin: 0;
}

#home-body .lab_environment > div .col-md-5 p {
    font-size: 18px;
    margin: 0;
}

#home-body .lab_environment > div .col-md-5 div a {
    padding: 0;
    height: 40px;
    width: 120px;
    font-size: 16px;
    line-height: 40px;
    background-color: #047aff;
    border-color: #047aff;
}

#home-body .lab_environment > div .col-md-5 div a:hover {
    background-color: #0465d3;
    border-color: #0465d3;
}

#home-body .online_courses > .row {
    margin-top: 2rem;
}

#home-body .online_courses > .row > div {
    margin-bottom: 30px;
}

#home-body .online_courses > .row > div > div {
    margin-left: 15px;
}

#home-body .online_courses > .row > div > div h4 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

#home-body .online_courses div a {
    padding: 0;
    height: 40px;
    width: 180px;
    font-size: 16px;
    line-height: 40px;
    background-color: #047aff;
    border-color: #047aff;
}

#home-body .online_courses div a:hover {
    background-color: #0465d3;
    border-color: #0465d3;
}

#home-body .the_whole_process .nav .nav-link {
    font-size: 18px;
    font-weight: bold;
}

#home-body .the_whole_process .nav .nav-link.active {
    color: #047aff;
}

.special_wwerp > div {
    margin-bottom: 50px;
}

.special_wwerp .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.special_wwerp > div h1 {
    text-align: center;
    color: #047390;
    font-size: 24px;
    margin-bottom: 30px;
}

.special_wwerp > div .row > * {
    margin-bottom: 1rem;
}

.special_wwerp > div > .btn {
    display: block;
    width: 300px;
    height: 60px;
    padding: 0;
    line-height: 60px;
    text-align: center;
    margin: 0 auto;
    border-radius: 8px;
    background-color: #0C7BCD;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    margin-top: 1rem;
}

.special_wwerp .multi-role {
    margin-top: 50px;
}

.special_wwerp .multi-role .col-md-3 > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 200px;
    height: 200px;
    margin: 0 auto;
    justify-content: center;
    text-align: center;
    border-radius: 50%;
    border: 1px solid #3291f8;
    padding: 23px;
}

.special_wwerp .multi-role .col-md-3 > div.active {
    background-color: #A3D1FF;
    border: 1px solid #A3D1FF;
}

.special_wwerp .multi-role .col-md-3 > div img {
    width: 50px;
    height: 50px;
}

.special_wwerp .multi-role .col-md-3 > div span {
    font-size: 18px;
    margin-top: 0.25rem;
    margin-bottom: 0.5rem;
}

.special_wwerp .rich_modules .row {
    margin: 0 -7px;
}

.special_wwerp .rich_modules .row .col-custom-7 {
    position: relative;
    width: 100%;
    padding-right: 7px;
    padding-left: 7px;
    margin-bottom: 20px;
}

.special_wwerp .rich_modules .row .col-custom-7 > div {
    color: #0C7BCD;
    border-radius: 8px;
    background-color: #fff;
    line-height: 50px;
    text-align: center;
    font-size: 18px;
}

.special_wwerp .rich_modules .row .col-custom-7:nth-child(2n+1) > div {
    background-color: #69B1FB;
    color: #fff;
}

@media (min-width: 992px) {
    .special_wwerp .rich_modules .row .col-custom-7 {
        width: 14.2857142857%;
    }
}

@media (max-width: 992px) {
    .special_wwerp .rich_modules .row .col-custom-7 {
        width: 33.3333333333%;
    }
}

@media (max-width: 576px) {
    .special_wwerp .rich_modules .row .col-custom-7 {
        width: 50%;
    }
}

.special_wwerp .rich_modules .btn {
    margin-top: 10px;
}

.special_wwerp .scheduling_system .col-lg-5 > div {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.special_wwerp .scheduling_system .btn {
    width: 180px;
    height: 60px;
    padding: 0;
    line-height: 60px;
    text-align: center;
    border-radius: 8px;
    background-color: #0C7BCD;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    margin-top: 30px;
}

.special_wwerp .mutual_evaluation_system .row {
    margin-right: -10px;
    margin-left: -10px;
}

.special_wwerp .mutual_evaluation_system .row .col-lg-3 {
    padding-right: 10px;
    padding-left: 10px;
}

.special_wwerp .mutual_evaluation_system .row .col-lg-3 > div {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    padding: 30px;
    background-color: #fff;
    box-shadow: 0px 1px 4px 0px #a3d1ff;
    font-size: 16px;
}

.special_wwerp .mutual_evaluation_system .row .col-lg-3 > div img {
    width: 80px;
    height: 80px;
}

.special_wwerp .mutual_evaluation_system .row .col-lg-3 > div span {
    font-size: 20px;
    margin-top: 1rem;
    margin-bottom: 10px;
}

.special_hwerp > div {
    margin-bottom: 50px;
}

.special_hwerp .row {
    display: flex;
    flex-wrap: wrap;
}

.special_hwerp > div h1 {
    text-align: center;
    color: #000;
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: bold;
}

.special_hwerp > div .row > * {
    margin-bottom: 1rem;
}

.special_hwerp > div > .btn {
    display: block;
    width: 300px;
    height: 60px;
    padding: 0;
    line-height: 60px;
    text-align: center;
    margin: 0 auto;
    border-radius: 8px;
    background-color: #0C7BCD;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    margin-top: 1rem;
}

.special_hwerp .rich_modules {
    margin-top: 50px;
}

.special_hwerp .rich_modules .row {
    margin: 0 -7px;
}

.special_hwerp .rich_modules .row .col-custom-7 {
    position: relative;
    width: 100%;
    padding-right: 7px;
    padding-left: 7px;
    margin-bottom: 20px;
}

.special_hwerp .rich_modules .row .col-custom-7 > div {
    color: #0C7BCD;
    border-radius: 8px;
    background-color: #fff;
    line-height: 50px;
    text-align: center;
    font-size: 18px;
    border: 1px solid #3291F8;
}

.special_hwerp .rich_modules .row .col-custom-7:nth-child(2n+1) > div {
    background-color: #69CDFB;
    border: 1px solid #69CDFB;
    color: #fff;
}

@media (min-width: 992px) {
    .special_hwerp .rich_modules .row .col-custom-7 {
        width: 14.2857142857%;
    }
}

@media (max-width: 992px) {
    .special_hwerp .rich_modules .row .col-custom-7 {
        width: 33.3333333333%;
    }
}

@media (max-width: 576px) {
    .special_hwerp .rich_modules .row .col-custom-7 {
        width: 50%;
    }
}

.special_hwerp .rich_modules .btn {
    margin-top: 10px;
}

.special_hwerp .bonus_plan .col-md-3 > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 23px;
    font-size: 16px;
}

.special_hwerp .bonus_plan .col-md-3 > div > div {
    height: 100px;
    width: 100px;
    border-radius: 50%;
    border: 1px solid #3291F8;
    display: flex;
    justify-content: center;
    align-items: center;
}

.special_hwerp .bonus_plan .col-md-3 > div > div.active {
    background-color: #A3D1FF;
    border: 1px solid #A3D1FF;
}

.special_hwerp .bonus_plan .col-md-3 > div.active {
    background-color: #A3D1FF;
    border: 1px solid #A3D1FF;
}

.special_hwerp .bonus_plan .col-md-3 > div img {
    width: 50px;
    height: 50px;
}

.special_hwerp .bonus_plan .col-md-3 > div span {
    font-size: 18px;
    margin-top: 1rem;
    margin-bottom: 10px;
}

.special_hwerp .job_classification {
    color: #fff;
}

.special_hwerp .job_classification .p-0 {
    padding: 0;
}

.special_hwerp .job_classification .row {
    margin-bottom: 15px;
}

.special_hwerp .job_classification .row .col-lg-7 {
    display: flex;
}

.special_hwerp .job_classification .row .col-lg-7 .info {
    height: 100%;
    padding: 20px;
    font-size: 16px;
    padding-right: 0;
    line-height: 2;
}

.special_hwerp .job_classification .row .col-lg-7 .info h4 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 1rem;
}

.special_hwerp .job_classification .row .col-lg-7 .circular {
    flex-shrink: 0;
    width: 15%;
    height: 100%;
    border-top-right-radius: 100px;
    border-bottom-right-radius: 100px;
}

.special_hwerp .job_classification .row.left {
    flex-direction: row-reverse;
}

.special_hwerp .job_classification .row.left .col-lg-7 {
    flex-direction: row-reverse;
}

.special_hwerp .job_classification .row.left .col-lg-7 .info {
    padding: 20px;
    padding-left: 0;
}

.special_hwerp .job_classification .row.left .col-lg-7 .circular {
    border-radius: 0;
    border-top-left-radius: 100px;
    border-bottom-left-radius: 100px;
}

.special_abc > div {
    margin-bottom: 50px;
}

.special_abc .row {
    display: flex;
    flex-wrap: wrap;
}

.special_abc > div h1 {
    text-align: center;
    color: #000;
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: bold;
}

.special_abc > div .row > * {
    margin-bottom: 1rem;
}

.special_abc > div > .btn {
    display: block;
    width: 300px;
    height: 60px;
    padding: 0;
    line-height: 60px;
    text-align: center;
    margin: 0 auto;
    border-radius: 8px;
    background-color: #0C7BCD;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    margin-top: 1rem;
}

.special_abc .one_stop {
    margin-top: 50px;
    text-align: center;
}

.special_abc .one_stop .row {
    margin: 0 -10px;
}

.special_abc .one_stop .row .col-custom-7 {
    position: relative;
    width: 100%;
    padding-right: 10px;
    padding-left: 10px;
    margin-bottom: 20px;
    font-size: 18px;
}

.special_abc .one_stop .row .col-custom-7 > div {
    border-radius: 10px;
    background-color: #fff;
    border: 1px solid #007cff;
    padding: 35px 0;
    margin-bottom: 15px;
    overflow: hidden;
}

.special_abc .one_stop .row .col-custom-7 > div img {
    width: 80px;
    height: 80px;
}

.special_abc .one_stop .row .col-custom-7:nth-child(2n+2) > div {
    background-color: #A3D1FF;
    border: 1px solid #A3D1FF;
    color: #fff;
}

@media (min-width: 992px) {
    .special_abc .one_stop .row .col-custom-7 {
        width: 16.6666666667%;
    }
}

@media (max-width: 992px) {
    .special_abc .one_stop .row .col-custom-7 {
        width: 33.3333333333%;
    }
}

@media (max-width: 576px) {
    .special_abc .one_stop .row .col-custom-7 {
        width: 50%;
    }
}

.special_abc .one_stop .btn {
    margin-top: 10px;
}

.special_abc .online_courses .row {
    margin-bottom: 15px;
}

.special_abc .online_courses .row .col-lg-5 > div {
    font-size: 16px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.special_abc .online_courses .row .col-lg-5 > div h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.special_abc .online_courses .row.left {
    flex-direction: row-reverse;
}

.special_abc .online_courses .row.left .col-lg-5 > div {
    align-items: flex-end;
}

.special_abc .online_courses .row.left .col-lg-5 > div h4 {
    width: 100%;
}

.special_abc .online_courses .btn {
    width: 180px;
    height: 60px;
    padding: 0;
    line-height: 60px;
    text-align: center;
    border-radius: 8px;
    background-color: #0C7BCD;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    margin-top: 30px;
}

.special_abc .free_app .row {
    margin: 0 -10px;
}

.special_abc .free_app .row .col-md-3 {
    padding-right: 10px;
    padding-left: 10px;
}

.special_abc .free_app .row .col-md-3 > div {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: flex-start;
    padding: 40px 30px;
    font-size: 16px;
    box-shadow: 0px 1px 4px 0px #a3d1ff;
}

.special_abc .free_app .row .col-md-3 > div img {
    width: 80px;
    height: 80px;
}

.special_abc .free_app .row .col-md-3 > div span {
    font-size: 20px;
    margin-top: 1rem;
    margin-bottom: 10px;
}

.special_abc .different_versions thead > tr {
    background-color: #CBE4FF;
}

.special_abc .different_versions tr > * {
    border: 1px solid #d2e7ff;
    text-align: center;
    height: 50px;
    vertical-align: middle;
}

.special_hwerp .different_versions thead > tr {
    background-color: #CBE4FF;
}

.special_hwerp .different_versions tr > * {
    border: 1px solid #d2e7ff;
    text-align: center;
    height: 50px;
    vertical-align: middle;
}

.special_wwerp .different_versions thead > tr {
    background-color: #CBE4FF;
}

.special_wwerp .different_versions tr > * {
    border: 1px solid #d2e7ff;
    text-align: center;
    height: 50px;
    vertical-align: middle;
}

.special_abc .btn,
.special_hwerp .btn,
.special_wwerp .btn {
    width: 180px;
    height: 60px;
    padding: 0;
    line-height: 60px;
    text-align: center;
    border-radius: 8px;
    background-color: #0C7BCD;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    margin-top: 30px;
}

/* 最后的导航*/
a {
    text-decoration: none; /* 去掉下划线 */
    color: inherit; /* 继承父元素的文字颜色 */
}

a:hover {
    text-decoration: underline; /* 鼠标悬停时显示下划线 */
}

/*解决方案*/
/* 确保图片和文字之间有足够的间距 */
.cloud_application {
    text-align: center; /* 使文字居中对齐 */
}

.cloud_application div img {
    height: 150px;
    width: auto;
}

.cloud_application_a {
    font-size: 20px;
    font-weight: bold;
}

/* 图片样式，确保图片不被拉伸 */
.cloud_application img {
    width: 100%; /* 使图片充满容器 */
    max-width: 150%; /* 限制图片最大宽度 */
    height: auto; /* 保持图片比例 */
}

/* 文字的样式 */
.cloud_application div a {
    display: block; /* 使a标签显示为块元素 */
    margin-top: 10px; /* 文字和图片之间的间距 */
    font-size: 1.2rem; /* 增大字体 */
    font-weight: bold; /* 加粗字体 */
    color: #333; /* 设置字体颜色 */
    text-decoration: none; /* 去除下划线 */
}

/* 鼠标悬停时文字颜色变化 */
.cloud_application div a:hover {
    color: #007bff; /* 鼠标悬停时文字颜色变为蓝色 */
}

/* 左侧图片样式 */
.solution_plan_img_left {
    width: 90%; /* 缩小图片至80% */
    height: auto;
    /*margin-right: 5px; !* 图片和文字之间的间距 *!*/
}

/* 对齐每个row使用flex布局 */
.solution_plan_row {
    display: flex;
    align-items: center; /* 使图片和文字在垂直方向上对齐 */
    /*margin-bottom: 20px;  !* 给每个内容间添加一些间距 *!*/
}

.solution_plan_h5 {
    font-weight: bold; /* 加粗文本 */
    line-height: 1.8; /* 增加行间距，调整行距为1.8倍字体大小 */
    font-size: 18px; /* 可选：根据需要调整字体大小 */
    color: black; /* 可选：设置文字颜色 */
}

.div_top {
    margin-top: 60px; /* 设置当前 div 距离上一个 div 20px */
    /*margin-bottom: 20px; !* 设置当前 div 与下一个 div 之间的距离为 20px *!*/
}

.div_bottom {
    margin-bottom: 60px; /* 设置当前 div 与下一个 div 之间的距离为 20px */
}

.div_side {
    margin-inside: 20px;
}

.div_left {
    margin-left: 20px;
}

.div_right {
    margin-right: 20px;
}

.home_bottom_font {
    font-size: 30px; /* 和 h3 标签的字体大小相似 */
    font-weight: bold; /* 模拟 h3 标签的加粗效果 */
    line-height: 1.2; /* 调整行高，使文字更加舒适 */
    margin: 0; /* 去除多余的外边距，h3 标签默认有外边距 */
}

/* 全局加载动画 */
#global-loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f8fbff; /* 极浅蓝白，清新 */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease;
}

#global-loading.fade-out {
    opacity: 0;
}

/* 保留你提供的 mesh-loader 结构，仅改颜色 */
.mesh-loader {
    position: relative;
    width: 80px;
    height: 80px;
}

.mesh-loader .circle {
    width: 24px;
    height: 24px;
    position: absolute;
    background: #4fc3f7; /* 柔和亮蓝，Material Blue 200 */
    border-radius: 50%;
    margin: -12px;
    animation: mesh 3s ease-in-out infinite -1.5s;
}

.mesh-loader > div .circle:last-child {
    animation-delay: 0s;
}

.mesh-loader > div {
    position: absolute;
    top: 50%;
    left: 50%;
}

.mesh-loader > div:last-child {
    transform: rotate(90deg);
}

@keyframes mesh {
    0%, 100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(20px, 20px);
    }
    50% {
        transform: translate(0, 40px);
    }
    75% {
        transform: translate(-20px, 20px);
    }
}