@charset "UTF-8";

:root {
    --color-main: #11418a;
    --color-main-light: #0288ee;
    --color-white: #ffffff;
    --color-green: #058d56;
    --color-grey: #f1eded;
    --color-grey1: #d5d5d5;
    --radius-3: 3px;
    --radius-5: 5px;
    --font-size-18: 18px;
    --w1200: 1200px;
    --w1000: 1000px;
}

body {
    margin: 0 auto;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-weight: 500;
}

.header {
    width: 100%;
    height: 100px;
}

.bodyer {
    min-height: calc(100vh - 400px);
    position: relative;
}

.footer {
    width: 100%;
    height: 300px;
}

.h100f {
    height: inherit;
}
.h100p {
    height: 100%;
}
.h150px {
    height: 150px;
}

.w100p {
    width: 100%;
}

.w1k2 {
    width: 1200px;
}

.pointer{
    display: flex;
}
.pointer:hover {
    cursor: pointer;
}

.border-m23 {
    border: 2px solid var(--color-main);
    border-radius: var(--radius-3);
}

.content-l {
    display: flex;
    justify-content: left;
    align-items: center;
}
.content-r {
    display: flex;
    justify-content: right;
    align-items: center;
}
.content-c {
    display: flex;
    justify-content: center;
    align-items: center;
}

.self-c {
    margin: auto;
}

.full-img {
    width: 100%;
    height: 100%;
}

.float-l {
    float: left;
}

.float-r {
    float: right;
}

.clearfix {
    clear: both;
}

.space-h30 {
    height: 30px;
}

.space-w100 {
    width: 100px;
}

.font-s18 {
    font-size: var(--font-size-18);
}

@keyframes moveRightLeft {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(30px); }
}

@media screen and (max-width:760px) {

}


/*    -----------    index   ---------------    */

.headline {
    height: 5px;
    background-color: var(--color-main);
}

.navbar {
    margin: 0 auto;
    max-width: 1600px;
    height: 85px;
    display: grid;
    grid-template-columns: 450px auto;
    grid-template-rows: auto;
}

.language {
    height: 100%;
    margin-left: 15px;
}

.change-language {
    height: 30px;
    font-size: var(--font-size-18);
    background: var(--color-white);
}

.link-item {
    font-size: var(--font-size-18);
    margin-left: 10px;
}

.link-item:hover {
    cursor: pointer;
}

.link-item:hover .under-line {
    height: 3px;
    width: 100%;
    background-color: var(--color-main);
    border-radius: var(--radius-small);
}

.link-menu {
    position: absolute;
    z-index: 3;
    padding-top: 20px;
    color: white;
    display: none;
}

.link-menu-item {
    height: 40px;
    width: 180px;
    padding-left: 20px;
    background-color: rgba(38, 38, 38, 0.7);
    border-radius: 5px;
}

.link-menu-item:hover {
    background-color: rgba(2, 136, 238, 0.7);
    color: black;
}

.add-line {
    border-bottom: 1px solid white;
}

.link-item-special:hover .link-menu {
    display: block;
}

.link-item-special-qr:hover .link-qr {
    display: block;
}

.link-logo-top {
    height: 20px;
    width: 20px;
    margin-top: 5px;
    border-radius: 5px;
}

.link-qr {
    position: absolute;
    right: calc(50vw - 600px);
    z-index: 3;
    padding-top: 20px;
    color: white;
    display: none;
    height: 220px;
    width: 200px;
}

.wxqr {
    padding-left: 20px;
    background-color: rgba(38, 38, 38, 0.7);
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.wxqr img {
    margin: 0 auto;
    margin-top: 20px;
    background-color: rgba(38, 38, 38, 0.7);
    width: 180px;
    height: 180px;
    background-color: white;
}

.footdiv {
    height: 300px;
    background-color: var(--color-main);
}

.copyright {
    width: 100%;
    height: 50px;
    margin: 0 auto;
    padding-top: 10px;
    color: var(--color-white);
}

.bottom-info {
    color: var(--color-white);
    margin: 0 auto;
    width: 1200px;
    display: grid;
    grid-template-columns: 700px auto;
}

.company-info {
    font-size: 20px;
}

.info-item-title {
    margin-left: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 24px;
}

.flash-arrow {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 24px;
    height: 50px;
    width: 100px;
    animation: moveRightLeft 2s infinite;
}

.wenhe-button {
    margin-top: 10px;
    margin-bottom: 10px;
    width: 300px;
    height: 50px;
    border-radius: var(--radius-5);
    font-size: 24px;
    letter-spacing: 2px;
    background-color: var(--color-main);
    color: white;
}
.wenhe-button:hover {
    cursor: pointer;
    background-color: var(--color-main-light);
}

.reverse {
    background-color: var(--color-white);
    color: var(--color-main);
    font-weight: 700;
}
.reverse:hover {
    background-color: var(--color-white);
    color: var(--color-main);
    cursor: pointer;
    transform: scale(1.05);
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4);
}

.gird-4 {
    display: grid;
    grid-template-columns: 110px 110px 110px 110px;
    column-gap: 20px;
}

.qrcode-link {
    margin-top: 20px;
    width: 100%;
}

.link-logo {
    margin: 0 auto;
    width: 20px;
    height: 20px;
    border-radius: 5px;
}

.qrcode-link-pic {
    width: 100px;
    height: 100px;
    background-color: #0288ee;
    object-fit: cover;
    border-radius: 5px;
}

.qrcode-link-pic img {
    margin-left: 3%;
    margin-top: 3%;
    width: 94%;
    height: 94%;
    background-color: white;
    border-radius: 3px;
}

.color-we {
    background-color: #19d36b;
}

.color-tt {
    background-color: #020003;
}

.color-rb {
    background-color: #f60a0c;
}

.color-bi {
    background-color: #2aafe7;
}


.content-title-underline {
    margin: 0 auto;
    height: 5px;
    width: 600px;
    border-radius: 5px;
    background-color: var(--color-main);
    margin-bottom: 40px;
    margin-top: 20px;
}

.content-title {
    font-size: 30px;
    font-weight: 300;
    letter-spacing: 10px;
}

.main-img {
    position: relative;
    width: 100%;
    height: 420px;
    overflow: hidden;
}

.main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.small-main-img {
    height: 300px;
}

.common-title-underline {
    margin: auto;
    width: 200px;
    height: 5px;
    border-radius: 5px;
    background-color: var(--color-main);
    margin-bottom: 40px;
}


/*  ad  */
.ad {
    height: 500px;
    width: 200px;
    background-color: #7ad2f7;
    z-index: 5;
    border-radius: 3px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#ad-left {
    display: none;
}
#ad-right {
    display: none;
}

.ad-left-f {
    position: fixed;
    top: 0;
    left: 0;
}
.ad-right-f {
    position: fixed;
    top: 0;
    right: 0;
}

.ad-left-a {
    position: absolute;
    top: 1160px;
    left: 0;
}
.ad-right-a {
    position: absolute;
    top: 1160px;
    right: 0;
}

.ad-close {
    margin-left: 150px;
    margin-top: 8px;
    width: 30px;
    height: 30px;
    background-color: white;
    font-size: 28px;
    border: 1px solid grey;
    border-radius: 3px;
    color: grey;
}
.ad-close:hover {
    cursor: pointer;
    background-color: rgb(224, 224, 224);
    color: black;
    border: 1px solid black;
}


.importent-tip {
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 18px;
    font-weight: 500;
    color: #f60a0c;
}

.importent-tip-top {
    padding-top: 20px;
    font-size: 18px;
    font-weight: 500;
}

.tip-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.tip {
    height: 240px;
    width: 400px;
    border-radius: 10px;
    overflow: hidden;
    background-color: #79d5fc;
    position: absolute;
    top: calc(50vh - 120px);
    left: calc(50vw - 200px);
    font-size: 20px;
}

.tip-head {
    width: 100%;
    height: 50px;
}

.tip-body {
    width: calc(100% - 40px);
    height: 140px;
    background-color: #c1e8f9;
    padding-left: 20px;
    padding-right: 20px;
}

.tip-foot {
    width: 100%;
    height: 50px;
}

.tip-button {
    width: 150px;
    height: 30px;
    border-radius: 10px;
    background-color: white;
    color: var(--color-main);
    font-size: 20px;
}

.tip-button:hover {
    cursor: pointer;
    background-color: var(--color-main-light);
    color: white;
}

#alert-tip {
    display: none;
}




@media screen and (max-width:1180px) {
    /* body::-webkit-scrollbar {
        width: 0 !important;
    }
    body {
        scrollbar-width: none;
    } */ 
    .bodyer {
        min-height: 100px;
    }

    .header {
        width: 100vw;
        height: 65px;
    }
    .navbar {
        height: 60px;
    }
    .pointer {
        width: 100vw;
        height: 100%;
        overflow: hidden;
    }
    .full-img {
        height: 100%;
        object-fit: cover;
    }
    #logo {
        width: 15vw;
    }
    #logo1 {
    }
    .content-r {
        display: none;
    }
    #ad {
        display: none;
    }

    .wenhe-button {
        margin-top: 10px;
        margin-bottom: 10px;
        margin-left: 30px;
        width: 36vw;
        height: 30px;
        border-radius: var(--radius-5);
        font-size: 18px;
        letter-spacing: 1px;
        background-color: var(--color-main);
        color: white;
    }
    .flash-arrow {
        margin-top: 10px;
        margin-bottom: 10px;
        font-size: 18px;
        height: 30px;
        width: 30px;
        animation: moveRightLeft 2s infinite;
    }
    .h150px {
        height: 80px;
    }

    .footer {
        width: 100vw;
        height: auto;
    }
    .footdiv {
        margin: 0 auto;
        width: 100%;
        height: auto;
        background-color: var(--color-main);
    }
    .bottom-info {
        margin: 0 auto;
        width: 90vw;
        display: block;
    }
    .company-info {
        font-size: 14px;
    }
    .info-item-title {
        padding-top: 10px;
        margin-bottom: 10px;
        font-size: 16px;
    }
    .copyright {
        width: 100%;
        height: 50px;
        margin: 0 auto;
        padding-top: 10px;
        color: var(--color-white);
        font-size: 12px;
    }
    .contact-info {
        display: none;
    }



    .importent-tip {
        padding-top: 10px;
        padding-bottom: 10px;
        font-size: 18px;
        font-weight: 500;
        color: #f60a0c;
    }
    
    .importent-tip-top {
        padding-top: 20px;
        font-size: 18px;
        font-weight: 500;
    }
    
    .tip {
        height: 200px;
        width: 80vw;
        position: static;
        margin-left: 10vw;
        margin-top: 20vh;
        font-size: 18px;
    }
    
    .tip-head {
        width: 100%;
        height: 10px;
    }
    
    .tip-body {
        width: calc(100% - 40px);
        height: 140px;
        background-color: #c1e8f9;
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .tip-foot {
        width: 100%;
        height: 50px;
    }
    
    .tip-button {
        width: 150px;
        height: 30px;
        border-radius: 10px;
        background-color: white;
        color: var(--color-main);
        font-size: 18px;
    }

    .content-title-underline {
        margin: 0 auto;
        height: 5px;
        width: 90vw;
        border-radius: 5px;
        background-color: var(--color-main);
        margin-bottom: 20px;
        margin-top: 0px;
    }
}