h2,h3{
    margin: 0;
}

/* 模态框样式 */
.modal {
    display: none; /* 默认隐藏 */
    position: fixed;
    z-index: 1000;
    left: 50%;
    top: 10%;
    transform: translate(-50%, -50%);
    padding: 20px;
    background: #16b777;
    color: white;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    opacity: 0; /* 初始透明度为0 */
    animation: fadeIn 1s forwards; /* 1秒的淡入动画 */
}

/* 模态框背景 */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: 999;
    opacity: 0; /* 初始透明度为0 */
    animation: fadeInOverlay 1s forwards; /* 背景淡入动画 */
}

/* 淡入动画 */
@keyframes fadeIn {
    to {
        opacity: 1; /* 结束时透明度为1 */
    }
}

/* 背景淡入动画 */
@keyframes fadeInOverlay {
    to {
        opacity: 1; /* 背景的透明度变为1 */
    }
}

.index-bg {
    width: 100%;
    height: 500px;
    background: url('../images/index_bg_3.jpg') no-repeat fixed 50% 50%;
    background-size: cover;  /* 确保背景图片宽高比例不被破坏 */
    /*filter: hue-rotate(90deg);*/
}

/* header样式开始 */
.index-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 75px;
}

.index-header-left {
    /*width: 20%;*/
    /*background-color: pink;*/
}

.index-header-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    /*margin-left: 30px;*/
    font-weight: 600;
    font-size: 22px;
    /*color: #EAFBF9;*/
    color: #FFFFFF;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15),
    0 0 6px rgba(255, 255, 255, 0.3);
}

.index-header-logo img{
    margin-right: 10px;
    width: 30px;
    object-fit: contain; /* 保持比例完整显示 */
}


.index-header-right {
    display: flex;
    align-items: center;
    /*width: 80%;*/
    height: 100%;
}

.index-header-menu {
    /*margin-left: 260px;*/
    height: 100%;
    flex: 1;
}

.index-header-login {
    display: flex;
    justify-content: center;
    /*width: 10%;*/
    height: 100%;
}

.index-header-login a {
    color: var(--main-font-color-2);
}

.index-header-right ul {
    display: flex;
    height: 100%;
}

.index-header-right a {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 20px;
    color: #EAFBF9;
    font-size: 16px;
    font-weight: 700;
}

.index-header-right a:hover {
    /*color: var(--main-font-color-1);*/
    font-weight: bold;
    color: var(--main-500);
}

/* header样式结束 */

/* 农历样式开始 */
.index-welcome{
    display: flex;
    margin-top: 30px;
}

.index-lunar{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: auto;
    color: white;
}
/* 农历样式结束 */


/*文章列表样式start*/
.index-article-box,.index-article-left,.index-article-right{
    display: flex;
}

.index-article-box{
    margin-top: 15px;
}

.index-article-left{
    width: 650px;
    background-color: pink;
}

.index-article-right{
    flex: 1;
    background-color: skyblue;
}

/*文章列表样式end*/

/*首页标语样式start*/
.main-box{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.main-title{
    display: flex;
    justify-content: center;
    margin-top: 50px;
    color: #222;
}

.main-title h1{
    font-size: 46px;
    font-weight: 700;
}

.main-title-upx{
    color: var(--main-500);
    font-weight: 800;
}

.sub-title{
    display: flex;
    justify-content: center;
    /*margin-top: 50px;*/
    font-size: 16px;
    color: #444;
    font-weight: 400;
    line-height: 1.8;
}

.main-btn{
    display: flex;
    justify-content: center;
    margin: 24px 0;
    gap: 20px;
}

.main-trust{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.main-trust span{
    display: inline-flex;
    align-items: center;
    padding: 9px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.08);
    color: var(--main-800);
    font-size: 12px;
    font-weight: 500;
}
/*首页标语样式结束end*/

/*核心功能样式start*/
.section-feature{
    margin-bottom: 80px;
}

.feature-title{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 48px 0;
}

.feature-title h2{
    font-size: 2rem;
    font-weight: 700;
    color: #222;
}

.feature-sub-title{
    width: 600px;
    color: var(--gray-6);
    text-align: center;
    font-size: 16px;
    line-height: 28px;
}

.features{
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 0 50px;
}

.feature-item{
    display: flex;
    align-items: center;
    margin-right: 20px;
    margin-bottom: 20px;
    border: 1px solid var(--gray-2);
    border-radius: 10px;
    height: 120px;
    width: 45%;
}

.feature-item:hover{
    /*border: 1px solid var(--main-500);*/
    /*border-color: var(--main-500);*/
    /*box-shadow: 0 8px 15px rgba(74, 108, 247, 0.2);*/
    /*transform: translateY(-1px);*/

    /*background: linear-gradient(to right, white, #f8f9fa);*/

    background: linear-gradient(45deg,var(--gray-2), white);
    /*box-shadow: 0 8px 15px rgba(74, 108, 247, 0.15);*/
}

.feature-btn.ghost:hover{
    background: linear-gradient(45deg,var(--main-200), white);
}

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

.feature-item-l img{
    margin: 0 20px;
    width: 60px;
}

.feature-item-r{
    display: flex;
    flex-direction: column;
    /*margin-left: 15px;*/
    /*padding-top: 15px;*/
}

.feature-item-title{
    font-size: 18px;
    font-weight: 500;
}

.feature-item-content{
    color: var(--gray-6);
}

/*核心功能样式end*/

/*为什么选择upx? start*/
.f-table{
    display: flex;
    width: 100%;
    flex-direction: column;
    border: 1px solid var(--gray-3);
    border-radius: 12px;
    overflow: hidden;
}

.table-row{
    display: flex;
    width: 100%;
    height: 58px;
}

.table-title{
    background-color: var(--gray-2);
}

.table-cell-l,.table-cell-m,.table-cell-r{
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: 1px solid var(--gray-3);   /*所有的右侧划线*/
    border-bottom: 1px solid var(--gray-3);  /*所有的底部划线*/
}

.table-cell-l:hover,.table-cell-m:hover,.table-cell-r:hover{
    background-color: var(--gray-1);
}


/* 最后一行不画底线 */
.table-row:last-child .table-cell-l,
.table-row:last-child .table-cell-m,
.table-row:last-child .table-cell-r {
    border-bottom: none;
}

/* 最后边一列不划右线 */
.table-cell-r{
    border-right: none;
}

.table-cell-l{
    /*border-left: 1px solid var(--gray-3);  !*第一列左侧划线*!*/
    width: 20%;
}
.table-cell-m{
    width: 40%;
}
.table-cell-r{
    width: 40%;
}


/*为什么选择upx? end*/

/* 全流程服务 */
.feature-card-head{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-top: 50px;
    margin-bottom: 30px;
}

.feature-btn {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid transparent;
}
.feature-btn.primary{
    margin-right: 5px;
    background: var(--main-300);
    color: #fff;
    box-shadow: 0 6px 18px rgba(0,168,132,0.12);
}

.feature-btn.primary:hover{
    background: var(--main-500);
}

.feature-btn.ghost{
    background: transparent;
    border: 1px solid #e6eef0;
}

.feature-btn.index{
    margin-right: 5px;
    background: var(--main-500);
    color: #fff;
    box-shadow: 0 6px 18px rgba(0,168,132,0.12);
}

.feature-btn.index:hover{
    background-color: var(--main-600);
}


.feature-card,.three-card{
    display: flex;
    flex-direction: row;
}

.f-card,.t-card {
    padding: 28px 20px;
    margin: 0 10px;
    transition: transform .2s ease, box-shadow .2s ease;
    background-color: var(--gray-2);
    text-align: center;
    border-radius: 12px;
}

.f-card:hover,.t-card:hover{
    transform: translateY(-1px);
    box-shadow: 0 7px 15px rgba(16,24,40,0.08);
}

.f-card img{
    width: 100%;
}

.t-card img{
    width: 20%;
}

.f-card{
    width: 220px;
}

.t-card{
    width: 300px;
}

/*全流程*/
.service-card{
    display: flex;
    padding: 50px 0;
    margin-bottom: 50px;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--gray-2);
    border-radius: 10px;
}

.service-card:hover{
    background: var(--gray-1);
}

.s-card{
    width: 120px;
    text-align: center;
}

.s-card img{
    width: 35%;
}

.arrow-line {
    width: 24px;
    height: 2px;
    position: relative;
    margin: -20px 10px 0 10px;

    background: var(--gray-4);
}

.arrow-line::after {
    content: "";
    position: absolute;
    right: -1px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-top: 2px solid var(--gray-4);
    border-right: 2px solid var(--gray-4);
    transform: translateY(-50%) rotate(45deg);
}


/*现在开始start*/
.start-now{
    background-color: var(--gray-1);
}

.start-now-cent {
    text-align: center;
}

.start-now-cent p{
    margin-top: -20px;
    margin-bottom: 28px;
    color: var(--gray-6);
}

.start-now-padding{
    padding-top: 2px;
    padding-bottom: 36px;
}
/*现在开始end*/

/* 数字服务开始 */
.features-icon-items{
    width: 300px;
    padding: 32px;
    margin: 12px;
    background-color: white;
    border: 1px solid var(--gray-2);
    border-radius: 12px;
}

.features-icon-items:hover{
    transform: translateY(-1px);
    box-shadow: 0 7px 15px rgba(16,24,40,0.08);
}

.index-icon-box{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 16px;
}

.blue-box{
    border: 1px solid #BBD5E1FF;
    background-color: var(--gray-2);
}

.index-icon-box img{
    width: 32px;
    height: 32px;
}

.feature-box-sub-title{
    line-height: 1.5;
    letter-spacing: 1px;
    color: var(--gray-6);
}

.feature-ul-box{
    margin-top: 12px;
}

.feature-ul-box ul{
    display: flex;
    flex-wrap: wrap;
}

.feature-ul-box li{
    display: inline-block;
    width: 49%;
    margin-top: 5px;
}

.feature-gt{
    margin-right: 3px;
    color: var(--main-300);
}

.feature-li-title{
    color: var(--gray-9);
}
/* 数字服务结束 */


.wu-tag{
    display: inline-block;
    background: rgba(59, 130, 246, 0.08);
    color: var(--main-500);
    font-size: 12px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 100px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.wu-margin-100{
    margin: 12px 0;
}