﻿@charset "utf-8";

/* CSS Document */

* {
    outline: none;
}


/*主题*/

 :root {
    --head_height: 6rem;
    --colour1: #01a6e8;
    /*苋菜红*/
    --colour2: #ff9f40;
    /*枸杞红*/
    --colour3: #005baa;
    /*高粱红*/
    --dark: #003281;
    --title: #1d1d1d;
    --text: #666;
    --small_text: #999;
    --tips_text: #ccc;
    --grey_bg: #f7f7f7;
    --grey_bg2: #f0f0f0;
    --text-bg: #0081bc;
    --border_colour: #ebebeb;
    --shadow: rgb(40, 43, 109, 0.1);
    --shadow2: rgb(1, 166, 232, 0.4);
    --shadow3: rgb(255, 159, 64, 0.4);
}

body {
    margin: 0px;
    padding: 0px;
    padding-top: var(--head_height);
    background: #fff;
    position: relative;
    letter-spacing: 0.03em;
}

body.no-head-bg {
    padding-top: 0;
}

body.modal-open {
    width: 100vw;
    height: 100vh;
    overflow: hidden !important;
}

body.menu-open {
    width: 100vw;
    height: 100vh;
    overflow-y: hidden !important;
}

body,
html {
    font-family: Arial, "微软雅黑", Microsoft YaHei;
    font-weight: 300;
    font-size: 16px;
    color: var(--text);
}


/*
.font-weight-light {
font-family: 'en', Arial, "微软雅黑", Microsoft YaHei;
font-weight: 300 !important;
}

.font-weight-normal {
font-family: 'en', Arial, "微软雅黑", Microsoft YaHei;
font-weight: 400 !important;
}

.font-weight-medium {
font-family: 'en', Arial, "微软雅黑", Microsoft YaHei;
font-weight: 500 !important;
}

.font-weight-bold {
font-family: 'en', Arial, "微软雅黑", Microsoft YaHei;
font-weight: 700 !important;
}

.font-weight-bolder {
font-family: 'en', Arial, "微软雅黑", Microsoft YaHei;
font-weight: 900 !important;
}
*/

.font-en {
    font-family: 'BdCn';
    font-weight: normal !important;
}

@font-face {
    font-family: 'en';
    src: local('☺'), url(../font/HelveticaNeueLTPro-Lt.otf);
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'en';
    src: local('☺'), url(../font/HelveticaNeueLTPro-Roman.otf);
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'en';
    src: local('☺'), url(../font/HelveticaNeueLTPro-Md.otf);
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'en';
    src: local('☺'), url(../font/HelveticaNeueLTPro-Bd.otf);
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'en';
    src: local('☺'), url(../font/HelveticaNeueLTPro-Hv.otf);
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'BdCn';
    src: local('☺'), url(../font/HelveticaNeueLTPro-BdCn.otf);
    font-weight: normal;
    font-style: normal;
}


/*
@font-face {
font-family: 'HvCn';
src: local('☺'), url(../font/HelveticaNeueLTPro-HvCn.otf);
font-weight: normal;
font-style: normal;
}
*/

a:link {
    color: inherit;
}


/*未访问样式*/

a:hover {
    text-decoration: none;
}

a:focus {
    text-decoration: none;
}

a:hover,
a:focus,
input:hover,
input:focus,
button:focus,
button:hover {
    outline: none;
}

a.text-link {
    text-decoration: underline;
}

a.text-link:hover {
    color: var(--colour1);
}

.title {
    font-weight: 400;
    color: var(--title);
}

.white {
    color: #fff;
}

.colour1 {
    color: var(--colour1)
}

.colour2 {
    color: var(--colour2)
}

.colour-bg1 {
    background-color: var(--colour1)
}

.colour-bg2 {
    background-color: var(--colour2)
}

.colour1-btn {
    color: #fff !important;
    background-color: var(--colour1)
}

.colour1-btn:hover {
    background-color: var(--colour2)
}

.colour-grey-btn {
    color: var(--text) !important;
    background-color: var(--grey_bg)
}

.colour-grey-btn:hover {
    background-color: var(--colour1)
}

.colour-white-btn {
    color: var(--text) !important;
    background-color: #fff;
}

.colour-white-btn:hover {
    background-color: var(--colour1)
}

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

input {
    margin: 0;
    outline: none
}

h1,
.h1 {
    font-size: 3rem;
}

h2,
.h2 {
    font-size: 2.25rem;
}

h3,
.h3 {
    font-size: 2rem;
}

h4,
.h4 {
    font-size: 1.5rem;
}

h5,
.h5 {
    font-size: 1.25rem;
}

h6,
.h6 {
    font-size: 1.125rem;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 0.75rem;
    font-weight: 400;
}

i {
    font-weight: normal;
}

hr {
    border: none;
    border-top: 1px solid #ebebeb;
    margin: 1.5rem 0px;
}

img {
    max-width: 100%;
}

p {
    line-height: 1.5em;
}

pre {
    display: block;
    border: none;
    background: none;
    font-size: 1rem;
    line-height: 1.5em;
    color: var(--text);
    padding: 0px;
    white-space: pre-wrap;
    font-family: Arial, "微软雅黑", Microsoft YaHei;
}

section {
    max-width: 100vw;
    overflow: hidden;
}


/*页面滚动条*/

 ::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

 ::-webkit-scrollbar-track {
    background: #ebebeb;
}

 ::-webkit-scrollbar-thumb {
    background-color: var(--colour1);
}


/*滚动条背景*/


/*滚动容器滚动条定制*/

.scroll-box {
    padding-right: 2vw;
    overflow-y: auto;
}

.scroll-box::-webkit-scrollbar-thumb {
    background: #1d1d1d;
}

.scroll-box::-webkit-scrollbar {
    /*背景*/
    width: 10px;
    background-color: #eaeaea;
}

.scroll-box::-webkit-scrollbar-thumb {
    /*滚动条*/
    border: solid 2px #eaeaea;
    width: 6px;
    border-radius: 10px;
    background-color: var(--colour1);
}

.scroll-box::-webkit-scrollbar-corner {
    background-color: #eaeaea;
}

.scroll-box::-webkit-scrollbar {
    height: 10px;
}


/*滚动条设置*/


/*页面选中*/

 ::selection {
    background: var(--text-bg);
    color: #fff;
}

 ::-moz-selection {
    background: var(--text-bg);
    color: #fff;
}

 ::-webkit-selection {
    background: var(--text-bg);
    color: #fff;
}


/*表单*/

form>div {
    margin-bottom: 1rem;
}

form>div:last-child {
    margin-bottom: 0;
}

form div.row {
    margin-left: -0.75rem;
    margin-right: -0.75rem;
}

form div.row>div {
    position: relative;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}
form div.row>div span.must  {
    position: absolute;
    left:0%;
    top: 0.75rem;
    color: red;
}

form p {
    margin-bottom: 0.375rem;
    font-size: 85%;
    opacity: 0.8;
}

form input,
form select {
    padding: 0 1rem;
    width: 100%;
    line-height: 2.5em;
    height: 2.5em;
    font-size: 1rem;
    color: var(--text);
    border: 1px solid #e0e0e0;
}

form select {
    color: var(--text);
    padding-right: 2.5rem;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    background-image: url(../images/arrow-down.svg);
    background-repeat: no-repeat;
    background-position: calc(100% - 0.75rem) center;
    background-size: 1rem 1rem;
}

form textarea {
    padding: 0.25rem 1rem;
    width: 100%;
    line-height: 2.5em;
    height: 10em;
    font-size: 1rem;
    color: var(--text);
    border: 1px solid #e0e0e0;
}

form button.btn {
    padding: 0 3rem;
    font-size: 1rem;
    line-height: 2.75rem;
    border: none;
    color: #fff;
    background: var(--colour1);
    cursor: pointer;
    transition: all 0.4s;
}

form button.btn:hover {
    color: #fff;
    background: var(--colour2);
}


/*表格边框样式*/

table,
tbody,
tr,
td {
    border: none;
}

table tr {
    border-right: 1px solid #e6e6e6;
    border-bottom: 1px solid #e6e6e6;
}

table td {
    line-height: 1.5em;
    padding: 0.5rem 1.125rem;
    border-left: 1px solid #e6e6e6;
    border-top: 1px solid #e6e6e6;
}

table td p {
    margin: 0px;
}


/*boostrap遮罩层导致页面抖动*/

.modal-open {
    overflow: scroll !important;
}


/*页面内容宽度*/

.container {
    max-width: 1200px;
    width: 90%;
}

.sticky {
    position: sticky;
    top: 0;
}


/*图片包含*/

.obj-contain {
    -o-object-fit: contain;
    object-fit: contain;
}


/*图片裁切*/

.obj-cover,
.obj-cover img {
    -o-object-fit: cover;
    object-fit: cover;
}

.obj-cover img {
    width: 100%;
    height: 100%;
}


/*图片放大*/

.zoom-img {
    overflow: hidden;
}

.zoom-img img {
    width: 100%;
    transform: scale(1);
    transition: all ease 0.6s;
}

.zoom-img:hover img {
    transform: scale(1.075);
}


/*响应式图片等比居中*/

.img-center {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 100%;
}

.img-center img {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}

.zoom-img:hover .img-center img,
.zoom-img.img-center:hover img {
    -webkit-transform: translate(-50%, -50%) scale(1.075);
    transform: translate(-50%, -50%) scale(1.075);
}


/*背景裁切*/

.bg-cover {
    background-position: center;
    background-size: cover;
}

.bg-fixed {
    background-attachment: fixed;
}


/*视频相关*/

a.video-btn {
    position: relative;
    padding: 0;
}

a.video-btn img.obj-cover {
    width: 100%;
    height: 100%;
}

a.video-btn:before {
    content: "";
    position: absolute;
    z-index: 3;
    left: 50%;
    top: 50%;
    width: 5rem;
    height: 5rem;
    background: url(../images/play.png) center no-repeat;
    background-size: 100%;
    transform: translate(-50%, -50%);
}

a.video-btn:after {
    content: "";
    position: absolute;
    z-index: 2;
    left: 0%;
    top: 0%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%);
    transition: all 0.4s;
}

a.video-btn:hover:after {
    content: "";
    transform: translate( 0, 100%);
}

.video-box {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 0px;
    padding-bottom: 56.25%;
    background: #000;
}

.video-box:before {
    content: "\b20";
    font-family: "iconfont" !important;
    font-weight: normal;
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    width: 3.5rem;
    height: 3.5rem;
    line-height: 3.5rem;
    font-size: 1.5rem;
    text-align: center;
    color: #fff;
    background-color: var(--colour1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 1;
    transition: all .4s;
}

.video-box:hover:before {
    content: "\b20";
    background-color: var(--colour2);
}

.video-box.play:before {
    content: "\b20";
    opacity: 0;
}

.video-box video {
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    /*object-fit: contain;*/
    /*尺寸不匹配加黑边*/
    object-fit: cover;
    /*内容自适应裁切*/
    overflow-clip-margin: content-box;
    overflow: clip;
    /*元素溢出容器的时候隐藏，同时不会有滚动定位等行为。*/
    opacity: 0.8;
    transition: all 0.4s;
}

.video-box.play video {
    opacity: 1;
}


/*视频列表*/

.video-list {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.75rem;
    margin-right: -0.75rem;
}

.video-list li {
    padding: 1.25rem 0.75rem;
    width: 33.33%;
}

.video-list li a .img {
    position: relative;
    display: block;
    padding-bottom: 65%;
    overflow: hidden;
}

.video-list li a .img:before {
    content: "";
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    bottom: 0;
    height: 4rem;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, var(--colour1) 100%);
    transition: all 0.6s;
}

.video-list li a:hover .img:before {
    transform: translate(0%, 100%);
}

.video-list li a .img:after {
    content: "\b88";
    position: absolute;
    z-index: 3;
    left: 1rem;
    bottom: 1rem;
    display: inline-block;
    font-family: "iconfont" !important;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 1.5rem;
    line-height: 1.125em;
    color: #fff;
    text-align: center;
    transition: all 0.4s;
}

.video-list li a:hover .img:after {
    content: "\b88";
    opacity: 0;
}

.video-list li a .img img {
    width: 100%;
    height: 100%;
}

.video-list li a .info {
    margin-top: 1rem;
    font-size: 1.125rem;
    line-height: 1.125em;
    font-weight: 500;
    color: var(--title);
    transition: all 0.4s;
}

.video-list li a:hover .info {
    color: var(--colour1);
}

.video-list li a:hover .info:hover {
    color: var(--colour2);
}


/*视频弹出*/

#video-modal .close {
    position: absolute;
    z-index: 3;
    top: 1rem;
    right: 1rem;
    opacity: 1;
    border-radius: 50%;
    overflow: hidden;
}

#video-modal .close span {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    line-height: 2rem;
    font-size: 1rem;
    font-weight: normal;
    color: #fff;
    background: var(--colour1);
    transition: all 0.4s;
}

#video-modal .close:hover span {
    background: var(--colour2);
}

#video-modal .modal-dialog {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    width: 96%;
    margin: 2rem auto;
    -webkit-transform: translate(0, calc(-40% + 50vh));
    transform: translate(0, calc(-40% + 50vh));
}

#video-modal.show .modal-dialog {
    -webkit-transform: translate(0, calc(-50% + 50vh));
    transform: translate(0, calc(-50% + 50vh));
}

#video-modal .modal-body {
    padding: 0;
    font-size: 0;
}

#video-modal .modal-body video {
    width: 100%;
    height: 100%;
}


/*边距盒子*/

.padding-box {
    padding-top: 8vw;
    padding-bottom: 8vw;
}

.padding-top {
    padding-top: 8vw;
}

.padding-bottom {
    padding-bottom: 8vw;
}

.small-padding-box {
    padding-top: 5vw;
    padding-bottom: 5vw;
}

.small-padding-top {
    padding-top: 5vw;
}

.small-padding-bottom {
    padding-bottom: 5vw;
}

.main {
    position: relative;
    z-index: 2;
    background: var(--grey_bg);
}

.grey-box {
    background: var(--grey_bg);
}

.white-box {
    background: #fff;
}

.clear-box:after {
    content: "";
    display: block;
    width: 100%;
    height: 0;
}


/*内页翻页*/

.page-box {
    padding-top: 1.5rem;
}

.page {
    font-size: 0;
    color: #666;
}

.page span {
    display: inline-block;
    padding: 0 14px;
    margin: 0 4px;
    font-size: 14px;
    line-height: 3em;
    color: var(--text);
}

.page a {
    display: inline-block;
    margin: 0 1px;
    padding: 0 18px;
    font-size: 14px;
    line-height: 3em;
    color: #666;
    background: #f7f7f7;
    transition: all .4s;
}

.page a:first-of-type {
    border-radius: 4px 0 0 4px;
}

.page a:last-of-type {
    border-radius: 0 4px 4px 0;
}

.page a.active {
    font-weight: bold;
    color: #fff;
    background: var(--colour1);
}

.page input {
    display: inline-block;
    width: 4rem;
    padding: 0px 10px;
    font-size: 14px;
    line-height: 3em;
    height: 3em;
    color: #666;
    border-radius: 4px;
    border: 1px solid var(--grey_bg);
    overflow: hidden;
    transition: all .4s;
}

.page button {
    padding: 0 18px;
    margin: 0px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    line-height: 3em;
    color: #666;
    border: 1px solid var(--border_colour);
    background: var(--grey_bg2);
    cursor: pointer;
    transition: all .4s;
}

.page form {
    display: inline-block;
}

.grey-box .page a {
    background: #fff;
}

.grey-box .page a.active {
    color: #fff;
    background: var(--colour1);
}

.page a:hover,
.page button:hover {
    color: #fff;
    background: var(--colour1);
}

@media(max-width:767.8px) {
    .page {
        font-size: 13px;
        line-height: 2.5em;
    }
    .page a,
    .page span {
        padding: 0 14px;
        font-size: 13px;
        line-height: 2.5em;
    }
    .page input {
        font-size: 13px;
        line-height: 2.5em;
    }
    .page button {
        padding: 0 14px;
        font-size: 13px;
        line-height: 2.5em;
    }
    .page input {
        font-size: 13px;
        line-height: 2.5em;
        height: 2.5em;
    }
}


/*头部*/

#head {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    color: var(--text);
    border-bottom: hidden;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 0 1rem var(--shadow);
    transition: all 0.6s;
}

.product-d {
    padding-top: 0;
}

.product-d #head {
    position: static;
}


/*头部标志*/

.head-conent {
    display: flex;
    height: var(--head_height);
}

.navbar-brand {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    white-space: normal;
    padding: 0px;
    margin: 0px;
}

.navbar-brand img {
    width: auto;
    height: 75%;
}

.navbar-brand>div {
    padding-left: 1rem;
    border-top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    white-space: normal;
    text-transform: Uppercase;
    font-size: 1.75rem;
    color: var(--text);
}


/*头部按钮*/

.head-wap-btn {
    display: flex;
    justify-content: flex-end;
    height: 100%;
}

.head-wap-btn .dropdown>a {
    display: flex;
    align-items: center;
    height: 100%;
    margin-left: 0.75rem;
    padding: 0;
    font-size: 0.9375rem;
    line-height: 2.25rem;
    color: var(--text);
}

.head-wap-btn .dropdown:hover a {
    color: var(--colour1);
}

.head-btn-member>a {
    font-weight: bold;
}

.head-wap-btn .dropdown>a>div {
    display: flex;
    padding: 0 1.125em 0 0.875em;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 2em;
    transition: all 0.4s;
}

.head-wap-btn .dropdown>a span {
    display: inline-block;
    margin-right: 0.25rem;
    font-size: 1.5rem;
    color: inherit;
}

.head-wap-btn .head-btn-member:hover>a>div {
    color: #fff !important;
    border: var(--colour1) !important;
    background: var(--colour1) !important;
}

.head-wap-btn .head-btn-member>a span {
    font-weight: normal;
}
.head-wap-btn .head-btn-search.dropdown>a{
    margin-left: 1.5rem
}
.head-wap-btn .head-btn-search.dropdown>a span {
    margin: 0;
    display: inline-block;
    width: 2.25rem;
    height: 2.25rem;
    line-height: 2.25rem;
    font-size: 1.25rem;
    text-align: center;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s;
}

.head-wap-btn .head-btn-search.dropdown:hover>a span {
    color: #fff !important;
    border: var(--colour1) !important;
    background: var(--colour1) !important;
}

.head-wap-btn .dropdown-menu {
    padding: 0.5rem 0;
    margin-top: 0;
    border-radius: 0px;
    border: none;
    box-shadow: 0 0 0.5rem var(--shadow);
}

.head-wap-btn .dropdown .dropdown-menu a {
    display: block;
    padding: 0 1em;
    font-size: 0.875rem;
    color: var(--text);
    height: 3rem;
    line-height: 3rem;
    border-bottom: rgba(0, 0, 0, .1);
}

.head-wap-btn .dropdown .dropdown-menu a:hover {
    color: #fff !important;
    background: var(--colour1);
}

.head-wap-btn .dropdown .dropdown-menu a:last-of-type {
    border-bottom: none;
}

.head-wap-btn .dropdown .dropdown-menu svg {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.25rem;
}

.head-wap-btn .dropdown-menu .title {
    padding: 0 0.5rem;
    font-size: 1.375rem;
    line-height: 1.5rem;
    white-space: nowrap;
}

.head-wap-btn .head-btn-search .dropdown-menu {
    left: auto;
    right: -4rem;
}

.head-wap-btn .dropdown-menu form {
    display: flex;
    margin: 1rem 2rem;
    min-width: 20rem;
}

.head-wap-btn .dropdown-menu form input {
    padding: 0 1rem;
    border-radius: 2rem 0 0 2rem;
}

.head-wap-btn .dropdown-menu form button {
    padding: 0 1rem;
    border-radius: 0 2rem 2rem 0;
    border: none;
    background: var(--colour1);
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
    transition: all 0.4s;
}

.head-wap-btn .dropdown-menu form button:hover {
    background: var(--colour2);
}

.head-wap-btn .dropdown-menu form button span {
    font-size: inherit;
    color: inherit;
}

.navbar-toggler {
    width: var(--head_height);
    height: var(--head_height);
    background: var(--colour1);
    color: #fff;
    border-radius: 0;
    border: none;
}

.navbar-toggler span {
    width: 1.5rem;
    height: 0.125rem;
    background-color: #fff;
    display: block;
    margin: 0.375rem auto;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.navbar-toggler:hover {
    cursor: pointer;
}

.navbar-toggler span:nth-child(1) {
    transform: translateY(0.5rem) rotate(45deg);
}

.navbar-toggler span:nth-child(2) {
    opacity: 0;
}

.navbar-toggler span:nth-child(3) {
    transform: translateY(-0.5rem) rotate(-45deg);
}

.navbar-toggler.collapsed span {
    opacity: 1;
    transform: translateY(0) rotate(0);
}


/*头部导航*/

#head .navbar-collapse {
    justify-content: flex-end;
    height: 100%;
}

#head .navbar-nav {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    height: 100%;
    padding: 0 1%;
}

#head .navbar-nav>li {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 1.75rem;
}

#head .navbar-nav>li>a:after {
    content: "";
    position: absolute;
    z-index: 1;
    bottom: 0px;
    left: 0%;
    width: 100%;
    height: 0.175rem;
    background-color: var(--colour1);
    transition: transform .4s cubic-bezier(.4, 0, .2, 1);
    transform: scaleX(0);
    transform-origin: 100%;
}

#head .navbar-nav>li.active>a:after,
#head .navbar-nav>li:hover>a:after {
    transform: scaleX(1);
    transform-origin: 0%;
}

#head .navbar-nav>li>a {
    position: relative;
    z-index: 1;
    display: block;
    padding: 0;
    font-size: 1rem;
    line-height: 38px;
    color: inherit;
    text-align: center;
    text-transform: Capitalize;
    border-radius: 0.25rem;
}

#head .navbar-nav>li:hover>a {
    color: var(--colour1);
}

#head .navbar-nav>li.active>a {
    color: var(--colour1);
}

#head:hover .navbar-nav>li.active>a {
    color: var(--colour1);
}

#head .navbar-nav .dropdown-menu {
    min-width: 11rem;
}

#head .navbar-nav .head-nav {
    padding: 0.5rem 0;
    margin-top: 0;
    border-radius: 0px;
    border: none;
    box-shadow: 0 0 0.5rem var(--shadow);
}

#head .navbar-nav .head-nav a {
    position: relative;
    z-index: 1;
    display: block;
    padding: 0 1.5rem;
    color: var(--text);
    font-size: 1rem;
    line-height: 3rem;
    white-space: nowrap;
    border-bottom: 1px solid rgba(0, 0, 0, .05);
    transition: all 0.4s;
}

#head .navbar-nav .dropdown-menu>a:last-of-type {
    border-bottom: none;
}

#head .navbar-nav .head-nav a:hover {
    color: #fff;
}

#head .navbar-nav .head-nav a:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0px;
    left: 0%;
    width: 0%;
    height: 100%;
    background-color: var(--colour1);
    transition: all .4s;
}

#head .navbar-nav .head-nav a:hover:before {
    width: 100%;
}

#head .navbar-nav .head-subnav {
    z-index: -1;
    top: 0;
    left: 100%;
    margin: 0;
    border-radius: 0;
    border: none;
    box-shadow: 0.5rem 0 0.5rem -0.5rem var(--shadow) inset;
}


/*头部搜索*/

#search-modal .modal-dialog {
    margin: 0;
    width: 100vw;
    max-width: none;
}

#search-modal .modal-content {
    border-radius: 0;
    border: none;
}

#search-modal .modal-header {
    padding: 2rem 1rem;
}

#search-modal .modal-header form {
    display: flex;
    width: 100%;
}

#search-modal .modal-header input,
#search-modal .modal-header button {
    border: none;
    border-radius: 0;
    background: none;
}

#search-modal .modal-header input {
    font-size: 1.5rem;
    font-weight: 800;
}

#search-modal .modal-header button {
    cursor: pointer;
}

#search-modal .modal-header button span {
    color: #999;
    transition: all 0.4s;
}

#search-modal .modal-header button:hover span {
    color: var(--colour1);
}

#search-modal .modal-body {
    padding: 3rem 4rem;
}

#search-modal .modal-header button span {
    font-size: 1.5rem;
}

#search-modal .modal-body a {
    display: block;
    font-size: 1.125rem;
    line-height: 2em;
    font-weight: bold;
    color: var(--dark);
    transition: all 0.4s;
}

#search-modal .modal-body a:hover {
    color: var(--colour1);
}


/*手机菜单*/

#wap-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1051;
    background: #fff;
    box-shadow: 0 0 1rem rgba(29, 37, 48, 0.07);
}

#wap-menu .menu-head {
    display: flex;
    justify-content: space-between;
    height: var(--head_height);
    background: #fff;
}

#wap-menu .menu-head .head-btn-Language {
    display: flex;
    justify-content: space-between;
    width: var(--head_height);
    height: var(--head_height);
    background: #fff;
    display: flex;
}

#wap-menu .menu-head .dropdown>a {
    display: flex;
    font-size: 0;
    align-items: center;
    height: 100%;
    margin-left: 0.75rem;
    padding: 0;
    font-size: 0.9375rem;
    line-height: 2.25rem;
    color: var(--text);
}

#wap-menu .menu-head .dropdown>a>div {
    width: var(--head_height);
    white-space: nowrap;
}

#wap-menu .menu-head .dropdown>a span {
    display: inline-block;
    margin-right: 0.25rem;
    font-size: 1.5rem;
    color: inherit;
    vertical-align: middle;
}

#wap-menu .menu-head .dropdown-menu {
    padding: 0.5rem 0;
    margin-top: 0;
    border-radius: 0px;
    border: none;
    box-shadow: 0 0 0.5rem var(--shadow);
}

#wap-menu .menu-head .dropdown .dropdown-menu a {
    display: block;
    padding: 0 1em;
    font-size: 0.875rem;
    color: var(--text);
    height: 3rem;
    line-height: 3rem;
    border-bottom: rgba(0, 0, 0, .1);
}

#wap-menu .menu-head .dropdown .dropdown-menu a:hover {
    color: #fff !important;
    background: var(--colour1);
}

#wap-menu .menu-head .dropdown .dropdown-menu a:last-of-type {
    border-bottom: none;
}

#wap-menu .menu-head .dropdown .dropdown-menu svg {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.25rem;
}

#wap-menu .menu-head .menu-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: inherit;
    flex: 1;
}

#wap-menu .menu-head .menu-logo img {
    width: auto;
    height: 75%;
}

#wap-menu .menu-head .close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--head_height);
    height: inherit;
    background: var(--colour1);
    opacity: 1;
}

#wap-menu .menu-head .close span {
    font-size: 1.25rem;
    font-weight: normal;
    color: #fff;
}

#wap-menu .menu-body {
    display: flex;
    flex-direction: column;
    height: calc(100vh - var(--head_height));
    border-top: 1px solid #ebebeb;
    background: var(--grey_bg);
    overflow: auto;
}

#wap-menu .menu-body::-webkit-scrollbar {
    width: 0;
    height: 0;
}

#wap-menu .menu-search form {
    display: flex;
    padding: 0.5rem 0;
    margin-top: 1rem;
    margin-bottom: 2rem;
    margin-left: 4vw;
    margin-right: 4vw;
    border-bottom: 2px solid var(--dark);
}

#wap-menu .menu-search input,
#wap-menu .menu-search button {
    padding: 0;
    border: none;
    border-radius: 0;
    background: none;
    font-size: 1.25rem;
    color: var(--text);
}

#wap-menu .menu-search input {
    line-height: 1.125em;
}

#wap-menu .menu-search button {
    padding: 0 0.5rem;
    font-size: 1.75rem;
}

#wap-menu .menu-search button span {
    font-size: inherit;
    color: inherit;
}

#wap-menu .menu-nav {
    flex-shrink: 1;
    width: 100%;
    padding: 4vw;
}

#wap-menu .navbar-nav li {
    position: relative;
    margin: 0 0 0.75rem;
    background: #fff;
    border-radius: 0.5rem;
}

#wap-menu .navbar-nav li>a {
    display: block;
    padding: 0.75rem;
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.5em;
    color: var(--title);
}

#wap-menu .navbar-nav li .menu-down {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    text-align: center;
    transform: rotate(45deg);
    transition: all 0.4s;
}

#wap-menu .navbar-nav li .menu-down:not(.collapsed) {
    transform: rotate(0deg);
}

#wap-menu .navbar-nav li .subnav {
    padding: 0.5rem 1rem;
    border-radius: 0;
    border: none;
    overflow: hidden;
}

#wap-menu .navbar-nav li .subnav>ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between
}

#wap-menu .navbar-nav li .subnav>ul li {
    width: 48%;
}

#wap-menu .navbar-nav li .subnav a {
    display: block;
    width: 100%;
    padding: 0.5rem;
    font-size: 0.9375rem;
    font-weight: normal;
    color: var(--text);
}

#wap-menu .navbar-nav li .subnav a.h6 {
    margin: 1rem 0;
    padding: 0 1.5em;
    font-size: 1rem;
    font-weight: bold;
    line-height: 3em;
    color: var(--title);
    background: var(--grey_bg);
}


/*导航滚到顶部样式*/

.head-bg {
    padding-top: var(--head_height);
}

.no-head-bg.top #head {
    padding-top: 0.5rem;
    background: rgba(255, 255, 255, 0);
    box-shadow: 0 0 1rem rgba(29, 37, 48, 0);
}

.no-head-bg.top #head:hover {
    padding-top: 0rem;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 0 1rem rgba(29, 37, 48, 0.07);
}

.no-head-bg.top #head .navbar-brand {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
    transition: all 0.4s;
}

.no-head-bg.top #head .navbar-nav li>a {
    color: #fff;
}

.no-head-bg.top #head:hover .navbar-nav li>a {
    color: var(--text);
}

.no-head-bg.top #head:hover .navbar-nav li.active>a,
.no-head-bg.down #head .navbar-nav li.active>a,
.no-head-bg.top #head:hover .navbar-nav li:hover>a {
    color: var(--colour1);
}

.no-head-bg.top.menu-open #head {
    background: rgba(255, 255, 255, 1);
}

.no-head-bg.top.menu-open #head .navbar-brand,
.no-head-bg.top #head:hover .navbar-brand {
    -webkit-filter: brightness(1) invert(0);
    filter: brightness(1) invert(0);
}

.no-head-bg.top #head:hover .head-wap-btn .dropdown>a {
    color: var(--text);
}

.no-head-bg.top #head:hover .head-wap-btn .dropdown a:hover {
    color: var(--colour1);
}

.no-head-bg.top #head:hover .head-wap-btn .dropdown>a div,
.no-head-bg.top #head:hover .head-wap-btn .head-btn-search.dropdown>a span {
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.no-head-bg.top .head-wap-btn .dropdown>a {
    color: #fff;
}

.no-head-bg.top .head-wap-btn .dropdown>a div,
.no-head-bg.top .head-wap-btn .head-btn-search.dropdown>a span {
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0);
}

.no-head-bg.top .head-wap-btn .dropdown:hover>a {
    color: #fff;
}

#head .head-wap-btn .dropdown.language>a span {
    display: inline-block;
    margin-right: 0.375rem;
}


/*head end*/


/*banner*/

#banner {
    position: relative;
    overflow: hidden;
}

#banner .item {
    position: relative;
    z-index: 1;
    background-color: #000;
}

#banner .item>a {
    position: relative;
    display: block;
    font-size: 0;
    overflow: hidden;
}

#banner picture,
#banner img {
    width: 100%;
}

#banner a {
    display: block;
    position: relative;
}

#banner .owl-nav {
    margin: 0;
}

#banner .owl-nav [class*=owl-] {
    position: absolute;
    top: 50%;
    z-index: 2;
    transform: translate( 0, -50%);
}

#banner .owl-nav [class*=owl-].owl-prev {
    left: 10%;
}

#banner .owl-nav [class*=owl-].owl-next {
    right: 10%;
}

#banner .owl-nav i {
    display: inline-block;
    width: 3.5rem;
    height: 3.5rem;
    line-height: 3.5rem;
    font-size: 1.75rem;
    text-align: center;
    color: #fff;
    border-radius: 50%;
    transition: all 0.4s;
}

#banner .owl-nav i:hover {
    color: var(--colour1);
}

#banner .owl-dots {
    position: absolute;
    z-index: 2;
    bottom: 1rem;
    left: 50%;
    margin: 0;
    transform: translate( -50%, 0%);
}

#banner .owl-dots .owl-dot {
    position: relative;
    overflow: hidden;
}

.bannerIn {
    animation: bannerIn 5s 1;
    -webkit-animation: bannerIn 5s 1;
}

@-webkit-keyframes bannerIn {
    0% {
        opacity: 0;
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bannerIn {
    0% {
        opacity: 0;
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.bannerOut {
    animation: bannerOut 5s 1;
    -webkit-animation: bannerOut 5s 1;
}

@-webkit-keyframes bannerOut {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(1.1);
    }
}

@keyframes bannerOut {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(1.1);
    }
}


/* 首页标题 */

.index-title {
    margin-bottom: 2rem;
}

.index-title .title {
    line-height: 1em;
}

.index-title .subtitle {
    line-height: 1.125em;
    text-transform: Uppercase;
}

.line {
    margin: 0.875rem auto 1rem;
    display: block;
    width: 2.5rem;
    height: 0.175rem;
    line-height: 1px;
    font-size: 0px;
    background: var(--colour1);
}


/*首页产品*/

.index-p-nav {
    position: relative;
    justify-content: center;
    margin: 1.5rem 0 3rem;
    border: none;
    text-align: center;
}

.index-p-nav li {
    position: static;
    margin: 0 1rem;
    margin-bottom: 0 !important;
}

.index-p-nav li>a {
    display: inline-block;
    padding: 0 2em;
    border: none;
    font-size: 1rem;
    line-height: 2.5em;
    height: 2.5em;
    color: #fff;
    background: var(--text);
    font-weight: bold;
    text-align: center;
    white-space: nowrap;
    border-radius: 2em;
    transition: all 0.4s;
}

.index-p-nav li>a.active {
    color: #fff;
    background: var(--colour1);
    box-shadow: 0 0.5rem 1rem -0.75rem var(--shadow2);
}

.index-p-list .item {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.index-p-list .owl-dots {
    position: absolute;
    z-index: 1;
    left: 2.5rem;
    bottom: 1.5rem;
    margin-top: 0;
}

.index-p-list .owl-nav {
    position: absolute;
    right: 46%;
    bottom: 1.5rem;
    margin-top: 0;
    margin-right: 1.5rem;
}

.index-p-list .owl-nav i {
    display: inline-block;
    font-size: 1.5rem;
    color: var(--small_text);
}

.index-p-list .owl-nav button:hover i {
    color: var(--colour1);
}

@media (min-width:992px) {
    @-webkit-keyframes pIn {
        0% {
            opacity: 0;
        }
        100% {
            opacity: 1;
        }
    }
    @keyframes pIn {
        0% {
            opacity: 0;
        }
        100% {
            opacity: 1;
        }
    }
    .pIn {
        -webkit-animation-name: pIn;
        animation-name: pIn;
    }
    @-webkit-keyframes pOut {
        0% {
            opacity: 1;
        }
        100% {
            opacity: 0;
        }
    }
    @keyframes pOut {
        0% {
            opacity: 1;
        }
        100% {
            opacity: 0;
        }
    }
    .pOut {
        -webkit-animation-name: pOut;
        animation-name: pOut;
    }
}

@media (min-width:992px) {
    @-webkit-keyframes pIn {
        0% {
            opacity: 0;
        }
        100% {
            opacity: 1;
        }
    }
    @keyframes pIn {
        0% {
            opacity: 0;
        }
        100% {
            opacity: 1;
        }
    }
    .pIn {
        -webkit-animation-name: pIn;
        animation-name: pIn;
        -webkit-animation-duration: 0s;
        animation-duration: 0s;
    }
    @-webkit-keyframes pOut {
        0% {
            opacity: 1;
        }
        100% {
            opacity: 0;
        }
    }
    @keyframes pOut {
        0% {
            opacity: 1;
        }
        100% {
            opacity: 0;
        }
    }
    .pOut {
        -webkit-animation-name: pOut;
        animation-name: pOut;
        -webkit-animation-duration: 0s;
        animation-duration: 0s;
    }
}

.index-p-list .left {
    display: flex;
    align-items: flex-end;
    width: 52%;
}

.index-p-list .right {
    width: 40%;
}

.index-p-list .right ul {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.75rem;
    margin-right: -0.75rem;
}

.index-p-list .right ul li {
    width: 50%;
    padding: 0.75rem;
}

.index-p-list .img {
    display: block;
    padding-bottom: 100%;
    background: #fff;
    overflow: hidden;
    transition: all 0.4s;
}

.index-p-list .left .img {
    border-radius: 2rem;
    border: 1px solid var(--colour1);
}

.index-p-list .right .img {
    border-radius: 0.5rem;
    border: 1px solid #fff;
    transition: all 0.4;
}

.index-p-list .right .img:hover {
    border: 1px solid var(--colour1);
}

.index-p-list .right .img span {
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
    right: 0;
    font-size: 0.875rem;
    line-height: 3em;
    color: #fff;
    text-align: center;
    background: rgba(1, 166, 232, 0.6);
    transition: all 0.4s;
}

.index-p-list .right .img:hover span {
    transform: translate( 0, 100%);
}

.index-p-list .right .more {
    margin-top: 1rem;
    margin-bottom: 0.75rem;
    display: inline-block;
    padding: 0 3em;
    font-size: 1rem;
    line-height: 2.75em;
    border-radius: 2em;
    color: #fff;
    background: var(--text);
    transition: all 0.4s;
}

.index-p-list .right .more:hover {
    background: var(--colour1);
    box-shadow: 0 0.5rem 1rem -0.75rem var(--shadow2);
}


/*业务*/

.index-b-list {
    display: flex;
    justify-content: space-between;
}

.index-b-list li .img {
    display: inline-block;
    transition: all 0.4s;
    transform: rotateY(0deg);
}

.index-b-list li:hover .img {
    transform: rotateY(360deg);
}

.index-b-list li .h6 {
    margin: 1rem 0 0;
    transition: all 0.4s;
}

.index-b-list li:hover .h6 {
    color: var(--colour1);
}


/*关于*/

.index-about>div {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.index-about .left {
    position: relative;
    z-index: 1;
    width: 48%;
}

.index-about .left p {
    text-align: justify;
    text-indent: 2em;
    line-height: 1.75em;
}

.index-about .en-title {
    position: absolute;
    top: -3rem;
    left: -10%;
    z-index: -1;
    font-size: 8rem;
    line-height: 1.125em;
    font-weight: bold;
    white-space: nowrap;
    color: rgba(0, 0, 0, .05);
}

.index-about ul {
    display: flex;
    justify-content: space-around;
    padding: 1.5rem;
    margin: 1.5rem 0;
    width: 120%;
    background: #fff;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 1rem 1rem -1rem var(--shadow);
}

.index-about ul .h6 {
    margin: 0.5rem 0 0;
}

.index-about ul .h6 {
    margin: 0.5rem 0 0;
}

.index-about .more-btn {
    display: inline-block;
    font-size: 1rem;
    padding: 0 2rem;
    line-height: 2.75em;
    border-radius: 2em;
    border: 1px solid var(--colour1);
    color: var(--colour1);
    transition: all 0.4s;
}

.index-about .more-btn:hover {
    background: var(--colour1);
    color: #fff;
}

.index-about .right {
    display: flex;
    align-items: flex-end;
    width: 46%;
}

.index-about .right img {
    width: 100%;
}


/*精品*/

.ace-products {
    display: grid;
    grid-template-columns: calc(44% - 1rem) calc(28% - 1rem) calc(28% - 1rem);
    grid-gap: 1rem;
    gap: 1rem;
}

.ace-products li {
    position: relative;
    border-radius: 0.5rem;
    overflow: hidden;
}

.ace-products li:nth-of-type(1) {
    grid-row: span 2 / span 2;
}

.ace-products li:nth-of-type(4) {
    grid-column: span 2 / span 2;
}

.ace-products li .info {
    position: absolute;
    left: 2rem;
    top: 1.5rem;
    z-index: 2;
}

.ace-products li .info .title {
    font-size: 1.375rem;
    font-weight: bold;
    color: #fff;
}

.ace-products li .info .en-title {
    font-size: 1rem;
    color: #fff;
}

.ace-products li .img,
.ace-products li img {
    min-width: 100%;
    height: 100%;
}


/*应用*/

.index-app-list a {
    display: block;
    position: relative;
}

.index-app-list a .info {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 1.5rem;
    color: #fff;
    text-align: center;
    overflow: hidden;
    background: rgba(1, 166, 232, 0);
    transition: all 0.4s;
}

.index-app-list a:hover .info {
    background: rgba(1, 166, 232, 0.8);
}

.index-app-list a .title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #fff;
}

.index-app-list a .text {
    margin-top: 1.5rem;
    font-size: 0.9375rem;
    line-height: 1.75em;
    text-align: left;
    text-indent: 2em;
    max-height: 7em;
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    opacity: 0;
    transition: all 0.4s;
}

.index-app-list a:hover .text {
    opacity: 1;
}


/*标语*/

.index-slogan {
    position: relative;
    overflow: hidden;
}

.index-slogan:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../video/wenli.png) center;
    opacity: 0.8;
    z-index: 3;
}

.index-slogan>div {
    position: relative;
    z-index: 4;
    color: #fff;
    text-align: center;
    padding: 15vh 1rem;
}

.index-slogan video {
    position: absolute;
    z-index: -1;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.index-slogan .subtitle {
    font-size: 1.25rem;
}

.index-slogan .more {
    position: relative;
    z-index: 1;
    display: inline-block;
    padding-right: 1.5rem;
    margin-top: 3rem;
    color: #fff;
    overflow: hidden;
}

.index-slogan .more:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0px;
    left: 0%;
    width: 3rem;
    height: 100%;
    background-color: var(--colour1);
    border-radius: 2rem;
    transition: all .4s;
}

.index-slogan .more:hover:before {
    content: "";
    width: 100%;
}

.index-slogan .more span {
    display: inline-block;
    margin-right: 0.5rem;
    width: 3rem;
    height: 3rem;
    line-height: 3rem;
    color: #fff;
    text-align: center;
}


/**/

.index-p2 {
    position: relative;
}

.index-p2:after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0px;
    left: 0%;
    width: 100%;
    height: 62.5%;
    background-color: var(--grey_bg);
}

.index-p2-nav {
    justify-content: center;
    border: none;
    margin-bottom: 2rem;
}

.index-p2-nav li {
    margin: 0.5rem 1rem;
}

.index-p2-nav li a {
    display: inline-block;
    padding: 0 2em;
    font-size: 1rem;
    line-height: 2.5em;
    height: 2.5em;
    font-weight: bold;
    color: #fff;
    background: var(--text);
    border-radius: 2em;
}

.index-p2-nav li a.active {
    background: var(--colour1);
    box-shadow: 0 0.75rem 1.5rem -0.75rem var(--shadow2);
}

.index-p2-list {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.index-p2-list .item {
    width: calc(25% - 1rem);
}

.index-p2-list a {
    display: block;
    min-height: 100%;
    position: relative;
    text-align: center;
    border-radius: 0.5rem;
    border: 1px solid #fff;
    box-shadow: 0 0 1rem -0.25rem var(--shadow);
    background: #fff;
    transition: all 0.4s;
    overflow: hidden;
}

.index-p2-list a:hover {
    border: 1px solid var(--colour1);
    box-shadow: 0 0 1.5rem var(--shadow);
}

.index-p2-list .img {
    background: #fff;
    overflow: hidden;
}

.index-p2-list .title {
    font-size: 1rem;
    line-height: 2.75em;
    color: var(--text);
    transition: all 0.4s;
}

.index-p2-list a:hover .title {
    color: var(--colour1);
}

.index-p2-list .subtitle {
    font-size: 0.875rem;
    line-height: 1.125em;
    color: var(--small_text);
    text-align: center;
    white-space: nowrap;
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    overflow: hidden;
}

.index-p2-list .more {
    display: inline-block;
    padding: 0 2em;
    margin: 1.5rem auto 2rem;
    font-size: 0.875rem;
    line-height: 2.5em;
    border: 1px solid var(--colour1);
    color: var(--colour1);
    border-radius: 2em;
    transition: all 0.4s;
}

.index-p2-list a:hover .more {
    color: #fff;
    background: var(--colour1);
}


/*news*/

.index-n>div {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.index-n .index-title {
    width: 100%;
}

.index-n a {
    display: block;
    position: relative;
}

.index-n-first {
    width: 48%;
}

.index-n-list {
    width: 48%;
}

.index-n-list {
    width: 48%;
}

.index-n .time {
    width: 4rem;
    text-align: center;
}

.index-n .time div {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    font-size: 1rem;
    min-height: 3rem;
    color: #fff;
}

.index-n .time div:first-child {
    background: var(--colour1);
}

.index-n .time div:last-child {
    background: var(--text);
}

.index-n-first a {
    height: 100%;
    padding-bottom: 0;
}

.index-n-first .time {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
}

.index-n-first .info {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, .5);
}

.index-n-first .title {
    font-size: 1.375rem;
    font-weight: bold;
    color: var(--colour1);
    white-space:nowrap; text-overflow:ellipsis; -o-text-overflow:ellipsis; overflow:hidden;
}

.index-n-first pre {
    margin: 0;
    font-size: 0.9375rem;
    color: #fff;
    white-space: nowrap;
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    overflow: hidden;
}

.index-n-first img {
    width: 100%;
    height: 100%;
}

.index-n-list li {
    margin: 0 0 1rem;
}

.index-n-list li:last-child {
    margin: 0;
}

.index-n-list a {
    display: flex;
    justify-content: space-between;
}

.index-n-list .time {
    display: flex;
    flex-wrap: wrap;
    justify-items: stretch;
    align-items: stretch;
    flex-shrink: 0;
    margin-right: 1.5rem;
}

.index-n-list .title {
    text-align: justify;
    font-size: 1.25em;
    font-weight: bold;
    max-height: 3em;
    display: block; display: -webkit-box;-webkit-line-clamp: 2;-webkit-box-orient: vertical;overflow: hidden;text-overflow: ellipsis;
    transition: all 0.4s;
}

.index-n-list a:hover .title {
    color: var(--colour1);
}

.index-n-list pre {
    text-align: justify;
    margin-top: 1rem;
    font-size: 0.875rem;
    max-height: 3em;
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}


/*首页联系*/

.index-c {
    display: flex;
    justify-content: space-between;
}

.index-c #map-canvas {
    width: 50%;
    height: 100%;
    min-height: 22rem;
}

.index-c #feedback {
    margin-top: 0;
    width: 45%;
}

.index-c2 ul {
    margin: 3rem 0;
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.index-c2 ul li {
    flex:1 1;
    max-width: 33.33%;
}

.index-c2 ul li img {
    margin-bottom: 1rem;
}


/*页脚*/

#foot {
    color: rgba(255, 255, 255, 0.6);
    background: #333;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

#foot .foot-box {
    padding-top: 4rem;
    padding-bottom: 4rem;
    display: flex;
    justify-content: space-between;
}

#foot .foot-box>div {
    max-width: 22%;
}

.foot-logo {
    text-align: center;
}

.foot-logo img {
    width: 5rem;
}

.foot-contact p {
    display: flex;
    margin-bottom: 0.5rem;
}

.foot-contact p span:first-child {
    flex-shrink: 0;
}

.foot-code img {
    max-width: 8.5rem;
}

#foot .foot-box a {
    display: block;
    line-height: 2.25em;
    color: inherit;
    transition: all 0.4s;
}

#foot .foot-box .title a {
    margin-bottom: 1.5rem;
    font-size: 1.375rem;
    line-height: 1.125em;
    color: #fff;
}

#foot .foot-box a:hover {
    text-decoration: underline;
    color: #fff;
}

#foot .foot-copyright>div {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    width: 100%;
    font-size: 1rem;
    line-height: 2em;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

#foot .foot-copyright a {
    color: inherit;
}

#foot .foot-copyright a:hover {
    color: var(--tips_text);
    text-decoration: underline;
}

#foot .foot-copyright p {
    line-height: 2em;
    margin-bottom: 0;
}

#foot .foot-follow a {
    margin: 0rem;
    display: inline-block;
    text-decoration: none !important;
    line-height: 0;
    transition: all 0s;
}

#foot .foot-follow .icon {
    display: inline-block;
    font-size: 1.25rem;
    width: 2.5rem;
    height: 2.5rem;
    line-height: 2.5rem;
    text-align: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.4s;
}

#foot .foot-follow a:hover .icon {
    background: var(--colour1);
}

#foot .foot-follow .dropdown-menu {
    margin: 0;
    left: 50%;
    width: 4rem;
    padding: 0.25rem;
    transform: translate(-50%, 0%);
    border-radius: 0.25rem;
    font-size: 0.875rem;
    color: var(--small_text);
}

#foot .back-top {
    position: fixed;
    z-index: 10;
    right: 4%;
    bottom: 10%;
    display: block;
    width: 2.75rem;
    height: 2.75rem;
    line-height: 2.75rem;
    font-size: 1.5rem;
    color: #fff;
    text-align: center;
    background: var(--colour1);
    opacity: 1;
    border-radius: 0.25rem;
    transition: all 0.6s;
}

.top #foot .back-top {
    opacity: 0;
}

#foot .back-top:hover {
    background: var(--colour2);
    cursor: pointer;
}

.web-code {
    position: fixed;
    z-index: 200;
    left: 1rem;
    top: 40%;
    padding: 0.75rem 1rem;
    color: #fff;
    border-radius: 1rem;
    background: var(--colour1);
    text-align: center;
    transition: all 0.4s;
    opacity: 0;
    visibility: hidden;
}

body:not(.top) .web-code {
    opacity: 1;
    visibility: visible;
}

.web-code img {
    width: 7.5rem;
}

.wap-bottom-nav {
    position: fixed;
    z-index: 999;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    flex: 1;
    text-align: center;
    color: #fff;
    background: var(--colour1);
}

.wap-bottom-nav li {
    flex: 1;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.wap-bottom-nav li>a {
    font-size: 0.875rem;
    line-height: 3rem;
    color: #fff;
}

.dropup .dropdown-menu {
    margin-bottom: 0;
    border-radius: 0.5rem 0.5rem 0 0;
}

.dropup .dropdown-menu a {
    display: block;
    padding: 0 1rem;
    line-height: 2.5em;
    font-size: 0.9375em;
    color: var(--text);
    border-bottom: 1px solid var(--border_colour);
    transition: all 0.4s;
}

.dropup .dropdown-menu a:hover {
    color: #fff;
    background: var(--colour1);
}

.dropup .dropdown-menu a:last-child {
    border-bottom: none;
}

.dropup:last-child .dropdown-menu {
    padding: 0.25rem;
    left: auto;
    right: 0;
    width: 100vw;
    margin-bottom: 0;
    border-radius: 0.25rem 0.25rem 0 0;
    border-bottom: none;
    border-right: none;
}

.dropup:last-child .dropdown-menu a {
    display: block;
    float: left;
    width: 50%;
    border-bottom: none;
    text-align: center;
    border-left: 1px solid var(--border_colour);
    border-radius: 0.25rem;
}


/*内页开始*/

.inside-banner {
    position: relative;
    background: none;
    overflow: hidden;
}

.inside-banner .info {
    position: absolute;
    z-index: 2;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 100%;
    color: #fff;
}

.inside-banner .info .title {
    font-size: 4rem;
    line-height: 1.25em;
    margin-bottom: 1rem;
    color: #fff;
    text-transform: Uppercase;
}

.inside-banner .info .subtitle {
    margin-top: -1em;
    font-size: 8rem;
    line-height: 1.125em;
    margin-bottom: 0;
    text-transform: Uppercase;
    color: #fff;
    -webkit-text-stroke: 0.5px rgba(255, 255, 255, 0.3);
    -webkit-text-fill-color: transparent;
}

.inside-banner .info .slogan {
    font-size: 2rem;
    opacity: 0.9;
}

.inside-banner .info {
    position: absolute;
    z-index: 2;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #fff;
}

.inside-banner img {
    min-height: 320px;
}

.breadcrumb {
    width: 100%;
    padding: 0px;
    margin: 0;
    background: var(--grey_bg);
}

.breadcrumb>div {
    font-size: 0px;
}

.breadcrumb a {
    display: inline-block;
    font-size: 0.875rem;
    line-height: 3.5rem;
    color: var(--small_text);
    transition: all .4s;
}

.breadcrumb a:hover {
    color: var(--colour1);
}

.breadcrumb a:not([href]):not([tabindex]) {
    color: var(--tips_text);
}

.breadcrumb a:after {
    content: ">";
    margin: 0 5px;
    color: var(--tips_text);
}

.breadcrumb a:not([href]):not([tabindex]):after {
    content: "";
}


/*产品列表*/


/*产品列表*/

.product-nav1 {
    border-bottom: none;
    display: flex;
    justify-content: center;
}

.product-nav1 li {
    margin: 0 0.5rem;
}

.product-nav1 a {
    display: inline-block;
    padding: 0 2.5rem;
    font-size: 1rem;
    line-height: 2.75em;
    font-weight: bold;
    color: #fff;
    border-radius: 2em;
    background: var(--small_text);
    transition: all 0.4s;
}

.product-nav1 a.active,
.product-nav1 li:hover a {
    background: var(--colour1);
}

.product-nav1 li:hover>a:before {
    content: "";
    position: absolute;
    z-index: 1;
    top: 100%;
    left: 50%;
    width: 0;
    height: 0;
    border-top: 0.375rem solid var(--colour1);
    border-right: 0.375rem solid transparent;
    border-left: 0.375rem solid transparent;
    border-bottom: 0.375rem solid transparent;
    transform: translate( -50%, 0%);
}

.product-nav1 .dropdown-menu {
    left: 50%;
    margin-top: 0;
    padding: 0.5rem 0 0;
    border: none;
    border-radius: 0;
    background: none !important;
    transform: translate( -50%, 0%);
}

.product-nav1 .dropdown-menu a {
    display: block;
    margin: 0;
    padding: 0;
    border-radius: 0;
    background: #fff !important;
    box-shadow: 0 0 1rem -0.5rem var(--shadow);
}

.product-filter {
    margin: 2rem 0;
    font-weight: normal;
    border-top: 1px solid var(--tips_text);
}

.product-filter .filter-item {
    display: flex;
    padding: 0;
    border-bottom: 1px solid var(--tips_text);
}

.product-filter .filter-item .key {
    padding: 0 1.5rem;
    width: calc(8em + 3rem);
    flex-shrink: 0;
    line-height: 2.75em;
    background: var(--grey_bg2);
}

.product-filter .filter-item .value {
    position: relative;
    width: 100%;
    padding-left: 1rem;
}

.product-filter .filter-item .value-list a {
    position: relative;
    display: inline-block;
    margin-right: 1.25rem;
    font-size: 1rem;
    line-height: 2.75em;
    color: var(--colour1);
}

.product-filter .filter-item .value-list .active,
.product-filter .filter-item .value-list .selected {
    color: red;
}

.product-filter .filter-item .value-list a.selected {
    color: red;
}

.product-filter .filter-item.multiple .value-list a {
    padding-left: 1.5rem;
}

.product-filter .filter-item.multiple .value-list a:before {
    content: "";
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 0%;
    width: 1rem;
    height: 1rem;
    border: 1px solid var(--tips_text);
    border-radius: 0.25rem;
    transform: translate( 0, -50%);
}

.product-filter .filter-item.multiple .value a.selected:before {
    border: 1px solid red;
    background: red;
}

.product-filter .filter-item.multiple .value-list a.selected:after {
    content: "";
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 0.3rem;
    width: 0.6rem;
    height: 0.4rem;
    margin-top: -0.1rem;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg) translate( 0, -50%);
}

.product-filter .filter-item .btn-box {
    flex-shrink: 0;
}

.filter-item.multiple .value-more {
    display: none;
}

.product-filter .filter-item .value-more a {
    display: block;
    margin: 0.375rem 0;
    padding: 0.25rem 1em;
    font-size: 0.875rem;
    color: var(--small_text);
    border: 1px solid var(--border_colour);
    border-radius: 0.25rem;
    background: none;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.4s;
}

.product-filter .filter-item .value-more a:hover {
    color: red;
    border: 1px solid red;
}

.product-filter .filter-item .value-more a span {
    margin-right: 0.125rem;
    display: inline-block;
    font-size: inherit;
    transform: rotate(45deg)
}

.filter-item .value-btn {
    text-align: center;
    display: none;
}

.filter-item.multiple .value-btn {
    display: block;
    margin: 1rem 0;
}

.filter-item.multiple .value-btn a {
    display: inline-block;
    padding: 0 1.5em;
    font-size: 0.8374rem;
    line-height: 2em;
    color: var(--small_text);
    border: 1px solid var(--border_colour);
    border-radius: 0.25rem;
    background: #fff;
    transition: all 0.4s;
}

.filter-item.multiple .value-btn a:hover {
    color: #fff;
    border: 1px solid red;
    background: red;
}

.product-filter .value-nav li {
    position: static;
}

.product-filter .value-nav li>a {
    display: inline-block;
    margin-right: 1.25rem;
    font-size: 1rem;
    line-height: 2.75em;
    color: var(--colour1);
}

.product-filter .value-nav li:hover>a,.product-filter .value-nav li .active {
    color: red;
}

.product-filter .value-nav .dropdown-menu {
    margin-top: 0;
    width: 100%;
    padding: 0.5rem 1rem;
}

.product-filter .value-nav .dropdown-menu>div {
    display: flex;
}

.product-filter .value-content .tab-pane {
    margin-top: -3px;
}


/*手机筛选*/

.wap-p-nav {
    display: flex;
    justify-content: space-around;
    flex-wrap: nowrap;
    border-bottom: 1px solid var(--border_colour);
    background: #fff;
    position: sticky;
    top: var(--head_height);
    z-index: 2;
}

.wap-p-nav>li {
    width: 100%;
    justify-content: center;
}

.wap-p-nav>li.filter {
    flex-wrap: wrap;
    width: 7rem;
    border-left: 1px solid var(--border_colour);
}

.wap-p-nav>li>a {
    display: block;
    text-align: center;
    font-size: 0.9375rem;
    line-height: 3rem;
    color: var(--text);
}

.wap-p-nav>li.filter a {
    display: flex;
    justify-content: center;
}

.wap-p-nav>li>a span {
    display: inline-block;
    line-height: inherit;
}

.wap-p-nav>li>a .icon {
    font-size: 1.5rem;
}

.wap-p-nav .dropdown-menu {
    left: 50%;
    margin-top: 0;
    border-radius: 0;
    padding: 0.75rem;
    border: none;
    border-right: 1px solid var(--border_colour);
    border-bottom: 1px solid var(--border_colour);
    background: var(--grey_bg);
    box-shadow: 0 0 1rem var(--shadow);
    transform: translate( -50%, 0%);
}

.wap-p-nav .dropdown-menu a {
    display: block;
    line-height: 2em;
    color: var(--text);
    text-align: center;
}

#wap-filter .modal-dialog {
    -webkit-transition: -webkit-transform .4s ease;
    transition: -webkit-transform .4s ease;
    transition: transform .4s ease;
    transition: transform .4s ease, -webkit-transform .4s ease;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    position: fixed;
    width: 85%;
    top: 0;
    bottom: 0;
    left: 100%;
    max-width: none;
    margin: 0;
    color: #333;
    background-color: #f7f7f7;
    bottom: constant(safe-area-inset-bottom);
    bottom: env(safe-area-inset-bottom);
    border: none;
}

#wap-filter.show .modal-dialog {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
}

#wap-filter .modal-content {
    height: 100%;
    padding-bottom: 3rem;
    border: none;
    border-radius: 0;
    background: none;
    overflow: auto;
}

#wap-filter .modal-content .modal-body {
    padding: 0;
}

#wap-filter .modal-content .modal-body form {
    display: flex;
    padding: 0.7rem;
}

#wap-filter .modal-content .modal-body form input {
    background: none;
    border: none;
    border-bottom: 1px solid var(--border_colour);
}

#wap-filter .modal-content .modal-body form button {
    flex-shrink: 0;
    padding: 0 0.5rem;
    border: none;
    background: none;
    border-bottom: 1px solid var(--border_colour);
}

#wap-filter .modal-content .modal-body ul li {
    margin-bottom: 1rem;
    background: #fff;
}

#wap-filter .modal-content .modal-body ul .key {
    padding: 0.75rem;
}

#wap-filter .modal-content .modal-body ul .value {
    padding-left: 0.75rem;
}

#wap-filter .modal-content .modal-body ul .value-list {
    display: flex;
    flex-wrap: wrap;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border_colour);
}

#wap-filter .modal-content .modal-body ul .value-list a {
    position: relative;
    display: inline-block;
    width: calc(33.33% - 0.75rem);
    margin-right: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    line-height: 2.25em;
    text-align: center;
    color: var(--text);
    background: var(--grey_bg);
    border-radius: 0.25rem;
    white-space: nowrap;
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    overflow: hidden;
}

#wap-filter .modal-content .modal-body ul .value-list a.selected {
    color: var(--colour2);
    background: #fff9f2;
}

#wap-filter .modal-content .modal-body ul .value-list a.selected:before {
    content: "";
    position: absolute;
    z-index: 1;
    right: 0;
    bottom: 0%;
    width: 0;
    height: 0;
    border-top: 0.5rem solid transparent;
    border-right: 0.5rem solid var(--colour2);
    border-left: 0.5rem solid transparent;
    border-bottom: 0.5rem solid var(--colour2);
}

#wap-filter .modal-content .modal-body ul .value-list a.selected:after {
    content: "";
    position: absolute;
    z-index: 2;
    right: 0.125rem;
    bottom: 0.25rem;
    width: 0.5rem;
    height: 0.25rem;
    border-left: 1px solid #fff;
    border-bottom: 1px solid #fff;
    transform: rotate(-45deg);
}

#wap-filter .modal-content .menu-bottom {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    box-shadow: 0 0 0.5rem -0.25rem var(--shadow);
}

#wap-filter .modal-content .menu-bottom button {
    flex: 1;
    border: none;
    line-height: 3rem;
    color: var(--text);
    background: #fff;
}

#wap-filter .modal-content .menu-bottom button.confirm {
    color: #fff;
    background: var(--colour2);
}


/*产品列表*/

.p-list-box {
    padding-top: 2rem;
}

.product-list {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
}

.product-list li {
    width: 25%;
    padding: 0.5rem;
}

.product-list li a {
    display: block;
    padding: 0.5rem;
    border-radius: 0.5rem;
    overflow: hidden;
    transition: all 0.4s;
}

.product-list li a:hover {
    box-shadow: 0 0 0.5rem var(--shadow);
}

.product-list li .img {
    overflow: hidden;
    background: #fff;
}

.product-list li .info {
    padding: 1rem;
    text-align: center;
    transition: all 0.4s;
}

.product-list li .title {
    font-size: 1.125rem;
    font-weight: bold;
    color: var(--title);
    transition: all 0.4s;
}

.product-list li a:hover .title {
    color: var(--colour1);
}

.product-list li .text {
    margin: 0.5rem 0;
    font-size: 0.875rem;
    color: var(--small_text);
}

.product-list li .text span {
    margin: 0 0.25rem;
}

.product-list li .more {
    display: inline-block;
    padding: 0 2em;
    margin: 0.5rem auto 0;
    font-size: 0.9375rem;
    line-height: 2em;
    color: var(--text);
    border: 1px solid var(--text);
    border-radius: 0.5rem;
    transition: all 0.4s;
}

.product-list li a:hover .more {
    color: #fff;
    border: 1px solid var(--colour1);
    background: var(--colour1);
}


/*产品详情*/

.product>div {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background: none;
}

.product .img {
    width: 45%;
    max-width: 500px;
}

.product-img1 .item a {
    display: block;
}

.product-img1 .item .img-center,
.product-img2 .item a {
    display: block;
    background: var(--grey_bg);
}

.product-img2 {
    position: relative;
    z-index: 1;
    margin-top: 1rem;
    padding: 0 2rem;
}

.product-img2 .owl-nav.disabled {
    margin: 0;
    display: block;
}

.product-img2 .owl-nav button[class*=owl-] {
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    width: 1.5rem;
    transition: all 0.4s;
}

.product-img2 .owl-nav button[class*=owl-]:not(.disabled):hover {
    color: #fff;
    background: var(--colour1);
}

.product-img2 .owl-nav button[class*=owl-].owl-prev {
    left: 0;
}

.product-img2 .owl-nav button[class*=owl-].owl-next {
    right: 0;
}

.product .info {
    width: 50%;
    padding: 2rem 0;
}

.product .info .title {
    line-height: 1.125em;
    margin-bottom: 1.25rem;
}

.product .info .tag {
    margin: 2rem 0 1.75rem;
}

.product .info .tag span {
    display: inline-block;
    margin-right: 0.875rem;
    padding: 0 1em;
    font-size: 1.125rem;
    line-height: 2.5rem;
    font-weight: normal;
    color: var(--colour1);
    border: 1px solid var(--colour1);
    border-radius: 0.5em;
}

.product .info pre {
    font-size: 1.125rem;
    line-height: 2.25em;
    font-weight: normal;
}

.product .info table {
    display: block !important;
    width: 100% !important;
    height: auto !important;
}

.product .info tbody {
    display: block !important;
    width: 100% !important;
    -webkit-column-count: 2;
    -webkit-column-gap: 1rem;
}

.product .info table tr {
    display: block;
    width: 100% !important;
    height: auto !important;
    border-right: none;
    border-bottom: none;
}

.product .info table td {
    width: auto !important;
    height: auto !important;
    text-align: left !important;
    padding: 0;
    font-size: 1.125rem;
    line-height: 2.25em;
    color: var(--text);
    border-left: none;
    border-top: none;
}

.btn-box a {
    display: block;
    padding: 0 2em;
    margin-top: 1.5rem;
    font-size: 1.125rem;
    line-height: 3.4em;
    border-radius: 0.5rem;
    text-align: center;
    font-weight: bold;
    color: #fff;
    background: var(--colour1);
    transition: all 0.4s;
}

.btn-box a:hover {
    color: #fff;
    background: var(--colour2);
    box-shadow: 0 0.75rem 1.5rem -0.5rem var(--shadow3);
}

.btn-box span {
    font-size: 1.5rem;
    line-height: 1.125em;
    color: inherit;
    font-weight: normal;
    vertical-align: middle;
}

.btn-box .tel {
    color: #fff;
    background: var(--text);
}

.btn-box .tel:hover {
    color: #fff;
    background: var(--colour1);
    box-shadow: 0 0.75rem 1.5rem -0.5rem var(--shadow2);
}

.product-nav {
    position: sticky !important;
    top: 0;
    z-index: 2;
    left: 0;
    border-bottom: 1px solid rgba(0, 0, 0, .15);
    background: #fff;
}

.product-nav a {
    position: relative;
    display: inline-block;
    padding: 0 1.5rem;
    line-height: 3.5em;
    font-size: 1.125rem;
    text-align: center;
    color: var(--small_text);
}

.product-nav a.active,
.product-nav a:hover {
    color: var(--colour1);
}

.product-nav a.active:after {
    content: "";
    position: absolute;
    z-index: -1;
    bottom: -1px;
    left: 0%;
    width: 100%;
    height: 0.25rem;
    background-color: var(--colour1);
    transition: all .4s;
}

.p-details {
    overflow: visible;
}

.btn-box2 {
    position: sticky;
    bottom: 0.5rem;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
}

.show-p-btn .btn-box2 {
    opacity: 1;
    visibility: visible;
}

.btn-box2>div {
    display: flex;
    justify-content: space-between;
}

.btn-box2 a {
    width: 49.5%;
}

.p-details .white-box {
    padding: 5%;
}

#p-parameter hr {
    margin: 1rem 0 0.5rem;
    border-top: 1px solid rgba(0, 0, 0, .15);
}

#p-parameter table {
    display: block !important;
    width: 100% !important;
    height: auto !important;
}

#p-parameter tbody {
    display: block !important;
    width: 100% !important;
    -webkit-column-count: 2;
    -webkit-column-gap: 2rem;
    font-size: 0;
}

#p-parameter table tr {
    display: flex;
    margin-top: -2px;
    width: 100% !important;
    height: auto !important;
    border-right: none;
    border-bottom: 1px solid var(--border_colour);
}

#p-parameter table td {
    flex: 1;
    width: 50% !important;
    height: auto !important;
    text-align: left !important;
    padding: 0 0 0 0.5em;
    font-size: 1rem;
    line-height: 3.5em;
    color: var(--text);
    border-left: none;
    border-top: none;
}

#p-parameter table td span,
#p-parameter table td p {
    display: inline-block;
    flex: 1;
}

#p-parameter ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

#p-parameter ul li {
    display: flex;
    justify-content: space-between;
    width: 49%;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border_colour);
}

#p-parameter ul li strong,
#p-parameter ul li b {
    display: inline-block;
    width: 50%;
    font-size: 0.875rem;
    color: var(--title);
    transition: all 0.4s;
}

#p-parameter ul li:hover strong,
#p-parameter ul li:hover b {
    color: var(--colour1);
}


/*解决方案*/

.solution {
    position: relative;
}

.solution-list {
    display: flex !important;
    flex-wrap: wrap;
}

.solution-list .owl-dots {
    width: 100%;
    margin: 4vw 0 !important;
    order: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.solution-list .owl-dots .owl-dot {
    display: inline-block;
    padding: 0 2em !important;
    margin: 0.25rem;
    line-height: 2.75em;
    font-size: 1.25rem;
    color: var(--title);
    border-radius: 2em;
    background: var(--grey_bg);
}

.solution-list .owl-dots .owl-dot:hover {
    color: var(--colour1);
}

.solution-list .owl-dots .owl-dot.active {
    color: #fff;
    border-radius: 2em;
    background: var(--colour1);
}

.solution-list .owl-stage-outer {
    order: 1;
}

.solution-list .item {
    display: flex;
    flex-wrap: wrap;
}

.solution-list .item .img {
    width: 50%;
}

.solution-list .item .img img {
    min-height: 100%;
}

.solution-list .item .info {
    width: 50%;
    padding: 4vw 6vw 6vw;
}

.solution-list .item .info .title {
    display: block;
    margin: 1rem 0;
    color: var(--colour1);
    transition: all 0.4s;
}

.solution-list .item .info .title:hover {
    color: var(--colour2);
}

.solution-list .item .info .subtitle {
    text-transform: Uppercase;
    color: var(--small_text);
    margin-bottom: 4rem;
}

.solution-list .item .info p {
    line-height: 2em;
}

.solution-list .item .info .more {
    margin: 3rem 0 6rem;
    display: inline-block;
    padding: 0 2em;
    font-size: 0.9375rem;
    line-height: 3em;
    color: #fff;
    border-radius: 2rem;
    background: var(--colour1);
    transition: all 0.4s;
}

.solution-list .item .info .more:hover {
    background: var(--colour2);
}

.solution-btn {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 3rem;
    width: 50vw;
    padding: 0 6vw;
}

.solution-btn .box {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.solution-btn .box .scrollbar {
    width: 100%;
    height: 2px;
    background-color: var(--border_colour);
}

.solution-btn .box .scrollbar>div {
    width: 0;
    height: 2px;
    background-color: var(--colour1);
    transition: all 0.4s;
}

.solution-btn .left {
    flex-shrink: 0;
    padding-right: 1.5rem;
    background: #fff;
    font-size: 1.125rem;
    color: var(--small_text);
}

.solution-btn .left .current {
    font-size: 1.5rem;
    color: var(--colour1);
}

.solution-btn .right {
    flex-shrink: 0;
    padding: 0 1.5rem;
    background: #fff;
}

.solution-btn .right a {
    display: inline-block;
    margin: 0 0.25rem;
    padding: 0px;
    width: 3.5rem;
    height: 3.5rem;
    line-height: 3.5rem;
    font-size: 1.5rem;
    text-align: center;
    color: #fff;
    border-radius: 50%;
    background-color: var(--colour1);
    outline: none;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s ease;
}

.solution-btn .right a:hover {
    color: #fff;
    background-color: var(--colour2);
}

.solution-btn .right a span {
    width: inherit;
    height: inherit;
    line-height: inherit;
    font-size: inherit;
    color: inherit;
}

.case-list {
    display: flex;
    flex-wrap: wrap;
    margin-left: -1.25rem;
    margin-right: -1.25rem;
}

.case-list li {
    width: 33.33%;
    padding: 1.25rem;
}

.case-list li a {
    display: block;
    transition: all 0.4s;
}

.case-list li a:hover {
    transform: translate( 0, -1rem);
}

.case-list li .img {
    padding-bottom: 66.66%;
    border-radius: 0.5rem;
    transition: all 0.4s;
    overflow: hidden;
}

.case-list li a:hover .img {
    box-shadow: 0 0.5rem 1rem var(--shadow);
}

.case-list li .img img {
    width: 100%;
    height: 100%;
}

.case-list li .title {
    margin: 0.5rem 0 1.5rem;
    font-size: 1.125rem;
    transition: all 0.4s;
}

.case-list li a:hover .title {
    color: var(--colour1);
    font-weight: bold;
}

.case-list li .subtitle {
    margin: 1.5rem 0 0;
    font-size: 0.9375rem;
    color: var(--colour1);
}


/*关于*/

.about-info {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
}

.about-info .info {
    display: flex;
    width: 40%;
}

.about-info .info,
.about-info .info p {
    text-align: justify;
    font-size: 1rem;
    line-height: 1.75em;
    margin-bottom: 0;
}

.about-info .info p:last-of-type {
    margin-bottom: 0;
}

.about-info .info .title {
    margin-bottom: 0;
}

.about-info .info .slogan {
    margin-bottom: 1.25rem;
}

.about-info .img {
    width: 55%;
}

.about-info .img a {
    display: block;
    width: 100%;
    padding-bottom: 61.8%;
    border-radius: 1rem;
    overflow: hidden;
}

.about-adv ul {
    padding: 2rem 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    text-align: center;
}

.about-adv img {
    margin-bottom: 1rem;
}

.about-title {
    width: 100%;
}

.about-title .title {
    margin-bottom: 0;
}

.about-honor {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
}

.about-honor .left {
    width: 28%;
}

.about-honor .right {
    width: 68%;
}

.about-honor .right .honor {
    width: 90%;
    margin: auto;
    text-align: center;
}

.honor.owl1 .owl-nav {
    margin-top: 0;
}

.honor.owl1 .owl-nav [class*=owl-] {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    opacity: 0;
    transition: all 0.4s;
}

.honor.owl1:hover .owl-nav [class*=owl-] {
    opacity: 1;
}

.honor.owl1 .owl-nav [class*=owl-].owl-prev {
    right: 90%;
}

.honor.owl1 .owl-nav [class*=owl-].owl-next {
    left: 90%;
}

.about-honor .right .honor .img {
    padding-bottom: 125%;
}

.history-list li {
    display: flex;
    margin-bottom: 1.5rem;
}

.history-list li .img {
    width: 20%;
    transition: all 0.4s;
}

.history-list li .img img {
    border-radius: 1rem;
}

.history-list li .info {
    width: 80%;
    padding-left: 2rem;
}

.history-list li .info .time {
    margin: 0.5rem 0;
    color: var(--colour1);
    font-weight: bold;
    font-size: 1.25rem;
}

.history-list li:hover .img {
    width: 25%;
}

.history-list li:hover .info .time {
    font-size: 1.75rem;
}
.history-list li .info .text {
   text-align: justify;
}
.history-list li:hover .info .text {
    color: var(--colour1);
}

.about-culture {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.about-culture li {
    width: 49%;
    margin: 1% 0;
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
}

.about-culture li .info {
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 8%;
    color: #fff;
    text-align: center;
}


/*合作支持*/

.cooperate li {
    border-bottom: 1px solid var(--border_colour);
}

.cooperate li a {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    padding: 1.5rem 0;
    font-size: 1.25rem;
    line-height: 2rem;
    color: var(--text);
}

.cooperate li a:hover {
    color: var(--colour1);
}

.cooperate li a span:first-child {
    display: block;
    flex-shrink: 1;
    width: 100%;
    white-space: nowrap;
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    overflow: hidden;
}

.cooperate li a .icon {
    flex-shrink: 0;
    font-size: 2rem;
    line-height: inherit;
    color: var(--colour1);
}

.cooperate li a:before {
    content: "";
    position: absolute;
    z-index: -1;
    bottom: -1px;
    left: 0%;
    width: 0%;
    height: 2px;
    background-color: var(--colour1);
    transition: all .4s;
}

.cooperate li a:hover:before {
    content: "";
    width: 100%;
}


/*服务*/

.service-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.service-list li {
    width: 49%;
    margin: 1% 0;
}

.service-list li a {
    position: relative;
    display: block;
    height: 21rem;
    border-radius: 1rem;
    overflow: hidden;
}

.service-list li a .img,
.service-list li a img {
    width: 100%;
    height: 100%;
    transition: all 0.4s;
}

.service-list li a:hover .img {
    -webkit-filter: blur(5px);
    filter: blur(5px);
}

.service-list li a .info {
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    font-size: 1rem;
    color: #fff;
    padding: 3rem 2rem;
    background: var(--img_gradient);
}

.service-list li a .title {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
}

.service-list li a p {
    opacity: 0;
    height: 3em;
    line-height: 1.5em;
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.4s;
}

.service-list li a:hover p {
    opacity: 1;
}

.service-list li a .info .btn {
    flex-shrink: 1;
    margin-left: 3rem;
    font-size: 1.5rem;
    color: #fff;
    background: var(--colour1);
    border-radius: 0.5rem;
}

.service-list li a .info .btn span {
    font-size: inherit;
    color: inherit;
}


/*客户*/

.logo-list {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
}

.logo-list li {
    position: relative;
    width: 20%;
    padding: 0.5rem;
}

.logo-list li .img {
    width: 100%;
    height: 0;
    padding-bottom: 50%;
    background: var(--grey_bg);
    border-radius: 0.5rem;
    overflow: hidden;
}

.logo-list li img {
    max-width: 80%;
    max-height: 60%;
    mix-blend-mode: multiply;
}

.logo-list li .info {
    position: absolute;
    z-index: 2;
    left: 0.5rem;
    right: 0.5rem;
    top: 0.5rem;
    bottom: 0.5rem;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    color: #fff;
    text-align: center;
    background: var(--colour1);
    border-radius: 0.5rem;
    opacity: 0;
    transition: all 0.4s;
}

.logo-list li .info:hover {
    opacity: 1;
}


/*faq*/

.faq-feedback {
    position: fixed;
    right: 5%;
    top: 45%;
    z-index: 2;
    display: block;
    padding: 0.5rem 1.5rem;
    font-size: 1.125em;
    font-weight: bold;
    color: #fff !important;
    background: var(--colour1);
    border-radius: 1rem;
    transition: all 0.4s;
}

.faq-feedback:hover {
    background: var(--colour2);
}

.faq-feedback:after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 50%;
    right: -0.5rem;
    margin-top: -0.5rem;
    width: 1rem;
    height: 1rem;
    background-color: inherit;
    transform: rotate(45deg);
}

.faq-feedback span {
    vertical-align: middle;
    font-size: 1.75rem;
    font-weight: normal;
    color: inherit;
}

.modal-open .modal {
    padding-right: 0 !important;
}

#faq-modal .close {
    position: absolute;
    right: 1rem;
    top: 1rem;
}

#faq-modal .close span {
    color: #fff;
}

#faq-modal .modal-dialog {
    margin: auto;
    max-width: 40rem;
    height: 100vh;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

#faq-modal .modal-content {
    border-radius: 0.75rem;
    max-width: 98vw;
    margin: auto;
}

#faq-modal .dropdown-item {
    padding: 0.25rem 1rem;
}

#faq-modal .modal-body {
    padding: 1.5rem;
}

#faq-modal form .row>div {
    display: flex;
}

#faq-modal form .row>div>div {
    width: 100%;
}

#faq-modal form .row>div .key {
    width: initial;
    flex-shrink: 0;
    font-size: 0.9375rem;
    line-height: 2.5rem;
    color: var(--colour1);
    margin-right: 0.5rem;
}

#faq-modal form .row>div .key span {
    margin-right: 0.25rem;
    color: red;
}

#faq-modal .feedback .select>a,
#faq-modal .feedback input,
#faq-modal .feedback select {
    height: 2.5rem;
    line-height: 2.5rem;
}

#faq-modal .feedback input.not::-webkit-input-placeholder {
    color: var(--tips_text);
}

#faq-modal .feedback input.not {
    background: var(--grey_bg);
}

#faq-modal .feedback textarea {
    margin-top: 0;
}

#faq-modal .feedback .select-box {
    display: flex;
    justify-content: space-between;
}

#faq-modal .feedback .select-box>div {
    width: 9rem;
    flex-shrink: 0;
}

#faq-modal .feedback .select-box>input {
    width: 50%;
    margin-left: 0.25rem;
}

#faq-modal .feedback .select {
    margin-bottom: 1rem;
}

#faq-modal .feedback .select a {
    margin-bottom: 0;
}

#faq-modal .feedback .submit {
    padding: 0 2.5em;
    margin-top: 0;
    background: var(--small_text);
}

#faq-modal .feedback .submit:hover {
    margin-top: 0;
    background: var(--colour1);
}

.faq-search {
    width: 50vw;
    margin: auto;
    display: flex;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--colour1);
    border-radius: 2rem;
    line-height: 4rem;
    height: 4rem;
    overflow: hidden;
}

.faq-search input {
    padding: 0 1rem 0 2rem;
    width: 100%;
    border: none;
    background: none;
    line-height: inherit;
    height: inherit;
}

.faq-search button {
    display: block;
    padding: 0 2em;
    flex-shrink: 0;
    border: none;
    background: none;
    color: var(--colour1);
    line-height: inherit;
    height: inherit;
    cursor: pointer;
    transition: all 0.4s;
}

.faq-search button:hover {
    color: #fff;
    background: var(--colour1);
}

.faq-search button span {
    margin-left: 0.5rem;
    color: inherit;
    font-size: 1.75rem;
    line-height: inherit;
    vertical-align: middle;
}

.faq-hot {
    margin-top: 1rem;
    padding: 0 2rem;
    text-align: left;
    color: var(--text);
}

.faq-hot a {
    margin: 0.5rem 0.5rem 0;
    text-align: left;
    color: var(--text);
    transition: all 0.4s;
}

.faq-hot a:hover {
    color: var(--colour1);
    text-decoration: underline;
}

.faq {
    background: var(--grey_bg);
}

.faq-nav1 {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.75rem;
    margin-right: -0.75rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
    justify-content: space-around;
}

.faq-nav1 li {
    width: 16.6%;
    padding: 0.75rem;
}

.faq-nav1 li a {
    display: block;
    min-height: 100%;
    font-size: 1rem;
    line-height: 3em;
    font-weight: bold;
    color: #fff;
    text-align: center;
    background: var(--text);
    border-radius: 2rem;
    overflow: hidden;
    transition: all 0.4s;
}

.faq-nav1 li a:hover,
.faq-nav1 li a.active {
    background: var(--colour1);
}

.faq-nav1 li a img {
    width: 6rem;
    margin-bottom: 0.5rem;
}

.faq-box {
    padding: 3rem;
    border-radius: 1rem;
    background: #fff;
}

.faq-nav2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.faq-nav2 li a {
    display: inline-block;
    font-size: 1rem;
    line-height: 4rem;
    color: var(--text);
}

.faq-nav2 li a:hover {
    color: var(--colour1);
}

.faq-nav2 li a.active {
    color: var(--colour1);
    font-weight: bold;
}

.faq-list {
    display: flex;
    flex-wrap: wrap;
    margin-top: 2rem;
    margin-left: -0.75rem;
    margin-right: -0.75rem;
}

.faq-list li {
    width: 33.33%;
    padding: 0.75rem;
}

.faq-list li a {
    display: block;
    min-height: 100%;
    padding: 1.5rem;
    border: 1px solid var(--border_colour);
    background: #fff;
    border-radius: 1rem;
    
    transition: all 0.4s;
}

.faq-list li a:hover {
    border: 1px solid var(--colour1);
    box-shadow: 0 0.5rem 1.5rem -0.5rem var(--shadow);
    background: #fff;
    transform: translate( 0, -0.5rem);
}

.faq-list li a .title {
    text-align: justify;
    margin-bottom: 0.75rem;
    max-height: 3.5rem;
    display: block; display: -webkit-box;-webkit-line-clamp: 2;-webkit-box-orient: vertical;overflow: hidden;text-overflow: ellipsis;
}

.faq-list li a:hover .title {
    color: var(--colour1);
}

.faq-list li .time {
    margin-bottom: 0.75rem;
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    line-height: 16px;
    color: var(--tips_text);
}

.faq-list li .time span {
    line-height: 16px;
    vertical-align: bottom;
}

.faq-list li pre {
    text-align: justify;
    font-size: 0.9375rem;
    max-height: 4.5em;
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.faq-list li .more {
    font-size: 0.9375rem;
    line-height: 1em;
    text-align: center;
    color: var(--colour1);
}

.faq-list li .more span {
    display: inline-block;
    margin-left: 0.25rem;
    font-size: 1rem;
    width: 1.25rem;
    height: 1.25rem;
    line-height: 1.25rem;
    text-align: center;
    color: #fff;
    background: var(--colour1);
    border-radius: 50%;
}

.faq-list li a:hover .more span {
    background: var(--colour1);
}


/*图片列表--图片缩小*/

.picture-list {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.75rem;
    margin-right: -0.75rem;
}

.picture-list li {
    width: 25%;
    padding: 0.75rem;
    text-align: center;
}

.picture-list li .img {
    background: var(--grey_bg);
}

.picture-list li .img img {
    max-width: 90%;
    max-height: 90%;
    mix-blend-mode: multiply;
}


/*图片列表--图片平铺*/

.picture-list2 {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.75rem;
    margin-right: -0.75rem;
}

.picture-list2 li {
    width: 25%;
    padding: 0.75rem;
    text-align: center;
}

.picture-list2 li .img {
    background: var(--grey_bg);
    overflow: hidden;
}

.picture-list2 li .img img {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    mix-blend-mode: multiply;
}

.picture-list2 li p {
    margin: 0.5rem 0;
}

.picture-list li p {
    margin: 0.5rem 0;
}


/*新闻列表*/

.news-list-title {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.news-list-title .select>a {
    display: inline-block;
    padding: 0 1.5em;
    font-size: 1rem;
    line-height: 2.75em;
    border-radius: 0.5rem;
}

.news-list li {
    margin: 1rem 0;
}

.news-list li a {
    display: flex;
    background: #fff;
    width: 100%;
    border-radius: 1rem;
    transition: all 0.4s;
}

.news-list li a:hover {
    box-shadow: 0 0 1rem var(--shadow);
}

.news-list li .img {
    display: block;
    width: 20rem;
    height: 15rem;
    padding-bottom: 0;
    flex-shrink: 0;
    overflow: hidden;
}

.news-list li .img img {
    width: 100%;
    height: 100%;
}

.news-list li .info {
    width: calc(100% - 20rem);
    padding: 1.5rem 2.5rem;
    display: flex;
    align-items: center;
}
.news-list li .info>div {
    width: 100%;
   
}

.news-list li .title {
    display: block;
    font-weight: bold;
    color: var(--title);
    white-space:nowrap; text-overflow:ellipsis; -o-text-overflow:ellipsis; overflow:hidden;
    transition: all 0.4s;
}

.news-list li a:hover .title {
    color: var(--colour1);
}

.news-list li pre {
    text-align: justify;
    margin-bottom: 0.75rem;
    font-size: 0.9375rem;
    line-height: 1.75em;
    height: 5.5em;
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-list li .time {
    font-size: 0.9375rem;
    line-height: 16px;
    color: var(--small_text);
}

.news-list li .time span {
    line-height: 16px;
}


/*文章*/

.article-banner {
    position: relative;
    z-index: 1;
    background: var(--dark);
}

.article-banner picture,
.article-banner img {
    height: 28vw;
    opacity: 0.5;
    backdrop-filter: blur(0.5rem);
    -webkit-backdrop-filter: blur(0.5rem);
}

.article-banner .info {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 5vw;
    right: 5vw;
    transform: translate( 0, -50%);
    color: #fff;
}

.article-banner .info .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.article-banner .left {
    width: 50%;
}

.article-banner .info .title {
    margin-bottom: 0.75em;
    line-height: 1.5em;
    font-weight: bold;
    color: #fff;
}

.article-banner .info .subtitle {
    margin-top: -1rem;
    margin-bottom: 2rem;
    opacity: 0.7;
    text-transform: Uppercase;
}

.article-banner .info .time {
    opacity: 0.5;
    font-size: 1rem;
    vertical-align: middle;
}

.article-banner .info .time span {
    margin-right: 0.25rem;
    font-size: 1.25rem;
    vertical-align: middle;
}

.article-banner a.btn {
    display: inline-block;
    padding: 0 3em;
    font-size: 1rem;
    line-height: 3.5rem;
    color: #fff;
    border-radius: 2em;
    border: none;
    background: var(--colour1);
    transition: all 0.4s;
}

.article-banner a.btn:hover {
    background: var(--colour2);
}

.article-banner a.btn span {
    display: inline-block;
    margin-right: 0.25rem;
    vertical-align: bottom;
    font-size: 1.375rem;
    line-height: inherit;
}

.article {
    max-width: 75rem;
    margin: auto;
}

.article .article-head {
    border-bottom: 1px solid var(--border_colour);
    margin-bottom: 3rem;
    padding-bottom: 1rem;
}

.article .article-head .title {
    margin: 0 0 0.25rem;
}

.article .article-head .time {
    font-size: 1rem;
    color: var(--small_text);
}

.article-body {
    background: #fff;
    line-height: 1.75em;
}

.article-body p {
    line-height: 1.75em;
}

.article-body iframe {
    max-width: 100% !important;
}

.article-page {
    margin-top: 4rem;
    padding-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border-top: 1px solid var(--border_colour);
}

.article-page .back {
    width: 100%;
    margin: 0 0 0.5rem;
}

.article-page .back a {
    display: flex;
    align-items: center;
    color: var(--text);
    font-size: 1rem;
    transition: all 0.4s;
}

.article-page .back a:hover {
    color: var(--colour1);
}

.article-page .back a span {
    display: inline-block;
    margin-right: 0.5rem;
    font-size: 1.25rem;
}

.article-page a.left,
.article-page a.right {
    flex-shrink: 1;
    display:flex;
    width: 49%;
    color: var(--text);
    background: #fff;
    transition: all 0.4s;
    white-space: nowrap;
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    overflow: hidden;
}

.article-page p,
.article-page span {
    display: inline-block;
    margin: 0;
    font-size: 1rem;
    white-space: nowrap;
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    color: inherit;
    overflow: hidden;
}.article-page span {
    margin-right: 0.25rem;
    flex-shrink: 0;
}

.article-page a:hover {
    color: var(--colour1);
    transition: all 0.4s;
}


/*售后服务*/

.s-list-box {
    counter-reset: serviceListe;
}

.s-list {
    counter-reset: serviceListe2;
}

.s-list li {
    margin-top: 4.25vw;
    display: flex;
    flex-wrap: wrap;
}

.s-list li:first-child {
    margin-top: 0;
}

.s-list li .img {
    position: relative;
    z-index: 2;
    width: 50%;
    overflow: hidden;
}

.s-list li .img>div {
    width: 100%;
    height: 100%;
    animation-name: rightX2;
}

@-webkit-keyframes rightX2 {
    0% {
        -webkit-transform: translateX( 50%);
    }
    100% {
        -webkit-transform: translateX( 0%);
    }
}

@keyframes rightX2 {
    0% {
        transform: translateX( 50%);
    }
    100% {
        transform: translateX(0%);
    }
}

.s-list li .info {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    width: 50%;
    padding-right: 5%;
}

.s-list li .info:after {
    position: absolute;
    top: 6vw;
    right: 6vw;
    z-index: -1;
    counter-increment: serviceListe2 1;
    content: "0" counter(serviceListe2);
    font-family: 'en';
    font-size: 8rem;
    line-height: 1.125em;
    font-weight: 900;
    color: #fff;
    -webkit-text-stroke: 0.5px var(--colour1);
    -webkit-text-fill-color: transparent;
    opacity: 0.4;
    transform: translate( 0, -50%);
}

.s-list li .info .title {
    margin-bottom: 1.5rem;
}

.s-list li .info .title:before {
    counter-increment: serviceListe 1;
    content: "0" counter(serviceListe);
    font-family: 'en';
    font-size: inherit;
    line-height: inherit;
    font-weight: 900;
    color: inherit;
    margin-right: 0.5rem;
}

.s-list li .info p {
    position: relative;
    padding-left: 2rem;
    font-size: 1.125rem;
    line-height: 1.75em;
}

.s-list li .info p:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    border: 2px solid var(--colour1);
    opacity: 0.5;
    transition: all .4s;
}

.s-list li .info>div {
    padding: 6vw 0;
    padding-right: 8%;
}

.s-list li:nth-of-type(Odd) .info,
.s-list li:nth-of-type(even) .img {
    order: 0;
}

.s-list li:nth-of-type(even) .info,
.s-list li:nth-of-type(Odd) .img {
    order: 1;
}

.s-list li:nth-of-type(Odd) .info {
    padding-right: 6%;
}

.s-list li:nth-of-type(even) .info {
    padding-left: 6%;
}

.s-list li .info:before {
    content: "";
    position: absolute;
    z-index: -2;
    top: 0px;
    left: 0%;
    width: 50vw;
    height: 100%;
    box-shadow: 0 0 3rem var(--shadow);
    transition: all .4s;
}

.s-list li:nth-of-type(Odd) .info:before {
    content: "";
    left: auto;
    right: 0;
}


/*下载*/

.search-box {
    display: flex;
    background: var(--grey_bg);
    border-radius: 1rem;
    padding: 1.5rem 2rem;
    margin-bottom: 3rem;
}

.search-box .select {
    position: relative;
    z-index: 3;
    flex-shrink: 1;
    width: 25%;
    max-width: 20rem;
    margin-right: 1rem;
}

.search-box .select>a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
    width: 100%;
    line-height: 3em;
    height: 3em;
    font-size: 1rem;
    color: var(--text);
    border: 1px solid #ebebeb;
    background: #fff;
    border-radius: 0.5rem;
    transition: all 0.4s;
}

.search-box .select>a span {
    line-height: inherit;
    height: inherit;
    font-size: inherit;
    color: inherit;
}

.search-box form.search {
    display: flex;
    width: 100%;
}

.search-box form.search input {
    padding: 0 1rem;
    width: 100%;
    line-height: 3em;
    height: 3em;
    font-size: 1rem;
    color: var(--text);
    border: 1px solid #ebebeb;
    border-radius: 0.5rem;
    transition: all 0.4s;
}

.search-box form.search button {
    flex-shrink: 1;
    margin-left: 1rem;
    padding: 0 2em;
    width: auto;
    line-height: 2.5em;
    height: 3em;
    font-size: 1rem;
    color: #fff;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    background: var(--colour1);
    border-radius: 0.5rem;
    transition: all 0.4s;
}

.search-box form.search button:hover {
    background: var(--colour2);
}

.down-nav {
    margin: 4rem 0 2.5rem;
    display: flex;
    flex-wrap: wrap;
    border-bottom: 2px solid var(--border_colour);
}

.down-nav a {
    position: relative;
    z-index: 1;
    display: block;
    margin-right: 2rem;
    font-size: 1.125rem;
    line-height: 4em;
    color: var(--text);
    transition: all 0.4s;
}

.down-nav a:hover,
.down-nav .active a {
    color: var(--colour1);
}

.down-nav .active a {
    font-weight: bold;
}

.down-nav .active a:before {
    content: "";
    position: absolute;
    z-index: -1;
    bottom: -2px;
    left: 0%;
    width: 100%;
    height: 2px;
    background-color: var(--colour1);
    transition: all .4s;
}

.down-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.down-list li,
.down-list ol {
    display: flex;
    padding: 0 1rem;
    width: 100%;
    transition: all 0.4s;
}

.down-list ol {
    color: var(--title);
    background: var(--border_colour);
}

.down-list li:nth-of-type(even) {
    background: var(--grey_bg);
}

.down-list li:hover {
    background: var(--colour1);
}

.down-list ol>span,
.down-list li>span,
.down-list li>a {
    width: 20%;
    display: block;
    padding: 1.5rem 1rem;
    font-size: 1rem;
    line-height: 2rem;
    white-space: nowrap;
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    overflow: hidden;
    text-align: center;
    color: var(--text);
    transition: all 0.4s;
}

.down-list li:hover>span,
.down-list li:hover>a {
    color: #fff;
    opacity: 0.7;
}

.down-list li>a:hover {
    opacity: 1;
}

.down-list ol>span:first-child,
.down-list li>a:first-child {
    text-align: left;
    width: 50%;
    flex-shrink: 1;
}

.down-list li>a i {
    font-size: 1.5rem;
    color: inherit;
}


/*搜索结果*/

.search-list {
    counter-reset: searchList;
}

.search-list li {
    padding: 2rem 0;
    border-bottom: 1px solid var(--border_colour);
}

.search-list li a {
    position: relative;
    padding-left: 8rem;
    display: block;
    color: var(--text);
}

.search-list li a:after {
    position: absolute;
    top: 20%;
    left: 0;
    z-index: -1;
    counter-increment: searchList 1;
    content: "0" counter(searchList);
    font-family: 'en';
    font-size: 4rem;
    line-height: 1.125em;
    font-weight: 900;
    color: #fff;
    -webkit-text-stroke: 1px var(--colour1);
    -webkit-text-fill-color: transparent;
    opacity: 0.4;
    transform: translate( 0, -50%);
    transition: all 0.4s;
}

.search-list li a:hover:after {
    opacity: 1;
    -webkit-text-stroke: 1px var(--colour2);
    -webkit-text-fill-color: var(--colour2);
}

.search-list li a .title {
    margin-bottom: 1em;
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--colour1);
    transition: all 0.4s;
}

.search-list li a:hover .title {
    color: var(--colour2);
}

.search-list li a pre {
    display: block;
    font-size: 1rem;
    line-height: 1.75em;
    max-height: 5.25em;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-list li a span {
    font-size: 0.875rem;
    color: var(--small_text);
}


/*加入我们*/

.join-info {
    counter-reset: joinListe;
}

.join-info li {
    position: relative;
    z-index: 1;
    padding-top: 6vw;
    margin-bottom: 6vw;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.join-info li:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0px;
    left: 50%;
    width: 50vw;
    height: 100%;
    background-color: var(--grey_bg);
}

.join-info li .info {
    width: 29%;
    padding-bottom: 8rem;
}

.join-info li .title {
    position: relative;
}

.join-info li .title:before {
    counter-increment: joinListe 1;
    content: "0" counter(joinListe);
    position: absolute;
    left: 0;
    top: 50%;
    font-family: 'en';
    font-size: 8rem;
    line-height: 1.125em;
    font-weight: 900;
    color: #fff;
    -webkit-text-stroke: 0.5px var(--colour1);
    -webkit-text-fill-color: transparent;
    opacity: 0.4;
    transform: translate( 0, -50%);
}

.join-info li .info,
.join-info li .info p {
    font-size: 1.125rem;
    line-height: 2em;
}

.join-info li .img {
    width: 60%;
}

.join-info li .img a {
    display: block;
    width: 100%;
    padding-bottom: 55%;
    border-radius: 1rem;
}

.join-info li:nth-of-type(even) .info {
    order: 1;
}

.join-info li:nth-of-type(even):before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0px;
    left: 50%;
    width: 100vw;
    height: calc(100% - 5rem);
    transform: translate( -50%, 0%);
}

.join-nav {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.join-nav li {
    width: 48%;
}

.join-nav li .img {
    padding-bottom: 55%;
    border-radius: 1rem;
    overflow: hidden;
}

.join-nav li .img img {
    width: 100%;
    height: 100%;
}

.join-nav li .title {
    margin-top: 1.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    transition: all 0.4s;
}

.join-nav li:hover .title {
    color: var(--colour1);
}

.activity-list {
    -moz-column-count: 3;
    /* 多列布局 */
    -webkit-column-count: 3;
    column-count: 3;
    -moz-column-gap: 1rem;
    /* 列间距 */
    -webkit-column-gap: 1rem;
    column-gap: 1rem;
    font-size: 0px;
}

.activity-list li {
    margin-bottom: 1rem;
    position: relative;
    font-size: 1rem;
    border-radius: 0.5rem;
    overflow: hidden;
}

.activity-list .img {
    position: relative;
    overflow: hidden;
}

.activity-list .img span {
    position: absolute;
    z-index: 1;
    display: block;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 2rem 1.25rem 1.25rem;
    color: #fff;
    background: var(--img_gradient);
}

.activity-list .info {
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    color: #fff;
    padding: 1.75rem;
    background-color: var(--colour1);
    opacity: 0;
    transition: all 0.4s;
}

.activity-list .info:before {
    content: "";
    position: absolute;
    z-index: -1;
    right: -2rem;
    bottom: -2rem;
    width: 40%;
    height: 0%;
    padding-bottom: 40%;
    background: url(../images/logo-w.png) no-repeat center;
    background-size: cover;
    opacity: 0.05;
}

.activity-list li .info span {
    display: block;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.activity-list li .info p {
    line-height: 1.75rem;
    max-height: 5.25rem;
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.activity-list li:hover .info {
    opacity: 1;
    transition: all 0.4s;
}

#join {
    margin-top: 2em;
}

#join .join-head {
    display: block;
    color: #fff;
    background: var(--colour1);
    white-space: nowrap;
}

#join .join-head.collapsed {
    color: var(--text);
    background: #fff;
}

#join .join-head:hover {
    color: #fff;
    background: var(--colour1);
}

#join>.join-head {
    color: var(--colour1);
    font-weight: bold;
    border-radius: 0;
    border-left: 1px solid rgba(0, 0, 0, .125);
    border-right: 1px solid rgba(0, 0, 0, .125);
    border-bottom: 1px solid rgba(0, 0, 0, .125);
    border-top: 2px solid var(--colour1);
    background: #fff !important;
}

.join-head>div {
    display: inline-block;
    padding: 1.75rem 0;
    vertical-align: middle;
    font-size: 0.9375rem;
    text-align: center;
    white-space: normal;
    transition: all 0.4s;
}

.join-head .name {
    width: 30%;
    font-size: 1em;
    padding-left: 2em;
    text-align: left;
}

.join-head .class {
    width: 17%;
}

.join-head .place {
    width: 17%;
}

.join-head .number {
    width: 17%;
}

.join-head .time {
    width: 17%;
}

#join .card {
    border-radius: 0;
    border: none;
    border-left: 1px solid rgba(0, 0, 0, .125);
    border-right: 1px solid rgba(0, 0, 0, .125);
}

#join .card:last-child .join-head {
    border-radius: 0 0 0.5rem 0.5rem;
}

#join .card-header {
    padding: 0;
    border-radius: 0;
    background: none;
}

#join .card-body {
    padding: 3rem 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, .125);
}

#join .btn-link {
    margin-top: 3em;
    margin-bottom: 1em;
    display: inline-block;
    padding: 0 2em;
    font-size: 1em;
    line-height: 2.75em;
    color: #fff;
    background: var(--colour1);
    border-radius: 0.5rem;
    transition: all 0.4s;
}

#join .btn-link:hover {
    background: var(--colour2);
}

#join .btn-link .icon {
    font-size: 1.25rem;
}


/*联系方式*/

.contact>.container {
    display: flex;
}

.contact>.container>div {
    width: 50%;
    padding: 4vw 0;
}

.contact-info {
    line-height: 1.375em;
}

.contact-info p {
    display: flex;
}

.contact-info p strong {
    flex-shrink: 0;
}

.contact-info b,
.contact-info strong {
    color: var(--colour1);
}

.contact-follow a .icon {
    display: inline-block;
    font-size: 1.75rem;
    width: 1.75rem;
    height: 1.75rem;
    line-height: 1.75rem;
    text-align: center;
    color: var(--colour1);
    transition: all 0.4s;
}

.contact-follow a:hover .icon {
    opacity: 0.5;
}

.contact-shop a {
    position: relative;
    display: block;
    margin-bottom: 1rem;
    padding: 1.5rem;
    text-align: center;
    color: var(--text);
    background: var(--grey_bg);
    transition: all 0.4s;
}

.contact-shop a:hover {
    color: #fff;
}

.contact-shop a:before {
    content: "";
    position: absolute;
    z-index: 1;
    bottom: 0px;
    left: 0%;
    width: 100%;
    height: 0%;
    background-color: var(--colour1);
    transition: all .4s;
}

.contact-shop a:hover:before {
    height: 100%;
}

.contact-shop a span {
    position: relative;
    z-index: 2;
    display: inline-block;
    margin: 0 0.25rem;
    line-height: 2rem;
    vertical-align: middle;
}

.contact-shop a .icon {
    font-size: 1.75rem;
}


/*地图*/

#map-canvas {
    height: 50vh;
    min-height: 25rem;
    width: 100%;
    padding: 0px;
    color: #666;
}

.content-window-card {
    position: relative;
    box-shadow: none;
    bottom: 0;
    left: 0;
    width: auto;
    padding: 0;
}

.content-window-card p {
    height: 2rem;
}

.amap-icon img,
.amap-marker-content img {
    width: 25px;
    height: 34px;
}

.custom-info {
    border: solid 1px none;
    background: var(--colour1);
    border-radius: 3rem;
    overflow: hidden;
}

div.info-top {
    display: none;
    position: relative;
    background: none repeat scroll 0 0 #F9F9F9;
    border-bottom: 1px solid #CCC;
    border-radius: 5px 5px 0 0;
}

div.info-top div {
    display: inline-block;
    color: #333333;
    font-size: 14px;
    font-weight: bold;
    line-height: 31px;
    padding: 0 10px;
}

div.info-top img {
    position: absolute;
    top: 10px;
    right: 10px;
    transition-duration: 0.25s;
}

div.info-top img:hover {
    box-shadow: 0px 0px 5px #000;
}

div.info-middle {
    font-size: 12px;
    padding: 10px 15px;
    line-height: 20px;
    color: #fff;
    background: var(--colour1) !important;
    overflow: hidden;
}

div.info-bottom {
    display: none;
    height: 0px;
    width: 100%;
    clear: both;
    text-align: center;
}

div.info-bottom img {
    position: relative;
    z-index: 104;
}

.custom-info span {
    margin-left: 5px;
    font-size: 11px;
}

.info-middle img {
    float: left;
    margin-right: 6px;
}


/*地图*/


/*在线留言*/

#feedback {
    margin-top: 1.5rem;
}

.select {
    position: relative;
}

.select>div {
    position: absolute;
    z-index: 3;
    left: 0;
    right: 0;
    top: 100%;
    background: #fff;
    border: 1px solid #ebebeb;
    background: var(--grey_bg);
    margin: 0;
    padding: 0.5rem 0;
}

.feedback .select>a,
.feedback input,
.feedback select {
    display: block;
    outline: none;
    margin-bottom: 1rem;
    width: 100%;
    padding: 0px 1rem;
    font-size: 1rem;
    line-height: 3rem;
    height: 3rem;
    color: #666;
    border: none;
    background: #FFF;
    border: 1px solid rgba(0, 0, 0, .1);
    transition: all .4s;
}

.select>div a {
    color: var(--text);
    line-height: 2em;
}

.select>div a.disabled {
    opacity: 0.5;
}

.select>div a:hover {
    color: var(--colour1);
    background: #fff;
}

.feedback select {
    appearance: none;
}

.feedback .label input {
    display: none;
}

.field-name-prefix-item {
    display: inline-block;
}

.field-name-prefix-item label {
    display: block;
    margin-bottom: 18px;
    line-height: 40px;
    text-align: center;
    width: 126px;
    cursor: pointer;
    background: #FFF;
    transition: color .15s, background .15s;
}

.field-name-prefix-item input[type=radio]:checked+label {
    color: #fff;
    background: var(--colour1);
}

.form-control {
    border: 1px solid #ebebeb;
    line-height: 44px;
    height: 44px;
    width: 100%;
    padding: 0px 15px;
    margin: 10px 0px;
    border-radius: none;
    box-shadow: 0;
}

.feedback textarea {
    border: none;
    font-size: 1rem;
    line-height: 1.5em;
    width: 100%;
    height: 120px;
    padding: 0.75rem 1rem;
    margin: 0 0px 10px;
    outline: none;
    box-shadow: none;
    overflow-x: hidden;
    background: #FFF;
    border: 1px solid rgba(0, 0, 0, .1);
}

.choice-privacy {
    margin-bottom: 20px;
}

.choice-privacy input {
    margin-bottom: 3px;
    margin-right: 6px;
    display: inline-block;
    width: 16px;
    height: 16px;
    vertical-align: middle;
}

.choice-privacy input[type=radio]:checked~label {
    background: var(--colour1);
}

.choice-privacy label a {
    color: #666;
    text-decoration: underline;
}

.choice-privacy label a:hover {
    color: var(--colour1);
    text-decoration: underline;
}

.feedback .submit {
    display: inline-block;
    padding: 0px 4em;
    background: var(--text);
    font-size: 1rem;
    line-height: 3rem;
    color: #fff;
    margin: 15px 0px;
    border-radius: 2rem;
    transition: all .3s;
}

.feedback .submit:hover {
    background: var(--colour1);
    box-shadow: 0 0.75rem 1.5rem -0.5rem var(--shadow2);
}

.feedback .submit span {
    display: inline-block;
    font-size: 20px;
    line-height: inherit;
    color: #fff !important;
    vertical-align: bottom;
}


/*动画匀速延迟*/

.p-app .nav-tabs li:nth-of-type(2),
.solution-list .owl-dots .owl-dot:nth-of-type(2),
.logo-list li:nth-of-type(2),
.logo-list li:nth-of-type(5n+2) {
    -webkit-animation-delay: 0.1s;
    animation-delay: 0.1s;
}

.p-app .nav-tabs li:nth-of-type(3),
.solution-list .owl-dots .owl-dot:nth-of-type(3),
.logo-list li:nth-of-type(3),
.logo-list li:nth-of-type(5n+3) {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

.p-app .nav-tabs li:nth-of-type(4),
.solution-list .owl-dots .owl-dot:nth-of-type(4),
.logo-list li:nth-of-type(4),
.logo-list li:nth-of-type(5n+4) {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.2s;
}

.p-app .nav-tabs li:nth-of-type(5),
.solution-list .owl-dots .owl-dot:nth-of-type(5),
.logo-list li:nth-of-type(5),
.logo-list li:nth-of-type(5n+5) {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.2s;
}

.p-app .nav-tabs li:nth-of-type(6),
.solution-list .owl-dots .owl-dot:nth-of-type(6) {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.2s;
}

.p-app .nav-tabs li:nth-of-type(7),
.solution-list .owl-dots .owl-dot:nth-of-type(7) {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.2s;
}

.p-app .nav-tabs li:nth-of-type(8),
.solution-list .owl-dots .owl-dot:nth-of-type(8) {
    -webkit-animation-delay: 0.7s;
    animation-delay: 0.7s;
}