/* Theme */


/* Font */

@font-face {
    font-family: "OpenSans";
    src: url("../fonts/OpenSans-Regular.ttf");
}

@font-face {
    font-family: "OpenSansBold";
    src: url("../fonts/OpenSans-Bold.ttf");
}

@font-face {
    font-family: "OpenSansExtraBold";
    src: url("../fonts/OpenSans-ExtraBold.ttf");
}

.center-align {
    text-align: center;
}


/* Media */


/* Pages */

.mMenu{display:none;}
@media screen and (max-width: 996px) {
.mMenu{display: block;}
}

@media screen and (min-width: 996px) {
    #primary-navbar-toggle {
        display: none;
    }
    .primary-navbar-menu {
        display: none;
    }
    .primary-navbar-sub-menu-pc-support {
        max-height: 200px !important;
    }
}

@media screen and (max-width: 996px) {}

.primary-text-color {
    color: #546C9E;
}

.primary-bg-color {
    background-color: #546C9E;
}

.d-block {
    display: block!important;
}

.d-inline-block {
    display: block!important;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-ms-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-o-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-moz-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.text-line-2,
.text-line-3 {
    overflow: hidden;
    display: -webkit-box !important;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

.text-line-2 {
    -webkit-line-clamp: 2;
}

.text-line-3 {
    -webkit-line-clamp: 3;
}

.text-wrap {
    white-space: normal!important;
}

.btn-round {
    border-radius: 1000px;
}

.common-header {
    padding: 20px 0;
    background-color: #f7f7f7;
}

.common-header .common-header-title {
    font-size: 20px;
    font-weight: bold;
    color: #546C9E;
}

.common-header .breadcrumb {
    margin: 10px 0 0;
    padding: 0;
    background-color: transparent;
}

.common-header .breadcrumb li,
.common-header .breadcrumb li:before,
.common-header .breadcrumb li a {
    color: #444444;
}

.primary-navbar-menu-pc-item.dropdown:hover .dropdown-menu {
    display: block;
}

.primary-navbar-menu-pc-item.dropdown>.dropdown-menu {
    background-color: #222!important;
    margin: 0 !important;
    margin-top: -1px !important;
    border: none !important;
}

.primary-navbar-menu-pc-item.dropdown>.dropdown-menu>li>a {
    color: #fff!important;
    background-color: #222!important;
    padding: 12px 20px!important;
    border: none!important;
    display: block!important;
}

.primary-navbar-menu-pc-item.dropdown>.dropdown-menu>li>a::after {
    position: static!important;
    height: 0!important;
    background-color: #222!important;
}

.flat-btn,
.raise-btn {
    color: inherit!important;
    text-decoration: none!important;
}

.flat-btn a,
.raise-btn a {
    color: inherit!important;
    text-decoration: none!important;
}

.flat-btn {
    padding: 8px 32px;
    border: 1px solid #fff;
    display: inline-block;
    font-size: 14px;
    cursor: pointer;
    text-align: center;
}

.flat-btn.primary {
    border-color: #546C9E !important;
    color: #546C9E !important;
}

.flat-btn.round {
    border-radius: 1000px;
}

.flat-btn.small {
    padding: 6px 16px;
    font-size: 13px;
}

.flat-btn.extend {
    width: 100%;
}

.flat-btn.block {
    display: block;
}

.raise-btn {
    padding: 8px 32px;
    border: 1px solid #546C9E;
    display: inline-block;
    font-size: 14px;
    cursor: pointer;
    text-align: center;
    background-color: #546C9E;
    color: #fff !important;
}

.raise-btn.round {
    border-radius: 1000px;
}

.raise-btn.small {
    padding: 6px 16px;
    font-size: 13px;
}

.raise-btn.extend {
    width: 100%;
}

.raise-btn.block {
    display: block;
}

.slide-text {
    font-size: 18px;
    letter-spacing: 1px;
}

.fullscreen-banner {
    width: 100%;
    height: calc(100vh - 50px);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}

.fullscreen-banner:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #000;
    opacity: 0.3;
    z-index: 0;
}

.fullscreen-banner-title {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50%;
    transform: translate(-50%, -80%);
    text-align: center;
    white-space: nowrap;
    color: #fff;
    z-index: 1;
}

.card-text-title {
    font-size: 16px;
    font-weight: bold;
}

.card-text-desc {
    font-size: 13px;
}

.video-play-icon {
    width: 36px;
    height: 36px;
    object-fit: contain;
    border-radius: 100px;
    overflow: hidden;
    opacity: 0.6;
}

.video-play-ele {
    cursor: pointer;
}

.collapse-icon {
    transform-origin: center;
    transform: scale(0.75, 0.75);
}

.modal.bottom .modal-dialog {
    -webkit-transition: -webkit-transform 0.3s ease-out;
    -o-transition: -o-transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
    -webkit-transform: translate(0, 100%);
    -ms-transform: translate(0, 100%);
    -o-transform: translate(0, 100%);
    transform: translate(0, 100%);
}

.modal.bottom.in .modal-dialog {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
}


/* For test */


/*::-webkit-scrollbar {
  width: 0;
  height: 0;
  background-color: transparent;
}*/

body {
    font-family: "OpenSans", "PingFang SC", "", "Helvetica Neue", "Hiragino Sans GB", "WenQuanYi Micro Hei", Arial, sans-serif;
    padding-top: 50px;
    color: #444444;
}

#primary-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
}

#primary-navbar.opened .primary-navbar-menu {
    transform: translateY(0);
}

#primary-navbar.animated .primary-navbar-menu {
    transition: transform 350ms ease-out;
}

#primary-navbar .primary-navbar-toolbar-wrap {
    width: 100%;
    /* height: 100%; */
    position: relative;
}

#primary-navbar .primary-navbar-toolbar {
    position: absolute;
    width: 100%;
    /* height: 50px; */
    line-height: 50px;
    background-color: #222;
    color: #f7f7f7;
    text-align: center;
    z-index: 52;
}

#primary-navbar #primary-navbar-toggle {
    height: 50px;
    overflow: hidden;
    text-align: center;
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
}

#primary-navbar #primary-navbar-toggle span {
    font-size: 22px;
    line-height: 50px;
}

#primary-navbar .primary-navbar-logo {
    display: inline-block;
    height: 50px;
}

#primary-navbar .primary-navbar-logo img {
    height: 45%;
}

#primary-navbar .primary-navbar-menu-pc {
    margin: 0 0 0 40px;
    padding: 0;
    display: inline-block;
}

#primary-navbar .primary-navbar-menu-pc.expanded .primary-navbar-sub-menu-pc {
    transform: translateY(0);
    opacity: 1;
}

#primary-navbar .primary-navbar-menu-pc-item {
    list-style: none;
    padding: 0 20px;
    float: left;
}

#primary-navbar .primary-navbar-menu-pc-item a {
    color: #fff !important;
    text-decoration: none!important;
    letter-spacing: 1px;
    display: inline-block;
    position: relative;
    font-size: 15px;
}

#primary-navbar .primary-navbar-menu-pc-item:hover a:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #fff;
}

#primary-navbar .primary-navbar-menu-pc-item.opened .primary-navbar-sub-menu-pc {
    display: block;
}

.primary-navbar-menu-pc-item:hover .primary-navbar-sub-menu-pc {
    height: 100% !important;
}

#primary-navbar .primary-navbar-sub-menu-pc {
    position: fixed;
    /* top: 50px; */
    left: 0;
    width: 100%;
    max-height: calc(100vh - 50px);
    overflow: auto;
    /* overflow-x: hidden; */
    transition: all 350ms ease-out;
    /* transform: translateY(-100%); */
    /* display: none !important; */
    opacity: 0;
    /* display: none; */
    background-color: #f7f7f7;
    color: #444444;
    /* -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000;
    -moz-perspective: 1000;
    perspective: 1000; */
}

#primary-navbar .primary-navbar-actions {
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
}

#primary-navbar .primary-navbar-actions a {
    display: inline-block;
    height: 50px;
    padding: 15px 0;
    box-sizing: border-box;
    margin-left: 20px;
    cursor: pointer;
}

#primary-navbar .primary-navbar-actions a img {
    height: 100%;
    object-fit: contain;
    display: block;
}

.block {
    transition: all .4s;
    color: #666;
    transform: rotate(180deg) !important;
}

#primary-navbar .primary-navbar-menu {
    position: absolute;
    z-index: 51;
    top: 50px;
    left: 0;
    width: 100%;
    height: calc(100vh - 50px);
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    overflow: auto;
    overflow-x: hidden;
    background-color: #f7f7f7;
    /* transform: translateY(-100%); */
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000;
    -moz-perspective: 1000;
    perspective: 1000;
    display: none;
}

#primary-navbar .primary-navbar-item {
    margin: 0;
    padding: 0;
    list-style: none;
    cursor: pointer;
    position: relative;
}

#primary-navbar .primary-navbar-item a {
    color: #444444;
    text-decoration: none;
    display: block;
    position: relative;
    padding: 15px 0;
}

#primary-navbar .primary-navbar-item:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    transform: scaleY(50%);
    background-color: #f7f7f7;
}

#primary-navbar .primary-navbar-item:nth-last-child(1):after {
    display: none;
}

#primary-navbar .primary-navbar-item.active {
    color: #fff;
}

#primary-navbar .primary-navbar-item.active a {
    color: #fff;
}

#primary-navbar .primary-navbar-item.opened>a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    transform: scaleY(50%);
    background-color: #f7f7f7;
}

#primary-navbar .primary-navbar-item.opened>a .collapse-icon {
    transform: translateY(-50%) rotateZ(-180deg);
}

#primary-navbar .collapse-icon {
    position: absolute;
    top: 50%;
    right: -10px;
    transform: translateY(-50%);
    transition: transform 350ms ease-out;
    padding: 10px;
}

#primary-navbar .primary-navbar-sub-menu-wrap {
    overflow: hidden;
    transition: height 350ms ease-out;
    font-size: 13px;
}

#primary-navbar .primary-navbar-sub-menu-wrap.opened {
    height: auto;
}

#primary-navbar .primary-navbar-sub-menu-wrap .primary-navbar-sub-menu-wrap {
    padding-left: 20px;
    font-size: 12px;
}

#primary-navbar .primary-navbar-sub-menu-wrap .primary-navbar-sub-menu-wrap .primary-navbar-sub-item a {
    padding: 8px 0;
}

#primary-navbar .primary-navbar-sub-menu {
    margin: 0;
    padding: 0 0 10px 0;
}

#primary-navbar .primary-navbar-sub-item {
    list-style: none;
}

#primary-navbar .primary-navbar-sub-item.active {
    color: #fff;
}

#primary-navbar .primary-navbar-sub-item.active a {
    color: #fff;
}

#primary-navbar .primary-navbar-sub-item.opened .collapse-icon {
    transform: translateY(-50%) rotateZ(-180deg);
}

#primary-navbar .primary-navbar-sub-menu-pc-products .container>.row>div:before,
#primary-navbar .primary-navbar-sub-menu-pc-works .container>.row>div:before,
#primary-navbar .primary-navbar-sub-menu-pc-support .container>.row>div:before {
    content: '';
    height: 70%;
    width: 1px;
    position: absolute;
    top: 15%;
    right: 0;
    background-color: #cecece;
    transform: scaleX(0.5);
}

#primary-navbar .primary-navbar-sub-menu-pc-products .container>.row>div:after,
#primary-navbar .primary-navbar-sub-menu-pc-works .container>.row>div:after,
#primary-navbar .primary-navbar-sub-menu-pc-support .container>.row>div:after {
    content: '';
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #cecece;
    transform: scaleY(0.5);
}

#primary-navbar .primary-navbar-sub-menu-pc-products .container>.row>div:nth-child(4n):before,
#primary-navbar .primary-navbar-sub-menu-pc-works .container>.row>div:nth-child(4n):before,
#primary-navbar .primary-navbar-sub-menu-pc-support .container>.row>div:nth-child(4n):before {
    display: none;
}

#primary-navbar .primary-navbar-product-category {
    padding: 20px 0;
    overflow: hidden;
}

#primary-navbar .primary-navbar-product-category-thumb {
    width: 45%;
    height: 268px;
    float: left;
    position: relative;
}

#primary-navbar .primary-navbar-product-category-thumb img {
    position: absolute;
    width: 100%;
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
}

#primary-navbar .primary-navbar-product-list {
    width: 55%;
    float: left;
    line-height: 1.4;
    letter-spacing: 0;
}

#primary-navbar .primary-navbar-product-list a {
    color: #444444 !important;
    text-decoration: none!important;
    letter-spacing: 0;
}

#primary-navbar .primary-navbar-product-list a:after {
    display: none;
}

#primary-navbar .primary-navbar-product-category-title {
    font-size: 14px;
    font-weight: bold;
    padding: 5px 0;
    margin-bottom: 10px;
}

#primary-navbar .primary-navbar-product-title {
    font-size: 12px;
    padding: 8px 0;
}

#primary-navbar .primary-navbar-sub-menu-pc-works .container>.row>div:nth-child(4n):before,
#primary-navbar .primary-navbar-sub-menu-pc-support .container>.row>div:nth-child(4n):before {
    display: block;
}

#primary-navbar .primary-navbar-sub-menu-pc-works .container>.row>div:nth-child(3n):before,
#primary-navbar .primary-navbar-sub-menu-pc-support .container>.row>div:nth-child(3n):before {
    display: none;
}

#primary-navbar .primary-navbar-work {
    padding: 30px 20px;
    text-align: center;
}

#primary-navbar .primary-navbar-work .flat-btn {
    letter-spacing: 0;
    padding: 6px 35px;
    line-height: 1.5;
}

#primary-navbar .primary-navbar-work .flat-btn.primary {
    color: #546C9E !important;
}

#primary-navbar .primary-navbar-work-thumb img {
    height: 50px;
}

#primary-navbar .primary-navbar-work-desc {
    margin: 25px 0 10px;
    line-height: 1.5;
    /*height: 63px;*/
}

#primary-navbar .primary-navbar-support {
    padding: 40px 20px;
    text-align: center;
    line-height: 1.5;
}

#primary-navbar .primary-navbar-support a {
    color: #546C9E !important;
    text-decoration: none!important;
    letter-spacing: 0;
    line-height: 1.5;
}

#primary-navbar .primary-navbar-support-icon img {
    height: 80px;
}

#primary-navbar .primary-navbar-support-title {
    margin-top: 20px;
}


/** 公告 */


/** 小屏 */

.notice-container {
    background: #546C9E;
    position: relative;
    /* margin-left: -15px;
    margin-right: -15px; */
    padding: 15px;
    box-sizing: border-box;
    color: #fff;
}

.notice-container .container {
    position: relative;
}

.notice-container .notice-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    position: absolute;
    left: 0;
    top: 0;
    line-height: 15px;
}

.notice-container .notice-icon img {
    width: 100%
}

.notice-container .notice-text {
    font-size: 12px;
    font-family: OpenSans;
    line-height: 17px;
    text-align: left;
    margin-right: 30px;
    ;
}

.notice-container .notice-text .notice-learn-more {
    color: #fff;
    text-decoration: underline;
}


/* 小屏幕（平板，大于等于 768px） */

@media (min-width: 768px) {
    .notice-container .notice-text {
        text-align: center;
    }
    .primary-navbar-toolbar-wrap {
        height: 50px;
    }
}

.notice-container .notice-close {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 20px;
    display: inline-block;
    height: 20px;
    line-height: 20px;
    cursor: pointer;
}

#footer-navbar {
    background-color: #222;
    color: #cecece;
}

#footer-navbar .footer-navbar-menu {
    margin: 0;
    padding: 0;
    background-color: #222;
}

#footer-navbar .footer-navbar-item {
    margin: 0;
    padding: 0;
    list-style: none;
    line-height: 50px;
    cursor: pointer;
    position: relative;
    color: #a1a1a1;
}

#footer-navbar .footer-navbar-item .container {
    position: relative;
}

#footer-navbar .footer-navbar-item .container:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    transform: scaleY(50%);
    background-color: #444444;
}

#footer-navbar .footer-navbar-item a {
    color: #a1a1a1;
    text-decoration: none;
    display: block;
}

#footer-navbar .footer-navbar-item:nth-last-child(1):after {
    display: none;
}

#footer-navbar .footer-navbar-item.active {
    color: #fff;
}

#footer-navbar .footer-navbar-item.active a {
    color: #fff;
}

#footer-navbar .footer-navbar-item.opened .glyphicon-plus {
    display: none;
}

#footer-navbar .collapse-icon {
    position: absolute;
    height: 50px;
    line-height: 50px;
    top: 0;
    right: 15px;
}

#footer-navbar .footer-nav-sub-menu-wrap {
    overflow: hidden;
    transition: height 350ms ease-out;
    background-color: #444444;
}

#footer-navbar .footer-nav-sub-menu-wrap.opened {
    height: auto;
}

#footer-navbar .footer-nav-sub-menu {
    margin: 0;
    display: none;
}

#footer-navbar .footer-nav-sub-item {
    list-style: none;
    line-height: 40px;
}

#footer-navbar .footer-nav-sub-item.active {
    color: #fff;
}

#footer-navbar .footer-nav-sub-item.active a {
    color: #fff;
}

#footer-navbar .footer-socials {
    padding: 25px 0;
}

#footer-navbar .footer-socials a {
    text-decoration: none!important;
    margin-right: 15px;
}

#footer-navbar .footer-socials a img {
    width: 18px;
}

#footer-navbar .footer-copyright {
    color: #a1a1a1;
    font-size: 13px;
}

#footer-navbar .footer-bottom-links {
    padding: 25px 0;
    font-size: 13px;
    color: #a1a1a1;
}

#footer-navbar .footer-bottom-links a {
    color: #a1a1a1 !important;
    text-decoration: none!important;
    margin: 0 15px;
}

#footer-navbar .footer-bottom-links a:nth-child(1) {
    margin: 0 15px 0 0;
}

.footer-subscribe {
    padding: 30px 0;
    background-color: #f7f7f7;
}

.footer-subscribe .footer-subscribe-title {
    font-size: 16px;
    font-weight: bold;
}

.footer-subscribe .footer-subscribe-desc {
    padding: 15px 0;
}

.footer-subscribe .form-group {
    margin: 0;
    width: 100%;
}

.footer-subscribe .form-group .input-group {
    width: 100%;
}

.footer-subscribe .input-group-addon {
    width: 45px!important;
    height: 45px;
    padding: 0;
    border-radius: 0;
    border: 1px solid #546C9E;
    overflow: hidden;
}

.footer-subscribe .input-group-addon button {
    display: block;
    width: 45px;
    height: 43px;
    border: none;
    border-radius: 0;
    background-color: #546C9E;
    color: #fff;
    font-size: 20px;
}

.footer-subscribe input {
    height: 45px;
    border-radius: 0;
    border: 1px solid #546C9E;
    background-color: transparent;
}

.footer-navbar-pc {
    padding: 50px 0 10px;
    background-color: #222;
    color: #f7f7f7;
}

.footer-navbar-pc a {
    color: #a1a1a1 !important;
    text-decoration: none!important;
}

.footer-navbar-pc .footer-bottom-links {
    font-size: 13px;
    color: #a1a1a1;
}

.footer-navbar-pc .footer-bottom-links a {
    color: #a1a1a1 !important;
    text-decoration: none!important;
    margin: 0 15px;
}

.footer-navbar-pc .footer-bottom-links a:nth-child(1) {
    margin: 0 15px 0 0;
}

.footer-navbar-pc .footer-copyright {
    color: #a1a1a1;
    font-size: 13px;
    padding: 20px 0;
    overflow: hidden;
}

.footer-navbar-pc-link-group>div {
    padding: 5px 0;
}

.footer-navbar-pc-link-title-group-title {
    font-weight: bold;
}

.footer-navbar-pc-logo-socials {
    margin: 30px 0 0px;
    padding: 20px 0;
    border-bottom: 1px solid #a1a1a1;
    overflow: hidden;
}

.footer-navbar-pc-logo {
    width: 90px;
    float: left;
}

.footer-navbar-pc-socials {
    float: right;
}

.footer-navbar-pc-socials a {
    text-decoration: none!important;
    margin-left: 15px;
}

.footer-navbar-pc-socials a img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.footer-navbar-pc-language {
    float: right;
    cursor: pointer;
    color: #fff!important;
    text-decoration: none;
}

#modal-language .modal-dialog {
    top: auto;
    right: auto;
    width: 100%;
    padding-top: 10px;
    position: fixed;
    z-index: 999999;
    bottom: 0;
}

#modal-language .modal-content {
    height: 100%;
    border-radius: 0;
    border: none;
}

#modal-language .modal-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

#modal-language .modal-title {
    text-align: center;
}

#modal-language .modal-body {
    position: absolute;
    top: 51px;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: auto;
    overflow-x: hidden;
}

#modal-language .modal-language-area-name {
    padding: 10px 15px;
    background-color: #f7f7f7;
}

#modal-language .modal-language-list-item {
    padding: 10px 15px;
    cursor: pointer;
}

#modal-language .modal-language-list-item-language {
    color: #a1a1a1;
}

#modal-agreement {
    top: auto;
    right: auto;
    width: 100%;
    padding-top: 10px;
    position: fixed;
    z-index: 999999;
    bottom: 0;
}

#modal-agreement .modal-dialog {
    width: 100%!important;
    bottom: 0;
    left: 0;
    margin: 0;
    transition-duration: 1200ms;
}

#modal-agreement .modal-content {
    height: 100%;
    border-radius: 0;
    border: none;
    box-shadow: 0 -1px 9px rgba(0, 0, 0, 0.1);
}

#modal-agreement .modal-title {
    text-align: center;
    font-size: 16px;
    font-weight: bold;
}

#modal-agreement .modal-body {
    padding: 15px 0;
}

#modal-agreement #modal-agreement-agree {
    margin-top: 15px;
}

#modal-search .modal-dialog {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0;
}

#modal-search .modal-content {
    height: 100%;
    border-radius: 0;
    border: none;
}

#modal-search .modal-header {
    border: none;
}

#modal-search .modal-body {
    padding: 0 0 60px;
}

#modal-search .primary-navbar-search-label {
    margin-bottom: 40px;
    color: #a1a1a1;
}

#modal-search .form-group {
    margin: 0;
    width: 100%;
}

#modal-search .form-group .input-group {
    width: 100%;
}

#modal-search .input-group-addon {
    width: 45px!important;
    height: 45px;
    padding: 0;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid #cecece;
    background-color: transparent;
    overflow: hidden;
    color: #cecece;
    text-align: right;
    font-size: 16px;
}

#modal-search input {
    height: 45px;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid #cecece;
    box-shadow: none;
    background-color: transparent;
    padding: 0;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 1px;
}

#modal-video-player {
    background-color: rgba(0, 0, 0, 0.85);
}

#modal-video-player .close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 50px;
    color: #fff;
    text-shadow: 0 0 20px #000;
    opacity: 0.6;
    outline: none;
    z-index: 100;
}

#modal-video-player .close:hover {
    opacity: 1;
}

#modal-video-player .modal-dialog {
    position: absolute;
    width: auto!important;
    max-width: 100vw;
    max-height: 100vh;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
}

#modal-video-player .modal-content {
    border-radius: 0;
    background-color: transparent;
    box-shadow: none;
    border: none;
}

#modal-video-player .modal-body {
    padding: 0;
}

#modal-video-player video {
    min-height: 200px;
    max-width: 100vw;
    max-height: 100vh;
    width: auto;
    height: auto;
}


/* Home page */

.home-banner {
    width: 100%;
    height: calc(100vh - 50px);
    position: relative;
}

.home-banner-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -10;
    overflow: hidden;
    background-image: url('../img/homepage/hp_video_bg_1.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.home-banner-video-bg video {
    position: absolute;
    left: 50%;
    top: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
}

.home-banner-video-bg source {
    min-width: 100%;
    min-height: 100%;
    height: auto;
    width: auto;
}

.home-page-banner-content {
    position: absolute;
    margin: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
}

.home-banner-title {
    font-size: 25px;
    font-weight: bold;
    white-space: nowrap;
    letter-spacing: 1px;
    font-family: "OpenSansBold", "OpenSans", "PingFang SC", "", "Helvetica Neue", "Hiragino Sans GB", "WenQuanYi Micro Hei", Arial, sans-serif;
}

.home-banner-play-btn {
    padding: 6px 8px;
    border-radius: 50px;
    border: 1px solid #fff;
    margin: 12px auto 0;
    display: inline-block;
    cursor: pointer;
}

.home-banner-play-btn img {
    width: 20px;
    height: 20px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 20px;
    overflow: hidden;
    margin-left: 4px;
}

#home-slider .carousel-inner {
    width: 100%;
    height: calc(100vh - 50px);
    /*min-height: 56.25vw;
    max-height: 100vh;*/
}

#home-slider .carousel-inner .item {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /*img {
        width: auto;
        max-width: 1000%;
        height: 100%;
        position: relative;
        left: -80%;
        !*width: 100%;
        height: 128vw;
        min-height: 56.25vw;
        max-height: 100vh;
        -o-object-fit: cover;
        object-fit: cover;
        -o-object-position: 62%;
        object-position: 62%;*!
      }*/
}

#home-slider .carousel-caption {
    top: 42%;
    bottom: auto;
    left: 50%;
    right: auto;
    transform: translate(-50%, -50%);
    white-space: nowrap;
}

.carousel-control .glyphicon-menu-left,
.carousel-control .glyphicon-menu-right {
    position: absolute;
    top: 50%;
    z-index: 5;
    display: inline-block;
    margin-top: -10px;
    font-size: 24px;
    transform: scale(0.8, 1.6);
}

.carousel-control .glyphicon-menu-left {
    left: 50%;
    margin-left: -10px;
}

.carousel-control .glyphicon-menu-right {
    right: 50%;
    margin-right: -10px;
}

.home-product-item {
    overflow: hidden;
}

.home-product-item-thumb,
.home-product-item-text-wrap {
    width: 50%;
    height: 0;
    height: 850px;
    float: left;
    overflow: hidden;
    position: relative;
}

.home-product-item-thumb {
    box-sizing: border-box;
}

.home-product-item-thumb img {
    position: absolute;
    top: 42px;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.home-product-item-text-wrap {
    position: relative;
}

.home-product-item-text {
    position: absolute;
    width: 80%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.home-product-item-desc {
    margin-top: 4px;
}

#home-bottom-video {
    width: 100%;
    height: 56.25vw;
    overflow: hidden;
    position: relative;
    background-image: url('../img/homepage/hp_video_bg_2.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

#home-bottom-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 36px;
    height: 36px;
    opacity: 0.6;
    border-radius: 100px;
    overflow: hidden;
    -o-object-fit: contain;
    object-fit: contain;
    cursor: pointer;
}

#home-continuous-connections {
    padding: 45px 0;
}

.home-continuous-connections-title {
    text-align: center;
    font-family: "OpenSansExtraBold", "OpenSans", "PingFang SC", "", "Helvetica Neue", "Hiragino Sans GB", "WenQuanYi Micro Hei", Arial, sans-serif;
    font-size: 16px;
}

.home-continuous-connections-items {
    margin-top: 20px;
    text-align: center;
}

.home-continuous-connections-item {
    display: inline-block;
    width: 140px;
    padding: 0 4px;
}


/* About & Contact page */

#about-banner img {
    width: 100%;
    /* height: 31.25vw; */
    height: 16vw;
    -o-object-fit: cover;
    object-fit: cover;
}

#about-tab {
    margin-top: 10px;
    margin-bottom: 10px;
}

#about-tab #about-tab-items {
    margin: 0;
    padding: 0;
}

#about-tab .about-tab-item {
    cursor: pointer;
    list-style: none;
    padding: 8px 16px;
    position: relative;
}

#about-tab .about-tab-item.active:after {
    content: '';
    position: absolute;
    width: 3px;
    height: 50%;
    top: 25%;
    left: 0;
    background-color: #546C9E;
}

#about-tab #about-tab-brand {
    padding: 8px 0;
    display: none;
}

#about-tab #about-tab-brand.active {
    display: block;
}

#about-tab #about-tab-brand p {
    margin: 0 0 16px;
    text-align: justify;
}

#about-tab #about-tab-brand p:nth-last-child(1) {
    margin-bottom: 0;
}

#about-tab #about-tab-contact {
    padding: 8px 0;
    display: none;
}

#about-tab #about-tab-contact.active {
    display: block;
}

#about-tab #about-tab-contact td {
    word-break: break-word!important;
}

#about-tab .about-tab-contact-title {
    font-size: 18px;
    font-weight: bold;
}

#about-tab .about-tab-contact-list {
    padding: 8px 0;
}

#about-tab .about-tab-contact-list .row>div {
    padding: 8px 15px;
}

#about-tab .contact-social-media-icon {
    width: 20px;
    height: 20px;
    -o-object-fit: contain;
    object-fit: contain;
    /* margin-right: 40px; */
}

#about-brand-info {
    display: none;
}

#about-brand-info.active {
    display: block;
}

#about-products {
    padding-left: 30px;
    padding-right: 30px;
}

#about-products .about-product-item {
    margin-bottom: 15px;
}

#about-products .about-product-thumb,
#about-products .about-product-text-wrap {
    height: 0;
    padding-top: 40.075%;
    padding-bottom: 40.075%;
    position: relative;
    overflow: hidden;
}

#about-products .about-product-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

#about-products .about-product-text-content {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #f8f7fc;
}

#about-products .about-product-text {
    position: absolute;
    width: 70%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

#about-products .about-product-desc {
    margin-top: 40px;
}

#about-awards {
    position: relative;
}

#about-awards img {
    width: 100%;
}

.about-awards-title {
    /* position: absolute; */
    /* top: 0; */
    /* left: 0; */
    /* right: 0; */
    margin: 0 auto 20px;
    font-weight: bold;
    text-align: center;
}


/* #about-map {
  padding: 16px 0;
  background-color: #fff;
}
#about-map img {
  width: 100%;
} */


/* Where to buy page */

#where2buy-header {
    width: 100%;
    background-image: url('../img/where_to_buy/banner.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 82%;
    color: #fff;
    position: relative;
}

#where2buy-header .container {
    position: relative;
    z-index: 1;
}

.where2buy-header-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-color: #546C9E;
    opacity: 0.6;
}

.where2buy-header-tip {
    padding: 10px 20px;
    text-align: center;
}

#where2buy-form {
    display: block;
    text-align: center;
}

.where2buy-form-selector {
    display: inline-block;
    padding: 10px 15px 20px;
}

.where2buy-form-selector .btn-group button {
    width: 150px;
    border: none;
    color: #546C9E;
    text-align: left;
}

.where2buy-form-selector .btn-group button span.glyphicon {
    float: right;
}

.where2buy-form-label {
    font-size: 13px;
    margin-bottom: 8px;
}

.where2buy-region {
    padding: 10px 0;
}

.where2buy-region-name {
    font-weight: bold;
    text-align: center;
    padding: 10px 0;
}

.where2buy-country-name {
    padding: 10px 0;
}

.where2buy-mall-group {
    overflow: hidden;
}

.where2buy-mall {
    display: block;
    float: left;
    width: 33.33%;
    height: 0;
    padding: 11.11% 0;
    position: relative;
}

.where2buy-mall img {
    position: absolute;
    max-width: 90%;
    max-height: 90%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.where2buy-form-selector button {
    padding-top: 7px;
    padding-bottom: 3px;
}

.where2buy-form-selector button>span.glyphicon {
    top: 3px;
}

#where2buy-form-region>button>span.btn-text,
#where2buy-form-country>button>span.btn-text {
    max-width: 100px;
    display: inline-block;
    text-overflow: ellipsis;
    overflow: hidden;
}


/* News pages */

.news-item {
    padding: 15px 0;
}

.news-item .news-thumb {
    width: 100%;
    height: 0;
    padding: 28.25% 0;
    position: relative;
}

.news-item .news-thumb img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
}

.news-item .news-title {
    padding: 10px 0;
    font-size: 16px;
    font-weight: bold;
    color: #546C9E;
}

.news-item .news-title a {
    color: #546C9E !important;
    text-decoration: none!important;
}

.news-item .news-date {
    display: inline-block;
}

.news-item .news-tag {
    display: inline-block;
    margin-left: 5px;
    padding: 0 5px;
    background-color: #444444;
    color: #a1a1a1;
}

.news-sidebar .news-sidebar-group {
    padding-bottom: 40px;
    letter-spacing: 0;
}

.news-sidebar .news-sidebar-group-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
}

.news-sidebar .news-sidebar-nav {
    margin: 0;
    padding: 0;
}

.news-sidebar .news-sidebar-nav li {
    list-style: none;
    padding: 4px 0;
}

.news-sidebar .news-sidebar-nav li a {
    color: #546C9E;
}

.news-sidebar .news-sidebar-group-content .news-item {
    padding: 0;
    margin-bottom: 20px;
}

.news-details .news-details-body {
    margin: 20px 0;
    overflow: hidden;
    font-size: 14px;
    color: #444444;
}

.news-details .news-details-body img,
.news-details .news-details-body img {
    width: 100%;
    max-width: 100%;
    margin-bottom: 16px;
}

.news-details .news-details-body p {
    margin: 0 0 16px;
    text-align: justify;
}


/* Works with page */

#works-second-navbar {
    background-color: #333333;
    color: #cecece;
    position: fixed;
    top: 50px;
    left: 0;
    width: 100%;
    z-index: 10;
}

#works-second-navbar.opened #works-second-navbar-toggle span {
    transform: rotateZ(180deg);
}

#works-second-navbar.opened .works-second-navbar-menu {
    transform: translateY(0);
}

#works-second-navbar.animated .works-second-navbar-menu {
    transition: transform 350ms ease-out;
}

#works-second-navbar #works-second-navbar-toggle {
    position: absolute;
    z-index: 12;
    width: 100%;
    top: 0;
    left: 0;
    text-align: center;
    line-height: 50px;
    background-color: #333333;
    cursor: pointer;
}

#works-second-navbar #works-second-navbar-toggle:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    transform: scaleY(50%);
    background-color: #444444;
}

#works-second-navbar #works-second-navbar-toggle span {
    margin-left: 4px;
    transition: transform 350ms ease-out;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000;
    -moz-perspective: 1000;
    perspective: 1000;
}

#works-second-navbar .works-second-navbar-menu {
    position: absolute;
    z-index: 11;
    top: 50px;
    left: 0;
    width: 100%;
    height: calc(100vh - 100px);
    margin: 0;
    padding: 0;
    overflow: auto;
    overflow-x: hidden;
    background-color: #333333;
    transform: translateY(-100%);
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000;
    -moz-perspective: 1000;
    perspective: 1000;
}

#works-second-navbar .works-second-navbar-item {
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: center;
    line-height: 50px;
    cursor: pointer;
    position: relative;
    color: #a1a1a1;
}

#works-second-navbar .works-second-navbar-item:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 5%;
    right: 5%;
    height: 1px;
    transform: scaleY(50%);
    background-color: #444444;
}

#works-second-navbar .works-second-navbar-item:nth-last-child(1):after {
    display: none;
}

#works-second-navbar .works-second-navbar-item.active {
    color: #fff;
}

.works-banner {
    height: 56.25vw;
    margin-top: 50px;
    /* height: calc(100vh - 100px); */
    background-image: url('../img/works_with/img_1.jpg');
}

.works-head-desc {
    padding: 20px 0;
    text-align: center;
}

.works-head-desc-text {
    width: 80%;
    margin: auto;
}

.works-head-desc-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 20px;
}

.works-item {
    margin-bottom: 40px;
}

.works-item-title {
    padding: 20px 0;
    text-align: center;
    font-size: 16px;
    overflow: hidden;
}

.works-item-title span {
    position: relative;
}

.works-item-title span:before,
.works-item-title span:after {
    content: '';
    width: 80px;
    height: 1px;
    background-color: #000;
    position: absolute;
    top: 50%;
}

.works-item-title span:before {
    left: -100px;
}

.works-item-title span:after {
    right: -100px;
}

.works-products>div:nth-child(2n - 1) {
    clear: left;
}

.works-product-thumb {
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    position: relative;
}

.works-product-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.works-product-title {
    text-align: center;
}

.works-bottom-banner {
    position: relative;
    width: 100%;
    height: 56.25vw;
    background-image: url('../img/works_with/img_2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.works-bottom-banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    font-size: 18px;
}

.works-bottom-banner-btn {
    margin-top: 20px;
}


/* Scene page */

.scene-item {
    background-color: #f7f7f7;
}

.scene-item:nth-child(odd) .scene-card>.row .scene-card-thumb-col,
.scene-item:nth-child(odd) .scene-card>.row .scene-card-item-col {
    float: right;
}

.scene-banner {
    height: 56.25vw;
}

.scene-card {
    padding: 20px 0;
}

.scene-card>.row {
    background-color: #fff;
    margin: 0;
}

.scene-card-thumb-col {
    padding: 0;
}

.scene-card-thumb {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 100%;
}

.scene-card-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.scene-card-item-col {
    height: calc(100vw - 30px);
    position: relative;
    overflow: hidden;
    margin-top: 40px;
    margin-bottom: 40px;
}

.scene-card-content {
    position: absolute;
    width: 80%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.scene-card-desc {
    margin-top: 15px;
}

.scene-card-products {
    margin-top: 50px;
    margin-left: -10%;
    margin-right: -10%;
}

.scene-card-product {
    display: inline-block;
    width: 70px;
    vertical-align: top;
}

.scene-card-product-thumb {
    width: 50px;
    height: 50px;
    display: inline-block;
}

.scene-card-product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.scene-card-product-title {
    font-size: 13px;
}

.scene-card-plus-icon {
    color: #cecece;
    position: relative;
    top: 16px;
    font-size: 16px;
    margin: 0 10px;
}


/* Products page */

.page-products {
    padding-top: 100px;
}

#products-second-navbar {
    background-color: #333333;
    color: #cecece;
    position: fixed;
    top: 50px;
    left: 0;
    width: 100%;
    z-index: 10;
}

#products-second-navbar.opened #products-second-navbar-toggle span {
    transform: rotateZ(180deg);
}

#products-second-navbar.opened .products-second-navbar-menu {
    transform: translateY(0);
}

#products-second-navbar.animated .products-second-navbar-menu {
    transition: transform 350ms ease-out;
}

#products-second-navbar #products-second-navbar-toggle {
    position: absolute;
    z-index: 12;
    width: 100%;
    top: 0;
    left: 0;
    text-align: center;
    line-height: 50px;
    background-color: #333333;
    cursor: pointer;
}

#products-second-navbar #products-second-navbar-toggle:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    transform: scaleY(50%);
    background-color: #444444;
}

#products-second-navbar #products-second-navbar-toggle span {
    margin-left: 4px;
    transition: transform 350ms ease-out;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000;
    -moz-perspective: 1000;
    perspective: 1000;
}

#products-second-navbar .products-second-navbar-menu {
    position: absolute;
    z-index: 11;
    top: 50px;
    left: 0;
    width: 100%;
    height: calc(100vh - 100px);
    margin: 0;
    padding: 0;
    overflow: auto;
    overflow-x: hidden;
    background-color: #333333;
    transform: translateY(-100%);
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000;
    -moz-perspective: 1000;
    perspective: 1000;
}

#products-second-navbar .products-second-navbar-item {
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: center;
    line-height: 50px;
    cursor: pointer;
    position: relative;
    color: #a1a1a1;
}

#products-second-navbar .products-second-navbar-item a {
    color: #a1a1a1;
    text-decoration: none;
    display: block;
}

#products-second-navbar .products-second-navbar-item:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 5%;
    right: 5%;
    height: 1px;
    transform: scaleY(50%);
    background-color: #444444;
}

#products-second-navbar .products-second-navbar-item:nth-last-child(1):after {
    display: none;
}

#products-second-navbar .products-second-navbar-item.active {
    color: #fff;
}

#products-second-navbar .products-second-navbar-item.active a {
    color: #fff;
}

#products-second-navbar .products-second-navbar-item.opened .glyphicon-plus {
    display: none;
}

#products-second-navbar .collapse-icon {
    position: absolute;
    height: 50px;
    line-height: 50px;
    top: 0;
    right: 20px;
}

#products-second-navbar .product-second-nav-sub-menu-wrap {
    height: 0;
    overflow: hidden;
    transition: height 350ms ease-out;
}

#products-second-navbar .product-second-nav-sub-menu-wrap.opened {
    height: auto;
}

#products-second-navbar .product-second-nav-sub-menu {
    margin: 0;
    padding: 0 0 10px 0;
}

#products-second-navbar .product-second-nav-sub-item {
    list-style: none;
    line-height: 40px;
}

#products-second-navbar .product-second-nav-sub-item.active {
    color: #fff;
}

#products-second-navbar .product-second-nav-sub-item.active a {
    color: #fff;
}

.products-sidebar-nav {
    padding: 20px 0;
}

.products-sidebar-nav-menu {
    margin: 0;
    padding: 0;
}

.products-sidebar-nav-item {
    list-style: none;
    padding: 15px 0;
}

.products-sidebar-nav-item.active a {
    border-bottom: 2px solid #546C9E;
}

.products-sidebar-nav-item a {
    padding: 2px 0;
    color: inherit;
    text-decoration: none;
}

.products-category {
    padding: 20px;
    text-align: center;
    font-size: 16px;
}

.products-category span {
    border-bottom: 2px solid #546C9E;
}

.products-list {
    padding: 10px 0;
}

.products-product {
    padding: 15px 0 20px;
    display: block;
    color: inherit!important;
    text-decoration: none!important;
}

.products-product-title {
    height: 40px;
    text-align: center;
}

.products-product-thumb {
    width: 100%;
    height: 0;
    padding-bottom: 110px;
    position: relative;
}

.products-product-thumb img {
    position: absolute;
    width: 110px;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    object-fit: cover;
}

.products-product-actions {
    padding: 10px 0;
}

.products-product-actions-item {
    padding: 5px 0;
    text-align: center;
}

.products-product-action-btn {
    width: 112px;
}


/* Support page */

.support-item {
    text-align: center;
    padding: 40px 0;
}

.support-item-thumb {
    width: 60px;
    height: 60px;
    margin: auto;
}

.support-item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.support-item-title {
    font-size: 16px;
    margin-top: 20px;
}

.support-item-desc {
    width: 100%;
    margin: 20px auto;
}

.support-item-link a {
    font-size: 16px;
    color: #546C9E;
}

.support-item-link span.glyphicon {
    font-size: 14px;
    margin-left: 2px;
}

.support-app-thumb {
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    background-image: url('../img/support/img_1.png');
    background-size: cover;
    background-position: 58%;
    background-repeat: no-repeat;
}

.support-app-download {
    padding: 30px 0 40px;
}

.support-app-download-platform {
    padding: 15px 0;
    text-align: center;
    vertical-align: top;
}

.support-app-download-platform-icon {
    width: 150px;
    display: inline-block;
    margin-right: 40px;
}

.support-app-download-updated-info {
    display: inline-block;
    color: #546C9E;
    padding: 2px 0;
    text-decoration: none!important;
    border-bottom: 1px solid #546C9E;
}


/* Support Product page*/

.page-support-product {
    padding-top: 100px;
}

.page-support-product .products-product-title {
    margin-top: 20px;
}


/* Support User Manuals page */

.page-support-user-manuals {
    padding-top: 100px;
}


/* Support Product Videos page */

.page-support-product-videos {
    padding-top: 100px;
}

.page-support-product-videos .support-product-video-play-icon {
    position: absolute;
    width: 36px;
    height: 36px;
    bottom: 0;
    opacity: 0.6;
}


/* Support Product Details page */

.support-product-details-head {
    padding: 15px 0;
    text-align: center;
}

.support-product-details-thumb {
    width: 60px;
    display: inline-block;
    margin-right: 10px;
}

.support-product-details-thumb img {
    width: 100%;
}

.support-product-details-title {
    display: inline-block;
    font-size: 16px;
}

.support-product-details-faq,
.support-product-details-manuals,
.support-product-details-video,
.support-product-details-updated {
    padding-left: 20px;
    position: relative;
}

.support-product-details-faq:after,
.support-product-details-manuals:after,
.support-product-details-video:after,
.support-product-details-updated:after {
    content: '';
    width: 100%;
    height: 1px;
    position: absolute;
    top: 0;
    left: 0;
    transform: scaleY(0.5);
    background-color: #f7f7f7;
}

.support-product-details-section-title {
    margin-left: -20px;
    padding: 15px 0;
    font-size: 18px;
}

.support-product-details-faq-item {
    border: none;
    box-shadow: none;
}

.support-product-details-faq-item .panel-heading {
    padding: 8px 0;
    color: inherit;
    background-color: transparent;
    border: none;
    box-shadow: none;
}

.support-product-details-faq-item-question {
    font-size: inherit;
}

.support-product-details-faq-item-question a {
    color: #546C9E;
    text-decoration: none!important;
    word-break: break-word;
}

.support-product-details-faq-item-question a.collapsed span.glyphicon {
    transform: rotateZ(-90deg);
}

.support-product-details-faq-item-question a span.glyphicon {
    margin-right: 10px;
    transition: transform 350ms ease-out;
}

.support-product-details-faq-answer .panel-body {
    border: none!important;
    text-align: left;
}

.support-product-details-manuals-list {
    margin-left: -20px;
    padding: 20px 0;
    text-align: center;
}

.support-product-details-manuals-list>a:nth-child(1) {
    margin-right: 20px;
}

.support-product-details-video-thumb {
    margin-left: -20px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    height: 190px;
    text-align: center;
    background: #edf2f8;
}

.support-product-details-video-thumb img {
    height: 100%;
}

.support-product-details-video-thumb .video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.support-product-details-updated-list {
    padding-bottom: 5px;
}

.support-product-details-updated-title span {
    margin-right: 15px;
}

.support-product-details-updated-title a {
    color: #546C9E !important;
}

.support-product-details-updated-details {
    padding: 15px 0;
    word-break: break-all;
}


/* Support Product Versions */

.support-product-versions .support-product-details-updated-item {
    position: relative;
    margin-bottom: 15px;
}

.support-product-versions .support-product-details-updated-item:after {
    content: '';
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 0;
    transform: scaleY(0.5);
    background-color: #f7f7f7;
}

.support-product-versions .support-product-details-updated-item:nth-last-child(1):after {
    display: none;
}


/* Support FAQ page */

.page-support-faq {
    padding-top: 100px;
}

.page-support-faq #products-second-navbar .products-second-navbar-item {
    text-align: left;
    padding: 0 40px 0 20px;
}

.page-support-faq #products-second-navbar .products-second-navbar-item:after {
    left: 20px;
    right: 20px;
}

.page-support-faq .products-sidebar-nav-item {
    padding: 10px 0 10px 22px;
    position: relative;
}

.page-support-faq .products-sidebar-nav-item .glyphicon {
    position: absolute;
    top: 12px;
    left: 0;
    color: #546C9E;
}

.page-support-faq .products-sidebar-nav-item.opened .glyphicon-plus {
    display: none;
}

.page-support-faq .product-sidebar-nav-sub-menu-wrap {
    height: 0;
    overflow: hidden;
    transition: height 350ms ease-out;
}

.page-support-faq .product-sidebar-nav-sub-menu-wrap.opened {
    height: auto;
}

.page-support-faq .product-sidebar-nav-sub-menu {
    margin: 0;
    padding: 5px 0 0 0;
}

.page-support-faq .product-sidebar-nav-sub-item {
    list-style: none;
    padding: 10px 0;
}

.page-support-faq .product-sidebar-nav-sub-item.active a {
    padding: 4px 0;
    border-bottom: 2px solid #546C9E;
}


/* 小屏幕（平板，大于等于 768px） */

@media (min-width: 768px) {
    .card-text-title {
        font-size: 18px;
    }
    .card-text-desc {
        font-size: 15px;
    }
    .slide-text {
        font-size: 26px;
    }
    .video-play-icon {
        width: 50px;
        height: 50px;
    }
    #primary-navbar .primary-navbar-actions a {
        margin-left: 40px;
    }
    #modal-language .modal-dialog {
        width: auto;
        top: 20px;
        bottom: 20px;
        left: 20px;
        right: 20px;
    }
    #modal-language .modal-body {
        padding: 20px 30px;
    }
    #modal-language .modal-language-area-name {
        background-color: transparent;
        padding: 10px 0;
    }
    #modal-language .modal-language-list-item-wrap {
        padding: 5px 30px;
    }
    #modal-language .modal-language-list-item {
        background-color: #f7f7f7;
        padding: 15px 0;
    }
    #modal-language .modal-language-list-item-language {
        text-align: right;
    }
    #modal-language .modal-language-list-item-region {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    #modal-agreement .modal-header {
        border: none;
    }
    #modal-agreement .modal-title {
        text-align: left;
    }
    #modal-agreement .modal-body {
        padding: 20px 0 40px;
    }
    #modal-agreement .container .row {
        display: flex;
        /* flex-wrap: wrap; */
    }
    #modal-agreement .container .row>div {
        position: relative;
    }
    #modal-agreement #modal-agreement-agree {
        position: absolute;
        margin: 0;
        padding: 15px 60px;
        top: 50%;
        right: 15px;
        transform: translateY(-50%);
        display: inline-block;
        font-size: 16px;
    }
    #modal-search .modal-dialog {
        width: auto;
        bottom: auto;
    }
    /* Home page */
    .home-banner-title {
        font-size: 28px;
    }
    .carousel-control .glyphicon-menu-left,
    .carousel-control .glyphicon-menu-right {
        font-size: 36px;
    }
    .home-product-item-desc {
        margin-top: 12px;
    }
    #home-bottom-video-play {
        width: 50px;
        height: 50px;
    }
    .home-continuous-connections-title {
        font-size: 20px;
        letter-spacing: 1px;
    }
    #home-continuous-connections {
        padding: 50px 0;
    }
    .home-continuous-connections-items {
        margin-top: 30px;
        text-align: center;
    }
    .home-continuous-connections-item {
        width: 200px;
        padding: 0 12px;
        float: none;
    }
    /* About & Contact page */
    #about-tab {
        margin-top: 20px;
        margin-bottom: 20px;
    }
    #about-products .container-fluid {
        padding-left: 30px;
        padding-right: 30px;
    }
    #about-products .about-product-item {
        margin-bottom: 25px;
    }
    .about-awards-title {
        font-size: 18px;
    }
    #about-map {
        padding: 30px;
    }
    /* Where to buy page */
    #where2buy-header {
        background-position: center;
    }
    .where2buy-header-tip {
        padding: 20px 20px 10px;
    }
    .where2buy-form-selector {
        padding: 5px 10px 20px;
    }
    .where2buy-form-selector .btn-group button {
        width: 160px;
    }
    .where2buy-region-name {
        font-size: 16px;
    }
    /* News pages */
    .news-item {
        padding: 20px 0;
    }
    /* Works with page */
    .works-head-desc {
        padding: 30px 0;
    }
    .works-head-desc-title {
        font-size: 18px;
    }
    .works-bottom-banner-text {
        width: 45%;
        font-size: 18px;
    }
    /* Scene page*/
    .scene-card {
        padding: 30px 0;
    }
    /* Products page */
    .products-product-thumb {
        padding-bottom: 130px;
    }
    .products-product-thumb img {
        width: 130px;
    }
    .products-product-action-btn {
        width: 140px;
    }
    /* Support page */
    .support-item-thumb {
        width: 70px;
        height: 70px;
    }
    .support-app-download-platform-icon {
        width: 180px;
        display: inline-block;
    }
}


/* 中等屏幕（桌面显示器，大于等于 992px） */

@media (min-width: 992px) {
    .card-text-title {
        font-size: 20px;
    }
    .card-text-desc {
        font-size: 16px;
    }
    .col-md-custom-20p {
        width: 20%;
        position: relative;
        min-height: 1px;
        padding-right: 15px;
        padding-left: 15px;
    }
    .slide-text {
        font-size: 28px;
        letter-spacing: 2px;
    }
    .video-play-icon {
        width: 56px;
        height: 56px;
    }
    #primary-navbar .primary-navbar-toolbar {
        text-align: left;
    }
    #primary-navbar .primary-navbar-logo {
        display: block;
        float: left;
    }
    #primary-navbar .primary-navbar-actions a {
        padding: 17px 0;
    }
    .footer-subscribe {
        padding: 50px 0;
    }
    #modal-language .modal-dialog {
        width: auto;
        top: 100px;
        bottom: 100px;
        left: 100px;
        right: 100px;
    }
    /* Home page */
    .home-banner-title {
        font-size: 32px;
    }
    #home-slider {
        /*.carousel-inner .item img {
      height: 56.25vw;
      -o-object-position: center;
      object-position: center;
    }*/
    }
    #home-slider .carousel-inner .item img {
        width: 100%;
        -o-object-fit: cover;
        object-fit: cover;
        left: auto;
    }
    .home-product-item-text {
        width: 70%;
        text-align: left;
    }
    .home-product-item-desc {
        margin-top: 16px;
    }
    #home-bottom-video-play {
        width: 56px;
        height: 56px;
    }
    #home-continuous-connections {
        padding: 60px 0;
    }
    .home-continuous-connections-title {
        font-size: 24px;
        letter-spacing: 1px;
    }
    .home-continuous-connections-items {
        margin-top: 45px;
    }
    .home-continuous-connections-item {
        width: 230px;
        padding: 0 20px;
    }
    /* About & Contact page */
    #about-tab {
        margin-top: 30px;
        margin-bottom: 30px;
    }
    #about-tab .about-tab-contact-title {
        margin-bottom: 12px;
    }
    #about-tab .about-tab-contact-list .row>div {
        padding: 15px 15px;
    }
    #about-products .container-fluid {
        padding-left: 55px;
        padding-right: 55px;
    }
    #about-products .about-product-item {
        margin-bottom: 0;
        overflow: hidden;
    }
    #about-products .about-product-item:nth-child(even) .about-product-thumb,
    #about-products .about-product-item:nth-child(even) .about-product-text-wrap {
        float: right;
    }
    #about-products .about-product-thumb,
    #about-products .about-product-text-wrap {
        padding-top: 20%;
        padding-bottom: 20%;
    }
    #about-products .about-product-text {
        width: 82%;
        text-align: left;
    }
    #about-products .about-product-desc {
        margin-top: 16px;
    }
    #about-awards {
        margin-top: 70px;
    }
    .about-awards-title {
        font-size: 20px;
    }
    #about-map {
        padding: 50px;
    }
    /* Where to buy page */
    .where2buy-header-tip {
        padding: 30px 20px 10px;
    }
    .where2buy-form-selector {
        padding: 5px 30px 20px;
    }
    .where2buy-region {
        padding: 20px 0;
    }
    .where2buy-region-name {
        font-size: 20px;
    }
    .where2buy-country {
        padding: 10px 0;
    }
    .where2buy-country-name {
        font-size: 16px;
    }
    .where2buy-mall {
        width: 20%;
        padding: 6.67% 0;
    }
    /* News pages */
    .news-item {
        padding: 30px 0;
    }
    .news-item .news-date {
        display: block;
    }
    .news-item .news-tag {
        margin-left: 0;
        margin-top: 10px;
    }
    .news-details .news-title {
        color: #000;
    }
    .news-details .news-date {
        display: inline-block;
    }
    .news-details .news-tag {
        margin-top: 0;
        margin-left: 5px;
    }
    .news-sidebar {
        padding: 30px 0 30px 20px;
        letter-spacing: -1px;
    }
    .news-sidebar .news-sidebar-section-header {
        padding: 12px 0;
        position: relative;
        border-bottom: 1px solid #cecece;
    }
    .news-sidebar .news-sidebar-section-header .news-sidebar-icon {
        position: absolute;
        top: 18px;
        bottom: 0;
        right: 10px;
    }
    .news-sidebar .news-sidebar-section-title {
        font-size: 24px;
        font-weight: bold;
        padding-right: 50px;
    }
    .news-sidebar .news-sidebar-section-title .small {
        font-size: 14px;
        color: #a1a1a1;
    }
    .news-sidebar .news-sidebar-icon {
        width: 20px;
        height: 20px;
        font-size: 20px;
        color: #a1a1a1;
    }
    .news-sidebar .news-sidebar-news-item {
        padding: 12px 0;
    }
    .news-sidebar .news-sidebar-news-header {
        overflow: hidden;
        position: relative;
    }
    .news-sidebar .news-sidebar-news-meta {
        margin-right: 50px;
    }
    .news-sidebar .news-sidebar-news-meta-top {
        margin-bottom: 12px;
        color: #a1a1a1;
    }
    .news-sidebar .news-sidebar-news-meta-top .news-sidebar-icon {
        background-color: #52c89c;
        color: #fff;
        font-size: 12px;
        line-height: 20px;
        text-align: center;
        border-radius: 4px;
        margin-right: 2px;
    }
    .news-sidebar .news-sidebar-news-meta-user {
        width: 100%;
        overflow: hidden;
        margin-bottom: 12px;
    }
    .news-sidebar .news-sidebar-news-meta-avatar {
        width: 42px;
        height: 42px;
        border-radius: 42px;
        overflow: hidden;
        float: left;
    }
    .news-sidebar .news-sidebar-news-meta-avatar img {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
    }
    .news-sidebar .news-sidebar-news-meta-userinfo {
        margin-left: 42px;
        padding-left: 10px;
    }
    .news-sidebar .news-sidebar-news-meta-username {
        font-family: "OpenSansExtraBold", "OpenSans", "PingFang SC", "", "Helvetica Neue", "Hiragino Sans GB", "WenQuanYi Micro Hei", Arial, sans-serif;
        font-size: 16px;
    }
    .news-sidebar .news-sidebar-news-meta-subname {
        margin-top: 2px;
        color: #a1a1a1;
    }
    .news-sidebar .news-sidebar-news-platform {
        width: 40px;
        height: 100%;
        position: absolute;
        top: 0;
        right: 0;
        text-align: right;
        padding-right: 10px;
    }
    .news-sidebar .news-sidebar-news-content {
        letter-spacing: 0;
    }
    .news-sidebar .news-text-link {
        color: #546C9E;
    }
    .news-sidebar .news-sidebar-news-thumb {
        margin-top: 30px;
        position: relative;
        overflow: hidden;
    }
    .news-sidebar .news-sidebar-news-thumb img {
        width: 100%;
    }
    .news-sidebar .news-sidebar-news-thumb .news-media-play {
        position: absolute;
        width: 50px;
        height: 50px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        border-radius: 50px;
        padding: 5px;
        overflow: hidden;
        background-color: #fff;
        cursor: pointer;
    }
    .news-sidebar .news-sidebar-news-thumb .news-media-play img {
        width: 100%;
        height: 100%;
        -o-object-fit: contain;
        object-fit: contain;
    }
    .news-sidebar .news-sidebar-news-actions {
        padding: 15px 0;
        overflow: hidden;
        border-bottom: 1px solid #cecece;
    }
    .news-sidebar .news-sidebar-news-action-icon {
        cursor: pointer;
        margin-right: 25px;
    }
    .news-sidebar .news-sidebar-news-date {
        float: right;
        color: #444444;
    }
    .news-sidebar .news-sidebar-news-player {
        padding: 20px 5px;
        color: #546C9E;
        overflow: hidden;
    }
    .news-sidebar .news-sidebar-news-player-embed {
        float: left;
        cursor: pointer;
    }
    .news-sidebar .news-sidebar-news-player-link {
        float: right;
        cursor: pointer;
    }
    /* Works with page */
    #works-second-navbar .works-second-navbar-menu {
        position: relative;
        top: auto;
        height: auto;
        transition: none;
        transform: none;
    }
    #works-second-navbar .works-second-navbar-menu .works-second-navbar-item {
        display: inline-block;
        margin-right: 20px;
    }
    #works-second-navbar .works-second-navbar-item:after {
        display: none;
    }
    .works-products>div:nth-child(2n - 1) {
        clear: none;
    }
    .works-products>div:nth-child(7n - 1) {
        clear: left;
    }
    .works-head-desc {
        padding: 40px 0;
    }
    .works-head-desc-text {
        width: 60%;
    }
    .works-head-desc-title {
        font-size: 20px;
    }
    .works-item-title {
        font-size: 18px;
    }
    .works-bottom-banner-text {
        width: 460px;
        text-align: left;
        font-size: 20px;
        top: 61%;
        left: 19.5%;
        transform: translate(0, 0);
    }
    .works-bottom-banner-text>div {
        letter-spacing: 1px;
    }
    /* Scene page*/
    .scene-card {
        padding: 40px 0;
    }
    .scene-card-item-col {
        height: auto;
        padding-top: 4%;
    }
    .scene-card-content {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        text-align: left;
        margin: 0 auto;
    }
    .scene-card-products {
        margin-top: 30px;
    }
    .scene-card-product {
        text-align: center;
    }
    /* Products page */
    .page-products {
        padding-top: 50px;
    }
    .products-list {
        padding: 20px 0;
    }
    .products-product {
        padding: 15px 0 25px;
    }
    .products-product-action-btn {
        width: 100px;
        padding: 6px 0!important;
    }
    .products-product-learn-more {
        float: right;
        margin-right: 5px;
    }
    .products-product-buy {
        float: left;
        margin-left: 5px;
    }
    /* Support page */
    .page-support .works-head-desc {
        padding: 30px 0 10px;
    }
    .support-item-thumb {
        width: 80px;
        height: 80px;
    }
    .support-item-desc {
        width: 250px;
    }
    .support-app {
        padding: 20px 0 30px;
        display: flex;
        flex-wrap: wrap;
        overflow: hidden;
    }
    .support-app-download {
        min-width: 400px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    .support-app-download-platform {
        padding: 10px 0;
    }
    .support-app-download-platform-icon {
        width: 150px;
        margin-right: 30px;
    }
    /* Support Product page*/
    .page-support-product {
        padding-top: 50px;
    }
    .page-support-product .works-head-desc {
        padding: 30px 0 10px;
    }
    /* Support User Manuals page */
    .page-support-user-manuals {
        padding-top: 50px;
    }
    /* Support Product Videos page */
    .page-support-product-videos {
        padding-top: 50px;
    }
    .page-support-product-videos .support-product-video-play-icon {
        width: 44px!important;
        height: 44px!important;
        top: 0;
        left: 0!important;
        right: 0;
        margin: auto;
    }
    /* Support Product Details page */
    .support-product-details-head {
        padding: 20px 0;
    }
    .support-product-details-thumb {
        width: 70px;
    }
    .support-product-details-faq,
    .support-product-details-manuals,
    .support-product-details-video,
    .support-product-details-updated {
        margin-bottom: 40px;
        padding-left: 40px;
    }
    .support-product-details-section-title {
        margin-left: -40px;
    }
    .support-product-details-manuals-list {
        margin-left: 0;
        text-align: left;
    }
    .support-product-details-manuals-list>a {
        padding: 8px 32px!important;
        font-size: 14px!important;
    }
    .support-product-details-video-thumb {
        margin-left: -40px;
        width: 70%;
        height: 410px;
        text-align: center;
        background: #edf2f8;
    }
    /* Support FAQ page */
    .page-support-faq {
        padding-top: 50px;
    }
    .page-support-faq .products-list {
        padding: 22px 0;
    }
}


/* 大屏幕（大桌面显示器，大于等于 1200px） */

@media (min-width: 1200px) {
    .card-text-title {
        font-size: 24px;
    }
    .card-text-desc {
        font-size: 18px;
    }
    .slide-text {
        font-size: 36px;
    }
    .video-play-icon {
        width: 68px;
        height: 68px;
    }
    .flat-btn {
        padding: 12px 36px;
        font-size: 16px;
    }
    #primary-navbar .primary-navbar-menu-pc {
        margin: 0 0 0 60px;
    }
    #primary-navbar .primary-navbar-menu-pc-item {
        padding: 0 25px;
    }
    #primary-navbar .primary-navbar-product-category {
        padding: 30px 0;
    }
    #primary-navbar .primary-navbar-product-category-thumb {
        height: 288px;
    }
    #primary-navbar .primary-navbar-product-category-title {
        font-size: 15px;
    }
    #primary-navbar .primary-navbar-product-title {
        font-size: 13px;
    }
    .home-banner-title {
        font-size: 42px;
    }
    .home-banner-play-btn {
        padding: 8px 10px;
        font-size: 18px;
    }
    .home-banner-play-btn img {
        width: 24px;
        height: 24px;
        position: relative;
        top: -2px;
    }
    .carousel-control .glyphicon-menu-left,
    .carousel-control .glyphicon-menu-right {
        font-size: 50px;
    }
    .home-product-item-desc {
        margin-top: 30px;
    }
    #home-bottom-video-play {
        width: 68px;
        height: 68px;
    }
    #home-continuous-connections {
        padding: 80px 0;
    }
    .home-continuous-connections-title {
        font-size: 28px;
    }
    .home-continuous-connections-items {
        margin-top: 60px;
    }
    .home-continuous-connections-item {
        width: 300px;
        padding: 0 36px;
    }
    #about-tab .about-tab-contact-list .row>div {
        padding: 20px 15px;
    }
    #about-products .container-fluid {
        padding-left: 70px;
        padding-right: 70px;
    }
    #about-awards {
        margin-top: 90px;
    }
    .about-awards-title {
        font-size: 28px;
    }
    #about-map {
        padding: 80px;
    }
    /* Works with page */
    #works-second-navbar .works-second-navbar-menu .works-second-navbar-item {
        margin-right: 40px;
    }
    .works-head-desc-text {
        width: 50%;
    }
    .works-head-desc-title {
        font-size: 24px;
    }
    .works-item-title {
        font-size: 20px;
    }
    .works-bottom-banner-text {
        width: 550px;
        font-size: 24px;
    }
    /* Scene page*/
    .scene-card {
        padding: 50px 0;
    }
    .scene-card-products {
        margin-top: 40px;
    }
    .scene-card-product {
        width: 80px;
    }
    .scene-card-product-thumb {
        width: 60px;
        height: 60px;
    }
    .scene-card-product-title {
        font-size: 14px;
    }
    .scene-card-plus-icon {
        font-size: 18px;
        top: 20px;
    }
    /* Products page */
    .products-sidebar-nav-item {
        padding: 20px 0;
    }
    .products-product {
        padding: 20px 0 30px;
    }
    .products-product-thumb {
        padding-bottom: 50%;
    }
    .products-product-thumb img {
        width: 50%;
        left: 25%;
        right: auto;
    }
    /* Support page */
    .support-item-title {
        font-size: 18px;
    }
    .support-item-thumb {
        width: 90px;
        height: 90px;
    }
    .support-app-download-platform-icon {
        width: 180px;
    }
    /* Support Product page */
    .page-support-product .products-product-thumb,
    .page-support-product-videos .products-product-thumb {
        padding-bottom: 70%;
    }
    .page-support-product .products-product-thumb img,
    .page-support-product-videos .products-product-thumb img {
        width: 70%;
        left: 15%;
    }
    /* Support Product Details page */
    .support-product-details-thumb {
        width: 80px;
    }
}


/* 高清屏幕（高清桌面显示器，大于等于 1440px） */

@media (min-width: 1440px) {
    .container,
    .container-fluid {
        width: 1410px;
    }
    #primary-navbar .primary-navbar-menu-pc {
        margin: 0 0 0 100px;
    }
    #primary-navbar .primary-navbar-menu-pc-item {
        padding: 0 30px;
    }
    #primary-navbar .primary-navbar-product-category-thumb {
        height: 277px;
    }
    #primary-navbar .primary-navbar-product-category-title {
        font-size: 16px;
    }
    #primary-navbar .primary-navbar-product-title {
        font-size: 16px;
    }
    #primary-navbar .primary-navbar-work-desc {
        width: 350px;
        margin: 25px auto 10px;
    }
    #modal-language .modal-dialog {
        width: 1200px;
        top: 100px;
        bottom: 100px;
        left: 0;
        right: 0;
        margin: 0 auto;
    }
    /* About page */
    .home-product-item-text {
        width: 60%;
    }
    /* Works with page */
    #works-second-navbar .works-second-navbar-menu .works-second-navbar-item {
        margin-right: 60px;
    }
    .works-head-desc-text {
        width: 40%;
    }
    .works-bottom-banner-text {
        width: 680px;
        font-size: 28px;
    }
    .works-bottom-banner-text>div {
        letter-spacing: 2px;
    }
    /* Scene page*/
    .scene-card {
        padding: 60px 0;
    }
    .scene-card-products {
        margin-top: 50px;
    }
    .scene-card-item-col {
        padding-top: 6%;
    }
    /* Products page */
    .products-sidebar-nav {
        padding: 25px 0;
    }
    .products-product {
        padding: 25px 0 35px;
    }
    .products-product-thumb {
        padding-bottom: 44%;
    }
    .products-product-thumb img {
        width: 44%;
        left: 28%;
    }
    /* Support Product page */
    .page-support-product .products-product-thumb,
    .page-support-product-videos .products-product-thumb {
        padding-bottom: 60%;
    }
    .page-support-product .products-product-thumb img,
    .page-support-product-videos .products-product-thumb img {
        width: 60%;
        left: 20%;
    }
    .page-support-product .support-product-video-play-icon,
    .page-support-product-videos .support-product-video-play-icon {
        width: 50px!important;
        height: 50px!important;
    }
    /* Support FAQ page */
    .page-support-faq .products-list {
        padding: 27px 0;
    }
}


/* 全高清屏幕（全高清桌面显示器，大于等于 1720px） */

@media (min-width: 1720px) {
    .container,
    .container-fluid {
        width: 1690px;
    }
    /* About page */
    .home-product-item-text {
        width: 50%;
    }
    /* Works with page */
    #works-second-navbar .works-second-navbar-menu .works-second-navbar-item {
        margin-right: 80px;
    }
    .works-head-desc-text {
        width: 35%;
    }
    .works-bottom-banner-text {
        width: 800px;
        font-size: 32px;
    }
    .works-bottom-banner-text>div {
        letter-spacing: 3px;
    }
    /* Scene page*/
    .scene-card {
        padding: 70px 0;
    }
    .scene-card-products {
        margin-top: 60px;
    }
    .scene-card-item-col {
        padding-top: 7%;
    }
    /* Products page */
    .products-product-thumb {
        padding-bottom: 40%;
    }
    .products-product-thumb img {
        width: 40%;
        left: 30%;
    }
}


/* Patch  */


/* Primary navbar */

#primary-navbar .primary-navbar-sub-menu-pc {
    transform: none;
    opacity: 1;
    height: 0;
    overflow: hidden;
}

#primary-navbar .primary-navbar-menu-pc.expanded .primary-navbar-sub-menu-pc {
    height: auto;
    overflow: auto!important;
    overflow-x: hidden!important;
}

#primary-navbar .primary-navbar-actions a img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

#primary-navbar-toggle img {
    width: 20px;
    height: 20px;
}

#primary-navbar .primary-navbar-support a:after {
    display: none;
}


/* Footer */

#footer-navbar .footer-navbar-item .container:after {
    display: none;
}

#footer-navbar .footer-navbar-item .container>a {
    position: relative;
}

#footer-navbar .footer-navbar-item .container>a:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    left: 0;
    bottom: 0;
    transform: scaleY(0.5);
    background-color: #444444;
}

#footer-navbar .footer-navbar-item.opened .container>a:after {
    display: none;
}

#footer-navbar .footer-navbar-item.opened:nth-last-child(1) .container>a:after {
    display: block;
}

.footer-subscribe .input-group-addon button {
    position: relative;
}

.footer-subscribe .input-group-addon button img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/* Customer support */

#customer-service {
    position: fixed;
    bottom: 40px;
    right: 10px;
    font-size: 12px;
    z-index: 10;
}

#customer-service-tooltip {
    position: absolute;
    top: -80px;
    right: 0;
}

#customer-service-tooltip .customer-service-tooltip-wrap {
    height: 80px;
    display: flex;
    flex-direction: row-reverse;
}

#customer-service-tooltip .customer-service-tooltip-wrap img {
    height: 100%;
}

#customer-service-tooltip .customer-service-tooltip-wrap span {
    height: 100%;
    background-image: url('../images/bubble_02.png');
    background-size: 100% 100%;
    background-position: right;
    white-space: nowrap;
    padding-top: 25px;
}

#customer-service-tooltip #customer-service-tooltip-close {
    position: absolute;
    width: 40px;
    height: 40px;
    top: 15px;
    right: 16px;
    cursor: pointer;
}

.customer-service-btn {
    width: 145px;
    height: 60px;
    background-image: url('../images/customer_service.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    color: #ffffff!important;
    text-decoration: none!important;
    display: block;
}

.customer-service-btn-wrap {
    position: relative;
    height: 40px;
    margin: 0 18px;
    cursor: pointer;
}

.customer-service-btn-text {
    position: absolute;
    width: 60px;
    height: 40px;
    top: 0;
    right: 10px;
    background-color: #546c9e;
    display: inline-block;
    line-height: 40px;
    text-align: center;
    border-radius: 40px;
}

.customer-service-btn-text>span {
    transform: scale(0.9);
    display: block;
    margin-left: -10px;
    margin-right: -10px;
}


/* Home page */

.home-banner-title {
    white-space: normal;
}

#home-slider .carousel-control {
    bottom: auto;
    opacity: 1;
}

#home-slider .carousel-caption {
    white-space: normal;
    text-shadow: none;
    top: 50%;
    font-size: 13px;
}

#home-slider .swiper-button-next,
#home-slider .swiper-button-prev {
    background-image: none;
    margin-top: 0;
    width: auto;
    height: auto;
    transform: translateY(-50%);
}

#home-slider .swiper-button-next img,
#home-slider .swiper-button-prev img {
    height: 40px;
}

#home-slider .swiper-button-prev {
    left: 20px;
}

#home-slider .swiper-button-next {
    right: 20px;
}

#home-slider .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
}

#home-slider .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #ffffff;
}

#home-slider .carousel-inner {
    height: 56.25vw;
}

#home-slider .carousel-inner>.item {
    display: block;
}

.home-product-item .home-product-item-thumb-foreground,
.home-product-item .home-product-item-thumb-background {
    transition: opacity 350ms ease-out;
}

.home-product-item .home-product-item-thumb-foreground {
    opacity: 1;
    z-index: 2;
}

.home-product-item .home-product-item-thumb-background {
    opacity: 0;
    z-index: 1;
}

.home-product-item.scene-visible .home-product-item-thumb-foreground {
    opacity: 0;
}

.home-product-item.scene-visible .home-product-item-thumb-background {
    opacity: 1;
}

.home-product-item-thumb img {
    height: 100%;
    /* left: 20%; */
    width: 100%;
}

.home-continuous-connections-items {
    width: 300px;
    margin: 20px auto 0;
    overflow: hidden;
}

.home-continuous-connections-item {
    width: 33.33%!important;
    margin: 12px 0;
    padding: 0;
    /* float: left; */
    text-align: center;
    display: inline-block;
    outline: none;
    text-decoration: none!important;
}

.home-continuous-connections-item img {
    /* min-width: 89px; */
    height: 24px;
}


/* About page */

#about-products .about-product-text-content {
    background-color: #f7f8f9;
}


/* Contact page */

#about-tab-contact .primary-text-color a {
    color: #546C9E!important;
}


/* Works with page */

#works-second-navbar .works-second-navbar-menu {
    text-align: center;
}

.fullscreen-banner-title {
    white-space: normal;
}


/* Support page */

.support-app-thumb {
    background: none;
    height: auto;
    padding: 30px 0 0;
}

.support-app-thumb img {
    width: 100%;
}

.support-app-download {
    min-width: auto;
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    padding: 30px 0;
    text-align: center;
}

.support-app-download-platform {
    display: inline-block;
    padding: 0 15px;
}

.support-app-download-platform-icon {
    margin: auto!important;
    display: block;
    width: 100px;
    height: 30px;
    object-fit: contain;
}

.support-app-download-updated-info {
    margin-top: 18px;
}


/* FAQ page */

.support-product-details-faq-item-question a {
    position: relative;
    display: block;
    padding-left: 28px;
}

.support-product-details-faq-item-question a span {
    position: absolute;
    left: 0;
}


/* News pages */


/* .news-details .news-details-body img {
  width: 100%!important;
} */


/* .col-wrap-2:nth-child(2n) { */


/* clear: left; */


/* } */


/* About page */

#about-tab .about-tab-item a {
    color: inherit!important;
    text-decoration: none!important;
}

@media (min-width: 768px) {
    .home-continuous-connections-items {
        width: 600px;
        margin: 25px auto 0;
    }
    .home-continuous-connections-item {
        /* min-width: 198px; */
        margin: 25px 0;
    }
    .home-continuous-connections-item img {
        height: 46px;
    }
    #home-slider .swiper-button-next img,
    #home-slider .swiper-button-prev img {
        height: 60px;
    }
    #home-slider .carousel-caption {
        font-size: 22px;
    }
    .scene-card-products {
        margin-left: 0;
        margin-right: 0;
    }
}

@media (min-width: 992px) {
    .home-continuous-connections-items {
        width: 700px;
        margin: 30px auto 0;
    }
    .home-continuous-connections-item {
        /* min-width: 228px; */
        margin: 28px 0;
    }
    .home-continuous-connections-item img {
        height: 50px;
    }
    #home-slider .carousel-caption {
        font-size: 26px;
    }
    /* Support page */
    .support-app-download {
        padding: 40px 0 10px;
    }
    .support-app-download-platform-icon {
        width: 130px;
        height: 39px;
    }
}

@media (min-width: 1200px) {
    .home-continuous-connections-items {
        width: 800px;
        margin: 35px auto 0;
    }
    .home-continuous-connections-item {
        /* min-width: 297px; */
        margin: 30px 0;
    }
    .home-continuous-connections-item img {
        height: 60px;
    }
    #home-slider .swiper-button-next img,
    #home-slider .swiper-button-prev img {
        height: 80px;
    }
    #home-slider .carousel-caption {
        font-size: 36px;
    }
    .support-app-download {
        padding: 45px 0 10px;
    }
    .support-app-download-platform-icon {
        width: 150px;
        height: 44px;
    }
}

@media (min-width: 1440px) {
    .support-app-download {
        padding: 50px 0 10px;
    }
    .support-app-download-platform-icon {
        width: 180px;
        height: 53px;
    }
}

.mh-300 {
    min-height: 300px;
}

.no-decoration {
    display: inline-block;
}

.no-decoration,
.no-decoration:hover,
.no-decoration:focus {
    text-decoration: none!important;
}

.no-decoration+.no-decoration {
    margin-left: 40px;
}

@media screen and (max-width: 740px) {
#home-products .home-product-item{overflow: hidden;display: flex;flex-wrap: wrap;}
#home-products .home-product-item-text-wrap{width: 100%;height: auto;order: 1;}
#home-products .home-product-item-text{ position: relative;
    width: 100%;
    top: 0;
    left: auto;
    transform: none;
    text-align: center;padding: 20px 0;}
#home-products .home-product-item-thumb{width: 100%;height: 420px;order: 0;}






}