/*
	FONT SIZE HIERARCHY
	---------------------------

    Default font-size for HTML :    16px
    blockquote                 :    1rem
    body                       :    1rem
    form                       :    0.875rem  14px
    h1                         :    3.375rem  58px
    h2                         :    2.375rem  38px
    h3                         :    1.75rem  28px
    h4                         :    1.25rem   20px
    h5                         :    1rem
    h6                         :    0.75rem  12px
	GLOBAL SPACING HIERARCHY WITH <section>
	---------------------------

    Default                    :    6.5625rem
    Large                      :    11.375rem
    Small                      :    4.8125rem
    Default (mobile)           :    4.265625rem
    Large (mobile)             :    4.265625rem
    Small (mobile)             :    2.625rem
	COLOR PALETTE
	---------------------------
    Placeholder Text Color     :    #E6E6E8
	Primary Background Color   :    transparent
	Highlight Color            :    #EC5E79, #E8588C
	Primary Text Color         :    #212121, #474747
    Heading Text Color         :    #212121
	Subordinate Text Color     :    #AEAEAE
	Dividing Line Color        :    #F4F4F4
    Button Gradient Color      :    #EC5E79, #f60, #d83ba0
	TABLE OF CONTENTS
	---------------------------

    ${{TOC}}
*/


/* Ripple Effect */

@keyframes ripple {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1), 0 0 0 20px rgba(255, 255, 255, 0.1), 0 0 0 40px rgba(255, 255, 255, 0.1), 0 0 0 60px rgba(255, 255, 255, 0.1);
    }
    100% {
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.1), 0 0 0 40px rgba(255, 255, 255, 0.1), 0 0 0 60px rgba(255, 255, 255, 0.1), 0 0 0 80px rgba(255, 255, 255, 0);
    }
}

::placeholder {
    color: #E6E6E8;
}

:root {
    --blue: #007007;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #e83e8c;
    --red: #dc3545;
    --orange: #fd7e14;
    --yellow: #ffc107;
    --green: #28a745;
    --teal: #20c997;
    --cyan: #17a2b8;
    --white: #fff;
    --gray: #868e96;
    --gray-dark: #343a40;
    --primary: #007bff;
    --secondary: #868e96;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
}

::selection,
::-moz-selection,
::-webkit-selection {
    background: #1f1f1f;
    color: #fff;
}

html,
body {
    width: 100%;
    height: 100%;
}

html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    font-size: 16px;
    /* Required, global font size */
}

*,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
a {
    margin: 0;
    padding: 0;
}


/* 初始化 */

body,
div,
span,
ul,
li,
ol,
h1,
h2,
h3,
h4,
h5,
h6,
input,
textarea,
select,
p,
dl,
dt,
dd,
a,
img,
button,
form,
table,
th,
tr,
td,
tbody,
article,
span,
aside,
details,
figcaption,
figure,
footer,
header,
menu,
nav,
section {
    margin: 0;
    padding: 0;
    border: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    font-size: 0.16rem;
    font-weight: 400;
    line-height: 1.71428571429;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: "Microsoft Yahei", "微软雅黑", "Microsoft JhengHei", Arial, "Helvetica Neue", Helvetica, STXihei, "PingFang SC", "Hiragino Sans GB", sans-serif;
    color: #212121;
    background-color: #ffffff;
}

:active,
 :focus {
    outline: none !important;
}

p,
pre,
table,
blockquote {
    margin-bottom: .3rem;
}

select {
    max-width: 100%;
}

ul,
li {
    list-style-type: none;
}

blockquote {
    background: #fff;
    border: 1px solid #F8F8F8;
    border-left: 5px solid #EC5E79;
    padding: 0 1.75rem 1.25rem;
    margin-top: 1.421875rem;
    line-height: 2;
    font-size: 1rem;
}

blockquote::before {
    color: #EC5E79;
    content: open-quote;
    font-size: 5.25rem;
    line-height: 0.1;
    margin-right: 0.21875rem;
    vertical-align: -2.055rem;
    font-family: sans-serif;
    content: "\201C";
    /*Unicode for Left Double Quote*/
}

strong {
    font-weight: 600;
}

hr {
    margin: 1.421875rem 0;
    border-color: #F4F4F4;
}

hr.black {
    border-color: rgba(255, 255, 255, 0.1);
}

a img {
    border: none;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

img[src=''],
img:not([src]) {
    display: none;
}

iframe {
    border: none !important;
}


/* ======================================================
   <!-- Table -->
/* ====================================================== */

table.table-normal,
.table-normal table {
    border: 1px solid black;
    border-collapse: collapse;
    width: 100%;
}

table.table-normal th,
.table-normal table th {
    text-align: left;
}

table.table-normal td,
table.table-normal th,
.table-normal table td,
.table-normal table th {
    border: 1px solid black;
    padding: 0.6875rem;
}


/* ======================================================
   <!-- Typography -->
/* ====================================================== */


/*
 * 1. General
 * 2. Hyperlink
 * 3. Heading (h1,h2,h3,h4,h5,h6)
 * 4. Text Effect
 * 5. Table & List Effect by Default
 * 6. Drop Cap
*/


/*
 ---------------------------
 1. General
 ---------------------------
 */

a,
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    transition: all 0.3s ease;
}


/*
 ---------------------------
 2. Hyperlink
 ---------------------------
 */

a {
    color: #474747;
}

a:hover,
a:focus,
a:active {
    text-decoration: none;
    outline: none;
}

a.link {
    text-decoration: underline;
    color: #EC5E79;
}

a.link:hover {
    color: #E8588C;
}


/*
 ---------------------------
 3. Heading (h1,h2,h3,h4,h5,h6)
 ---------------------------
 */

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    color: #212121;
    font-weight: 700;
    font-variant-ligatures: common-ligatures;
    /*Ligatures and contextual forms are ways of combining glyphs to produce more harmonized forms.*/
    margin-top: 0;
    margin-bottom: 0.625rem;
    word-wrap: break-word;
}

.h1 {
    font-size: 3.375rem !important;
    line-height: 1.14285714286 !important;
}

.h2 {
    font-size: 22.375rem !important;
    line-height: 1.2 !important;
}

.h3 {
    font-size: 1.75rem !important;
    line-height: 1.25 !important;
}

.h4 {
    font-size: 1.25rem !important;
    line-height: 1.33333333333 !important;
}

.h5 {
    font-size: 1rem !important;
    line-height: 1.5 !important;
    font-weight: 600 !important;
}

.h6 {
    font-size: 0.75rem !important;
    line-height: 2 !important;
    font-weight: 600 !important;
}

.heading-space-none {
    margin: 0 !important;
    padding: 0 !important;
}

@media all and (max-width: 768px) {
    h1 {
        font-size: 2.4107142857rem;
        line-height: 1.15555556;
    }
    h2 {
        font-size: 15.6625rem;
        line-height: 1.421875;
    }
    h3 {
        font-size: 1.25rem;
        line-height: 1.625;
    }
    .h1 {
        font-size: 2.4107142857rem !important;
        line-height: 1.15555556 !important;
    }
    .h2 {
        font-size: 15.6625rem !important;
        line-height: 1.421875 !important;
    }
    .h3 {
        font-size: 1.25rem !important;
        line-height: 1.625 !important;
    }
}

@media all and (max-width: 480px) {
    h1 {
        font-size: 1.2053571429rem;
        line-height: 1.38461538462;
    }
    h2 {
        font-size: 13.425rem;
        line-height: 1.28571428571;
    }
    h3 {
        font-size: 1.25rem;
        line-height: 1.5;
    }
    .h1 {
        font-size: 1.2053571429rem !important;
        line-height: 1.38461538462 !important;
    }
    .h2 {
        font-size: 13.425rem !important;
        line-height: 1.28571428571 !important;
    }
    .h3 {
        font-size: 1.25rem !important;
        line-height: 1.5 !important;
    }
}


/*
 ---------------------------
 4. Text Effect
 ---------------------------
 */

.font-normal {
    font-family: "Microsoft Yahei", "微软雅黑", "Microsoft JhengHei", Arial, "Helvetica Neue", Helvetica, STXihei, "PingFang SC", "Hiragino Sans GB", sans-serif;
    font-weight: 400 !important;
}

.font-uppercase {
    text-transform: uppercase !important;
}

.font-bold {
    font-weight: 800 !important;
}

.font-italic {
    font-style: italic !important;
}

.font-no-italic {
    font-style: normal !important;
}

.font-underline {
    text-decoration: underline !important;
}

.font-primary-color {
    color: #EC5E79 !important;
}

.font-sub-color {
    color: #AEAEAE !important;
}

.font-white {
    color: white;
}

.font-white p,
.font-white h1,
.font-white h2,
.font-white h3,
.font-white h4,
.font-white h5,
.font-white h6,
.font-white .h1,
.font-white .h2,
.font-white .h3,
.font-white .h4,
.font-white .h5,
.font-white .h6 {
    color: white;
}


/*
 ---------------------------
 5. Table & List Effect by Default
 ---------------------------
 */


/* Compatible with  Uix Shortcodes (WordPress Plugin) */

.list-normal a:not(.uix-sc-btn),
.table-normal a:not(.uix-sc-btn) {
    color: #EC5E79;
}

.list-normal a:not(.uix-sc-btn):not(.button):hover,
.table-normal a:not(.uix-sc-btn):not(.button):hover {
    color: #E8588C;
    text-decoration: underline;
}

.list-normal a:not(.uix-sc-btn):hover img,
.table-normal a:not(.uix-sc-btn):hover img {
    text-decoration: none;
}


/*
 ---------------------------
 6. Drop Cap
 ---------------------------
 */

.dropcap::first-letter,
.dropcap>p:first-of-type::first-letter {
    display: block;
    margin-right: 10px;
    float: left;
    font-size: 3.5rem;
    line-height: 1;
    margin-bottom: -2px;
}


/* ======================================================
   <!-- Spacing -->
/* ====================================================== */

section,
.section {
    position: relative;
}

section,
.section {
    padding: 6.5625rem 0;
}

section.space-sm,
.section.space-sm {
    padding: 4.8125rem 0;
}

section.space-lg,
.section.space-lg {
    padding: 11.375rem 0;
}

section.space-none,
.section.space-none {
    padding: 0 !important;
}

section.space-none-top,
.section.space-none-top {
    padding-top: 0 !important;
}

section.space-none-bottom,
.section.space-none-bottom {
    padding-bottom: 0 !important;
}

section.site-google-map,
.section.site-google-map {
    padding-top: 0 !important;
}

@media all and (max-width: 768px) {
    section,
    .section {
        padding: 4.265625rem 0;
    }
    section.space-sm,
    .section.space-sm {
        padding: 2.625rem 0;
    }
    section.space-lg,
    .section.space-lg {
        padding: 4.265625rem 0;
    }
    section.space-none,
    .section.space-none {
        padding: 0;
    }
    section.space-none-top,
    .section.space-none-top {
        padding-top: 0;
    }
    section.space-none-bottom,
    .section.space-none-bottom {
        padding-bottom: 0;
    }
    section.site-google-map,
    .section.site-google-map {
        padding-top: 0;
    }
}

html {
    font-size: 100px;
}

@media screen and (max-width: 1440px) {
    html {
        font-size: 80px;
    }
}

@media screen and (max-width: 800px) {
    html {
        font-size: 70px;
    }
}

@media screen and (max-width: 600px) {
    html {
        font-size: 50px;
    }
}

.pure:before,
.pure:after {
    content: " ";
    display: table;
}

.pure:after {
    clear: both;
}

body {
    height: auto;
    overflow-x: hidden;
    color: #000;
}

.fl_l {
    float: left;
}

.fl_r {
    float: right;
}

@media screen and (max-width: 800px) {
    html {
        font-size: 80px;
    }
}

@media screen and (max-width: 600px) {
    html {
        font-size: 60px;
    }
}

a {
    text-decoration: none;
}

.iconfont {
    font-size: inherit;
}

.bloc {
    position: relative;
}

@media screen and (orientation: portrait) {
    .bloc {
        overflow: hidden;
    }
}

*::-webkit-scrollbar,
*::-webkit-scrollbar {
    width: 6px;
    border-radius: 1.5px;
}

*::-webkit-scrollbar-button,
*::-webkit-scrollbar-button {
    display: none;
}

*::-webkit-scrollbar-track,
*::-webkit-scrollbar-track {
    background-color: #eee;
}

*::-webkit-scrollbar-thumb,
*::-webkit-scrollbar-thumb {
    background-color: #00449b;
}

.mess_img_case .swiper-wrapper {
    transition-timing-function: cubic-bezier(0.1, 0.7, 0.74, 0.3);
    /*transition-timing-function: ease;*/
}

.swiper-button-prev,
.swiper-button-next {
    /* background: #00449b; */
    text-align: center;
    color: #ebf7ef;
    width: .5rem;
    height: .5rem;
    line-height: .5rem;
    transition: all .3s ease;
    border-radius: 100%;
}

.swiper-button-prev i,
.swiper-button-next i {
    font-size: .16rem;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    /* background-color: #ebf7ef; */
    color: #00449b;
}

.swiper-pagination-bullet {
    opacity: .5;
    background-color: #ffffff;
    vertical-align: middle;
    transition: all .3s ease;
    width: .1rem;
    height: .1rem;
}

.swiper-pagination-bullet:hover {
    opacity: 1;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 .08rem;
}

.works__slider {
    cursor: url(http://waterproof.3treesgroup.com/templates/dist/image/svgipsa_cursor_arrow.png) 52 23, move;
}

.works__slider a {
    cursor: url(http://waterproof.3treesgroup.com/templates/dist/image/svgipsa_cursor_arrow.png) 52 23, move;
}

.works__slider a:active,
.works__slider a:focus {
    cursor: url(http://waterproof.3treesgroup.com/templates/dist/image/svgipsa_cursor_arrow_pushed.png) 52 23, move;
}

.works__slider:active,
.works__slider:focus {
    cursor: url(http://waterproof.3treesgroup.com/templates/dist/image/svgipsa_cursor_arrow_pushed.png) 52 23, move;
}

.swiper-slide.active {
    pointer-events: all;
}

.disable-hover {
    pointer-events: none;
}

.btn_sty {
    font-size: 0;
    color: #00449b;
    background-color: #ffffff;
    display: inline-block;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 30px -15px rgba(0, 55, 54, 0.2);
}

.btn_sty span {
    position: relative;
    z-index: 2;
    display: inline-block;
    vertical-align: middle;
    font-size: .22rem;
    line-height: 1.8;
}

.btn_sty span:last-child {
    font-family: 'Conv_BKANT';
}

.btn_sty span:first-child {
    margin-right: .23rem;
    font-size: .2rem;
    transition: all .3s ease;
}

.btn_sty.btn_col_w {
    color: #fff !important;
    background-color: #00449b !important;
    border-color: transparent !important;
}

.btn_hover {
    cursor: pointer;
}

.btn_hover:hover {
    color: #fff !important;
    background-color: #00449b !important;
    border-color: transparent !important;
}

.btn_hover:hover span:first-child {
    transform: rotate(360deg);
}

@keyframes fn3 {
    0% {
        opacity: 0;
        transform: matrix(1, 0.1, 0, 1, 0, 10);
    }
    100% {
        opacity: 1;
        transform: matrix(1, 0, 0, 1, 0, 0);
    }
}

.fn3 {
    transform-origin: 0 50%;
    animation: fn3 1.2s cubic-bezier(0.49, 0.54, 0.16, 1);
    animation-fill-mode: both;
}

.search-box {
    display: flex;
    width: 100%;
    position: relative;
    border-radius: 100px;
    align-items: center;
    justify-content: center;
    background: #F0F5F5;
    overflow: hidden;
    height: 0.5rem;
}

.search-box .in {
    width: calc(100% - 0.54rem);
    height: 100%;
    padding: 0 15px;
    box-sizing: border-box;
    background-color: transparent;
    border: none;
    box-sizing: border-box;
}

.search-box .in::placeholder {
    color: #738080;
}

.search-box .sub {
    background-color: #00449b;
    color: #fff;
    cursor: pointer;
    width: 0.54rem;
    right: 0;
    top: 0;
    height: 100%;
}

.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    color: #666666;
    line-height: .9rem;
    transition: all .3s ease;
    z-index: 6;
    background-color: #ffffff;
    box-shadow: 0 0 40px rgba(0, 55, 54, 0.08);
}

.nav .nav_con {
    margin: 0 auto;
    padding-left: .3rem;
    display: flex;
    align-items: center;
    width: 100%;
}

.nav .nav_con .logo_box {
    width: 10.79%;
    font-size: 0;
    position: relative;
}

.nav .nav_con .logo_box img {
    width: 100%;
    transition: all .3s ease;
    display: block;
}

.nav .nav_con .logo_box .logo_c {
    opacity: 0;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.nav .nav_con .navBox {
    width: 75.46%;
}

.nav .nav_con .navBox .item {
    display: flex;
    justify-content: center;
    width: 100%;
}

.nav .nav_con .navBox .item li a {
    color: inherit;
    display: block;
    transition: all .3s ease;
    font-size: .18rem;
    padding: 0 2.08vw;
    cursor: pointer;
}

.nav .nav_con .navBox .item li a.on {
    color: #00449b;
}

@media all and (min-width: 1025px) {
    .nav .nav_con .navBox .item li a:hover {
        color: #00449b;
    }
}

.nav .nav_con .share_box {
    width: 13.75%;
    text-align: center;
}

.nav .nav_con .share_box a {
    display: block;
    font-size: 0;
    color: inherit;
    transition: all .3s ease;
    border-left: 1px solid #e0e0e0;
}

.nav .nav_con .share_box a span {
    font-size: .18rem;
    display: inline-block;
    vertical-align: middle;
}

.nav .nav_con .share_box a i {
    display: inline-block;
    vertical-align: middle;
    font-size: .22rem;
    margin-left: .3rem;
}

.nav .nav_con .share_box a:hover {
    color: #00449b;
}

.nav.on {
    border-bottom-color: transparent;
    background-color: #ffffff;
    box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.08);
    color: #000;
}

.nav.on .nav_con .logo_box .logo_w {
    opacity: 0;
}

.nav.on .nav_con .logo_box .logo_c {
    opacity: 1;
}

.pc-nav {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 100;
    height: 0.9rem;
}

.pc-nav .navCon {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    height: 100%;
    width: 100%;
    position: relative;
    z-index: 6;
    transition: all 0.5s ease-in-out;
}

.pc-nav .navCon .navConWrap {
    position: relative;
    width: 73%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.pc-nav .navCon:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.2);
    height: 1px;
    width: 100%;
}

.pc-nav .navCon .logoBox {
    height: 100%;
    display: flex;
    position: relative;
    z-index: 8;
    align-items: center;
    justify-content: center;
    /* width: 3.8rem; */
    /* padding: 0 44px 0 32px; */
    /* background-color: #fff; */
    /* border-radius: 0px 0px 0.42rem 0px; */
}

.pc-nav .navCon .navBox {
    width: 50%;
    max-width: 7rem;
    position: relative;
    z-index: 5;
}

.pc-nav .navCon .navBox>ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    width: 100%;
}

.pc-nav .navCon .navBox>ul li {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    position: relative;
}

.pc-nav .navCon .navBox>ul li>a {
    font-size: 18px;
    color: #fff;
    line-height: 0.9rem;
    position: relative;
}

.pc-nav .navCon .navBox>ul li>a.goNav:after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px;
    bottom: 18%;
    left: 0;
    right: 0;
    margin: 0 auto;
    border-color: #fff transparent transparent transparent;
    transform: translate3d(0, -4px, 0);
    opacity: 0;
    transition: all 0.3s ease-in-out;
    pointer-events: none;
}

.pc-nav .navCon .navBox>ul li .items {
    position: absolute;
    display: none;
    top: 90%;
    left: -35px;
    width: calc(100% + 70px);
    padding-top: 0.2rem;
    flex-direction: column;
    align-items: center;
    padding-bottom: 0.1rem;
    justify-content: flex-start;
    background-color: #fff;
    animation-duration: 0.8s;
}

.pc-nav .navCon .navBox>ul li .items:after {
    content: "";
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    height: 3px;
    background-color: #00449b;
}

.pc-nav .navCon .navBox>ul li .items>a {
    white-space: nowrap;
    color: #666;
    line-height: 0.4rem;
}

.pc-nav .navCon .navBox>ul li .items>a:hover {
    color: #00449b;
}

.pc-nav .navCon .navBox>ul li:hover>.goNav:after {
    opacity: 1;
    transform: translate3d(0, 0px, 0);
}

.pc-nav .navCon .navBox>ul li:hover .items {
    display: flex;
}

.pc-nav .navCon .setBox {
    width: 3.8rem;
    height: 100%;
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pc-nav .navCon .setBox .searchBox {
    height: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.pc-nav .navCon .setBox .searchBox input[type=submit] {
    color: #fff;
    background-color: transparent;
    border: none;
    font-size: 18px;
    cursor: pointer;
}

.pc-nav .navCon .setBox .searchBox>i {
    color: #fff;
    margin-left: 0.2rem;
}

.pc-nav .navDown {
    position: absolute;
    z-index: 4;
    width: 100%;
    left: 0;
    top: 0;
    height: 0;
    background-color: rgba(255, 255, 255, 0.95);
    transition: height 0.3s ease-in-out;
}

.pc-nav .navSearch {
    position: absolute;
    z-index: 6;
    left: 0;
    width: 100%;
    top: 0;
    height: 100%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translate3d(0, -100%, 0);
    pointer-events: none;
    transition: all 0.3s ease-in-out;
}

.pc-nav .navSearch .search-box {
    width: 56%;
    margin: 0 auto;
    height: 0.56rem;
    border-radius: 8px;
    padding-left: 45px;
    position: relative;
}

.pc-nav .navSearch .search-box .icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 55px;
    text-align: center;
    color: rgba(43, 47, 53, 0.3);
    height: 0.56rem;
    line-height: 0.56rem;
}

.pc-nav .navSearch .search-box .sub {
    width: 10%;
    cursor: pointer;
}

.pc-nav .navSearch .sClose {
    width: 3.8rem;
    height: 100%;
    position: absolute;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    right: 0;
}

.pc-nav .navSearch.on {
    transform: translate3d(0, 0, 0);
    opacity: 1;
    pointer-events: auto;
}

.pc-nav.active .navCon {
    box-shadow: 0px 0px 75px 0px rgba(0, 0, 0, 0.07);
    background-color: #fff;
}

.pc-nav.active .navCon .navBox>ul>li>a {
    color: #666;
}

.pc-nav.active .navCon .setBox .searchBox input[type=submit] {
    color: #666;
}

.pc-nav.active .navCon .setBox .searchBox>i {
    color: #666;
}

.pc-nav.bc1 .navCon {
    background-color: rgba(0, 0, 0, 0.6);
}

.pc-nav.bc1 .navCon:after {
    opacity: 0;
}

.pc-nav.in .navCon .navBox>ul>li>a {
    color: #666;
}

.pc-nav.in .navCon .setBox .searchBox input[type=submit] {
    color: #666;
}

.pc-nav.in .navCon .setBox .searchBox>i {
    color: #666;
}

.pc-nav.on .navCon {
    box-shadow: 0px 0px 75px 0px rgba(0, 0, 0, 0.07);
    background-color: #fff;
}

.pc-nav.on .navCon .navBox>ul>li>a {
    color: #666;
}

.pc-nav.on .navCon .setBox .searchBox input[type=submit] {
    color: #666;
}

.pc-nav.on .navCon .setBox .searchBox>i {
    color: #666;
}

nav.app-nav {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 200;
    width: 100vw;
    height: 50px;
    transition: all .5s ease;
}

nav.app-nav .inner_top {
    transition: all .5s ease 0s;
    height: 68px;
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

nav.app-nav .inner_top .topic {
    padding: 0 5% 0 1%;
    height: 50px;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav.app-nav .inner_top .topic #app-menu {
    display: inline-block;
    position: relative;
    z-index: 10;
}

nav.app-nav .inner_top .topic #app-menu .line {
    display: block;
    padding-top: 3px;
    padding-bottom: 3px;
    transition: all .4s ease;
}

nav.app-nav .inner_top .topic #app-menu .line:before {
    content: '';
    display: block;
    height: 2px;
    width: 22px;
    background-color: #00449b;
    border-top-right-radius: 2px;
    border-bottom-left-radius: 2px;
    transition: transform .4s ease .2s, background-color .5s ease 0s;
}

nav.app-nav .inner_top .topic .app-logo {
    position: relative;
    z-index: 10;
}

nav.app-nav .inner_top .topic .app-logo>a {
    display: inline-block;
    height: 35px;
    position: relative;
}

nav.app-nav .inner_top .topic .app-logo>a>img {
    position: relative;
    height: 100%;
}

nav.app-nav .inner_top .topic .app-logo>a>img.black {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    opacity: 0;
}

nav.app-nav .inner_top .topic .app-search {
    position: absolute;
    z-index: 10;
    line-height: 50px;
    right: 66px;
    top: 0;
}

nav.app-nav .inner_top .topic .app-search>i {
    color: #fff;
    font-size: 18px;
}

nav.app-nav .inner_top .other-nav {
    position: absolute;
    top: 0;
    z-index: 10;
    left: 0;
    transform: translate3d(0, -100%, 0);
    width: 100%;
    height: 50px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

nav.app-nav .inner_top .other-nav .search-in {
    border: none;
    border-bottom: 1px solid #00449b;
    background-color: transparent;
    width: 4rem;
    line-height: 0.3rem;
}

nav.app-nav .inner_top .other-nav .sub {
    color: #00449b;
    background-color: transparent;
    border: none;
    padding: 12px;
}

nav.app-nav .inner_top .other-nav.on {
    opacity: 1;
    pointer-events: auto;
    transform: none;
}

nav.app-nav .inner_top.on,
nav.app-nav .inner_top.bc {
    height: 50px;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

nav.app-nav .inner_top.on .topic,
nav.app-nav .inner_top.bc .topic {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

nav.app-nav .inner_top.on .topic #app-menu .line:before,
nav.app-nav .inner_top.bc .topic #app-menu .line:before {
    background-color: #00449b;
}

nav.app-nav .inner_top.on .topic .app-logo>a .white,
nav.app-nav .inner_top.bc .topic .app-logo>a .white {
    opacity: 0;
}

nav.app-nav .inner_top.on .topic .app-logo>a .black,
nav.app-nav .inner_top.bc .topic .app-logo>a .black {
    opacity: 1;
}

nav.app-nav .inner_top.on .topic .app-search>i,
nav.app-nav .inner_top.bc .topic .app-search>i {
    color: #333;
}

nav.app-nav .inner_top.bc2 {
    height: 50px;
    background-color: #fff;
}

nav.app-nav .inner_top.bc2 .topic {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

nav.app-nav .inner_top.bc2 .topic #app-menu .line:before {
    background-color: #333;
}

nav.app-nav .inner_top.bc2 .topic .app-logo>a .white {
    opacity: 0;
}

nav.app-nav .inner_top.bc2 .topic .app-logo>a .black {
    opacity: 1;
}

nav.app-nav .inner_top.bc2 .topic .app-search>i {
    color: #333;
}

nav.app-nav .inner_top.active {
    height: 50px;
}

nav.app-nav .inner_top.active .topic #app-menu .line:before {
    background-color: #333;
}

nav.app-nav .inner_top.active .topic .app-logo>a .white {
    opacity: 0;
}

nav.app-nav .inner_top.active .topic .app-logo>a .black {
    opacity: 1;
}

nav.app-nav .inner_top.active .topic .app-search>i {
    color: #333;
}

nav.app-nav .inner_mid {
    position: absolute;
    top: 50px;
    background-color: #fff;
    left: 0;
    width: 100%;
    height: calc(100% - 50px);
    overflow: hidden;
}

nav.app-nav .inner_mid .nav-items>.child_first>.firstList {
    padding: 0 5% 0 5%;
    position: relative;
    transition: background-color .5s ease;
}

nav.app-nav .inner_mid .nav-items>.child_first>.firstList>a {
    color: #333;
    display: inline-block;
    height: 48px;
    line-height: 48px;
    white-space: nowrap;
    font-weight: 700;
    border-bottom: none !important;
}

nav.app-nav .inner_mid .nav-items>.child_first>.firstList:after {
    content: "";
    position: absolute;
    width: 90%;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.05);
    left: 5%;
    bottom: 0;
}

nav.app-nav .inner_mid .nav-items>.child_first>.firstList>i {
    right: calc(5% - 5px);
    top: 0;
    position: absolute;
    display: inline-block;
    width: 48px;
    height: 48px;
    line-height: 48px;
    text-align: center;
    color: #333;
    transition: all 0.3s ease-in-out;
}

nav.app-nav .inner_mid .nav-items>.child_first>.firstList.active {
    background-color: #f7f9fa;
}

nav.app-nav .inner_mid .nav-items>.child_first>.firstList.active>a {
    color: #00449b;
}

nav.app-nav .inner_mid .nav-items>.child_first>.firstList.active>i {
    color: #00449b;
    transform: scale(-1);
}

nav.app-nav .inner_mid .nav-items>.child_first .child_second {
    background-color: #f7f9fa;
    max-height: 0;
    transition: all .5s ease;
    overflow: hidden;
}

nav.app-nav .inner_mid .nav-items>.child_first .child_second>li {
    padding: 0 9% 0 9%;
    position: relative;
}

nav.app-nav .inner_mid .nav-items>.child_first .child_second>li>a {
    padding: 12px 0 12px 0;
    display: block;
    font-weight: 700;
}

nav.app-nav .inner_mid .nav-items>.child_first .child_second>li>i {
    right: calc(5% - 5px);
    top: 0;
    font-size: 24px;
    position: absolute;
    display: inline-block;
    width: 48px;
    height: 48px;
    line-height: 48px;
    text-align: right;
    color: #333;
}

nav.app-nav .inner_mid .nav-items>.child_first .child_second>li.active {
    background-color: #f0f1f2;
}

nav.app-nav .inner_mid .nav-items>.child_first .child_second.active {
    max-height: 100vh;
}

nav.app-nav .inner_mid .nav-items>.child_first .child_three {
    background-color: #f0f1f2;
    max-height: 0;
    transition: all .5s ease;
    overflow: hidden;
}

nav.app-nav .inner_mid .nav-items>.child_first .child_three>li {
    padding: 0 14% 0 14%;
}

nav.app-nav .inner_mid .nav-items>.child_first .child_three>li>a {
    padding: 10px 0 10px 0;
    display: block;
}

nav.app-nav .inner_mid .nav-items>.child_first .child_three.active {
    max-height: 100vh;
}

nav.app-nav.on {
    height: 100%;
}

nav.app-nav.on .inner_top .topic #app-menu .line:nth-of-type(1) {
    transform: translate3d(0, 8px, 0);
}

nav.app-nav.on .inner_top .topic #app-menu .line:nth-of-type(1):before {
    transform: rotate(45deg);
}

nav.app-nav.on .inner_top .topic #app-menu .line:nth-of-type(2) {
    opacity: 0;
}

nav.app-nav.on .inner_top .topic #app-menu .line:nth-of-type(3) {
    transform: translate3d(0, -8px, 0);
}

nav.app-nav.on .inner_top .topic #app-menu .line:nth-of-type(3):before {
    transform: rotate(-45deg);
}

.foot_mid {
    position: relative;
    left: 0;
    width: 100%;
    overflow: hidden;
}

.foot_mid .nav-items>.child_first>.firstList {
    padding: 0 0% 0 0%;
    position: relative;
    transition: background-color .5s ease;
}

.foot_mid .nav-items>.child_first>.firstList>a {
    color: #fff;
    height: 48px;
    line-height: 48px;
    white-space: nowrap;
    display: block;
    font-size: 15px;
    font-weight: 700;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.foot_mid .nav-items>.child_first>.firstList>i {
    right: -16px;
    top: 0;
    position: absolute;
    display: inline-block;
    width: 48px;
    height: 48px;
    font-size: 22px;
    line-height: 48px;
    text-align: center;
    color: #fff;
    transition: all 0.3s ease-in-out;
}

.foot_mid .nav-items>.child_first>.firstList.active>i {
    transform: rotate(90deg);
}

.foot_mid .nav-items>.child_first .sList {
    padding: 0 0% 0 0%;
    position: relative;
    transition: background-color .5s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.foot_mid .nav-items>.child_first .sList>a {
    color: #6991cb;
    height: 48px;
    line-height: 48px;
    white-space: nowrap;
    display: block;
    font-size: 15px;
    font-weight: 700;
}

.foot_mid .nav-items>.child_first .child_second {
    max-height: 0;
    transition: all .5s ease;
    overflow: hidden;
    border-bottom: 1px solid transparent;
}

.foot_mid .nav-items>.child_first .child_second>li {
    padding: 0 5% 0 5%;
    position: relative;
}

.foot_mid .nav-items>.child_first .child_second>li>a {
    padding: 7px 0 7px 0;
    display: block;
    font-weight: 700;
    color: #6991cb;
}

.foot_mid .nav-items>.child_first .child_second>li>i {
    right: calc(5% - 5px);
    top: 0;
    font-size: 24px;
    position: absolute;
    display: inline-block;
    width: 48px;
    height: 48px;
    line-height: 48px;
    text-align: right;
    color: #333;
}

.foot_mid .nav-items>.child_first .child_second>li.active {
    background-color: transparent;
}

.foot_mid .nav-items>.child_first .child_second.active {
    max-height: 100vh;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.foot_mid .nav-items>.child_first .child_three {
    background-color: #f0f1f2;
    max-height: 0;
    transition: all .5s ease;
    overflow: hidden;
}

.foot_mid .nav-items>.child_first .child_three>li {
    padding: 0 14% 0 14%;
}

.foot_mid .nav-items>.child_first .child_three>li>a {
    padding: 10px 0 10px 0;
    display: block;
    color: #fff;
}

.foot_mid .nav-items>.child_first .child_three.active {
    max-height: 100vh;
}

.foot_btm {
    padding: 0.25rem 0 0.5rem 0;
}

.foot_btm>a {
    color: #6991cb;
    width: 100%;
    display: block;
    font-size: 13px;
}

.app_footLeft {
    width: 100%;
}

.app_footLeft .notice {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.app_footLeft .notice>span {
    color: #6991cb;
    height: 0.5rem;
    line-height: 0.5rem;
    font-size: 15px;
}

.app_footLeft .notice>a {
    margin-left: 0.2rem;
    display: inline-block;
}

.app_footLeft .notice>a>i {
    color: #fff;
    font-size: 0.28rem;
}

.app_footLeft .notice>a.wx>img {
    position: absolute;
    pointer-events: none;
    bottom: 100%;
    left: 0;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

.app_footLeft .notice>a.wx:hover>img {
    opacity: 1;
    pointer-events: auto;
}

.pub_pad_t {
    padding-top: .9rem;
}

.btn_nav_box {
    display: none;
    float: right;
    border-radius: 100%;
    line-height: .7rem;
    width: .7rem;
    height: .7rem;
    color: #000;
    text-align: center;
    cursor: pointer;
    transition: all .3s ease;
    position: relative;
}

.btn_nav_box i {
    font-size: .16rem;
}

.btn_nav_box .btn_nav_k {
    display: block;
}

.btn_nav_box .btn_nav_g {
    display: none;
}

.btn_nav_box.on .btn_nav_k {
    display: none;
}

.btn_nav_box.on .btn_nav_g {
    display: block;
}

.btn_nav_box.on>div {
    margin-top: .015rem;
    margin-left: .015rem;
}

.btn_nav_box.on>div span {
    display: block;
    height: .02rem;
    background-color: #000;
    margin: .04rem 0;
    width: 100%;
    transition: all .3s ease;
}

.btn_nav_box.on>div span:nth-child(1) {
    transform-origin: 0 50%;
    transform: rotate(45deg);
    margin-top: 0;
}

.btn_nav_box.on>div span:nth-child(2) {
    opacity: 0;
}

.btn_nav_box.on>div span:nth-child(3) {
    width: 100% !important;
    margin-left: 0 !important;
    transform-origin: 0 50%;
    transform: rotate(-45deg);
    margin-top: .08rem;
}

.btn_nav_box>div {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: .22rem;
}

.btn_nav_box>div span {
    display: block;
    height: .02rem;
    background-color: #000;
    margin: .04rem 0;
    width: 100%;
    transition: all .3s ease;
}

.btn_nav_box>div span:nth-child(2) {
    width: 50%;
    margin-left: 50%;
}

.btn_nav_box>div span:nth-child(3) {
    width: 75%;
    margin-left: 25%;
}

footer {
    background-position: center;
    background-size: cover;
    color: #ffffff;
    background-color: #00449b;
}

footer .pub_case {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 5.8125vw;
}

footer .pub_case .foot_left {
    width: 34.5%;
}

footer .pub_case .foot_left .foot_search_case {
    min-height: 268px;
}

footer .pub_case .foot_left h2 {
    font-size: 0.56rem;
    color: #fff;
    margin-bottom: 0.4rem;
}

footer .pub_case .foot_left .foot_search_box {
    border-bottom: 1px solid #ffffff;
}

footer .pub_case .foot_left .foot_search_box form {
    display: flex;
}

footer .pub_case .foot_left .foot_search_box input,
footer .pub_case .foot_left .foot_search_box a {
    line-height: 1;
    font-size: .28rem;
    color: #ffffff;
    padding: .2rem 0;
}

footer .pub_case .foot_left .foot_search_box input {
    width: calc(100% - .6rem);
    background-color: transparent;
    outline: none;
    font-size: 16px;
    font-weight: 700;
}

footer .pub_case .foot_left .foot_search_box a {
    width: .6rem;
    text-align: left;
    cursor: pointer;
}

footer .pub_case .foot_left .foot_search_his {
    padding: .15rem 0 0;
    font-size: 0;
}

footer .pub_case .foot_left .foot_search_his a {
    display: inline-block;
    padding: .15rem 0;
    font-size: 14px;
    color: #6991cb;
    transition: all .3s ease;
    margin-right: .3rem;
    cursor: pointer;
}

footer .pub_case .foot_left .foot_search_his a:last-child {
    margin-right: 0;
}

footer .pub_case .foot_left .foot_search_his a:hover {
    color: #ffffff;
}

footer .pub_case .foot_left .foot_links_box {
    display: flex;
}

footer .pub_case .foot_left .foot_links_box ul {
    margin-top: .6rem;
    margin-right: 5.2vw;
    margin-bottom: 4.17vw;
}

footer .pub_case .foot_left .foot_links_box ul:last-child {
    margin-right: 0;
}

footer .pub_case .foot_left .foot_links_box ul li {
    display: block;
    font-size: 0;
}

footer .pub_case .foot_left .foot_links_box ul li span {
    font-weight: 700;
    font-size: .22rem;
    line-height: 1;
    display: block;
    color: #6991cb;
    margin-bottom: .2rem;
}

footer .pub_case .foot_left .foot_links_box ul li a {
    display: inline-block;
    cursor: pointer;
    color: #6991cb;
    transition: all .3s ease;
    font-size: 14px;
    line-height: 1;
    padding: .08rem 0;
}

footer .pub_case .foot_left .foot_links_box ul li a:hover {
    color: #ffffff;
}

footer .pub_case .foot_right {
    width: 52%;
}

footer .pub_case .foot_right .foot_con_box {
    margin-bottom: .8rem;
    display: flex;
    justify-content: flex-end;
}

footer .pub_case .foot_right .f_link {
    display: flex;
    width: 90%;
    margin-bottom: 0.6rem;
    justify-content: space-between;
    align-items: flex-start;
    min-height: 268px;
}

footer .pub_case .foot_right .f_link ul {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
}

footer .pub_case .foot_right .f_link ul:last-child {
    margin-right: 0;
}

footer .pub_case .foot_right .f_link ul li {
    display: block;
    font-size: 0;
}

footer .pub_case .foot_right .f_link ul li span {
    font-weight: 700;
    font-size: .16rem;
    line-height: 1;
    display: block;
    margin-bottom: .25rem;
}

footer .pub_case .foot_right .f_link ul li a {
    display: inline-block;
    cursor: pointer;
    color: #6991cb;
    transition: all .3s ease;
    font-size: 14px;
    line-height: 1;
    padding: .08rem 0;
}

footer .pub_case .foot_right .f_link ul li a:hover {
    color: #ffffff;
}

footer .pub_case .foot_right .foot_name {
    padding: 0 0 .2rem;
    font-size: .32rem;
    font-weight: 700;
    line-height: 1;
    margin-top: .3rem;
    color: #6991cb;
}

footer .pub_case .foot_right .foot_tel {
    background-color: #ffffff;
    border-radius: .6rem;
    color: #00449b;
    padding: .15rem .3rem;
    line-height: .26rem;
    font-size: .24rem;
    font-weight: 700;
}

footer .pub_case .foot_right .foot_tel i {
    font-size: .26rem;
    font-weight: 400;
    margin-right: .2rem;
}

footer .pub_case .foot_right .foot_lx_info {
    font-size: .16rem;
    margin-bottom: -.2rem;
    position: relative;
}

footer .pub_case .foot_right .foot_lx_info p {
    color: #6991cb;
    /* line-height: 0.rem; */
    margin-bottom: 0.06rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

footer .pub_case .foot_right .foot_lx_info p>b {
    font-size: 0.3rem;
    line-height: 0rem;
}

footer .pub_case .foot_right .foot_lx_info .notice {
    position: absolute;
    right: 0;
    top: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

footer .pub_case .foot_right .foot_lx_info .notice>span {
    color: #6991cb;
    height: 0.5rem;
    line-height: 0.5rem;
}

footer .pub_case .foot_right .foot_lx_info .notice>a {
    margin-left: 0.2rem;
    display: inline-block;
}

footer .pub_case .foot_right .foot_lx_info .notice>a>i {
    color: #fff;
    font-size: 0.28rem;
}

footer .pub_case .foot_right .foot_lx_info .notice>a.wx>img {
    position: absolute;
    pointer-events: none;
    bottom: 100%;
    left: 0;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

footer .pub_case .foot_right .foot_lx_info .notice>a.wx:hover>img {
    opacity: 1;
    pointer-events: auto;
}

footer .pub_case .foot_right .foot_code_box {
    display: flex;
}

footer .pub_case .foot_right .foot_code_box img {
    margin-right: 15px;
}

footer .pub_case .foot_right .foot_code_box img:first-child {
    width: 28.49%;
}

footer .pub_case .foot_right .foot_code_box img:nth-child(2) {
    width: 47.17%;
}

footer .pub_case .foot_right .foot_code_box img:last-child {
    margin-right: 0;
}

footer .copyright_box {
    font-size: 12px;
    line-height: 1.5;
    padding: .25rem 13.5%;
    color: rgba(255, 255, 255, 0.5);
    border-top: 1px solid rgba(224, 224, 224, 0.1);
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer .copyright_box a {
    color: #6991cb;
}

footer .copyright_box>div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 1.4rem;
}

.pub_banner {
    position: relative;
    overflow: hidden;
}

.pub_banner .pub_hint {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: .25rem;
    text-align: center;
    color: #ffffff;
    line-height: 1;
    z-index: 3;
}

.pub_banner .pub_hint div {
    font-size: 14px;
    margin-top: .1rem;
    font-family: 'GOTHAM-BOLD_0';
}

.pub_banner.on .pub_banner_con .pub_banner_img {
    transform: scale(1);
}

.pub_banner .pub_banner_con {
    height: 100vh;
    position: relative;
}

.pub_banner .pub_banner_con .pub_banner_img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: all 2s ease;
    transform: scale(1.2);
}

.pub_banner .pub_banner_con .pub_banner_text {
    position: absolute;
    margin-top: .2rem;
    text-align: center;
    width: 100%;
    padding: 0 .6rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
}

.pub_banner .pub_banner_con .pub_banner_text>div {
    overflow: hidden;
    text-transform: uppercase;
}

.pub_banner .pub_banner_con .pub_banner_text font {
    font-size: 1.15rem;
    line-height: 1.15;
    font-family: 'GOTHAM-BOLD_0';
}

.pub_banner .pub_banner_con .pub_banner_text .btn_sty {
    margin-top: .5rem;
}

.ind_banner {
    margin-bottom: .4rem;
}

.ind_banner .swiper-pagination {
    position: absolute;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    right: 3.65%;
}

.ind_banner .swiper-pagination span {
    margin: .15rem auto;
    display: block;
}

.ind_banner .pub_banner_text {
    display: none;
}

.ind_banner .active .pub_banner_text {
    display: block;
}

.ind_banner .active .pub_banner_con .pub_banner_img {
    transform: scale(1);
}

.pub_case {
    margin: 0 auto;
    width: 73%;
}

section {
    padding: 8.33vw 0 0;
}

.pub_title {
    font-size: .52rem;
    line-height: 1.16;
    text-align: center;
    font-weight: 700;
    color: #000;
}

.pub_title_s {
    font-size: .16rem;
    line-height: 2.625;
    text-align: center;
    font-weight: 700;
    color: #ffffff;
    min-width: 1.2rem;
    padding: 0 .15rem;
    border-radius: .2rem 0 .2rem 0;
    background-color: #00449b;
    display: inline-block;
}

.pub_line {
    border-bottom: 1px solid #00449b;
}

.pub_info {
    font-size: .14rem;
    line-height: 2.07;
    color: #353b3b;
    text-align: center;
}

.pub_info p {
    line-height: inherit;
    font-size: inherit;
}

.case_body .case_banner {
    width: 100%;
    height: calc(100vh - .9rem);
    position: relative;
}

.case_body .case_banner .case_img_box {
    position: absolute;
    width: calc(100vw + 20px);
    height: calc(100% + 20px);
    left: -10px;
    top: -10px;
    z-index: 0;
}

.case_body .case_banner .case_img_box>div {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-size: cover;
    background-position: left;
}

.case_body .case_banner .case_img_box>div.on {
    opacity: 1;
}

.case_body .case_banner .case_img_case {
    position: relative;
    z-index: 1;
    display: flex;
    height: 100%;
}

.case_body .case_banner .case_img_case>div {
    width: 20%;
    height: 100%;
    overflow: hidden;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.case_body .case_banner .case_img_case>div:last-child {
    border-right: none;
}

.case_body .case_banner .case_img_case>div .case_m_img {
    position: absolute;
    width: calc(100vw + 20px);
    height: calc(100% + 20px);
    left: -10px;
    top: -10px;
    background-size: cover;
    background-position: left;
    -webkit-filter: blur(10px);
    -moz-filter: blur(10px);
    -ms-filter: blur(10px);
    -o-filter: blur(10px);
    filter: blur(10px);
    opacity: 0;
}

@media all and (min-width: 1025px) {
    .case_body .case_banner .case_img_case>div:nth-child(2) .case_m_img {
        left: -20vw;
    }
    .case_body .case_banner .case_img_case>div:nth-child(3) .case_m_img {
        left: -40vw;
    }
    .case_body .case_banner .case_img_case>div:nth-child(4) .case_m_img {
        left: -60vw;
    }
    .case_body .case_banner .case_img_case>div:nth-child(5) .case_m_img {
        left: -80vw;
    }
}

.case_body .case_banner .case_img_case>div .cas_nav_box {
    position: absolute;
    left: 0;
    top: 50%;
    transition: all .3s ease;
    transform: translateY(-50%);
    text-align: center;
    width: 100%;
    color: #ffffff;
}

.case_body .case_banner .case_img_case>div .cas_nav_box>i {
    font-size: .7rem;
    line-height: 1;
    margin-bottom: .3rem;
    display: block;
}

.case_body .case_banner .case_img_case>div .cas_nav_box>div {
    font-size: .32rem;
    font-weight: 700;
    line-height: 1;
}

.case_body .case_banner .case_img_case>div .cas_nav_box ul {
    display: none;
    margin-top: .55rem;
}

.case_body .case_banner .case_img_case>div .cas_nav_box ul li {
    display: block;
}

.case_body .case_banner .case_img_case>div .cas_nav_box ul li a {
    display: block;
    border-radius: .6rem;
    font-size: .2rem;
    line-height: .7rem;
    height: .7rem;
    cursor: pointer;
    color: inherit;
    margin: 5px auto;
    width: 2rem;
    font-weight: 700;
    padding: 0 .35rem;
    transition: all .3s ease;
    position: relative;
}

.case_body .case_banner .case_img_case>div .cas_nav_box ul li a i {
    font-size: 12px;
    transition: all .3s ease;
    opacity: 0;
    position: absolute;
    right: .35rem;
    top: 0;
    display: block;
    transform: translate(-100%, 0);
}

.case_body .case_banner .case_img_case>div .cas_nav_box ul li a span {
    left: 50%;
    top: 0;
    display: block;
    position: absolute;
    transform: translate(-50%, 0);
    transition: all .3s ease;
}

@media all and (min-width: 1025px) {
    .case_body .case_banner .case_img_case>div .cas_nav_box ul li a:hover {
        text-align: left;
        background-color: #ffffff;
    }
    .case_body .case_banner .case_img_case>div .cas_nav_box ul li a:hover span {
        left: .35rem;
        transform: translate(0, 0);
        color: #00449b;
    }
    .case_body .case_banner .case_img_case>div .cas_nav_box ul li a:hover i {
        opacity: 1;
        transform: translate(0, 0);
        color: #00449b;
    }
}

@media all and (min-width: 1025px) {
    .case_body .case_banner .case_img_case>div.on .case_m_img {
        opacity: 1;
    }
    .case_body .case_banner .case_img_case>div.on .cas_nav_box ul {
        display: block;
    }
}

.btn_m {
    display: none;
}

.case_list_body .case_list_box {
    height: calc(100vh - .9rem);
    position: relative;
    display: flex;
}

.case_list_body .case_list_box .case_nav_case {
    width: 20%;
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
}

.case_list_body .case_list_box .case_nav_case .case_list_img {
    position: absolute;
    width: calc(100vw + 20px);
    height: calc(100% + 20px);
    left: -10px;
    top: -10px;
    z-index: 0;
    background-size: cover;
    background-position: left center;
    -webkit-filter: blur(10px);
    -moz-filter: blur(10px);
    -ms-filter: blur(10px);
    -o-filter: blur(10px);
    filter: blur(10px);
}

.case_list_body .case_list_box .case_nav_case .case_nav_con_f,
.case_list_body .case_list_box .case_nav_case .case_nav_con_t {
    width: 100%;
    height: 100%;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    background-color: rgba(3, 26, 22, 0.3);
    position: relative;
    z-index: 1;
    color: #ffffff;
    padding-top: 24vh;
}

.case_list_body .case_list_box .case_nav_case .case_nav_con_f ul,
.case_list_body .case_list_box .case_nav_case .case_nav_con_t ul {
    display: block;
}

.case_list_body .case_list_box .case_nav_case .case_nav_con_f ul>a,
.case_list_body .case_list_box .case_nav_case .case_nav_con_t ul>a {
    display: none;
    padding: .25rem;
    font-size: .3rem;
}

.case_list_body .case_list_box .case_nav_case .case_nav_con_f ul li,
.case_list_body .case_list_box .case_nav_case .case_nav_con_t ul li {
    display: block;
}

.case_list_body .case_list_box .case_nav_case .case_nav_con_f ul li a,
.case_list_body .case_list_box .case_nav_case .case_nav_con_t ul li a {
    display: block;
    cursor: pointer;
    transition: all .3s ease;
}

.case_list_body .case_list_box .case_nav_case .case_nav_con_f a {
    color: rgba(255, 255, 255, 0.5);
    padding-left: 4.16vw;
    font-weight: 700;
    font-size: .18rem;
    position: relative;
    line-height: .6rem;
    margin: 5px 0;
}

.case_list_body .case_list_box .case_nav_case .case_nav_con_f a i {
    transition: all .3s ease;
    position: absolute;
    left: 2.6vw;
    top: 50%;
    font-size: .16rem;
    line-height: 1;
    margin-top: -0.08rem;
    transform: translateX(-100%);
    opacity: 0;
}

.case_list_body .case_list_box .case_nav_case .case_nav_con_f a:hover {
    color: #ffffff;
}

.case_list_body .case_list_box .case_nav_case .case_nav_con_f a:hover i {
    transform: none;
    opacity: 1;
}

.case_list_body .case_list_box .case_nav_case .case_nav_con_f li.on a {
    font-size: .32rem;
    color: #ffffff;
}

.case_list_body .case_list_box .case_nav_case .case_nav_con_f li.on a i {
    opacity: 1;
    transform: none;
}

.case_list_body .case_list_box .case_nav_case .case_nav_con_t ul {
    margin: 0 auto;
    width: 1.8rem;
}

.case_list_body .case_list_box .case_nav_case .case_nav_con_t a {
    color: #ffffff;
    line-height: .6rem;
    margin: 5px 0 .15rem;
    border-radius: .6rem;
    padding: 0 2.08vw;
    position: relative;
    font-weight: 700;
}

.case_list_body .case_list_box .case_nav_case .case_nav_con_t a i {
    opacity: 0;
    position: absolute;
    right: 1.5625vw;
    font-size: .14rem;
    transform: translateX(-120%);
    top: 0;
    transition: all .3s ease;
    font-weight: 400;
}

@media all and (min-width: 1025px) {
    .case_list_body .case_list_box .case_nav_case .case_nav_con_t li.on a,
    .case_list_body .case_list_box .case_nav_case .case_nav_con_t li:hover a {
        background-color: #ffffff;
        color: #00449b;
    }
    .case_list_body .case_list_box .case_nav_case .case_nav_con_t li.on a i,
    .case_list_body .case_list_box .case_nav_case .case_nav_con_t li:hover a i {
        opacity: 1;
        color: #00449b;
        transform: none;
    }
}

.case_list_body .case_list_box .m_sty {
    display: none;
}

.case_list_body .case_list_box .case_con_case {
    width: 80%;
    height: 100%;
}

.case_list_body .case_list_box .case_con_case .case_det_box_case {
    height: 63.15%;
}

.case_list_body .case_list_box .case_con_case .case_det_box_case .swiper-container {
    height: 100%;
}

.case_list_body .case_list_box .case_con_case .case_det_box_case .swiper-container .swiper-wrapper {
    height: 100%;
}

.case_list_body .case_list_box .case_con_case .case_det_box_case .swiper-container .swiper-wrapper .swiper-slide {
    height: 100%;
    position: relative;
}

.case_list_body .case_list_box .case_con_case .case_det_box_case .swiper-container .swiper-wrapper .swiper-slide .case_det_box {
    height: 100%;
    background-position: center;
    background-size: cover;
    position: relative;
}

.case_list_body .case_list_box .case_con_case .case_det_box_case .swiper-container .swiper-wrapper .swiper-slide .case_det_box::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.25);
    width: 100%;
    height: 100%;
}

.case_list_body .case_list_box .case_con_case .case_det_box_case .swiper-container .swiper-wrapper .swiper-slide .case_det_box .btn_m {
    position: absolute;
    z-index: 3;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    cursor: pointer;
}

.case_list_body .case_list_box .case_con_case .case_det_box_case .swiper-container .swiper-wrapper .swiper-slide .case_det_box .case_det_text_box {
    position: absolute;
    width: 100%;
    top: 55%;
    transform: translateY(-50%);
    padding: 0 .3rem;
    text-align: center;
    color: #ffffff;
}

.case_list_body .case_list_box .case_con_case .case_det_box_case .swiper-container .swiper-wrapper .swiper-slide .case_det_box .case_det_text_box .case_det_name {
    line-height: 1;
    font-size: .6rem;
    font-weight: 700;
    opacity: 0;
    transform: translateY(15px);
    transition: all 1s ease .4s;
}

.case_list_body .case_list_box .case_con_case .case_det_box_case .swiper-container .swiper-wrapper .swiper-slide .case_det_box .case_det_text_box .case_det_add {
    font-weight: 700;
    font-size: .18rem;
    line-height: 1;
    margin: .3rem;
    opacity: 0;
    transform: translateY(15px);
    transition: all 1s ease .2s;
}

.case_list_body .case_list_box .case_con_case .case_det_box_case .swiper-container .swiper-wrapper .swiper-slide .case_det_box .case_det_text_box .case_det_add span {
    font-size: .22rem;
}

.case_list_body .case_list_box .case_con_case .case_det_box_case .swiper-container .swiper-wrapper .swiper-slide .case_det_box .case_det_text_box a {
    margin: 0 auto;
    display: block;
    transition: all .3s ease;
    color: #00449b;
    width: 1.5rem;
    line-height: .5rem;
    border-radius: .6rem;
    background-color: #ffffff;
    padding: 0 .24rem;
    font-weight: 700;
    font-size: 14px;
    position: relative;
    opacity: 0;
    transform: translateY(15px);
    transition: all 1s ease;
}

.case_list_body .case_list_box .case_con_case .case_det_box_case .swiper-container .swiper-wrapper .swiper-slide .case_det_box .case_det_text_box a i {
    font-weight: 400;
    font-size: 14px;
    position: absolute;
    right: .24rem;
}

.case_list_body .case_list_box .case_con_case .case_det_box_case .swiper-container .swiper-wrapper .swiper-slide.active .case_det_box .case_det_text_box .case_det_name {
    opacity: 1;
    transform: none;
    transition: all 1s ease;
}

.case_list_body .case_list_box .case_con_case .case_det_box_case .swiper-container .swiper-wrapper .swiper-slide.active .case_det_box .case_det_text_box .case_det_add {
    opacity: 1;
    transform: none;
    transition: all 1s ease .2s;
}

.case_list_body .case_list_box .case_con_case .case_det_box_case .swiper-container .swiper-wrapper .swiper-slide.active .case_det_box .case_det_text_box a {
    opacity: 1;
    transform: none;
    transition: all 1s ease .4s;
}

.case_list_body .case_list_box .case_con_case .case_det_box_case .swiper-container .swiper-pagination {
    padding: 0 .5rem;
    text-align: right;
}

.case_list_body .case_list_box .case_con_case .case_det_nav_box {
    height: 36.85%;
    display: flex;
    align-items: center;
    position: relative;
}

.case_list_body .case_list_box .case_con_case .case_det_nav_box .swiper-container {
    width: 86.86%;
    padding: 0 .10rem;
}

.case_list_body .case_list_box .case_con_case .case_det_nav_box .swiper-slide {
    padding: .3rem .15rem 0;
}

.case_list_body .case_list_box .case_con_case .case_det_nav_box .case_nav_thumb {
    position: relative;
}

.case_list_body .case_list_box .case_con_case .case_det_nav_box .case_nav_thumb::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    left: 50%;
    top: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    border: 0 solid #00449b;
    transition: all .3s ease;
}

.case_list_body .case_list_box .case_con_case .case_det_nav_box .case_nav_thumb img {
    display: block;
    width: 100%;
    height: 1.5rem;
    object-fit: cover;
}

.case_list_body .case_list_box .case_con_case .case_det_nav_box .case_nav_name {
    transition: all .3s ease;
    color: #293333;
    font-size: .16rem;
    font-weight: 700;
    line-height: 1.5;
    margin-top: 16px;
}

.case_list_body .case_list_box .case_con_case .case_det_nav_box .swiper-slide.on .case_nav_thumb,
.case_list_body .case_list_box .case_con_case .case_det_nav_box .swiper-slide:hover .case_nav_thumb {
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.2);
}

.case_list_body .case_list_box .case_con_case .case_det_nav_box .swiper-slide.on .case_nav_thumb::before,
.case_list_body .case_list_box .case_con_case .case_det_nav_box .swiper-slide:hover .case_nav_thumb::before {
    border-width: .04rem;
}

.case_list_body .case_list_box .case_con_case .case_det_nav_box .swiper-slide.on .case_nav_name,
.case_list_body .case_list_box .case_con_case .case_det_nav_box .swiper-slide:hover .case_nav_name {
    color: #00449b;
}

.case_list_body .case_list_box .case_con_case .case_det_nav_box .swiper-button-prev {
    left: 5.57%;
    transform: translateX(-100%);
}

.case_list_body .case_list_box .case_con_case .case_det_nav_box .swiper-button-next {
    right: 5.57%;
    transform: translateX(100%);
}

.case_hf {
    display: none;
    position: absolute;
    right: .5rem;
    top: .3rem;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.1);
    width: .5rem;
    height: .5rem;
    line-height: .5rem;
    text-align: center;
    cursor: pointer;
    color: #fff;
    z-index: 2;
}

.btn_radius {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    text-align: center;
    border: 2px solid #c8e6d2;
    transition: all .3s ease;
    padding: 0 .38rem;
    font-size: .16rem;
    font-weight: 700;
    color: #00449b;
    line-height: 3.5;
    cursor: pointer;
    border-radius: .6rem;
}

.btn_radius i {
    font-size: .16rem;
    font-weight: 400;
    margin-right: .25rem;
}

.btn_radius:hover {
    background-color: #c8e6d2;
}

.case_det_body .case_det_con_box {
    padding-top: 6.77vw;
    padding-bottom: 5.625vw;
    position: relative;
    background-color: #fafcfc;
    overflow: hidden;
}

.case_det_body .case_det_con_box>img {
    display: block;
    width: 100%;
    position: absolute;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

.case_det_body .case_det_con_box .pub_case {
    display: flex;
    align-items: flex-start;
    flex-direction: row-reverse;
}

.case_det_body .case_det_con_box .pub_case .case_d_info_box {
    width: 36.5%;
}

.case_det_body .case_det_con_box .pub_case .case_d_info_box .pub_title {
    text-align: left;
}

.case_det_body .case_det_con_box .pub_case .case_d_info_box .pub_info {
    text-align: justify;
    margin-bottom: .38rem;
}

.case_det_body .case_det_con_box .pub_case .case_d_info_box .pub_line {
    margin-top: .6rem;
    margin-bottom: .17rem;
}

.case_det_body .case_det_con_box .pub_case .case_d_info_box .case_pro_box {
    background-color: #ffffff;
    margin-top: -.21rem;
    padding: .27rem .25rem .27rem .54rem;
    border-radius: .12rem;
    box-shadow: 0 30px 65px -20px rgba(0, 55, 54, 0.08);
}

.case_det_body .case_det_con_box .pub_case .case_d_info_box .case_pro_box .case_pro_list_box {
    overflow-y: auto;
    height: 28.5vh;
    padding-right: .4rem;
}

.case_det_body .case_det_con_box .pub_case .case_d_info_box .case_pro_box .case_pro_list_box a {
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(135, 150, 150, 0.2);
    padding: .12rem 0;
}

.case_det_body .case_det_con_box .pub_case .case_d_info_box .case_pro_box .case_pro_list_box a:last-child {
    border-bottom: none;
}

.case_det_body .case_det_con_box .pub_case .case_d_info_box .case_pro_box .case_pro_list_box a .pro_d_img {
    width: 27.7%;
}

.case_det_body .case_det_con_box .pub_case .case_d_info_box .case_pro_box .case_pro_list_box a .pro_d_img img {
    width: 100%;
    display: block;
}

.case_det_body .case_det_con_box .pub_case .case_d_info_box .case_pro_box .case_pro_list_box a .pro_d_text {
    width: 72.3%;
    padding-left: .3rem;
    color: #3d3d3d;
    line-height: 1.1875;
    font-weight: 700;
    font-size: .16rem;
    text-align: justify;
}

.case_det_body .case_det_con_box .pub_case .case_d_img_box {
    width: 56.57%;
    margin-left: 6.93%;
}

.case_det_body .case_det_con_box .pub_case .case_d_img_box .case_d_nav_box {
    position: relative;
    margin-top: -10px;
    padding-top: .47rem;
    padding-bottom: .33rem;
    font-size: 0;
}

.case_det_body .case_det_con_box .pub_case .case_d_img_box .case_d_nav_box>div {
    cursor: pointer;
    display: inline-block;
    vertical-align: middle;
    border-radius: .6rem;
    transition: all .3s ease;
    margin-right: 10px;
    background-color: #ebf7ef;
    text-align: center;
    font-size: .14rem;
    color: #00449b;
    font-weight: 700;
    padding: 0 .3rem;
    line-height: 2.286;
}

.case_det_body .case_det_con_box .pub_case .case_d_img_box .case_d_nav_box>div.on,
.case_det_body .case_det_con_box .pub_case .case_d_img_box .case_d_nav_box>div:hover {
    background-color: #00449b;
    color: #ffffff;
}

.case_det_body .case_det_con_box .pub_case .case_d_img_box .case_d_con_case>div {
    display: none;
    padding-right: 13.6vw;
    margin-right: -13.6vw;
    overflow: hidden;
}

.case_det_body .case_det_con_box .pub_case .case_d_img_box .case_d_con_case>div .swiper-container {
    overflow: initial;
}

.case_det_body .case_det_con_box .pub_case .case_d_img_box .case_d_con_case>div .swiper-container img,
.case_det_body .case_det_con_box .pub_case .case_d_img_box .case_d_con_case>div .swiper-container video {
    opacity: 0.3;
    transition: all .3s ease;
    display: block;
    width: 100%;
    pointer-events: none;
}

.case_det_body .case_det_con_box .pub_case .case_d_img_box .case_d_con_case>div .swiper-container .swiper-slide {
    position: relative;
}

.case_det_body .case_det_con_box .pub_case .case_d_img_box .case_d_con_case>div .swiper-container .swiper-slide i {
    position: absolute;
    color: #ffffff;
    font-size: .6rem;
    display: block;
    line-height: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all .3s ease;
    display: none;
}

.case_det_body .case_det_con_box .pub_case .case_d_img_box .case_d_con_case>div .swiper-container .swiper-slide i:hover {
    color: #00449b;
}

.case_det_body .case_det_con_box .pub_case .case_d_img_box .case_d_con_case>div .swiper-container .swiper-slide.active img,
.case_det_body .case_det_con_box .pub_case .case_d_img_box .case_d_con_case>div .swiper-container .swiper-slide.active video {
    opacity: 1;
    pointer-events: auto;
}

.case_det_body .case_det_con_box .pub_case .case_d_img_box .case_d_con_case>div.video_box .swiper-slide {
    cursor: pointer;
}

.case_det_body .case_det_con_box .pub_case .case_d_img_box .case_d_con_case>div.picture_box .swiper-slide {
    cursor: pointer;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.case_det_body .case_det_con_box .pub_case .case_d_img_box .case_d_con_case>div.picture_box .swiper-slide::before {
    content: '';
    display: block;
    margin-top: 56.153846%;
}

.case_det_body .case_det_con_box .pub_case .case_d_img_box .case_d_con_case>div.picture_box .swiper-slide>img {
    display: none;
}

.case_det_body .case_det_con_box .pub_case .case_d_img_box .case_d_con_case>div .swiper-pagination {
    position: relative;
    text-align: left;
    margin-top: .3rem;
}

.case_det_body .case_det_con_box .pub_case .case_d_img_box .case_d_con_case>div .swiper-pagination span {
    background-color: #00449b;
    opacity: .2;
}

.case_det_body .case_det_con_box .pub_case .case_d_img_box .case_d_con_case>div .swiper-pagination span.swiper-pagination-bullet-active {
    opacity: 1;
}

.case_det_body .case_det_con_box .pub_case .case_d_img_box .case_d_con_case>div:nth-child(2) {
    display: block;
}

.video_box .swiper-container,
.picture_box .swiper-container {
    cursor: url("../image/shubiao.png"), auto;
}

.video_box.not_t .swiper-container,
.picture_box.not_t .swiper-container {
    cursor: auto;
}

.m_link {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.pro_det_body .pro_banner_box {
    position: relative;
}

.pro_det_body .pro_banner_box .swiper-slide .pro_ban_box {
    padding-bottom: 6.36%;
    position: relative;
}

.pro_det_body .pro_banner_box .swiper-slide .pro_ban_box>img {
    width: 100%;
    display: block;
}

.pro_det_body .pro_banner_box .swiper-slide .pro_ban_box .por_ban_img_box {
    position: relative;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
}

.pro_det_body .pro_banner_box .swiper-slide .pro_ban_box .por_ban_img_box::before {
    content: '';
    display: block;
    margin-top: 29.01042%;
}

.pro_det_body .pro_banner_box .swiper-slide .pro_ban_box .pro_ban_tex_box {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    display: flex;
    align-items: flex-start;
}

.pro_det_body .pro_banner_box .swiper-slide .pro_ban_box .pro_ban_tex_box .pro_img_box {
    width: 30%;
    visibility: hidden;
    opacity: 0;
    transform: translateX(-10%);
    transition: all 1s ease .5s;
    position: relative;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    overflow: hidden;
}

.pro_det_body .pro_banner_box .swiper-slide .pro_ban_box .pro_ban_tex_box .pro_img_box::before {
    content: '';
    display: block;
    margin-top: 100%;
}

.pro_det_body .pro_banner_box .swiper-slide .pro_ban_box .pro_ban_tex_box .pro_ban_tex {
    width: 70%;
    padding-left: 5.833%;
    padding-top: 0;
    font-size: .48rem;
    line-height: 1.32;
    font-weight: 700;
    color: #ffffff;
    transform: translateY(15px);
    opacity: 0;
    transition: all 1s ease .8s;
}

.pro_det_body .pro_banner_box .swiper-slide.active .pro_ban_box .pro_ban_tex_box .pro_img_box {
    visibility: visible;
    transform: none;
    opacity: 1;
}

.pro_det_body .pro_banner_box .swiper-slide.active .pro_ban_box .pro_ban_tex_box .pro_ban_tex {
    transform: none;
    opacity: 1;
}

.pro_det_body .pro_banner_box .swiper-pagination {
    text-align: left;
    padding-left: 41.15%;
    bottom: 11%;
}

.pro_det_body .pro_banner_box .swiper-pagination span {
    background-color: #00449b;
    opacity: .2;
}

.pro_det_body .pro_banner_box .swiper-pagination span.swiper-pagination-bullet-active {
    opacity: 1;
}

.pro_det_body .pro_banner_box .nav_hint_box {
    position: absolute;
    z-index: 3;
    left: 50%;
    transform: translateX(-50%);
    width: 62.5%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding-top: .4rem;
    padding-bottom: .3rem;
    display: flex;
    align-items: center;
}

.pro_det_body .pro_banner_box .nav_hint_box>div {
    width: calc(100% - 1.90rem);
    line-height: 1;
    color: #ffffff;
    font-size: 14px;
}

.pro_det_body .pro_banner_box .nav_hint_box>div span {
    font-size: .2rem;
    font-weight: 700;
}

.pro_det_body .pro_banner_box .nav_hint_box .btn_radius {
    position: relative;
    width: 1.90rem;
    background-color: #ffffff;
    border-color: transparent;
    padding: 0;
}

.pro_det_body .pro_banner_box svg {
    position: absolute;
    width: 100%;
    height: 1.6rem;
    bottom: -1px;
    left: 0;
    z-index: 2;
    display: none;
}

.pro_det_body .pro_d_con_box {
    margin-top: .2rem;
}

.pro_det_body .pro_table_box {
    padding: .2rem 0 .1rem;
}

.pro_det_body .pro_table_box .table_pro {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    overfolw: scroll;
}

.pro_det_body .pro_table_box table {
    width: 100%;
    border-top: 2px solid #88a49e;
    border-left: 2px solid #88a49e;
    color: #88a49e;
    font-size: .18rem;
    line-height: 1.66;
    text-align: center;
    border-collapse: collapse;
    margin: .2rem 0;
}

.pro_det_body .pro_table_box table tr {
    border-bottom: 2px solid #88a49e;
}

.pro_det_body .pro_table_box table tr td,
.pro_det_body .pro_table_box table tr th {
    border-right: 2px solid #88a49e;
    padding: .05rem .2rem;
}

.pro_det_body .pro_table_box table tr td:first-child,
.pro_det_body .pro_table_box table tr th:first-child {
    width: 33.33%;
}

.pro_det_body .pro_table_box table tr td p,
.pro_det_body .pro_table_box table tr th p {
    text-align: center;
}

.pro_det_body .pro_table_box table tr:nth-child(1) td {
    color: #ffffff;
    background-color: #95aea9;
}

.pro_det_body .pro_table_box table tr th {
    color: #ffffff;
    background-color: #95aea9;
}

.pro_det_body .pro_case_show {
    padding: .2rem 0 0;
    margin-bottom: -.15rem;
    display: flex;
    flex-wrap: wrap;
}

.pro_det_body .pro_case_show>div {
    width: calc((100% - 20px) / 3);
    margin-right: 10px;
}

.pro_det_body .pro_case_show>div:nth-child(3n) {
    margin-right: 0;
}

.pro_det_body .pro_case_show>div img {
    width: 100%;
    box-shadow: 0 0 40px rgba(0, 55, 54, 0.08);
}

.pro_det_body .pro_case_show>div .pro_show_name {
    font-size: .16rem;
    line-height: 1;
    padding: .17rem 0 .25rem;
    text-align: center;
    font-weight: 700;
}

.pro_det_body .pro_td_box {
    margin-top: .4rem;
    display: flex;
    flex-wrap: wrap;
    padding-bottom: .05rem;
}

.pro_det_body .pro_td_box>div {
    background-color: #f8fafa;
    border-radius: .08rem;
    width: calc((100% - 20px) / 3);
    padding: .24rem .24rem .2rem;
    transition: all .3s ease;
    text-align: center;
    margin-right: 10px;
    margin-bottom: 10px;
}

.pro_det_body .pro_td_box>div:nth-child(3n) {
    margin-right: 0;
}

.pro_det_body .pro_td_box>div .pro_td_num {
    line-height: .8;
    font-size: .18rem;
    font-family: 'DIN-BOLD_0';
    text-align: left;
    color: #00449b;
}

.pro_det_body .pro_td_box>div .iconfont {
    margin: .5rem auto .35rem;
    width: 1rem;
    height: 1rem;
    display: block;
    border-radius: 100%;
    font-size: .45rem;
    line-height: .95rem;
    background-color: #ffffff;
    color: #00449b;
    transition: all .3s ease;
    border: 4px solid transparent;
}

.pro_det_body .pro_td_box>div .pro_td_info {
    text-align: justify;
    display: inline-block;
    max-width: 100%;
    padding: 0 .05rem;
    line-height: 1.57;
    font-size: .14rem;
    color: #333;
    transition: all .3s ease;
    min-height: .66rem;
    letter-spacing: -1px;
}

.pro_det_body .pro_td_box>div:hover {
    background-color: #ffffff;
    box-shadow: 0 0 40px rgba(0, 55, 54, 0.08);
}

.pro_det_body .pro_td_box>div:hover .iconfont {
    border-color: #00449b;
}

.pro_det_body .pro_td_box>div:hover .pro_td_info {
    color: #00449b;
}

.pro_det_body .pro_roadwork {
    padding-top: .05rem;
}

.pro_det_body .pro_roadwork .roa_name {
    margin-top: .22rem;
    margin-bottom: .12rem;
    line-height: 1;
    color: #333333;
    font-weight: 700;
    font-size: .16rem;
}

.pro_det_body .pro_roadwork .roa_info {
    line-height: 1.625;
    color: #333333;
    font-size: .16rem;
}

.pub_right_con_box {
    margin-left: 30%;
    width: 70%;
    padding-left: 5.833%;
    padding-bottom: .66rem;
}

.pub_right_con_box p,
.pub_right_con_box pre,
.pub_right_con_box table,
.pub_right_con_box blockquote {
    margin-bottom: 0;
    text-align: justify;
}

.pub_right_con_box strong {
    font-weight: 700;
}

.pub_right_con_box .pub_title_s {
    min-width: 1.3rem;
}

.pub_right_con_box .pub_info {
    text-align: left;
    margin-top: .25rem;
    font-size: .16rem;
    letter-spacing: -.7px;
}

.pub_right_con_box .pub_title_s {
    margin-top: .4rem;
}

.pub_right_con_box>div:first-child .pub_title_s {
    margin-top: 10px;
}

.hide {
    display: none !important;
}

.pub_left_con_box {
    position: absolute;
    left: 16.5%;
    top: 80%;
    width: 18.75%;
    z-index: 5;
}

.pub_left_con_box .pub_nav_s_box,
.pub_left_con_box>a {
    margin-bottom: .2rem;
    background-color: #f8fafa;
    padding: .25rem 0;
    display: block;
    text-align: center;
    position: relative;
}

.pub_left_con_box .pub_nav_s_box:last-child,
.pub_left_con_box>a:last-child {
    margin-bottom: 0;
}

.pub_left_con_box .pub_nav_s_box .pub_nav_title,
.pub_left_con_box>a .pub_nav_title {
    display: inline-block;
    border-radius: .6rem;
    padding: 0 .15rem;
    color: #00449b;
    line-height: 2.667;
    font-weight: 700;
    font-size: .15rem;
    margin-bottom: .1rem;
}

.pub_left_con_box .pub_nav_s_box .pub_nav_title {
    display: none;
}

.pub_left_con_box>a .pub_nav_title {
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 2;
    top: 0;
    margin-bottom: 0;
}

.pub_left_con_box .pub_hot_box {
    padding-left: 10.4%;
    padding-right: 10.4%;
    font-size: 0;
}

.pub_left_con_box .pub_hot_box .pub_nav_img {
    width: 80%;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.pub_left_con_box .pub_hot_box .pub_nav_img::before {
    content: '';
    display: block;
    margin-top: 100%;
}

.pub_left_con_box .pub_hot_box .pub_nav_img img {
    max-height: 100%;
    max-width: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.pub_left_con_box .pub_hot_box .pub_nav_name {
    font-size: .18rem;
    font-weight: 700;
    color: #454d4d;
}

.pub_left_con_box .pub_hot_box .pub_nav_name span {
    color: #6a7d7a;
    margin-left: .5em;
}

.pub_left_con_box .pub_nav_case {
    height: 0;
    overflow-y: auto;
}

.pub_left_con_box .pub_nav_case>ul {
    text-align: left;
}

.pub_left_con_box .pub_nav_case>ul>li {
    padding-left: 9%;
    padding-right: 9%;
}

.pub_left_con_box .pub_nav_case>ul>li.on>div {
    color: #00449b;
}

.pub_left_con_box .pub_nav_case>ul>li.on ul {
    display: block;
}

.pub_left_con_box .pub_nav_case>ul>li:last-child>div {
    border-bottom: none;
}

.pub_left_con_box .pub_nav_case>ul li>div {
    font-size: .18rem;
    font-weight: 700;
    line-height: 1;
    color: #454d4d;
    padding: .25rem 20px .25rem .4rem;
    transition: all .3s ease;
    position: relative;
    cursor: pointer;
    border-bottom: 1px solid #dfe7e7;
}

.pub_left_con_box .pub_nav_case>ul li>div i:first-child {
    position: absolute;
    display: block;
    left: 1px;
    line-height: 1;
    transform: translate(0, -50%);
    top: 50%;
    color: #00449b;
    font-size: .2rem;
}

.pub_left_con_box .pub_nav_case>ul li>div i:last-child {
    position: absolute;
    display: block;
    line-height: 1;
    font-size: 12px;
    right: 3px;
    top: 50%;
    color: #00449b;
    transform: translateY(-50%);
    transition: all .3s ease;
}

.pub_left_con_box .pub_nav_case>ul li>div span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    display: block;
}

.pub_left_con_box .pub_nav_case>ul li>div:hover {
    color: #00449b;
}

.pub_left_con_box .pub_nav_case>ul li ul {
    display: none;
}

.pub_left_con_box .pub_nav_case>ul li ul li {
    display: block;
}

.pub_left_con_box .pub_nav_case>ul li ul li a {
    font-size: .14rem;
    line-height: 1.5;
    color: #454d4d;
    padding: .05rem 0 .05rem .4rem;
    display: block;
    transition: all .3s ease;
}

.pub_left_con_box .pub_nav_case>ul li ul li a:hover,
.pub_left_con_box .pub_nav_case>ul li ul li a.on {
    color: #00449b;
}

.pub_left_con_box .pub_nav_case>ul li ul li:last-child a {
    padding-bottom: .3rem;
}

.pub_left_con_box .pub_nav_case>ul li ul li:first-child a {
    padding-top: .3rem;
}

@media all and (max-width: 1440px) {
    .case_list_body .case_list_box .case_con_case .case_det_box_case .swiper-container .swiper-wrapper .swiper-slide .case_det_box .case_det_text_box a {
        width: 1.8rem;
    }
}

@media all and (max-width: 1024px) {
    .case_body .case_banner .case_img_box {
        display: none;
    }
    .case_body .case_banner .case_img_case {
        display: block;
    }
    .case_body .case_banner .case_img_case>div {
        width: 100%;
        border-right: none;
        position: relative;
    }
    .case_body .case_banner .case_img_case>div .case_m_img {
        opacity: 1;
        padding-top: 66.66%;
        position: relative;
        left: 0;
        top: 0;
        height: auto;
        width: 100%;
        filter: none;
    }
    .case_body .case_banner {
        height: auto;
    }
    .case_body .case_banner .case_img_case>div .cas_nav_box>div {
        font-size: .6rem;
        font-weight: initial;
    }
    .pub_pad_t {
        padding-top: 50px;
    }
    .case_body .case_banner .case_img_case>div .cas_nav_box ul {
        position: absolute;
        bottom: 0;
        left: 0;
        background-color: rgba(0, 0, 0, 0.35);
        text-align: center;
        display: flex;
        width: 100%;
    }
    .case_body .case_banner .case_img_case>div .cas_nav_box ul>li {
        flex: 1;
        position: relative;
        font-size: 14px;
    }
    .case_body .case_banner .case_img_case>div .cas_nav_box ul>li::before {
        content: '';
        display: block;
        height: 1.2em;
        top: 50%;
        width: 1px;
        position: absolute;
        right: 0;
        margin-left: -.5px;
        margin-top: -.6em;
        background-color: rgba(255, 255, 255, 0.3);
    }
    .case_body .case_banner .case_img_case>div .cas_nav_box ul>li:last-child::before {
        display: none;
    }
    .case_body .case_banner .case_img_case>div .cas_nav_box ul>li a {
        margin: 0;
        width: 100%;
        line-height: 4.285;
        font-size: inherit;
        height: auto;
        padding: 0;
    }
    .case_body .case_banner .case_img_case>div .cas_nav_box ul>li a span {
        position: relative;
        top: auto;
        left: auto;
        display: block;
        transform: none;
    }
    .case_body .case_banner .case_img_case>div .cas_nav_box {
        height: 100%;
        padding-top: 24%;
    }
    .case_list_body .case_list_box {
        height: auto;
        display: block;
    }
    .case_list_body .case_list_box .case_nav_case {
        width: 100%;
    }
    .case_list_body .case_list_box .case_nav_case .case_list_img {
        padding-top: 66.66%;
        position: relative;
        left: 0;
        top: 0;
        height: auto;
        filter: none;
        width: 100%;
    }
    .case_list_body .case_list_box .case_nav_case .case_nav_con_f,
    .case_list_body .case_list_box .case_nav_case .case_nav_con_t {
        position: absolute;
        left: 0;
        width: 100%;
        height: auto;
    }
    .case_list_body .case_list_box .case_nav_case .case_nav_con_f {
        top: 0;
        padding-top: 24%;
        background-color: transparent;
    }
    .case_list_body .case_list_box .case_nav_case .case_nav_con_f ul li {
        display: none;
    }
    .case_list_body .case_list_box .case_nav_case .case_nav_con_f ul li.on {
        display: block;
    }
    .case_list_body .case_list_box .case_nav_case .case_nav_con_f a {
        font-weight: initial;
        line-height: 1;
        margin: 0;
        padding: 0;
        text-align: center;
    }
    .case_list_body .case_list_box .case_nav_case .case_nav_con_f a i {
        display: block;
        position: relative;
        left: auto;
        margin: 0 0 .3rem;
        font-size: .7rem;
        top: auto;
    }
    .case_list_body .case_list_box .case_nav_case .case_nav_con_f a {
        font-size: .64rem;
    }
    .case_list_body .case_list_box .case_nav_case .case_nav_con_t {
        position: absolute;
        bottom: 0;
        left: 0;
        background-color: rgba(0, 0, 0, 0.35);
        text-align: center;
        width: 100%;
        padding: 0;
    }
    .case_list_body .case_list_box .case_nav_case .case_nav_con_t ul {
        display: flex;
        width: 100%;
    }
    .case_list_body .case_list_box .case_nav_case .case_nav_con_t ul li {
        flex: 1;
        font-size: 14px;
        position: relative;
    }
    .case_list_body .case_list_box .case_nav_case .case_nav_con_t ul li::before {
        content: '';
        display: block;
        height: 1.2em;
        top: 50%;
        width: 1px;
        position: absolute;
        left: 0;
        margin-left: -.5px;
        margin-top: -.6em;
        background-color: rgba(255, 255, 255, 0.3);
        z-index: 1;
    }
    .case_list_body .case_list_box .case_nav_case .case_nav_con_t ul li:first-child::before {
        display: none;
    }
    .case_list_body .case_list_box .case_nav_case .case_nav_con_t ul li a {
        padding: 0;
        margin: 0;
        width: 100%;
        line-height: 4.285;
        font-size: inherit;
        height: auto;
        border-radius: 0;
        position: relative;
        z-index: 2;
    }
    .case_list_body .case_list_box .case_nav_case .case_nav_con_t ul li a i {
        display: none;
    }
    .case_list_body .case_list_box .case_nav_case .case_nav_con_t ul li.on a {
        background-color: #008d3b;
    }
    .case_list_body .case_list_box .case_con_case .case_det_box_case {
        display: none;
    }
    .case_list_body .case_list_box .case_con_case {
        width: 90%;
        margin-left: auto;
        margin-right: auto;
        padding: .6rem 0 .4rem;
    }
    .case_list_body .case_list_box .case_con_case .case_det_nav_box .swiper-container {
        width: 100%;
        padding: 0;
        overflow: initial;
    }
    .case_list_body .case_list_box .case_con_case .case_det_nav_box .swiper-button-prev,
    .case_list_body .case_list_box .case_con_case .case_det_nav_box .swiper-button-next {
        display: none;
    }
    .case_list_body .case_list_box .case_con_case .case_det_nav_box .swiper-slide {
        padding: 0;
        margin-bottom: .4rem;
    }
    .case_list_body .case_list_box .case_con_case .case_det_nav_box .swiper-slide:last-child {
        margin-bottom: 0;
    }
    .case_list_body .case_list_box .case_con_case .case_det_nav_box .case_nav_name {
        font-size: .5rem;
        font-weight: 700;
        color: #fff;
        text-align: center;
        margin-top: 0;
    }
    .case_list_body .case_list_box .c_bc {
        border-radius: .24rem;
        overflow: hidden;
        position: relative;
        box-shadow: 0 20px 55px rgba(0, 0, 0, 0.1);
    }
    .case_list_body .case_list_box .c_bc .case_nav_name {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 90%;
    }
    .case_list_body .case_list_box .m_sty {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: .26rem 0 .36rem;
    }
    .case_list_body .case_list_box .m_sty>div:first-child {
        width: 51%;
        font-size: .28rem;
        line-height: 1.5;
    }
    .case_list_body .case_list_box .m_sty>div.btn_sty {
        padding: 0 .25rem;
        background-color: #e7f3eb;
        font-size: 14px;
        border-radius: .5rem;
        line-height: 2.5;
        text-align: center;
        color: #00449b;
    }
    .case_list_body .case_list_box .case_nav_case .case_nav_con_f ul>a {
        display: block;
        color: #fff;
    }
    .case_list_body .case_list_box .case_nav_case .case_nav_con_f ul {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .case_det_nav_box .swiper-wrapper {
        display: block;
    }
    .case_hf {
        display: block;
    }
    .case_det_body .case_det_con_box .pub_case {
        width: 100%;
        display: block;
    }
    .case_det_body .case_det_con_box .pub_case .case_d_img_box {
        width: 100%;
        margin: 0;
        position: relative;
    }
    .case_det_body .case_det_con_box .pub_case .case_d_img_box .case_d_nav_box {
        position: absolute;
        bottom: 0;
        margin: 0;
        padding: 0 .5rem .3rem;
        width: 100%;
        z-index: 5;
        text-align: right;
    }
    .case_det_body .case_det_con_box .pub_case .case_d_img_box .case_d_con_case>div .swiper-pagination {
        position: absolute;
        bottom: .3rem;
        left: .5rem;
        pointer-events: none;
        width: 100%;
    }
    .case_det_body .case_det_con_box {
        padding-top: 0;
    }
    .case_det_body .case_det_con_box .pub_case .case_d_img_box .case_d_con_case>div .swiper-pagination span {
        background-color: white;
        opacity: .5;
    }
    .case_det_body .case_det_con_box .pub_case .case_d_img_box .case_d_nav_box>div.on,
    .case_det_body .case_det_con_box .pub_case .case_d_img_box .case_d_nav_box>div:hover {
        background-color: #fff;
        color: #00449b;
    }
    .case_det_body .case_det_con_box .pub_case .case_d_img_box .case_d_nav_box>div {
        background-color: rgba(0, 0, 0, 0.5);
        color: #fff;
        font-size: 12px;
        line-height: 2.272;
    }
    .btn_radius {
        display: none;
    }
    .case_det_body .case_det_con_box .pub_case .case_d_info_box {
        width: 90%;
        padding-top: .5rem;
        margin-right: auto;
        margin-left: auto;
    }
    .pub_info,
    .pub_right_con_box .pub_info,
    .pro_det_body .pro_td_box>div .pro_td_info,
    .pro_det_body .pro_case_show>div .pro_show_name {
        font-size: 16px;
    }
    .pub_title_s {
        font-size: 18px;
    }
    .case_det_body .case_det_con_box .pub_case .case_d_info_box .pub_line {
        margin-top: .4rem;
    }
    .case_det_body .case_det_con_box .pub_case .case_d_info_box .case_pro_box .case_pro_list_box {
        height: auto;
        overflow-y: initial;
        padding-right: 0;
    }
    .case_det_body .case_det_con_box .pub_case .case_d_info_box .case_pro_box .case_pro_list_box a .pro_d_text>div {
        font-size: 18px;
        font-weight: 700;
    }
    .case_det_body .case_det_con_box .pub_case .case_d_info_box .case_pro_box .case_pro_list_box a .pro_d_text>div:nth-child(1) {
        color: #00449b;
        font-size: 22px;
        font-family: 'DIN-BOLD_0';
        margin-bottom: .1rem;
    }
    .case_det_body .case_det_con_box .pub_case .case_d_info_box .case_pro_box {
        border-radius: .24rem;
        box-shadow: 0 12px 55px rgba(0, 55, 54, 0.08);
        padding-right: .54rem;
    }
    .pub_case {
        width: 90%;
    }
    .pro_det_body .pub_case {
        padding-left: 0;
        padding-right: 0;
    }
    .pro_det_body .pro_banner_box .swiper-slide .pro_ban_box .pro_ban_tex_box .pro_ban_tex {
        font-size: .32rem;
        padding-top: 5%;
    }
    .pub_right_con_box {
        width: 100%;
        margin-left: 0;
        padding-left: 0;
    }
    .pub_left_con_box {
        display: none;
    }
    .pro_det_body .pro_td_box>div .pro_td_num {
        font-size: 14px;
    }
    .pro_det_body .pro_banner_box .nav_hint_box {
        display: none;
    }
    .pro_det_body .pro_table_box table {
        font-size: 16px;
    }
    .case_list_body .case_list_box .case_con_case .case_det_nav_box .case_nav_thumb::after {
        content: '';
        display: block;
        width: 100%;
        height: 100%;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        background-color: rgba(0, 0, 0, 0.3);
        position: absolute;
    }
    .pro_det_body .pro_banner_box .swiper-slide .pro_ban_box .por_ban_img_box::before {
        margin-top: 33vh;
    }
    .pro_det_body .pro_banner_box .swiper-slide .pro_ban_box .pro_ban_tex_box {
        transform: translate(-50%, 50%);
        bottom: 50%;
    }
    .pro_det_body .pro_banner_box .swiper-slide .pro_ban_box {
        padding-bottom: 0;
    }
    .case_det_body .case_det_con_box .pub_case .case_d_img_box .case_d_con_case>div.picture_box .swiper-slide::before {
        margin-top: 66.66%;
    }
    .pro_det_body .pro_banner_box svg {
        display: block;
        height: .8rem;
    }
    .m_link {
        display: block;
        cursor: pointer;
    }
}

@media all and (max-width: 640px) {
    .case_body .case_banner .case_img_case>div .cas_nav_box>div,
    .case_list_body .case_list_box .case_nav_case .case_nav_con_f a {
        font-size: .39rem !important;
    }
    .case_body .case_banner .case_img_case>div .cas_nav_box>i,
    .case_list_body .case_list_box .case_nav_case .case_nav_con_f a i {
        font-size: .5rem;
        margin-bottom: .15rem;
    }
    .case_list_body .case_list_box .case_con_case .case_det_nav_box .case_nav_name {
        font-size: .34rem;
    }
    .case_list_body .case_list_box .m_sty>div.btn_sty {
        font-size: 10px;
    }
    .case_list_body .case_list_box .m_sty>div:first-child {
        font-size: 12px;
    }
    .pub_info,
    .pub_right_con_box .pub_info,
    .pro_det_body .pro_td_box>div .pro_td_info,
    .pro_det_body .pro_case_show>div .pro_show_name {
        font-size: 14px;
    }
    .pub_title_s {
        font-size: 14px;
    }
    .case_det_body .case_det_con_box .pub_case .case_d_info_box .case_pro_box .case_pro_list_box a .pro_d_text>div {
        font-size: 14px;
    }
    .case_det_body .case_det_con_box .pub_case .case_d_info_box .case_pro_box .case_pro_list_box a .pro_d_text>div:nth-child(1) {
        font-size: 16px;
    }
    .pro_det_body .pro_case_show>div,
    .pro_det_body .pro_td_box>div {
        width: calc((100% - 10px) / 2);
    }
    .pro_det_body .pro_case_show>div:nth-child(3n),
    .pro_det_body .pro_td_box>div:nth-child(3n) {
        margin-right: 10px;
    }
    .pro_det_body .pro_case_show>div:nth-child(2n),
    .pro_det_body .pro_td_box>div:nth-child(2n) {
        margin-right: 0;
    }
    .pro_det_body .pro_td_box>div .pro_td_num {
        font-size: 12px;
    }
    .pro_det_body .pro_banner_box .swiper-slide .pro_ban_box .pro_ban_tex_box .pro_ban_tex {
        font-size: .3rem;
        padding-left: 0;
    }
    .pro_det_body .pro_table_box table {
        font-size: 14px;
    }
    .pub_title {
        font-size: .42rem;
    }
    .pro_det_body .pro_banner_box .swiper-slide .pro_ban_box .pro_ban_tex_box {
        width: 100%;
        padding-right: 5%;
    }
    .pro_det_body .pro_banner_box .swiper-slide.active .pro_ban_box .pro_ban_tex_box .pro_ban_tex {
        padding-left: .2rem;
    }
}


/*# sourceMappingURL=public.css.map */