@charset "UTF-8";

@font-face {
    font-family: 'Lubalin Medium';
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url(/assets/fonts/LubalinGraphStd-Medium.woff2) format("woff2"),url(/assets/fonts/LubalinGraphStd-Medium.woff) format("woff")
}

/*======================== 通用样式 =============================*/
:focus {
    outline: none;
}

body {
    font-family: 'Century Gothic', Arial, sans-serif;
    font-style: normal;
    color: #000000;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.header {
    font-weight: 400;
    line-height: 19px;

    position: relative;
    z-index: 1040;
}

mark, .mark {
    background-color: yellow;
}


/* Button */
.btn,
.abm-btn,
.btn:active,
.abm-btn:active,
.btn.active.focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn:active:focus,
.btn:focus {
    outline: none;
}

/* To Top 组件样式 */
.to-top {
    position: fixed;
    right: 10px;
    bottom: 150px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #777777;
    color: #FFFFFF;
    border-radius: 4px;
    cursor: pointer;
    transition: all .5s ease-in-out;
    transform: scale(1);
    flex-direction: column;
    font-size: 13px;
    opacity: 1;
    z-index: 9999;
}

.to-top>i {
    font-size: 32px;
    line-height: 18px;
}

.to-top.to-top-hide {
    bottom: -100px;
    transform: scale(0);
    opacity: 0;
}

.to-top:hover {
    background-color: #EF6331;
}

/* 分页样式 */
.pagination>.active>a,
.pagination>.active>a:focus,
.pagination>.active>a:hover,
.pagination>.active>span,
.pagination>.active>span:focus,
.pagination>.active>span:hover {
    background-color: #ef6331;
    border-color: #ef6331;
}

.pagination>li>a,
.pagination>li>span {
    color: #000!important;
}

/* jQuery pagination */
.abm-pagination .pagination>*,
.abm-pagination .pagination>a {
    color: #333333 !important;
    padding: 6px 12px;
    border: 1px solid #ddd;
    background-color: #fff;
    position: relative;
    z-index: 1;
}

.abm-pagination .pagination>a:hover {
    background-color: #eee;
}

.abm-pagination .pagination>.current {
    z-index: 2;
}

.abm-pagination .pagination>.current[rel] {
    color: #777777 !important;
    cursor: not-allowed;
}

.abm-pagination .pagination>[rel="prev"] {
    border-radius: 4px 0 0 4px;
}

.abm-pagination .pagination>[rel="next"] {
    border-radius: 0 4px 4px 0;
}

.abm-pagination .pagination>.current:not([rel]) {
    background-color: #ef6331;
    color: #ffffff !important;
    border-color: #ef6331;
    cursor: default;
}

.abm-pagination .pagination>*+* {
    margin-left: -1px;
}

/* a 链接 */
a:not(.abm-btn):hover,
a:not(.abm-btn):visited,
a:not(.abm-btn):focus,
a:not(.abm-btn) {
    color: #08c;
    text-decoration: none;
}

a.abm-link:hover,
a.abm-link:visited,
a.abm-link:focus,
a.abm-link {
    color: #EF6331;
}

a.abm-link-2 {
    color: #039;
}

a.abm-link-2:hover {
    color: #7aba7a;
}

a.abm-write-link,
a.abm-write-link:hover {
    color: #fff !important;
}

a.black-link {
    color: #000 !important;
}

a.black-link:hover {
    color: #EF6331 !important;
    transition: 0.2s;
}

a.blue-link {
    color: #2195f2 !important;
}

/* Loading */
.loading {
    display: flex;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.loading-item {
    width: 5px;
    height: 20px;
    background-color: #ef6331;

    -webkit-animation: loading 1.2s infinite ease-in-out;
    animation: loading 1.2s infinite ease-in-out;
}
.loading-item + .loading-item {
    margin-left: 5px;
}

.loading-item:nth-child(2) {
    -webkit-animation-delay: .1s;
    animation-delay: .1s;
}

.loading-item:nth-child(3) {
    -webkit-animation-delay: .2s;
    animation-delay: .2s;
}

.loading-item:nth-child(4) {
    -webkit-animation-delay: .3s;
    animation-delay: .3s;
}

.loading-item:nth-child(5) {
    -webkit-animation-delay: .4s;
    animation-delay: .4s;
}

@-webkit-keyframes loading {
    0%, 40%, 100% { -webkit-transform: scaleY(1); }
    20% { -webkit-transform: scaleY(1.7); }
}
@keyframes loading {
    0%, 40%, 100% {
        transform: scaleY(1);
        -webkit-transform: scaleY(1);
    }
    20% {
        transform: scaleY(1.7);
        -webkit-transform: scaleY(1.7);
    }
}

.abm-loading-3 .loading {
    width: 30px;
    height: 30px;
    position: relative;
    display: flex;
    align-items: center;
    left: 0;
    top: 0;
    transform: none;
}
.abm-loading-3 .shape {
    width: 10px;
    height: 10px;
    position: absolute;
    border-radius: 50%;
}

.abm-loading-3 .shape-1 {
    background-color: #1875e5;
    left: -5px;
    animation: animationShape1 7s linear infinite;
}

.abm-loading-3 .shape-2 {
    background-color: #c5523f;
    left: 15px;
    animation: animationShape2 7s linear infinite;
}

.abm-loading-3 .shape-3 {
    background-color: #499255;
    left: 35px;
    animation: animationShape3 7s linear infinite;
}

.abm-loading-3 .shape-4 {
    background-color: #f2b736;
    width: 30px;
    height: 30px;
    left: -40px;
    background-color: transparent !important;
    z-index: 2;
    animation: animationShape4 7s linear infinite;
}

.abm-loading-3 .shape-4 > div {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.abm-loading-3 .shape-4 .shape-4-top {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #fbbc05;
    clip: rect(0 30px 15px 0);
    transform: rotate(-30deg);
    animation: animationShape4Top 0.4s ease infinite alternate;
}

.abm-loading-3 .shape-4 .shape-4-bottom {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #fbbc05;
    clip: rect(15px 30px 30px 0);
    transform: rotate(45deg);
    animation: animationShape4Bottom 0.4s ease infinite alternate;
}

.abm-loading-3 .shape-4 .shape-4-eye {
    width: 5px;
    height: 5px;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 50%;
    position: absolute;
    top: 5px;
    right: 10px;
}

@keyframes animationShape4Top {
    0% {
        transform: rotate(-30deg);
    }

    100% {
        transform: rotate(0);
    }
}

@keyframes animationShape4Bottom {
    0% {
        transform: rotate(45deg);
    }

    100% {
        transform: rotate(0);
    }
}

@keyframes animationShape1 {
    0% {
        opacity: 1;
    }

    17% {
        opacity: 1;
    }

    19% {
        opacity: 0;
    }

    30% {
        opacity: 0;
    }

    40% {
        opacity: 1;
    }

    85% {
        opacity: 1;
    }

    90% {
        opacity: 0;
    }

    95% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes animationShape2 {
    0% {
        opacity: 1;
    }

    20% {
        opacity: 1;
    }

    22% {
        opacity: 0;
    }

    35% {
        opacity: 0;
    }

    45% {
        opacity: 1;
    }

    75% {
        opacity: 1;
    }

    80% {
        opacity: 0;
    }

    90% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes animationShape3 {
    0% {
        opacity: 1;
    }

    27% {
        opacity: 1;
    }

    29% {
        opacity: 0;
    }

    40% {
        opacity: 0;
    }

    64% {
        opacity: 1;
    }

    65% {
        opacity: 1;
    }

    70% {
        opacity: 0;
    }

    80% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes animationShape4 {
    0% {
        left: -40px;
        transform: rotateY(0);
    }

    45% {
        left: 50px;
        transform: rotateY(0);
    }

    50% {
        left: 50px;
        transform: rotateY(180deg);
    }

    95% {
        left: -40px;
        transform: rotateY(180deg);
    }

    100% {
        left: -40px;
        transform: rotateY(0);
    }
}

/** spinner */
.spinner-sprite,
.spinner .decrease,
.spinner .decrease[disabled],
.spinner .increase,
.spinner .value,
.spinner .value.passive {
    background: url('/assets/images/spinner.gif') repeat-x
}

.spinner {
    height: 31px;
    width: 100px;
    overflow: hidden;
    *zoom: 1;
}

.spinner button,
.spinner .value {
    text-align: center;
    display: block;
    float: left;
    height: 100%;
    line-height: 30px;
    margin: 0
}

.spinner button {
    border: none;
    width: 30px;
    color: #e5312a;
    font: 22px Arial bold;
    padding: 0;
    outline: none
}

.spinner .decrease {
    background-position: 0 -62px;
    cursor: pointer;
    text-indent: -10000px
}

.spinner .decrease[disabled] {
    background-position: 0 -93px;
    cursor: default
}

.spinner .increase {
    background-position: 0 0;
    cursor: pointer;
    text-indent: -10000px
}

.spinner .value {
    background-position: 0 -124px;
    width: 36px;
    height: 30px;
    border: none;
    font-family: Arial;
    color: #ffffff;
    padding: 0px
}

.spinner .value.passive {
    background-position: 0 -30px;
    color: #919191
}

.spinner .error,
.spinner .invalid {
    background: #aa0000
}

/* ABM carousel vertically */
@media (transform-3d), (-webkit-transform-3d) {
    .carousel.vertical .carousel-inner>.item.active.right,
    .carousel.vertical .carousel-inner>.item.next {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
        left: 0;
    }

    .carousel.vertical .carousel-inner>.item.active.left,
    .carousel.vertical .carousel-inner>.item.prev {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        top: 0;
        left: 0;
    }

    .carousel.vertical .carousel-inner>.item.next.left,
    .carousel.vertical .carousel-inner>.item.prev.right,
    .carousel.vertical .carousel-inner>.item.active {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        left: 0;
    }

}

/* home page */
.abm-home-banner {
    background-image: url('/assets/images/home/crispr-2500-homepage-large.png');
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    height: 18em;
    display: inline-block;
    width: 100%;
    margin-bottom: 1em;
}

/*屏幕在1100px到1280之间（中屏幕电脑）*/
@media screen and (max-width:700px) {
   

    .abm-home-banner{
        background-image: url('/assets/images/home/crispr-2500-homepage-mobile.png');
    }

}

.abm-home-banner h1 {
    text-align: center;
    position: relative;
    top: 1em;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 45px;
    color: #000000;
}

.abm-home-categories {
    line-height: 1.75em;
}

.abm-home-categories .content-item {
    margin-top: 1em;
    margin-bottom: 1em;
}

.abm-home-categories .content-item ul {
    background: #FaFaFa;
    box-shadow: 1px 5px 10px rgba(0, 0, 0, 0.2);
    border-radius: 7px;
    padding: 1em;
    display: block;
}

.abm-home-categories .content-item ul li:first-child {
    height: 59px;
}

.abm-home-categories .content-title {
    font-style: normal;
    font-weight: 600;
    font-size: 19px;
    line-height: 33px;
    text-align: center;
    color: #EF6331;
}

.abm-home-categories .content-dash {
    width: 48px;
    height: 1px;
    display: inline-block;
    border: 1px solid #CECECE;
    vertical-align: middle;
}

.abm-home-news .new-title {
    font-style: normal;
    font-weight: 600;
    font-size: 1em;
    line-height: 24px;
    color: #EF6331;
    padding: .5em 0;
}

.abm-home-news .news-content {
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    color: #2D2D2D;
}

.abm-home-news .news-date {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    /* identical to box height */
    color: #8D8D8D;
}

.abm-page-title {
    font-size: 1.6em;
    line-height: 1.6;
    margin-top: 0;
    margin-bottom: 0;
}

.abm-page-sm-title {
    font-size: 1.5em !important;
}

.abm-content-font {
    font-size: 1.2em !important;
}

.abm-sm-title-top {
    padding-top: 1em;
}

.abm-sm-title {
    color: #EF6331;
}

.abm-content-second {
    margin-top: 1em;
    margin-bottom: 1em;
}

.abm-content-last {
    margin-top: 1em;
    margin-bottom: 0.5em;
}

.abm-content-underline {
    text-decoration: underline;
}

.abm-content-btn {
    padding: 5px 30px;
    border-radius: 3px;
}


/** abm style */
.abm-container .abm-content {
    width: 100%;
}

/* button */
.abm-btn,
.abm-btn-hover,
.abm-btn:active,
.abm-btn.active.focus,
.abm-btn.active:focus,
.abm-btn.focus,
.abm-btn:active.focus,
.abm-btn:active:focus,
.abm-btn:focus {
    color: #FFFFFF;
}

.abm-btn {
    background-color: #EF6331;
    border: 1px solid #EF6331;
    text-align: center;
    outline: none;
}
.abm-btn:hover {
    color: #ffffff;
}
.abm-btn:not(:disabled):hover {
    background-color: #FF734D;
    border-color: #FF734D;
    opacity: .8;
}

.abm-btn-normal,
.abm-btn-normal:hover,
.abm-btn-normal:not(:disabled):hover {
    background-color: #0094ff;
    border-color: #0094ff;
}

.abm-btn-big {
    padding: 10px 20px !important;
}

.abm-btn-outer,
.abm-btn-outer:focus {
    background-color: transparent;
    border-width: 2px;
    color: #333;
}
.abm-btn-outer:not(:disabled):hover,
.abm-btn-outer:not(:disabled):active,
.abm-btn-outer:not(:disabled):active:focus {
    background-color: transparent;
    color: #FF734D;
    opacity: 1;
}
.abm-btn-outer:hover {
    box-shadow: 0 0 3px 0 #FF734D;
}
.abm-btn-outer:disabled {
    opacity: .65;
    color: #ccc;
    background-color: #eee;
    border-color: #ddd;
    box-shadow: unset;
}

/* Breadcrumb 组件样式 */
.abm-breadcrumb {
    padding: 15px 0;
    margin-bottom: 0;
    font-size: 14px;
    position: relative;
    z-index: 1000;
}

.abm-breadcrumb li {
    list-style: none;
    float: left;
    font-weight: 700;
}

.abm-breadcrumb li a:link,
.abm-breadcrumb li a:visited,
.abm-breadcrumb li a:hover,
.abm-breadcrumb li a:active,
.abm-breadcrumb li a:focus,
.abm-breadcrumb li a,
.abm-breadcrumb li:not(:last-child)::after {
    color: #808083;
    font-weight: bold;
}

.abm-breadcrumb li:not(:last-child)::after {
    font-family: 'FontAwesome';
    content: '\f105';
    padding: 0 5px;
}

.abm-breadcrumb::after,
.abm-breadcrumb li:last-child::after {
    content: '';
    clear: both;
    display: block;
}

/* 公共页面布局需要 */
/* header */
.abm-top-menu {
    display: inline-block;
    width: 100%;
    border-bottom: 2px solid #EF6331;
    text-align: right;
}

.abm-top-menu-sm-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5em 0;
}

.abm-top-nav {
    position: fixed;
    left: 100%;
    top: 0;
    width: 100vw;
    bottom: 0;
    z-index: 1000;
    background-color: #ffffff;
    transition: left .3s ease;
    overflow: hidden;
    padding: 50px 15px 15px;
    float: right;
    display: flex;
    margin: 0;
    align-items: center;
    justify-content: end;
}

.abm-top-nav.show {
    left: 0;
}

.abm-top-nav .close-btn {
    position: absolute;
    right: 0;
    top: 0;
    width: 48px;
    height: 48px;
    text-align: center;
    line-height: 48px;
    padding: 0;
}

.abm-top-nav li {
    width: 50%;
    float: left;
    height: 100px;
    padding: 15px;

    list-style: none;
    position: relative;
}

.abm-top-nav li a {
    height: 100%;
    background-color: #ef6331;
    color: #fff !important;
    font-size: 1.2em;
    border-radius: 6px;

    line-height: 22px;
    padding: .3em 1em;
    display: flex;
    align-items: center;
    transition: all .2s ease;
}

.abm-top-nav li.open>a,
.abm-top-nav li a:hover {
    color: #fff;
    background-color: #ef6331;
}

.abm-top-nav li a .cart-amount {
    margin-left: 5px;
    color: #ffffff;
    background-color: #EF6331;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1em;
    padding: 2px 4px;
    font-size: small;
}

.abm-top-nav li a:hover .cart-amount {
    color: #EF6331;
    background: #ffffff;
}

.abm-top-nav .dropdown-backdrop {
    background-color: rgba(0, 0, 0, .3);
}

.abm-top-nav li.open .abm-top-dropdown-menu {
    position: fixed;
    left: 15px;
    right: 15px;
    top: 100px;
    padding: 10px 0;
    text-decoration: none;
}

.abm-top-nav li.open .abm-top-dropdown-menu .abm-top-dropdown-li {
    padding: 0;
    margin: 0;
    height: unset;
}

.abm-top-nav li.open .abm-top-dropdown-li>a:link,
.abm-top-nav li.open .abm-top-dropdown-li>a:visited,
.abm-top-nav li.open .abm-top-dropdown-li>a {
    line-height: 1;
    padding: 5px;
    /* background-color: #eee !important; */
    border-radius: 0;
}

.abm-top-nav-country-btn {
    padding: 0.3em 0 0.3em 1em;
    cursor: pointer;
    display: flex;
    align-items: center;
    height: 100%;
    border-radius: 6px;
    line-height: 22px;
    font-size: 1.2em;
    background-color: #ef6331;
    color: #fff;
}
.abm-top-nav-country-btn img {
    height: 0.9em;
}
.abm-country-selector-dialog {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
}
.abm-country-selector-dialog .backdrop {
    background-color: rgba(0, 0, 0, 0.3);
    position: absolute;
    inset: 0;
    z-index: 5;
}
.abm-country-selector-dialog .abm-country-selector-dialog-container {
    position: relative;
    z-index: 10;
    border-radius: 8px;
    border: none;
    box-shadow: 0 0 10px 0 #666;
    background-color: #333;
    width: 100%;
    max-width: 560px;
    padding: 0;
    height: calc(100% - 1rem * 2);
    display: flex;
    flex-direction: column;
    padding-bottom: 20px;
    margin: 1rem auto;
}
.abm-country-selector-dialog-header {
    padding: 18px 20px;
    display: flex;
    align-items: center;
}
.abm-country-selector-dialog-search-form {
    background-color: #404040;
    border-radius: 8px;
    display: flex;
    align-items: center;
    padding-left: 12px;
    flex-grow: 1;
}
.abm-country-selector-dialog-search-form svg {
    color: #8a8a8a;
}
.abm-country-selector-dialog-search-input {
    height: 52px;
    font-size: 18px;
    color: #fff;
    padding-left: 12px;
    background-color: transparent;
    border: none;
    flex-grow: 1;
}
.abm-country-selector-dialog-close-btn {
    padding: 8px;
    margin-left: 8px;
    color: #e8e8e8;
    border: none;
    background-color: transparent;
    opacity: 0.65;
    margin-right: -10px;
    line-height: 1;
}
.abm-country-selector-dialog-close-btn svg:hover path {
    fill: #fff;
}
.abm-country-selector-dialog-main {
    height: 100%;
    overflow-y: scroll;
    padding: 0 20px;
}
.abm-country-selector-dialog-item {
    padding: 10px 10px 10px 14px;
    border-radius: 0.5rem;
    color: #ccc;
    display: flex;
    margin-bottom: 0;
    cursor: pointer;
    align-items: center;
    font-weight: normal;
}
.abm-country-selector-dialog-item svg,
.abm-country-selector-dialog-item svg:hover {
    color: green;
    opacity: 0;
}
.abm-country-selector-dialog-item input {
    display: none;
}
.abm-country-selector-dialog-item input:checked+svg {
    opacity: 1;
}
.abm-country-selector-dialog-item:hover {
    background-color: #3c4053;
}
.abm-country-selector-dialog-item.selected {
    background-color: #4f5b93;
}

.abm-header {
    border-bottom: 1px solid #ef6331;
    min-height: 22px;
    box-shadow: 0 1px 10px rgba(0, 0, 0, .1);
    left: 0;
    top: 0;
    right: 0;
    z-index: 999;
}

.abm-header-flag {
    width: 1.3em;
    margin-left: 15px;
}

/* nav */
.abm-nav {
    background-color: #ef6331;
    display: flex;
}

.abm-nav li {
    text-align: center;
    list-style: none;
    width: 25%;
    font-weight: 700;
}

.abm-nav>li>a:focus,
.abm-nav>li>a:link,
.abm-nav>li>a:visited,
.abm-nav>li>a {
    border-radius: 0;
    color: #fff;
    outline: none;
    background-color: #ef6331;
    height: 100%;
    transition: 0.3s;

}

.abm-nav>li+li {
    border-left: 1px solid #d8d8d8;
    margin-left: 0;
}

.abm-nav li a.open,
.abm-nav li a:hover {
    background-color: #ff734d;
    border-bottom: 0;
}

.abm-nav-item {
    line-height: 1.5;
}

.abm-nav-item a:hover,
.abm-nav-item a:active {
    color: #ef6331;
}

.abm-sub-nav {
    position: absolute;
    left: 0;
    background-color: #fff;
    width: 100%;
    box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
    min-height: 160px;
    border-radius: 0 0 6px 6px;
    display: none;
    padding: 10px;
    z-index: 2999;
}

.abm-sub-nav.show {
    display: block;
}

.abm-sub-nav .row {
    margin-left: 0;
    margin-right: 0;
}

.abm-sub-nav .content {
    display: inline-block;
    width: 100%;
}

.abm-sub-nav-item {
    page-break-inside: avoid;
    -moz-page-break-inside: avoid;
    -webkit-column-break-inside: avoid;
    break-inside: avoid;
    line-height: 1.8em;
}

.abm-nav-top-menu {
    font-weight: 700;
}

/* 重新设计 header */
.abm-header {
    height: 48px;
    line-height: 48px;
    text-align: center;
}

.abm-header-logo {
    height: 32px;
}

.abm-login-title {
    font-size: 2em !important;
    padding-top: 35px;
    padding-left: 40px;
    font-weight: bold;
}

.abm-log-btn {
    border: 1px solid #ef6331;
    background: #ef6331;
    color: #fff;
    font-weight: bold;
    font-size: 1em;
}

.abm-log-btn:hover,
.abm-log-btn:active,
.abm-log-btn:visited,
.abm-log-btn:focus {
    border: 1px solid #ff734d !important;
    background: #ff734d !important;
    color: #fff;
    font-weight: bold;
    font-size: 1em;
}

.abm-login-form-endlink a.pdl b {
    width: 19px;
    height: 18px;
    display: inline-block;
    background: url(/assets/images/icons/QQ-weixin.png) no-repeat;
    margin: -4px auto;
}

.abm-login-form-endlink a.pdl b.weixin-icon {
    background-position: -20px 0
}

.abm-login-form-endlink a.pdl b.QQ-icon {
    background-position: 0 0
}

.abm-wx-qrcode-modal {
    text-align: center;
}

.abm-wx-qrcode-modal img {
    border: 1px solid #eee;
    max-width: 100%;
    min-width: 100px;
}

.abm-wx-qrcode-modal .modal-header {
    border-bottom: none;
}

.abm-wx-qrcode-modal .modal-body {
    padding: 0;
}

.abm-wx-qrcode-modal .modal-footer {
    border-top: none;
}

.abm-header .header-icon {
    position: absolute;
    font-size: 18px;
    top: 0;
    line-height: 48px;
    padding: 0 15px;
    left: 0;
    display: inline;
    color: #ef6331;
}

.abm-header .header-icon.right {
    right: 0;
    left: unset;
}

.abm-header .abm-header-nav {
    position: fixed;
    background-color: #fff;
    left: 100%;
    top: 0;
    bottom: 0;
    padding: 50px 15px 15px;
    width: 100vw;
    transition: left .3s ease-in-out;
}

.abm-header .abm-header-nav.show {
    left: 0;
}

.abm-clear-div {
    clear: both;
}

.abm-header .abm-header-nav .close-btn {
    position: absolute;
    right: 0;
    top: 0;
    width: 48px;
    height: 48px;
    text-align: center;
    line-height: 48px;
    font-size: 20px;
    padding: 0;
    color: #808083;
}

.abm-header .abm-header-nav li {
    width: 50%;
    font-size: 20px;
    height: 100px;
    padding: 15px;
}

.abm-header .abm-header-nav li a .cart-amount {
    font-size: 18px;
    background-color: #fff;
    color: #ef6331;
    min-width: 20px;
    height: 20px;
    line-height: 20px;
}

.abm-header .abm-header-nav li a {
    display: flex;
    align-items: center;
    height: 100%;
    border-radius: 5px;
    color: #fefefe;
    background-color: #ef6331;
}

.abm-navbar {
    position: fixed;
    left: 0;
    width: 0;
    top: 0;
    z-index: 1000;
    margin: 0;
    background-color: #fff;
    bottom: 0;
    padding: 0;
    overflow-x: hidden;
    overflow-y: auto;
    transition: width .3s ease-in-out;
}

.abm-navbar.show {
    width: 100vw;
}

.abm-navbar .abm-nav-box {
    padding-top: 50px;
}

.abm-navbar .close-btn {
    color: #808083;
    position: absolute;
    right: 0;
    top: 0;
    width: 48px;
    height: 48px;
    text-align: center;
    line-height: 48px;
    font-size: 18px;
}
.abm-navbar .close-btn .fa {
    line-height: 48px;
}

.abm-navbar .abm-navbar-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100vw;
    line-height: 38px;
    padding: 0 15px;
    position: relative;
    color: #808083;
    font-size: 16px;
    border-top: 1px solid #ccc;
    height: 38px;
    overflow: hidden;
    font-weight: 700;
}

.abm-navbar .abm-sub-nav {
    position: unset;
    min-height: unset;
    border-radius: 0;
    box-shadow: unset;
    padding-top: 0;
    padding-bottom: 0;
    border-top: 3px solid #ef6331;
}

.abm-nav-top-menu {
    display: block;
}
.abm-sub-nav-item .abm-nav-top-menu {
    font-size: 18px;
}
.abm-sub-nav-parent {
    font-weight: 600;
}
.abm-sub-nav-children {
    padding-left: 30px;
}

.search-container {
    margin-top: 2.5em;
    margin-bottom: 1em;
    /* padding-top: 0.75em; */
}

.search-container .input-group input.form-control {
    border: none;
    box-shadow: none;
    background-color: #eeeeee;
    z-index: 2;
}

.search-container form .input-group-btn {
    vertical-align: top;
}

.body-container {
    padding: 0;
    background-color: #fff;
}

.abm-content-menu {
    font-size: 16px;
    font-weight: 700;
    padding: 30px 0 20px 0;
}

.abm-content-menu a {
    margin-left: 7px;
    margin-right: 7px;
}

.abm-menu-div {
    column-count: 1;
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 20px;
}

/*
header end
*/
/* footer */
.abm-footer {
    border-top: 1px solid #ef6331;
}

.abm-social-links {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1em;
}

.abm-social-links li {
    float: left;
    margin-right: 15px;

    margin-bottom: 15px;
}

.abm-social-links img {
    height: 48px;
}

.hubspot-icon {
    width: 30px;
}

.abm-hr {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
}

.abm-all-hr {
    border-top: 1px solid #d1d1d1;
    margin: 6px 15px;
}

/**
    footer start
    sven add
**/
.footer-link-icon {
    font-size: 3rem;
    margin: 5px 10px;
    vertical-align: middle;
}

.abm-footer-link-icon-blog {
    vertical-align: bottom;
}

svg:hover path {
    fill: #ef6331;
}

.abm-footer-btn {
    width: 120px;
    border: 1px solid #ef6331;
    background-color: #ef6331;
    color: white;
    height: 40px;
    font-size: 0.75em;
    margin-bottom: 35px;
    font-weight: 700;
    margin-right: 20px !important;
    mso-border-shadow: no;
    margin-top: 20px;
    border-radius: 5px;
}

.abm-footer-btn:hover {
    background-color: #ff734d;
    color: white;
}

.abm-footer-btn-link {
    font-size: 1.5em;
    margin: 40px 25px 0 0px;
}

a.abm-footer-links,
a.abm-footer-links:visited {
    color: #666;
}

a.abm-footer-links:hover {
    color: #ff734d;
}

.abm-footer-dl{
    padding: 0!important;
}

.abm-category-list-content {
    margin: 10px 20px 10px 0;
}

.abm-category-list-content {
    border: 0;
    border-radius: 4px;
    box-shadow: 0 3px 5px -5px rgba(0, 0, 0, .1), 0 5px 10px rgba(0, 0, 0, .12);
    padding: 20px 25px;
}

.abm-category-list-pname {
    float: left;
}

.abm-category-list-btn {
    float: right;
}

.abm-product-list>ol {
    counter-reset: item;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.abm-products-specification {
    /*margin: 20px 0;*/
    width: 100%;
    overflow-x: auto;
}

.abm-products-specification>table,
.abm-products-specification>table>tbody {
    display: inline-block;
    width: 100%;
}

.abm-specifications-value {
    /*display: inline-block;*/
    min-width: 100px;

}

.abm-category-list-cname a {
    color: #a4a4a4 !important;
    text-decoration: underline;
}

.abm-top-dropdown-menu {
    z-index: 2100;
    /* min-width: 187px; */
    border: none !important;
}

.abm-print-icon {
    font-size: 14px;
    padding-left: 1em;
    cursor: pointer;
}

.abm-print-icon:before {
    padding-right: 3px;
}


.abm-top-dropdown-li {
    width: 100% !important;
}

.abm-top-dropdown-li>a:link,
.abm-top-dropdown-li>a:visited,
.abm-top-dropdown-li>a {

    background-color: #fff !important;
}

.abm-top-dropdown-li>a:active,
.abm-top-dropdown-li>a:hover {
    color: #ef6331 !important;
    background-color: #fff !important;
}

.abm-top-dropdown-ul {
    border: 0;
    border-radius: 0;
    margin-top: 0 !important;
    width: 100%;
}

.abm-top-dropdown-ul:hover {
    display: block;
}

/**
    cate end
**/
.abm-content-title {
    font-size: 25px;
    font-weight: bold;
    padding: 25px 30px 10px 24px;
    margin-bottom: 1em;
    border-bottom: 1px dotted #eee;
}

.abm-content-container {
    background-color: #fff;
    overflow: hidden;
}

.abm-font-align-right {
    text-align: right;
}

/**
abm-text-*
 */
.abm-text-default {
    color: #ef6331;
}

.abm-text-gray {
    color: #f4f4f4;
}

.abm-text-red {
    color: red;    
}

/*Common container*/
.abm-page-container {
    padding: 1.5em;
}

.abm-page-title {
    font-style: normal;
    font-weight: 500;
    color: #000000;
    font-family: 'Lubalin Medium', 'Century Gothic', Arial, sans-serif;
}

.abm-page-panel {
    background: #FFFFFF;
    box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    padding: 1.5em;
}

/* Table */
.abm-table {
    width: 100%;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 3px 3px 15px rgba(0, 0, 0, .15);
}

.abm-table thead tr {
    color: #ffffff;
    background-color: #EF6331;
}

.abm-table tr th,
.abm-table tr td {
    padding: .8em 1.5em;
}

.abm-table.x_border tr th,
.abm-table.x_border tr td {
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.abm-table.x_border thead tr:first-child th,
.abm-table.x_border thead tr:first-child td,
.abm-table.x_border tbody tr:first-child th,
.abm-table.x_border tbody tr:first-child td {
    border-top: none;
}

.abm-table.x_border thead tr:last-child th,
.abm-table.x_border thead tr:last-child td,
.abm-table.x_border tbody tr:last-child th,
.abm-table.x_border tbody tr:last-child td {
    border-bottom: none;
}
.abm-table-cell-notes{
    border-top: none !important;
    padding-top: 0 !important;
}
.abm-table-cell-notes p{
    font-size: small;
    word-break: break-all;
    line-height: 1.1;
    display: inline-block;
}
.abm-table-cell-notes>p>span{
    color: red;
    font-weight: bold;
    padding-right: 1em;
}


/**
catalog
 */
.abm-catalog-container {
    background: #fff;
    padding-bottom: 5rem;
    display: inline-block;
    width: 100%;
}

.abm-catalog-container .row {
    margin: 0;
}

.abm-catalog-title {
    font-size: 2em;
    font-weight: 700;
    border-bottom: 3px solid #f26522;
    padding: .5em 0;
}

.abm-catalog-attribute ul {
    padding: 10px 0;
}

.abm-catalog-attribute ul li {
    list-style: none;
    font-size: 1.2em;
    line-height: 1.5em;
}

.abm-catalog-li-item {
    width: 8rem;
    font-weight: 700;
    display: inline-block;
}

.abm-catalog-addtocart {
    margin: 0 0 1em;
}

.abm-catalog-addtocart .spinner {
    display: inline-block;
    vertical-align: middle;
}

.abm-catalog-addtocart button.tocart,
.abm-catalog-addtocart button.tocart:visited {
    background: #ef6331;
    border: 1px solid #ef6331;
    border-radius: 3px;
    color: #fff;
    font-weight: bold;
    padding: 2px 10px;
}

.abm-catalog-addtocart button.tocart:hover {
    background: #ff734d;
    border: 1px solid #ff734d;
}

.abm-catalog-media-box {
    display: table-cell;
    width: 300px;
    height: 300px;
    background-color: #f5f5f5;
    vertical-align: middle;
    text-align: center;

    cursor: zoom-in;
}

.abm-catalog-media {
    max-height: 300px;
    max-width: 300px;
    /*max-width: 100%;*/
    min-height: 180px;
}

/**
cms & online form
 */
.abm-online-form-content,
.abm-redirect-box,
.justify-content-center {
    min-height: 600px;
    padding: 15px;
}

.abm-cms-content {
    min-height: 600px;
    padding: 0 15px;
}

.abm-online-form-content {
    text-align: center;
}

.abm-online-form-default {
    padding: 3em;
}

.abm-redirect-box {
    font-size: 1.5em;
}

.abm-redirect-content {
    text-align: center;
    width: 500px;
    margin: 100px auto;
}

.abm-custom-quote-box {
    background: #fafafa;
    padding: 15px;
    border-radius: 3px;
    line-height: 1.5em;
    width: 100%;
    display: inline-block;
}

.abm-custom-quote-answer {
    margin-top: 3em;
    padding-top: 5px;
    border-top: 1px solid #fff;
}

.abm-custom-quote-box-footer {
    padding: 1em 0;
}

.abm-custom-quote-time {
    padding: 0 0 2em;
    display: inline-block;
    font-size: small;
    color: #666;
}

.abm-custom-quote-Solved,
.abm-custom-quote-Pending {
    color: #fff;
    padding: 2px;
    border-radius: 3px;
    font-size: small;
    width: 4em;
    text-align: center;
    display: inline-block;
}

.abm-custom-quote-Solved {
    background: #5cb85c;
}

.abm-custom-quote-Pending {
    background: #999;
}

.abm-quote-tfoot {
    border-top: 2px solid #eee;
    background: #eee;
}

.abm-quote-tfoot tr:first-child td {
    margin-top: 1em;
}

.abm-quote-tfoot td {
    border: none !important;
}

.abm-quote-tfoot .abm-currency-symbol {
    margin-right: 5px;
    font-style: normal;
}

.abm-quote-currency-cell {
    font-style: italic;
}

.abm-custom-list-box {
    min-height: 500px;
    margin-bottom: 3em;
    display: inline-block;
    width: 100%;
}

.abm-custom-list-box table thead {
    border-top: 1px solid #ddd;
}

.abm-custom-list-box table tfoot td:first-child {
    vertical-align: middle;
}

.abm-custom-list-box table tfoot td:last-child {
    text-align: right;
}

.abm-order-view-div {
    padding-top: 20px;
}

.abm-order-base-line {
    font-size: 1.2em;
    line-height: 1.5;
}

.abm-sales-order-state {
    padding: 0 4px;
    border-radius: 3px;
    font-size: smaller;
}

.abm-sales-order-state-processing {
    background: #0076d6;
    color: #fff;
}

.abm-sales-order-state-canceled {
    background: #e52207;
    color: #fff;
}

.abm-sales-order-state-fraud {
    background: #e6e6e6;
    color: #e66f0e;
}

.abm-sales-order-state-holded {
    background: #fa9441;
    color: #fff;
}

.abm-sales-order-state-pending {
    background: #009ec1;
    color: #fff;
}

.abm-sales-order-state-complete {
    background: #538200;
    color: #fff;
}

.abm-sales-order-state-holded {
    background: #c05600;
    color: #fff;
}

.abm-sales-order-state-paid {
    background: #676cc8;
    color: #fff;
}

.abm-order-additional-infomation .list-group-item {
    border-left: none;
    border-right: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    padding: 10px 0 !important;
}

.abm-order-additional-infomation .list-group-item-heading {
    font-weight: 700;
}

.abm-order-additional-infomation .list-group-item:last-child {
    border-bottom: none;
}

/**
regiester
 */
.abm-register-captcha {
    padding: 0;
    cursor: pointer;
    height: 34px;
    border-radius: 3px;
}

.abm-register-action {
    padding: 1em 0;
    display: inline-block;
}

.abm-verify-content {
    padding: 1em 0;
    margin-bottom: 3em;
    font-size: 1.2em;
}

.abm-verify-content .d-inline {
    display: inline-block;
}

/**
abm customer
 */
.abm-customer-title {
    font-size: 2em;
    font-weight: bold;
    line-height: 1.25em;
    padding: 25px 15px 10px;
    margin-bottom: 1em;
    border-bottom: 1px dotted #eee;
}

.abm-customer-subtitle {
    font-size: 1.3em;
    font-weight: 700;
    margin: 10px 0;
}

.abm-customer-add-btn {
    font-size: 14px;
    float: right;
}

.abm-customer-left-menu {
    background: #fff;
    padding: 0;
}

.abm-dashboard-second-title {
    font-size: 2em;
    font-weight: bold;
}

.abm-dashboard-second-title img {
    margin-left: 5px;
}

.abm-dashboard-item-title {
    font-size: 1.5em;
    padding: .7em 0px .5em;
}

.abm-address-template {
    padding: 0;
}

.abm-address-template li {
    list-style: none;
    line-height: 1.5;
}

.abm-payment-method {
    line-height: 1.5;
    color: #08c;
    font-weight: 700;
}

/*
消息提醒
 */
.abm-message-alert {
    position: fixed;
    z-index: 9999;
    top: 50px;
    right: 30px;
    /* width: 350px; */
    max-width: calc(100vw - 60px);
}
.abm-message-alert-x-center {
    left: 50%;
    transform: translateX(-50%);
    right: auto;
}

/* abm search */
.abm-search-filter {
    display: inline-block;
    padding: 0;
}

.abm-search-filter li {
    list-style: none;
}

.abm-search-filter .filter-section {
    border: 2px solid #EF6331;
    box-sizing: border-box;
    border-radius: 10px;
    padding: 1em;
    min-height: 10em;
}

.abm-search-filter .section-title {
    font-size: 1.5em;
    line-height: 1.5em;
    color: #EF6331;
    font-weight: 600;
    border-bottom: 2px solid #DEDEDE;
}

.abm-search-filter .section-item {
    padding-top: 0.3em;
}

.abm-search-filter .section-item>span:first-child {
    display: inline-block;
    max-width: 80%;
}

.abm-search-filter .section-item>span {
    line-height: 1.2em;
}

.abm-search-filter .section-item>span:last-child {
    background: #EF6331;
    border-radius: 3px;
    color: #fff;
    float: right;
    width: 3em;
    text-align: center;
    cursor: pointer;
    line-height: 1.2;
    padding: 1px 2px;
}

.abm-search-filter .filter-section {
    margin-top: 1em;
}

.abm-search-filter .section-item>span[disabled="disabled"] {
    background: #C4C4C4;
}

.abm-search-filter .search-title-count {
    padding-left: 3px;
    font-size: medium;
}

/*.abm-search-filter-head a{*/
/*letter-spacing: 1pt;*/
/*}*/
.abm-search-filter-head a:before {
    padding-right: 2pt;
}

.abm-search-product-list {
    font-size: 1.875em;
    line-height: 2.1875em;
    font-weight: 500;
}

.abm-search-item-container {
    box-shadow: 3px 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    padding: 1.5em 2em;
}

.abm-search-item {
    margin-bottom: 2em;
}

.abm-search-item table td {
    border-top: none !important;
}

.abm-search-item .item-accession-number {
    font-weight: 700;
}

.abm-search-item .item-common {
    color: #505050;
}

.abm-search-item-gene {
    font-size: 1.25em;
    font-weight: 600;
    line-height: 1.6875em;
}

.abm-search-item-top {
    border-bottom: 1px solid #dedede;
}

.abm-search-item .item-customization {
    padding-top: 1em;
    color: #505050;
    font-weight: 700;
}

.abm-search-item .item-customization i {
    color: #EF6331;
}

.abm-remove-all-filter {
    color: #EF6331;
    border: 1px solid #EF6331;
    padding: 1px 3px;
    line-height: 1em;
    border-radius: 2px;
}

.abm-remove-all-filter:hover,
.abm-remove-all-filter:focus,
.abm-remove-all-filter:active {
    background: #EF6331;
    color: #fff;
}

.abm-search-item-header,
.abm-search-item-body {
    display: flex;
}

.abm-search-item-title,
.abm-search-item-content,
.abm-search-item-content-info {
    flex: 1;
}

.abm-search-item-action,
.abm-search-item-media {
    width: 150px;
    margin-left: 20px;
}

.abm-search-item-action .abm-btn {
    font-size: 16px;
}

.abm-search-item-name {
    color: #EF6331;
    font-weight: 600;
    font-size: 16px;
}
.abm-search-item-name .species {
    color: #333;
}

.abm-search-item-type a:hover,
.abm-search-item-type a {
    text-decoration: underline;
}

.abm-search-item-media {
    border: 1px solid #ddd;
    padding: 2px;
    height: 150px;
}

.abm-search-item-media .carousel,
.abm-search-item-media .carousel .carousel-inner {
    width: 100%;
    height: 100%;
}

.abm-search-item-media .carousel-inner>.item.next,
.abm-search-item-media .carousel-inner>.item.active {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.abm-search-item-media .carousel-inner>.item>a>img,
.abm-search-item-media .carousel-inner>.item>img {
    max-width: 100%;
    max-height: 100%;
}

.abm-search-item-hr {
    margin-top: 10px;
    margin-bottom: 10px;
}

.abm-search-item-content {
    display: inline-block;
}

.abm-search-item-content p {
    margin-bottom: 0;
    display: inline-block;
    vertical-align: top;
}

.abm-search-item-name-svg {
    vertical-align: middle;
}

.abm-search-item-content-base,
.abm-search-item-content-info {
    padding-left: 0;
    width: 100%;
    display: inline-block;
}

.abm-search-item-content-base .attribute,
.abm-search-item-content-info .attribute {
    width: auto !important;
    margin-right: .5em;
    font-weight: 700;
}

.abm-search-item-content-base .attribute-value,
.abm-search-item-content-info .attribute-value {
    /*color: #2195f2;*/
    color: #000;
}

.abm-suggestion{
    font-size: small;
    font-weight: 400;
    color: #999;
}

.abm-suggestion .item{
    cursor: pointer;
    color: #333;
    border: 1px solid #eee;
    padding: 0 2px;

}

/* abm gene page */
.abm-gene-container .gene-species {
    font-weight: 600;
    font-size: 1.25em;
    line-height: 1.5em;
    color: #EF6331;
}


.abm-title {
    margin-bottom: 1em;
}

/* Multiple Select */
.multiple-select {
    position: relative;
}

.multiple-select-option {
    position: absolute;
    left: -1px;
    right: -1px;
    border: 1px solid #ddd;
    padding: 5px 0;
    text-align: left;
    border-radius: 4px;
    overflow: hidden;
    /*z-index: -1;*/
    top: calc(100% + 5px);
    z-index: 100;
    background-color: #ffffff;
}

.multiple-select-option>* {
    padding: 8px 15px;
    color: #333333;
    margin: 5px 0;
}

.multiple-select-option>*:not(.selected):hover {
    background-color: #f5f5f5;
}

.multiple-select-option>*.selected {
    background-color: #EF6331;
    color: #fff;
}

.multiple-select.focus .multiple-select-option {
    top: calc(100% + 5px);
    z-index: 100;
}

/* Antibody Index Page. */
.antibody-search-input {
    border: none;
    box-shadow: none;
    background-color: #f5f5f5;
}

.input-group .antibody-search-input:focus {
    box-shadow: none;
    z-index: 2;
}

.promotion-box {
    background-color: #dddddd;
    margin-bottom: 3rem;
    min-height: 250px;
    font-size: 2.5em;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* option */
option:disabled {
    color: #cccccc;
}

/* customize */
.customize-design-btn {
    text-align: left;
    background-color: #ef6331;
    color: #fff;
    border-radius: 4px;
    padding: 5px 10px;
}
.customize-design-btn > a:visited,
.customize-design-btn > a:focus,
.customize-design-btn > a {
    color: #efefef;
    text-decoration: underline;
}
.customize-design-btn > a:hover {
    color: #fff;
    text-decoration: underline;
}

.abm-specifications-value ol {
    list-style-position: inside;
    padding-left: 0;
}

/* READY TO USE PAGE */
.ready-to-use-search-form {
    margin-top: 30px;
    margin-bottom: 30px;
}
.ready-to-use-search-form .search-form-group {
    display: grid;
    grid-template-columns: 1fr;
}
.ready-to-use-search-form .search-form-group .search-form-group-input,
.ready-to-use-search-form .search-form-group .search-form-group-select {
    border: 3px solid #EF6331;
    border-radius: 4px;
    padding: 8px 10px;
    margin-bottom: 15px;
    width: 100%;
    font-size: 16px;
    outline: none;
}

.ready-to-use-search-form .search-form-group .search-form-group-select {
    background-color: #FFFFFF;
    color: #514114;
}
.ready-to-use-search-form .search-form-group .search-form-group-input {
    line-height: 1.42857143;
}
.ready-to-use-search-form .search-form-group .search-form-group-button {
    width: 100%;
    font-size: 16px;
    color: #FFFFFF;
    background-color: #EF6331;
    outline: none;
    border: none;
    cursor: pointer;
    letter-spacing: 2px;
    font-weight: 600;
    border-radius: 4px;
    line-height: 1.42857143;
    padding: 14px 10px;
}

.homepage-categories-box {
    display: grid;
    grid-gap: 30px;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 30px;
    margin-bottom: 30px;
}
.homepage-services-box{
    display: grid;
    grid-gap: 30px;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 10px;
    margin-bottom: 30px;
}
.homepage-category-item {
    box-shadow: 1px 5px 10px rgba(0, 0, 0, .2);
}
.homepage-category-item-header {
    height: 70px;
    font-size: 22px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    background-color: #EF6331;
    color: #fff !important;
    font-weight: 600;
}
.homepage-category-item-body {
    padding: 20px 0 20px;
}
.homepage-category-item-body ul {
    padding-left: 0;
}
.homepage-category-item-body ul li {
    padding: 3px 0 3px 20px;
    list-style: none;
}
.homepage-category-item-body ul li.show-hidden-children-on-hover {
    position: relative;
}
.homepage-category-item-body ul li li {
    list-style: none;
}
.homepage-category-item-body a:hover,
.homepage-category-item-body a:visited,
.homepage-category-item-body a:focus,
.homepage-category-item-body a {
    color: #333;
}
.homepage-category-item-body a.abm-text-red:hover,
.homepage-category-item-body a.abm-text-red:visited,
.homepage-category-item-body a.abm-text-red:focus,
.homepage-category-item-body a.abm-text-red {
    color: red;
}
.homepage-category-item-body a {
    text-decoration: none;
    font-size: 18px;
    overflow: hidden;
    display: block;
    text-overflow: ellipsis;
    position: relative;
    padding-right: 45px;
}
.homepage-category-item-body a .fa {
    position: absolute;
    right: 20px;
    top: 4px;
    color: #ef6331;
}
.homepage-sub-categories.hidden-children {
    display: none;
    position: absolute;
    background-color: #ffffff;
    border: 1px solid #eaeaea;
    border-top: 3px solid #ef6331;
    z-index: 100;
    right: 0;
    top: 0;
    transform: translateX(100%);
    min-width: 200px;
    max-width: 300px;
}
.show-hidden-children-on-hover:hover {
    background-color: #ef6331;
    color: #fff;
}
.show-hidden-children-on-hover:hover > a,
.show-hidden-children-on-hover:hover > a .fa {
    color: inherit;
}
.show-hidden-children-on-hover:hover .homepage-sub-categories.hidden-children {
    display: block;
}
.homepage-sub-categories.hidden-children a {
    padding-right: 20px;
}
.homepage-sub-categories a {
    font-size: 17px;
}
.homepage-category-item-body a:hover {
    text-decoration: underline;
}

a.abm-page-category-item {
    min-height: 80px;
    padding: 5px 20px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #08c;
    text-decoration: none;
    font-weight: bold;
    position: relative;
    cursor: pointer;
    background-color: #f7fafd;
}
.abm-page-category-item::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 3px;
    background-color: #ef6331;
    transition: all .3s ease;
}
.abm-page-category-icon {
    fill: currentColor;
    transform: translateX(0);
    margin-left: 20px;
    transition: .3s ease;
    flex-shrink: 0;
}
a.abm-page-category-item:hover {
    color: #ef6331;
}
.abm-page-category-item:hover .abm-page-category-icon {
    transform: translateX(10px);
}
.abm-page-category-item:hover::after {
    width: 100%;
}

.abm-page-category-nav-list {
    list-style: none;
    margin-bottom: 20px;
    display: block;
    padding: 0;
}
.abm-page-category-nav-list::after {
    content: '';
    display: block;
    clear: both;
}
.abm-page-category-nav-item {
    font-size: 0;
    font-weight: bold;
    padding: 5px 0;
}
.abm-page-category-nav-item a.abm-page-category-nav-link {
    color: #08c;
    font-size: 14px;
    text-decoration: underline;
}
.abm-page-category-nav-item a.abm-page-category-nav-link:hover {
    color: #ef6331;
}

tr[data-href] {
    cursor: pointer;
}

.abm-category-left-outer {
    position: relative;
    height: 40px;
    margin-top: -10px;
}
.abm-category-left-sm-toggle-bars {
    position: absolute;
    left: 15px;
    top: 0;
    color: #5c5d60;
    z-index: 1;
    font-size: 1.5em;
}
.abm-category-container-close-btn {
    position: absolute;
    inset: 0;
    line-height: 40px;
    padding: 0 20px;
    background-color: #EF6331;
    color: #fff;
    font-weight: normal;
    font-size: 1.5rem;
}
.abm-category-container-close-btn .fa {
    font-size: 2rem;
}
.abm-category-container-close-btn:hover {
    background-color: #ee4d13;
}
.abm-category-left-container-slide {
    --height: 0;
    width: 100%;
    height: var(--height);
    overflow: hidden;
    background-color: #fff;
    padding: 0 15px;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    transition: height .2s ease-in-out;
}
.abm-category-container-content-list li.abm-category-container-content-item-back a {
    font-size: 1.3em;
    color: #08c !important;
}
.abm-category-container-content-list li.abm-category-container-content-item-back a .fa {
    position: static;
    margin-right: 5px;
}
.abm-category-container-content-list li.show-hidden-children-on-hover {
    position: relative;
}
.abm-category-container-title {
    padding: 10px 20px;
    font-weight: bold;
    background-color: #eee;
    font-size: 2rem;
    color: #ef6331;
}
.abm-category-container-title-sm {
    position: relative;
    height: 40px;
}



/** response */
/**
不同的屏幕，统一放在这里
 */
/* xs */
@media (max-width: 767px) {
    .abm-customer-menu {
        margin-bottom: 2em;
        padding: 5px 0;
        margin-left: 15px;
        margin-right: 15px;
        background: #eee;
    }

    .abm-customer-menu-item {
        padding: 2px !important;
    }

    .abm-customer-menu-item.active {
        color: #ef6331;
        font-weight: bold;
    }

    .abm-table-responsive {
        overflow-x: auto;
        margin-bottom: 30px;
        padding-top: 0;
        padding-bottom: 0;
        border-radius: 5px;
        box-shadow: 3px 3px 15px rgba(0, 0, 0, .15);
    }

    .abm-table-responsive .abm-table {
        box-shadow: none;
    }

    .search-container {
        padding-top: 0;
        margin-top: 0;
    }

    .abm-home-banner {
        height: 15em;
    }

    .abm-home-banner h1 {
        font-size: 2em;
        top: 0;
    }

    .abm-product-media {
        text-align: center;
    }

    .homepage-categories-box {
        grid-template-columns: 1fr;
    }
    .homepage-services-box{
        grid-template-columns: 1fr;
    }

}

/* 小屏幕（平板，大于等于 768px） sm */
@media (min-width: 768px) {

}

/* 中等屏幕（桌面显示器，大于等于 992px） md */
@media (min-width: 992px) {
    .abm-top-nav {
        position: static;
        width: unset;
        overflow: unset;
        padding: 0;
    }

    .abm-top-nav li {
        width: unset;
        height: unset;
        padding: 0;
    }

    .abm-top-nav li a,
    .abm-top-nav-country-btn {
        background-color: transparent;
        color: #EF6331 !important;
        font-size: unset;
        border-radius: 0;
    }

    .abm-top-nav>li.open>a,
    .abm-top-nav>li>a:hover {
        color: #fff !important;
    }

    .abm-menu-div {
        column-count: 2;
        grid-template-columns: repeat(3, 1fr);
    }

    .abm-top-nav .dropdown-backdrop {
        background-color: transparent;
    }

    .abm-top-nav li.open .abm-top-dropdown-menu {
        position: absolute;
        left: 0;
        top: 100%;
        padding: 5px 0;
        text-decoration:none;
    }

    #abm-navbar>.abm-nav-box>.abm-nav> li> ul>.abm-top-dropdown-li>a:link,
    #abm-navbar>.abm-nav-box>.abm-nav> li> ul>.abm-top-dropdown-li>a:visited,
    #abm-navbar>.abm-nav-box>.abm-nav> li> ul>.abm-top-dropdown-li>a {
        padding: 5px 0 !important;
        background-color: transparent !important;
    }

    .abm-menu-div {
        -webkit-column-count: 3;
        -moz-column-count: 3;
        column-count: 3;

        grid-template-columns: repeat(3, 1fr);
    }

    /**
    abm customer
    */
    .abm-customer-menu {
        background-color: #f2f2f2;
        padding: 15px;
    }

    .abm-customer-menu ul li {
        line-height: 1.5em;
        width: 100%;
        margin: 0;
    }

    .abm-customer-menu ul li a {
        border-radius: 0;
    }

    .abm-customer-menu a.active {
        color: #ef6331 !important;
        font-weight: bold;
    }

    .abm-customer-menu a:hover {
        color: #ef6331;
        background-color: #f2f2f2 !important;
    }

    .abm-header {
        height: 23px;
        line-height: unset;
        box-shadow: none;
    }

    .abm-header .abm-header-nav {
        position: unset;
        padding: 0;
        background-color: transparent;
        width: unset;
    }

    .abm-header .abm-header-nav li {
        width: unset;
        font-size: 14px;
        height: auto;
        padding: 0;
    }

    .abm-header .abm-header-nav li a {
        display: flex;
        align-items: center;
        box-shadow: unset;
        height: 100%;
        border-radius: 0;
        color: #ef6331;
        background-color: transparent;
    }

    .abm-header .abm-header-nav li a:hover {
        color: #fff;
        background-color: #ef6331;
    }

    .abm-header .abm-header-nav li a:hover .cart-amount {
        color: #ef6331;
        background-color: #ffffff;
    }

    .abm-header .abm-header-nav li a .cart-amount {
        display: block;
        min-width: 14px;
        height: 14px;
        font-size: 12px;
        line-height: 14px;
        text-align: center;
        border-radius: 50%;
        margin-left: 5px;
        background-color: #ef6331;
        color: #fff;
    }

    .abm-navbar {
        position: unset;
        width: 100%;
        background-color: transparent;
        overflow: visible;
    }

    .abm-navbar .abm-nav-box {
        padding-top: 0;
    }

    .abm-navbar .abm-sub-nav {
        position: absolute;
        min-height: 160px;
        border-radius: 0 0 6px 6px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
        border-top: none;
        padding: 10px;
    }

    #abm-category-left-container.fixed {
        position: fixed;
        top: 0;
        background-color: #fff;
        z-index: 100;
    }

    .abm-page-category-nav-item {
        float: left;
    }
    .abm-page-category-nav-item a.abm-page-category-nav-link {
        text-decoration: none;
    }
    .abm-page-category-nav-item a.abm-page-category-nav-link,
    .abm-page-category-nav-item:not(:last-child)::after {
        font-size: 16px;
    }

    .abm-page-category-nav-item:not(:last-child)::after {
        content: '|';
        margin: 0 8px;
    }

    a.abm-page-category-item {
        font-size: 16px;
    }

    .abm-page-title {
        font-size: 2em;
    }

    .abm-category-left-outer {
        height: unset;
        margin-top: 0;
    }
    .abm-category-container-title {
        height: auto;
    }
    .abm-category-left-container-slide {
        height: unset;
        position: static;
        padding: 0;
        overflow: visible;
    }

    .ready-to-use-search-form .search-form-group {
        --grid-columns: 3fr 8fr 2fr 2fr;
        border-radius: 10px;
        border: 3px solid #EF6331;
        height: 60px;
        grid-template-columns: var(--grid-columns);
    }
    .ready-to-use-search-form .search-form-group .search-form-group-select {
        border: none;
        padding: 0 10px;
        margin-bottom: 0;
    }
    .ready-to-use-search-form .search-form-group .search-form-group-input {
        border-top: none;
        border-bottom: none;
        padding: 0 20px;
        border-radius: 0;
        margin-bottom: 0;
    }
    .ready-to-use-search-form .search-form-group *:first-child {
        border-radius: 10px 0 0 10px;
        border-left: none;
    }
    .ready-to-use-search-form .search-form-group .search-form-group-button {
        border-radius: 0 5px 5px 0;
        padding: 0;
    }

}

/*屏幕在1100px到1280之间（中屏幕电脑）*/
@media screen and (min-width:1100px) {
    body {
        font-size: 14px
    }

    .abm-container {
        width: 1080px;
    }

}

/* lg */
@media screen and (min-width: 1200px) {
    a.abm-page-category-item {
        font-size: 18px;
    }

    .ready-to-use-search-form .search-form-group {
        --grid-columns: 2fr 8fr 2fr 1fr;
    }
}

/*当页面宽度大于1280px且小于1440px的时候执行,1280-1440*/
@media screen and (min-width:1280px) {
    body {
        font-size: 15px
    }

    .abm-container {
        width: 1080px;
    }
}

/*当页面宽度大于1440px且小于1680px的时候执行,1440-1680*/
@media screen and (min-width:1440px) {
    body {
        font-size: 15px
    }

    .abm-container {
        width: 1440px;
    }
    a.abm-page-category-item {
        font-size: 18px;
    }
}

/*当页面宽度大于1680px且小于1920px的时候执行,1680-1920*/
@media screen and (min-width:1680px) {
    body {
        font-size: 16px
    }

    .abm-container {
        width: 1440px;
    }

}

/* news part*/

.abm-news-date {
    color: #ef6331;
    text-decoration: underline;
}

.abm-news-content-a {
    color: #000 !important;
}


/* Other custom div section */
.content-abmhome-strip {
    background: rgba(210, 210, 210, 0.46);
    ;
}

.abm-oem-ul .OME_help-li div .Technology-pp {
    min-height: 85px;
}

.abm-show-container {
    margin-left: 15px;
    margin-right: 15px;
}

.abm-original-price {
    text-decoration: line-through;
    text-decoration-color: #aa0000;
    color: #333;
    font-size: small;
}

/**
vector map page
 */
.abm-vector h1,
.abm-prigrow h1 {
    color: #135ac6;
}

.abm-vector .properties-table tr td,
.abm-prigrow .properties-table tr td {
    line-height: 1.5em;
    padding: .5em;
}

.abm-vector .properties-table tr td:first-child,
.abm-prigrow .properties-table tr td:first-child {
    width: 150px;
}

.abm-vector .properties-table tr:nth-child(even),
.abm-prigrow .properties-table tr:nth-child(even) {
    background: #eee;
}

.abm-vector .vector-map {
    padding: 1em;
    width: 100%;
    max-width: 800px;
}

.abm-vector .td-item {
    padding: 1em;
    font-size: small;
}

.abm-vector .banner {
    background-image: url("/assets/vectormap/dna.png");
    background-size: cover;
    font-size: 2.5em;
    font-weight: 700;
    padding: 2em 10px;
    color: #000;
    text-align: left;
}

.abm-prigrow .banner {
    background-image: url("/assets/images/top-stemcellextra.jpg");
    background-size: cover;
    font-size: 2.5em;
    font-weight: 700;
    padding: 2em 10px;
    color: #000;
    text-align: left;
}

.abm-vector .nav-tabs a,
.abm-vector .nav-tabs a:hover,
.abm-vector .nav-tabs a:visited,
.abm-vector .nav-tabs a:focus {
    color: #000 !important;
    cursor: pointer;
}

.abm-apply-feedback {
    color: red;
    font-weight: 700;
    line-height: 1.5;
}

.abm-cc-card-help-block {
    padding: 10px;
    font-weight: 700;
    font-size: 1.5em;
    color: #ef6331;
}

.abm-error-container {
    margin-top: 4em;
    display: inline-block;
    margin-bottom: 4em;
}

.abm-error-img {
    margin: auto;
    position: relative;
    text-align: center;
}

.abm-error-img img {
    width: auto;
    max-height: 15em;
    max-width: 100%;
}

.abm-error-tips {
    color: #f25622;
    font-size: 1.5em !important;
    font-weight: 700 !important;
    line-height: 1.5;
    text-align: left;
}

.abm-error-search-box {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    margin-bottom: 1em;
}

.abm-error-input {
    height: 54px;
    color: #808083;
    border: 2px solid #ef6331;
    font-size: 1.2em;
}

.abm-error-input:hover,
.abm-error-input:focus {
    border: 2px solid #ef6331;
}

.abm-error-button {
    background: #ef6331;
    border-color: #ef6331;
    border-radius: 0px 4px 4px 0px;
    margin-left: 0;
    padding: 12px 30px;
}

.abm-error-button:hover {
    background: #FF734D;
    border-color: #FF734D;
}

.abm-error-button i {
    height: 28px;
    padding-top: 5px;
    color: #fff;
}

.abm-error-tip {
    text-align: left;
    color: #000;
    font-size: 1.25em;
    line-height: 1.5;
}

.abm-error-form-box .input-group-btn {
    vertical-align: top !important;
}

.tt-menu {
    border-top: 1px solid #fff;
    background: #eee;
    padding: 1em;
    line-height: 1.5em;
    width: 100%;
}

.tt-highlight {
    color: #EF6331;
}

.twitter-typeahead {
    width: 100%;
    vertical-align: top;
}

.suggest-header {
    font-weight: 700;
}

.abm-custom-form .layui-input-block {
    margin-left: 0;
}

.abm-custom-form-map {
    text-align: center;
}
.abm-custom-form-img {
    width: 500px;
    height: auto;
    cursor: pointer;
}
.abm-custom-form .word {
    position: absolute;
    right: 10px;
    bottom: 10px;
    color: #aaa;
    font-size: 12px;
}
#abm-sequence-analysis ul{
    display: block;
}
#abm-sequence-analysis ul li:nth-child(even){
    background-color: #eee;
}
#abm-sequence-analysis ul li span{
    font-weight: 700;
    padding-right: 5px;
    vertical-align: top;
}
#abm-sequence-analysis ul li p{
    display: block;
    padding-left: 10px;
    word-break: break-all;
    font-size: small;
}
.abm-navbar-collapse>.navbar-nav>li>a:hover{
    color: #ef6331!important;
}

iframe[name="printIframe"] body {
    font-family: Poppins sans-serif;
}

.product-seq {
    word-break: break-all;
}

.abm-search-results-item-product_media {
    width: 150px;
    height: 150px;
    border: 1px solid #ddd;
    padding: 2px;
    margin-bottom: 15px;
}
.abm-search-results-item-product_map {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.abm-search-results-item-product_map-iframe {
    transform: scale(0.25);
    transform-origin: left top;
}

.abm-product-map-preview-container {
    position: relative;
    overflow: hidden;
    height: 600px;
}

.abm-product-map-iframe {
    position: absolute;
    left: 50%;
    top: 0;
    z-index: 1;
    transform-origin: 0 0;
}

.abm-product-map-top-layer {
    position: absolute;
    display: block;
    inset: 0;
    z-index: 2;
}

.xzoom-container .abm-product-map-preview-container {
    height: 300px;
}

.xzoom-thumbs .abm-product-map-preview-container {
    width: 50px;
    height: 50px;
    border: 1px solid #ddd;
    margin: 0 5px;
}

.abm-error-msg {
    border: 2px solid #d9939e;
    background-color: #f2dede;
    color: #a94442;
    padding: 10px 20px;
    margin-bottom: 20px;
}
.abm-error-msg a:hover,
.abm-error-msg a {
    color: #a94442;
    font-weight: bold;
}
.abm-error-msg a:hover {
    text-decoration: underline;
}

.abm-category-container {
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 1px 1px 5px 1px #eee;
    font-size: smaller;
}
.abm-category-container-title > a:link,
.abm-category-container-title > a:visited,
.abm-category-container-title > a:hover,
.abm-category-container-title > a:active,
.abm-category-container-title > a {
    color: #ef6331;
}
.abm-category-container-content {
    padding: 10px 0;
}
.abm-category-container-content-list {
    padding: 0;
    margin: 0;
}
.abm-category-container-content-list li {
    list-style: none;
    --level: 0;
}
.abm-category-container-content-list li a {
    display: block;
    color: #333 !important;
    font-weight: bold;
    padding-right: 40px;
    position: relative;
    padding-bottom: 4px;
    padding-top: 4px;
    margin-bottom: 4px;
    margin-top: 4px;
    padding-left: calc(20px + var(--level) * 10px);
}
.abm-category-container-content-list li a .fa {
    position: absolute;
    right: 20px;
    top: 7px;
}
.abm-category-container-content-list li a:hover {
    text-decoration: underline;
    background-color: #e2e2e2;
}
.abm-category-container-content-list li.active > a .fa,
.abm-category-container-content-list li a.active .fa,
.abm-category-container-content-list li.active > a,
.abm-category-container-content-list li a.active {
    color: #ef6331 !important;
}
.abm-category-container-content-list li.open a .fa {
    color: #08c;
}
.abm-category-container-content-mid-list,
.abm-category-container-content-sub-list {
    padding-left: 0;
}
.abm-category-container-content-sub-list li a {
    font-weight: normal;
    padding-right: 40px;
}
.abm-category-container-content-sub-list li a:hover {
    /* background-color: transparent; */
}
.abm-category-container-content-sub-list.hidden-children {
    position: absolute;
    background-color: #fff;
    right: 0;
    top: 0;
    border: 1px solid #eaeaea;
    border-top: 3px solid #ef6331;
    transform: translateX(100%);
    z-index: 100;
    display: none;
}
.abm-category-container-content .show-hidden-children-on-hover:hover {
    background-color: #e2e2e2;
}
.abm-category-container-content-sub-list.hidden-children a {
    padding-left: 20px;
}
.abm-category-container-content .show-hidden-children-on-hover:hover > .hidden-children {
    display: block;
}
.abm-category-left-link-container {
    font-size: smaller;
}
#abm-category-left-link-container {
    display: none;
}
.abm-page-left-link-list {
    list-style: none;
    padding-left: 0;
}
.abm-page-left-link-list li {
    margin-bottom: 5px;
}

.dropdown-menu >li >a{
    color: #08c !important;
}

#outer-box .abm-search-results-item-product_map .loading {
    top: 50%;
}

.preloader-box {position: fixed;top: 0;left: 0;width: 100%;height: 100%;overflow: hidden;z-index: 9999;transition: opacity .65s;display: flex;height: 100vh;justify-content: center;align-items: center;text-align: center;}
.preloader {display: flex;color: white;font-size: 5em;/* text-transform: uppercase; */}
.preloader .inner {text-shadow: 0 1px #bbb, 0 2px #bbb, 0 3px #bbb, 0 4px #bbb, 0 5px #bbb, 0 6px transparent, 0 7px transparent, 0 8px transparent, 0 9px transparent, 0 10px 10px rgba(0, 0, 0, 0.4);transform: translateY(20px);margin-left: 2px;margin-right: 2px;}
.preloader .inner:nth-child(1) {animation: prebounce 0.3s infinite alternate;}
.preloader .inner:nth-child(2) {animation: prebounce 0.3s .1s infinite alternate;}
.preloader .inner:nth-child(3) {animation: prebounce 0.3s .2s infinite alternate;}
.preloader .inner:nth-child(4) {animation: prebounce 0.3s .3s infinite alternate;}
.preloader .inner:nth-child(5) {animation: prebounce 0.3s .4s infinite alternate;}
.preloader .inner:nth-child(6) {animation: prebounce 0.3s .5s infinite alternate;}
.preloader .inner:nth-child(7) {animation: prebounce 0.3s .6s infinite alternate;}
@keyframes prebounce {to {text-shadow: 0 1px #bbb, 0 2px #bbb, 0 3px #bbb, 0 4px #bbb, 0 5px #bbb, 0 6px #bbb, 0 7px #bbb, 0 8px #bbb, 0 9px #bbb, 0 50px 25px rgba(0, 0, 0, 0.2);  transform: translateY(-20px);}}
