*{
    margin: 0;
    padding: 0;
}
.xzyw2-body {
    font-family: "PingFang SC", "Helvetica Neue", Arial, sans-serif;
    background-color: #f5f5f5;
    color: #333333;
    line-height: 1.5;
    padding: 0;
    margin: 0;
    min-height: 100vh;
}

.xzyw2-container {
    width: 90%;
    /* max-width: 500px; */
    margin: 0 auto;
    padding: 5px 16px 100px;
    display: flex;
    flex-direction: column;
}

.xzyw2-header {
    margin-bottom: 16px;
    padding-top: 10px;
    flex-shrink: 0;
}

.xzyw2-header h1 {
    font-size: 18px;
    font-weight: 700;
    color: #333333;
    text-align: left;
}

.xzyw2-header p {
    font-size: 0.9rem;
    color: #999999;
    text-align: center;
    margin-top: 8px;
}

/* 卡片区域 - 放在上边 */
.xzyw2-cards-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

/* 业务卡片样式 */
.xzyw2-business-card {
    display: block;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 16px;
    margin-bottom: 16px;
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.xzyw2-business-card:hover, .xzyw2-business-card:active {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.xzyw2-card-content {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.xzyw2-card-icon {
    width: 140px;

    /* background-color: rgba(24, 144, 255, 0.1); */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 14px;
    flex-shrink: 0;
}

.xzyw2-card-icon i {
    font-size: 24px;
    color: #1890ff;
}

.xzyw2-card-text {
    flex: 1;
    text-align: center;
}

.xzyw2-card-title {
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 4px;
    margin-top: 21px;
}

.xzyw2-card-desc {
    font-size: 14px;
    color: #999999;
}

/* 右上角图标 */
.xzyw2-corner-icon {
    position: absolute;
    top: 0;
    right: 0;
    /* width: 100%; */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1890ff;
}
.xzyw2-corner-icon img {
    width: 83px;
}

/* 底部留白区域 */
.xzyw2-footer-space {
    height: 80px;
    width: 100%;
    flex-shrink: 0;
}

/* 业务类型特定图标颜色 */
.xzyw2-business-card .xzyw2-card-icon {
    /* background-color: rgba(24, 144, 255, 0.1); */
}
.xzyw2-business-card .xzyw2-card-icon img{
    width: 100%;
}


/* 响应式调整 */
@media (max-width: 375px) {
    .xzyw2-container {
        padding: 16px 12px 80px;
    }

    .xzyw2-header h1 {
        font-size: 1.3rem;
    }

    .xzyw2-header p {
        font-size: 0.85rem;
    }

    .xzyw2-card-icon {
        width: 44px;
        height: 44px;
    }

    .xzyw2-card-icon i {
        font-size: 22px;
    }

    .xzyw2-card-title {
        font-size: 1rem;
    }

    .xzyw2-card-desc {
        font-size: 0.85rem;
    }

    .xzyw2-business-card {
        margin-bottom: 14px;
        padding: 14px;
    }
}

/* 小屏幕高度优化 */
@media (max-height: 700px) {
    .xzyw2-header {
        margin-bottom: 16px;
        padding-top: 5px;
    }

    .xzyw2-header h1 {
        font-size: 16px;
    }

    .xzyw2-header p {
        margin-top: 6px;
        font-size: 0.85rem;
    }

    .xzyw2-business-card {
        margin-bottom: 12px;
        padding: 14px;
    }

    .xzyw2-card-icon {
        width: 140px;
        height: 100px;
    }

    .xzyw2-card-icon i {
        font-size: 22px;
    }
}

/* 超小屏幕优化 */
@media (max-height: 600px) {
    .xzyw2-container {
        padding: 10px 12px 60px;
    }

    .xzyw2-header {
        margin-bottom: 12px;
    }

    .xzyw2-header h1 {
        font-size: 1.2rem;
    }

    .xzyw2-header p {
        display: none; /* 小屏幕隐藏副标题节省空间 */
    }

    .xzyw2-business-card {
        margin-bottom: 10px;
        padding: 12px;
    }

    .xzyw2-card-icon {
        width: 42px;
        height: 42px;
    }

    .xzyw2-card-icon i {
        font-size: 20px;
    }

    .xzyw2-card-title {
        font-size: 0.95rem;
        margin-bottom: 2px;
    }

    .xzyw2-card-desc {
        font-size: 0.8rem;
    }
}
