*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.wrapper{
    overflow: hidden;
}
.container{
    position: relative;
    width: 100%;
    background-image: url("../images/bg.png");
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.content{
    position: relative;
    max-width: 1300px;
    margin: 0 auto;
    color: #fff;
    padding: 80px 0;
    overflow: hidden;
}

.logo{
    width: 96px;
    margin-right: 30px;
}

.company-text{ 
    width: 243px;
    height: 31px;
}

.company-name{
    font-size: 30px;
    font-weight: 500;
}

.company-content{
    margin-top: 60px;
}
.company-content>p{
    position: relative;
    width: 900px;
    font-size: 24px;
    font-weight: 500;
    line-height: 42px;
    z-index: 2;
}
.text::before{
    content: "";
    position: absolute;
    width: 120px;
    height: 18px;
    background: #D47F48;
    left: 0;
    top: 12px;
    z-index: -1;
}


.tips{
    font-size: 32px;
    margin-top: 48px;
    background: linear-gradient(281deg, #FF783A 0%, #DFA329 52%, #FFA13C 99%);
    padding: 12px 16px;
    border-radius: 16px;
    display: inline-block;
}

.qrcode-list{
    margin-top: 56px;
}

.qrcode-list .qrcode{
    width: 175px;
    height: 175px;
}

.qrcode-list span{
    background-image: url("../images/text-bg.png");
    background-size: 100% 100%;
    width: 230px;
    height: 72px;
    font-size: 30px;
    font-weight: 500;
    text-align: center;
    line-height: 72px;
}

.product-image{
    position: absolute;
    width: 723px;
    bottom: -180px;
    right: -200px;
}


.ios-btn{
    margin-left: 140px;
}


.flex{
    display: flex;
}

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

.items-center{
    align-items: center;
} 

.justify-center{
    justify-content: center;
}

.justify-between{
    justify-content: space-between;
}

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

/* Footer 样式 */
.footer {
    background: #E5E5E5;
    padding: 0;
    font-size: 15px;
    color: #444;
}

.footer-main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 1300px;
    margin: 0 auto;
    background: #E5E5E5;
    padding: 40px 0;
}

.footer-col {
    flex: 1 1 220px;
    min-width: 200px;
    margin-bottom: 16px;
}

.footer-col p{
    line-height: 30px;
    color: #595757;
}

.footer-col h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 12px;
    color: #595757;
}

.footer-col-qr {
    text-align: center;
}

.footer-qrcode {
    margin: 10px auto 0 auto;
    width: 300px;
}

.footer-qrcode img {
    width: 120px;
    height: 120px;
    display: block;
    margin: 0 auto;
    border: 2px solid #fff;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.footer-qrcode-text {
    font-size: 13px;
    color: #666;
    margin-top: 8px;
    line-height: 1.5;
}

.footer-phone {
    font-weight: bold;
    color: #595757;
    font-size: 16px;
}

.footer-bottom {
    background: #333333;
    color: #E5E5E5;
    font-size: 16px;
    padding: 32px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.footer-links{
    margin-left: 20px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 6px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.link{
    color: #E5E5E5;
    text-decoration: none;
}


@media (max-width: 640px) {
    .content{
        width: 100% !important;
        padding: 40px 0 !important;
    }
    .footer-main{
        flex-direction: column;
        width: 100% !important;
    }
    .product-image{
        display: none;
    }
    .company-content {
        padding: 0 20px;
        margin-top: 30px;
    }
    .company-content>p{
        width: 100% !important;
        font-size: 20px;
    }
    .tips {
        font-size: 14px;
        margin-top: 32px;
    }
    .qrcode-list .qrcode{
        width: 120px;
        height: 120px;
    }
    .ios-btn{
        margin-left: 20px;
    }
    .qrcode-list{
        width: 100% !important;
        justify-content: center;
    }
    .qrcode-list span{
        width: 160px;
        height: 50px;
        line-height: 50px;
        font-size: 20px;
    }
    .footer-qrcode{
        width: 250px;
    }
    .footer-col {
        padding: 0 20px;
        width: 100% !important;
        min-width: auto !important;
        flex: none !important;
    }
    .footer-links {
        display: none;
    }
    .link{
        text-align: center;
    }
    .company-text{
        position: absolute;
        top: 20px;
        right: 20px;
    }
    header{
        padding: 0 20px;
    }
    .logo {
        width: 70px;
        margin-right: 10px;
    }
    .company-name {
        font-size: 24px;
    }
    .footer-col-qr{
        display: none;
    }

    .company-content>p::before{
        width: 100px;
    }

    .company-content>p::after{
        width: 100px;
        top: 138px;
    }
}