html, body {
    margin: 0;
}

#app {
    margin: 0;
    padding: 0;
}

.first-screen {
    width: 100%;
    height: 652px;
    position: relative;
    background: url("https://cross-city.oss-cn-shanghai.aliyuncs.com/first-screen-bg.png") no-repeat;
    background-size: 100% 100%;

    .header {
        width: 100%;
        padding: 24px 360px 0 360px;
        box-sizing: border-box;

        .header-item {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;

            .logo-name {
                display: flex;
                align-items: center;
                gap: 5px;
                cursor: pointer;

                .logo {
                    width: 30px;
                    height: 30px;
                }

                .name {
                    font-weight: 600;
                    font-size: 24px;
                    color: #1f1f1f;
                    line-height: 30px;
                }
            }

            .tab {
                display: flex;
                align-items: center;
                gap: 32px;
                position: relative;
                margin-left: 60px;

                .text {
                    font-weight: 600;
                    font-size: 16px;
                    color: #1f1f1f;
                    cursor: pointer;
                }

                .active {
                    font-weight: 600;
                    font-size: 16px;
                    color: #23A9FF;
                }

                .line {
                    width: 20px;
                    height: 2px;
                    background-color: #23A9FF;
                    position: absolute;
                    bottom: -5px;
                    left: 0;
                    transition: all 0.2s ease-in-out;
                }
            }

            .mobile {
                font-weight: 800;
                font-size: 16px;
                color: #000000;
                white-space: nowrap;
            }

            .operate {
                flex: 1;

                display: flex;
                align-items: center;
                justify-content: flex-end;
                gap: 24px;

                .admin-login {
                    width: 78px;
                    height: 32px;
                    background: rgba(255, 255, 255, 0);
                    border-radius: 6px 6px 6px 6px;
                    border: 1px solid #08A0FF;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    text-decoration: none; /* 去掉下划线 */

                    font-weight: 500;
                    font-size: 14px;
                    color: #08A0FF;
                    line-height: 30px;

                    cursor: pointer;
                    /*去除内边框*/
                    outline: none;
                }

                .apply-try {
                    width: 78px;
                    height: 32px;
                    background: linear-gradient(134deg, #286BFF 0%, #4AC4F8 100%);
                    border-radius: 6px 6px 6px 6px;

                    font-weight: 500;
                    font-size: 14px;
                    color: #FFFFFF;
                    line-height: 30px;

                    cursor: pointer;
                    /*去除内边框*/
                    outline: none;
                    border: none;
                }
            }
        }
    }

    .introduction {
        display: flex;
        flex-direction: column;
        margin-top: 118px;
        padding: 0 360px 0 360px;
        box-sizing: border-box;

        .product-name {
            font-weight: 600;
            font-size: 42px;
            color: #000000;
        }

        .vice-introduction {
            font-weight: 600;
            font-size: 42px;
            color: #000000;
            margin-top: 12px;
        }

        .tips {
            font-weight: 400;
            font-size: 24px;
            color: #737373;
            margin-top: 24px;
        }

        .main-operate {
            display: flex;
            gap: 28px;
            margin-top: 67px;

            .for-detail {
                width: 166px;
                height: 50px;
                background: linear-gradient(134deg, #0888FF 0%, #4AC4F8 100%);
                border-radius: 8px 8px 8px 8px;

                cursor: pointer;
                /*去除内边框*/
                outline: none;
                border: none;

                font-weight: 500;
                font-size: 20px;
                color: #FFFFFF;

                line-height: 49px;
            }

            .download-app {
                width: 166px;
                height: 50px;
                border-radius: 8px 8px 8px 8px;
                border: 1px solid #08A0FF;

                cursor: pointer;
                /*去除内边框*/
                outline: none;

                font-weight: 500;
                font-size: 20px;
                color: #08A0FF;

                line-height: 49px;

                background-color: transparent;
            }
        }
    }

    .display-stickers {
        display: flex;
        align-items: flex-end;
        justify-content: center;
        gap: 18px;
        position: absolute;
        bottom: -52px;
        left: 50%;
        transform: translate(-50%, 0);
        z-index: 1;

        .first-tab {
            width: 276px;
            height: 124px;
            background: linear-gradient(226deg, #FCF6EF 0%, #FFFFFF 100%);
            box-shadow: 0 6px 11px 0 rgba(255, 243, 229, 0.77);
            border-radius: 8px 8px 8px 8px;
            border: 1px solid rgba(255, 139, 63, 0.3);

            padding: 16px 19px;
            box-sizing: border-box;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: space-between;
            transition: all 0.3s;

            .title {
                font-weight: 600;
                font-size: 16px;
                letter-spacing: 1px;
                background: linear-gradient(71.8deg, #FFCA76 0%, #FF6F10 100%);

                -webkit-background-clip: text; /* Chrome, Safari */
                background-clip: text;
                -webkit-text-fill-color: transparent; /* Chrome, Safari */
                color: transparent; /* 兼容不支持background-clip的浏览器 */
            }

            .content {
                font-weight: 600;
                font-size: 14px;
                color: #653A10;
            }
        }

        .first-tab:hover {
            transform: scale(1.1);
        }

        .other-tab {
            width: 290px;
            height: 104px;
            background: linear-gradient(220deg, #F5FAFF 0%, #F7FCFF 100%);
            box-shadow: 0 6px 22px 0 rgba(0, 0, 0, 0.07);
            border-radius: 8px 8px 8px 8px;
            border: 1px solid #FFFFFF;
            transition: all 0.3s;

            padding: 16px 19px;
            box-sizing: border-box;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;

            .title {
                font-weight: 600;
                font-size: 15px;
                color: #000000;
            }

            .content {
                font-weight: 500;
                font-size: 14px;
                color: #000000;
            }
        }

        .other-tab:hover {
            transform: scale(1.1);
        }
    }
}

.second-screen {
    width: 100%;
    height: 759px;
    background-color: #fff;
    padding: 135px 360px 135px 360px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;

    .left-introduction {
        display: flex;
        flex-direction: column;

        .name {
            font-weight: 600;
            font-size: 32px;
            color: #202124;
        }

        .vice-introduction {
            font-weight: 600;
            font-size: 20px;
            color: #202124;
            margin-top: 20px;
        }

        .sure-container {
            display: flex;
            flex-direction: column;
            margin-top: 48px;
            gap: 24px;

            .sure-item {
                display: flex;
                gap: 12px;
                align-items: center;

                .img {
                    width: 16px;
                    height: 16px;
                }

                .text {
                    font-weight: 600;
                    font-size: 18px;
                    color: #202124;
                }
            }
        }

        .immediate-try {
            width: 166px;
            height: 50px;
            background: linear-gradient(134deg, #0888FF 0%, #4AC4F8 100%);
            border-radius: 8px 8px 8px 8px;

            font-weight: 500;
            font-size: 20px;
            color: #FFFFFF;

            line-height: 49px;
            cursor: pointer;

            margin-top: 49px;
            /*去除内边框*/
            outline: none;
            border: none;
        }
    }

    .right-introduction {
        width: 836px;
        height: 599px;
        object-fit: cover;
    }
}

.third-screen {
    width: 100%;
    height: 656px;

    background: url("https://cross-city.oss-cn-shanghai.aliyuncs.com/third-bg.png") no-repeat;
    background-size: 100% 100%;
    padding: 80px 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;

    .title {
        font-weight: 600;
        font-size: 40px;
        color: #000000;
    }

    .show-characteristic {
        width: 1200px;
        height: 500px;
        position: relative;

        .line-svg {
            width: 1198px;
            height: 102px;

            position: absolute;
            top: 50%;
            left: 0;
            transform: translateY(-50%);
        }

        .characteristic {
            width: 143px;
            height: 217px;

            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: center;
            position: absolute;

            .img-container {
                width: 143px;
                height: 178px;
                padding: 24px 32px 24px 32px;
                box-sizing: border-box;

                display: flex;
                flex-direction: column;
                justify-content: space-between;
                align-items: center;

                .text {
                    font-weight: 500;
                    font-size: 15px;
                    color: #000000;
                }

                .img {
                    width: 78px;
                    height: 92px;
                }
            }

            .img-container-top {
                background: url("../../static/img/third-top.png") no-repeat;
                background-size: 100% 100%;
            }

            .img-container-bottom {
                background: url("../../static/img/third-bottom.png") no-repeat;
                background-size: 100% 100%;
            }

            .round {
                width: 28px;
                height: 28px;
            }
        }
    }
}

.fourth-screen {
    width: 100%;
    height: 761px;
    background-color: #fff;
    padding: 80px 360px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;

    .title {
        font-weight: 600;
        font-size: 40px;
        color: #000000;
    }

    .show-card {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 50px 180px;

        .card-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            width: 96px;
            height: 120px;

            .text {
                font-weight: 500;
                font-size: 24px;
                color: #181818;
            }

            .img {
                width: 80px;
                height: 80px;
            }
        }
    }
}

.fifth-screen {
    width: 100%;
    height: 715px;
    background: rgba(40, 107, 255, 0.04);
    padding: 80px 360px;
    box-sizing: border-box;

    display: flex;
    flex-direction: column;
    align-items: center;

    background: url("https://cross-city.oss-cn-shanghai.aliyuncs.com/fifth-bg.png") no-repeat;
    background-size: 100% 100%;

    .title-text {
        width: 303px;
        height: 46px;
    }

    .sub-title {
        font-weight: 500;
        font-size: 32px;
        color: #707070;
        margin-top: 21px;
    }

    .table-container {
        width: 100%;
        height: 410px;
        background-color: #F2F2F2;
        margin-top: 32px;
        border-radius: 16px;
        display: flex;
        flex-direction: column;

        .table {
            width: 100%;
            height: 342px;
            background: #FFFFFF;
            border-radius: 16px 16px 16px 16px;
            border-collapse: collapse; /* 合并单元格边框 */

            .thead th:first-child {
                border-radius: 16px 0 0 0;
            }

            .thead th:last-child {
                border-radius: 0 16px 0 0;
            }

            .thead {
                width: 100%;
                height: 70px;
                background: #E1F0FF;
                border-radius: 16px 16px 0 0;

                th {
                    font-weight: 600;
                    font-size: 15px;
                    color: #000000;
                    padding: 0;
                    text-align: center;
                }
            }

            .tbody td {
                font-weight: 500;
                font-size: 16px;
                color: #000000;
            }

            .important {
                color: #4679EA !important;
            }

            .center {
                text-align: center;
            }

            .price {
                font-weight: bold;
                font-size: 15px;
                color: #FF6B00;
            }

            .origin {
                font-weight: 500;
                font-size: 12px;
                color: #000000;

                text-decoration: line-through;
            }
        }

        .tips {
            flex: 1;
            width: 100%;
            display: flex;
            align-items: center;
            padding-left: 16px;
            box-sizing: border-box;
            gap: 4px;

            .text {
                font-weight: 500;
                font-size: 14px;
                color: #000000;
            }

            .red {
                color: #F53F3F;
            }
        }
    }
}

.sixth-screen {
    width: 100%;
    height: 745px;
    background-color: white;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding-top: 80px;

    .title {
        font-weight: 600;
        font-size: 40px;
        color: #000000;
    }

    .earth {
        width: 100%;
        height: 546px;
    }
}

.footer {
    width: 100%;
    height: 375px;
    background: url("/static/img/footer-bg.png") no-repeat;
    background-size: 100% 100%;

    .info-container {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 100px 0 0 0;
        box-sizing: border-box;

        .about {
            display: flex;
            flex-direction: column;
            width: 628px;
            padding-right: 148px;
            box-sizing: border-box;

            .title {
                font-weight: 600;
                font-size: 18px;
                color: #FFFFFF;
            }

            .line {
                width: 108px;
                height: 3px;
                background: #4679EA;
                border-radius: 2px 2px 2px 2px;
            }

            .content {
                font-weight: 500;
                font-size: 14px;
                color: #FFFFFF;

                a {
                    color: #FFFFFF;
                    text-decoration: none;

                    &:hover {
                        text-decoration: underline;
                    }
                }
            }
        }

        .connect {
            display: flex;
            flex-direction: column;
            width: 551px;

            .title {
                font-weight: 600;
                font-size: 18px;
                color: #FFFFFF;
            }

            .line {
                width: 72px;
                height: 3px;
                background: #4679EA;
                border-radius: 2px 2px 2px 2px;
            }

            .content {
                font-weight: 500;
                font-size: 14px;
                color: #FFFFFF;
            }
        }

        .wx {
            display: flex;
            flex-direction: column;

            .title {
                font-weight: 600;
                font-size: 16px;
                color: #FFFFFF;
            }

            .img {
                width: 113px;
                height: 113px;
                margin-top: 8px;
            }
        }
    }

    .copyright {
        font-weight: 500;
        font-size: 14px;
        color: #FFFFFF;
        text-align: center;
        padding: 30px 0 20px 0;
        box-sizing: border-box;
    }

    .filings {
        font-weight: 500;
        font-size: 14px;
        color: #FFFFFF;
        text-align: center;
        box-sizing: border-box;
    }
}

::-webkit-scrollbar-track-piece {
    background-color: #f8f8f8;
}

::-webkit-scrollbar {
    width: 9px;
    height: 9px;
}

::-webkit-scrollbar-thumb {
    background-color: #dddddd;
    background-clip: padding-box;
    min-height: 28px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #bbb;
}