:root {
    --primary-color: #17AD91;
    --text-color-darker: #23313A;
    --text-color-dark: #787F85;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-weight: 400;
    line-height: 1.2;
}

html,
body {
    height: 100%;
    font-size: 14px;
    font-family: PingFangSC, Roboto, Helvetica Neue, Helvetica, Tahoma,
        Arial, Microsoft YaHei, SimSun, sans-serif;
}

li {
    list-style: none;
}

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


img {
    width: 100%;
    height: 100%;
}


/* 通用样式 */
.content-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
  }
  
  section {
    display: grid;
    justify-items: center;
    /* max-width: 1200px;
    padding: 0 80px; */
  }

.warp {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.flex-col {
    display: flex;
    flex-direction: column;
}

.flex-row {
    display: flex;
    flex-direction: row;
}

.justify-start {
    justify-content: flex-start;
}

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

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

.justify-evenly {
    justify-content: space-evenly;
}

.justify-around {
    justify-content: space-around;
}

.justify-between {
    justify-content: space-between;
}

.align-start {
    align-items: flex-start;
}

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

.align-end {
    align-items: flex-end;
}

/* 导航 */
header.sticky{
    position: fixed;
    top: 0;
    z-index: 999;
    width: 100%;
    background: white;
    box-shadow: 0 1px 10px 6px rgba(10, 10, 10, 0.1);
}

header .stock {
    background-color: #0B2538;
}

header .stock>div {
    color: #97B1C3;
    font-size: 16px;
    height: 40px;
}

header .stock .sh {
    color: #FB3526;
    margin: 0 1px 0 10px;
}

header .stock .code {
    color: #97B1C3;
    margin-right: 40px;
} 

header .stock .price {
    margin-left: 10px;
}

header .stock .time {
    color: #97B1C3;
    font-size: 14px;
    margin-left: 40px;
}

header .stock span {
    color: #97B1C3;
}

header .logo {
    flex: 1;
}

header .logo img {
    width: 100%;
    height: 100%;
}

header .nav {
    height: 90px;
    /* padding: 0 40px; */
}

header .burger {
    display: none;
}

header .nav nav {
    flex: 4;
    padding-left: 80px;
    height: inherit;
}

header .nav nav>ul {
    width: 100%;
    height: inherit;
}

header .nav nav>ul>li {
    position: relative;
    height: inherit;
    display: flex;
    align-items: center;
}


header .nav nav ul>li.active>a {
    color: var(--primary-color);
}

header .nav nav ul>li>a {
    color: #666666;
    display: inline-block;
    width: max-content;
    font-size: 16px;

}

header .nav nav .ul {
    display: none;
    position: absolute;
    left: 50%;
    top: 90px;
    z-index: 9;
    background-color: #0E3149;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

header .nav nav .ul li {
    width: 100%;
    height: 50px;
}

header .nav nav .ul li a {
    display: block;
    width: max-content;
    height: 100%;
    color: white;
    padding: 0 20px;
    line-height: 50px;
}

header #navv .ul>li.active {
    background-color: var(--primary-color);
}

header #navv .ul>li.active>a {
    color: white;
}

header .nav nav>ul>li::after{
    display: block;
    content: "";
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    position: absolute;
    left:0;
    bottom:20px;
    transform: scaleX(0);
    transition:all 0.3s;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    -webkit-transition:all 0.3s;
    -moz-transition:all 0.3s;
    -ms-transition:all 0.3s;
    -o-transition:all 0.3s;
}

header .nav nav>ul>li.active>a{
    color: var(--primary-color);
}
header .nav nav>ul>li.active::after{
    transform: scaleX(1);
}

/* banner */
.banner img{
    width: 100%;
    /* height: 400px; */
}
/* 面包屑 */
section#main nav ol {
    padding: 10px;
    color: #757575;
    border-bottom: 1px solid #f2f2f2;
}
section#main nav ol li a {
    color: #787F85;
}
section#main nav ol li::after {
    display: inline-block;
    content: '';
    height: 16px;
    width: 16px;
    background: url("/images/svg/arrow.svg") no-repeat center center;
    margin: 0 1em;
}
section#main nav ol li:last-child::after{
    display: none;
}

/* 标题 */
.article-title {
    margin: 30px 10px;
}
.article-title img{
    width: 50px;
    height: 50px;
    margin-right: 10px;
}
.article-title h2{
    color: #23313A;
    font-size: 20px;
}

.article-title p {
    color: #10B098;
    font-size: 12px;
    text-indent: 4ch;
    margin-top: 4px;
}

article .dl {
    margin: 12px;
}

article .dl dt {
    color: var(--text-color-darker);
    font-size: 16px;
}
article .dl dt .logo{
    color: var(--primary-color);
    font-size: 22px;
    margin-right: 12px;
}

article .dl dd, article .dl p {
    color: var(--text-color-dark);
    margin: 10px 0;
    line-height: 2;
    font-weight: 300;
}

article .dl .bg-title-arrow {
    display: inline-block;
    width: 40px !important;
    margin-right: 20px;
}
/* 底部 */
footer {
    position: relative;
}


footer .box-1 {
    height: 100px;
    color: white;
    background-color: #0B2538;
}

footer .box-1.white{
    background-color: white;
}

footer .box-1.white a {
    color: #666666;
}

footer .box-1.white .stock {
    color: #23313A;
}

footer .box-1.white .p2 span {
    background-color: #FFEEEC;
}

footer .box-1 ul {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    column-gap: 10px;
    font-size: 16px;
    margin-right: 60px;
}

footer .box-1 .stock {
    color: #97B1C3;
    font-weight: 300;
    /* background-color: #092030; */
} 

footer .box-1 .p1 {
    margin-bottom: 8px;
}

footer .box-1 .p1 > div{
    margin-left: 20px;
}

footer .box-1 .p1 h3{
    letter-spacing: 2px;
}

footer .box-1 .p1 span {
    margin-left: 14px;
}

footer .box-1 .p2 > div{
    margin-right: 20px;
}

footer .box-1 .p2 span{
    color: #FB3526;
    font-size: 12px;
    padding: 2px;
    background-color: #0E3149;
    margin-right: 2px;
}

footer .box-warp {
    height: inherit;
}

footer .box-1 .p2 p {
    font-size: 13px;
}

footer .box-2  {
    width: 100%;
    height: 40px;
    line-height: 40px;
    color: #97B1C3;
    background-color: #0E3149;
}

footer .box-2 strong {
    margin-left: 20px;
}

footer .box-2 span {
    margin-left: 20px;
    display: block;
    color: var(--primary-color);
}

.navigation {
    display: none;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 90;
    width: 100%;
    padding: 10px 20px;
}
.navigation ul, .navigation .close {
    width: 100%;
    background-color: white;
    box-shadow: 0 0 10px 6px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.navigation ul li, .navigation .close  {
    padding: 24px;
    font-size: 18px;
    text-align: center;
}

.navigation .close {
    margin-top: 10px;
}

.navigation ul li:first-child {
    border-bottom: 1px solid #f2f2f2;
}


/* 联系工具 */
.contact-tool {
    display: none;
    position: fixed;
    right: 0;
    top: 50%;
    z-index: 99;
    box-shadow: 0 0 10px 6px rgba(10, 10, 10, 0.1);
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
  }
  
  .contact-tool ul {
    background-color: white;
  }
  
  .contact-tool ul li {
    width: 70px;
    height: 80px;
    text-align: center;
    border-bottom: 1px solid #eee;
    position: relative;
  }

  .contact-tool ul li:first-child{
    border-top: 2px solid var(--primary-color);
  }

  .contact-tool ul li:first-child> img{
    width: 48px;
    height: 48px;
  }
  
  .contact-tool ul li:hover .show-box {
    display: block;
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
  }
  
  .contact-tool ul li>img {
    width: 50px;
    height: 50px;
  }

  .contact-tool ul li img {
    width: 24px;
    height: 24px;
  }
  
  .contact-tool ul li p {
    font-size: 10px;
    margin-top: 4px;
  }
  
  .contact-tool .show-box {
    display: none;
    position: absolute;
    left: -230px;
    top: 0;
    padding: 10px;
    background-color: white;
    box-sizing: border-box;
    box-shadow: 0 0 10px rgba(10, 10, 10, 0.1);
  }
  
  .contact-tool .show-box>img {
    width: 200px;
    height: 200px;
  }
  .contact-tool .sb-1 {
    left: -160px;
    top: 20px;
    padding:0 !important;
  }

  .contact-tool .sb-1>img {
    display: block;
    width: 150px !important;
    height: 52px !important;
  }
  .contact-tool .sb-1 div{
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-55%);
    -webkit-transform: translateY(-55%);
    -moz-transform: translateY(-55%);
    -ms-transform: translateY(-55%);
    -o-transform: translateY(-55%);
}

.contact-tool .sb-1 p {
    font-size: 17px;
}



/* 响应式 */

@media (max-width: 1200px) {
    .warp {
        max-width: 1140px;
    }

    header .nav, .swiper-item .swiper-tip .swiper-tip__box{
        padding: 0 40px;
    }

    header .nav nav ul>li>a {
        font-size: 14px;
    }

    footer .box-1,
    footer .box-2 {
        padding: 0 80px;
    }

    footer .box-1 {
        height: 125px;
    }

    footer .box-1 a {
        font-size: 14px;
    }

    .contact-tool ul li {
        width: 60px;
        height: 72px;
      }
    
      .contact-tool .show-box {
        left: -180px;
        padding: 8px;
      }

      .contact-tool .sb-1 {
        left: -154px;
        top: 10px;
      }

      .contact-tool .sb-1 p {
        font-size: 16px;
      }
    
      .contact-tool .show-box>img {
        width: 160px;
        height: 160px;
      }
}

@media (max-width: 992px) {
    .warp {
        max-width: 960px;
    }
    header .nav nav{
        padding-left: 20px;
    }

    footer .box-1,
    footer .box-2 {
        padding: 0 50px;
    }

    footer .box-1 {
        flex-direction: column;
        align-items: flex-start;
    }

    footer .box-1 ul {
        align-items: center;
    }

    footer .box-1 a, footer .box-1 .stock,footer .box-2 {
        font-size: 12px;
    }

    footer .box-1 .stock {
        margin-bottom: 30px;
    }

}

@media (max-width: 768px) {
    .warp {
        max-width: 720px;
    }

    header .stock>div{
        justify-content: center;
        font-size: 14px;
    }

    header .stock .sh {
        margin: 0 8px;
    }

    header .stock .code {
        margin-right: 10px;
    }
    header .stock .time {
        margin-left: 10px;
    }

    header .nav, .swiper-item .swiper-tip .swiper-tip__box {
        height: 60px;
        padding: 0 20px;
        border-bottom: 1px solid #eee;
    }

    header .logo {
        justify-content: unset;
    }

    header .logo img {
        width: 120px;
    }

    header.open .logo img {
        z-index: 60;
    }

    header #navv {
        display: none;
    }

    header .burger {
        display: block;
        width: 20px;
        height: 6px;
        position: relative;
        justify-self: end;
        cursor: pointer;
    }

    .burger-line1,
    .burger-line2,
    .burger-line3 {
        width: 20px;
        height: 2px;
        background-color: var(--primary-color);
    }

    .burger-line1 {
        position: absolute;
        top: -6px;
    }

    .burger-line3 {
        position: absolute;
        top: 6px;
    }

    header.open .contact-box,
    header .logo-nav-box {
        position: relative;
        z-index: 50;
        padding: 0 20px;
    }

    header.open .burger-line1,
    header.open .burger-line2,
    header.open .burger-line3,
    header.sticky .burger-line1,
    header.sticky .burger-line2,
    header.sticky .burger-line3 {
        background-color: var(--primary-color);
        transition: 0.4s ease;
        -webkit-transition: 0.4s ease;
        -moz-transition: 0.4s ease;
        -ms-transition: 0.4s ease;
        -o-transition: 0.4s ease;
        z-index: 100;
    }

    header.open .burger-line1 {
        transform: rotate(45deg) translate(3px, 5px);
        -webkit-transform: rotate(45deg) translate(3px, 5px);
        -moz-transform: rotate(45deg) translate(3px, 5px);
        -ms-transform: rotate(45deg) translate(3px, 5px);
        -o-transform: rotate(45deg) translate(3px, 5px);
    }

    header.open .burger-line2 {
        opacity: 0;
        transform: translateX(5px);
        -webkit-transform: translateX(5px);
        -moz-transform: translateX(5px);
        -ms-transform: translateX(5px);
        -o-transform: translateX(5px);
    }

    header.open .burger-line3 {
        transform: rotate(-45deg) translate(3px, -5px);
        -webkit-transform: rotate(-45deg) translate(3px, -5px);
        -moz-transform: rotate(-45deg) translate(3px, -5px);
        -ms-transform: rotate(-45deg) translate(3px, -5px);
        -o-transform: rotate(-45deg) translate(3px, -5px);
    }

    header.open #navv {
        display: grid;
        position: fixed;
        left: 0;
        top: 100px;
        z-index: 50;
        width: 100vw;
        max-height: calc(100vh - 100px);
        overflow-y: auto;
        background-color: white;
        grid-auto-rows: max-content;
        opacity: 0;
        animation: slideDown 0.6s ease-in-out forwards;
        -webkit-animation: slideDown 0.6s ease-in-out forwards;
    }

    header .nav nav>ul {
        display: flex;
        flex-direction: column;
        align-items: unset;
        justify-content: unset;
    }

    header .nav nav>ul>li>a{
        border-bottom: 1px solid #eee;
    }

    header .nav #navv ul>li {
        width: 100%;
        height: auto;
        position: unset;
    }

    header .nav #navv ul>li.active {
        height: auto;
    }

    header .nav nav {
        padding: 20px;
    }

    header .nav nav .ul {
        display: grid;
        grid-template-columns: repeat(3,1fr);
        column-gap: 4px;
        row-gap: 4px;
        background-color: white;
        box-shadow: none;
        position: unset;
        transform: unset;
        -webkit-transform: unset;
        -moz-transform: unset;
        -ms-transform: unset;
        -o-transform: unset;
    }


    header .nav nav>ul>li::after{
        display: none;
    }

    header .nav nav>ul>li>a {
        width: 100%;
        display: block;
        height: 50px;
        position: relative;
    }

    header .nav  nav>ul>li.second-level>a::after {
        content: "";
        display: block;
        position: absolute;
        right: 0;
        top: 50%;
        z-index: 99;
        width: 10px;
        height: 10px;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='%23187770'%3E%3Cpath d='M.838 7.41a2.848 2.848 0 000 4.035l13.144 13.144a2.848 2.848 0 004.035 0l13.144-13.144c1.117-1.117 1.117-2.918 0-4.035s-2.918-1.117-4.035 0l-11.14 11.114L4.872 7.41c-1.117-1.084-2.944-1.084-4.035 0z'/%3E%3C/svg%3E");
        background-size: 100%;
        background-position: center;
        background-repeat: no-repeat;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transition: 0.3s all ease;
        -webkit-transition: 0.3s all ease;
        -moz-transition: 0.3s all ease;
        -ms-transition: 0.3s all ease;
        -o-transition: 0.3s all ease;    
    }

    header .nav  nav>ul>li.rotate>a::after {
        transform: rotate(180deg);
        -webkit-transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        -o-transform: rotate(180deg);
    }

    header .nav nav>ul>li {
        display: unset;
    }

    header .nav nav ul>li.active>a {
        border-bottom: 1px solid var(--primary-color);
    }

    header .nav nav ul>li>a,
    header .nav nav .ul li a {
        color: #03182B;
        line-height: 50px;
        font-size: 14px;
    }

    header .nav nav .ul li {
        background-color: #f8f8f8;
    }

    header .nav nav .ul li a {
        width: 100%;
    }

    header .nav #navv ul>li:last-child {
        border: none;
    }

    footer .box-1,
    footer .box-2 {
        padding: 0 20px;
    }

    footer .box-1 {
        height: 100%;
        padding: 20px 20px 0;
}

    footer .box-1 ul {
        width: 100%;
        grid-template-columns: repeat(4, 1fr);
        row-gap: 20px;
    }

    footer .box-1 ul {
        flex: 1.5;
    }

    footer .box-1 .stock {
        margin-top: 30px;
    }

    @keyframes slideDown {
        from {
            height: 0;
            opacity: 0;
        }

        to {
            height: 100vh;
            padding-top: 20px;
            opacity: 1;
        }
    }

    .contact-tool {
        display: none;
    }

    .banner img {
        min-height: 250px;
        object-fit: cover;
    }

    section#main nav ol li {
        font-size: 12px;
    }
    section#main nav ol li::after {
        margin: 0 0.3em;
    }

    .article-title img {
        width: 44px;
        height: 44px;
    }
    .article-title h2 {
        font-size: 16px;
    }
    .article-title p {
        text-indent: 0;
    }

}

@media (max-width: 576px) {
    .warp {
        max-width: 540px;
    }

    header .stock>div{
        justify-content: center;
        font-size: 12px;
    }

    header .stock .sh {
        margin: 0 8px;
    }

    header .stock .code {
        margin-right: 10px;
    }
    header .stock .time {
        font-size: 12px;
        margin-left: 10px;
    }

    footer .box-1 .box-warp {
        flex-direction: column;
        align-items: flex-start;
    }

    footer .box-2 {
        height: auto;
    }

    footer .box-2 .box-warp {
        display:inline-block;
        padding-top: 10px;
    }
    

    footer .box-2 span {
        margin: 4px 0;
    }

}


@media (max-width: 420px) {
    header .stock>div {
        flex-wrap: wrap;
        justify-content: flex-start;
        padding-left: 12px;
    }
    header .stock b{
        display: none;
    }
    header .stock .time {
        margin-left: 8px;
    }
}

@media (max-width: 375px) {
    header .nav nav .ul {
        grid-template-columns: repeat(2,1fr);
    }
}<!--0.00018000602722168-->