html {
    font-size: 14px;
    color: #000;
    font-family: "Arial", "Microsoft YaHei", "黑体", "宋体", sans-serif;
}

p {
    color: #000;
}

sup {
    display: inline-block;
    vertical-align: middle;
}

.base-btn {
    text-align: center;
}

.base-btn a {
    display: inline-block;
    padding: calc(0.533vw + 2px) calc(3.125vw + 10px);
    margin-top: 2.083vw;
    border: 1px solid #d7d7d7;
    border-radius: 40px;
    transition: all .5s;
}

.base-btn a:hover {
    background-color: #477cff;
    color: #fff;
}

.base-banner.banner-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 31.250vw;
}

.base-banner.banner-container p {
    color: #fff;
}

.base-banner.banner-container .masking {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .3);
}

.base-banner.banner-container .masking a.wfEditorMode {
    position: absolute;
    top: 50%;
}

.base-banner.banner-container .s-title {
    position: relative;
    z-index: 3;
    font-size: 24px;
}

.base-banner.banner-container .b-title {
    position: relative;
    z-index: 3;
    margin-top: 1.302vw;
    font-size: calc(38rem / 16);
    font-weight: bold;
    text-align: center;
}

.top-nav-container {
    padding-left: 15%;
    border-bottom: 1px solid #e5e5e5;
}

.top-nav-container ul {
    display: flex;
}

.top-nav-container ul li {
    margin-right: 2.604vw;
}

.top-nav-container ul a {
    position: relative;
    display: inline-block;
    padding: 15px 0;
    font-size: 16px;
}

.top-nav-container ul a::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #e10019;
    transition: all .5s;
}

.top-nav-container ul a::after {
    content: '';
    position: absolute;
    right: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #e10019;
    transition: all .5s;
}

.top-nav-container ul a:hover {
    color: #e10019;
}

.top-nav-container ul a:hover::before {
    width: 50%;
}

.top-nav-container ul a:hover::after {
    width: 50%;
}

.top-nav-container ul li.active a {
    color: #e10019;
}

.top-nav-container ul li.active a::after {
    width: 50%;
}

.top-nav-container ul li.active a::before {
    width: 50%;
}

.sidebar-container {
    position: fixed;
    right: 5px;
    top: 50%;
    z-index: 6;
}

.sidebar-container p,
.sidebar-container a {
    font-size: 11px;
    color: #fff;
}

.sidebar-container p:not(.top-text) {
    margin-top: 0.313vw;
}

.sidebar-container .sidebar-item {
    position: relative;
    /* width: calc(1.563vw + 50px); */
    /* height: calc(1.563vw + 50px); */
    padding: 8px 10px;
    margin-bottom: 5px;
    border-radius: .4rem;
    transition: all .5s;

    box-shadow: 0 1px 3px #e10019;
    background-color: #e10019;
}

.sidebar-container .sidebar-item a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.sidebar-container .sidebar-item a .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
}

.sidebar-container .sidebar-item a .icon img {
    max-width: 100%;
    max-height: 100%;
}

/* .sidebar-container .sidebar-item .put {
    display: none;
} */

.sidebar-container .sidebar-item .default {
    display: none;
}

.sidebar-container .sidebar-item:hover {
    background-color: #fff;
    box-shadow: 0 1px 3px #e2e2e2;
}

.sidebar-container .sidebar-item:hover p,
.sidebar-container .sidebar-item:hover a {
    color: #e10019;
}

.sidebar-container .sidebar-item:hover .default {
    display: block;
}

.sidebar-container .sidebar-item:hover .put {
    display: none;
}

.sidebar-container .sidebar-item .code-container {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(-110%, -50%);
    display: none;
    padding: 8px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 1px 1px 3px #c1c1c1;
}

.sidebar-container .sidebar-item .code-container::after {
    content: '';
    position: absolute;
    bottom: 50%;
    right: 0;
    width: 0;
    height: 0;
    transform: translate(90%, 100%);
    border: 5px solid transparent;
    border-left-color: #fff;
    filter: drop-shadow(1px 1px 3px #c1c1c1);
}

.sidebar-container .sidebar-item .code-container .code-pic {
    display: flex;
    width: calc(3.125vw + 40px);
    height: calc(3.125vw + 40px);
}

.sidebar-container .sidebar-item .code-container .code-pic:not(:first-child) {
    margin-top: 10px;
}

.sidebar-container .sidebar-item .code-container .code-pic img {
    width: 100%;
    height: 100%;
}

.sidebar-container .to-top {
    /* display: flex; */
    display: none;

    /* width: calc(1.563vw + 50px); */
    width: 100%;
    padding: calc(0.208vw + 6px) 0;
    border-radius: .4rem;
    cursor: pointer;
    background-color: #e10019;
    box-shadow: 0 1px 3px #e10019;
    transition: all .5s;
}

.sidebar-container .to-top>div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sidebar-container .to-top .default {
    display: none;
}

/* .sidebar-container .to-top .put {
    display: none;
} */

.sidebar-container .to-top:hover {
    background-color: #fff;
    box-shadow: 0 1px 3px #e2e2e2;
}

.sidebar-container .to-top:hover p {
    color: #e10019;
}

.sidebar-container .to-top:hover .default {
    display: block;
}

.sidebar-container .to-top:hover .put {
    display: none;
}

.page-container {
    margin-top: 1.563vw;
}

.page-container ul {
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-container ul li {
    width: calc(1.042vw + 20px);
    height: calc(1.042vw + 20px);
    margin: 0 calc(0.208vw + 6px);
}

.page-container ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #b8b8b8;
    border: 1px solid #b8b8b8;
    border-radius: 50%;
    transition: all .5s;
    cursor: pointer;
}

.page-container ul li.selected a {
    background-color: #e10019;
    color: #fff;
    border-color: #fff;
}

.page-container ul li a:hover {
    background-color: #e10019;
    color: #fff;
    border-color: #fff;
}

.page-container ul li.previous,
.page-container ul li.next {
    position: relative;
}

.page-container ul li.previous::after {
    content: '<';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.page-container ul li.next::after {
    content: '>';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.page-container .page-num-list {
    display: flex;
}

.news-container .page-container {
    display: none;
}

.swiper-pagination {
    z-index: 3;
}

.swiper-pagination.gray-dot .swiper-pagination-bullet-active {
    background: #888888;
}

.swiper-pagination.white-dot .swiper-pagination-bullet {
    background-color: #ffffff;
}

.swiper-pagination.white-dot .swiper-pagination-bullet-active {
    background: #fff;
}

.index-boss .banner-container {
    position: relative;
}

.index-boss .banner-container .url-btn {
    /* margin-top: 28vh; */
    margin-top: 350px;
    text-align: center;
}

.index-boss .banner-container .url-btn a {
    display: inline-block;
    padding: calc(0.521vw + 5px) calc(2.604vw + 15px);
    /* border: 1px solid #333333; */
    border-radius: 30px;
    font-size: 14px;
    color: #fff;
    transition: all .5s;
    background-color: rgba(63, 118, 255, .6);
}

.index-boss .banner-container .url-btn a:hover {
    background-color: #3f76ff;
    color: #fff;
}

.index-boss .banner-container .play-btn {
    width: calc(2.083vw + 40px);
    height: calc(2.083vw + 40px);
    margin: 0 auto;
    margin-top: 25vh;
    cursor: pointer;
    transition: all .5s;
}

.index-boss .banner-container .play-btn img {
    width: 100%;
}

.index-boss .banner-container .play-btn:hover {
    transform: scale(1.2);
}

.index-boss .learn-more-btn-gray {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin-top: 1.563vw;
}

.index-boss .learn-more-btn-gray p {
    position: relative;
    color: #999999;
    transition: all .5s;
}

.index-boss .learn-more-btn-gray p::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background-color: #3f76ff;
    transition: all .5s;
}

.index-boss .learn-more-btn-gray:hover p {
    color: #3f76ff;
}

.index-boss .learn-more-btn-gray:hover p::after {
    width: 100%;
}

.index-boss .learn-more-btn-gray .icon {
    margin-left: 10px;
    transition: all .5s;
}

.index-boss .learn-more-btn-gray .icon img {
    width: calc(0.521vw + 20px);
}

.index-boss .learn-more-btn-gray .icon .btn-put {
    display: none;
}

.index-boss .learn-more-btn-gray:hover .icon .btn-default {
    display: none;
}

.index-boss .learn-more-btn-gray:hover .icon .btn-put {
    display: block;
}

.index-boss .learn-more-btn-white {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin-top: 1.563vw;
}

.index-boss .learn-more-btn-white p {
    position: relative;
    font-size: 16px;
    color: #fff;
    transition: all .5s;
}

.index-boss .learn-more-btn-white p::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background-color: #3f76ff;
    transition: all .5s;
}

.index-boss .learn-more-btn-white:hover p {
    color: #3f76ff;
}

.index-boss .case-item .learn-more-btn-white:hover p {
    color: #3f76ff;
}

.index-boss .learn-more-btn-white:hover p::after {
    width: 100%;
}

.index-boss .learn-more-btn-white .icon {
    margin-left: 10px;
    transition: all .5s;
}

.index-boss .learn-more-btn-white .icon img {
    width: calc(0.521vw + 20px);
}

.index-boss .learn-more-btn-white .icon .btn-put {
    display: none;
}

.index-boss .learn-more-btn-white:hover .btn-default {
    display: none;
}

.index-boss .learn-more-btn-white:hover .btn-put {
    display: block;
}

.learn-more-btn-blue {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin: 0 auto;
    margin-top: 1.563vw;
}

.learn-more-btn-blue p {
    position: relative;
    font-size: calc(16rem / 16);
    color: #3f76ff;
}

.learn-more-btn-blue p::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background-color: #3f76ff;
    transition: all .5s;
}

.learn-more-btn-blue:hover p::after {
    width: 100%;
}

.learn-more-btn-blue .icon {
    margin-left: 10px;
    transition: all .5s;
}

.header-container {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 6;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 130px;
    /* padding: 0 25px; */
    background-color: #fff;
    /* font-size: 14px; */
    font-size: min(1.65vw, 16px);
    box-shadow: 0 1px 5px #e0dfdf;
}

.header-container>div {
    display: flex;
    align-items: center;
    height: 100%;
}

.header-container .left-content {
    margin: 0 auto;
}

.header-container .right-content {
    z-index: 3;
    padding-right: 25px;
    background-color: #fff;
}

.header-container .left-content .logo {
    height: 80%;
    margin-right: 3.125vw;
}

.header-container .left-content .logo img {
    height: 100%;
}

.header-container .left-content .first-floor {
    display: flex;
    align-items: center;
    height: 100%;
}

.header-container .left-content .first-floor>li {
    position: relative;
}

.header-container .left-content .first-floor>li>a {
    position: relative;
    overflow: hidden;
}

.header-container .left-content .first-floor>li>a::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #477cff;
    transition: all .5s;
}

.header-container .left-content .first-floor>li>a:hover::after {
    bottom: 10px;
}

.header-container .left-content .first-floor>li>a:hover {
    color: #477cff;
}

.header-container .left-content .first-floor>li>a {
    display: inline-block;
    height: 100%;
    padding: 0 2.302vw;
    line-height: 70px;
}

.header-container .second-floor {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    /* width: auto; */
    min-width: 100%;
    padding-top: 5px;
    padding-bottom: 5px;
    background-color: #fff;
    box-shadow: 1px 1px 3px #d7d7d7;
}

.header-container .second-floor a {
    position: relative;
    display: inline-block;
    width: 100%;
    overflow: hidden;
    padding: 5px 0;
    padding-left: 1.302vw;
    padding-right: calc(0.521vw + 30px);
    white-space: nowrap;
}

.header-container .second-floor a::before {
    content: '';
    position: absolute;
    /* left: .8vw; */
    left: 0;
    top: 50%;
    transform: translate(-130%, -50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #477cff;
    transition: all .5s;
}

.header-container .second-floor a:hover {
    color: #477cff;
}

.header-container .second-floor a:hover::before {
    left: 1vw;
}

.header-container .right-content>div {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    cursor: pointer;
}

.header-container .right-content>div:hover {
    color: #477cff;
}

.header-container .right-content div.lang.add-weight {
    position: relative;
    overflow: initial;
}

.header-container .right-content div.lang.add-weight::after {
    content: none;
}

.header-container .right-content div.lang .inside-lang {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    overflow: hidden;
}

.header-container .right-content div.lang .inside-lang::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #477cff;
    transition: all .5s;
}

.header-container .right-content div.lang .inside-lang:hover::after {
    bottom: 10px;
}

.header-container .right-content div.lang .more-lang {
    display: none;
    width: 100%;
    background-color: #fff;
}

.header-container .right-content .lang .more-lang {
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translateY(calc(100% - 1px));
    box-shadow: 1px 1px 3px #d7d7d7;
}

.header-container .right-content .lang .more-lang a {
    position: relative;
    display: inline-block;
    width: 100%;
    overflow: hidden;
    padding: 5px 0;
    text-align: center;
    white-space: nowrap;
}

.header-container .right-content .lang .more-lang a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(-130%, -50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #477cff;
    transition: all .5s;
}

.header-container .right-content .lang .more-lang a:hover {
    color: #477cff;
}

.header-container .right-content .lang .more-lang a:hover::before {
    left: 1vw;
}

.header-container .right-content>div:not(.booking) {
    position: relative;
    overflow: hidden;
    padding: 0 15px;
}

.header-container .right-content>div:not(.booking)::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #477cff;
    transition: all .5s;
}

.header-container .right-content>div:not(.booking):hover::after {
    bottom: 10px;
}

.header-container .right-content>div:not(.booking):hover .default {
    display: none;
}

.header-container .right-content>div:not(.booking) .put {
    display: none;
}

.header-container .right-content>div:not(.booking):hover .put {
    display: block;
}

.header-container .right-content>div:not(.booking) img {
    margin-right: 5px;
}

.header-container .right-content>div:not(.booking) img.arrow {
    margin-left: 5px;
    margin-right: 0;
}

.header-container .right-content .news a {
    display: flex;
}

.header-container .right-content .news:hover a {
    color: #477cff;
}

.header-container .right-content .booking {
    margin-left: 15px;
}

.header-container .right-content .booking a {
    display: inline-block;
    padding: 6px 15px;
    background-color: #e10019;
    border-radius: 40px;
    font-size: 14px;
    color: #fff;
}

.header-container .search-container {
    position: absolute;
    /* right: calc(-5.208vw - 150px - 45px); */
    right: 0;
    bottom: 0;
    /* transform: translate(110%, 100%); */
    /* transform: translateY(100%); */
    /* width: 10vw; */
    height: 40px;
    background-color: #fff;
    border: 1px solid #c1c1c1;
    border-right: none;
    transition: all .5s;
}

.header-container .search-container.show {
    right: 0;
    transform: translateY(100%);
}

.header-container .search-container input {
    /* width: 15vw; */
    width: calc(5.208vw + 150px);
    height: 100%;
    padding-left: 10px;
}

.header-container .search-container .search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 100%;
    border-left: 1px solid #c1c1c1;
    transition: all .5s;
}

.header-container .search-container .search-btn .put {
    display: none;
}

/* .header-container .search-container .search-btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
} */

.header-container .search-container .search-btn:hover {
    background-color: #477cff;
}

.header-container .search-container .search-btn:hover .default {
    display: none;
}

.header-container .search-container .search-btn:hover .put {
    display: block;
}

.header-container .header-phone {
    display: none;
    flex-direction: column;
    justify-content: center;
    width: 25px;
    cursor: pointer;
}

.header-container .header-phone span {
    width: 100%;
    height: 3px;
    margin: 3px 0;
    background-color: #4a7eff;
}

/* .header-phone-container {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 8;
    display: flex;
    width: 100%;
    height: 100%;
} */

.header-phone-left {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 8;
    width: 40%;
    height: 100%;
    transform: translateX(-110%);
    background-color: rgba(0, 0, 0, .5);
    transition: all .7s;
}

.header-phone-right {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 8;
    width: 60%;
    height: 100%;
    transform: translateX(110%);
    background-color: #fff;
    transition: all .5s;
}

.header-phone-left.active {
    transform: translateX(0);
}

.header-phone-right.active {
    transform: translateX(0);
}

.header-phone-right .close-btn-container {
    display: flex;
    justify-content: flex-end;
    padding: 10px;
}

.header-phone-right .close-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    /* padding: 10%; */
}

.header-phone-right .close-btn img {
    width: 100%;
}

.header-phone-right .list-container {
    border: 1px solid #e6e6e6;
}

.header-phone-right .first-floor>li {
    position: relative;
}

.header-phone-right .first-floor .first-floor-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 40px;
    /* line-height: 30px; */
    /* padding: 5px 0; */
    padding-left: 10px;
    border-bottom: 1px solid #e6e6e6;
    font-size: 16px;
    font-weight: bold;
}

.header-phone-right .has-icon {
    display: flex;
    /* align-items: center; */
    justify-content: space-between;
}

.header-phone-right .has-icon .arrow-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    background-color: #e6e6e6;
    /* height: 100%; */
}

.header-phone-right .has-icon .arrow-icon img {
    transition: all .5s;
}

.header-phone-right .first-floor.active .arrow-icon img {
    transform: rotate(90deg);
}

.header-phone-right .second-floor {
    /* position: absolute;
    bottom: 0;
    left: 0;
    transform: translateY(100%); */
    display: none;
    width: 100%;
    margin-top: 3px;
}

.header-phone-right .second-floor>li>a {
    display: inline-block;
    width: 100%;
    height: 100%;
    padding: 8px 0;
    padding-left: 20px;
    border-bottom: 1px solid #e6e6e6;
    font-size: 14px;
}

.footer-container {
    width: 100%;
    padding: 0 15%;
    padding-top: 3.167vw;
    background-color: #121a2d;
    font-size: 16px;
}

.footer-container .footer-main {
    display: flex;
    justify-content: flex-start;
    width: 100%;
}

.footer-container .footer-main .left {
    display: flex;
    justify-content: space-between;
    width: 73%;
}

.footer-container .footer-main .left ul {
    flex: 1;
}

.footer-container .footer-main .left li {
    margin-bottom: 8px;
}

.footer-container .footer-main .left ul a {
    position: relative;
    font-size: 14px;
    color: #fff;
}

.footer-container .footer-main .left li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background-color: #477cff;
    transition: all .5s;
}

.footer-container .footer-main .left li a:hover {
    color: #477cff;
}

.footer-container .footer-main .left li a:hover::after {
    width: 100%;
}

.footer-container .footer-main .left .s-title a {
    font-size: calc(16rem / 16);
    color: #fff;
    font-weight: bold;
}

.footer-container .footer-main .left .s-title {
    margin-bottom: 1.563vw;
}

.footer-container .footer-main .right p {
    font-size: 14px;
    color: #fff;
    text-align: left;
}

.footer-container .footer-main .right .phone {
    position: relative;
    margin-bottom: 1.042vw;
    margin-top: 2px;
    color: #fff;
    font-weight: 500;
    font-size: 30px;
}

.footer-container .footer-main .right .phone::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(-130%, -50%);
    width: calc(0.417vw + 11px);
    height: calc(0.417vw + 11px);
    background: url('../image/icon_phone_white.png') no-repeat center/cover;
}

.footer-container .footer-main .right .code-container {
    display: flex;
    justify-content: flex-start;
    margin-top: calc(0.208vw + 6px);
}

.footer-container .footer-main .right .code-icon {
    position: relative;
}

/* .footer-container .footer-main .right .code-icon:hover .code-pic {
    opacity: 1;
} */

.footer-container .footer-main .right .have-pic {
    cursor: pointer;
}

.footer-container .footer-main .right .have-pic:hover+.code-pic {
    opacity: 1;
}

.footer-container .footer-main .right .code-icon .code-pic {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -110%);
    display: flex;
    width: calc(3.125vw + 40px);
    height: calc(3.125vw + 40px);
    background-color: #fff;
    border-radius: 4px;
    opacity: 0;
    transition: all .5s;
}

.footer-container .footer-main .right .code-icon .code-pic img {
    width: 80%;
    height: 80%;
    margin: auto;
}

.footer-container .footer-main .right .code-icon:not(:last-child) {
    margin-right: calc(0.208vw + 6px);
}

.footer-container .footer-main .right .code-icon .code-pic::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 0;
    transform: translate(-50%, 90%);
    border: 5px solid transparent;
    border-top-color: #fff;
}

.footer-container .bottom-content {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    text-align: center;
    color: #fff;
    padding-bottom: 20px;
}

.footer-container .bottom-content p {
    font-size: 14px;
    color: #929499;
}

.footer-container .bottom-content a {
    color: inherit;
}

.nav-crumbs {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 15%;
    margin-top: calc(0.521vw + 10px);
}

.nav-crumbs a {
    font-size: 14px;
    color: #929499;
}

.nav-crumbs span {
    width: 5px;
    height: 9px;
    margin: 0 8px;
}

.nav-crumbs span img {
    width: 100%;
}


.index-boss {
    width: 100%;
    margin-top: 130px;
}

.index-boss .banner-container {
    position: relative;
    width: 100%;
    /* height: calc(100vh - 70px); */
    height: 555px;
    overflow: hidden;
}

.index-boss .banner-container a.wfEditorMode {
    margin-top: 50px;
}

.banner.swiper-pagination.swiper-pagination-bullets {
    bottom: 50px;
}

.index-boss .banner.swiper-pagination .swiper-pagination-bullet {
    width: calc(1.042vw + 20px);
    border-radius: 20px;
    background: #fff;
    transition: all .5s;
}

.index-boss .banner.swiper-pagination .swiper-pagination-bullet-active {
    width: calc(1.042vw + 60px);
}

.index-boss .solution-container {
    margin-top: 5.729vw;
}

.index-boss .solution-container .b-title {
    font-size: 30px;
    text-align: center;
}

.index-boss .solution-container .video-content {
    position: relative;
    width: 100%;
    height: 33.333vw;
}

.index-boss .solution-container .video-content video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.index-boss .solution-container .video-content img {
    width: 100%;
}

.index-boss .solution-container .video-content .play-icon {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    width: 100%;
    height: 100%;
}

.index-boss .solution-container .video-content .play-icon img {
    width: 4.167vw;
    margin: auto;
    cursor: pointer;
    transition: all .5s;
}

.index-boss .solution-container .video-content .play-icon img:hover {
    transform: scale(1.2);
}

.index-boss .solution-container .bottom-content {
    padding-top: 2.604vw;
    padding-bottom: 2.083vw;
    /* background-color: #294896; */
    background-color: #fff;
    text-align: center;
}

.index-boss .solution-container .bottom-content .s-title {
    font-size: calc(24rem / 16);
    color: #000;
    font-weight: bold;
}

.index-boss .solution-container .bottom-content a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 1.563vw;
}

.index-boss .solution-container .bottom-content a p {
    position: relative;
    font-size: 14px;
    color: #000;
    transition: all .5s;
}

.index-boss .solution-container .bottom-content a .btn-put {
    display: none;
}

.index-boss .solution-container .bottom-content a p::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #3f76ff;
    transition: all .8s;
}

.index-boss .solution-container .bottom-content a:hover p {
    color: #3f76ff;
}

.index-boss .solution-container .bottom-content a:hover .btn-put {
    display: block;
}

.index-boss .solution-container .bottom-content a:hover .btn-default {
    display: none;
}

.index-boss .solution-container .bottom-content a:hover p::after {
    width: 100%;
}

.index-boss .solution-container .bottom-content .icon {
    margin-left: 10px;
}

.index-boss .solution-container .bottom-content .icon img {
    width: calc(0.521vw + 20px);
}

.index-boss .pathfinder-container .pathfinder-header {
    padding-top: 5.729vw;
    padding-bottom: 2.604vw;
    background-color: rgb(246, 246, 246);
}

.index-boss .pathfinder-container .b-title {
    font-size: 30px;
    text-align: center;
}

.index-boss .pathfinder-container .select-list {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1.042vw;
}

.index-boss .pathfinder-container .select-list .item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.042vw 3.125vw;
    border-bottom: 2px solid #e6e6e6;
    cursor: pointer;
}

.index-boss .pathfinder-container .select-list .put {
    display: none;
}

.index-boss .pathfinder-container .select-list .item.active {
    border-bottom-color: #e10019;
}

.index-boss .pathfinder-container .select-list .item.active .name {
    color: #e10019;
}

.index-boss .pathfinder-container .select-list .item.active .default {
    display: none;
}

.index-boss .pathfinder-container .select-list .item.active .put {
    display: block;
}

.index-boss .pathfinder-container .select-list .item:hover {
    border-bottom-color: #e10019;
}

.index-boss .pathfinder-container .select-list .item:hover .default {
    display: none;
}

.index-boss .pathfinder-container .select-list .item:hover .put {
    display: block;
}

.index-boss .pathfinder-container .select-list .item:hover .name {
    color: #e10019;
}


.index-boss .pathfinder-container .switch-product .product-detail {
    display: none;
}

.index-boss .pathfinder-container .switch-product .product-detail:nth-of-type(1) {
    display: block;
}

.index-boss .pathfinder-content {
    position: relative;
    padding: 0 15%;
    /* margin-top: 2.604vw; */
    /* background-color: #f5f5f5; */
    background-image: linear-gradient(to bottom, #f5f5f5, #fff);
}

.index-boss .pathfinder-content .product-list {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.index-boss .pathfinder-content .product-list::after {
    /* content: ''; */
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 1px;
    background-color: #e6e6e6;
}

.index-boss .pathfinder-content .product-list>div {
    flex: 1;
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
    justify-content: center;
    height: 100%;
    padding: 0 4.167vw;
    padding-top: 2.344vw;
    padding-bottom: 2.604vw;
}

/* .index-boss .pathfinder-content .product-list>div:not(:first-child) {
    border-left: 1px solid #e6e6e6;
} */

.index-boss .pathfinder-content .product-list>div .text-content {
    text-align: center;
}

.index-boss .pathfinder-content .pathfinder-part-one {
    margin-top: 3.125vw;
}

.index-boss .pathfinder-content .name {
    font-size: calc(16rem / 16);
    font-weight: bold;
}

.index-boss .pathfinder-content .s-title {
    margin-top: calc(0.313vw + 2px);
    font-size: calc(32rem / 16);
}

.index-boss .pathfinder-content>div .pic {
    width: 10.417vw;
    margin-left: 3vw;
}

.index-boss .pathfinder-content>div .pic img {
    max-width: 100%;
}

.index-boss .pathfinder-part-one .top {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    height: 16.667vw;
}

.index-boss .pathfinder-part-one .top .text-content {
    width: 30%;
    margin-right: 15%;
}

.index-boss .pathfinder-part-one .top .s-title {
    font-size: calc(30rem / 16);
    font-weight: bold;
    color: #fff;
}

.index-boss .pathfinder-part-one .part-one-main {
    width: 100%;
    overflow: hidden;
    padding-bottom: calc(1.042vw + 30px);
    margin-top: 3.125vw;
}

.index-boss .pathfinder-part-one .part-one-main .swiper-slide {
    position: relative;
}

.index-boss .pathfinder-part-one .part-one-main a.to-case {
    display: inline-flex;
    align-items: center;
    width: 100%;
    height: 16.667vw;
}

.index-boss .pathfinder-part-one .part-one-main a.wfEditorMode {
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 5;
}

.index-boss .pathfinder-part-one .part-one-main .text-content {
    position: relative;
    z-index: 3;
    margin-left: 10%;
}

.index-boss .pathfinder-part-one .part-one-main p {
    color: #fff;
}

.index-boss .pathfinder-part-one .part-one-main .text-content .text {
    margin-top: 1.042vw;
    font-size: 16px;
}

.index-boss .pathfinder-part-one .part-one-main .swiper-masking {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .1);
}

.index-boss .pathfinder-part-two {
    position: relative;
    width: 100%;
    /* height: 47.917vw; */
    padding-top: .01rem;
    padding-bottom: 4vw;
    margin-top: 1.563vw;
}

.index-boss .pathfinder-part-two::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border: 2.083vw solid transparent;
    border-top-color: #fff;
}

.index-boss .pathfinder-part-two .pathfinder-video {
    width: 70%;
    overflow: hidden;
    margin: 0 auto;
    margin-top: 5.208vw;
}

.index-boss .pathfinder-part-two .pathfinder-video .swiper-slide {
    display: flex;
}


.index-boss .pathfinder-part-two .video-content {
    display: flex;
    width: 33.333vw;
    height: 17.708vw;
}

.index-boss .pathfinder-part-two .pathfinder-video .text-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 33.333vw;
    height: 17.708vw;
    padding-left: 3.646vw;
}

.index-boss .pathfinder-part-two .pathfinder-video .text-content .s-title {
    font-size: calc(28rem / 16);
    color: #fff;
    font-weight: bold;
}

.index-boss .pathfinder-part-two .pathfinder-video .text-content .text {
    margin-top: calc(1.042vw + 5px);
    font-size: 16px;
    color: #fff;
}

.index-boss .pathfinder-part-two .video-content .play-btn {
    margin: auto;
    cursor: pointer;
    transition: all .5s;
}

.index-boss .pathfinder-part-two .video-content .play-btn:hover {
    transform: scale(1.2);
}

.index-boss .pathfinder-part-two .pathfinder-main {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-bottom: calc(1.042vw + 10px);
    margin-top: 3.646vw;
}

.index-boss .pathfinder-part-two .pathfinder-main .swiper-slide {
    position: relative;
    /* height: auto; */
    opacity: .5;
    transition: all .5s;
}

.index-boss .pathfinder-part-two .pathfinder-main .swiper-slide.ani-slide {
    opacity: 1;
}

.index-boss .pathfinder-part-two .pathfinder-main .swiper-slide a:not(.wfEditorMode) {
    display: flex;
    height: 100%;
    background-color: #fff;
}

.index-boss .pathfinder-part-two .pathfinder-main .swiper-slide a.wfEditorMode {
    position: absolute;
    top: 0;
    transform: translateY(100%);
}

.index-boss .pathfinder-part-two .pathfinder-main .pic {
    width: calc(12.500vw + 40px);
    overflow: hidden;
}

.index-boss .pathfinder-part-two .pathfinder-main .pic img {
    min-width: 100%;
    min-height: 100%;
}

.index-boss .pathfinder-part-two .pathfinder-main .text-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: calc(10.417vw + 100px);
    padding: 0 2.083vw;
    padding-top: 1.823vw;
    padding-bottom: 1.563vw;
    color: #000;
}

.index-boss .pathfinder-part-two .pathfinder-main .s-title {
    font-size: calc(24rem / 16);
    font-weight: bold;
}

.index-boss .pathfinder-part-two .pathfinder-main .text {
    margin-top: 1.563vw;
    /* font-size: calc(14rem / 16); */
    font-size: 16px;
    color: #666666;
    text-align: justify;
}

.index-boss .pathfinder-part-two .pathfinder-main .bottom-content {
    display: flex;
    justify-content: space-between;
}

.index-boss .pathfinder-part-two .pathfinder-main .bottom-content .name {
    flex: 1;
    display: flex;
    align-items: center;
}

.index-boss .pathfinder-part-two .pathfinder-main .bottom-content .name img {
    width: calc(2.083vw + 20px);
    height: calc(2.083vw + 20px);
    border-radius: 50%;
    margin-right: 10px;
}

.index-boss .pathfinder-part-two .pathfinder-main .swiper-pagination.white-dot {
    bottom: 0;
}

.index-boss .pathfinder-part-two .pathfinder-main .swiper-pagination.white-dot span {
    margin: 0 10px;
}

.index-boss .case-container {
    margin-top: 50px;
    padding: 0 15%;
}

.index-boss .case-container .b-title {
    font-size: 30px;
    text-align: center;
}

.index-boss .case-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 2.604vw;
}

.index-boss .case-content .case-item {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 49%;
    height: 19.792vw;
    overflow: hidden;
    padding-top: 2.083vw;
    padding-left: 2.083vw;
    padding-bottom: 1.563vw;
}

.index-boss .case-content .case-item .bg {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    width: 100%;
    transition: all .5s;
}

.index-boss .case-content .case-item:hover .bg {
    transform: scale(1.2);
}

.index-boss .case-content .case-item p {
    color: #fff;
}

.index-boss .case-content .case-item .s-title {
    font-size: calc(24rem / 16);
    font-weight: bold;
}

.index-boss .case-content .case-item .text {
    margin-top: 1.042vw;
    font-size: 16px;
}

.index-boss .case-container .all-case-btn {
    text-align: center;
}

.index-boss .training-container {
    width: 100%;
    height: 25vw;
    background-position: center top;
    background-attachment: fixed;
}

.index-boss .training-container .training-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 0 10px;
    background-color: rgba(246, 246, 246, 1);
}

.index-boss .training-container .training-content .b-title {
    font-size: 30px;
    color: #0a1431;
}

.index-boss .training-container .training-content .text {
    font-size: 16px;
    color: #fff;
}

.index-boss .training-container .learn-more-btn a {
    border: 1px solid #d7d7d7;
    color: #fff;
}

.index-boss .follow-container {
    width: 100%;
}

.index-boss .follow-container .b-title {
    margin-top: 5.208vw;
}

.index-boss .follow-container .code-list {
    display: flex;
    justify-content: center;
}

.index-boss .follow-container .code-list .code-item {
    /* width: 25.875vw; */
    width: 40%;
    padding: 0 3.646vw;
    padding-bottom: 5.208vw;
    margin-top: 2.604vw;
    text-align: center;
}

.index-boss .follow-container .code-list .code-item:not(:first-child) {
    border-left: 1px solid #e6e6e6;
}

.index-boss .follow-container .code-item .pic {
    display: flex;
    width: 8.333vw;
    height: 8.333vw;
    margin: 0 auto;
}

.index-boss .follow-container .code-item .pic img {
    max-width: 100%;
    max-height: 100%;
    margin: auto;
}

.index-boss .follow-container .code-item .s-title {
    margin-top: 1.823vw;
    font-size: 24px;
    font-weight: bold;
}

.index-boss .follow-container .code-item .text {
    margin-top: 1.563vw;
    font-size: 16px;
    color: #666666;
}

.index-boss .news-container {
    width: 100%;
    padding-top: .01rem;
    padding-bottom: 4.167vw;
    background-color: #f5f5f5;
}

.index-boss .news-container .b-title {
    margin-top: 5.208vw;
    font-size: 30px;
    text-align: center;
}

.index-boss .news-container .news-content {
    display: flex;
    justify-content: center;
    /* width: calc(70% + 2.083vw * 2); */
    padding: 0 15%;
    margin: 0 auto;
    margin-top: 2.604vw;
}

.index-boss .news-container .news-content .news-item {
    /* width: 26.042vw; */
    /* padding: 0 2.083vw; */
    width: calc(33.3% - 2.083vw / 3);
}

.index-boss .news-container .news-content .news-item a {
    display: inline-block;
    width: 100%;
    height: 100%;
}

.index-boss .news-container .news-content .news-item:nth-of-type(3n + 1) {
    padding-right: 2.083vw;
}

.index-boss .news-container .news-content .news-item:nth-child(2) {
    width: calc(33.3% + 2.083vw / 2);
    padding: 0 2.083vw;
    border-left: 1px solid #e6e6e6;
    border-right: 1px solid #e6e6e6;
}

.index-boss .news-container .news-content .news-item:nth-of-type(3n + 3) {
    padding-left: 2.083vw;
    border-left: 1px solid #e6e6e6;
}

.index-boss .news-container .news-item .pic {
    width: 100%;
    height: 11.979vw;
    overflow: hidden;
}

.index-boss .news-container .news-content .news-item a:hover .pic img {
    transform: scale(1.1);
}

.index-boss .news-container .news-item .pic img {
    width: 100%;
    transition: all .5s;
}

.index-boss .news-container .news-item .time {
    margin-top: 1.042vw;
    font-size: calc(14rem / 16);
    font-weight: bold;
    color: #666;
}

.index-boss .news-container .news-item .title {
    margin-top: 3px;
    font-size: calc(20rem / 16);

    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    /* font-weight: bold; */
}

.index-boss .news-container .news-item .text {
    margin-top: 0.521vw;
    font-size: calc(14rem / 16);
    color: #666666;
    text-align: justify;
    line-height: calc(25rem / 16);

    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}

.index-boss .news-container .all-news-btn a {
    margin-top: 3.125vw;
    font-size: 16px;
}

.serve-boss {
    width: 100%;
    margin-top: 70px;
}


.serve-boss .expert-container {
    padding: 0 15%;
    padding-bottom: 5.208vw;
    margin-top: calc(2.604vw + 10px);
}

.serve-boss .expert-container .b-title {
    font-size: calc(38rem / 16);
    font-weight: bold;
    text-align: center;
}

.serve-boss .expert-container .text {
    width: 56%;
    margin: 0 auto;
    margin-top: 1.563vw;
    font-size: 16px;
    text-align: center;
    line-height: 25px;
}

.serve-boss .expert-container .text.reservation {
    width: 50%;
}

.serve-boss .expert-container .serve-list {
    display: flex;
    justify-content: space-between;
    margin-top: 2.604vw;
}

.serve-boss .expert-container .serve-list .serve-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 48.5%;
    padding-top: 3.385vw;
    padding-bottom: 2.604vw;
    background-color: #f5f5f5;
    cursor: pointer;
}

.serve-boss .expert-container .serve-list .serve-item::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #e10019;
    transition: all .5s;
}

.serve-boss .expert-container .serve-list .serve-item::after {
    content: '';
    position: absolute;
    right: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #e10019;
    transition: all .5s;
}

.serve-boss .expert-container .serve-list .serve-item:hover::before {
    width: 50%;
}

.serve-boss .expert-container .serve-list .serve-item:hover::after {
    width: 50%;
}


.serve-boss .expert-container .serve-list .icon {
    display: flex;
    width: 5.208vw;
    height: 5.833vw;
}

.serve-boss .expert-container .serve-list .icon .icon-put {
    display: none;
}

.serve-boss .expert-container .serve-list .serve-item:hover .icon-default {
    display: none;
}

.serve-boss .expert-container .serve-list .serve-item:hover .icon-put {
    display: block;
}

.serve-boss .expert-container .serve-list .icon img {
    max-width: 100%;
    max-height: 100%;
    margin: auto;
}

.serve-boss .expert-container .serve-list .text {
    margin-top: 1.563vw;
    font-size: calc(22rem / 16);
}

.serve-boss .expert-container .serve-list .serve-item:hover .text {
    color: #e10019;
}

.serve-boss .dialog-container {
    position: fixed;
    top: 0;
    left: 0;
    /* display: flex; */
    display: none;

    z-index: 6;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .3);
}

.serve-boss .dialog-container .dialog-main {
    position: relative;
    height: 100%;
    padding: 0 15%;
    padding-top: 10%;
    padding-bottom: 10%;
    /* padding-top: 50%; */
    overflow: auto;
}

.serve-boss .dialog-container .dialog-box {
    display: none;
    width: 100%;
    /* display: flex; */
    flex-direction: column;
    /* align-items: center; */
    /* justify-content: center; */
    /* padding-top: 10%;
    padding-bottom: 10%; */
    /* height: 100%; */
}

.serve-boss .dialog-container .top-content {
    display: flex;
}

.serve-boss .dialog-container .top-content .left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 2.604vw;
    padding-bottom: 2.083vw;
    padding-left: 2.604vw;
    padding-right: 5.208vw;
    background-color: #f5f5f5;
}

.serve-boss .dialog-container .top-content .left .b-title {
    font-size: calc(32rem / 16);
    color: #000;
    font-weight: bold;
}

.serve-boss .dialog-container .top-content .left .text {
    margin-top: calc(0.521vw + 10px);
    font-size: calc(16rem / 16);
    text-align: justify;
}

.serve-boss .dialog-container .top-content .left ul {
    margin-top: calc(0.521vw + 10px);
    font-size: calc(16rem / 16);
    color: #333333;
}

.serve-boss .dialog-container .top-content .left ul li {
    position: relative;
    margin-left: calc(0.521vw + 5px);
}

.serve-boss .dialog-container .top-content .left ul li:not(:last-child) {
    margin-bottom: calc(0.313vw + 2px);
}

.serve-boss .dialog-container .top-content .left ul li::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(calc(-0.521vw - 5px), -50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #e10019;
}

.serve-boss .dialog-container .top-content .pic {
    /* width: 16.823vw; */
}

.serve-boss .dialog-container .top-content .pic img {
    /* min-width: 100%; */
    min-height: 100%;
}

.serve-boss .dialog-container .table-content {
    width: 100%;
    padding-top: 2.083vw;
    padding-bottom: 2.604vw;
    background-color: #fff;
}

.serve-boss .dialog-container .table-content .s-title {
    margin-bottom: 1.563vw;
    font-size: calc(18rem / 16);
    font-weight: bold;
    text-align: center;
}

.serve-boss .dialog-container .no-top-content .b-title {
    margin-top: 1.042vw;
    font-size: calc(32rem / 16);
    font-weight: bold;
    text-align: center;
}

.serve-boss .dialog-container .no-top-content .text {
    margin-top: 1.042vw;
    margin-bottom: calc(1.563vw + 5px);
    font-size: 16px;
    text-align: center;
}

.serve-boss .dialog-container .table-main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 80%;
    margin: 0 auto;
}

.serve-boss .dialog-container .table-main .table-item {
    width: 48%;
    margin-bottom: calc(0.521vw + 5px);
    /* margin-bottom: 0.521vw; */
}

.serve-boss .dialog-container .table-main .table-item .err-msg {
    margin-top: .3vw;
    color: #e30613;
}

.header-form .table-main .table-item .err-msg {
    margin-top: .3vw;
    color: #e30613;
}

.serve-boss .dialog-container .table-main .table-item .name {
    position: relative;
    margin-bottom: calc(0.313vw + 2px);
    font-size: 14px;
}

.serve-boss .dialog-container .table-main .table-item .name.required::after {
    content: '*';
    color: #e30613;
}

.serve-boss .dialog-container .table-main input {
    width: 100%;
    height: calc(1.042vw + 20px);
    padding-left: 10px;
    border: 1px solid #d9d9d9;
}

.serve-boss .dialog-container .table-main input:focus {
    border-color: #92b2ff;
    background-color: #f3f3f3;
}

.serve-boss .dialog-container .table-main .select-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: calc(1.042vw + 20px);
    padding: 0 10px;
    border: 1px solid #d9d9d9;
    cursor: pointer;
}

.serve-boss .dialog-container .table-main .select-content:hover {
    background-color: #f3f3f3;
}

.serve-boss .dialog-container .table-main .select-content .icon-arrow {
    width: 10px;
    height: 6px;
}

.serve-boss .dialog-container .table-main .select-content ul {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    z-index: 5;
    display: none;
    width: 100%;
    background-color: #fff;
    border-left: 1px solid #d9d9d9;
    border-right: 1px solid #d9d9d9;
}

.serve-boss .dialog-container .table-main .select-content ul li {
    padding: 5px 0;
    padding-left: 10px;
    font-size: calc(14rem / 16);
    border-bottom: 1px solid #d9d9d9;
}

.serve-boss .dialog-container .table-main .select-content ul li:hover {
    background-color: #f3f3f3;
    cursor: pointer;
}

.serve-boss .dialog-container .dialog-close-btn {
    width: calc(0.938vw + 29px);
    height: calc(0.938vw + 29px);
    margin: 0 auto;
    margin-top: 2.083vw;
    cursor: pointer;
    border-radius: 50%;
    transition: all .5s;
}

.serve-boss .dialog-container .dialog-close-btn img {
    width: 100%;
}

.serve-boss .dialog-container .dialog-close-btn:hover {
    background-color: #e30613;
}

.serve-boss .dialog-container .btn-content {
    margin-top: calc(0.521vw + 5px);
    text-align: center;
}

.serve-boss .dialog-container .sub-btn {
    padding: calc(0.521vw + 3px) 3.542vw;
    background-color: #e30613;
    font-size: 14px;
    color: #fff;
}

.case-boss {
    width: 100%;
    padding-bottom: 5.208vw;
}

.case-boss .top-container {
    padding: 0 15%;
}

.case-boss .top-container .b-title {
    margin-top: 2.604vw;
    margin-bottom: 1.563vw;
    font-size: calc(38rem / 16);
    font-weight: bold;
}

.case-boss .top-container .text {
    font-size: 16px;
    text-align: justify;
}

.case-boss .filter-container {
    width: 100%;
    padding: 2.604vw 15%;
    margin-top: 2.604vw;
    background-color: #f5f5f5;
}

.case-boss .filter-container .filter-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: calc(0.521vw + 10px);
}

.case-boss .filter-container .filter-main .text {
    font-size: calc(14rem / 16);
}

.case-boss .filter-container .filter-main .filter-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 31%;
    padding: calc(0.833vw + 2px) 20px;
    border: 1px solid #d9d9d9;
    background-color: #fff;
    border-radius: .4rem;
    font-size: 14px;
    cursor: pointer;
}

.case-boss .filter-container .filter-main .filter-item:hover {
    background-color: #f3f3f3;
}

.case-boss .filter-container .filter-main .filter-item:hover input {
    background-color: #f3f3f3;
}

.case-boss .filter-container .filter-main .filter-item ul {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    display: none;
    width: 100%;
    background-color: #fff;
    border-left: 1px solid #d9d9d9;
    border-right: 1px solid #d9d9d9;
}

.case-boss .filter-container .filter-main .filter-item ul a {
    display: inline-block;
    width: 100%;
    height: 100%;
    padding: 5px 0;
    padding-left: 10px;
    font-size: 14px;
    border-bottom: 1px solid #d9d9d9;
}

.case-boss .filter-container .filter-main .filter-item ul a:hover {
    background-color: #f3f3f3;
}

.case-boss .filter-container .filter-main .filter-item input {
    cursor: pointer;
    width: 100%;
}

.case-boss .news-container {
    padding: 0 15%;
    margin-top: 2.083vw;
}

.case-boss .news-container .find-num {
    font-size: calc(14rem / 16);
}

.case-boss .news-container .find-num span {
    color: #e10019;
}

.case-boss .news-container .news-list {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 1.042vw;
}

.case-boss .news-container .news-list .news-item {
    width: calc(33.33% - 1.042vw * 2 / 3);
    margin-bottom: 1.042vw;
    border: 1px solid #ebebeb;
}

.case-boss .news-container .news-list .news-item:nth-of-type(3n+2) {
    margin: 0 1.042vw;
    margin-bottom: 1.042vw;
}

.case-boss .news-container .news-item .pic {
    width: 100%;
    height: 11.458vw;
    overflow: hidden;
}

.case-boss .news-container .news-item .pic img {
    width: 100%;
    transition: all .5s;
}

.case-boss .news-container .news-item:hover .pic img {
    transform: scale(1.1);
}

.case-boss .news-container .news-item .bottom-content {
    display: flex;
    padding-top: 1.042vw;
    padding-bottom: calc(1.042vw + 10px);
    padding-left: 1.042vw;
    padding-right: calc(1.042vw + 10px);
}

.case-boss .news-container .news-item .left-logo {
    width: calc(2.188vw + 24px);
    height: calc(2.188vw + 24px);
    margin-right: 1.042vw;
    border-radius: 50%;
    overflow: hidden;
}

.case-boss .news-container .news-item .left-logo img {
    width: 100%;
}

.case-boss .news-container .news-item .text-content {
    flex: 1;
    width: 100%;
}

.case-boss .news-container .news-item .text-content .s-title {
    font-size: calc(22rem / 16);
    font-weight: bold;
}

.case-boss .news-container .news-item .text-content .text {
    margin-top: 0.417vw;
    font-size: 14px;

    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
}

.case-detail-boss {
    width: 100%;
    margin-top: 70px;
}

.case-detail-boss .banner-container {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 18.750vw;
}

.case-detail-boss .banner-container .masking {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .3);
}

.case-detail-boss .banner-container .masking a.wfEditorMode {
    position: absolute;
    top: 50%;
}

.case-detail-boss .banner-container .nav-crumbs {
    position: absolute;
    z-index: 3;
    top: 0;
    right: 0;
}

.case-detail-boss .banner-container .nav-crumbs a {
    color: #fff;
}

.case-detail-boss .banner-container .s-title {
    position: relative;
    z-index: 3;
    font-size: calc(24rem / 16);
    color: #fff;
}

.case-detail-boss .banner-container .b-title {
    position: relative;
    z-index: 3;
    margin-top: 1.302vw;
    font-size: calc(38rem / 16);
    color: #fff;
    font-weight: bold;
}

.case-detail-boss .case-content {
    position: relative;
    z-index: 4;
    padding: 0 15%;
    /* margin-top: -4.167vw; */
}

.case-detail-boss .case-content .top-content {
    display: flex;
    padding: 2.604vw 0;
    padding-left: 2.604vw;
    padding-right: 3.646vw;
    background-color: #fff;
    border-bottom: 1px solid #d9d9d9;
    text-align: justify;
}

.case-detail-boss .case-content .top-content .pic {
    width: 13.021vw;
    height: 13.021vw;
    overflow: hidden;
    border-radius: 50%;
}

.case-detail-boss .case-content .top-content .pic img {
    width: 100%;
}

.case-detail-boss .case-content .top-content .text-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-left: 2.083vw;
}

.case-detail-boss .case-content .top-content .text-content .s-title {
    font-size: calc(24rem / 16);
    font-weight: bold;
    color: #4a7eff;
}

.case-detail-boss .case-content .top-content .text-content .text {
    margin-top: 1.563vw;
    font-size: calc(14rem / 16);
    color: #666666;
}

.case-detail-boss .case-content .top-content .address {
    position: relative;
    font-size: calc(16rem / 16);
    margin-left: calc(0.313vw * 1.5 + 7px * 1.5);
}

.case-detail-boss .case-content .top-content .address::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: calc(0.313vw + 7px);
    height: calc(0.313vw + 13px);
    transform: translate(calc(-0.313vw * 1.5 - 7px * 1.5), -50%);
    background: url('../image/icon_address.png') no-repeat center/cover;
}

.case-detail-boss .case-content .top-content .bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.case-detail-boss .case-content .top-content .bottom-content .logo {
    width: 2.188vw;
}

.case-detail-boss .case-content .top-content .bottom-content .logo img {
    /* width: calc(1.250vw + 18px); */
    width: 100%;
}

.case-detail-boss .case-content .case-main {
    margin-top: 3.125vw;
    /* padding-left: 17.708vw; */
    padding-bottom: 5.208vw;
}

.case-detail-boss .case-content .case-main .s-title {
    margin-bottom: 1.302vw;
    font-size: calc(24rem / 16);
    font-weight: bold;
    text-align: center;
}

.case-detail-boss .case-content .case-main>div p {
    color: #666;
}

.case-detail-boss .case-content .case-main>div p {
    font-size: 16px;
    /* line-height: calc(25rem / 16); */
    text-align: justify;
}

.case-detail-boss .case-content .case-main>div p:not(:last-child) {
    margin-bottom: calc(1.042vw + 5px);
}

.case-detail-boss .case-content .case-main>div img {
    max-width: 100%;
    margin: 2.083vw auto;
}

.case-detail-boss .summary-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    padding: 0 15%;
    padding-top: 4.167vw;
    padding-bottom: 5.208vw;
    background-color: #f5f5f5;
    text-align: justify;
}

.case-detail-boss .summary-container li {
    position: relative;
    padding-left: 30px;
    margin-bottom: calc(1.042vw + 5px);
    list-style-type: none;
    font-size: 16px;
}

.case-detail-boss .summary-container li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url('../image/icon_tick.svg') no-repeat center/cover;
}

.case-detail-boss .summary-container .summary-item {
    width: 47%;
}

.case-detail-boss .summary-container .summary-item strong {
    font-weight: bold;
    font-size: calc(22rem / 16);
}

.case-detail-boss .summary-container .b-title {
    margin-bottom: calc(1.042vw + 5px);
    font-size: calc(25rem / 16);
    font-weight: bold;
}

.case-detail-boss .summary-container .summary-item>div p {
    /* line-height: calc(25rem / 16); */
    font-size: 16px;
    color: #666;
}

.case-detail-boss .summary-container .summary-item>div p:not(:last-child) {
    margin-bottom: calc(1.042vw + 5px);
}

.case-detail-boss .other-case-container {
    padding: 5.208vw 15%;
}

.case-detail-boss .other-case-container .b-title {
    font-size: calc(38rem / 16);
    font-weight: bold;
}





.case-detail-boss .other-case-list {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 1.042vw;
}

.case-detail-boss .other-case-list .news-item {
    width: calc(33.33% - 1.042vw * 2 / 3);
    margin-bottom: 1.042vw;
    border: 1px solid #ebebeb;
}

.case-detail-boss .other-case-list .news-item:nth-of-type(3n+2) {
    margin: 0 1.042vw;
    margin-bottom: 1.042vw;
}

.case-detail-boss .news-item .pic {
    width: 100%;
    height: 11.458vw;
    overflow: hidden;
}

.case-detail-boss .news-item .pic img {
    width: 100%;
    transition: all .5s;
}

.case-detail-boss .news-item:hover .pic img {
    transform: scale(1.1);
}

.case-detail-boss .news-item .bottom-content {
    display: flex;
    /* align-items: center; */
    padding-top: 1.042vw;
    padding-bottom: calc(1.042vw + 10px);
    padding-left: 1.042vw;
    padding-right: calc(1.042vw + 10px);
}

.case-detail-boss .news-item .left-logo {
    width: calc(2.188vw + 24px);
    height: calc(2.188vw + 24px);
    margin-right: 1.042vw;
    border-radius: 50%;
    overflow: hidden;
}

.case-detail-boss .news-item .left-logo img {
    width: 100%;
}

.case-detail-boss .news-item .text-content {
    flex: 1;
}

.case-detail-boss .news-item .text-content .s-title {
    font-size: calc(22rem / 16);
    font-weight: bold;
}

.case-detail-boss .news-item .text-content .text {
    margin-top: 0.417vw;
    /* font-size: calc(14rem / 16); */
    font-size: 14px;
    line-height: calc(25rem / 16);
    text-align: justify;

    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
}

.news-boss {
    padding-bottom: 5.208vw;
    margin-top: 70px;
}

.news-boss .news-main {
    width: 100%;
    padding: 0 15%;
}

.news-boss .news-main .top-container {
    display: flex;
    justify-content: space-between;
    margin-top: 3.125vw;
}

.news-boss .news-main .top-container .b-title {
    font-size: calc(38rem / 16);
    font-weight: bold;
}

.news-boss .news-main .top-container .select-year {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 10.417vw;
    height: 2.604vw;
    padding: 0 calc(1.042vw + 5px);
    border: 1px solid #d7d7d7;
    border-radius: 4rem;
    cursor: pointer;
    transition: all .5s;
}

.news-boss .news-main .top-container .select-year p {
    font-size: 14px;
    color: #666;
}

.news-boss .news-main .top-container .select-year:hover {
    background-color: #d7d7d7;
}

.news-boss .news-main .top-container .select-year ul {
    position: absolute;
    top: calc(100% + 1px);
    display: none;
    left: 50%;
    width: 80%;
    transform: translateX(-50%);
    background-color: #fff;
    border-left: 1px solid #d7d7d7;
    border-right: 1px solid #d7d7d7;
    border-bottom: 1px solid #d7d7d7;
}

.news-boss .news-main .top-container .select-year ul p {
    font-size: calc(14rem / 16);
}

.news-boss .news-main .top-container .select-year ul a {
    display: inline-block;
    width: 100%;
    padding: 5px 0;
    padding-left: calc(1.042vw + 5px);
    font-size: 14px;
}

.news-boss .news-main .top-container .select-year ul a:hover {
    background-color: #d7d7d7;
}

.news-boss .learn-more-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin-top: 1.563vw;
}

.news-boss .learn-more-btn p {
    position: relative;
    color: #000;
}

.news-boss .learn-more-btn p::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background-color: #999999;
    transition: all .5s;
}

.news-boss .learn-more-btn:hover p::after {
    width: 100%;
}

.news-boss .learn-more-btn .icon {
    margin-left: 10px;
    transition: all .5s;
}

.news-boss .hot-news {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    /* height: 17.708vw; */
    height: 100%;
    margin-top: 2.604vw;
}

.news-boss .hot-news .pic {
    width: 50%;
    /* height: 100%; */
    overflow: hidden;
}

.news-boss .hot-news .pic img {
    width: 100%;
}

.news-boss .hot-news .text-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 50%;
    padding: 2.604vw;
    background-color: #f5f5f5;
}

.news-boss .hot-news .text-content .time {
    font-size: calc(14rem / 16);
    font-weight: bold;
    color: #666666;
}

.news-boss .hot-news .text-content .s-title {
    margin-top: 0.521vw;
    font-size: calc(20rem / 16);

    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    color: #666666;
    /* font-weight: bold; */
}

.news-boss .hot-news .text-content .text {
    margin-top: calc(1.042vw + 5px);
    font-size: calc(14rem / 16);
    color: #666666;
    text-align: justify;
    line-height: calc(25rem / 16);

    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
}

.news-boss .news-list {
    display: flex;
    flex-wrap: wrap;
    margin-top: 3.125vw;
}

.news-boss .news-list .news-item {
    width: calc(33.3% - 2.083vw / 3);
    margin-bottom: 4.167vw;
}

.news-boss .news-list .news-item a.to-detail {
    display: inline-block;
    width: 100%;
    height: 100%;
}

.news-boss .news-list .news-item:nth-of-type(3n + 1) {
    padding-right: 2.083vw;
}

.news-boss .news-list .news-item:nth-of-type(3n + 2) {
    width: calc(33.3% + 2.083vw / 2);
    padding: 0 2.083vw;
    border-left: 1px solid #e6e6e6;
}

.news-boss .news-list .news-item:nth-of-type(3n + 3) {
    padding-left: 2.083vw;
    border-left: 1px solid #e6e6e6;
}

.news-boss .news-list .news-item .pic {
    width: 100%;
    height: 11.979vw;
    overflow: hidden;
}

.news-boss .news-list .news-item a:hover .pic img {
    transform: scale(1.1);
}

.news-boss .news-list .news-item .pic img {
    width: 100%;
    transition: all .5s;
}

.news-boss .news-list .news-item .time {
    margin-top: 1.042vw;
    font-size: calc(14rem / 16);
    font-weight: bold;
    color: #6666;
}

.news-boss .news-list .news-item .title {
    margin-top: 3px;
    font-size: calc(20rem / 16);
    color: #666666;

    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    /* font-weight: bold; */
}

.news-boss .news-list .news-item .text {
    margin-top: 0.521vw;
    font-size: calc(14rem / 16);
    color: #666666;
    text-align: justify;
    line-height: calc(25rem / 16);

    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.news-detail-boss {
    margin-top: 70px;
}

.news-detail-boss .banner-container {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 22.750vw;
}

.news-detail-boss .banner-container .masking {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .3);
}

.news-detail-boss .banner-container .nav-crumbs {
    position: absolute;
    z-index: 3;
    top: 0;
    right: 0;
}

.news-detail-boss .banner-container .nav-crumbs a {
    color: #fff;
}

.news-detail-boss .banner-container .b-title {
    position: relative;
    z-index: 3;
    margin-top: 1.302vw;
    font-size: calc(38rem / 16);
    color: #fff;
    font-weight: bold;
}

.news-detail-boss .banner-container .time {
    position: relative;
    z-index: 4;
    margin-top: 0.833vw;
    font-size: 14px;
    color: #fff;
}

.news-detail-boss .news-content {
    position: relative;
    z-index: 4;
    padding: 0 15%;
    padding-bottom: 5.208vw;
    margin-top: -4.167vw;
}

.news-detail-boss .news-content .news-main {
    width: 100%;
    padding: 0 14%;
    padding-top: 3.125vw;
    padding-bottom: 3.646vw;
    border-bottom: 1px solid #dedede;
    background-color: #fff;
}

.news-detail-boss .news-content .news-main img {
    max-width: 100%;
    margin: 2.083vw auto;
}

.news-detail-boss .news-content .news-main p {
    font-size: 16px;
    line-height: 25px;
    text-align: justify;
}

.news-detail-boss .news-content .news-main strong {
    font-weight: bold;
}

.news-detail-boss .news-content .news-main p:not(:last-child) {
    margin-bottom: calc(1.042vw + 5px);
}

.news-detail-boss .news-content .btn-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1.458vw;
}

.news-detail-boss .news-content .btn-container .icon {
    width: calc(1.042vw + 20px);
    height: calc(1.042vw + 20px);
    border-radius: 50%;
    transition: all .5s;
}

.news-detail-boss .news-content .btn-container .put {
    display: none;
}

.news-detail-boss .news-content .btn-container .icon img {
    width: 100%;
}

.news-detail-boss .news-content .btn-container .left {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.news-detail-boss .news-content .btn-container .left:hover .icon {
    background-color: #e10019;
}

.news-detail-boss .news-content .btn-container .left:hover .icon .default {
    display: none;
}

.news-detail-boss .news-content .btn-container .left:hover .icon .put {
    display: block;
}

.news-detail-boss .news-content .btn-container .left p {
    margin-left: 10px;
    font-size: 14px;
}

.news-detail-boss .news-content .btn-container .right {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.news-detail-boss .news-content .btn-container .right a {
    display: flex;
    align-items: center;
}

.news-detail-boss .news-content .btn-container .right p {
    font-size: 14px;
}

.news-detail-boss .news-content .btn-container .prev-btn {
    margin-right: calc(1.042vw + 20px);
}

.news-detail-boss .news-content .btn-container .prev-btn p {
    margin-left: 10px;
}

.news-detail-boss .news-content .btn-container .next-btn p {
    margin-right: 10px;
}

.news-detail-boss .news-content .btn-container .prev-btn:hover .icon {
    background-color: #e10019;
}

.news-detail-boss .news-content .btn-container .prev-btn:hover .icon .default {
    display: none;
}

.news-detail-boss .news-content .btn-container .prev-btn:hover .icon .put {
    display: block;
}

.news-detail-boss .news-content .btn-container .next-btn:hover .icon {
    background-color: #e10019;
}

.news-detail-boss .news-content .btn-container .next-btn:hover .icon .default {
    display: none;
}

.news-detail-boss .news-content .btn-container .next-btn:hover .icon .put {
    display: block;
}

.news-detail-boss .other-news {
    padding: 0 15%;
    padding-top: 5.208vw;
    background-color: #f4f4f4;
}

.news-detail-boss .other-news .b-title {
    font-size: calc(38rem / 16);
    font-weight: bold;
}

.news-detail-boss .news-list {
    display: flex;
    flex-wrap: wrap;
    margin-top: 2.604vw;
}

.news-detail-boss .news-list .news-item {
    width: calc(33.3% - 2.083vw / 3);
    margin-bottom: 5.208vw;
}

.news-detail-boss .news-list .news-item:nth-of-type(3n + 1) {
    padding-right: 2.083vw;
}

.news-detail-boss .news-list .news-item:nth-of-type(3n + 2) {
    width: calc(33.3% + 2.083vw / 2);
    padding: 0 2.083vw;
    border-left: 1px solid #e6e6e6;
}

.news-detail-boss .news-list .news-item:nth-of-type(3n + 3) {
    padding-left: 2.083vw;
    border-left: 1px solid #e6e6e6;
}

.news-detail-boss .news-list .news-item a {
    display: inline-block;
    width: 100%;
    height: 100%;
}

.news-detail-boss .news-list .news-item .pic {
    width: 100%;
    height: 11.979vw;
    overflow: hidden;
}

.news-detail-boss .news-list .news-item:hover .pic img {
    transform: scale(1.1);
}

.news-detail-boss .news-list .news-item .pic img {
    width: 100%;
    transition: all .5s;
}

.news-detail-boss .news-list .news-item .time {
    margin-top: 1.042vw;
    font-size: calc(14rem / 16);
    font-weight: bold;
}

.news-detail-boss .news-list .news-item .title {
    margin-top: 3px;
    font-size: calc(20rem / 16);
    /* font-weight: bold; */
}

.news-detail-boss .news-list .news-item .text {
    margin-top: 0.521vw;
    font-size: 14px;
    text-align: justify;
    color: #666666;
}

.recruitment-boss {
    width: 100%;
    margin-top: 70px;
    padding-bottom: 5.208vw;
}

.recruitment-boss .b-title {
    padding: 0 15%;
    margin-top: 3.125vw;
    font-size: calc(38rem / 16);
    font-weight: bold;
}

.recruitment-boss .recruitment-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    padding: 0 15%;
    margin-top: calc(1.042vw + 20px);
}

.recruitment-boss .recruitment-catalogue {
    width: 19.792vw;
    min-height: 36.458vw;
    padding: calc(0.521vw + 10px);
    background-color: #f8f8f8;
}

.recruitment-boss .recruitment-catalogue .title {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: bold;
}

.recruitment-boss .recruitment-catalogue li {
    border-bottom: 1px solid #d9d9d9;
    font-size: 16px;
    line-height: 2.604vw;
    transition: padding .5s, background-color .5s;
}

.recruitment-boss .recruitment-catalogue li:hover {
    padding-left: 15px;
    cursor: pointer;
    background-color: #fff;
    border-left: 2px solid #e10019;
    color: #e10019;
}

.recruitment-boss .recruitment-catalogue li.active {
    padding-left: 15px;
    background-color: #fff;
    border-left: 2px solid #e10019;
    color: #e10019;
}

.recruitment-boss .recruitment-catalogue li a {
    display: inline-block;
    width: 100%;
    height: 100%;
}

.recruitment-boss .recruitment-catalogue li.active a {
    color: #e10019;
}

.recruitment-boss .recruitment-list {
    flex: 1;
    margin-left: calc(1.042vw + 20px);
}

.recruitment-boss .recruitment-list .recruitment-item {
    background-color: #f8f8f8;
}

.recruitment-boss .recruitment-list .recruitment-item .s-title {
    font-size: 16px;
    font-weight: bold;
}

.recruitment-boss .recruitment-list .recruitment-item:not(:first-child) {
    margin-top: calc(0.208vw + 6px);
}

.recruitment-boss .recruitment-list .recruitment-item-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: calc(0.521vw + 10px);
    cursor: pointer;
}

.recruitment-boss .recruitment-list .recruitment-item-top .icon {
    width: calc(0.833vw + 12px);
    height: calc(0.833vw + 12px);
}

.recruitment-boss .recruitment-list .recruitment-item-top .icon img {
    width: 100%;
    height: 100%;
}

.recruitment-boss .recruitment-list .recruitment-item-top .show-down {
    display: none;
}

.recruitment-boss .recruitment-list .recruitment-item-top .put {
    display: none;
}

.recruitment-boss .recruitment-item.hidden .recruitment-item-content {
    display: none;
}

.recruitment-boss .recruitment-item.hidden .recruitment-item-top .show-up {
    display: none;
}

.recruitment-boss .recruitment-item.hidden .recruitment-item-top .show-down {
    display: block;
}

.recruitment-boss .recruitment-item.hidden .recruitment-item-top:hover .put {
    display: block;
}

.recruitment-boss .recruitment-item.hidden .recruitment-item-top:hover .show-down {
    display: none;
}


.recruitment-boss .recruitment-list .recruitment-item-content {
    padding: 0 calc(0.521vw + 10px);
    padding-top: 1.302vw;
    padding-bottom: calc(0.833vw + 9px);
    background-color: #fff;
    border: 1px solid #dbdbdb;
    border-top: none;
    line-height: calc(25rem / 16);
    font-size: 14px;
}

.recruitment-boss .recruitment-list .recruitment-item-content p:has(strong) {
    margin-bottom: 0.521vw;
    font-size: calc(18rem / 16);
    color: rgb(100, 145, 255);
}

.recruitment-boss .recruitment-list .recruitment-item-content strong {
    font-weight: bolder;
}

.recruitment-boss .recruitment-list .recruitment-item-content li {
    margin-left: 1em;
    list-style-type: decimal;
    font-size: calc(15rem / 16);
    line-height: calc(25rem / 16);
}

.recruitment-boss .recruitment-item-content .recruitment-btn a {
    display: inline-block;
    /* width: 7.292vw; */
    padding: 0.729vw calc(1.563vw + 4px);
    margin-top: calc(0.833vw + 9px);
    font-size: calc(14rem / 16);
    background-color: #e10019;
    color: #fff;
    border: 1px solid #dbdbdb;
    border-radius: 4rem;
    transition: all .5s;
}

.recruitment-boss .recruitment-item-content .recruitment-btn a:hover {
    background-color: #a5bfff;
}

.recruitment-boss .page-container {
    margin-left: calc(19.792vw + 1.042vw + 20px);
}

.contact-boss {
    padding-bottom: 5.208vw;
    margin-top: 70px;
}

.contact-boss .b-title {
    font-size: calc(38rem / 16);
    font-weight: bold;
}

.contact-boss .contact-main .b-title {
    padding: 0 15%;
    margin-top: 3.125vw;
    font-size: calc(38rem / 16);
    font-weight: bold;
}

.contact-boss .contact-content {
    width: 100%;
    padding: 0 15%;
    margin-top: calc(1.042vw + 20px);
}

.contact-boss .contact-content .contact-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}

.contact-boss .contact-list .contact-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-left: calc(1.042vw + 5px);
    padding-right: calc(1.042vw + 5px);
    border-left: 1px solid #e5e5e5;
}

.contact-boss .contact-list .contact-item .name {
    font-size: 14px;
}

.contact-boss .contact-list .contact-item .text,
.contact-boss .contact-list .contact-item .text a {
    margin-top: calc(0.313vw + 4px);
    font-size: calc(18rem / 16);
    color: #000;
    word-break: break-all;
}

.contact-boss .contact-list .contact-item .tel {
    margin-top: calc(0.313vw - 1px);
    font-size: calc(30rem / 16);
}

.contact-boss .contact-list .contact-item .icon {
    margin-top: 1.354vw;
}

.contact-boss .contact-list .contact-item .icon img {
    max-width: calc(0.729vw + 13px);
    max-height: calc(0.729vw + 13px);
}

.contact-boss .contact-list .contact-item .text a:hover {
    color: #294896;
}

.contact-boss .contact-content .map {
    margin-top: 4.167vw;
}

.contact-boss .contact-content .map #map-main {
    width: 100%;
    height: 23.958vw;
}

.company-boss {
    width: 100%;
    padding-bottom: 6.250vw;
    margin-top:130px;
}

.company-boss .top-container {
    display: flex;
    justify-content: space-between;
    padding: 0 15%;
    padding-bottom: 5.208vw;
    /* margin-top: 3.125vw; */
    padding-top: 3.125vw;
}

.company-boss .top-container .b-title {
    font-size: calc(38rem / 16);
    font-weight: bold;
}

.company-boss .top-container div {
    width: 40.625vw;
    text-align: justify;
}

.company-boss .top-container div p {
    font-size: 16px;
    line-height: 25px;
}

.company-boss .top-container div p:not(:last-child) {
    margin-bottom: calc(1.042vw + 5px);
}

.company-boss .product-container {
    position: relative;
    width: 100%;
    /* height: 35.417vw; */
    height: 350px;
    margin: 0 auto;
}

.company-boss .product-container .pic {
    position: absolute;
    width: calc(6.875vw + 84px);
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 20%);
}

.company-boss .product-container .pic img {
    width: 100%;
}

.company-boss .team-container {
    padding: 0 15%;
    padding-bottom: 6.250vw;
    /* margin-top: 9.375vw; */
    margin-top: 6.375vw;
    /* padding-top: 3vw; */
}

.company-boss .team-container .b-title {
    font-size: calc(38rem / 16);
    font-weight: bold;
}

.company-boss .team-container .description-text {
    margin-top: calc(1.042vw + 5px);
    font-size: 16px;
    line-height: calc(25rem / 16);
}

.company-boss .team-container .team-main {
    display: flex;
    margin-top: calc(2.083vw + 10px);
}

.company-boss .team-container .team-main .pic {
    width: 21.875vw;
    height: 19.792vw;
    overflow: hidden;
}

.company-boss .team-container .team-main .pic img {
    width: 100%;
}

.company-boss .team-container .team-main .team-content {
    width: calc(100% - 21.875vw);
    padding-left: 2.604vw;
    overflow: hidden;
}

.company-boss .team-container .team-main .team-content-main {
    height: 100%;
    padding-left: 2.604vw;
    padding-right: 5.208vw;
    border-top: 1px solid #d9d9d9;
    border-bottom: 1px solid #d9d9d9;
}

.company-boss .team-main .team-content-swiper {
    position: relative;
    height: 100%;
    overflow: hidden;
    text-align: justify;
    cursor: pointer;
}

.company-boss .team-main .swiper-pagination.team-pagination {
    bottom: calc(2.083vw - 10px);
}

.company-boss .team-main .team-content-swiper .name {
    margin-top: calc(3.125vw + 5px);
    font-size: calc(24rem / 16);
    font-weight: bold;
}

.company-boss .team-main .team-content-swiper .team-posts {
    margin-top: calc(1.042vw - 5px);
    margin-bottom: calc(1.250vw + 1px);
    font-size: 14px;
    color: #666666;
}

.company-boss .team-main .team-content-swiper .team-text p {
    font-size: 16px;
    line-height: calc(25rem / 16);
}

.company-boss .course-container {
    padding: 5.208vw 0;
    overflow: hidden;
}

.company-boss .course-container .b-title {
    margin-left: 15%;
    font-size: calc(38rem / 16);
    font-weight: bold;
    color: #fff;
}

.company-boss .course-container .course-main-swiper {
    width: 80%;
    margin-top: 4.167vw;
    padding-left: 15%;
    cursor: pointer;
}

.company-boss .course-container .course-main-swiper .swiper-slide {
    padding-left: calc(1.563vw + 5px);
    border-left: 2px solid #e10019;
    opacity: .5;
}


.company-boss .course-container .year {
    margin-top: -8px;
    margin-bottom: calc(1.042vw + 5px);
    font-size: calc(38rem / 16);
    font-weight: bold;
    color: #fff;
}

.company-boss .course-container .swiper-slide div p {
    font-size: 16px;
    line-height: 24px;
    color: #eeebeb;
}

.company-boss .course-container .swiper-slide.opa {
    opacity: 1;
}

.company-boss .time-line-list {
    display: flex;
    width: 70%;
    margin: 0 auto;
    margin-top: 4.167vw;
}

.company-boss .time-line-list .time-line-item {
    height: 35px;
    flex: 1;
    text-align: center;
    cursor: pointer;
}

.company-boss .time-line-list .time-line-item p {
    font-size: 14px;
    color: #fff;
}

.company-boss .time-line-list .time-line-item .bg {
    width: 100%;
    height: 16px;
    margin-top: 3px;
    background: url('../image/bg_time_line.png') no-repeat center bottom/cover;
}

.company-boss .time-line-list .time-line-item.active p {
    color: #e10019;
}

.company-boss .corporate-container {
    width: 100%;
    padding-top: 5.208vw;
}

.company-boss .corporate-container .b-title {
    font-size: calc(38rem / 16);
    text-align: center;
    font-weight: bold;
}

.company-boss .corporate-container .corporate-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 15%;
    margin-top: 2.604vw;
}

.company-boss .corporate-container .corporate-list .corporate-item {
    width: 32%;
}

.company-boss .corporate-container .corporate-list .corporate-item .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: calc(4.167vw + 40px);
    background-color: #f5f5f5;
}

.company-boss .corporate-container .corporate-list .corporate-item .icon img {
    max-width: calc(2.396vw + 29px);
    max-height: calc(2.396vw + 22px);
}

.company-boss .corporate-container .corporate-item .s-title {
    padding: 1.042vw 0;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    border-bottom: 1px solid #e6e6e6;
}







/* 表单 */
.dialog-appointment-public {
    position: fixed;
    top: 0;
    left: 0;
    /* display: flex; */
    display: none;

    z-index: 6;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .3);
}

.dialog-appointment-public .dialog-main {
    position: relative;
    height: 100%;
    padding: 0 15%;
    padding-top: 10%;
    padding-bottom: 10%;
    /* padding-top: 50%; */
    overflow: auto;
}

.dialog-appointment-public .dialog-box {
    /* display: none; */
    width: 100%;
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    /* justify-content: center; */
    /* padding-top: 10%;
    padding-bottom: 10%; */
    /* height: 100%; */
}

.dialog-appointment-public .top-content {
    display: flex;
}

.dialog-appointment-public .top-content .left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 2.604vw;
    padding-bottom: 2.083vw;
    padding-left: 2.604vw;
    padding-right: 5.208vw;
    background-color: #f5f5f5;
}

.dialog-appointment-public .top-content .left .b-title {
    font-size: calc(32rem / 16);
    color: #000;
    font-weight: bold;
}

.dialog-appointment-public .top-content .left .text {
    margin-top: calc(0.521vw + 10px);
    font-size: calc(16rem / 16);
    text-align: justify;
}

.dialog-appointment-public .top-content .left ul {
    margin-top: calc(0.521vw + 10px);
    font-size: calc(16rem / 16);
    color: #333333;
}

.dialog-appointment-public .top-content .left ul li {
    position: relative;
    margin-left: calc(0.521vw + 5px);
}

.dialog-appointment-public .top-content .left ul li:not(:last-child) {
    margin-bottom: calc(0.313vw + 2px);
}

.dialog-appointment-public .top-content .left ul li::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(calc(-0.521vw - 5px), -50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #e10019;
}

.dialog-appointment-public .top-content .pic {
    /* width: 16.823vw; */
}

.dialog-appointment-public .top-content .pic img {
    /* min-width: 100%; */
    min-height: 100%;
}

.dialog-appointment-public .table-content {
    width: 100%;
    padding-top: 2.083vw;
    padding-bottom: 2.604vw;
    background-color: #fff;
}

.dialog-appointment-public .table-content .s-title {
    margin-bottom: 1.563vw;
    font-size: calc(18rem / 16);
    font-weight: bold;
    text-align: center;
}

.dialog-appointment-public .no-top-content .b-title {
    margin-top: 1.042vw;
    font-size: calc(32rem / 16);
    font-weight: bold;
    text-align: center;
    color: #000;
}

.dialog-appointment-public .no-top-content .text {
    margin-top: 1.042vw;
    margin-bottom: calc(1.563vw + 5px);
    font-size: 16px;
    text-align: center;
    color: #000;
}

.dialog-appointment-public .table-main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 80%;
    margin: 0 auto;
}

.dialog-appointment-public .table-main .table-item {
    width: 48%;
    margin-bottom: calc(0.521vw + 5px);
}

.dialog-appointment-public .table-main .table-item .name {
    position: relative;
    margin-bottom: calc(0.313vw + 2px);
    font-size: 14px;
    color: #000;
}

.dialog-appointment-public .table-main .table-item .name.required::after {
    content: '*';
    color: #e30613;
}

.dialog-appointment-public .table-main input {
    width: 100%;
    height: calc(1.042vw + 20px);
    padding-left: 10px;
    border: 1px solid #d9d9d9;
}

.dialog-appointment-public .table-main input:focus {
    border-color: #92b2ff;
    background-color: #f3f3f3;
}

.dialog-appointment-public .table-main .select-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    height: calc(1.042vw + 20px);
    padding-right: 10px;
    border: 1px solid #d9d9d9;
    cursor: pointer;
}

.dialog-appointment-public .table-main .select-content:hover {
    background-color: #f3f3f3;
}

.dialog-appointment-public .table-main .select-content .icon-arrow {
    width: 10px;
    height: 6px;
}

.dialog-appointment-public .table-main .select-content ul {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    display: none;
    width: 100%;
    background-color: #fff;
    border-left: 1px solid #d9d9d9;
    border-right: 1px solid #d9d9d9;
}

.dialog-appointment-public .table-main .select-content ul li {
    padding: 5px 0;
    padding-left: 10px;
    font-size: calc(14rem / 16);
    border-bottom: 1px solid #d9d9d9;
}

.dialog-appointment-public .table-main .select-content ul li:hover {
    background-color: #f3f3f3;
    cursor: pointer;
}

.verification-container {
    display: flex;
    align-items: center;
}

.verification-container .left-box {
    flex: 1;
}

.verification-container .right-box {
    height: calc(1.042vw + 20px);
}

.verification-container .right-box img {
    height: 100%;
    transform: scale(1.5);
    transform-origin: left center;
}

.dialog-appointment-public .dialog-close-btn {
    width: calc(0.938vw + 29px);
    height: calc(0.938vw + 29px);
    margin: 0 auto;
    margin-top: 2.083vw;
    cursor: pointer;
    border-radius: 50%;
    transition: all .5s;
}

.dialog-appointment-public .dialog-close-btn img {
    width: 100%;
}

.dialog-appointment-public .dialog-close-btn:hover {
    background-color: #e30613;
}

.dialog-appointment-public .btn-content {
    margin-top: calc(0.521vw + 5px);
    text-align: center;
}

.dialog-appointment-public .sub-btn {
    padding: calc(0.521vw + 3px) 3.542vw;
    background-color: #e30613;
    font-size: 14px;
    color: #fff;
}

form .errors {
    display: none;
}

.search-container {
    margin-top: 70px;
}

.search-container .main {
    width: 100%;
    padding: 0 15%;
    padding-top: 100px;
}

.search-container .searchForm {
    display: flex;
    justify-content: center;
}

.search-container .searchText {
    width: 400px;
    height: 40px;
    padding-left: 10px;
    border: 1px solid #c1c1c1;
}

.search-container .searchBtn {
    width: 60px;
    border: 1px solid #c1c1c1;
    border-left: none;
    font-size: calc(14rem / 16);
    transition: all .5s;
}

.search-container .searchBtn:hover {
    background-color: #e10019;
    color: #fff;
}

.search-container .news-list {
    display: flex;
    flex-wrap: wrap;
    margin-top: 3.125vw;
}

.search-container .news-list .news-item {
    width: calc(33.3% - 2.083vw / 3);
    margin-bottom: 4.167vw;
}

.search-container .news-list .news-item a.to-detail {
    display: inline-block;
    width: 100%;
    height: 100%;
}

.search-container .news-list .news-item:nth-of-type(3n + 1) {
    padding-right: 2.083vw;
}

.search-container .news-list .news-item:nth-of-type(3n + 2) {
    width: calc(33.3% + 2.083vw / 2);
    padding: 0 2.083vw;
    border-left: 1px solid #e6e6e6;
}

.search-container .news-list .news-item:nth-of-type(3n + 3) {
    padding-left: 2.083vw;
    border-left: 1px solid #e6e6e6;
}

.search-container .news-list .news-item .pic {
    width: 100%;
    height: 11.979vw;
    overflow: hidden;
}

.search-container .news-list .news-item a:hover .pic img {
    transform: scale(1.1);
}

.search-container .news-list .news-item .pic img {
    width: 100%;
    transition: all .5s;
}

.search-container .news-list .news-item .time {
    margin-top: 1.042vw;
    font-size: calc(14rem / 16);
    font-weight: bold;
}

.search-container .news-list .news-item .title {
    margin-top: 3px;
    font-size: calc(24rem / 16);
    font-weight: bold;
}

.search-container .news-list .news-item .text {
    margin-top: 0.521vw;
    font-size: calc(14rem / 16);
    color: #666666;
    text-align: justify;
}

.search-container .search-error,
.search-container .search-result-empty {
    width: 100%;
    height: 300px;
    margin-top: 100px;
    font-size: calc(20rem / 16);
    text-align: center;
}

.search-container .page-container {
    margin-bottom: 5vw;
}

.index-boss .logo-wall .logo-list {
    display: flex;
    flex-wrap: wrap;
    padding: 0 15%;
    padding-top: 3.125vw;
    padding-bottom: 3.646vw;
}

.index-boss .logo-wall .logo-list .logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18%;
    height: calc(4.167vw + 20px);
    padding: calc(0.521vw + 10px) 0;
    margin-bottom: calc(1.354vw + 4px);
    border: 1px solid #dedede;
    border-radius: 1.042vw;
}

.index-boss .logo-wall .logo-list .logo-item:not(:nth-child(5n + 5)) {
    margin-right: 2.5%;
}

.index-boss .logo-wall .logo-list .logo-item img {
    max-width: 90%;
    max-height: 90%;
}

.serve-boss .expert-container .serve-list .add-text {
    width: 90%;
    margin: 0 auto;
    margin-top: 15px;
    font-size: 14px;
    text-align: justify;
    color: #707070;
}