@charset "UTF-8";

:root {
    box-sizing: border-box;
    text-size-adjust: 100%;
    --primary: #f1a301;
    --primary-light: #e39a00;
    --secondary: #9a6b07;
    --text-color: #333;
    --text-secondary: #666;
    --bg-color: #fff;
    --bg-gray: #f5f5f5;
    --border: 1px solid #eee;
    --border-radius: 4px;
    --shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* @font-face {
    font-family: 'SourceHanSerifCN';
    src: url('../font/SourceHanSerifCN-SemiBold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
} */

*,
*::before,
*::after {
    box-sizing: inherit;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, "Segoe UI", Roboto, "PingFang SC", "Microsoft YaHei", sans-serif;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

input,
button,
textarea,
select {
    font: inherit;
}

a {
    text-decoration: none;
    color: inherit;
}

ul,
ol {
    list-style: none;
}

.container {
    position: relative;
    padding-left: 50px;
    padding-right: 50px;
    min-width: 1366px;
}

@media (max-width:1365px) and (min-width:768px) {
    .container {
        min-width: 100%;
    }
}

@media (max-width:767px) {
    .container {
        min-width: 100%;
        padding-left: 10px;
        padding-right: 10px;
    }
}

.layout {
    position: relative;
    width: 100%;
}

.area-info-bg {
    background-color: #c68600;
    padding-bottom: 78px;
}

.area-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 42px;
    min-height: 300px;
}

.area-info .flag {
    display: flex;
    flex-direction: column;
    border: 4px solid var(--primary-light);
    flex: 0 0 450px;
}

.area-info .flag .logo {
    background-color: var(--primary-light);
    padding-top: 40px;
    padding-bottom: 40px;
    width: 100%;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.area-info .flag .logo>img {
    width: 220px;
}

.area-info .flag .text {
    height: 150px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.area-info .flag .text>img {
    padding-left: 10px;
    padding-right: 10px;
}

.area-info .contact-info {
    border: 10px solid var(--primary-light);
    flex: 0 0 450px;
    color: #fff;
    font-weight: 500;
    line-height: 30px;
    padding: 20px;
    position: relative;
}

.contact-info .title {
    font-size: 18px;
}

.contact-info .phone {
    padding-top: 18px;
    padding-bottom: 38px;
}

.contact-info .phone>img {
    width: 270px;
}

.contact-info .addr {
    position: absolute;
    right: 20px;
    bottom: 40px;
}

.contact-info .addr>a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    line-height: 2;
}

.map-info {
    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;
    flex: 1;
    min-width: 280px;
    min-height: 300px;
    position: relative;
}

.map-info a {
    display: block;
    height: 100%;
}

.map-info .text-title {
    position: absolute;
    right: 10px;
    bottom: 10px;
}

.copyright-bg {
    background-color: var(--secondary);
}

.copyright {
    font-size: 14px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

.copyright .media-info {
    height: 100%;
}

.copyright .media-img,
.copyright .lang-popup {
    top: auto;
    bottom: 100%;
    transform-origin: bottom;
}

@media (max-width:1365px) {
    .copyright .media-info {
        display: none;
    }
}

.top-info-bg {
    background-color: #c68600;
}

.top-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    height: 60px;
    position: relative;
}

.top-info>* {
    height: inherit;
}

.top-info .weather-info {
    display: flex;
    align-items: center;
}

.weather-info {
    color: #fff;
    height: 100%;
    cursor: pointer;
}

.weather-more {
    position: absolute;
    top: 100%;
    left: 50px;
    width: 320px;
    padding: 12px;
    border-radius: 15px;
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    background-color: rgba(241, 244, 247, 0.9);
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.2);
    z-index: 9;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.wether-item {
    text-align: center;
}

.wether-item>div {
    padding-top: 2px;
    padding-bottom: 2px;
}

.weather-info:hover+.weather-more,
.weather-more:hover {
    opacity: 1;
    visibility: visible;
}

.media-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.media-item {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    height: 100%;
    gap: 8px;
    position: relative;
    cursor: pointer;
}

.media-item:hover>.media-img {
    transform: scaleY(1);
}

.media-img {
    position: absolute;
    top: 100%;
    left: 0;
    width: 128px;
    height: 128px;
    transform: scaleY(0);
    transition: all 0.2s ease;
    transform-origin: top;
    z-index: 99;
}

.media-img>img {
    width: 100%;
    border-radius: 5px;
}

#lang-text::before {
    content: "语言/Language";
}

#lang-text-en::before {
    content: "Language";
}

@media (max-width:767px) {
    #lang-text::before {
        content: "语言";
    }
}

.icon-lang {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-color: #296ebc;
}

.media-item:hover>.lang-popup {
    transform: scaleY(1);
}

.lang-popup {
    position: absolute;
    top: 100%;
    left: 0;
    width: 128px;
    transform: scaleY(0);
    transition: all 0.2s ease;
    transform-origin: top;
    z-index: 999;
}

.lang-popup a {
    display: block;
    color: #333;
    padding-top: 8px;
    padding-bottom: 8px;
}

.lang-popup a:hover {
    color: #f1a301
}

.lang-popup .card {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 5px;
    padding: 8px;
    text-align: center;
}

.lang-popup .card>*+* {
    border-top: 1px solid #eee;
}

.navbar .logo {
    flex-shrink: 0;
    margin-right: 20px;
}

.navbar-bg {
    background-color: #e39a00;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 110px;
}

.nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

@media (max-width:767px) {
    .nav {
        height: 0;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav.active {
        height: 100%;
        visibility: visible;
        opacity: 1;
    }
}

.nav-item {
    position: relative;
}

.nav-item>a {
    display: block;
    padding: 5px 15px;
    text-align: center;
}

.nav-item>.dropdown {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.nav-item:hover>.dropdown {
    opacity: 1;
    visibility: visible;
}

.nav-item .text-main {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}

.nav-item .text-sub {
    color: #fff;
    font-size: 12px;
}

.dropdown {
    position: absolute;
    top: 100%;
    margin-top: 15px;
    left: 50%;
    transform: translateX(-50%);
    min-width: 8em;
    display: flex;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 15px 12px;
    text-align: center;
    border-radius: 8px;
    z-index: 9;
}

.dropdown a {
    color: #fff;
    display: block;
    padding-top: 8px;
    padding-bottom: 8px;
}

.dropdown a:hover {
    color: #f1a301
}

.dropdown::before {
    content: "";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 15px solid rgba(0, 0, 0, 0.6);
}

.mobile-menu-btn {
    display: none;
    width: 30px;
    height: 20px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #eee;
    transition: all 0.3s;
}

@media (max-width:767px) {
    .mobile-menu-btn {
        display: flex;
        margin-left: 15px;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

.banner-sub {
    position: relative;
}

.bread-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
}

.back {
    cursor: pointer;
}

.bread-bg {
    background-color: #fff;
}

.bread {
    height: 60px;
    background-color: #fff;
    padding-left: 330px;
    display: flex;
    align-items: center;
    color: #999;
    font-size: 14px;
}

/* .bread>a+*::before {
    content: '-';
    margin-left: 6px;
    margin-right: 6px;
} */

.outer-rectangle {
    width: 300px;
    height: 120px;
    background-color: transparent;
    border: 10px solid rgba(198, 134, 0, 0.8);
    padding: 4px;
    position: absolute;
    bottom: 0;
    z-index: 99;
}

.inner-rectangle {
    width: 100%;
    height: 100%;
    background-color: rgba(198, 134, 0, 0.8);
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 36px;
    color: #fff;
    /* font-family: 'SourceHanSerifCN'; */
}

.bg-bottom {
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: contain;
    padding-bottom: 41.6%;
    /* height: 800px; */
}

.nav-sub {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 0;
    color: #fff;
    padding-top: 52px;
    padding-bottom: 52px;
}

.nav-sub a {
    display: block;
}

.nav-sub>a+*::before {
    content: '|';
    margin-left: 28px;
    margin-right: 28px;
}

@media (max-width:1365px) and (min-width:768px) {
    .weather-info {
        text-align: center;
        height: auto;
    }

    .top-info>* {
        min-height: 30px;
    }

    .media-img::before,
    .lang-popup::before {
        content: '';
        display: block;
        height: 10px;
    }

    .navbar,
    .top-info {
        flex-wrap: wrap;
        justify-content: center;
        height: auto;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .navbar {
        height: 200px;
    }

    .navbar .logo {
        flex: 1 1 100%;
        margin-bottom: 20px;
        margin-top: 20px;
        display: flex;
        justify-content: center;
    }

    .area-info {
        height: auto;
    }

    .area-info .flag,
    .area-info .contact-info {
        flex: 1 1 450px
    }

    .map-info {
        flex: 1 1 100%
    }
}

@media (max-width:767px) {
    .xs-hidden {
        display: none !important;
    }

    .lang-popup {
        width: 100px;
    }

    .top-info {
        justify-content: flex-end;
    }

    .navbar {
        height: auto;
    }

    .navbar .logo {
        position: absolute;
        top: -43px;
    }

    .navbar .logo img {
        height: 25px;
    }

    .navbar .nav {
        width: 100%;
    }

    .area-info {
        height: auto;
        gap: 20px;
    }

    .area-info .flag,
    .area-info .contact-info {
        width: 100%;
        flex: 1 1 100%;
    }

    .map-info {
        height: 300px;
        width: 100%;
    }

    .area-info-bg {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .bread {
        padding-left: unset;
    }
}