@charset "UTF-8";
html, body {
    margin: 0 !important;
    padding: 0 !important;
    width: 100vw;
    height: 100vh;
    position: relative;
    -webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	scrollbar-color: #9da0b3 #f0f0e1;
	scrollbar-width: thin
}

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video, input, textarea {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	scrollbar-color: #9da0b3 #f0f0e1;
	scrollbar-width: thin
}

body {
    overflow-x: hidden;
    font: 12px/2 Microsoft YaHei,arial,宋体,sans-serif;
}

@media (max-width: 768px) {
    body {
        font: 10px/2 '微软雅黑 Regular', '微软雅黑';
    }
}

ul {
    padding: 0;
    margin: 0;
}

ul li {
    list-style: none;
}

a {
    color: #55595C;
    text-decoration: none;
}

h1, h2, h3, h4, h5 {
    margin: 0;
}

a:focus,
a:hover {
    color: #55595C;
    text-decoration: none;
}

a:focus {
    outline: none;
    outline-offset: -2px;
}

img, embed, video {
    max-width: 100%;
}

.app-main {
    position: fixed;
    width: calc(100% - 3em);
    height: 90%;
    max-width: 1680px;
    margin: 0 auto;
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 20px;
    display: flex;
    background: #fff;
    overflow: hidden;
    opacity: 0.9;
}

#app {
    width: 100%;
    height: 100%;
    position: absolute;
}

/* nav */
.nav {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    width: 10%;
    background: #364cc6;
    border-radius: 30px;
    margin: 1.5em;
    color: #fff;
    position: sticky;
    position: -webkit-sticky;
    top: 2em;
}

.nav .logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 2em;
}

.nav .logo img {
    display: block;
    width: 72px;
    height: 72px;
    margin-bottom: 5px;
    border-radius: 18px;
}

.nav .menu {
    display: flex;
    flex-grow: 1;
    margin-top: 3em;
    flex-direction: column;
    align-items: center;
}

.nav .menu li a {
    display: flex;
    width: 5em;
    height: 5em;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: rgba(255,255,255,.06);
    border-radius: 22px;
    margin-bottom: 1.2em;
    font-size: 1.2em;
    color: #fff;
    transition: all ease 0.6s;
}

.nav .menu li a:hover {
    background: rgba(255,255,255, 0.8);
    color: #364cc6;
}

.nav .wx-code {
    display: flex;
    align-items: center;
    align-self: center;
    flex-direction: column;
    font-size: 13px;
    font-weight: 300;
    margin-bottom: 20px;
    position: relative;
}
.nav .wx-code .wx-code-img {
    width: 128px;
    height: 128px;
    max-width: 128px;
    position: absolute;
    bottom: 108%;
    border-radius: 8px;
    pointer-events: none;
    opacity: 0;
    transform: translateY(20px);
    transition: transform .25s ease, opacity .25s ease;
}

@media (max-width: 768px) {
    .nav {
        flex-direction: flex-grow;
    }
}


/* content */
.main {
    flex-grow: 1;
    margin: 24px 10px;
    padding: 0 30px;
    display: flex;
    flex-direction: column;
    min-width: 380px;
    overflow: hidden;
    overflow-y: scroll;
}

.aside {
    width: 22%;
    padding: 0 2em;
    box-sizing: border-box;
    background: #fff;
    box-shadow: 0 0 50px 0 rgba(0,0,0,.06);
    flex-shrink: 0;
    border-radius: 2em;
    max-height: 100vh;
    position: sticky;
    position: -webkit-sticky;
    top: 2em;
    overflow-y: auto;
}

::-webkit-scrollbar {
    width:6px;
    height:6px
}
::-webkit-scrollbar-thumb {
    background:#9da0b3;
    border-radius:3px
}
::-webkit-scrollbar-track {
    background:#f0f0e1;
    border-radius:3px
}

.aside .latest-article {
   margin: 20px 0;
   height: calc(100% - 40px);
   overflow: hidden;
   overflow-y: scroll;
}

.aside .latest-article .title {
     font-size: 1.3em;
    font-weight: bold;
    color: #000000;
}

.aside .latest-article ul li {
    position: relative;
    margin-bottom: 10px;
    height: 120px;
    overflow: hidden;
}

.aside .latest-article ul li .img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.aside .latest-article ul li .cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    color: #fff;
    vertical-align: bottom;
}
.aside .latest-article ul li .cover h2 {
    font-size: 1em;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin: 10px;
    line-height: 1.5em;
    position: absolute;
    bottom: 0px;
}

/* news */
.news {
    padding: 4% 0;
    background: #f9f9f9;
}
.news .title {
    margin-top: 2%;
    margin-bottom: 2%;
    text-align: center;
}

@media (max-width: 768px) {
    .news .title {
        text-align: center;
    }
}

.news .title h2 {
    font-size: 2em;
    font-weight: 600;
    margin-bottom: 15px;
}

.news .title p {
    font-size: 1.2em;
}
.news .content .img {
    box-shadow: 0 0 5px #ccc;
    margin-bottom: 10px;
}
.news .news-list ul {
    display: flex;
    flex-wrap: wrap;
}
.news .news-list li {
    line-height: 50px;
}
.news .news-list li a {
    display: block;
}

.news .news-list li .detail {
    width: 100%;
    font-size: 1.2em;
    color: #000000;
    font-weight: bold;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.news .news-list li .summary{
    font-size: 1em;
}
.news .news-list li .time {
    float: right;
    width: 100px;
    text-align: right;
}

/* footer */
.footer {
    background: #55595C;
    color: #fff;
}

.footer .footer-content {
    margin-top: 5%;
    margin-bottom: 5%;
}
.footer .footer-content .logo {
    width: 30%;
    float: left;
}

.footer .footer-content .sitemap {
     margin-top: 5%;
 }
.footer .footer-content .sitemap a {
    color: #fff;
}

.footer .footer-content .region a {
    color: #fff;
    margin-right: 10px;
}

.footer .footer-content .link {
    margin-top: 2%;
}

.footer .footer-content .link a {
    color: #fff;
}

.footer .footer-content .footer-nav {
    width: 68%;
    float: right;
}

.footer .footer-content .footer-nav li {
    display: inline-block;
    padding: 2% 3%;
}
.footer .footer-content .footer-nav li a {
    font-size: 1.2em;
    color: #fff;
}

.footer .footer-content .right dl dt {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: normal;
}

.copyright {
    background: #55595C;
    color: #fff;
    padding: 10px 0;
    line-height: 40px;
    border-top: 1px solid #65696C;
    text-align: center;
}
.copyright a {
    color: #fff;
}


/* 内页 */
.inner {
    margin-top: 2%;
    margin-bottom: 2%;
}

.inner .inner-list li {
    margin-bottom: 10px;
}
.inner .inner-list li a {
    display: block;
}
.inner .inner-list li .img {
    overflow: hidden;
    border: 1px solid #eee;
}

.inner .inner-list li .img img {
    transition: all .3s ease-in-out;
}

.inner .inner-list li a h2 {
    font-size: 1.2em;
    line-height: 2em;
    color: #000;
    margin: 15px auto;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.inner .inner-list li:hover .img img {
    transform: scale(1.1)
}

.inner .inner-news-list a h2 {
    text-align: left !important;
}
.inner .inner-news-list li:first-child a {
    border-top: 1px solid #ccc;
}
.inner .inner-news-list li a {
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
}
.inner .inner-news-list li a .content {
    margin: 10px auto;
    color: #ccc;
    font-size: 1em;
}


/* 产品详情 */
.product-detail .intro h2 {
    font-size: 1.6em;
    margin-bottom: 10px;
    font-weight: bold;
}
.product-detail .intro .summary {
    font-size: 1em;
    color: #999;
}
.product-detail .intro .content {
    font-size: 1em;
    margin-top: 10px;
    color: #666;
}

.product-detail .intro .content .cate h2 {
    font-size: 1em;
    display: inline-block;
}
.product-detail .intro .content .inquiry {
    display: block;
    width: 120px;
    height: 40px;
    margin-top: 20px;
    text-align: center;
    line-height: 40px;
    color: #ffffff;
    border-radius: 20px;
    background: #27a8e1;
}
.product-detail .content {
    margin-top: 2%;
}
.product-detail .content h3 {
    font-size: 1.2em;
    font-weight: bold;
    padding: 10px;
    border-bottom: 1px solid #ccc;
}
.product-detail .content .detail {
    padding: 20px 5px;
    font-size: 14px;
}

@media (max-width: 768px) {
    .product-detail .intro .intro-detail {
        margin-top: 20px;
    }
}

/* 新闻详情 */
.news-detail h2 {
    font-size: 1.6em;
    margin-bottom: 10px;
    font-weight: bold;
}

.news-detail .time {
    padding: 10px 0;
    border-bottom: 1px dashed #ccc;
}

.news-detail .content {
    margin: 20px 0;
    padding: 0 5px;
}

/* 案例详情 */
.case-detail h2 {
    font-size: 1.6em;
    margin-bottom: 10px;
    font-weight: bold;
    text-align: center;
}

.case-detail .time {
    padding: 10px 0;
    border-bottom: 1px dashed #ccc;
    text-align: center;
}
.case-detail .content .imgs {
    margin: 0 auto;
    text-align: center;
}
.case-detail .content {
    margin: 20px 0;
    padding: 0 5px;
}

/* 单页详情 */
.page-detail h2 {
    font-size: 1.6em;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-detail .time {
    padding: 10px 0;
    border-bottom: 1px dashed #ccc;
}

.page-detail .content {
    margin: 20px 0;
    padding: 0 5px;
}

/* 上一篇、下一篇 */
.prev-next {
    margin: 20px auto;
    font-size: 14px;
}

.prev-next .prev{
    width: 48%;
    float: left;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin: 10px 0;
}
.prev-next .next{
    width: 48%;
    float: right;
    text-align: right;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin: 10px 0;
}

.prev-next .prev b ,.prev-next .next b{
    background: #666;
    padding: 5px;
    color: #fff;
    font-size: 1em;
    font-weight: normal;
}

@media (max-width: 768px) {
    .prev-next .prev{
        width: 100%;
        float: none;
    }
    .prev-next .next{
        width: 100%;
        float: none;
        text-align: left;
    }
}

/* 面包屑 */
.breadcrumb span {
    color: #55595C;
}

/** 在线留言 **/
.message-form {
    margin: 0 auto;
}

@media (min-width: 768px) {
    .message-form {
        width: 70%;
    }
}

@media (min-width: 1200px) {
    .message-form {
        width: 50%;
    }

}

.message-form .title {
    margin: 15px 0;
    text-align: center;
}

.message-form .title h3 {
    font-size: 1.6em;
    color: #333333;
    margin-bottom: 15px;
    font-weight: bold;
}

.message-form .title p {
    font-size: 1em;
    color: #55595C;
}

.message-form #code {
    width: calc(100% - 180px);
    margin-right: 20px;
}

.message-form .code-img img {
    width: 160px;
    height: 40px;
}

.message-form .form-input {
    display: block;
    width: 100%;
    float: left;
    height: 40px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
    -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}
.message-form textarea.form-input {
    height: 200px;
    resize: none;
}
.message-form .btn {
    width: 30%;
    height: 3em;
    border-radius: 2.5em;
    font-size: 1em;
    background: #fff;
    border:none;
    color: #55595C;
    margin-top: 20px;
}

.message-form .btn-reset {
    background: #F6F7F7;
}

.message-form .btn-reset:hover {
    background: #eee;
}

.message-form .btn-submit {
    background: #3DA0D7;
    color: #fff;
    margin-right: 15px;
}

.message-form .btn-submit:hover {
    background: #207CBB;
}

/* 在线客服 */
.online-service {
    position: fixed;
    top: 50%;
    right: -20px;
    width: 60px;
    z-index: 999;
    color: #999;
    transform: translate(-50%, 0);
}
.online-service dl {
    background: #27a8e1;
    padding: 10px 5px;
    margin-bottom: 1px;
    position: relative;
}
.online-service dl dt {
    position: absolute;
    top: 0px;
    right: 60px;
    background: #fff;
    border: 1px solid #ccc;
    z-index: 9999;
    display: none;
    padding: 10px 15px;
    font-weight: normal;
}

.online-service dl p {
    margin: 5px 0;
}

.online-service dl dt button {
    margin: 10px 0;
    border: none;
    border-radius: 5px;
    width: 100%;
    font-size: 18px;
    height: 40px;
    line-height: 40px;
    background: #28a7e1;
    color: #fff;
    cursor: pointer;
}

.online-service dl dt h3 {
    display: block;
    font-size: 16px;
    color: #666;
    border-bottom: 1px solid #ccc;
    padding-bottom: 5px;
}

.online-service dl dt h3 span {
    float: right;
    cursor: pointer;
}

.online-service dl dd {
    color: #fff;
    text-align: center;
    font-size: 12px;
    cursor: pointer;
}

.online-service dl dd  img {
    width: 25px;
    margin-bottom: 5px;
}


/* 推荐产品 */
.recommend-product {
    margin: 5% -12px 0px 0px;
}

.recommend-product .title {
    font-size: 20px;
    font-weight: bold;
    color: #0C0C0C;
    margin-bottom: 10px;
}

.recommend-product .content .owl-carousel {
    position: relative;
}

.recommend-product .content ul li {
    width: calc(100% - 12px);
    margin-right: 12px;
}

.recommend-product .content ul li .img {
    width: 100%;
    border: 1px solid #eee;
}

.recommend-product .content ul li .text h2 {
    text-align: center;
    font-size: 14px;
    margin: 10px 0;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
/* 网站地图 */
.map-item dt {
    height: 40px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px dashed #ccc;
    text-indent: 20px;
    color: #666;
}
.map-item dt h3 {
    font-size: 16px;
    font-weight: normal;
    line-height: 40px;
}
.map-item dd {
    margin-top: 10px;
}
.map-item dd h3 {
    font-size: 14px;
    line-height: 40px;
    text-indent: 10px;
    color: #666;
}
.map-item dd .list {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px dashed #ccc;
}
.map-item dd .list a {
    padding: 10px;
    white-space: nowrap;
    font-size: 14px;
    text-indent: 20px;
    color: #999;
    display: block;
}


/* 多图切换 */
.multi-images .big-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    border: 1px solid #eee;
    text-align: center;
    vertical-align: center;
}
.multi-images .bx-wrapper {
    margin: 0 auto;
    position: relative;
}

.multi-images .bx-controls-direction a {
    display: block;
    position: absolute;
    top: 9px;
    height: 47px;
    width: 16px;
    border: 1px solid #ddd;
    overflow: hidden;
    background-color: #fff;
    font-size: 13px;
    color: #999;
    line-height: 47px;
    text-decoration: none;
    text-align: center;
}

.multi-images .bx-controls-direction a:hover {
    border-color: #c03;
    background-color: #c03;
    color: #fff;
}

.multi-images .bx-controls-direction .disabled {
    cursor:default;
}

.multi-images .bx-controls-direction .disabled:hover {
    border-color: #ddd;
    background-color: #fff;
    color: #999;
}

.multi-images .bx-controls-direction .bx-prev {
    left: -20px;
}
.multi-images .bx-controls-direction .bx-next {
    right: -20px;
}

.multi-images .bx-viewport {
    height: 60px !important;
}
.multi-images .big-image img {
    max-width: 100%;
    height: 100%;
}

.multi-images .small-image {
    margin-top: 10px;
    padding: 0 25px;
    position: relative;
}

.multi-images .small-image .item {
    padding: 2px;
}

.multi-images .small-image .item img {
    width: 70px;
    height: 40px;
}
.multi-images .small-image .cur {
    border: 1px solid #888;
}

/* message-frame */
.index-message {
    padding: 4% 0;
}
.index-message .title {
    margin-top: 2%;
    margin-bottom: 2%;
    text-align: center;
}
.index-message .title h2 {
    font-size: 2em;
    font-weight: 600;
    margin-bottom: 15px;
}

.index-message .title p {
    font-size: 1.2em;
}

.message-frame {
    width: 100%;
}

.message-frame .message-frame-form .form-input {
    display: block;
    width: 100%;
    float: left;
    height: 40px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 2px solid #27a8e1;
    border-left: 5px solid #27a8e1;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgb(255 196 76 / 8%);
    box-shadow: inset 0 1px 1px rgb(255 196 76 / 8%);
    -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    outline-color: #27a8e1;
}

.message-frame .message-frame-form textarea.form-input {
    height: 120px;
    resize: none;
}

.message-frame .message-frame-form .btn {
    width: 100%;
    height: 3em;
    border-radius: 2.5em;
    font-size: 1em;
    background: #27a8e1;
    border: none;
    color: #ffffff;
    margin-top: 10px;
}

.icp {
    position: fixed;
    width: calc(100% - 3em);
    height: 40px;
    line-height: 40px;
    max-width: 1680px;
    margin: 0 auto;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 20px;
    background: #888;
    color: #fff;
    overflow: hidden;
    opacity: 0.9;
    margin: 0 auto;
    text-align: center;
    display: none;
}
.icp a { 
    color: #fff;
}
