:root {
    --theme-color: rgb(0, 102, 114);
    --footer-bg: rgb(31, 150, 148)
}

html,
body {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Microsoft YaHei", Arial, Helvetica, sans-serif;
    min-width: 1200px;
}

ul,
li {
    list-style: none;
}

a {
    color: inherit;
    text-decoration: none;
}

.en-title {
    font-family: Arial, Helvetica, sans-serif;
    text-align: justify;
    text-transform: uppercase;
}

/* header */
.header {
    background: url("../img/header.jpg");
    background-position: center;
    background-size: cover;
    height: 355px;
    position: relative;
}

.logo-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
}

.y-logo {
    height: 82px;
    margin-right: 8px;
}

.logo-text {
    font-size: 30px;
    margin-left: 60px;
    display: flex;
    align-items: center;
}

.svg-en-title {
    width: 305px;
}

.logo-text .en-title {
    font-size: 9.4px;
    margin-top: 5px;

}

.nav-container {
    position: relative;
    transform: translateY(-40px);
    /* position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);*/
    z-index: 999;
}



/* main */
.main {
    min-height: calc(100vh - 572px);
}

.w1200 {
    width: 1200px;
    margin: auto;
}

.block {
    padding-top: 40px;
}

.section-title {
    color: var(--theme-color);
    font-weight: bold;
    font-size: 26px;
    line-height: 1.5;
    position: relative;
}

.section-title .en-title {
    color: #555;
    font-weight: 100;
}

.more-btn {
    position: absolute;
    right: 0;
    bottom: 0;
    color: #fff;
    background-color: var(--theme-color);
    font-weight: 100;
    font-size: 16px;
    padding: 0 5px;
    font-family: Arial, Helvetica, sans-serif;
}

.more-btn:hover {
    cursor: pointer;
    color: var(--theme-color);
    background-color: rgb(0, 102, 114, 0.3)
}


/* footer */
.footer {
    /* margin-top: 70px; */
    padding: 40px 0;
    background-color: var(--footer-bg);
    color: #fff;
}

.footer-container,
.footer-l,
.ewm-group {
    display: flex;
    align-items: center;
}

.footer-logo img {
    width: 92px;
    margin: auto;
    margin-right: 30px;
    display: block;

}

.footer-text {
    font-size: 18px;
    line-height: 1.9;
}

.ewm-group {
    text-align: center;
    flex: 1;
    justify-content: center;
    gap: 40px;
}

.ewm-group img {
    width: 75px;
    background: #fff;
    padding: 10px;
    display: block;
    margin: auto;
    margin-bottom: 10px;
}

/* media */
@media screen and (max-width:768px) {

    html,
    body {
        min-width: 100%;
    }

    .header {
        height: auto;
    }

    .logo-container {
        flex-wrap: wrap;
        position: static;
        transform: none;
        padding: 20px;
        padding-bottom: 60px;
    }

    .logo-img img {
        height: 40px;
        margin-bottom: 10px;
    }

    .logo-text {
        margin: 0;
        font-size: 26px;
    }

    .svg-en-title {
        width: 260px;
    }

    .svg-text {
        line-height: 1;
        vertical-align: middle;
        font-size: 9.3px;
    }

    .y-logo {
        height: 52px;
    }

    .w1200 {
        width: 100%;
        padding: 10px;
        box-sizing: border-box;
    }

    .footer-container,
    .footer-l {
        display: block;
        text-align: center;
    }

    .footer-logo img {
        margin: auto;
    }

    .footer-text {
        font-size: 14px;
        text-align: left;
        padding: 20px;
    }

    .ewm-group div {
        padding-bottom: 10px;
    }

    .hide-on-sm {
        display: none
    }
}