/* 展示页 */
* {
    margin: 0;
    padding: 0;
    border: none;
    outline-style: none;
    box-sizing: border-box;
}

a,
a:focus,
a:hover {
    text-decoration: none !important;
    color: inherit;
}

@font-face {
    font-family: "abcfont";
    src: url("../font/zaozigongfangnaisiti.ttf");
}

html {
    font-size: 16px;
    color: #1F1F1F;
    font-family: "abcfont";
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    position: relative;
    line-height: 1;
    scroll-behavior: smooth;
    --themeColor: #73B9A6;
    --themeColor2: #FFE99A;
    --themeColor3: #1F1F1F;
    min-width: 1840px;
}

::selection {
    background: var(--themeColor);
    color: #fff;
}

:focus {
    outline-color: var(--themeColor);
}

img {
    max-width: 100%;
    height: auto;
    transition: all 0.3s ease;
}

.page-zhanshi {
    position: relative;
    font-size: 0;
}

.page-zhanshi .layer {
    position: absolute;
    left: 19.71vw;
    top: 8.41vw;
    z-index: 10;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.page-zhanshi .layer .logo img {
    height: 2.10vw;
}

.page-zhanshi .layer .title {
    font-size: 2.52vw;
    margin-top: 2.94vw;
}

.page-zhanshi .layer .desc {
    font-size: 1.05vw;
    letter-spacing: 1.26vw;
    margin-top: 2.10vw;
    margin-bottom: 3.57vw;
}

.page-zhanshi .layer a.btn {
    width: 15.76vw;
    height: 3.89vw;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1.05vw;
    border: 0.11vw solid var(--themeColor);
    color: var(--themeColor);
    margin-bottom: 2.10vw;
    font-size: 1.05vw;
    transition: all 0.3s ease;
}

.page-zhanshi .layer a.btn:hover {
    background: var(--themeColor);
    color: white;
}

.page-zhanshi .layer .contact {
    font-size: 1.05vw;
    padding-top: 2.63vw;
}

.moblic-banner {
    display: none;
}

@media (max-width: 1000px) {
    .moblic-banner {
        display: block;
        width: 100%;
    }

    .pc-banner {
        display: none;
    }

    .page-zhanshi .layer {
        position: static;
        display: block;
        /* background: var(--themeColor); */
    }

    .page-zhanshi .moblic-top {
        padding: 0 6vw 5.4vw;
        border-radius: 0 0 10.5vw 10.5vw;
        border-bottom: 1.8vw solid var(--themeColor2);
        margin-bottom: 9vw;
        background: linear-gradient(to bottom, rgb(227, 244, 235) 10%, #fff 20%);
    }

    .page-zhanshi .layer {
        text-align: center;
    }

    .page-zhanshi .layer .logo {
        display: inline-block;
        margin: 5.4vw 0;
    }

    .page-zhanshi .layer .logo img {
        height: 9vw;
    }

    .page-zhanshi .layer .title {
        font-size: 6vw;
        margin-top: 8vw;
        color: var(--themeColor);
    }

    .page-zhanshi .layer .desc {
        font-size: 3vw;
        margin: 4vw 0 0 0;
        color: var(--themeColor);
    }

    .page-zhanshi .layer a.btn {
        width: 64vw;
        height: 13.5vw;
        display: inline-flex;
        border-radius: 5vw;
        border: 0.6vw solid var(--themeColor2);
        font-size: 3.5vw;
        color: var(--themeColor2);
        margin-bottom: 6.5vw;
    }

    .page-zhanshi .layer .contact {
        margin-top: 9vw;
        font-size: 3vw;
        color: rgb(255, 255, 255, 0.7);
        padding-bottom: 17vw;
    }
}