/********** Template CSS **********/
:root {
    --primary: #000;
    --primary-light: #5a6065;
    --light: #F8F8F8;
    --dark: #252525;
}

@font-face {
    font-family: 'notoSansCJK';
    src: url(../font/NotoSansCJK-Regular-1.woff) format('woff');
}

body,
html {
    overflow-x: hidden;
    overflow-y: auto;
    width: 100%;
    font-family: 'notoSansCJK';
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
dialog,
figure,
footer,
header,
nav,
section,
time,
mark,
audio,
video {
    font-size: 1em;
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body,
table,
input,
textarea,
select,
option,
h1,
h2,
h3,
h4,
h5,
h6 {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

ul,
ul li,
dl,
dl dd,
dl dt {
    list-style: none;
}

h1,
h2,
.h1,
.h2,
.fw-bold {
    font-weight: 600 !important;
}

h3,
h4,
.h3,
.h4,
.fw-medium {
    font-weight: 500 !important;
}

h5,
h6,
.h5,
.h6,
.fw-normal {
    font-weight: 400 !important;
}
table {
    border: 1px #666 solid ;
    border-collapse: collapse;
}
table tr td{
    border: 1px #666 solid ;
}

a {
    color: var(--primary);
    text-decoration: none;
}

a:hover {
    color: #666;
    text-decoration: none;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 65px;
    bottom: 30px;
    z-index: 99;
    font-size: 30px;
    /* border: 1px solid #999; */
    color: #000;
    /* border-radius: 4px; */
    /* background: #fff; */
}

@media only screen and (max-width: 450px) {

    .back-to-top {
        /* bottom: 130px; */
        display: none;
    }
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.bg-white {
    background-color: #fff !important;
}

.align-items-center {
    align-items: center !important;
}

.justify-content-center {
    justify-content: center !important;
}

.vh-100 {
    height: 100vh !important;
}

.w-100 {
    width: 100% !important;
}

.translate-middle {
    transform: translate(-50%, -50%) !important;
}

.start-50 {
    left: 50% !important;
}

.top-50 {
    top: 50% !important;
}

.position-fixed {
    position: fixed !important;
}

.position-relative {
    position: relative !important;
}

.spinner-border {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    vertical-align: -0.125em;
    border: 0.25em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: .75s linear infinite spinner-border;
}

@keyframes spinner-border {
    to {
        transform: rotate(360deg)
            /* rtl:ignore */
    }
}

.d-flex {
    display: flex !important;
}

.position-absolute {
    position: absolute !important;
}

.input-group {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
}

.input-group-text {
    display: flex;
    align-items: center;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #777;
    text-align: center;
    white-space: nowrap;
    background-color: #e9ecef;
    border: 1px solid #252525;
    border-radius: 0px;
}

.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
    margin-left: -1px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.input-group>.form-control,
.input-group>.form-select {
    position: relative;
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
}

.form-control {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #777;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #252525;
    appearance: none;
    border-radius: 0px;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.ellipsis {
    white-space: nowrap
}

.ellipsis,
.ellipsis2 {
    overflow: hidden;
    text-overflow: ellipsis
}

.ellipsis2 {
    display: -webkit-box !important;
    -webkit-line-clamp: 2;
    /*! autoprefixer: off */
    -webkit-box-orient: vertical;
    word-break: break-all
}

.flex,
.flex-s {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.flex,
.flex-s,
.flex-s-s {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row
}

.flex-s-s {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
}

.flex-e-e {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row
}

.flex-c-c {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.flex-a,
.flex-c-c {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

.flex-a {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.flex-e {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end
}

.flex-b,
.flex-e {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row
}

.flex-b {
    -ms-flex-pack: distribute;
    justify-content: space-around
}

.flex_auto {
    width: 0;
    -webkit-box-flex: 1;
    -ms-flex: auto;
    flex: auto
}

.flex_none {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none
}

.flex_shrink_none {
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.flex_wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.flex_1 {
    width: 0;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.relative {
    position: relative
}

.flex-direction_column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

/*** Button ***/


.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 28px;
    height: 28px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn-outline-body {
    color: var(--primary);
    border-color: #777777;
}

.btn-outline-body:hover {
    color: #FFFFFF;
    background: var(--primary);
    border-color: var(--primary);
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 30px 0;
    color: var(--dark);
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

.ckeditor-html5-video video {
    background-color: #000;
}

/*** Header ***/
.owl-carousel-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, .5);
}

.owl-carousel-inner a {
    display: inline-block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;

}

.owl-carousel-inner .text {

    position: absolute;
    top: 50%;
    right: 50px;
    color: #fff;
    font-size: 30px;
    text-align: right;
    -webkit-transform: translate(0%, -50%);
    -ms-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
}

.owl-carousel-inner .text p {
    /* -webkit-transition: 1s ease-in-out;
    transition: 1s ease-in-out;
    opacity: 0;
    transform: translateX(-50%); */
}

.owl-carousel-inner .text p.p2 {
    font-size: 50px;
    font-weight: bold;
}

.slick-active .owl-carousel-inner .text .p1 {
    /* -webkit-transition: 1s ease-in-out;
    transition: 1s ease-in-out;
   
    transform: translateX(0); */
    animation-name: fadeInLeft;
    animation-duration: 2s;
    /* animation-delay: 0.5s; */
}

.slick-active .owl-carousel-inner .text .p2 {
    animation-name: fadeInLeft;
    animation-duration: 2s;
    animation-delay: 0.2s;
    /* -webkit-transition: 1s .5s ease-in-out;
    transition: 1s .5s ease-in-out;
    opacity: 1;
    transform: translateX(0); */
}

.header-carousel-fluid .owl-nav {
    position: relative;
}

.header-carousel-fluid .owl-nav .slick-dots {
    padding: 0 10px;
    position: relative;
    bottom: 0;
}

.header-carousel-fluid .owl-nav .slick-dots li {
    padding: 10px;
    cursor: pointer;
    display: inline-block;
    width: auto;
    height: auto;
    margin: 0;
}

.header-carousel-fluid .owl-nav .slick-dots li button {
    padding: 0;
    cursor: pointer;
    border: 0px;
    background: none;
    display: inline-block;
    font-size: 20px;
    color: #979797;
}

.header-carousel-fluid .owl-nav .slick-dots li.slick-active button {
    color: #fff;
}

.header-carousel-fluid .owl-nav .slick-dots li button:before {
    display: none;
}

.header-carousel-fluid .owl-nav .bi {
    cursor: pointer;
    font-size: 20px;
    color: #fff;
    position: absolute;
}

.header-carousel-fluid .owl-nav .prev {
    left: -20px;
}

.header-carousel-fluid .owl-nav .next {
    right: -20px;
}

.header-carousel-fluid {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.header-carousel-fluid .header-carousel,
.header-carousel-fluid .header-carousel .slick-list,
.header-carousel-fluid .header-carousel .slick-list .slick-track {
    height: 100%;
    overflow: hidden;
}


.header-carousel-fluid .header-carousel .owl-carousel-item {
    height: 100%;
}


.header-carousel-fluid .header-carousel .owl-carousel-item img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.header-carousel-fluid .owl-nav {
    position: absolute;
    bottom: 80px;
    right: 80px;
    z-index: 100;

}

@media (max-width: 768px) {
    .header-carousel-fluid .owl-nav {
        left: 50%;
        right: auto;
        bottom: 100px;
        -webkit-transform: translate(-50%, 0%);
        -ms-transform: translate(-50%, 0%);
        transform: translate(-50%, 0%);
    }
}

/* 重要通知 */
.header-carousel-fluid .notice_list {
    position: absolute;
    left: 270px;
    bottom: 50px;
    z-index: 100;
    font-size: 14px;
    color: #fff;
}

.header-carousel-fluid .notice_list .ul_list {
    padding-left: 10px;
    display: inline-block;
}

.header-carousel-fluid .notice_list .ul_list li,
.header-carousel-fluid .notice_list .ul_list li a {
    font-size: 14px;
    color: #fff;
}

.header-carousel-fluid .notice_list .ul_list li a {
    border-bottom: 1px solid white;
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        /* min-height: 500px; */
    }

    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .owl-carousel-inner .text {
        font-size: 16px;
        right: 30px;
    }

    .owl-carousel-inner .text p.p2 {
        font-size: 30px;
    }
}

.header-carousel .owl-dots {
    position: absolute;
    width: 60px;
    height: 100%;
    top: 0;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dots .owl-dot {
    position: relative;
    width: 45px;
    height: 45px;
    margin: 5px 0;
    background: var(--dark);
    transition: .5s;
}

.header-carousel .owl-dots .owl-dot.active {
    width: 60px;
    height: 60px;
}

.header-carousel .owl-dots .owl-dot img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 2px;
    transition: .5s;
    opacity: .3;
}

.header-carousel .owl-dots .owl-dot.active img {
    opacity: 1;
}

/* .page-header {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../image/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
} */

.section-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    z-index: 1000;
    pointer-events: none;
}

.section-header .header__inner {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 220px;
    flex: 0 0 220px;
    max-width: 220px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 50px 0 50px 50px;
    border-right: solid #b9b9b9 1px;
    pointer-events: all;
    position: relative;
}

.section-header .header__inner .nav_list_box {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: 0;
    left: 50px;
}

.section-header .header__inner .nav_list_box .nav_list {}

.section-header .header__inner .header__logo {
    position: relative;
    z-index: 100;
}

.section-header .header__inner .header__logo img {
    width: 100px;
    /* -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out; */
    position: absolute;
    left: 0;
    top: 0;
}

.section-header .header__inner .header__logo img.seize {
    opacity: 0;
    position: relative !important;
}

.section-header .header__inner .header__logo img.white {
    opacity: 0;
}

.section-header.is-white .header__inner .header__logo img.white {
    opacity: 1;
}

.section-header.is-white .header__inner .header__logo img.dark {
    opacity: 0;
}

.section-header.is-white .nav_list li a {
    color: #fff;
}

.nav_list {
    /* padding-left: 50px; */
}

.nav_list li,
.nav_list li a {
    color: #20252a;
    font-size: 14px;
    line-height: 50px;
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.h5_hide {
    display: block;
}

.h5_block {
    display: none;
}

.is-white {}

.pc_block {
    display: block !important;
}

.pc_block{
    display: block !important
}


/* 右侧展开菜单 */
.shopify-section .nav_list li,
.shopify-section .nav_list li a {
    color: #fff;
}

.c-gnavi {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1000;
    /* pointer-events: none; */
}

.c-gnavi__btn {
    background-color: transparent;
    border: 0;
    padding: 0;
    width: 45px;
    height: 45px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: fixed;
    top: 50px;
    right: 60px;
    z-index: 999;
    cursor: pointer;
    pointer-events: all;
    cursor: pointer;
}

.c-gnavi__btn span {
    display: block;
    width: 45px;
    height: 2px;
    background-color: #000;
    margin: 6px 0;
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.c-gnavi__btn.is-white span {
    background-color: #fff;
}

.c-gnavi.is-open {
    z-index: 2000;
    width: 100%;
    height: 100vh;
}

.c-gnavi.is-open .c-gnavi__btn span {
    margin: 0;
    background-color: #fff
}

.c-gnavi.is-open .c-gnavi__btn span:nth-child(1) {
    -webkit-transform: translateY(50%) rotate(45deg);
    transform: translateY(50%) rotate(45deg)
}

.c-gnavi.is-open .c-gnavi__btn span:nth-child(2) {
    -webkit-transform: translateY(-50%) rotate(-45deg);
    transform: translateY(-50%) rotate(-45deg)
}

/* .c-gnavi.is-open 5A6065 */
.c-gnavi__bg {
    display: block;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0;
    -webkit-transition: opacity .5s ease-in-out;
    transition: opacity .5s ease-in-out;
    position: relative;
    z-index: 10;
    pointer-events: none;
}

.c-gnavi.is-open .c-gnavi__bg {
    opacity: 0.5;
}

.c-gnavi .c-gnavi__wrapper {
    background-color: #5A6065;
    width: 500px;
    height: 100vh;
    position: absolute;
    right: 0;
    top: 0;
    overflow: auto;
    /* pointer-events: none; */
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    transform: translateX(100%);
    z-index: 100;
}

.c-gnavi.is-open .c-gnavi__wrapper {
    transform: translateX(0);
}

.c-gnavi .c-gnavi__inner {
    padding: 122px 60px 57px;
    position: relative;
    /* -webkit-overflow-scrolling: touch; */
}

.c-gnavi .c-gnavi__inner .input-group {
    border-bottom: 1px solid #fff;
}

.c-gnavi .c-gnavi__inner .input-group .input-group-text {
    background: none !important;
    border: 0px;
    color: #fff;
    padding-left: 0;
    padding-right: 0;
}

.c-gnavi .c-gnavi__inner .input-group .form-control {
    background: none !important;
    border: 0px;
    color: #fff;
    font-size: 14px !important;

}

input:-webkit-autofill,

input:-webkit-autofill:hover,

input:-webkit-autofill:focus,

input:-webkit-autofill:active {

    -webkit-transition-delay: 99999s;

    -webkit-transition: color 99999s ease-out, background-color 99999s ease-out;

}

.c-gnavi .c-gnavi__inner .input-group .form-control:focus {
    outline: none;
    box-shadow: none;
}

.c-gnavi .c-gnavi__inner .input-group .form-control::-webkit-input-placeholder {
    color: #fff !important;
}

/* 菜单 */
.c-gnavi .c-gnavi__inner .nav_list {
    padding: 30px 0;
    border-bottom: 1px solid #848687;
}

/* 右侧菜单下方 */
.right_footer {
    /* left: 57px;
    right: 57px;
    position: absolute;
    bottom: 57px; */
    margin: 0 57px 57px 57px;
    font-size: 14px;
    color: #fff;
}

/* =================模块布局================= */
.page-container {
    width: 100%;
    padding: 100px 0 100px 220px;
}

.page-container.page-cn {
    padding: 60px 0 100px 220px;
}

.page-container.page-show {
    padding: 0px 0 0 220px;
}

/*没有上面内容 */
.page-container.page-show-no-top {
    padding-top: 80px;
}

.av-container {
    padding: 0 80px;
}

/* page title */
.page_title {
    font-size: 28px;
    color: #000;
    font-weight: normal !important;
    margin-bottom: 60px;
}

.page_title.border {
    border-bottom: 1px solid #9d9d9d;
    padding-bottom: 40px;
}

.page_title.white {
    color: #fff;
}

/* =================模块布局 end================= */

/* 首页产品列表 */
.product-list-wrap {
    background-color: #f3f3f3;
}

.product-list-wrap .page-container {
    padding-bottom: 130px;
}

/* .product-list-wrap .av-container .page_title{
    margin-bottom: 60px;
} */
.product-list-wrap .av-container .slick-arrow {
    font-size: 50px;
    font-weight: 100;
    cursor: pointer;
}

.product-list-ul .item {
    margin: 0 30px;
}

@media only screen and (max-width: 1024px) {
    /* .product-list-wrap{
        background-color: #f3f3f3;
        padding: 200px 0  200px 0;
    } */
}

@media only screen and (max-width: 450px) {

    /* .product-list-wrap .av-container .page_title{
        margin-bottom: 30px;
    } */
    /* .product-list-wrap .av-container{
        padding: 0 50px;
    } */
    .product-list-wrap .av-container .slick-arrow {
        display: none !important;
    }

    .product-list-ul .item {
        margin: 0 0px;
    }

    /* .product-list-wrap{
        background-color: #f3f3f3;
        padding: 150px 0  150px 0;
    } */
}

.product-list-ul .item img {
    width: 100%;
}

.product-list-ul .item .title {
    font-size: 22px;
    text-align: center;
    padding-bottom: 30px;
    color: var(--primary);
}

.product-list-ul .item img {
    /* width: 450px; */
    max-width: 100%;
    /* max-height: 180px; */
    object-fit: cover;
    padding-bottom: 50px;
}

.product-list-ul .item .description {
    font-size: 14px;
    text-align: center;
    line-height: 30px;
    padding-bottom: 50px;
    color: var(--primary-light);
}

.product-list-ul .item .but {
    border: 1px solid #797979;
    display: block;
    width: 99%;
    margin: 0 auto;
    color: var(--primary);
    text-align: center;
    padding: 10px;

}

.product-list-ul .slick-dots {
    bottom: -50px;
}

/* 首页新闻列表 */
.news-list-ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -45px;
    margin-bottom: -47px;
}

.news-list-ul .item {
    -ms-flex-preferred-size: calc(50% - 45px);
    flex-basis: calc(50% - 45px);
    max-width: calc(50% - 45px);
    margin-left: 45px;
    margin-bottom: 45px;
}

.news-list-ul .service-item .bg-img {
    width: 100%;
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
    filter: gray;
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.news-list-ul .service-item:hover .bg-img {
    width: 100%;
    -webkit-filter: grayscale(0%);
    -moz-filter: grayscale(0%);
    -ms-filter: grayscale(0%);
    -o-filter: grayscale(0%);
    filter: grayscale(0%);
    filter: none;
}

@media only screen and (max-width: 450px) {
    .news-list-ul .service-item .bg-img {
        -webkit-filter: grayscale(0%);
        -moz-filter: grayscale(0%);
        -ms-filter: grayscale(0%);
        -o-filter: grayscale(0%);
        filter: grayscale(0%);
        filter: none;
    }
}

.news-list-ul .item .service-text {
    font-size: 22px;
    border-bottom: 1px solid #d7d7d7;
    padding: 40px 0 30px 0;
}

.news-list-ul .item .time {
    text-align: right;
    font-size: 14px;
    padding-top: 20px;
    color: var(--primary-light);
}

/* 查看更多 */
.list_more {
    position: relative;
}

.list_more a {
    display: block;
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-align: center;
    line-height: 60px;
    height: 60px;
    border: 2px solid black;
    font-size: 20px;
    letter-spacing: .8px;
    position: relative;
    -webkit-transition: .3s;
    transition: .3s;
    cursor: pointer;
    margin-top: 80px;
}

@media only screen and (max-width: 450px) {
    .list_more a {
        margin-top: 50px;
    }
}
.list_more.white a {
    border-color: white;
    color: white;
}

.list_more a:hover {
    background-color: black;
    color: white;
    opacity: 1;
}

.list_more.white a:hover {
    background-color: white;
    color: black;
    opacity: 1;
}

.list_more a:hover .bi {
    color: white;
}

.list_more.white a:hover .bi {
    color: black;
}

.list_more .bi {
    position: absolute;
    right: 0;
    color: #000;
    top: 50%;
    right: 30px;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

.list_more.white .bi {
    color: white;
}

/* 媒体声音 */
.media-list-wrap {
    background-image: url(../image/p_bg_01.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    min-height: 100vh;
}

.media-list-ul .item .service-text {
    font-size: 16px;
    height: 50px;
    color: #000;
}

.media-list-ul.white .item .service-text {
    color: white;
}

.media-list-ul .item .service-text a {
    font-size: 16px;
    color: #000;
    display: inline-block;
    width: 70%;
    max-width: 600px;
}

.media-list-ul.white .item .service-text a {
    color: white;
}

@media only screen and (max-width: 1024px) {
    .media-list-ul .item .service-text.flex-s {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between
    }

    .media-list-ul .item .service-text a {
        width: auto;
    }
}

@media only screen and (max-width: 450px) {

    .media-list-ul .item .service-text.flex-s {
        display: block;
        margin-bottom: 10px;
        height: auto;
    }

    .media-list-ul .item .service-text a {
        border-bottom: 1px solid rgba(255, 255, 255, 0.25);
        display: block;
        padding: 12px 0;
    }

    .media-list-ul .item .service-text .time {
        margin-top: 10px;
        text-align: right;
        font-size: 14px;
    }
}

/* 媒体声音 end */

/* footer */
.footer {
    background: var(--primary-light);
    padding-bottom: constant(safe-area-inset-bottom);
    padding-bottom: env(safe-area-inset-bottom);
}

.footer .top_logo {
    color: #fff;
    font-size: 20px;
}

.footer .top_logo > img {
    width: 230px;
    height: auto;
}
.footer .top_logo .social-share a,.footer .top_logo .social-share a:hover{
    border: 0px;
    color: #fff;
    background: none;
}
.footer .code_list {
    margin-top: 80px;
}

.footer .code_list .item {
    margin: 0 20px;
    color: #fff;
    font-size: 14px;
    text-align: center;
    /* -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1; */
}

.footer .code_list .item img {
    max-width: 100px;
}

@media only screen and (max-width: 450px) {

    .footer .code_list .item {
        margin: 0 0px;
        margin-left: 20px;
    }
    .footer .code_list .item:first-child {
        margin-left: 0px;
    }
    .footer .code_list .item img {
        max-width: none;
        width: 100%;
    }
}

.footer .code_list .item p {
    margin-top: 10px;
}

.footer .contact {
    margin-top: 50px;
    margin-bottom: 50px;
    color: #fff;
    font-size: 14px;
    text-align: center;
}

.footer .contact .item {
    margin: 0 15px;
}

.footer .contact .item .bi {
    font-size: 20px;
}

.footer .contact .item p {
    margin-top: 10px;
    color: #fff;
}

.footer .contact .item p a {
    color: #fff;
}

.footer .footer_nav_list li {
    color: #fff;
    font-size: 14px;
}

.footer .footer_nav_list li a {
    color: #fff;
    font-size: 14px;
}

.footer .footer_nav_list li.line {
    padding: 0 20px;
    font-size: 13px;
}

.footer .copyright {
    padding-top: 20px;
    color: #fff;
    font-size: 14px;
    text-align: center;
}

@media only screen and (max-width: 1024px) {
    .footer .top_logo {
        border-bottom: 1px solid #fff;
        padding-bottom: 30px;
    }

    .footer .top_logo > img {
        width: 150px;
        height: auto;
    }

    .footer .code_list {
        margin-top: 50px;
        /* border-bottom: 1px dashed #fff; */
        /* padding-bottom: 30px; */
    }

    .footer .contact {
        border-bottom: 1px dashed #fff;
        border-top: 1px dashed #fff;
        display: block;
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .footer .contact .item {
        margin: 0 0 20px 0;
        text-align: left;

        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -webkit-box-pack: flex-start;
        -ms-flex-pack: flex-start;
        justify-content: flex-start;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;

    }

    .footer .contact .item:last-child {
        margin: 0;

    }

    .footer .contact .item .bi {
        font-size: 14px;
        margin-right: 10px;
    }

    .footer .contact .item p {
        margin: 0;
    }
}

/* nav_h5 */
.nav_h5 {
    height: calc(60px + constant(safe-area-inset-bottom));
    height: calc(60px + env(safe-area-inset-bottom));
    background-color: var(--primary-light);
    padding-bottom: constant(safe-area-inset-bottom);
    /* 兼容 iOS < 11.2 */
    padding-bottom: env(safe-area-inset-bottom);
    /* 兼容 iOS >= 11.2 */
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 500;
}

.nav_h5 .list {
    height: 100%;
}

.nav_h5 .list li {
    flex: 1;
    text-align: center;
}

.nav_h5 .list li a {
    text-align: center;
    font-size: 12px;
    color: #fff;
    display: block;
}

.nav_h5 .list li a img {
    width: 20px;
    height: auto;
}

.nav_h5 .list li a p {
    padding-top: 4px;
}

/* 页面头图 */
.page_top_img {
    height: 100vh;

    background-repeat: no-repeat;
    /* background-attachment: fixed; */
    background-position: center;
    background-size: cover;
    position: relative;
    background-color: #f3f3f3;
}

.page_top_img .bg {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;

}

.page_top_img .bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;

}

/*==================== 产品相关==================== */
.product_list {}

.product_list .item-li {
    border-bottom: 1px solid #c5c5c5;
    padding-bottom: 30px;
    margin-bottom: 50px;

}

.product_list .item-li .p-name {
    padding-top: 65px;
    font-size: 25px;
}

.product_list .item-li dl {
    flex-wrap: wrap;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.product_list.list .item-li dl {
    margin-left: -18px;
}

.product_list .item-li dl dd {
    -ms-flex-preferred-size: calc(25% - 18px);
    flex-basis: calc(25% - 18px);
    max-width: calc(25% - 18px);
    margin-left: 18px;
    margin-bottom: 35px;
    text-align: center;
}

.product_list .item-li dl dd h1 {
    margin-top: 20px;
}

.product_list .item-li dl dd img {
    width: 100%;
}

.m_t_30 {
    margin-top: 30px;
}

.m_t_50 {
    margin-top: 50px;
}

/* pages */
#pages {
    text-align: center;
}

#pages a.a1:first-child {
    display: none;
}

#pages a,
#pages span {
    margin: 0 5px;
}

#pages a.a1 {
    padding: 0 20px;
}

#pages span {
    border-bottom: 1px solid #9d9d9d;
}

@media only screen and (max-width: 1450px) {
    .product_list .item-li dl dd {
        -ms-flex-preferred-size: calc(33.333% - 18px);
        flex-basis: calc(33.333% - 18px);
        max-width: calc(33.333% - 18px);
        margin-left: 18px;
        margin-bottom: 35px;
        text-align: center;
    }
}

@media only screen and (max-width: 1024px) {
    .product_list .item-li .p-name {
        padding-top: 0;
        padding-bottom: 30px;
        text-align: center;
        width: 100%;
    }

    .product_list .item-li {
        flex-wrap: wrap;
    }

    .product_list .item-li dl {
        margin-left: -18px;
    }

    .product_list .item-li dl dd {
        -ms-flex-preferred-size: calc(50% - 18px);
        flex-basis: calc(50% - 18px);
        max-width: calc(50% - 18px);
        margin-left: 18px;
        margin-bottom: 35px;
        text-align: center;
    }
}

@media only screen and (max-width: 450px) {
    .product_list .item-li dl{
        
        -webkit-box-flex: auto;
        -ms-flex: auto;
        flex: auto;
    }
    .product_list .item-li dl dd {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        max-width: 100%;
        margin-left: 0;
    }

}

/*==================== 产品相关 end==================== */
/*==================== 产品详情 ==================== */
.tab_content .info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    min-height: 100vh;
}

.tab_content .info .type {
    margin-bottom: 25px;
}

.tab_content .item.av-container {
    padding: 0 50px;
}

.tab_content .info .type span {
    background-color: #000;
    padding: 5px 20px;
    font-size: 14px;
    color: #fff;
}

.tab_content .info .title {
    margin-bottom: 25px;
}

.tab_content .info .title p {
    font-size: 30px;
    padding-right: 20px;
}

.tab_content .info .appearance {
    font-size: 18px;
    margin-bottom: 25px;
}

.tab_content .info .appearance span {
    margin-right: 20px;
    border-bottom: 1px solid #9d9d9d;
    cursor: pointer;
}

.tab_content .info .appearance span.active {
    border-bottom: 0;
}

.tab_content .info .description {
    color: #757575;
    font-size: 14px;
    line-height: 28px;
    padding-bottom: 50px;
    border-bottom: 1px solid #9d9d9d;
}

.tab_content .info .description .tab_cn1 {
    display: none;
}

.tab_content .info .title p .price {
    font-size: 14px;
}

.tab_content .info .title p .tax {
    font-size: 14px;
}

.tab_content .info .left {
    max-width: 40.25%;
    -webkit-box-flex: 40.25%;
    -ms-flex: 0 0 40.25%;
    flex: 0 0 40.25%;
    padding: 50px;
    position: relative;
}

.tab_content .info .right {
    max-width: 59.75%;
    -webkit-box-flex: 59.75%;
    -ms-flex: 0 0 59.75%;
    flex: 0 0 59.75%;
    min-width: 0;
    /* background-color: #efefef; */
    padding-top: 50px;
    padding-bottom: 100px;
}

.tab_content .info .right .right_tab_cn {
    display: none;
}

.show_content video {
    width: 100% !important;
    height: auto !important;
}

.show_content img {
    max-width: 100% !important;
    height: auto;
}

.tab_content .show_content img {
    width: 100% !important;
    height: auto !important;
}

.tab_content .info .show_info_box {
    padding-bottom: 100px;
}

@media only screen and (max-width: 1024px) {

    /* .tab_content .info .left{
        max-width: 43.46%;
        -webkit-box-flex: 43.46%;
        -ms-flex: 0 0 43.46%;
        flex: 0 0 43.46%;
        padding: 50px;
    }*/
    .tab_content .info .right {
        padding: 50px;
    }

    .tab_content .info {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .tab_content .info .left {
        max-width: 100%;
        -webkit-box-flex: 100%;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        padding: 50px 50px 0 50px;
    }

    .tab_content .info .right {
        max-width: 100%;
        -webkit-box-flex: 100%;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }

    .tab_content .info .show_info_box {
        position: relative !important;
        top: 0px !important;
        padding-bottom: 0
    }
}

@media only screen and (max-width: 812px) {
    .tab_content .info {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .tab_content .info .left {
        max-width: 100%;
        -webkit-box-flex: 100%;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        padding: 30px;
    }

    .tab_content .info .right {
        padding: 30px;
    }


    .tab_content .info .right {
        max-width: 100%;
        -webkit-box-flex: 100%;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }

    .tab_content .info .show_info_box {
        position: relative !important;
        top: 0px !important;
        padding-bottom: 0px;
    }

    /* .tab_content .info .right .contentLightgallery{
        margin: 0 30px;
    } */

    /* .img_list {
        margin: 20px 30px 0px 30px;
    } */
}

@media only screen and (max-width: 450px) {
    .tab_content .info .left {
        padding-bottom: 0px;

    }

    .tab_content .info .description {
        padding-bottom: 30px;
        color: #757575;
        font-size: 14px;
        line-height: 28px;
    }
}

.show_tab_nav {
    margin-bottom: 40px;
}

.show_tab_nav li {
    width: 160px;
    height: 40px;
    background-color: #5a6065;
    text-align: center;
    line-height: 40px;
    margin-right: 2px;
    color: #fff;
    cursor: pointer;
}

.show_tab_nav li.active {
    background-color: #f2f2f2;
    color: #30383e;
}

.tab_info_box {
    padding: 50px 0;
}

@media only screen and (max-width: 450px) {
    .tab_info_box {
        padding: 30px 0;
    }
}

/* 详情轮播图 */
.img_list {
    margin-top: 20px;
}

.img_list .slider-for img {
    width: 100%;
    height: 630px !important;
    height: auto;
    object-fit: cover;
}

@media only screen and (max-width: 1220px) {

    .img_list .slider-for img {
        height: 500px !important;
    }
}

@media only screen and (max-width: 450px) {
    .img_list .slider-for img {
        height: 250px !important;
    }
}

.img_list .slider-nav {
    margin-top: 20px;
}

.img_list .slider-nav .slick-slide {
    margin-right: 5px;
}

/* 产品详情 图库 */
.imgs_lists_box .title {
    font-size: 20px;
    margin-bottom: 30px;
    margin-top: 30px;
}

.imgs_lists_box .list {
    margin-top: 20px;
    /* margin-left: -18px; */
    flex-wrap: wrap;
}

.imgs_lists_box .list .list_box {
    margin-left: -18px;
    flex-wrap: wrap;
}

.imgs_lists_box .list .list_box .it {
    -ms-flex-preferred-size: calc(25% - 18px);
    flex-basis: calc(25% - 18px);
    max-width: calc(25% - 18px);
    margin-left: 18px;
    margin-bottom: 18px;
    text-align: center;
}

.imgs_lists_box .list .it img {
    max-width: 100%;
    height: auto;
}

@media only screen and (max-width: 812px) {

    .imgs_lists_box .list .list_box .it {
        -ms-flex-preferred-size: calc(50% - 18px);
        flex-basis: calc(50% - 18px);
        max-width: calc(50% - 18px);
        margin-left: 18px;
        margin-bottom: 18px;
        text-align: center;
    }
}

/* 产品详情参数 */
.navContainer button {
    background: 0 0;
    color: inherit;
    border: none;
    padding: 0 !important;
    font: inherit;
}
.navContainer button > span {
}
.navContainer .dots button {
    line-height: 20px;
}

.navContainer button.owl-prev,
.navContainer button.owl-next {
    font-size: 20px;
    padding: 0 10px !important;
    cursor: pointer;
}

.navContainer .dots button span {
    color: #FFF;
    font-size: 14px;
    margin: 5px;
    background: #D6D6D6;
    display: inline-block;
    cursor: pointer;
    border-radius: 3px;
    width: 10px;
    height: 10px;
    margin: 8px 7px 5px 7px;
    background: #D6D6D6;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity .2s ease;
    border-radius: 30px
}

.navContainer .dots button.active span {
    background: #869791
}

.tab_info_box .content_list .title {
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    padding-bottom: 50px;
    border-bottom: 1px solid #9d9d9d;
    margin-bottom: 50px;
}

.tab_info_box .content_list .list li {
    margin-right: 20px;
    flex: 1;
    max-width: 33.33%;
    line-height: 30px;

}

.tab_info_box .content_list .list li:last-child {
    margin-right: 0px;
}

.content_content ul,
.content_content ol,
.content_content dl {
    list-style-type: circle !important;
    padding-left: 20px !important;
    line-height: 35px;
}

.content_content ul li,
.content_content ol li,
.content_content dl dt {
    list-style-type: circle !important;
    padding: revert !important;
}


@media only screen and (max-width: 450px) {
    .tab_info_box .content_list .list {
        display: block;
    }

    .tab_info_box .content_list .list li {
        margin: 0;
        max-width: 100%;
    }
}

.page-title {
    font-size: 30px;
    margin-bottom: 60px;
}

/*==================== 产品详情 end==================== */
/*==================== 售后详情 ==================== */
.page_sale_service .page_content .title {
    font-size: 18px;
    margin-top: 50px;
    margin-bottom: 50px;
    border-bottom: 1px solid #9d9d9d;
    padding-bottom: 20px;
}

.page_sale_service .page_content .about-cat {
    /* padding-top: 50px;
    padding-bottom: 50px; */
}

.page_sale_service .page_content .about-cat li {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-right: 50px;
}

.page_sale_service .page_content .about-cat li:last-child {
    margin-right: 0px;
}

.page_sale_service .page_content .about-cat li img {
    width: 100%;
}

.page_sale_service .page_content .about-cat li h3 {
    margin-top: 30px;
    font-size: 14px;
}

.page_sale_service .page_content .about-cat li p {
    margin-top: 20px;
    line-height: 24px;
    font-size: 14px;
}

.page_sale_service .page_content .buying {
    /* padding-top: 50px;
    padding-bottom: 50px; */
    line-height: 35px;
    font-size: 16px;
}

.page_sale_service .page_content .service_1 .text {
    margin-right: 150px;
    line-height: 30px;
    -ms-flex-preferred-size: 46%;
    flex-basis: 46%;
    max-width: 46%;
}

.page_sale_service .page_content .service_1 img {
    -ms-flex-preferred-size: 46%;
    flex-basis: 46%;
    max-width: 46%;
    height: auto;
}

.page_sale_service .page_content .repair li {
    margin-right: 50px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.page_sale_service .page_content .repair li:last-child {
    margin-right: 0px;
}

.page_sale_service .page_content .repair li img {

    width: 100%;
}

.page_sale_service .page_content .repair li p {
    font-size: 14px;
    line-height: 30px;
    text-align: center;
    margin-top: 20px;
}

@media only screen and (max-width: 812px) {

    .page_sale_service .page_content .about-cat {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }

    .page_sale_service .page_content .about-cat li {
        -webkit-box-flex: none;
        -ms-flex: none;
        flex: none;
        margin-right: 0;
        width: 100%;
        margin-bottom: 35px;
    }

    .page_sale_service .page_content .buying * {
        text-align: left !important;
    }

    .page_sale_service .page_content .service_1 {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
        -webkit-flex-direction: column-reverse;
    }

    .page_sale_service .page_content .service_1 .text {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        max-width: 100%;
        margin-right: 0;
        margin-top: 35px;
    }

    .page_sale_service .page_content .service_1 img {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        max-width: 100%;
        width: 100%;
        height: auto !important;
    }

    .page_sale_service .page_content .repair {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .page_sale_service .page_content .repair li {
        margin-right: 50px;
        -ms-flex-preferred-size: calc(50% - 10px);
        flex-basis: calc(50% - 10px);
        max-width: calc(50% - 10px);
        margin: 0;
    }

    .page_sale_service .page_content .repair li:nth-child(2n) {
        margin-left: 20px;
    }

}






/*==================== 售后详情 end==================== */
.page_tab_nav {
    border-top: 1px solid #9d9d9d;
    margin-top: 50px;
    padding-bottom: 50px;
    padding-top: 50px;

}

.page_tab_nav a {
    font-size: 20px;
    border-bottom: 1px solid #9d9d9d;
    display: inline-block;
    padding-bottom: 3px;
}

.page_tab_nav span {
    display: inline-block;
    height: 15px;
    width: 1px;
    background-color: #9d9d9d;
    margin: 0 30px;
}

.page_tab_nav a.active {
    font-weight: bold;
    border-bottom: 0;
}

@media only screen and (max-width: 450px) {

    .page_tab_nav {
        margin-top: 30px;
        padding-bottom: 30px;
        padding-top: 30px;

    }
}



.page-title.white {
    color: #fff;
}

/* 招聘 */
.job-list-ul {
    margin-top: 30px;
}

.job-list-ul .item {
    border-bottom: 1px solid #b9b9b9;
    padding: 20px 0;

}

.job-list-ul .item .title {
    font-size: 20px;
    margin-bottom: 20px;
}

.job-list-ul .item .dse {
    font-size: 16px;
    white-space: nowrap
}

.job-list-ul .item .dse span {
    white-space: nowrap;
    margin-right: 10px;
}

.job-list-ul .item .ms {
    font-size: 16px;
}

.job-list-ul .item .ms .ti {
    margin-bottom: 10px;
    white-space: nowrap
}

@media only screen and (max-width: 1440px) {

    .job-list-ul .item {}
}

@media only screen and (max-width: 812px) {

    .job-list-ul {
        margin-left: 0;
    }

    .job-list-ul .item .flex-s-s {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }

    .job-list-ul .item .ms  {
        margin-top: 20px;
        width: 100%;
    }
}

.language_switching {
    position: absolute;
    background: var(--primary-light);

    top: 62px;
    right: 140px;
    z-index: 1100;
    color: #fff;
    padding: 5px 10px 3px 10px;

    line-height: 1;
    vertical-align: middle;
}

.language_switching span {
    padding: 0 5px;
    line-height: 1;
    font-size: 12px;
}

@media only screen and (max-width: 1024px) {
    .language_switching {
        top: 62px;
        right: 135px;
    }
}

@media only screen and (max-width: 812px) {
    .language_switching {
        top: 41px;
        right: 110px;
    }
}

.language_switching a {
    color: #fff;
    font-size: 14px;
    line-height: 1;
    vertical-align: middle;
}

/* 服务网点 */
.service_provider {
    margin-top: 50px;
    border-bottom: 1px solid #9d9d9d;
    padding-bottom: 50px;
    margin-bottom: 50px;
}

.service_provider li {
    text-align: center;
    padding: 10px 20px;
}

.service_provider li p {
    margin-top: 10px;
}

.service_provider li.active {
    border: 1px solid #c3c3c3;
}

.service_provider li img {
    width: 155px;
    height: auto;
}

.page_service .page_content .title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 30px;
}

@media only screen and (max-width: 1024px) {
    .service_provider li {

        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1
    }
}

@media only screen and (max-width: 812px) {
    .service_provider li {
        padding: 0;
    }

    .service_provider li img {
        width: 100%;
    }

    .service_provider li p {
        display: none;
    }
}

.page_service_list {}

.page_service_list .item-li {
    border-bottom: 1px solid #c5c5c5;
    padding-bottom: 30px;
    margin-bottom: 50px;

}

.page_service_list .item-li .p-name {
    font-size: 20px;
    line-height: 30px;
    white-space: nowrap;
    font-weight: bold;
}

.page_service_list .item-li dl {
    flex-wrap: wrap;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-left: 20px;
}

.page_service_list.list .item-li dl {
    margin-left: -18px;
}

.page_service_list .item-li dl dd {
    -ms-flex-preferred-size: calc(33.3333% - 18px);
    flex-basis: calc(33.3333% - 18px);
    max-width: calc(33.3333% - 18px);
    margin-left: 18px;
    margin-bottom: 35px;
    text-align: left;
    font-size: 14px;
    line-height: 24px;
    color: var(--primary-light);
}

.page_service_list .item-li dl dd h1 {
    margin-bottom: 15px;
    line-height: 30px;
    color: #000;
}

.page_service_list .item-li dl dd img {
    width: 100%;
}

@media only screen and (max-width: 812px) {
    .page_service_list .item-li {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }

    .page_service_list .item-li dl {
        -webkit-box-flex: initial;
    -ms-flex: initial;
    flex: auto;
    
    width: 100%;
    margin-left: 0;
    }
    .page_service_list .item-li dl dd {
        margin-left: 0;
        -ms-flex-preferred-size: 33.3333%;
        flex-basis: 33.3333%;
        max-width: 33.3333%;
        padding-right: 18px;
    }

    .page_service_list .item-li dl dd:nth-child(3n) {
        margin-left: 0;
        padding-right: 0;
    }
    
    .page_service_list .item-li .p-name {
        margin-bottom: 20px;

    }
}

@media only screen and (max-width: 450px) {

    .page_service_list .item-li dl {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        width: 100%;
    }

    .page_service_list .item-li dl dd {
        margin-left: 0;
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        max-width: 100%;
        padding-right: 0;
        margin-bottom: 20px;
    }


    .page_service_list .item-li:last-child {
        padding-bottom: 0;
        margin-bottom: 0;
    }
}




/* 全局响应 */
@media only screen and (max-width: 1024px) {
    .av-container {
        padding: 0 60px;
    }

    /* 模块布局 */
    .page-container {
        padding-left: 0;
        padding-top: 150px;

    }

    .page-container.page-cn {
        padding-top: 60px;
        padding-left: 0;
    }

    .page-container.page-show {
        padding: 0px;
    }

    /*没有上面内容 */
    .page-container.page-show-no-top {
        padding-top: 190px;
    }

    /* 重要通知 */
    .header-carousel-fluid .notice_list {
        left: 50px;

    }

    /* 加入我们 */
    .page_job .page-container {
        padding-top: 60px;
    }

    /* 右侧菜单下方 */
    .right_footer {
        display: block !important;
    }

    .right_footer span {
        padding-top: 10px;
        display: block !important;
    }

    .c-gnavi .c-gnavi__wrapper {
        width: 400px;
    }

    .pc_block {
        display: none !important;
    }
    .pc_block_contact{
        display: block !important;
        top:45%
    }

    .section-header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: auto;
    }

    .section-header .header__inner {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        flex: 1;
        max-width: 100%;
        border-right-width: 0;
        padding: 20px 165px 20px 50px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        border-right: 0;
        border-bottom: solid #b9b9b9 1px;
    }
    .section-header .header__inner.active{
        border-bottom: 0px;
    }

    .section-header .header__inner .header__logo img {
        width: 80px;
    }
}

@media only screen and (max-width: 812px) {
    .news-list-wrap .page-container,.media-list-wrap .page-container{
        padding-bottom: 50px;
    }
    .page-container {
        padding-left: 0;
        padding-top: 100px;
    }

    .av-container {
        padding: 0 30px;
    }

    .tab_content .item.av-container {
        padding: 0 30px;

    }

    .section-header .header__inner {
        padding: 20px 165px 20px 30px;
    }

    .section-header .header__inner .header__logo img {
        width: 50px;
    }

    .c-gnavi__btn {
        top: 30px;
        right: 30px;
        width: 32px;
    }
    
    .c-gnavi__btn span {
        width: 32px;
        margin: 4.5px 0;
    }

    /*没有上面内容 */
    .page-container.page-show-no-top {
        padding-top: 150px;
        padding-bottom: 50px;
    }

    .page-title {
        font-size: 20px;
        margin-bottom: 60px;
    }

    /* 重要通知 */
    .header-carousel-fluid .notice_list {
        left: 30px;
        bottom: 160px;

    }
}

@media only screen and (max-width: 450px) {
    .footer .page-container {
        padding-bottom: 100px !important;
    }

    /* 加入我们 */
    .page_job .page-container {
        padding-top: 50px;
    }

    /* 首页新闻列表 */
    .news-list-ul {
        margin-left: 0;
        margin-bottom: -45px;
    }

    .news-list-ul .item .service-text {
        padding: 20px 0 20px 0;
    }

    .news-list-ul .item {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-bottom: 30px;
    }

    .av-container {
        padding: 0 30px;
    }

    .c-gnavi .c-gnavi__wrapper {
        width: 300px;
    }

    .h5_hide {
        display: none;
    }

    .h5_block {
        display: block;
    }
}