@charset "utf-8";

/* CSS Document */

* {
    outline: none;
}


/*主题*/

:root {
    --head_height: 5rem;
    --colour1: #197dff;
    --colour2: #c2d9ff;
    --colour3: #0067ed;
    --dark: #2d2e30;
    --text: #666;
    --small_text: #999;
    --tips_text: #ccc;
    --grey_bg: #f5f5f5;
    --shadow: rgb(40, 43, 109, 0.08);
}

body {
    margin: 0px;
    padding: 0px;
    background: #fff;
    position: relative;
}

body.index {
    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: normal;
    font-size: 16px;
    color: var(--text);
}

.font-en {
    font-family: 'en', Arial, "微软雅黑", Microsoft YaHei;
    font-weight: 900;
}

@font-face {
    font-family: 'en';
    src: local('☺'), url(../font/HelveticaNeueLTPro-HvCn.otf);
    font-weight: 900;
    font-style: normal;
}

.title {
    color: var(--dark);
}

.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
}

a {
    text-decoration: none;
}

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);
}

h1,
.h1 {
    font-size: 3rem;
}

h2,
.h2 {
    font-size: 2.5rem;
}

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;
}

i {
    font-weight: normal;
}

hr {
    border: none;
    border-top: 1px solid #ebebeb;
    margin: 1.5rem 0px;
}

img {
    max-width: 100%;
}

p {
    line-height: 1.75em;
}

pre {
    display: block;
    border: none;
    background: none;
    line-height: 1.75em;
    color: var(--text);
    padding: 0px;
    white-space: pre-wrap;
    font-family: Arial, "微软雅黑", Microsoft YaHei;
}

section {
    max-width: 100vw;
    background: #fff;
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #ebebeb;
}


/*滚动条背景*/

::-webkit-scrollbar-thumb {
    background: var(--colour1);
}


/*滚动条设置*/


/*表单*/

form>div {
    margin-bottom: 1rem;
}

form>div:last-child {
    margin-bottom: 0;
}

form div.row {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
}

form div.row>div {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

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: 1430px;
    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;
}

.video-box {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 0px;
    padding-bottom: 56.25%;
    background: #000;
}

.video-box:before {
    content: "\e6b1";
    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: "\e6b1";
    background-color: var(--colour2);
}

.video-box.play:before {
    content: "\e6b1";
    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;
}


/*边距盒子*/

.padding-box {
    padding-top: 12vh;
    padding-bottom: 12vh;
}

.padding-top {
    padding-top: 12vh;
}

.padding-bottom {
    padding-bottom: 12vh;
}

.small-padding-box {
    padding-top: 10vh;
    padding-bottom: 10vh;
}

.small-padding-top {
    padding-top: 10vh;
}

.small-padding-bottom {
    padding-bottom: 10vh;
}

.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;
}


/*横线*/

.line {
    margin: 1rem 0;
    display: block;
    width: 2rem;
    height: 0.1125rem;
    line-height: 1px;
    font-size: 0px;
    background: var(--colour1);
}


/*内页翻页*/

.page-box {
    padding-top: 30px;
}

.page {
    font-size: 0;
    color: var(--text);
}

.page a {
    display: inline-block;
    margin: 0 0.25rem;
    width: 2.75rem;
    height: 2.75rem;
    line-height: 2.75rem;
    font-size: 1rem;
    text-align: center;
    color: var(--text);
    background: var(--grey_bg);
    transition: all .4s;
}

.page a.active {
    font-weight: bold;
    color: #fff!important;
    background: var(--text);
}

.page a.next,
.page a.prev {
    width: auto;
    margin: 0 0.75rem;
    font-size: 0.875rem;
    padding: 0 1.75em;
    font-weight: normal;
}

.page a:first-child,
.page a:last-child {}

.page input {
    display: inline-block;
    width: 4rem;
    padding: 0px 10px;
    margin-left: 1.125rem;
    font-size: 0.9375rem;
    line-height: 3rem;
    color: #666;
    border: none;
    box-shadow: 0 0 1px #999 inset;
    overflow: hidden;
    transition: all .4s;
}

.page button {
    padding: 0 1.5rem;
    margin: 0px;
    border: none;
    font-size: 0.9375rem;
    line-height: 3rem;
    color: #666;
    background: #f2f2f2;
    cursor: pointer;
    transition: all .4s;
}

.page a:hover,
.page button:hover {
    color: #fff;
    background: var(--colour1);
}


/*头部*/

#head {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    box-shadow: 0 0 1rem rgba(29, 37, 48, 0.07);
    color: var(--text);
    border-bottom: hidden;
    background: rgba(255, 255, 255, 1);
    transition: all 0.6s;
}


/*头部标志*/

.head-conent {
    display: flex;
    padding: 0 5%;
    width: 100%;
    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 {
    max-width: none;
    height: 56%;
}

.navbar-brand>div {
    margin-left: 0.75rem;
    font-size: 1.25rem;
    color: var(--dark);
    white-space: nowrap;
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    overflow: hidden;
}


/*头部按钮*/

.head-wap-btn {
    display: flex;
    justify-content: flex-end;
    height: 100%;
}

.head-wap-btn .dropdown a {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 0.75rem;
    font-size: 0.875rem;
    line-height: 2em;
    color: var(--text);
}

.head-wap-btn .dropdown:hover a {
    color: var(--colour1);
}

.top .head-wap-btn .dropdown a {
    color: #fff;
}

.top .head-wap-btn .dropdown:hover a {
    color: #fff;
}

.top.menu-open .head-wap-btn .dropdown:hover a {
    color: #fff;
}

.top.menu-open .head-wap-btn .dropdown a {
    color: var(--text);
}

.top.menu-open .head-wap-btn .dropdown:hover a {
    color: var(--colour1);
    opacity: 1;
}

.head-wap-btn .dropdown a span {
    display: inline-block;
    font-size: 1.5rem;
    color: inherit;
}

.head-wap-btn .dropdown-menu {
    padding: 0.5rem;
    left: auto;
    right: 0;
}

.head-wap-btn .dropdown-menu .title {
    padding: 0 0.5rem;
    font-size: 1.375rem;
    line-height: 1.5rem;
    white-space: nowrap;
}

.navbar-toggler {
    width: var(--head_height);
    background: var(--colour1);
    color: #fff;
    border-radius: 0;
    border: none;
    margin-left: 1rem;
}

.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 {
    height: 100%;
}

#head .navbar-nav {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    height: 100%;
    padding: 0 1%;
}

#head .navbar-nav li {
    display: flex;
    align-items: center;
    margin: 0 0.5rem;
    height: 100%;
}

#head .navbar-nav li>a {
    position: relative;
    z-index: 1;
    display: block;
    padding: 0 1.5em;
    font-size: 1rem;
    line-height: 38px;
    color: inherit;
    text-align: center;
    border-radius: 0.25rem;
}

#head .navbar-nav li:hover>a {
    color: var(--colour1);
}

#head .navbar-nav .dropdown-menu {
    padding: 0.5rem 0;
    border: none;
    box-shadow: 0 0.25rem 0.5rem var(--shadow);
}

#head .navbar-nav .dropdown-menu a {
    display: block;
    padding: 0 0.75rem;
    font-size: 0.9375rem;
    line-height: 2.75em;
    text-align: center;
    color: var(--text);
    border-bottom: 1px solid var(--grey_bg);
    transition: all 0.4s;
}

#head .navbar-nav .dropdown-menu a:last-child {
    border-bottom: none;
}

#head .navbar-nav .dropdown-menu a:hover {
    color: var(--colour1);
    background: none;
}


/*头部搜索*/

#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: 2rem;
    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);
    padding-left: 4vw;
    background: #fff;
}

#wap-menu .menu-head .menu-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: inherit;
}

#wap-menu .menu-head .menu-logo img {
    max-width: none;
    height: 65%;
}

#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 {
    height: calc(100vh - var(--head_height));
    padding: 4vw;
    overflow-y: auto;
    border-top: 1px solid #ebebeb;
}

#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: 3rem;
    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.5rem;
    color: var(--text);
}

#wap-menu .menu-search input {
    font-weight: 800;
    line-height: 1.25em;
}

#wap-menu .menu-search button {
    padding: 0 0.5rem;
}

#wap-menu .menu-search button span {
    font-size: inherit;
    color: inherit;
}

#wap-menu .navbar-nav {
    padding: 0;
}

#wap-menu .navbar-nav>li>a {
    display: block;
    padding: 0.75rem 0;
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.5em;
    color: var(--dark);
}

#wap-menu .navbar-nav a:focus {
    color: var(--colour1);
}

#wap-menu .navbar-nav>li>div {
    padding: 0;
    border-radius: 0;
    border: none;
}

#wap-menu .navbar-nav>li>div>a {
    display: block;
    padding: 0.5rem;
    font-size: 0.9375rem;
    color: var(--text);
    font-weight: bold;
}

#wap-menu .navbar-nav>li>div>div {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 0.5rem;
}

#wap-menu .navbar-nav>li>div>div>a {
    display: block;
    width: 50%;
    padding: 0.5rem;
    font-size: 0.8375rem;
    color: var(--small_text);
}

#wap-menu .navbar-nav>li>div>div>a:before {
    content: "●  ";
}

#wap-menu .menu-subnav {
    margin-top: 2rem;
}

#wap-menu .menu-subnav li>a {
    display: inline-block;
    padding: 0.5rem 0;
    font-size: 1.125rem;
    color: var(--dark);
    font-weight: bold;
}

#wap-menu .menu-subnav li .subnav a {
    display: block;
    padding: 0.375rem 0;
    font-size: 0.9375rem;
    color: #999;
}


/*head end*/


/*首页导航特别设置*/

.top #head {
    background: rgba(255, 255, 255, 0);
    box-shadow: 0 0 1rem rgba(29, 37, 48, 0);
}

.top #head:hover {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 0 1rem rgba(29, 37, 48, 0.07);
}

.top #head .navbar-brand {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
    transition: all 0.4s;
}

.top #head .navbar-nav li>a {
    color: #fff;
}

.top #head:hover .navbar-nav li>a {
    color: var(--text);
}

.top #head:hover .navbar-nav li:hover>a {
    color: var(--colour1);
}

.top.menu-open #head {
    background: rgba(255, 255, 255, 1);
}

.top.menu-open #head .navbar-brand,
.top #head:hover .navbar-brand {
    -webkit-filter: brightness(1) invert(0);
    filter: brightness(1) invert(0);
}

.top #head:hover .head-wap-btn .dropdown a {
    color: var(--text);
}

.top #head:hover .head-wap-btn .dropdown a:hover {
    color: var(--colour1);
}


/*banner*/

#banner {
    position: relative;
    overflow: hidden;
}

#banner .item {
    position: relative;
    z-index: 1;
    background-color: #000;
}

#banner a {
    display: block;
    font-size: 0;
}

#banner .item .info {
    position: absolute;
    z-index: 1;
    left: 10%;
    right: 10%;
    bottom: 50%;
    line-height: 1.375em;
    color: #fff;
    transform: translate(0%, 50%);
}

#banner .item .btn {
    padding: 0;
    border: none;
    margin-bottom: 3rem;
}

#banner .item .btn a span {
    display: inline-block;
    padding: 0 1.5em;
    font-size: 1.25rem;
    line-height: 2.5em;
    text-align: center;
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    transition: all 0.4s;
}

#banner .item .btn a:hover span {
    background: var(--colour1);
}

#banner .item .text {
    text-shadow: 0 0 4em rgba(0, 0, 0, 0.5);
}

#banner .info .title {
    margin-bottom: 0;
    line-height: 1.25em;
    color: #fff;
    text-transform: Uppercase;
}

#banner .info .subtitle {
    margin-bottom: 0.5rem;
    font-size: 2.5rem;
    line-height: 1.25em;
    color: #fff;
}

#banner .info p {
    margin-bottom: 0;
    font-size: 1.5rem;
}

#banner .info span {
    font-size: 0.875rem;
    opacity: 0.8;
}

#banner picture,
#banner img {
    width: 100%;
}

#banner a {
    display: block;
    position: relative;
}

#banner video {
    width: 100vw;
    height: 100vh;
    opacity: 0.7;
}

#banner .owl-nav {
    margin: 0;
}

#banner .owl-nav [class*=owl-] {
    position: absolute;
    z-index: 3;
    top: 50%;
    transform: translate(0%, -50%);
}

#banner .owl-nav [class*=owl-].owl-prev {
    left: 5%;
}

#banner .owl-nav [class*=owl-].owl-next {
    right: 5%;
}

#banner .owl-nav i {
    display: inline-block;
    width: 3.5rem;
    height: 3.5rem;
    line-height: 3.5rem;
    font-size: 1.5rem;
    text-align: center;
    color: #fff;
    background: var(--colour1);
    border-radius: 50%;
    transition: all 0.4s;
}

#banner .owl-nav i:hover {
    background: var(--colour2);
}

#banner .owl-dots {
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    bottom: 6%;
    margin: auto;
    text-align: center;
}

#banner.owl-progress .owl-dots .owl-dot span {
    background: #fff;
}

#banner.owl-progress .owl-dot.active svg circle.dotsvg1 {
    stroke: #fff;
}


/*
#banner picture,#banner img{
	width: 100%;
	height: calc(100vh - var(--head_height));
}
*/


/*按钮*/

a.index-btn {
    margin-top: 3.5rem;
    position: relative;
    display: inline-block;
    padding: 0 3em;
    font-size: 1rem;
    font-weight: bold;
    color: var(--colour1);
    line-height: 2.75em;
    border-radius: 2em;
}

a.index-btn:before {
    content: "";
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0%;
    width: 100%;
    height: 100%;
    border-radius: 2em;
    border: 0.2rem solid var(--colour1);
}

a.index-btn:after {
    content: "";
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0%;
    width: 100%;
    height: 100%;
    border-radius: 2em;
    border-top: 0.25rem solid var(--colour2);
    border-bottom: 0.25rem solid var(--colour2);
    transition: all .4s;
}

a.index-btn:hover:after {
    content: "";
    left: 50%;
    width: 0%;
    height: 100%;
    border-radius: 0;
}

.colour-img {
    position: relative;
    overflow: hidden;
}

.colour-img::after {
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 1.125rem;
    background-image: -moz-linear-gradient(70deg, rgba(0, 90, 235, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
    background-image: -webkit-linear-gradient(70deg, rgba(0, 90, 235, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
    background-image: -ms-linear-gradient(70deg, rgba(0, 90, 235, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
    position: absolute;
    top: 0;
    left: 0;
}

.index-info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.index-info>div {
    width: 100%;
}

.index-info .img {
    width: 45%;
    border-radius: 1.125rem;
    overflow: hidden;
}

.index-info .info {
    width: 48%;
}


/*首页产品*/

.index-p {
    overflow: hidden;
}

.index-p-show .owl-item {
    padding: 1rem;
}

.index-p-show .item {
    text-align: center;
}

.index-p-show .item .img {
    background: var(--grey_bg);
    border-radius: 1rem;
    transition: all 0.4s;
}

.index-p-show .item .img img {
    max-width: 80%;
    max-height: 80%;
}

.index-p-show .item .info {
    margin-top: 1.5rem;
}

.index-p-show .item span {
    font-size: 1.25rem;
    color: var(--text);
    transition: all 0.4s;
}

.index-p-show .item:hover .img {
    background: #fff;
    box-shadow: 0 0.5rem 1rem var(--shadow);
}

.index-p-show .item:hover span {
    color: var(--colour1);
}

.owl-carousel.index-p-show .owl-nav {
    margin-top: 0;
}

.owl-carousel.index-p-show .owl-nav [class*=owl-] {
    position: absolute;
    z-index: 2;
    top: 50%;
}

.owl-carousel.index-p-show .owl-nav [class*=owl-].owl-prev {
    left: 0;
    transform: translate(-175%, -50%);
}

.owl-carousel.index-p-show .owl-nav [class*=owl-].owl-next {
    right: 0;
    transform: translate(175%, -50%);
}


/*首页客户*/

.custom-box {
    background: url(../images/custom-bg.jpg) center no-repeat, var(--grey_bg);
}

.custom-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
}

.custom-list li {
    width: 16.6666%;
    padding: 0.5rem;
}

.custom-list li a {
    display: block;
    width: 100%;
    height: 0;
    padding-bottom: 61.8%;
    position: relative;
    background: #fff;
    border-radius: 0.25rem;
    overflow: hidden;
}

.custom-list li a>div {
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    transition: all 0.4s;
}

.custom-list li a>div.info {
    z-index: 2;
    opacity: 0;
    background: var(--colour1);
    color: #fff;
    font-weight: bold;
}

.custom-list li a:hover>div.info {
    opacity: 1;
}


/*首页新闻*/

.index-n-title {
    margin-bottom: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.index-n-title .more {
    display: inline-block;
    padding: 0 2em;
    font-size: 0.875rem;
    line-height: 2.75em;
    color: #fff;
    background: var(--colour1);
    transition: all 0.4s;
}

.index-n-title .more:hover {
    background: var(--colour2);
}

.index-news {
    display: flex;
    justify-content: space-between;
}

.index-news>div,
.index-news>ul {
    display: block;
    width: 31%;
}

.index-news .img {
    width: 100%;
    border-radius: 0.5rem;
}

.index-news .title {
    display: block;
    font-size: 1.125rem;
    font-weight: bold;
    color: var(--dark);
    transition: all 0.4s;
}

.index-news .img {
    display: block;
    overflow: hidden;
}

.index-news span {
    margin: 0.5rem 0;
    display: inline-block;
    font-size: 0.875rem;
    line-height: 1em;
    color: var(--tips-text);
}

.index-news .hr {
    margin: 1.75rem 0;
    position: relative;
    width: 100%;
    height: 0.1875rem;
    background: var(--grey_bg);
}

.index-news .hr:before {
    content: "";
    position: absolute;
    z-index: 1;
    top: 0px;
    left: 0%;
    width: 3rem;
    height: 100%;
    background-color: var(--colour1);
}

.index-news pre {
    font-size: 0.9375rem;
    line-height: 1.5em;
    max-height: 6em;
    color: var(--text);
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.index-news .more {
    position: absolute;
    z-index: 2;
    bottom: 2.5rem;
    display: inline-block;
    font-size: 0.875rem;
    line-height: 2.5em;
    color: var(--small_text);
    border-radius: 0.25rem;
    transition: all 0.4s;
}

.index-news .more:after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0px;
    left: 0%;
    width: 0%;
    height: 100%;
    background-color: var(--colour1);
    border-radius: 0.25rem;
    transition: all .4s;
}

.index-news .one {
    position: relative;
}

.index-news .one .img {
    margin-bottom: 1rem;
}

.index-news .tow {
    position: relative;
    padding: 2.5rem;
    border-radius: 1rem;
    background: var(--grey_bg);
}

.index-news li {
    display: flex;
    flex-wrap: wrap;
    padding: 1.5rem 0;
    width: 100%;
    border-bottom: 1px solid #ebebeb;
    transition: all 0.4s;
}

.index-news li:first-child {
    border-top: 1px solid #ebebeb;
}

.index-news li .img {
    width: 35%;
    overflow: hidden;
}

.index-news li .info {
    width: 65%;
    padding: 0 1rem;
}

.index-news li .info .title {
    font-size: 1rem;
}

.index-news .one:hover .title,
.index-news .tow:hover .title,
.index-news li:hover .info .title {
    color: var(--colour1);
}

.index-news .one:hover .title:hover,
.index-news .tow:hover .title:hover,
.index-news li:hover .info .title:hover {
    color: var(--colour2);
}

.index-news .one .more {
    bottom: 0;
}

.index-news .one:hover .more,
.index-news .tow:hover .more {
    color: #fff;
    padding: 0 1.5em;
}

.index-news .one:hover .more:after,
.index-news .tow:hover .more:after {
    content: "";
    width: 100%;
}

.index-news .one:hover .more:hover:after,
.index-news .tow:hover .more:hover:after {
    content: "";
    background: var(--colour2);
}


/*页脚*/

#foot {
    background: url(../images/foot-bg.jpg) center no-repeat;
    background-size: cover;
    /*background: linear-gradient(to right, var(--colour1), var(--colour3));*/
    color: #fff;
}

#foot .foot-contact {
    display: flex;
    justify-content: space-between;
    padding-top: 3rem;
    padding-bottom: 3rem;
    font-size: 0.9375rem;
    line-height: 1.5rem;
}

#foot p {
    margin-bottom: 0;
    opacity: 0.8;
}

#foot .h4 {
    margin-bottom: 1rem;
}

#foot a {
    opacity: 0.8;
    color: inherit;
    transition: all 0.4s;
}

#foot a:hover {
    opacity: 1;
    text-decoration: underline;
}

#foot .nav-list {
    margin-bottom: 2rem;
}

#foot .nav-list a {
    display: inline-block;
    padding: 0 2rem;
    line-height: 1rem;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

#foot .nav-list a:first-of-type {
    padding-left: 0;
}

#foot .code {
    display: flex;
    font-size: 0.875rem;
}

#foot .code>div {
    padding: 0 0.25rem;
}

#foot .code img {
    margin-bottom: 0.5rem;
    max-width: 7.5rem;
}

#foot .code span {
    opacity: 0.6;
}

#foot .foot-copyright>div {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.875rem;
    padding: 1rem 0;
    width: 100%;
    font-size: 0.875rem;
}

#foot .back-top {
    position: fixed;
    z-index: 10;
    right: 4%;
    bottom: 20%;
    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;
    transition: all 0.6s;
}

.top #foot .back-top {
    opacity: 0;
}

#foot .back-top:hover {
    background: var(--colour2);
    cursor: pointer;
}


/*内页开始*/

.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;
    width: 100%;
    height: 100%;
    color: #fff;
}

.inside-banner .info .title {
    line-height: 1.25em;
    color: #fff;
}

.inside-banner .info .subtitle {
    margin-bottom: 0.5em;
    text-transform: Uppercase;
    color: #fff;
}

.inside-banner .info p {
    margin: 0.75rem 0 0;
    max-width: 40rem;
    font-size: 1.125rem;
}

.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;
}

.breadcrumb {
    position: absolute;
    z-index: 3;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0px;
    margin: 0;
    background: none;
}

.breadcrumb>div {
    font-size: 0px;
}

.breadcrumb a {
    display: inline-block;
    font-size: 0.875rem;
    line-height: 3.5rem;
    color: #fff;
    transition: all .4s;
}

.breadcrumb a:hover {
    color: var(--colour1);
}

.breadcrumb a:not([href]):not([tabindex]) {
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb a:after {
    content: ">";
    margin: 0 5px;
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb a:not([href]):not([tabindex]):after {
    content: "";
}


/*内页内容框架*/

.inside-body {
    display: flex;
    flex-wrap: wrap;
}

.inside-body .left {
    width: 12rem;
}

.inside-body .left ul li {
    margin: 0.125rem 0;
}

.inside-body .left ul li>a {
    display: block;
    padding: 0 1.5em;
    font-size: 1.125rem;
    line-height: 3em;
    color: #fff;
    background: var(--colour1);
    transition: all 0.4s;
}

.inside-body .left ul li>a:hover {
    border-left: 0.375rem solid var(--colour2);
}

.inside-body .left ul li.on>a:hover {
    border-left: none;
}

.inside-body .left ul li.on>a {
    background: var(--colour2);
}

.inside-body .left .subnav {
    margin-bottom: 0.5rem;
}

.inside-body .left .subnav a {
    display: block;
    margin: 0.125rem 0;
    padding: 0 2rem;
    font-size: 0.9375rem;
    line-height: 2.75em;
    color: var(--text);
    background: var(--grey_bg);
    transition: all 0.4s;
}

.inside-body .left .subnav a:hover {
    border-left: 0.25rem solid var(--colour2);
    color: var(--colour2);
}

.inside-body .left .subnav a.on {
    color: var(--colour2);
    border-left: 0.25rem solid var(--colour2);
}

.inside-body .right {
    width: calc(100% - 12rem);
    padding-left: 5%;
}

.proudct-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top: 3rem;
}

.proudct-nav li {
    width: 48.5%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 3%;
    background: var(--grey_bg);
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.4s;
}

.proudct-nav li:last-child {
    margin-bottom: 0;
}

.proudct-nav li .img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
    transition: all 0.4s;
    overflow: hidden;
}

.proudct-nav li .img img {
    mix-blend-mode: multiply;
}

.proudct-nav li .info {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
    padding: 5%;
}

.proudct-nav li .info>div {
    width: 100%;
    transition: all 0.6s;
}

.proudct-nav li .info .title {
    line-height: 1.5em;
    color: #333;
    transition: all 0.6s;
}

.proudct-nav li .info .title:hover {
    color: var(--colour1);
}

.proudct-nav li .info pre {
    color: var(--text);
    font-size: 1rem;
    line-height: 1.75em;
    height: 5.25em;
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.proudct-nav li .info .more {
    display: inline-block;
    padding: 0 1.5em;
    margin-top: 2rem;
    font-weight: bold;
    font-size: 0.875rem;
    line-height: 3em;
    border: 1px solid #ebebeb;
    border-radius: 2em;
    color: var(--text);
    transition: all 0.4s;
}

.proudct-nav li:hover .info .more {
    color: var(--colour1);
    border: 1px solid var(--colour1);
}

.proudct-nav li .info .more:hover {
    padding: 0 2em;
    background: var(--colour1);
    border: 1px solid var(--colour1);
    color: #fff;
}

.proudct-nav li.onepage {
    width: 100%;
}

.proudct-nav li.onepage .img {
    width: 65%;
}

.proudct-nav li.onepage .info {
    width: 35%;
}


/*产品列表*/

.product-list {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.75rem;
    margin-right: -0.75rem;
}

.product-list li {
    width: 50%;
    padding: 0.75rem;
}

.product-list li>div {
    display: flex;
    flex-wrap: wrap;
    box-shadow: 0px 0.75rem 2rem 0.125rem rgb(40, 43, 109, 0.08);
    border-radius: 1rem;
}

.product-list li>div .info {
    width: 55%;
    padding: 2rem;
}

.product-list li>div .info .title {
    display: block;
    margin-bottom: 1rem;
    transition: all 0.4s;
}

.product-list li>div:hover .info .title {
    color: var(--colour1);
}

.product-list li>div:hover .info .title:hover {
    color: var(--colour3);
}

.product-list li>div pre {
    margin-bottom: 2rem;
    font-size: 1rem;
    line-height: 1.75em;
    color: var(--text);
}

.product-list li>div .more {
    margin: 1em 0;
    display: inline-block;
    padding: 0 2em;
    font-size: 0.875rem;
    line-height: 2.75em;
    color: var(--text);
    background: var(--grey_bg);
    border-radius: 2em;
    transition: all 0.4s;
}

.product-list li>div:hover .more {
    color: #fff;
    background: var(--colour2);
}

.product-list li>div:hover .more:hover {
    color: #fff;
    background: var(--colour3);
}

.product-list li>div .img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45%;
    padding: 1rem;
}


/*产品详情*/

.product {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.product .img {
    width: 45%;
}

#product-img {
    position: sticky;
    top: calc(3rem + var(--head_height));
}

#product-img .owl-stage {
    display: flex;
}

#product-img .item {
    background: var(--grey_bg);
}

#product-img .item img {
    mix-blend-mode: multiply;
}

#product-img .item,
#product-img .item a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100%;
    cursor: zoom-in;
}

#product-img .owl-dots {
    text-align: left;
    margin-left: -0.125rem;
    margin-right: -0.125rem;
}

#product-img .owl-dot {
    width: 19%;
    padding: 0.125rem!important;
    margin: 0.5%;
    opacity: 0.5;
    border: 1px solid #ebebeb;
    transition: all 0.4s;
}

#product-img .owl-dot.active {
    opacity: 1;
    border: 1px solid var(--colour1);
}

.product .info {
    width: 48%;
}

.product .info a:hover {
    color: var(--colour1);
}

.product .info a.product-contact-btn {
    display: block;
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    line-height: 1.5em;
    font-weight: bold;
    text-align: center;
    color: #fff;
    border-radius: 0.25rem;
    background: var(--colour1);
    transition: all 0.4s;
}

.product .info a.product-contact-btn:hover {
    background: var(--colour2);
}

.product .info a.product-contact-btn span {
    display: inline-block;
    margin-right: 0.25rem;
    font-size: 1.5rem;
    line-height: 1em;
    vertical-align: middle;
    font-weight: normal;
}

.product .info .alert a {
    color: var(--colour1);
    transition: all 0.4s;
}

.product .info .alert a:hover {
    color: var(--colour2);
}

.product .info table {
    width: 100%;
}

a.product-btn {
    display: block;
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
    line-height: 2rem;
    color: #fff;
    background: var(--colour1);
    border-radius: 0.25rem;
    transition: all 0.4s;
}

a.product-btn span {
    font-size: 1.75rem;
    line-height: 2rem;
    vertical-align: bottom;
}

a.product-btn:hover {
    color: #fff;
    background: var(--colour2);
}


/*关于*/

.about {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.about .info {
    width: 50%;
}

.about .img {
    width: 40%;
    border-radius: 1rem;
}

.info-list {
    display: flex;
    flex-wrap: wrap;
    margin-left: -1rem;
    margin-right: -1rem;
}

.info-list li {
    width: 33.33%;
    padding: 1rem;
}

.info-list li>div {
    min-height: 100%;
    padding: 1.5rem 2rem;
    background: #fff;
    box-shadow: 0px 1rem 2rem 0.125rem rgb(40, 43, 109, 0.08);
    border-radius: 1rem;
}

.info-list li>div p:first-of-type {
    margin-bottom: 0;
}

.about-data {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.about-data li {
    padding: 2rem;
    color: #fff;
}

.about-data li:nth-of-type(Odd) {
    background: var(--colour1);
}

.about-data li:nth-of-type(even) {
    background: var(--colour3);
}

.about-data div {
    white-space: nowrap;
}

.about-data span {
    display: inline-block;
    margin-left: 0.5em;
    font-weight: bold;
}

.about-data small {
    display: block;
    white-space: nowrap;
}


/*图片--缩小*/

.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 {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.875rem;
    margin-right: -0.875rem;
}

.news-list li {
    width: 33.33%;
    padding: 0.875rem;
}

a.news-img {
    display: block;
    overflow: hidden;
}

.news-list li>div {
    position: relative;
    display: block;
    min-height: 100%;
    background: var(--grey_bg);
    overflow: hidden;
    border-radius: 0.5rem;
    transition: all .4s;
}

.news-list li>div:hover {
    background: #fff;
    box-shadow: 0px 0.75rem 2rem 0.125rem rgb(40, 43, 109, 0.08);
}

.news-list-text {
    padding: 2rem;
}

a.news-list-title {
    margin-top: 0.25rem;
    margin-bottom: 1.5rem;
    display: block;
    font-size: 1.125rem;
    line-height: 1.25em;
    color: #333;
    font-weight: bold;
    white-space: nowrap;
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    overflow: hidden;
    transition: all .4s;
}

.news-list li div:hover a.news-list-title {
    color: var(--colour1);
}

.news-list span {
    font-family: "en";
    font-weight: bold;
    font-size: 0.875rem;
    line-height: 1.25em;
    color: var(--tips-text);
}

.news-list li div:hover span {
    font-family: "en";
    font-weight: bold;
    font-size: 0.875rem;
    line-height: 1.25em;
    color: var(--colour1);
}

.news-list pre {
    margin: 0.75rem 0 1rem;
    font-size: 0.9375rem;
    line-height: 1.75em;
    height: 7em;
    color: #666;
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-list a.more {
    margin-top: 2rem;
    display: inline-block;
    padding: 0 1.5em;
    font-size: 0.75rem;
    line-height: 2.5em;
    color: #999;
    background: #fff;
    border-radius: 2em;
    transition: all 0.4s;
}

.news-list li:hover a.more {
    color: #fff;
    background: var(--colour2);
}

.news-list li:hover a.more:hover {
    color: #fff;
    background: var(--colour1);
}


/*新闻详情*/

.news {}

.news .news-head {
    margin-bottom: 3rem;
}

.news .news-head small {
    font-size: 0.875rem;
    color: var(--small_text);
}

.news-page {
    margin-top: 3rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.news-page a {
    display: inline-block;
    width: 49%;
    padding: 1.5rem;
    color: var(--text);
    background: var(--grey_bg);
    transition: all 0.4s;
}

.news-page a:hover {
    box-shadow: 0 0 1rem rgba(29, 37, 48, 0.07);
    background: #fff;
    transition: all 0.4s;
}

.news-page a p {
    margin: 0;
    white-space: nowrap;
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    overflow: hidden;
}

.news-page a:hover p {
    color: var(--colour1);
}

.news .right {
    flex-shrink: 0;
    width: 18rem;
    padding-left: 4rem;
}

.news .right li {
    margin-bottom: 1.5rem;
}

.news .right a .img {
    margin-bottom: 0.75rem;
    border-radius: 0.5rem;
    overflow: hidden;
}

.news .right a small {
    font-size: 0.875rem;
    color: var(--small_text)
}

.news .right a p {
    color: var(--text);
    transition: all 0.4s;
}

.news .right a:hover p {
    color: var(--colour1);
}


/*问题*/

#faq {
    max-width: 1200px;
    margin: auto;
}

#faq .panel {
    position: relative;
    margin: 1rem 0px;
    border: none;
    box-shadow: none;
    background: #fff;
    box-shadow: 0px 0.75rem 2rem 0.125rem rgb(40, 43, 109, 0.08);
    border-radius: 0.5rem;
    transition: all ease .4s;
}

#faq .panel .panel-heading {
    width: 100%;
    margin: auto;
    padding: 0px;
    border: none;
    background: none;
}

#faq .panel .panel-heading a {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    font-size: 0px;
    line-height: 0px;
    padding: 1.5rem 5rem 1.5rem 1.5rem;
}

#faq .panel .panel-heading a h5 {
    display: inline-block;
    width: 100%;
    margin: 0px;
    font-size: 1.125rem;
    line-height: 1.5em;
    font-weight: bold;
    color: var(--dark);
    text-transform: Uppercase;
    white-space: nowrap;
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    overflow: hidden;
    transition: all .4s;
}

#faq .panel .panel-heading a.accordion-toggle h4 {
    color: var(--colour1);
}

#faq .panel .panel-heading a.accordion-toggle.collapsed h4 {
    color: var(--text);
    font-weight: normal;
    background: none;
}

#faq .panel .panel-heading a.accordion-toggle .faq-close {
    width: 18px;
    height: 18px;
    position: absolute;
    z-index: 2;
    top: 50%;
    margin-top: -9px;
    right: 25px;
    cursor: pointer;
    -webkit-transition: 300ms;
    -o-transition: 300ms;
    transition: 300ms;
}

#faq .panel .panel-heading a.accordion-toggle .faq-close:before,
#faq .panel .panel-heading a.accordion-toggle .faq-close:after {
    content: "";
    position: absolute;
    background: var(--colour1);
}

#faq .panel .panel-heading a.accordion-toggle .faq-close:before {
    width: 2px;
    height: 100%;
    left: 50%;
    margin-left: -1px;
    top: 0;
}

#faq .panel .panel-heading a.accordion-toggle .faq-close:after {
    width: 100%;
    height: 2px;
    top: 50%;
    margin-top: -1px;
    left: 0;
}

#faq .panel .panel-heading a.accordion-toggle .faq-close {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

#faq .panel .panel-heading a.accordion-toggle.collapsed .faq-close {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
}

#faq .panel .panel-heading a.accordion-toggle.collapsed .faq-close:before,
#faq .panel .panel-heading a.accordion-toggle.collapsed .faq-close:after {
    background: var(--text);
}

#faq p {
    font-size: 15px;
    line-height: 1.75em;
    color: var(--text);
}

#faq .panel-collapse {
    padding: 0px 30px 30px;
    width: 100%;
    margin: auto;
    transition: all .3s;
}

#faq .panel-body {
    padding: 30px 0px 0px;
    border: none;
    border-top: 1px dashed #ebebeb;
}

#faq .panel-body hr {
    margin: 25px 0px;
    border-color: #ccc;
}


/*联系方式*/

#contact {
    position: relative;
}

.contact-info {
    width: 43%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.contact-info .title {
    margin-bottom: 1rem;
    width: 100%;
}

.contact-info ul {}

.contact-info ul .icon {
    position: relative;
    padding-left: 2rem;
}

.contact-info ul .icon:before {
    position: absolute;
    left: 0;
    z-index: 1;
    font-size: 120%;
    color: var(--colour1);
}

.contact-info .code {
    display: flex;
    text-align: center;
}

.contact-info .code div {
    padding: 0 0.25rem;
}

.contact-info .code img {
    max-width: 9rem;
}


/*地图*/

#map-canvas {
    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 silver;
}

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;
    overflow: hidden;
}

div.info-bottom {
    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;
}


/*地图*/


/*在线留言*/

.contact-feedback {
    width: 43%;
}

.feedback input,
.feedback select {
    outline: none;
    margin-bottom: 1rem;
    width: 100%;
    padding: 0px 1rem;
    font-size: 1rem;
    line-height: 3rem;
    height: 3rem;
    color: #666;
    border: none;
    border-radius: 0.25rem;
    background: var(--grey_bg);
    transition: all .4s;
}

.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;
    border-radius: 0.25rem;
    background: var(--grey_bg);
    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: 15px;
    line-height: 22px;
    width: 100%;
    height: 160px;
    padding: 15px;
    margin: 10px 0px;
    outline: none;
    box-shadow: none;
    overflow-x: hidden;
    border-radius: 0.25rem;
    background: var(--grey_bg);
}

.feedback input:focus,
.feedback textarea:focus {}

.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(--colour1);
    font-size: 1rem;
    line-height: 3rem;
    color: #fff;
    margin: 15px 0px;
    border-radius: 0.25rem;
    transition: all .3s;
}

.feedback .submit:hover {
    background: var(--colour2);
}

.feedback .submit span {
    display: inline-block;
    font-size: 20px;
    line-height: inherit;
    color: #fff!important;
    vertical-align: bottom;
}