:root {
    --theme-color: #4963F6;
}

html {
    overflow-x: hidden;
    overflow-y: scroll;
    background: #F3F3F3;
}

* {
    box-sizing: border-box;
    transition: all 0.3s;
}

a {
    text-decoration: none;
}

body,
dl,
dt,
dd,
ul,
ol,
li,
pre,
form,
fieldset,
input,
p,
blockquote,
th,
td {
    font-weight: 400;
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h4,
h5 {
    margin: 0;
    padding: 0;
}

p {
    word-wrap: break-word
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

ol,
ul {
    list-style-image: none;
    list-style-position: outside;
    list-style-type: none;
}

.wl-container {
    width: 92%;
    max-width: 800px;
    margin: auto;
}

.padd {
    padding: 30px 0;
}

.cursor_pointer {
    cursor: pointer;
}

.w100 {
    width: 100%;
}

/* 导航栏容器 */

.ellipsis1 {
    word-break: break-all;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.ellipsis2 {
    word-break: break-all;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

/*flex*/
.flex1 {
    flex: 1;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex {
    display: -webkit-box;
    /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
    display: -moz-box;
    /* Firefox 17- */
    display: -webkit-flex;
    /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
    display: -moz-flex;
    /* Firefox 18+ */
    display: -ms-flexbox;
    /* IE 10 */
    display: flex;
    /* Chrome 29+, Firefox 22+, IE 11+, Opera 12.1/17/18, Android 4.4+ */
}

.flex-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
}

.flex-end {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
}

.space-between {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.flex-start {
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
}

.align-items_flex-end {
    -webkit-box-align: end;
    -ms-flex-align: end;
    -webkit-align-items: flex-end;
    align-items: flex-end;
}

.align-items_center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.align-items_baseline {
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    -webkit-align-items: baseline;
    align-items: baseline;
}

.flex-direction_column {
    flex-direction: column;
}



.nav-link:focus .nav-link:active {
    outline: none !important;
    box-shadow: none !important;
    background: #000 !important;
}

.navbar {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: all 0.3s ease;
    background-color: #fff;
    color: #000;
}

.navbar .language {
    margin-left: 40px;
}

.navbar .language a {
    font-size: 14px;
    color: #333;
    padding: 0 12px;
    height: 25px;
    line-height: 25px;
}

.navbar .language a:nth-child(1) {
    border-radius: 2em 0 0 2em;
    background: var(--theme-color);
}

.navbar .language a:nth-child(2) {
    border-radius: 0 2em 2em 0;
    background: #f4f4f4;
}



/* 滚动后的导航栏样式 */
.navbar.scrolled {
    background-color: #ffff;
    color: #333;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* 导航栏内容容器 */
.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    height: 80px;
    width: 90%;
}

.navbar:hover {
    background: #fff;
}

/* 品牌logo/名称 */
.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    color: #000;
}

.navbar-brand img {
    height: 60px;
    display: block;
}

/* 导航菜单 */
.navbar-menu {
    display: flex;
    list-style: none;
    column-gap: 4%;
    padding: 0;
    flex: 1;
    margin-left: 4%;
}



/* 导航项 */

.nav-link {
    text-decoration: none;
    color: #000;
    position: relative;
    transition: color 0.3s;
    font-size: 18px;
    line-height: 80px;
    height: 80px;
    display: block;
}

.nav-item.active .nav-link {
    font-weight: bold;
}

.nav-item.current::after {
    position: absolute;
    content: '';
    width: 110%;
    height: 3px;
    background: var(--theme-color);
    bottom: 0;
    left: -5%;
}

.nav-link:hover {
    color: var(--theme-color);
}

.nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0%;
    height: 3px;
    background: var(--theme-color);
    bottom: 0;
    left: -5%;
    transition: all 0.3s;
    opacity: 0;
}

.nav-item:hover .nav-link::before {
    opacity: 1;
    width: 110%;
}

.nav-item {
    position: relative;
}

/* 二级菜单容器 */
.dropdown {
    position: absolute;
    top: 100%;
    left: -20px;
    width: 200px;
    background-color: #fff;
    color: #333;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.5s ease, opacity 0.3s ease;
    opacity: 0;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 10px 10px;
}

/* 鼠标悬停时显示二级菜单 */
.nav-item:hover .dropdown {
    max-height: 100vh;
    opacity: 1;
}

/* 二级菜单内容容器 */
.dropdown-content {
    padding: 20px;
    max-width: 1200px;
    margin: auto;
}

/* 二级菜单列 */
.dropdown-column {
    flex: 1;
}

.dropdown-column h3 {
    margin-bottom: 15px;
    color: #333;
    font-size: 1.1rem;
}

.dropdown-column a {
    display: block;
    color: #666;
    padding: 5px 0;
    text-decoration: none;
    transition: color 0.3s;
}

.dropdown-column a:hover {
    color: var(--theme-color);
}

/* 移动端菜单按钮 */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #000;
    font-size: 1.5rem;
    cursor: pointer;
}

.nav_pro_list {
    display: flex;
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap: 20px;
}

.nav_pro_list .item {
    display: block;
    width: calc((100% - 80px) / 5);
}

.nav_pro_list .item .img {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    overflow: hidden;
    border-radius: 10px;
}

.nav_pro_list .item .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.3s;
}

.nav_pro_list .item:hover .img img {
    transform: scale(1.1);
}

.nav_pro_list .item:hover .img {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.nav_pro_list .item .t {
    font-size: 16px;
    text-align: center;
    margin-top: 15px;
}

.nav_pro_list .item:hover .t {
    color: #78312B;
}


.navbar .search {
    border-radius: 2em;
    border: 1px solid #eee;
    padding: 0 10px;
    height: 36px;
}

.navbar .search .submit,
.navbar .search .input {
    border: none;
    font-size: 14px;
    background: #fff;
}

.navbar .search .input {
    width: 130px;
    outline: none;
}

.navbar .search .submit {
    cursor: pointer;
    column-gap: 5px;
}

.navbar .search .submit svg {
    width: 14px;
    height: 14px;
    fill: #000;
}

.navbar .search .submit:hover {
    color: var(--theme-color);
}

.navbar .search .submit:hover svg {
    fill: var(--theme-color);
}


/* 移动端样式 */
@media (max-width: 768px) {
    .padd {
        padding: 40px 0;
    }

    .navbar-container {
        padding: 0 4%;
        height: 60px;
    }

    .navbar-menu {
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #fff;
        color: #333;
        flex-direction: column;
        align-items: flex-start;
        padding: 0 20px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    }

    .nav-item:hover .dropdown {
        max-height: 0;
    }

    .navbar-menu.active {
        max-height: calc(100vh - 60px);
        overflow-y: scroll;
        justify-content: flex-start;
    }

    .nav-item .nav-link::before {
        display: none;
    }



    .nav-item {
        width: 100%;
        margin: 0;
        padding: 15px 0;
        border-bottom: 1px solid #eee;
    }

    .nav-link {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        position: relative;
        line-height: 40px;
        height: 40px;
    }

    .dropdown {
        position: static;
        width: 100%;
        transform: none;
        max-height: 0;
        background-color: #f9f9f9;
        box-shadow: none;
    }

    .dropdown.active {
        max-height: 100vh !important;
        opacity: 1 !important;
        margin-top: 10px;
        overflow-y: scroll;
    }

    .dropdown-content {
        padding: 15px;
        flex-direction: column;
    }

    .dropdown-column {
        width: 100%;
        padding: 0;
    }

    .menu-toggle {
        display: block;
    }

    .nav-item.current::after {
        display: none;
    }

    /* 添加箭头图标 */
    .has-dropdown .nav-link::after {
        content: '+';
        font-size: 20px;
        transition: transform 0.3s;
    }

    .has-dropdown.active .nav-link::after {
        content: '-';
        width: auto;
        height: auto;
        right: 0;
        bottom: auto;
        background: transparent;
        color: #000;
        left: auto;
    }

    .nav_pro_list .item {
        width: calc((100% - 20px) / 2);
    }

    .navbar-brand img {
        height: 52px;
    }


}

.swiper-button-next,
.swiper-button-prev {
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    transition: all 0.3s;
}

.swiper-button-next:after,
.swiper-button-prev::after {
    font-size: 20px;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--theme-color);
}

.swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    border: 1px solid var(--theme-color);
    opacity: 1;
    background: transparent;
    margin: 0 6px !important;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--theme-color);
}

.banner {
    position: relative;
}

.banner .swiper-pagination {
    bottom: 20px;
}

.banner img {
    width: 100%;
    display: block;
}



.img-container {
    width: 100%;
    padding-bottom: 100%;
    position: relative;
    overflow: hidden;
}

.img-container img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s;
    transform: translate(-50%, -50%);
}



.single-page {
    line-height: 1.8;
    font-size: 16px;
    max-width: 1000px;
    margin: auto;
}

.single-page p {
    text-indent: 2em;
}



.footer_bg {
    height: 60px;
}

.footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 60px;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, .1);
    z-index: 9;
    background-color: #fff;
}

.footer .item {
    width: 50%;
    font-size: 13px;
    text-align: center;
    color: #666;
    background: none;
    position: relative;
    padding: 0;
    font-weight: normal;
    overflow: visible;
}

.footer .item .icon {
    line-height: 30px;
    height: 30px;
}

.footer .item .icon svg {
    width: 25px;
    height: 25px;
    fill: #999;
}

.footer .item.on .icon svg {
    fill: var(--theme-color);
}


/* 响应式设计 */
@media (max-width: 768px) {}


/* 首页 */
.zxgg {
    background: #fff;
    margin: 10px 0;
}

.zxgg .top_title {
    padding: 15px 4%;
}

.zxgg .top_title .title {
    font-size: 16px;
    font-weight: bold;
    padding-left: 12px;
    position: relative;
    line-height: 1;
    color: #000;
}

.zxgg .top_title .title::before {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 3px;
    height: 100%;
    border-radius: 10px;
    background: var(--theme-color);
}

.zxgg .top_title .more {
    font-size: 14px;
    color: #999;
    line-height: 1;
}

.gg_list .item {
    padding: 12px 4%;
    border-top: 1px solid #eee;
}

.gg_list .item .new {
    font-size: 12px;
    border-radius: 4px;
    border: 1px solid var(--theme-color);
    color: var(--theme-color);
    margin-right: 10px;
    padding: 3px 4px;
}

.gg_list .item .title {
    word-break: break-all;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    margin-right: 5px;
    font-size: 14px;
    color: #000;
}

.gg_list .item .date {
    font-size: 12px;
    color: #999;
}

.main {
    background: #fff;
    padding: 15px 4%;
}

.main .title {
    font-size: 16px;
    font-weight: bold;
}

.main .title .icon {
    border-radius: 50%;
    width: 25px;
    height: 25px;
    color: #fff;
    background: var(--theme-color);
    font-size: 15px;
    text-align: center;
    line-height: 25px;
    margin-right: 5px;
}

.search {
    margin: 20px 0 12.5px;
}

.search input {
    border: 1px solid var(--theme-color);
    font-size: 14px;
    border-radius: 2em 0 0 2em;
    height: 36px;
    line-height: 36px;
    box-sizing: border-box;
    padding-left: 15px;
    outline: none;
}

.search .btn {
    background: var(--theme-color);
    color: #fff;
    width: auto;
    margin: 0;
    font-size: 15px;
    border-radius: 0 2em 2em 0;
    padding: 0 20px;
    height: 36px;
    line-height: 36px;
    border: none;
}

.main .yrz {
    font-size: 15px;
    color: #999;
}

.main .yrz .num {
    color: var(--theme-color);
}

.wxts {
    color: #888;
    font-size: 13px;
    line-height: 1.6;
    margin-top: 15px;
}

.left_tsjy .btn {
    color: #fff;
    border-radius: 4px;
    background: var(--theme-color);
    font-size: 13px;
    padding: 5px 15px;
}

.left_tsjy .t {
    font-size: 12px;
    margin-top: 5px;
    color: #999;
}

.right_kfdh .icon {
    width: 33px;
    height: 33px;
    border: 2px solid #000;
    border-radius: 50%;
    font-size: 22px;
}

.right_kfdh .t {
    font-size: 15px;
    margin-top: 12.5px;
    font-weight: bold;
}

.right_kfdh .tt {
    font-size: 12px;
    color: #000;
}

/* 新闻详情 */
.news_detail .title {
    margin: 15px 0 10px;
    font-size: 18px;
    font-weight: bold;
}

.news_detail .time {
    font-size: 13px;
    color: #999;
    margin-right: 13px;
}

.news_detail .zz {
    font-size: 14px;
    color: #999;
}

.news_detail .cont {
    line-height: 1.6;
    font-size: 14px;
    margin-top: 15px;
}

/* 个人中心 */
.profile_top {
    position: relative;
    z-index: 1;
}

.profile_top_bg {
    display: block;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    z-index: -1;
}

.navbar .van-nav-bar {
    background: none;
}

.van-hairline--bottom:after {
    display: none;
}

.navbar .van-nav-bar__title {
    color: #000;
}

.profile_top_box {
    padding: 40px 0 50px;
}

.profile_top_box .image {
    position: relative;
    margin: 0 12px 0 0;
    width: auto;
    height: auto;
    overflow: visible;
    padding: 0;
    background: none;
    border: none;
}

.profile_top_box .image img {
    width: 66px;
    height: 66px;
    border-radius: 50%;
    display: block;
}

.profile_top_box .name {
    font-size: 17px;
    font-weight: bold;
    color: #000;
}

.profile_top_box .nickname {
    font-size: 13px;
    margin: 2px 0;
    width: auto;
}

.profile_top_box .tel {
    font-size: 14px;
    color: #999;
}

.profile_bom .item {
    padding: 15px 4%;
    color: #000;
    font-size: 15px;
    font-weight: initial;
    width: 100%;
    background: #fff;
    box-sizing: border-box;
    border: none;
}

.profile_bom .item .icon {
    width: 8px;
    height: 8px;
}

.profile_bom .item .p {
    font-size: 16px;
    color: #000;
    margin-left: 10px;
}

/* 公司列表 */
.company_list .item {
    border-radius: 8px;
    background: #fff;
    padding: 15px;
    display: block;
    margin-top: 15px;
}

.company_list .item .name {
    font-size: 15px;
    flex: 1;
    color: #000;
}

.company_list .item .ljrz {
    background: var(--theme-color);
    color: #fff;
    font-size: 14px;
    padding: 5px 10px;
    margin-left: 10px;
    border-radius: 4px;
}

.company_list .item .option {
    font-size: 14px;
    width: 33.33%;
    margin: 20px 0;
    color: #000;
}

.company_list .item .option .t {
    color: #999;
    margin-bottom: 10px;
}

.company_list .item .xydm {
    font-size: 14px;
    color: #000;
}

.company_list .item .xydm .num {
    color: #6F7283;
}

/* 公司详情 */
.footer .kefu {
    font-size: 16px;
    color: var(--theme-color);
    column-gap: 5px;
}

.footer .kefu van-icon {
    font-size: 26px;
    margin-right: 5px;
}

.footer .ljzf {
    font-size: 15px;
    border-radius: 2em;
    background: var(--theme-color);
    color: #fff;
    padding: 12.5px 20px;
}

.top_title {
    color: #fff;
    font-size: 16px;
    position: relative;
    padding: 20px 4%;
    font-weight: bold;
}

.top_title::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 20vh;
    background: var(--theme-color);
    top: 0;
    left: 0;
    border-radius: 0 0 40px 40px;
    z-index: -1;
}

.top_info {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .1);
}

.top_info .company_info {
    padding: 15px 20px 10px;
}

.top_info .company_info .name {
    font-size: 16px;
    color: #E00A08;
    margin-bottom: 10px;
    font-weight: bold;
}

.top_info .company_info .xydm,
.top_info .company_info .jyz {
    font-size: 15px;
    margin-bottom: 10px;
}

.top_info .image_box {
    padding: 10px;
}

.top_info .image_box image {
    width: 100%;
}

.tab {
    padding: 10px;
}

.tab_nav {
    padding: 7px 8px;
    background: #EFEFEF;
}

.tab_nav .item {
    text-align: center;
    line-height: 36px;
    font-size: 13px;
    margin-right: 10px;
    padding: 0 10px;
    border-radius: 4px;
}

.tab_nav .item.selected {
    background: #fff;
    font-weight: bold;
    color: var(--theme-color);
}

.cont_item {
    padding: 15px 0 0;
}

.cont_item .p {
    font-size: 16px;
    margin-bottom: 10px;
}

.cont_item .p .black {
    font-weight: bold;
}

.cont_item .p .red {
    font-size: 12px;
    color: #f00;
}

.cont_item .p .red .num {
    font-size: 16px;
    font-weight: bold;
}


/* 登录 */
.login-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 30px;
    text-align: center;
    margin-top: 40px;
}

.form-container {
    background: #fff;
    border-radius: 10px;
    width: 100%;
    padding: 25px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.input-group {
    position: relative;
    margin-bottom: 20px;
}

.input-group:last-of-type {
    margin-bottom: 25px;
}

.input-label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #666;
    font-weight: bold;
}

.input-field {
    width: 100%;
    height: 50px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 0 15px 0 45px;
    font-size: 16px;
    color: #333;
    background: #f9f9f9;
}

.input-field:focus {
    outline: none;
    border-color: var(--theme-color);
    background: white;
    box-shadow: 0 0 0 3px rgba(8, 125, 241, 0.1);
}

.input-field::placeholder {
    color: #aaa;
}

.input-wrapper {
    position: relative;
}

.input-wrapper .icon {
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #087df1;
    text-align: center;
}

.input-wrapper .icon svg {
    width: 16px;
    height: 16px;
    fill: var(--theme-color);
}


/* 登录按钮 */
.login-btn {
    margin-top: 30px;
    width: 100%;
    height: 50px;
    background: linear-gradient(to right, #3498db 0%, #087df1 100%);
    border: none;
    border-radius: 2em;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(8, 125, 241, 0.3);
}