<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.product_banner {
    width: 100%;
    height: 460px;
    margin-top: 90px;
}

.copy_right_wrap a{
    text-decoration: none;
    color: #fff
}
.tips_wrap {
    width: 100%;
    height: 0.4rem;
    background: #f7f7f7;
}

.tips_wrap .tips {
    width: 12rem;
    margin: 0 auto;
    font-size: 0.14rem;
    color: #B7B7B7;
    height: 0.4rem;
    line-height: 0.4rem;
}

.product_banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product_main {
    width: 100%;

    padding: 0.4rem 0;
    min-height: 500px;
}

.section_title {
    /* margin-top: 1rem; */
    text-align: center;
    width: 9rem;
    margin: 0 auto;
    font-size: 0.2rem;
    color: #0094E5;
}

.section_title .subtitle {
    color: #747474;
    font-size: 0.14rem;
    margin-top: 3px;
}

.line_wrap {
    width: 2.4rem;
    margin: 0 auto;
    height: 0.2rem;
}

.section_title .line {
    width: 1rem;
    height: 1px;
    background: #0094e5;
    margin-top: 0.05rem;
}

.section_title .blue_dot {
    width: 0.1rem;
    height: 0.1rem;
    background: #0094E5;
    margin: 0 auto;
    transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    /* IE 9 */
    -moz-transform: rotate(45deg);
    /* Firefox */
    -webkit-transform: rotate(45deg);
    /* Safari å’Œ Chrome */
    -o-transform: rotate(45deg);
}

.tabs_btn_wrap {
    text-align: center;
}

.tabs_btn_wrap button {
    width: 1.68rem;
    height: 0.5rem;
    color: #999999;
    font-size: 0.18rem;
    background: #fff;
    border: 1px solid rgba(234, 234, 234, 1);
    border-radius: 5px;
    outline: none;
}

.tabs_btn_wrap button:nth-child(2) {
    margin: 0 0.5rem;
}

.tabs_btn_wrap button.active {
    color: #fff;
    background: #0094E5;
    border-color: #0094E5;
}

.pageination_align {
    text-align: center
}

.pageination {
    color: #48576a;
    font-size: 12px;
    display: inline-block;
    user-select: none;
}

.pagination_page {
    padding: 0 4px;
    border: 1px solid #d1dbe5;
    border-right: 0;
    background: #fff;
    font-size: 13px;
    min-width: 28px;
    height: 28px;
    line-height: 28px;
    cursor: pointer;
    box-sizing: border-box;
    text-align: center;
    float: left;
}

.pagination_page_right {
    border-right: 1px solid #d1dbe5;
}

.pagination_page:hover {
    color: #0094E5;
}

.disabled {
    color: #e4e4e4 !important;
    background-color: #fff;
    cursor: not-allowed;
}

.pagination_page_active {
    border-color: #0094E5;
    background-color: #0094E5;
    color: #fff !important;
;
    cursor: default;
}

.brief {
    margin-top: 0.3rem;
    color: #333333;
    font-size: 0.16rem;
}
.brief img {
    width: 12rem;
    margin: 0 auto;
    margin-top: 0.3rem;
    margin-bottom: 0.3rem;
}

.brief .brief_img {
    width: 12rem;
    margin: 0 auto;
    height: 5.33rem;
}

.brief .brief_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.brief p,
.brief div {
    color: #333333;
    font-size: 0.16rem;
    text-align: justify;
    line-height: 2;
}

.brief .brief_text {
    width: 12rem;
    margin: 0 auto;
    text-indent: 0.4rem;
    color: #333333;
    font-size: 0.16rem;
    text-align: justify;
    line-height: 1.5;
    margin-top: 0.3rem;
    margin-bottom: 0.1rem;
}
.brief .brief_text span{
     vertical-align: super;
     font-size: 10px;
}

.enterprise_qualification {
    width: 12rem;
    margin: 0 auto;
    font-size: 0.16rem;
    margin-top: 0.4rem;
}

.enterprise_qualification .item {
    width: 3.9rem;
    height: 3.9rem;
    margin-right: 0.15rem;
    margin-bottom: 0.15rem;
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(234, 234, 234, 1);
    cursor: pointer;
    position: relative;
}

.enterprise_qualification .item .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #000;
    opacity: 0;
}

.enterprise_qualification .item:nth-child(3n) {
    margin-right: 0;
}

.enterprise_qualification .item .img {
    width: 100%;
    height: 3.4rem;
    overflow: hidden;
}

.enterprise_qualification .item .name {
    width: 100%;
    height: 0.5rem;
    line-height: 0.5rem;
    text-align: center;
    background: rgba(234, 234, 234, 1);
    color: #333333;
}

.enterprise_qualification .item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.enterprise_qualification .img.onmouseover img {
    animation: enlarge 0.5s;
    -webkit-animation: enlarge 0.5s; /* Safari and Chrome */
    animation-fill-mode: forwards;
}
.enterprise_qualification .item img.onmouseleave {
    animation: smaller 0.5s;
    -webkit-animation: smaller 0.5s;
    animation-fill-mode: forwards;
}
@keyframes enlarge {
        from {
          transform: scale(1);
        }
        to {
          transform: scale(1.2);
        }
      }

      @-webkit-keyframes enlarge /* Safari ä¸Ž Chrome */ {
        from {
          transform: scale(1);
        }
        to {
          transform: scale(1.2);
        }
      }
      @keyframes smaller {
        from {
          transform: scale(1.2);
        }
        to {
          transform: scale(1);
        }
      }

      @-webkit-keyframes smaller /* Safari ä¸Ž Chrome */ {
        from {
          transform: scale(1.2);
        }
        to {
          transform: scale(1);
        }
      }

.enlargeImg_wrapper {
    display: none;
    position: fixed;
    z-index: 999;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-color: rgba(52, 52, 52, 0.8);
    background-size: 50%;
}

img:hover {
    cursor: zoom-in;
}

.enlargeImg_wrapper:hover {
    cursor: zoom-out;
}

.news_title ,.news_time {
    width: 12rem;
    margin: 0 auto;
    font-size: 0.14rem;
}
.news_title {
    font-size: 0.18rem;
    color: #202020;
    margin-bottom: 0.2rem;
}
.news_time span,
.news_time span i{
    font-size: 0.14rem;
    color: #999999;
    margin-right: 0.1rem;
}
.news_time .left {
    margin-right: 1rem;
}
.news_time span i {
    color: #0094E5;
}
</pre></body></html>