/* body-inner 区域 */
.body-inner {
    min-width: 1320px;
}
.part-one{
    /* background: linear-gradient(135deg, #f5f6fa 0%, #f7f8fb 100%); */
    background: linear-gradient( 180deg, #FFFFFF 0%, #F5F6FA 100%);
}
/* Hero 区域 */
.hero {
    width: 1320px;
    min-width: 1320px;
    margin: 0px auto 0px;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero .inner {
    padding: 60px 0 80px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    border-radius: 20px;
    background: linear-gradient( 180deg, #F7F8FB 0%, #FFEEF0 100%);
    border: 1px solid #EBEDF0;
}

.hero .inner .world{
    width: 630px;
    height: 252px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.hero h1 {
    color: #DD2226;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    font-size: 64px;
    line-height: 1;
    font-family: 'NotoSansTC-Medium';
    background: linear-gradient(63.43494882292202deg, #B60007 0%, #7F0003 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero .ServiceTenet{
    font-size: 14px;
    color: #6E7580;
    line-height: 1;
    width: 108px;
    height: 30px;
    background: rgba(255,255,255,0.7);
    border-radius: 13px;
    border: 1px solid #EBEDF0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    /* display: none; */
    opacity: 0;
    visibility: hidden;
}

.hero p {
    font-size: 14px;
    line-height: 1.5;
    color: #6e7580;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.hero .cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'NotoSansTC-Medium';
    transition: opacity 0.3s;
    width: 135px;
    height: 44px;
    background-image: url('/dist/images/home/contact-us-btn-background.png');
    opacity: 0.9;
    position: relative;
    z-index: 1;
    font-size: 14px;
    color: #FFFFFF;
    line-height: 1.2;
    background-size: 100% 100%;
}

.hero .cta-btn:hover {
    opacity: 1;
}

/* 特色卡片区域 */
.features {
    padding: 30px 0 60px;
    width: 1320px;
    min-width: 1320px;
    margin: 0px auto 0px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    /* background-color: #f7f8fb; */
}

.feature-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    background-color: #DD2226;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-card:hover h3,
.feature-card:hover p{
    color: #fff;
}

.feature-card .icon {
    width: 60px;
    height: 60px;
    background-color: #f5f6fa;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 20px;
    font-family: 'NotoSansTC-Medium';
    line-height: 1.5;
    color: #DD2226;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    color: #0F1826;
    line-height: 1.5;
}

/* Empowering 部分 */
.empowering {
    padding: 60px 0 122px;
    width: 1320px;
    min-width: 1320px;
    margin: 0px auto 0px;
    /* background: linear-gradient(135deg, #f5f6fa 0%, #fff 100%); */
    background: #fff;
}

.empowering .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.empowering .section-header h2 {
    font-family: 'NotoSansTC-Medium';
    font-size: 36px;
    line-height: 1.5;
    color: #0F1826;
    margin-bottom: 20px;
}

.empowering .section-header .highlight {
    color: #DD2226;
}

.empowering .section-header p {
    color: #6e7580;
    font-size: 14px;
    line-height: 1.5;
}

.empowering-content {
    display: flex;
    align-items: center;
    width: 100%;
    height: 558px;
    background-image: url('/dist/images/home/ConnBG.png');
    background-size: 100%  100%;
}

.empowering-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-left: 30px;
    width: 630px;
}

.empowering-card {
    background-color: #fff;
    padding: 20px 30px 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.empowering-card .icon {
    width: 84px;
    height: 84px;
    margin-bottom: 14px;
}

.empowering-card h4 {
    color: #DD2226;
    font-family: 'NotoSansTC-Medium';
    font-size: 22px;
    margin-bottom: 10px;
    background: linear-gradient( 270deg, #FFFFFF 0%, #FFEEF0 100%);
    border-radius: 10px;
}

.empowering-card p {
    color: #0F1826;
    font-size: 14px;
}

/* Challenges 部分 */
.challenges {
    padding: 60px 0 80px;
    margin: 0px auto 0px;
    background-color: #f5f6fa;
}

.challenges .inner{
    width: 1320px;
    min-width: 1320px;
    margin: 0 auto;
}

.challenges .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.challenges .section-header h2 {
    font-size: 36px;
    font-family: 'NotoSansTC-Medium';
    color: #0F1826;
}
.challenges .section-header h2 .highlight{
    color: #DD2226;
}

.challenges-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    position: relative;
}

.challenges-grid-col{
    flex: 1;
}

.challenges-grid-col-middle{
    width: 420px;
    margin: 0 10px;
}

.challenges-grid-col-middle img{
    width: 100%;
    height: auto;
}

.challenge-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
    border: 1px solid #EBEDF0;
}

.challenge-card:last-child{
    margin-bottom: 0;
}

.challenge-card h4 {
    font-family: 'NotoSansTC-Medium';
    font-size: 16px;
    color: #0F1826;
    margin-bottom: 10px;
}

.challenge-card p {
    color: #6e7580;
    font-size: 14px;
}

/* Company Introduction 部分 */
.company-intro {
    padding: 80px 0;
    width: 1320px;
    min-width: 1320px;
    margin: 0px auto 0px;
    /* background: linear-gradient(135deg, #f5f6fa 0%, #f7f8fb 100%); */
    background: #fff;
}

.company-intro .company-intro-inner {
    background: linear-gradient( 180deg, #FFEEF0 0%, #F7F8FB 100%);
    border-radius: 20px;
    padding: 30px;
}

.company-intro .section-header {
    text-align: center;
    margin-bottom: 30px;
}

.company-intro .section-header h2 {
    font-family: 'NotoSansTC-Medium';
    font-size: 36px;
    color: #0F1826;
}

.company-intro .section-header h2 .highlight {
    color: #DD2226;
}

.company-content {
    display: flex;
    background: #fff;
    border-radius: 13px;
    margin: 0 auto;
    padding: 30px;
}

.company-info {
    background-color: #fff;
    margin-right: 50px;
    flex: 1;
}

.company-info .logo {
    width: 108px;
    height: 60px;
    margin-bottom: 40px;
}

.company-info h3 {
    font-family: 'NotoSansTC-Medium';
    color: #DD2226;
    font-size: 36px;
    margin-bottom: 30px;
}

.company-info p {
    color: #0F1826;
    font-size: 14px;
    margin-bottom: 30px;
}

.company-info p:last-child {
    margin-bottom: 0;
}

.company-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.stat-card {
    background-color: #fff;
    border-radius: 12px;
    text-align: center;
    position: relative;
}

.stat-card img{
    width: 280px;
    height: auto;
    position: relative;
}

.stat-card .label {
    font-size: 14px;
    color: #6e7580;
    position: absolute;
    left: 30px;
    bottom: 30px;
}

.contact-dialog{
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: rgba(15,24,38,0.5);
    display: none;
    align-items: center;
    justify-content: center;
}

.contact-dialog .dialog-content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    border-radius: 16px;
    padding: 0;
    width: 600px;
    max-width: 90%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.contact-dialog .dialog-header{
    background: linear-gradient(180deg, #FFF5F5 0%, #FFFFFF 100%);
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f0f0f0;
}

.contact-dialog .dialog-header h2{
    font-size: 30px;
    font-weight: 600;
    color: #0F1826;
    margin: 0;
}

.contact-dialog .close-btn{
    width: 28px;
    height: 28px;
    border: none;
    background: transparent;
    font-size: 24px;
    color: #a9afb8;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
}

.contact-dialog .close-btn:hover{
    background: #f5f6fa;
    color: #6e7580;
}

.contact-dialog form{
    padding: 0px 30px 30px;
}

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

.contact-dialog .form-group label{
    display: block;
    font-size: 20px;
    color: #0F1826;
    margin-bottom: 8px;
}

.contact-dialog .form-group .required{
    color: #DD2226;
    margin-right: 4px;
}

.contact-dialog .form-group input[type="text"],
.contact-dialog .form-group input[type="email"],
.contact-dialog .form-group textarea{
    width: 100%;
    height: 42px;
    padding: 5px  10px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    color: #0F1826;
    background-color: #fff;
    box-sizing: border-box;
    transition: border-color 0.2s;
    outline: none;
}

.contact-dialog .form-group input[type="text"]::placeholder,
.contact-dialog .form-group input[type="email"]::placeholder,
.contact-dialog .form-group textarea::placeholder{
    color: #A9AFB8;
}

.contact-dialog .form-group textarea{
    resize: none;
    min-height: 90px;
}

.contact-dialog .verification-group{
    display: flex;
    align-items: flex-end;
    gap: 12px;
}

.contact-dialog .verification-left{
    flex: 1;
}

.contact-dialog .verification-code{
    display: flex;
    align-items: flex-end;
    padding: 12px 16px;
    background: linear-gradient(135deg, #f5f6fa 0%, #e5e7eb 100%);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #DD2226;
    letter-spacing: 4px;
    min-width: 100px;
    justify-content: center;
}

.contact-dialog .submit-btn{
    width: 130px;
    height: 52px;
    padding: 12px 24px;
    background-color: #fff;
    color:#DD2226;
    border: 1px solid #DD2226;
    border-radius: 8px;
    font-family: 'NotoSansTC-Medium';
    font-size: 20px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
    outline: none;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .hero {
        padding: 60px 20px;
    }

    .hero h1 {
        font-size: 30px;
    }

    .features {
        padding: 40px 20px;
        grid-template-columns: 1fr;
    }

    .empowering {
        padding: 40px 20px;
    }

    .empowering-content {
        flex-direction: column;
        gap: 40px;
    }

    .challenges {
        padding: 40px 20px;
    }

    .challenges-grid {
        grid-template-columns: 1fr;
    }

    .company-intro {
        padding: 40px 20px;
    }

    .company-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .company-stats {
        grid-template-columns: 1fr;
    }

}
