* {
    margin: 0;
    padding: 0;
}

.header {
    position: relative;
    width: 100%;
    height: 100%;
}

.header-background {
    width: 100%;
    height: 100%;
    object-fit: contain;
    vertical-align: bottom;

}

.header-box {
    position: absolute;
    top: 4%;
    width: 90%;
    padding: 0 120px 0 60px;
    max-height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;

    .header-box-left {
        display: flex;
        align-items: center;
    }

    .header-box-right {
        padding: 0;
        line-height: 50px;

        .right {
            text-align: right;

            .right-item {
                /*width: 80px;*/
                display: inline-block;
                cursor: pointer;
                margin-right: 72px;
                text-align: center;
                font-weight: 400;
                font-size: 20px;
                color: #EBF3FF;
            }

            .right-item:last-child {
                margin-right: 0;
            }

            .right-item:hover {
                color: #FFFFFF;
                border-bottom: #FFFFFF 2px solid;
            }
        }
    }

    .header-logo {
        max-width: 100%;
        height: 60px;
        object-fit: contain;
    }

    .header-logo-text {
        max-width: 100%;
        max-height: 35px;
        object-fit: contain;
        margin-left: 24px;
    }
}

.header-center-text-img {
    position: absolute;
    max-width: 726px;
    max-height: 157px;
    top: 50%;
    left: 48%;
    transform: translate(-50%, -50%);
}

.card {
    /*padding: 60px 120px;*/
    /*width: 100%;*/
    /*margin: 0 auto;*/
    margin: 90px 0;

    .card-title {
        font-weight: 600;
        font-size: 36px;
        color: #1B3046;
        margin-bottom: 36px;
        text-align: center;
    }

    .card-content {
        margin: 0 auto;
        max-width: 1200px;
        max-height: 2040px;
        background: #FFFFFF;
        padding: 60px 0;
        border-radius: 16px 16px 16px 16px;

        .card-item {
            padding: 0 120px;
            display: flex;
            justify-content: space-between;

            .card-content-left {
                max-width: 540px;
                display: inline-block;
                align-content: center;
                border-bottom: #CFD1D8 1px solid;

                .card-content-left-title {
                    display: flex;
                    align-items: center;
                    height: 34px;
                    line-height: 34px;

                    .title {
                        font-weight: 600;
                        font-size: 24px;
                        color: #181A1F;
                    }

                    .card-line {
                        margin: 0 12px;
                        width: 4px;
                        height: 22px;
                        background: #CFD1D8;
                        border-radius: 30px;
                    }

                    .text {
                        font-weight: 400;
                        font-size: 18px;
                        color: #626366;
                    }
                }

                .card-content-left-right-operate {
                    justify-content: end;
                }

                .card-item-content-left-desc {
                    font-weight: 400;
                    font-size: 16px;
                    color: #181A1F;
                    line-height: 2;
                    margin-top: 28px;
                }
            }

            .card-content-right {
                max-width: 312px;
                max-height: 623px;

                .card-item-img {
                    width: 100%;
                    height: 100%;
                    object-fit: contain;
                }
            }
        }
        .m-top{
            margin-top: 60px;
        }
    }
}

.industry {
    margin: 90px auto;
    max-width: 1200px;
    text-align: center;

    .industry-title {
        font-weight: 600;
        font-size: 36px;
        color: #1B3046;
        margin-bottom: 36px;
    }

    .industry-list {
        width: 100%;
        display: flex;
        justify-content: space-between;

        .industry-item {
            flex: 1;
            max-width: 372px;
            max-height: 300px;
            margin-right: 42px;
            box-sizing: border-box;
        }

        .product {
            margin-right: 31px;
        }

        .industry-list-img {
            width: 100%;
            height: 100%;
        }

        .industry-item:last-of-type {
            margin-right: 0;
        }
    }

    .product-list {
        width: 100%;
        display: flex;
        justify-content: space-between;

        .product-item {
            flex: 1;
            max-width: 277px;
            max-height: 277px;
            margin-right: 31px;
            box-sizing: border-box;

            .product-list-img {
                width: 100%;
                height: 100%;
            }
        }

        .product-item:last-of-type {
            margin-right: 0;
        }
    }

    .industry-btn {
        padding: 10px;
        border: 1px solid #1B86FE;
        font-weight: 400;
        font-size: 24px;
        color: #1B86FE;
        background: #F2F4F7;
        display: inline-block;
        margin: 70px auto 0;
    }
}

.footer {
    background: #030D26;

    .footer-box {
        display: flex;
        margin: 0 auto;
        max-width: 1200px;
        padding: 30px 0;

        .footer-left {
            text-align: center;
            font-size: 16px;
            font-weight: 400;
            color: rgba(255,255,255,0.8);
            .footer-qrcode {
                margin-bottom: 12px;
                max-height: 136px;
                max-width: 136px;

                .qrcode {
                    border-radius: 8px;
                    width: 100%;
                    height: 100%;
                }
            }
        }

        .footer-right {
            margin-left: 60px;

            .footer-right-list {
                max-height: 136px;

                .footer-item {
                    font-weight: 400;
                    font-size: 18px;
                    color: rgba(255,255,255,0.8);
                    line-height: 2;
                }
            }

            .footer-right-info {
                margin-top: 30px;

                a {
                    text-decoration: none;
                    font-weight: 400;
                    font-size: 14px;
                    color: rgba(255,255,255,0.8);
                    line-height: 2;

                }
            }

        }
    }


}

/*屏幕宽度小于992px,改变布局和样式*/
@media screen and (max-width: 992px) {
    .header-box {
        width: 100%;
        display: flex;
        justify-content: space-around;
        align-items: center;
        padding: 17px 0 0 0;

        .header-logo {
            max-height: 24px;
        }

        .header-logo-text {
            max-height: 18px;
            margin-left: 8px;
        }

        .header-box-right {
            display: none;
        }
    }

    .header-center-text-img {
        width: 284px;
        left: 50%;
    }

    .card {
        margin: 24px 0 0;
        .card-title {
            margin-bottom: 12px;
            font-size: 18px;
        }

        .card-content {
            width: auto;
            height: auto;
            padding: 24px 12px;

            .card-item {
                padding: 0 0 24px;
                border-bottom: #CFD1D8 1px solid;

                .card-content-left {
                    align-content: flex-start;
                    border-bottom: none;
                    margin-right: 8px;

                    .card-content-left-title {
                        .title {
                            font-size: 16px;
                        }

                        .card-line {
                            width: 1px;
                        }

                        .text {
                            font-size: 14px;
                        }
                    }

                    .card-item-content-left-desc {
                        margin-top: 8px;
                        font-size: 14px;
                    }
                }

                .card-content-operate {
                    margin-left: 8px;
                    margin-right: 0;

                    .card-content-left-right-operate {
                        justify-content: flex-start;
                    }
                }

                .card-content-right {
                    width: 100px;
                    height: 200px;
                    flex-shrink: 0;
                }
            }
            .m-top{
                margin-top: 24px;
            }
        }
    }
    .industry{
        margin-top: 24px;
        margin-bottom: 0;
        .industry-title{
            font-weight: 600;
            font-size: 18px;
            color: #1B3046;
            margin-bottom: 12px;
        }
        .industry-list{
            display: inline-block;
           .industry-item{
               margin-right: 0;
               max-width:none;
               max-height: none;
               .industry-list-img{
                   width: 100%;
                   height: 100%;
                   vertical-align: bottom;
                   margin-bottom: 8px;
               }
           }
        }
        .industry-btn{
            margin: 12px auto 0;
            font-weight: 400;
            font-size: 16px;
            color: #1B86FE;
        }
        .product-list{
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            .product-item{
                flex: none; /* 每行两个元素 */
                width: 50%;
                margin: 0;
                padding: 10px 10px 0 0;
                box-sizing: border-box;
            }
            .product-item:nth-child(2n) {
                padding-right: 0;
            }
        }
    }
    .footer{
        .footer-box{
            padding: 12px;
            .footer-left{
                font-weight: 400;
                font-size: 12px;
                color: rgba(255,255,255,0.8);
                .footer-qrcode{
                    max-width: 80px;
                    max-height: 80px;
                }
            }
            .footer-right{
                margin-left: 8px;
                .footer-right-list{
                    .footer-item{
                        font-weight: 400;
                        font-size: 12px;
                        color: rgba(255,255,255,0.8);
                    }
                }
                .footer-right-info{
                    margin-top: 12px;
                    a{
                        font-weight: 400;
                        font-size: 10px;
                        color: rgba(255,255,255,0.8);
                    }
                }
            }

        }
    }
    .industry:last-child{
        margin-bottom: 70px;
    }
}
