
@import url('variable.css');
@import "~bootstrap/scss/bootstrap";
html {
    margin: 0;
    padding: 0;
    /* font-size: var(--main_body_size); */
    height: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    /* font-size: 100px !important; */
}
body {
    height: 100%;
    /* background-color: var(--main_body_color);
    background-image: var(--main_body_img); */
    background-blend-mode: soft-light,screen;
    /* overflow: hidden; */
    overflow-y: auto;
    padding: 0;
    margin: 0;
}
 /* Pc导航 */
.navx {
    background-image: var(--nav_img);
    background-repeat: no-repeat;
    z-index: 9999 !important;
    background-size: 100% 100%;
    box-sizing: border-box;
    /* height: var(--nav_height); */
    height: 1.24rem;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
    transition: all 1s;
}
.navx-content {
    /* padding: var(--nav_padding);
    height: 100%; */
    height: 100%;
    display: flex;
    margin: 0 auto;
    width: 75%;
}
.navx-content-l {
    display: flex;
    text-decoration: none;
    overflow: hidden;
    width: 5.5rem;
}
.navx-content-r {
    flex: 1;
    position: relative;
}
.navx-content-r_tabs {
    float: right;
    display: flex;
    margin-top: 0.1rem;
}
.navx-content-r_tabs-en {
    width: 1rem;
    font-size: 0.16rem;
    margin-right: 0.1rem;
    color: #fff;
    text-align: center;
    background-image: url(../assets/images/tabs-en.png);
    background-size: 100% 100%;
    /* background-color: #5f96dd; */
    padding: 0.05rem 0.1rem;
    display: block;
    text-decoration: none;
}
.navx-content-r_tabs-search {
    display: flex;
    width: 2.5rem;
    height: 0.35rem;
    border: 0.01rem solid #5f96dd;
    border-right: 0;
    border-radius: 0.07rem;
    /* border-top-right-radius: 0;
    border-bottom-right-radius: 0; */
    overflow: hidden;
}
.navx-content-r_tabs-search > input[type="text"] {
    font-size: 0.14rem;
    border: none;
    background-color: transparent;
    height: auto;
    width: 100%;
    -webkit-appearance: none; /* Safari 和 Chrome */
    -moz-appearance: none;    /* Firefox */
    appearance: none;         /* 标准属性 */
    box-sizing: border-box; /* 让宽度包含边框和内边距 */
    color: #5f96dd;
    padding-left: 0.05rem;
}
/* 去除轮廓线，当元素获得焦点时出现 */
.navx-content-r_tabs-search > input[type="text"]:focus {
    outline: none;
  }
/* 去除默认的边框阴影效果 */
.navx-content-r_tabs-search > input[type="text"]::-webkit-search-decoration,
.navx-content-r_tabs-search >  input[type="text"]::-webkit-search-cancel-button,
.navx-content-r_tabs-search >  input[type="text"]::-webkit-search-results-button,
.navx-content-r_tabs-search >  input[type="text"]::-webkit-search-results-decoration {
  -webkit-appearance: none;
}

.navx-content-r_tabs-search > input[type="button"] {
    width: 0.45rem;
    font-size: 0.16rem;
    border: none;
    background-color: transparent;
    height: auto;
    -webkit-appearance: none; /* Safari 和 Chrome */
    -moz-appearance: none;    /* Firefox */
    appearance: none;         /* 标准属性 */
    box-sizing: border-box; /* 让宽度包含边框和内边距 */
    background-color: #5f96dd;
    background-image: url(../assets/images/search-icon.png);
    /* background-size: auto auto; */
    background-repeat: no-repeat;
    background-position: center;
    padding: 0;
    border-radius: 0.07rem;
    /* border-top-left-radius: 0.07rem;
    border-bottom-left-radius: 0.07rem; */
}
/* 去除轮廓线，当元素获得焦点时出现 */
.navx-content-r_tabs-search > input[type="button"]:focus {
    outline: none;
}
/* 去除默认的边框阴影效果 */
.navx-content-r_tabs-search > input[type="button"]::-webkit-search-decoration,
.navx-content-r_tabs-search >  input[type="button"]::-webkit-search-cancel-button,
.navx-content-r_tabs-search >  input[type="button"]::-webkit-search-results-button,
.navx-content-r_tabs-search >  input[type="button"]::-webkit-search-results-decoration {
  -webkit-appearance: none;
}
.navx-content-r_ul {
    font-size: 0.16rem;
    color: #0d6efd;
    position: absolute;
    bottom: 0.25rem;
    right: 0;
    font-weight: bold;
}
.navx-content-r_ul-li {
    display: inline-block;
    margin: 0 0.1rem;
    position: relative;
    text-decoration: none;
}
.navx-content-r_ul-li_dropdown {
    position: absolute;
    top: 0;
    left: 50%;
    height: 0;
    /* display: none; */
    visibility: hidden;
    min-width: 2rem;
    transform: translateX(-50%);
    opacity: 0;
}
.navx-content-r_ul-li:hover > .navx-content-r_ul-li_dropdown {
    /* display: block; */
    visibility: visible;
    height: auto;
    transition: 1s all;
    opacity: 1;
}
.navx-content-r_ul-li_dropdown > div {
    margin-top: 0.4rem;
    background-color: #0a5dc3;
    position: relative;
}
.navx-content-r_ul-li_dropdown_icon {
    font-size: 0.24rem;
    text-align: center;
    position: absolute;
    top: -0.25rem;
    left: 50%;
    transform: translateX(-50%);
    color: #0a5dc3;
}
.navx-content-r_ul-li_dropdown > div > a {
    display: block;
    text-decoration: none;
    color: #fff;
    padding: 0.1rem;
}
.navx-content-r_ul-li_dropdown > div > a:hover {
    background-color: #fff;
    color: #0a5dc3;
    transition: 1s all;
}
/* 轮播 */
.slideshow {
    margin-top: 1.24rem;
    /* width: 100%;
    height: 100%; */
    /* background-color: #007bff; */
}
.carousel-control-prev-icon, .carousel-control-next-icon {
    width: 0.4rem;
    /* height: 0.3rem; */
}
.carousel-inner {
    width: 100% !important;
    height: 100% !important;
}
.carousel-item {
    width: 100% !important;
    height: 100% !important;
}
.carousel-item > img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}
.carousel-indicators_slide {
    list-style: none;
    /* margin-right: 0 !important; */
    margin-bottom: 0 !important;
}
.carousel-indicators_slide [data-bs-target] {
    width: 0.4rem !important;
    height: 0.07rem !important;
    margin-right: 0.03rem !important;
    margin-left: 0.03rem !important;
}
.canopy {
    width: 100%;
    height: 5.7rem;
    background-image: url(../assets/images/chunyiangra.jpg);
    background-size: 100% 100%;
    position: relative;
}
/* 底部 */
.footer {
    height: 2.5rem;
    /* background-color: var(--main_footer_color); */
    background-image: url(../assets/images/footer.png);
    background-size: 100% 100%;
}
.footer-container {
    width: 70%;
    margin: 0 auto;
    display: flex;
    font-size: 0.16rem;
    padding-top: 0.6rem;
}
.footer-container-l {
    width: 4rem;
}
.footer-container-l > img {
    width: 100%;
}
.footer-container-c {
    flex: 1;
    color: #fff;
    margin-left: 0.2rem;
    /* border-left: 1px solid #fff; */
    padding-left: 0.1rem;
    padding-top: 0.1rem;
    font-family: "Microsoft YaHei", 微软雅黑;
    color: rgb(255, 255, 255);
    text-align: left;
}
/* .footer-container-c {
    width: 3rem;
} */
.footer-container-r {
    width: 3rem;
    display: flex;
    color: #fff;
}
.footer-container-r_li {
    margin: 0 0.1rem;
    box-sizing: border-box;
    text-align: center;
}
.footer-container-r_li > img {
    width: 1rem;
}
.footer-container-r_li > div {
    font-size: 0.14rem;
    margin-top: 0.1rem;
}

.to_path {
    /* width: 100%; */
    padding: 0.1rem;
    /* background-color: #fff; */
    /* border-bottom: 1px solid var(--main_body_color); */
    font-size: 0.16rem;
}
.to_path > a {
    color: black;
    text-decoration: none;
}
.to_path > span {
    font-size: 0.18rem;
}
.to_path > i {
    font-size: 0.14rem;
}
.to_path_active {
    font-weight: 600;
}