@charset "utf-8";
.no_padding{
    padding: 0;
}
.header {
    position: relative;
    z-index: 50;
    padding: 20px 0;
    background: #ffffff;
    border-bottom: 1px solid #eeeeee;
    transition: all .3s;
}
.header .conBox{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header .logo_box{
    overflow: hidden;
    text-align: center;
}

.header .nav_list {
    font-size: 0;
    line-height: 0;
    position: relative;
}
.header .nav_list > li {
    display: -moz-inline-stack;
    display: inline-block;
    *display: inline;
    vertical-align: top;
    zoom: 1;
    text-align: center;
    margin-left: 35px;
    transition: all .3s;
}
.header .nav_list > li:first-child{
    margin-left: 0;
}
.header .nav_list > li > a {
    display: block;
}
.header .nav_list > li > a > span {
    display: inline-block;
    line-height: 48px;
    text-align: center;
    font-size: 18px;
    color: #000000;
    font-weight: 500;
    position: relative;
    transition: all .3s;
}
.header .nav_list > li.on > a > span,
.header .nav_list > li.active > a > span{
    color: #1c4273;
    transition: all .3s;
}
.nav_list > li > a > i {
    display: inline-block;
    vertical-align: top;
    width: 15px;
    height: 48px;
    line-height: 48px;
    background: url("https://gmssource.usa02.wondercdn.com/public/static/images/home/en-us/reset/dropdown_menu.png") no-repeat center center;
    -moz-transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -ms-transition: all linear .3s;
    transition: all .3s;
}
.nav_list > li:hover i {
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
}
.nav_normal > li {
    position: relative;
}
.nav_normal > li .dropdown_menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 170px;
    display: none;
    z-index: 1;
    padding: 10px 0;
    background: #ffffff;
    -webkit-box-shadow: 0 5px 10px 0 rgba(0,0,0,0.3);
    -moz-box-shadow: 0 5px 10px 0 rgba(0,0,0,0.3);
    box-shadow: 0 5px 10px 0 rgba(0,0,0,0.3);
}
.nav_normal .dropdown_menu li {
    width: 100%;
}
.nav_normal .dropdown_menu li a {
    display: block;
    line-height: 34px;
    font-size: 16px;
    color: #000000;
    text-align: left;
    padding: 0 20px;
    white-space: nowrap;
}
.nav_normal .dropdown_menu li a:hover{
    background: #1c4273;
    color: #ffffff;
}
.nav_normal .dropdown_menu li.Three_menu{
    position: relative;
}
.nav_normal .dropdown_menu li.Three_menu > ul{
    position: absolute;
    top: 0;
    left: 100%;
    background: #ffffff;
    padding: 10px 0;
    min-width: 160px;
    z-index: 3;
    display: none;
    -webkit-box-shadow: 0 0 5px 0 rgba(0,0,0,0.2);
    -moz-box-shadow: 0 0 5px 0 rgba(0,0,0,0.2);
    box-shadow: 0 0 5px 0 rgba(0,0,0,0.2);
}
.nav_normal .dropdown_menu li.Three_menu.on > a{
    background: #1c4273;
    color: #ffffff;
}

.headerInfoBox{
    position: relative;
    padding-right: 40px;
}
.headerInfoBox .headerShare em{
    font-size: 26px;
    color: #666666;
    display: inline-block;
    margin-left: 20px;
}
.header_search_box {
    position: absolute;
    right: 0;
    top: -7px;
    width: 32px;
    height: 40px;
    overflow: hidden;
    background: 0 0;
    z-index: 10;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    transition: all .3s;
}
.header_search_box.active {
    width: 260px;
    background: #1c4273;
    transition: all .3s;
}
.header_search_box a {
    line-height: 0;
    width: 32px;
    height: 40px;
    text-align: right;
    display: block;
    position: relative;
    float: right;
    z-index: 10;
}
.header_search_box a:before{
    position: absolute;
    content: '\e613';
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    line-height: 40px;
    text-align: center;
    font-family: "iconfont", sans-serif;
    font-size: 18px;
    color: #000000;
}
.header_search_box a.active:before{
    content: '\e6ae';
    color: #ffffff;
    transition: all .3s;
}
.search_form {
    position: absolute;
    top: 0;
    right: 32px;
    width: 0;
    display: block;
    z-index: -1;
    transition: all .3s;
}
.header_search_box.active .search_form {
    width: 220px;
    z-index: 9;
    transition: all .3s;
}
.search_form .info {
    width: 100%;
    padding-right: 0;
    position: relative;
}
.header_search_box.active .search_form .info{
    padding-right: 32px;
}
.search_form .info:before{
    position: absolute;
    content: '\e613';
    top: 0;
    right: 0;
    width: 32px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-family: "iconfont", sans-serif;
    font-size: 16px;
    color: #ffffff;
}
.search_form input[type="text"] {
    width: 100%;
    height: 40px;
    background: 0 0;
    border: 0;
    text-indent: 10px;
    font-size: 16px;
    color: #ffffff;
}
.search_form input[type=text]::-webkit-input-placeholder {
    color: #ffffff;
}
.search_form input.btn_search {
    width: 32px;
    height: 40px;
    position: absolute;
    right: 0;
    top: 0;
    border: 0;
    font-size: 0;
    background: none;
    cursor: pointer;
    z-index: 2;
}



.m_header {
    display: none;
}

.footer_box{
    overflow: hidden;
    position: relative;
}

.footer_box .footerOther{
    background: #1c4273;
    text-align: center;
    padding: 25px 0;
}
.footer_box .footerOther p{
    font-size: 24px;
    color: #f9f9f9;
    font-weight: 500;
}
.footer_box .footerOther p a{
    display: inline-block;
    margin-left: 10px;
    width: 185px;
    height: 48px;
    line-height: 48px;
    text-align: center;
    font-size: 18px;
    color: #1c4273;
    font-weight: 500;
    background: #ffffff;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
.footer_box .footerOther p a:hover{
    opacity: .85;
}

.footer_box .fast_navigation{
    overflow: hidden;
    background: #f3f3f3;
}
.footer_box .fast_navigation .itemBox{
    display: flex;
    padding: 80px 0;
    justify-content: space-between;
    border-bottom: 1px solid #1c4273;
}
.footer_box .fast_navigation .item:nth-of-type(1){
    width: 130px;
}
.footer_box .fast_navigation .item:nth-of-type(2){
    width: 260px;
}
.footer_box .fast_navigation .item:nth-of-type(3){
    width: 410px;
}

.footer_box .fast_navigation h3{
    font-size: 18px;
    color: #424242;
    font-weight: 600;
    padding-bottom: 20px;
}
.footer_box .fast_navigation ul{
    overflow: hidden;
}
.footer_box .fast_navigation li{
    font-size: 16px;
    color: #424242;
    line-height: 1.8;
}
.footer_box .fast_navigation .footerInfo li{
    position: relative;
    padding-left: 25px;
    margin-bottom: 2px;
}
.footer_box .fast_navigation li em{
    position: absolute;
    top: 0;
    left: 0;
    font-size: 18px;
    color: #000000;
}
.footer_box .fast_navigation li a:hover {
    color: #1c4273;
    text-decoration: underline;
}

.footer_box .fast_navigation .footerShare{
    margin-top: 35px;
}
.footer_box .fast_navigation .footerShare a{
    display: inline-block;
    margin-right: 15px;
}
.footer_box .fast_navigation .footerShare em{
    color: #666666;
    font-size: 32px;
    transition: all .3s;
}
.footer_box .fast_navigation .footerShare a:hover em{
    color: #1c4273;
    transition: all .3s;
}

.footer_box .footer_copyright{
    padding: 20px 0;
    background: #f3f3f3;
    text-align: center;
}
.footer_box .footer_copyright .text *{
    display: inline-block;
    font-size: 16px;
    color: #424242;
    letter-spacing: 0;
    line-height: 1.5em;
}
.footer_box .footer_copyright .text a.sitemap{
    margin: 0 5px;
}
.footer_box .footer_copyright .text a:hover{
    color: #1c4273;
    text-decoration: underline;
}


.indexBox1{
    height: 800px;
    width: 100%;
    transition: transform 1s ease;
    overflow: hidden;
    background: #fafafa;
    position: relative;
}
.indexBox1 .title{
    position: absolute;
    z-index: 2;
    left: 30%;
    top: 50%;
    margin-top: -100px;
}
.indexBox1 .title h2{
    font-size: 84px;
    color: #000000;
    font-weight: bold;
    text-transform: uppercase;
}
#barba-wrapper {
    width: 100%;
    transition: transform 1s ease;
}

.barba-container[data-namespace="TopPage"].-introStart #topIntro::before {
    visibility: hidden; }

.barba-container[data-namespace="TopPage"].-introStart #topIntro .topIntro__img {
    animation: introImg 2.5s ease .2s forwards; }

.barba-container[data-namespace="TopPage"].-introEnd #topIntro::after {
    transform: translateY(0); }

.barba-container[data-namespace="TopPage"].-init .barba-containerInner > *:not(#topIntro) {
    opacity: 1; }

.barba-container[data-namespace="TopPage"].-init #topIntro {
    visibility: hidden; }

.barba-container[data-namespace="TopPage"].-init .pc {
    opacity: 1;
    animation: pcScroll 55s linear infinite;
    will-change: transform; }

@keyframes pcScroll {
    0% {
        transform: translateY(0); }
    100% {
        transform: translateY(-161.05vw); }
}


.barba-container[data-namespace="TopPage"] {
    overflow: hidden;
    position: relative; }
.barba-container[data-namespace="TopPage"] .barba-containerInner > *:not(#topIntro) {
    opacity: 0; }
.barba-container[data-namespace="TopPage"] .item {
    position: absolute; }
.barba-container[data-namespace="TopPage"] .item a {
    transform: scale(0);
    transition: opacity 0.6s cubic-bezier(0.645, 0.045, 0.355, 1), transform 0.6s cubic-bezier(0.645, 0.045, 0.355, 1); }
.barba-container[data-namespace="TopPage"] .item.-inv a {
    opacity: 1;
    transform: scale(1); }

@media screen and (min-width: 0), print {
    .barba-container[data-namespace="TopPage"] {
        height: 100%; }
    .barba-container[data-namespace="TopPage"] .pc {
        height: 100%;
        width: 100%;
        transition: opacity .3s ease;
        position: relative;
        left: 0;
        top: 0; }
    .barba-container[data-namespace="TopPage"] .pc__items {
        height: 161.05vw;
        position: relative; }
    .barba-container[data-namespace="TopPage"].-init .item a {
        opacity: 1;
        transform: scale(1); }
    .barba-container[data-namespace="TopPage"].-init .animItem__child {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%; }
    .barba-container[data-namespace="TopPage"].-init .animItem__child a {
        position: relative;
        transform: scale(0); }
    .barba-container[data-namespace="TopPage"].-init .pc[data-cnt="0"] .animItem__child:nth-child(1) a {
        transition-delay: 0s !important;
        transform: scale(1);
        z-index: 10; }
    .barba-container[data-namespace="TopPage"].-init .pc[data-cnt="1"] .animItem__child:nth-child(4) a {
        transition-delay: 0s !important; }
    .barba-container[data-namespace="TopPage"].-init .pc[data-cnt="1"] .animItem__child:nth-child(1) a {
        transition-delay: 0.48s !important;
        transform: scale(1);
        z-index: 10; }
    .barba-container[data-namespace="TopPage"].-init .pc[data-cnt="2"] .animItem__child:nth-child(1) a {
        transition-delay: 0s !important; }
    .barba-container[data-namespace="TopPage"].-init .pc[data-cnt="2"] .animItem__child:nth-child(2) a {
        transition-delay: 0.48s !important;
        transform: scale(1);
        z-index: 10; }
    .barba-container[data-namespace="TopPage"].-init .pc[data-cnt="3"] .animItem__child:nth-child(2) a {
        transition-delay: 0s !important; }
    .barba-container[data-namespace="TopPage"].-init .pc[data-cnt="3"] .animItem__child:nth-child(3) a {
        transition-delay: 0.48s !important;
        transform: scale(1);
        z-index: 10; }
    .barba-container[data-namespace="TopPage"].-init .pc[data-cnt="4"] .animItem__child:nth-child(3) a {
        transition-delay: 0s !important; }
    .barba-container[data-namespace="TopPage"].-init .pc[data-cnt="4"] .animItem__child:nth-child(4) a {
        transition-delay: 0.48s !important;
        transform: scale(1);
        z-index: 10; }
    .barba-container[data-namespace="TopPage"] .sp {
        display: none; }
}

@media screen and (min-width: 0), print {
    .barba-container[data-namespace="TopPage"] .item[data-type=mug][data-size=l] {
        width: 19.03vw;
        height: 19.03vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=mug][data-size=m] {
        width: 11.71vw;
        height: 11.71vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=mug][data-size=s] {
        width: 7.32vw;
        height: 7.32vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=teacup][data-size=l] {
        width: 28.55vw;
        height: 19.03vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=teacup][data-size=m] {
        width: 17.57vw;
        height: 11.71vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=teacup][data-size=s] {
        width: 10.98vw;
        height: 7.32vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=espressocup][data-size=l] {
        width: 19.03vw;
        height: 9.52vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=espressocup][data-size=m] {
        width: 11.71vw;
        height: 5.86vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=espressocup][data-size=s] {
        width: 7.32vw;
        height: 3.66vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=drinkingbottletritan][data-size=l] {
        width: 19.03vw;
        height: 38.07vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=drinkingbottletritan][data-size=m] {
        width: 11.71vw;
        height: 23.43vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=drinkingbottletritan][data-size=s] {
        width: 7.32vw;
        height: 14.64vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=drinkingbottlesteel][data-size=l] {
        width: 19.03vw;
        height: 28.55vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=drinkingbottlesteel][data-size=m] {
        width: 11.71vw;
        height: 17.57vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=drinkingbottlesteel][data-size=s] {
        width: 7.32vw;
        height: 10.98vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=togocup][data-size=l] {
        width: 19.03vw;
        height: 28.55vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=togocup][data-size=m] {
        width: 11.71vw;
        height: 17.57vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=togocup][data-size=s] {
        width: 7.32vw;
        height: 10.98vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=towelhandkerchief][data-size=l] {
        width: 19.03vw;
        height: 19.03vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=towelhandkerchief][data-size=m] {
        width: 11.71vw;
        height: 11.71vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=towelhandkerchief][data-size=s] {
        width: 7.32vw;
        height: 7.32vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=apron][data-size=l] {
        width: 19.03vw;
        height: 19.03vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=apron][data-size=m] {
        width: 11.71vw;
        height: 11.71vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=apron][data-size=s] {
        width: 7.32vw;
        height: 7.32vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=garconapron][data-size=l] {
        width: 19.03vw;
        height: 19.03vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=garconapron][data-size=m] {
        width: 11.71vw;
        height: 11.71vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=garconapron][data-size=s] {
        width: 7.32vw;
        height: 7.32vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=mugingiftbox][data-size=l] {
        width: 19.03vw;
        height: 19.03vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=mugingiftbox][data-size=m] {
        width: 11.71vw;
        height: 11.71vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=mugingiftbox][data-size=s] {
        width: 7.32vw;
        height: 7.32vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=keychainshort][data-size=l] {
        width: 19.03vw;
        height: 28.55vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=keychainshort][data-size=m] {
        width: 11.71vw;
        height: 17.57vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=keychainshort][data-size=s] {
        width: 7.32vw;
        height: 10.98vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=keychainlong][data-size=l] {
        width: 19.03vw;
        height: 28.55vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=keychainlong][data-size=m] {
        width: 11.71vw;
        height: 17.57vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=keychainlong][data-size=s] {
        width: 7.32vw;
        height: 10.98vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=cardholder][data-size=l] {
        width: 19.03vw;
        height: 19.03vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=cardholder][data-size=m] {
        width: 11.71vw;
        height: 11.71vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=cardholder][data-size=s] {
        width: 7.32vw;
        height: 7.32vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=pencils-7pcstinbox][data-size=l] {
        width: 19.03vw;
        height: 28.55vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=pencils-7pcstinbox][data-size=m] {
        width: 11.71vw;
        height: 17.57vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=pencils-7pcstinbox][data-size=s] {
        width: 7.32vw;
        height: 10.98vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=notepad][data-size=l] {
        width: 19.03vw;
        height: 28.55vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=notepad][data-size=m] {
        width: 11.71vw;
        height: 17.57vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=notepad][data-size=s] {
        width: 7.32vw;
        height: 10.98vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=bookletssetof2][data-size=l] {
        width: 19.03vw;
        height: 19.03vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=bookletssetof2][data-size=m] {
        width: 11.71vw;
        height: 11.71vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=bookletssetof2][data-size=s] {
        width: 7.32vw;
        height: 7.32vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=notebooks][data-size=l] {
        width: 19.03vw;
        height: 19.03vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=notebooks][data-size=m] {
        width: 11.71vw;
        height: 11.71vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=notebooks][data-size=s] {
        width: 7.32vw;
        height: 7.32vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=notebookl][data-size=l] {
        width: 19.03vw;
        height: 19.03vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=notebookl][data-size=m] {
        width: 11.71vw;
        height: 11.71vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=notebookl][data-size=s] {
        width: 7.32vw;
        height: 7.32vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=eraser][data-size=l] {
        width: 19.03vw;
        height: 9.52vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=eraser][data-size=m] {
        width: 11.71vw;
        height: 5.86vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=eraser][data-size=s] {
        width: 7.32vw;
        height: 3.66vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=pencilcup][data-size=l] {
        width: 19.03vw;
        height: 28.55vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=pencilcup][data-size=m] {
        width: 11.71vw;
        height: 17.57vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=pencilcup][data-size=s] {
        width: 7.32vw;
        height: 10.98vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=facetowel][data-size=l] {
        width: 19.03vw;
        height: 19.03vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=facetowel][data-size=m] {
        width: 11.71vw;
        height: 11.71vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=facetowel][data-size=s] {
        width: 7.32vw;
        height: 7.32vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=bathtowel][data-size=l] {
        width: 19.03vw;
        height: 19.03vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=bathtowel][data-size=m] {
        width: 11.71vw;
        height: 11.71vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=bathtowel][data-size=s] {
        width: 7.32vw;
        height: 7.32vw; }
}

@media screen and (max-width: 0) {
    .barba-container[data-namespace="TopPage"] .item[data-type=mug][data-size=l] {
        width: 58.24vw;
        height: 58.24vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=mug][data-size=m] {
        width: 35.84vw;
        height: 35.84vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=mug][data-size=s] {
        width: 22.4vw;
        height: 22.4vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=teacup][data-size=l] {
        width: 58.24vw;
        height: 38.83vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=teacup][data-size=m] {
        width: 35.84vw;
        height: 23.89vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=teacup][data-size=s] {
        width: 22.4vw;
        height: 14.93vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=espressocup][data-size=l] {
        width: 58.24vw;
        height: 29.12vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=espressocup][data-size=m] {
        width: 35.84vw;
        height: 17.92vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=espressocup][data-size=s] {
        width: 22.4vw;
        height: 11.2vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=drinkingbottletritan][data-size=l] {
        width: 29.12vw;
        height: 58.24vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=drinkingbottletritan][data-size=m] {
        width: 17.92vw;
        height: 35.84vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=drinkingbottletritan][data-size=s] {
        width: 11.2vw;
        height: 22.4vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=drinkingbottlesteel][data-size=l] {
        width: 29.12vw;
        height: 43.68vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=drinkingbottlesteel][data-size=m] {
        width: 17.92vw;
        height: 26.88vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=drinkingbottlesteel][data-size=s] {
        width: 11.2vw;
        height: 16.8vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=togocup][data-size=l] {
        width: 29.12vw;
        height: 43.68vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=togocup][data-size=m] {
        width: 17.92vw;
        height: 26.88vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=togocup][data-size=s] {
        width: 11.2vw;
        height: 16.8vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=towelhandkerchief][data-size=l] {
        width: 58.24vw;
        height: 58.24vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=towelhandkerchief][data-size=m] {
        width: 35.84vw;
        height: 35.84vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=towelhandkerchief][data-size=s] {
        width: 22.4vw;
        height: 22.4vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=apron][data-size=l] {
        width: 58.24vw;
        height: 58.24vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=apron][data-size=m] {
        width: 35.84vw;
        height: 35.84vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=apron][data-size=s] {
        width: 22.4vw;
        height: 22.4vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=garconapron][data-size=l] {
        width: 58.24vw;
        height: 58.24vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=garconapron][data-size=m] {
        width: 35.84vw;
        height: 35.84vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=garconapron][data-size=s] {
        width: 22.4vw;
        height: 22.4vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=mugingiftbox][data-size=l] {
        width: 58.24vw;
        height: 58.24vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=mugingiftbox][data-size=m] {
        width: 35.84vw;
        height: 35.84vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=mugingiftbox][data-size=s] {
        width: 22.4vw;
        height: 22.4vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=keychainshort][data-size=l] {
        width: 29.12vw;
        height: 43.68vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=keychainshort][data-size=m] {
        width: 17.92vw;
        height: 26.88vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=keychainshort][data-size=s] {
        width: 11.2vw;
        height: 16.8vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=keychainlong][data-size=l] {
        width: 29.12vw;
        height: 43.68vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=keychainlong][data-size=m] {
        width: 17.92vw;
        height: 26.88vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=keychainlong][data-size=s] {
        width: 11.2vw;
        height: 16.8vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=cardholder][data-size=l] {
        width: 58.24vw;
        height: 58.24vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=cardholder][data-size=m] {
        width: 35.84vw;
        height: 35.84vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=cardholder][data-size=s] {
        width: 22.4vw;
        height: 22.4vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=pencils-7pcstinbox][data-size=l] {
        width: 29.12vw;
        height: 43.68vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=pencils-7pcstinbox][data-size=m] {
        width: 17.92vw;
        height: 26.88vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=pencils-7pcstinbox][data-size=s] {
        width: 11.2vw;
        height: 16.8vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=notepad][data-size=l] {
        width: 29.12vw;
        height: 43.68vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=notepad][data-size=m] {
        width: 17.92vw;
        height: 26.88vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=notepad][data-size=s] {
        width: 11.2vw;
        height: 16.8vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=bookletssetof2][data-size=l] {
        width: 58.24vw;
        height: 58.24vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=bookletssetof2][data-size=m] {
        width: 35.84vw;
        height: 35.84vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=bookletssetof2][data-size=s] {
        width: 22.4vw;
        height: 22.4vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=notebooks][data-size=l] {
        width: 58.24vw;
        height: 58.24vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=notebooks][data-size=m] {
        width: 35.84vw;
        height: 35.84vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=notebooks][data-size=s] {
        width: 22.4vw;
        height: 22.4vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=notebookl][data-size=l] {
        width: 58.24vw;
        height: 58.24vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=notebookl][data-size=m] {
        width: 35.84vw;
        height: 35.84vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=notebookl][data-size=s] {
        width: 22.4vw;
        height: 22.4vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=eraser][data-size=l] {
        width: 58.24vw;
        height: 29.12vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=eraser][data-size=m] {
        width: 35.84vw;
        height: 17.92vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=eraser][data-size=s] {
        width: 22.4vw;
        height: 11.2vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=pencilcup][data-size=l] {
        width: 29.12vw;
        height: 43.68vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=pencilcup][data-size=m] {
        width: 17.92vw;
        height: 26.88vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=pencilcup][data-size=s] {
        width: 11.2vw;
        height: 16.8vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=facetowel][data-size=l] {
        width: 58.24vw;
        height: 58.24vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=facetowel][data-size=m] {
        width: 35.84vw;
        height: 35.84vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=facetowel][data-size=s] {
        width: 22.4vw;
        height: 22.4vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=bathtowel][data-size=l] {
        width: 58.24vw;
        height: 58.24vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=bathtowel][data-size=m] {
        width: 35.84vw;
        height: 35.84vw; }
    .barba-container[data-namespace="TopPage"] .item[data-type=bathtowel][data-size=s] {
        width: 22.4vw;
        height: 22.4vw; }
}

@media screen and (min-width: 0), print {
    .barba-container[data-namespace="TopPage"] .item[data-pos="1"] {
        left: 45.02vw;
        top: 9.52vw; }
    .barba-container[data-namespace="TopPage"] .item[data-pos="2"] {
        left: 78.7vw;
        top: 8.42vw; }
    .barba-container[data-namespace="TopPage"] .item[data-pos="3"] {
        left: 2.34vw;
        top: 10.98vw; }
    .barba-container[data-namespace="TopPage"] .item[data-pos="4"] {
        left: 62.96vw;
        top: 16.47vw; }
    .barba-container[data-namespace="TopPage"] .item[data-pos="5"] {
        left: 94.44vw;
        top: 18.67vw; }
    .barba-container[data-namespace="TopPage"] .item[data-pos="6"] {
        left: 12.81vw;
        top: 18.67vw; }
    .barba-container[data-namespace="TopPage"] .item[data-pos="7"] {
        left: 71.74vw;
        top: 30.38vw; }
    .barba-container[data-namespace="TopPage"] .item[data-pos="8"] {
        left: 62.96vw;
        top: 31.11vw; }
    .barba-container[data-namespace="TopPage"] .item[data-pos="9"] {
        left: -3.29vw;
        top: 34.04vw; }
    .barba-container[data-namespace="TopPage"] .item[data-pos="10"] {
        left: 35.14vw;
        top: 37.7vw; }
    .barba-container[data-namespace="TopPage"] .item[data-pos="11"] {
        left: 21.96vw;
        top: 43.19vw; }
    .barba-container[data-namespace="TopPage"] .item[data-pos="12"] {
        left: 72.11vw;
        top: 45.02vw; }
    .barba-container[data-namespace="TopPage"] .item[data-pos="13"] {
        left: 47.95vw;
        top: 46.49vw; }
    .barba-container[data-namespace="TopPage"] .item[data-pos="14"] {
        left: 8.05vw;
        top: 46.85vw; }
    .barba-container[data-namespace="TopPage"] .item[data-pos="15"] {
        left: 90.41vw;
        top: 46.85vw; }
    .barba-container[data-namespace="TopPage"] .item[data-pos="16"] {
        left: -1.46vw;
        top: 53.07vw; }
    .barba-container[data-namespace="TopPage"] .item[data-pos="17"] {
        left: 2.93vw;
        top: 79.43vw; }
    .barba-container[data-namespace="TopPage"] .item[data-pos="18"] {
        left: 54.9vw;
        top: 58.57vw; }
    .barba-container[data-namespace="TopPage"] .item[data-pos="19"] {
        left: 14.28vw;
        top: 67.35vw; }
    .barba-container[data-namespace="TopPage"] .item[data-pos="20"] {
        left: 77.96vw;
        top: 71.38vw; }
    .barba-container[data-namespace="TopPage"] .item[data-pos="21"] {
        left: 90.78vw;
        top: 73.57vw; }
    .barba-container[data-namespace="TopPage"] .item[data-pos="22"] {
        left: 31.84vw;
        top: 69.55vw; }
    .barba-container[data-namespace="TopPage"] .item[data-pos="23"] {
        left: 19.03vw;
        top: 84.55vw; }
    .barba-container[data-namespace="TopPage"] .item[data-pos="24"] {
        left: 71.38vw;
        top: 84.55vw; }
    .barba-container[data-namespace="TopPage"] .item[data-pos="25"] {
        left: 51.24vw;
        top: 85.65vw; }
    .barba-container[data-namespace="TopPage"] .item[data-pos="26"] {
        left: 36.6vw;
        top: 96.63vw; }
    .barba-container[data-namespace="TopPage"] .item[data-pos="27"] {
        left: 4.76vw;
        top: 97.36vw; }
    .barba-container[data-namespace="TopPage"] .item[data-pos="28"] {
        left: 41vw;
        top: 107.98vw; }
    .barba-container[data-namespace="TopPage"] .item[data-pos="29"] {
        left: 68.08vw;
        top: 101.76vw; }
    .barba-container[data-namespace="TopPage"] .item[data-pos="30"] {
        left: 15.37vw;
        top: 115.67vw; }
    .barba-container[data-namespace="TopPage"] .item[data-pos="31"] {
        left: 81.99vw;
        top: 116.03vw; }
    .barba-container[data-namespace="TopPage"] .item[data-pos="32"] {
        left: -9.52vw;
        top: 117.86vw; }
    .barba-container[data-namespace="TopPage"] .item[data-pos="33"] {
        left: 62.96vw;
        top: 123.35vw; }
    .barba-container[data-namespace="TopPage"] .item[data-pos="34"] {
        left: 70.28vw;
        top: 123.35vw; }
    .barba-container[data-namespace="TopPage"] .item[data-pos="35"] {
        left: 25.26vw;
        top: 125.92vw; }
    .barba-container[data-namespace="TopPage"] .item[data-pos="36"] {
        left: 13.54vw;
        top: 137.26vw; }
    .barba-container[data-namespace="TopPage"] .item[data-pos="37"] {
        left: 42.46vw;
        top: 136.9vw; }
    .barba-container[data-namespace="TopPage"] .item[data-pos="38"] {
        left: 86.75vw;
        top: 136.9vw; }
    .barba-container[data-namespace="TopPage"] .item[data-pos="39"] {
        left: 27.09vw;
        top: 140.92vw; }
    .barba-container[data-namespace="TopPage"] .item[data-pos="40"] {
        left: 66.62vw;
        top: 144.58vw; }
}

@media screen and (max-width: 0) {
    .barba-container[data-namespace="TopPage"] .item[data-pos="1"] {
        left: 10.67vw;
        top: 10.67vw; }
    .barba-container[data-namespace="TopPage"] .item[data-pos="2"] {
        left: 73.33vw;
        top: 56vw; }
    .barba-container[data-namespace="TopPage"] .item[data-pos="3"] {
        left: 60.27vw;
        top: 117.33vw; }
    .barba-container[data-namespace="TopPage"] .item[data-pos="4"] {
        left: 12.27vw;
        top: 109.33vw; }
    .barba-container[data-namespace="TopPage"] .item[data-pos="5"] {
        left: 56vw;
        top: 171.73vw; }
    .barba-container[data-namespace="TopPage"] .item[data-pos="6"] {
        left: 8vw;
        top: 213.33vw; }
    .barba-container[data-namespace="TopPage"] .item[data-pos="7"] {
        left: 53.33vw;
        top: 280vw; }
    .barba-container[data-namespace="TopPage"] .item[data-pos="8"] {
        left: 5.33vw;
        top: 282.4vw; }
    .barba-container[data-namespace="TopPage"] .item[data-pos="9"] {
        left: 53.33vw;
        top: 333.33vw; }
    .barba-container[data-namespace="TopPage"] .item[data-pos="10"] {
        left: -2.67vw;
        top: 373.87vw; }
    .barba-container[data-namespace="TopPage"] .item[data-pos="11"] {
        left: 72vw;
        top: 410.67vw; }
    .barba-container[data-namespace="TopPage"] .item[data-pos="12"] {
        left: 10.67vw;
        top: 445.33vw; }
    .barba-container[data-namespace="TopPage"] .item[data-pos="13"] {
        left: 58.67vw;
        top: 456vw; }
    .barba-container[data-namespace="TopPage"] .item[data-pos="14"] {
        left: 16vw;
        top: 498.67vw; }
    .barba-container[data-namespace="TopPage"] .item[data-pos="15"] {
        left: 64vw;
        top: 557.33vw; }
    .barba-container[data-namespace="TopPage"] .item[data-pos="16"] {
        left: 2.67vw;
        top: 576vw; }
    .barba-container[data-namespace="TopPage"] .item[data-pos="17"] {
        left: 32vw;
        top: 634.67vw; }
    .barba-container[data-namespace="TopPage"] .item[data-pos="18"] {
        left: 10.67vw;
        top: 677.33vw; }
    .barba-container[data-namespace="TopPage"] .item[data-pos="19"] {
        left: 53.33vw;
        top: 690.67vw; }}

@media screen and (min-width: 0), print {
    .barba-container[data-namespace="TopPage"] .item:nth-child(1) a {
        transition-delay: 0.02s; }
    .barba-container[data-namespace="TopPage"] .item:nth-child(2) a {
        transition-delay: 0.04s; }
    .barba-container[data-namespace="TopPage"] .item:nth-child(3) a {
        transition-delay: 0.06s; }
    .barba-container[data-namespace="TopPage"] .item:nth-child(4) a {
        transition-delay: 0.08s; }
    .barba-container[data-namespace="TopPage"] .item:nth-child(5) a {
        transition-delay: 0.1s; }
    .barba-container[data-namespace="TopPage"] .item:nth-child(6) a {
        transition-delay: 0.12s; }
    .barba-container[data-namespace="TopPage"] .item:nth-child(7) a {
        transition-delay: 0.14s; }
    .barba-container[data-namespace="TopPage"] .item:nth-child(8) a {
        transition-delay: 0.16s; }
    .barba-container[data-namespace="TopPage"] .item:nth-child(9) a {
        transition-delay: 0.18s; }
    .barba-container[data-namespace="TopPage"] .item:nth-child(10) a {
        transition-delay: 0.2s; }
    .barba-container[data-namespace="TopPage"] .item:nth-child(11) a {
        transition-delay: 0.22s; }
    .barba-container[data-namespace="TopPage"] .item:nth-child(12) a {
        transition-delay: 0.24s; }
    .barba-container[data-namespace="TopPage"] .item:nth-child(13) a {
        transition-delay: 0.26s; }
    .barba-container[data-namespace="TopPage"] .item:nth-child(14) a {
        transition-delay: 0.28s; }
    .barba-container[data-namespace="TopPage"] .item:nth-child(15) a {
        transition-delay: 0.3s; }
    .barba-container[data-namespace="TopPage"] .item:nth-child(16) a {
        transition-delay: 0.32s; }
    .barba-container[data-namespace="TopPage"] .item:nth-child(17) a {
        transition-delay: 0.34s; }
    .barba-container[data-namespace="TopPage"] .item:nth-child(18) a {
        transition-delay: 0.36s; }
    .barba-container[data-namespace="TopPage"] .item:nth-child(19) a {
        transition-delay: 0.38s; }
    .barba-container[data-namespace="TopPage"] .item:nth-child(20) a {
        transition-delay: 0.4s; }
    .barba-container[data-namespace="TopPage"] .item:nth-child(21) a {
        transition-delay: 0.42s; }
    .barba-container[data-namespace="TopPage"] .item:nth-child(22) a {
        transition-delay: 0.44s; }
    .barba-container[data-namespace="TopPage"] .item:nth-child(23) a {
        transition-delay: 0.46s; }
    .barba-container[data-namespace="TopPage"] .item:nth-child(24) a {
        transition-delay: 0.48s; }
    .barba-container[data-namespace="TopPage"] .item:nth-child(25) a {
        transition-delay: 0.5s; }
    .barba-container[data-namespace="TopPage"] .item:nth-child(26) a {
        transition-delay: 0.52s; }
    .barba-container[data-namespace="TopPage"] .item:nth-child(27) a {
        transition-delay: 0.54s; }
    .barba-container[data-namespace="TopPage"] .item:nth-child(28) a {
        transition-delay: 0.56s; }
    .barba-container[data-namespace="TopPage"] .item:nth-child(29) a {
        transition-delay: 0.58s; }
    .barba-container[data-namespace="TopPage"] .item:nth-child(30) a {
        transition-delay: 0.6s; }
    .barba-container[data-namespace="TopPage"] .item:nth-child(31) a {
        transition-delay: 0.62s; }
    .barba-container[data-namespace="TopPage"] .item:nth-child(32) a {
        transition-delay: 0.64s; }
    .barba-container[data-namespace="TopPage"] .item:nth-child(33) a {
        transition-delay: 0.66s; }
    .barba-container[data-namespace="TopPage"] .item:nth-child(34) a {
        transition-delay: 0.68s; }
    .barba-container[data-namespace="TopPage"] .item:nth-child(35) a {
        transition-delay: 0.7s; }
    .barba-container[data-namespace="TopPage"] .item:nth-child(36) a {
        transition-delay: 0.72s; }
    .barba-container[data-namespace="TopPage"] .item:nth-child(37) a {
        transition-delay: 0.74s; }
    .barba-container[data-namespace="TopPage"] .item:nth-child(38) a {
        transition-delay: 0.76s; }
    .barba-container[data-namespace="TopPage"] .item:nth-child(39) a {
        transition-delay: 0.78s; }
    .barba-container[data-namespace="TopPage"] .item:nth-child(40) a {
        transition-delay: 0.8s; }
}

@media screen and (max-width: 0) {
    .barba-container[data-namespace="TopPage"] .item:nth-child(2) a {
        transition-delay: 0.12s; }
    .barba-container[data-namespace="TopPage"] .item:nth-child(3) a {
        transition-delay: 0.18s; }
    .barba-container[data-namespace="TopPage"] .item:nth-child(4) a {
        transition-delay: 0.24s; }
    .barba-container[data-namespace="TopPage"] .item:nth-child(5) a {
        transition-delay: 0.3s; }
}

.barba-container[data-namespace="TopPage"] .item img{
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    transition: all .3s;
}
.barba-container[data-namespace="TopPage"] .item:hover img{
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
    transition: all .3s;
}


.indexBox2 .title{
    padding: 55px 0;
    text-align: center;
    max-width: 650px;
    margin: auto;
}
.indexBox2 .title h2{
    font-weight: bold;
    color: #161616;
    font-size: 30px;
    padding-bottom: 10px;
    text-transform: uppercase;
}
.indexBox2 .title p{
    font-size: 14px;
    color: #646464;
    line-height: 1.7;
}
.indexBox2 .indexBtnBox{
    border-bottom: 1px solid #eaeaea;
    display: flex;
}
.indexBox2 .indexBtnBox .btn{
    width: 16.666%;
    text-align: center;
    float: left;
    cursor: pointer;
}
.indexBox2 .indexBtnBox .btn em{
    font-size: 55px;
    color: #000000;
}
.indexBox2 .indexBtnBox .btn:hover em,
.indexBox2 .indexBtnBox .btn.on em{
    color: #1c4273;
}
.indexBox2 .indexBtnBox .btn span{
    display: inline-block;
    padding: 10px 0 15px;
    font-size: 16px;
    color: #424242;
    font-weight: 500;
    border-bottom: 1px solid #ffffff;
}
.indexBox2 .indexBtnBox .btn:hover span,
.indexBox2 .indexBtnBox .btn.on span{
    color: #1c4273;
    border-bottom-color: #1c4273;
}
.indexBox2 .indexSwitchBox{
    padding: 50px 0 85px;
}
.indexBox2 .indexSwitchBox .switch{
    display: none;
}
.indexBox2 .indexSwitchBox .switch.on{
    display: block;
    overflow: hidden;
}
.indexBox2 .indexSwitchBox .switch .text{
    width: 50%;
    float: left;
    padding: 30px 20px;
}
.indexBox2 .indexSwitchBox .switch .text span{
    font-size: 16px;
    font-weight: 600;
    color: #1c4273;
    display: block;
    padding-bottom: 25px;
}
.indexBox2 .indexSwitchBox .switch .text h3{
    font-size: 30px;
    font-weight: 500;
    color: #424242;
    line-height: 1.5;
    padding-bottom: 20px;
}
.indexBox2 .indexSwitchBox .switch .text p{
    font-size: 24px;
    color: #424242;
    line-height: 1.7;
}
.indexBox2 .indexSwitchBox .switch .text a{
    display: inline-block;
    margin-top: 25px;
    width: 180px;
    height: 45px;
    line-height: 45px;
    background: #1c4273;
    text-align: center;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
.indexBox2 .indexSwitchBox .switch .text a:hover{
    opacity: .85;
}
.indexBox2 .indexSwitchBox .switch .img{
    width: 50%;
    float: left;
    line-height: 0;
    text-align: center;
}

.indexBox3{
    padding-bottom: 60px;
    background: #f3f3f3;
}
.indexBox3 .img{
    line-height: 0;
}
.indexBox3 .title{
    padding: 55px 0 30px;
    text-align: center;
    max-width: 650px;
    margin: auto;
}
.indexBox3 .title h2{
    font-weight: bold;
    color: #161616;
    font-size: 30px;
    padding-bottom: 10px;
    text-transform: uppercase;
}
.indexBox3 .title p{
    font-size: 14px;
    color: #646464;
    line-height: 1.7;
}
.indexBox3 .conBox{
    display: flex;
    margin: 0 -5px;
}
.indexBox3 .conBox .con{
    padding: 0 5px;
}
.indexBox3 .conBox .con:nth-of-type(1){
    margin-bottom: 10px;
}
.indexBox3 .conBox .h100{
    width: 365px;
    height: 100%;
    background: #ffffff;
    padding: 10px 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    transition: all .3s;
}
.indexBox3 .conBox .h100:hover{
    background: #1c4273;
    transition: all .3s;
}
.indexBox3 .conBox .h100 .ico em{
    font-size: 62px;
    color: #999999;
}
.indexBox3 .conBox .item .ico em{
    display: block;
    width: 145px;
    text-align: center;
    font-size: 54px;
    color: #999999;
    transition: all .3s;
}
.indexBox3 .conBox .item:last-child .ico em{
    font-size: 42px;
}
.indexBox3 .conBox .text h3{
    font-size: 16px;
    font-weight: bold;
    color: #1c4273;
    padding: 5px 0 15px;
    transition: all .3s;
}
.indexBox3 .conBox .text p{
    font-size: 14px;
    color: #646464;
    line-height: 1.7;
    transition: all .3s;
}
.indexBox3 .conBox .itemBox{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -5px;
}
.indexBox3 .conBox .item{
    width: 50%;
    padding: 0 5px;
    float: left;
    margin-bottom: 10px;
}
.indexBox3 .conBox .item .box{
    height: 100%;
    padding: 40px 0;
    background: #ffffff;
    display: flex;
    align-items: center;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    transition: all .3s;
}
.indexBox3 .conBox .item .box:hover{
    background: #1c4273;
    transition: all .3s;
}
.indexBox3 .conBox .item .box .text{
    padding-right: 20px;
}
.indexBox3 .conBox .con .h100:hover em,
.indexBox3 .conBox .con .h100:hover h3,
.indexBox3 .conBox .con .h100:hover p,
.indexBox3 .conBox .con .item:hover em,
.indexBox3 .conBox .con .item:hover h3,
.indexBox3 .conBox .con .item:hover p{
    color: #ffffff;
    transition: all .3s;
}

.indexBox4{
    padding-bottom: 60px;
    border-bottom: 3px solid #f2f2f2;
    background-repeat: no-repeat;
    background-position: top center;
}
.indexBox4 .title{
    padding: 150px 0 60px;
    text-align: center;
    max-width: 650px;
    margin: auto;
}
.indexBox4 .title h2{
    font-weight: bold;
    color: #ffffff;
    font-size: 30px;
    padding-bottom: 10px;
    text-transform: uppercase;
}
.indexBox4 .title p{
    font-size: 14px;
    color: #ffffff;
    line-height: 1.7;
}
.indexBox4 .indexCustomerSlick{
    padding-bottom: 60px;
}
.indexBox4 .indexCustomerSlick .slick-dots{
    bottom: 0;
    left: 0;
    right: 0;
    width: auto;
}
.indexBox4 .indexCustomerSlick .slick-dots li.slick-active{
    background: #1c4273;
}
.indexBox4 .indexCustomerSlick .slick_first{
    margin-top: 40px;
    margin-left: 10px;
    margin-right: 10px;
    background: #ffffff;
}
.indexBox4 .indexCustomerSlick .top{
    position: relative;
    padding: 25px 15px 30px 170px;
    border-bottom: 1px dashed #dddddd;
}
.indexBox4 .indexCustomerSlick .top .img{
    position: absolute;
    top: -40px;
    left: 30px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    line-height: 0;
    border: 5px solid #f3f3f3;
    overflow: hidden;
}
.indexBox4 .indexCustomerSlick .top .text h3{
    color: #1c4273;
    font-weight: 800;
    font-size: 16px;
    padding-bottom: 10px;
}
.indexBox4 .indexCustomerSlick .top .text p{
    font-size: 16px;
    color: #5c5c5c;
}
.indexBox4 .indexCustomerSlick .bot{
    padding: 15px 30px;
}
.indexBox4 .indexCustomerSlick .bot p{
    color: #646464;
    line-height: 1.7;
}

.productBox1{
    padding: 115px 0 50px;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: cover;
    background-size: cover;
}
.productBox1 .text{
    text-align: center;
    padding-bottom: 25px;
}
.productBox1 .text h1{
    font-size: 48px;
    font-weight: bold;
    color: #ffffff;
    text-transform: uppercase;
    padding-bottom: 10px;
}
.productBox1 .text p{
    font-size: 14px;
    color: #ffffff;
    line-height: 1.7;
}
.productBox1 .productSearch form .info{
    max-width: 630px;
    margin: auto;
    padding-right: 75px;
    padding-left: 40px;
    position: relative;
    border: 1px solid rgba(112,112,112,0.4);
    background: rgba(0,0,0,0.4);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
.productBox1 .productSearch form .info:before{
    position: absolute;
    content: '\e613';
    left: 1px;
    width: 40px;
    height: 48px;
    line-height: 48px;
    text-align: center;
    color: #ffffff;
    font-size: 20px;
    font-family: "iconfont", sans-serif;
}
.productBox1 .productSearch form .info input[type="text"]{
    width: 100%;
    height: 48px;
    background: none;
    border: 0;
    padding: 10px 0;
    font-size: 16px;
    color: #ffffff;
}
.productBox1 .productSearch form .info input[type="text"]::placeholder{
    color: #ffffff;
}
.productBox1 .productSearch form .info input[type="submit"]{
    position: absolute;
    right: 0;
    top: 0;
    width: 75px;
    height: 48px;
    background: #1c4273;
    border: 0;
    color: #ffffff;
    cursor: pointer;
}
.productBox1 .productSearch form .info input[type="submit"]:hover{
    opacity: .85;
}
.productBox1 .productSearch .tips{
    text-align: center;
    padding-top: 15px;
}
.productBox1 .productSearch .tips p{
    font-size: 14px;
    color: #ffffff;
}
.productBox1 .productSearch .tips a{
    display: inline-block;
    margin-right: 15px;
}
.productBox1 .productSearch .tips a:last-child{
    margin-right: 0;
}
.productBox1 .productSearch .tips a:hover{
    text-decoration: underline;
}

.productBox2{
    padding: 50px 0;
}
.productBox2 ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 -3px;
}
.productBox2 ul li{
    width: 20%;
    padding: 0 3px;
    margin-bottom: 5px;
}
.productBox2 ul li a{
    height: 50px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    color: #000000;
    border: 1px solid #707070;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
}
.productBox2 ul li a:hover,
.productBox2 ul li a.on{
    background: #1c4273;
    color: #ffffff;
    border-color: #1c4273;
}

.productBox3{
    background: #f3f3f3;
    padding: 30px 0;
}
.productBox3 .itemBox{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -5px;
}
.productBox3 .item{
    width: 25%;
    padding: 0 5px;
    margin-bottom: 10px;
}
.productBox3 .item .conBox{
    background: #ffffff;
    text-align: center;
    transition: all .3s;
}
.productBox3 .item .conBox:hover{
    -webkit-box-shadow: 0 0 5px 0 rgba(0,0,0,0.2);
    -moz-box-shadow: 0 0 5px 0 rgba(0,0,0,0.2);
    box-shadow: 0 0 5px 0 rgba(0,0,0,0.2);
    transition: all .3s;
}
.productBox3 .item .conBox .img{
    line-height: 0;
    overflow: hidden;
}
.productBox3 .item .conBox .img img{
    transform: scale(1);
    transition: all .3s;
}
.productBox3 .item .conBox:hover .img img{
    transform: scale(1.1);
    transition: all .3s;
}
.productBox3 .item .conBox .text a{
    display: block;
    padding: 15px 0 20px;
    font-weight: 500;
}

.productBox4 .title{
    padding: 70px 0 20px;
    text-align: center;
    max-width: 1200px;
    margin: auto;
}
.productBox4 .title h2{
    font-size: 48px;
    color: #000000;
    font-weight: 500;
    padding-bottom: 15px;
}
.productBox4 .title p{
    font-size: 14px;
    color: #000000;
    line-height: 1.7;
}
.productBox4 .btnBox{
    overflow: hidden;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.productBox4 .btn{
    float: left;
    margin-right: 2px;
    padding: 0 25px;
    height: 46px;
    line-height: 44px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 2px;
    border: 1px solid #dcdcdc;
    cursor: pointer;
}
.productBox4 .btn:hover,
.productBox4 .btn.on{
    background: #1c4273;
    color: #ffffff;
    border-color: #1c4273;
}

.productBox4 .switchBox{
    padding: 55px 0;
}
.productBox4 .switchBox .switch{
    display: none;
}
.productBox4 .switchBox .switch.on{
    display: block;
}
.productBox4 .itemBox{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -5px;
}
.productBox4 .item{
    width: 25%;
    float: left;
    padding: 0 5px;
    margin-bottom: 10px;
}
.productBox4 .item .conBox{
    border: 1px solid #eeeeee;
}
.productBox4 .item .conBox .img{
    background: #eeeeee;
    line-height: 0;
    text-align: center;
    overflow: hidden;
}
.productBox4 .item .conBox .img img{
    transform: scale(1);
    transition: all .3s;
}
.productBox4 .item .conBox:hover .img img{
    transform: scale(1.1);
    transition: all .3s;
}
.productBox4 .item .conBox .text{
    padding: 15px 15px 20px;
    text-align: center;
}
.productBox4 .item .conBox .text p{
    font-size: 13px;
    font-weight: 500;
    color: #000000;
}
.productBox4 .item .conBox .text span{
    display: block;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 0;
}
.productBox4 .item .conBox .text a{
    display: inline-block;
    width: 160px;
    height: 44px;
    line-height: 42px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid #e5e5e5;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
.productBox4 .item .conBox .text a:hover{
    background: #1c4273;
    color: #ffffff;
    border-color: #1c4273;
}

.pro_B_img img{
    width: 100%;
}
.parameter_box{
    padding-left: 35px;
}
.parameter_box h1{
    font-size: 30px;
    color: #000000;
    font-weight: bold;
    line-height: 1.4;
    padding-top: 40px;
}
.parameter_box p{
    font-size: 16px;
    color: #000000;
    margin-bottom: 0;
    line-height: 1.7;
}
.parameter_box .tipBox h3{
    font-size: 24px;
    font-weight: 600;
    color: #161616;
    padding: 25px 0;
    margin-top: 25px;
    border-top: 1px solid #e5e5e5;
}
.parameter_box .tipBox li{
    font-size: 16px;
    font-weight: 500;
    color: #161616;
    line-height: 2;
}
.parameter_btn a.a1{
    width: 400px;
    height: 50px;
    line-height: 50px;
    padding: 0 40px;
    background: #1c4273;
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    margin-top: 20px;
}
.parameter_btn a.a1:hover{
    opacity: .85;
}

.productDetailBox{
    padding-top: 75px;
}
.productDetailBox .productTabBox{
    position: sticky;
    top: 0;
    left: 0;
    background: #ffffff;
    border-top: 1px solid #e7e7e7;
    -webkit-box-shadow: 0 2px 2px 0 rgba(0,0,0,0.1);
    -moz-box-shadow: 0 2px 2px 0 rgba(0,0,0,0.1);
    box-shadow: 0 2px 2px 0 rgba(0,0,0,0.1);
    z-index: 2;
}
.productDetailBox .productTabBox .conBox{
    max-width: 1400px;
    margin: auto;
    padding:  0 10px;
    display: flex;
    justify-content: center;
}
.productDetailBox .productTabBox a{
    display: inline-block;
    font-size: 24px;
    font-weight: 500;
    line-height: 100px;
    padding: 0 20px;
}
.productDetailBox .productTabBox a:last-child{
    margin-right: 0;
}
.productDetailBox .productTabBox a:hover,
.productDetailBox .productTabBox a.on{
    color: #1c4273;
}
.productContactBox{
    background: #f3f3f3;
    padding-top: 10px;
    overflow: hidden;
}
.productContactBox .productContent{
    background: #ffffff;
    margin-bottom: 10px;
}
.productContactBox .title h2{
    text-align: center;
    padding: 45px 0 25px;
    font-size: 30px;
    font-weight: bold;
    text-transform: uppercase;
}
.productContactBox .conBox *{
    line-height: 2;
}
.productContactBox .conBox ul,
.productContactBox .conBox ol{
    margin-left: 20px;
}
.productContactBox table td{
    background: #f0f0f0;
    height: 50px;
    border: 1px solid #ffffff;
    font-size: 16px;
    color: #000000;
    padding: 10px 15px;
}
.productContactBox .relatedProductsList{
    padding: 0 50px;
    margin-bottom: 90px;
}
.productContactBox .relatedProductsList .slick-prev,
.productContactBox .relatedProductsList .slick-next{
    width: 21px;
    height: 42px;
    margin-top: -21px;
    background: url("https://gmssource.usa02.wondercdn.com/public/static/images/home/en-us/reset/buttonstyle.png") no-repeat;
}
.productContactBox .relatedProductsList .slick-prev{
    background-position: left center;
}
.productContactBox .relatedProductsList .slick-next{
    background-position: right center;
}
.productContactBox .relatedProductsList .list{
    width: 25%;
    float: left;
    padding: 0 10px;
    text-align: center;
    background: #ffffff;
    margin: 0 3px;
}
.productContactBox .relatedProductsList .list .img{
    line-height: 0;
    margin-bottom: 10px;
}
.productContactBox .relatedProductsList .list .img img{
    clear: both;
    display: block;
    margin: auto;
}
.productContactBox .relatedProductsList .list .text a{
    display: block;
    padding: 15px 0 20px;
    color: #000000;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
}
.productContactBox .relatedProductsList .list .text a:hover{
    color: #1c4273;
}

.oemBox1{
    overflow: hidden;
    background-color: #f3f3f3;
    background-repeat: no-repeat;
    background-position: top center;
}
.oemBox1 h1{
    padding: 280px 0 70px;
    text-align: center;
    font-size: 60px;
    font-weight: bold;
    color: #ffffff;
    text-transform: uppercase;
}
.oemBox1 .conBox{
    background: #ffffff;
    padding: 0 70px;
    margin: 10px 0;
    -webkit-box-shadow: 0 0 10px 0 rgba(0,0,0,0.3);
    -moz-box-shadow: 0 0 10px 0 rgba(0,0,0,0.3);
    box-shadow: 0 0 10px 0 rgba(0,0,0,0.3);
}
.oemBox1 .conBox h2{
    font-size: 30px;
    font-weight: 600;
    color: #000000;
    text-align: center;
    text-transform: uppercase;
    padding: 40px 0;
}
.oemBox1 .conBox .itemBox{
    position: relative;
    height: 520px;
}
.oemBox1 .conBox .item{
    position: absolute;
    border: 2px solid #1c4273;
    padding: 15px 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #2f2f2f;
}
.oemBox1 .conBox .item:before{
    position: absolute;
    content: '\e653';
    font-family: "iconfont", sans-serif;
    color: #b2b2b2;
    font-size: 16px;
    width: 30px;
    height: 30px;
    line-height: 28px;
    text-align: center;
    border: 1px solid #b2b2b2;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}
.oemBox1 .conBox .item.it1{
    width: 355px;
    top: 0;
    left: 0;
}
.oemBox1 .conBox .item.it1:before{
    top: 50%;
    margin-top: -15px;
    right: -50px;
}
.oemBox1 .conBox .item.it2{
    width: 420px;
    top: 0;
    left: 420px;
}
.oemBox1 .conBox .item.it2:before{
    top: 50%;
    margin-top: -15px;
    right: -50px;
}
.oemBox1 .conBox .item.it3{
    width: 280px;
    top: 0;
    left: 900px;
}
.oemBox1 .conBox .item.it3:before{
    bottom: -50px;
    left: 50%;
    margin-left: -15px;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}
.oemBox1 .conBox .item.it3:after{
    position: absolute;
    content: '\e653';
    font-family: "iconfont", sans-serif;
    color: #b2b2b2;
    font-size: 16px;
    width: 30px;
    height: 30px;
    top: 50%;
    margin-top: -15px;
    right: -40px;
    line-height: 28px;
    text-align: center;
    border: 1px solid #b2b2b2;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}
.oemBox1 .conBox .item.it4{
    width: 280px;
    top: 120px;
    left: 900px;
}
.oemBox1 .conBox .item.it4:before{
    bottom: -50px;
    left: 50%;
    margin-left: -15px;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}
.oemBox1 .conBox .item.it5{
    width: 365px;
    border: 0;
    top: 254px;
    left: 865px;
    color: #ffffff;
    background: url("https://gmssource.usa02.wondercdn.com/public/static/images/home/en-us/oem.png") no-repeat center center;
}
.oemBox1 .conBox .item.it5:before{
    top: 50%;
    margin-top: -15px;
    left: -30px;
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}
.oemBox1 .conBox .item.it5 .yes{
    position: absolute;
    top: 5px;
    left: 0;
    width: 100%;
    text-align: left;
    padding-left: 25px;
    border-bottom: 1px solid #1c4273;
    color: #2f2f2f;
}
.oemBox1 .conBox .item.it5 .no{
    position: absolute;
    color: #ffffff;
    width: 50px;
    height: 30px;
    right: -25px;
    top: -116px;
    line-height: 30px;
    text-align: center;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    background: #1c4273;
}
.oemBox1 .conBox .item.it5 .no:before{
    position: absolute;
    content: '';
    width: 1px;
    height: 253px;
    bottom: -111px;
    left: 50%;
    background: #1c4273;
}
.oemBox1 .conBox .item.it5 .no:after{
    position: absolute;
    content: '';
    width: 12px;
    height: 1px;
    top: -112px;
    right: 25px;
    background: #1c4273;
}
.oemBox1 .conBox .item.it5 p,
.oemBox1 .conBox .item.it5 span{
    position: relative;
    z-index: 2;
}
.oemBox1 .conBox .item.it6{
    width: 270px;
    top: 254px;
    left: 555px;
}
.oemBox1 .conBox .item.it6:before{
    top: 50%;
    margin-top: -15px;
    left: -45px;
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}
.oemBox1 .conBox .item.it7{
    width: 215px;
    top: 254px;
    left: 280px;
}
.oemBox1 .conBox .item.it7:before{
    top: 50%;
    margin-top: -15px;
    left: -42px;
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}
.oemBox1 .conBox .item.it8{
    width: 230px;
    top: 254px;
    left: 0;
}
.oemBox1 .conBox .item.it8:before{
    bottom: -60px;
    left: 50%;
    margin-left: -15px;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}
.oemBox1 .conBox .item.it9{
    width: 230px;
    top: 390px;
    left: 0;
}
.oemBox1 .conBox .item.it9:before{
    top: 50%;
    margin-top: -15px;
    right: -42px;
}
.oemBox1 .conBox .item.it10{
    width: 215px;
    top: 390px;
    left: 280px;
}
.oemBox1 .conBox .item.it10:before{
    top: 50%;
    margin-top: -15px;
    right: -50px;
}
.oemBox1 .conBox .item.it11{
    width: 290px;
    top: 390px;
    left: 560px;
}
.oemBox1 .conBox .item.it11:before{
    top: 50%;
    margin-top: -15px;
    right: -50px;
}
.oemBox1 .conBox .item.it12{
    width: 200px;
    top: 390px;
    left: 920px;
}
.oemBox1 .conBox .item.it12:before{
    display: none;
}

.oemBox2{
    background: #f3f3f3;
    padding-bottom: 60px;
}
.oemBox2 .title{
    max-width: 1200px;
    margin: auto;
    text-align: center;
    padding: 50px 0 40px;
}
.oemBox2 .title h2{
    font-size: 30px;
    font-weight: 600;
    color: #000000;
    text-transform: uppercase;
    padding-bottom: 10px;
}
.oemBox2 .title p{
    font-size: 14px;
    color: #646464;
    line-height: 1.7;
}
.oemBox2 .itemBox{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}
.oemBox2 .item{
    width: 33.33%;
    padding: 0 15px;
    float: left;
    position: relative;
    margin-bottom: 30px;
}
.oemBox2 .item:before{
    position: absolute;
    content: '\e653';
    font-family: "iconfont", sans-serif;
    color: #000000;
    font-size: 16px;
    width: 65px;
    height: 65px;
    bottom: -6px;
    right: -30px;
    line-height: 65px;
    text-align: center;
    background: #ffffff;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    z-index: 2;
}
.oemBox2 .item:nth-of-type(3n):before{
    display: none;
}
.oemBox2 .item .img{
    overflow: hidden;
}
.oemBox2 .item .img img{
    transform: scale(1);
    transition: all .3s;
}
.oemBox2 .item .img:hover img{
    transform: scale(1.1);
    transition: all .3s;
}
.oemBox2 .item span{
    position: absolute;
    bottom: 5px;
    right: 55px;
    font-size: 36px;
    color: #f3f3f3;
}

.aboutBanner{
    line-height: 0;
    text-align: center;
}
.aboutBox1{
    padding: 115px 0 130px;
    background: #f3f3f3;
}
.aboutBox1 .conBox{
    overflow: hidden;
}
.aboutBox1 .conBox .text{
    width: 42%;
    float: left;
    position: relative;
    padding-top: 100px;
    padding-left: 30px;
}
.aboutBox1 .conBox .text:before{
    position: absolute;
    content: '';
    width: 1px;
    height: 305px;
    top: 0;
    left: 0;
    background: #1c4273;
}
.aboutBox1 .conBox .text h2{
    padding-bottom: 40px;
    font-size: 36px;
    font-weight: bold;
    color: #161616;
    text-transform: uppercase;
}
.aboutBox1 .conBox .text p{
    font-size: 16px;
    color: #2f2f2f;
    line-height: 1.7;
}
.aboutBox1 .conBox .img{
    width: 58%;
    float: left;
    line-height: 0;
    text-align: right;
    padding-left: 20px;
}

.aboutBox2{
    padding: 80px 0;
    background: url("https://gmssource.usa02.wondercdn.com/public/static/images/home/en-us/aboutBj.jpg") no-repeat center center;
    -webkit-background-size: cover;
    background-size: cover;
}
.aboutBox2 .title h2{
    text-align: center;
    padding-bottom: 65px;
    font-size: 36px;
    font-weight: bold;
    color: #ffffff;
    text-transform: uppercase;
}
.aboutBox2 .itemBox{
    display: flex;
    flex-wrap: wrap;
}
.aboutBox2 .item{
    width: 20%;
    float: left;
    text-align: center;
    padding: 0 10px;
    position: relative;
    top: 0;
    transition: all .3s;
}
.aboutBox2 .item:hover{
    top: -10px;
    transition: all .3s;
}
.aboutBox2 .item .ico{
    line-height: 0;
    padding-bottom: 15px;
}
.aboutBox2 .item p{
    font-size: 16px;
    color: #ffffff;
    line-height: 1.6;
}

.aboutBox4 .title{
    padding: 80px 0;
    text-align: center;
    max-width: 1200px;
    margin: auto;
}
.aboutBox4 .title h2{
    font-size: 30px;
    font-weight: bold;
    color: #050505;
    text-transform: uppercase;
    padding-bottom: 15px;
}
.aboutBox4 .title p{
    font-size: 14px;
    color: #646464;
    line-height: 1.7;
}
.aboutBox4 .itemBox{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -2px;
    padding-bottom: 90px;
}
.aboutBox4 .item{
    width: 25%;
    float: left;
    padding: 0 2px;
    display: flex;
    flex-direction: column-reverse;
    text-align: center;
}
.aboutBox4 .item:nth-of-type(2n){
    flex-direction: column;
}
.aboutBox4 .item .img{
    line-height: 0;
    text-align: center;
}
.aboutBox4 .item .text{
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.aboutBox4 .item .text p{
    color: #1e1e1e;
}

.aboutBox5{
    padding: 70px 0;
    background: #f3f3f3;
}
.aboutBox5 .aboutSlick{
    padding-bottom: 30px;
}
.aboutBox5 .aboutSlick .slick-dots{
    bottom: 0;
}
.aboutBox5 .aboutSlick .slick-dots li.slick-active{
    background: #1c4273;
}
.aboutBox5 .aboutSlick .slick_first{
    margin: 0 8px;
}
.aboutBox5 .aboutSlick .img{
    line-height: 0;
    text-align: center;
    overflow: hidden;
}
.aboutBox5 .aboutSlick .img img{
    width: 100%;
    transform: scale(1);
    transition: all .3s;
}
.aboutBox5 .aboutSlick .img:hover img{
    transform: scale(1.1);
    transition: all .3s;
}
.aboutBox5 .aboutSlick .text{
    text-align: center;
    padding: 10px;
}
.aboutBox5 .aboutSlick .text p{
    font-size: 16px;
    color: #1e1e1e;
}

.contactBanner{
    line-height: 0;
    text-align: center;
}
.contactBox1{
    background: #f3f3f3;
    padding-bottom: 15px;
}
.contactBox1 .conBox{
    margin-top: -170px;
    position: relative;
    z-index: 2;
    background: #ffffff;
    display: flex;
    align-items: center;
}
.contactBox1 .conBox .title{
    width: 345px;
    float: left;
    background: #1c4273;
    padding: 85px 0 85px 70px;
}
.contactBox1 .conBox .title h2{
    color: #ffffff;
    font-size: 30px;
    font-weight: bold;
    text-transform: uppercase;
    padding-bottom: 15px;
}
.contactBox1 .conBox .title p{
    font-size: 16px;
    color: #ffffff;
}
.contactBox1 .conBox .text{
    flex: 1;
    padding-left: 150px;
    padding-right: 100px;
}
.contactBox1 .conBox .text ul{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.contactBox1 .conBox .text ul li{
    margin-right: 50px;
    padding: 14px 0 14px 30px;
    position: relative;
    font-size: 16px;
    color: #424242;
    font-weight: 500;
}
.contactBox1 .conBox .text ul li em{
    position: absolute;
    left: 0;
    font-size: 18px;
}
.contactBox1 .conBox .text ul li:nth-of-type(1),
.contactBox1 .conBox .text ul li:nth-of-type(3){
    width: 250px;
}
.contactBox1 .conBox .text ul li a:hover{
    color: #1c4273;
}

.contactBox2{
    background: #f3f3f3;
    padding-bottom: 50px;
}
.contactBox2 .conBox{
    background: #ffffff;
    padding-bottom: 50px;
    padding-left: 10px;
    padding-right: 10px;
}
.contactBox2 .conBox .title{
    padding: 40px 15px;
    text-align: center;
}
.contactBox2 .conBox .title h2{
    font-size: 30px;
    font-weight: 600;
    color: #000000;
    padding-bottom: 10px;
    text-transform: uppercase;
}
.contactBox2 .conBox .title p{
    font-size: 16px;
    color: #424242;
    line-height: 1.7;
}
.contactBox2 .conBox form{
    max-width: 1085px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-bottom: 30px;
}
.contactBox2 .conBox .info{
    width: 49%;
    float: left;
    margin-bottom: 10px;
}
.contactBox2 .conBox .tips{
    display: block;
    color: #ff0000;
    font-size: 14px;
    line-height: 16px;
}
.contactBox2 .conBox .info.w100{
    width: 100%;
}
.contactBox2 .conBox .info:last-child{
    text-align: center;
}
.contactBox2 .conBox .info input[type="text"],
.contactBox2 .conBox .info textarea{
    width: 100%;
    height: 44px;
    padding: 10px;
    color: #282828;
    background: none;
    border: 1px solid #e5e5e5
}
.contactBox2 .conBox .info textarea{
    resize: none;
    height: 140px;
}
.contactBox2 .conBox .info input[type="submit"]{
    width: 205px;
    height: 45px;
    margin-top: 25px;
    background: #1c4273;
    color: #ffffff;
    border: 0;
    font-size: 18px;
    cursor: pointer;
    transition: all .3s;
}
.contactBox2 .conBox .info input[type="submit"]:hover{
    opacity: .85;
    transition: all .3s;
}

@media (max-width: 1620px){
    .indexBox1{
        height: 700px;
    }
    .indexBox1 .title{
        margin-top: -84px;
    }
    .indexBox1 .title h2{
        font-size: 70px;
    }
    .oemBox1 h1{
        font-size: 54px;
    }
}
@media (max-width: 1450px){
    .indexBox1{
        height: 600px;
    }
    .indexBox1 .title{
        margin-top: -72px;
    }
    .indexBox1 .title h2{
        font-size: 60px;
    }
    .indexBox2 .indexSwitchBox .switch .text h3{
        font-size: 24px;
    }
    .indexBox2 .indexSwitchBox .switch .text p{
        font-size: 18px;
    }
    .oemBox1 h1{
        font-size: 48px;
    }

    .oemBox1 .conBox h2{
        padding-bottom: 0;
    }
    .oemBox1 .conBox .itemBox{
        margin-left: -8%;
        height: 450px;
        -webkit-transform: scale(0.8);
        -moz-transform: scale(0.8);
        -ms-transform: scale(0.8);
        -o-transform: scale(0.8);
        transform: scale(0.8);
    }
    .oemBox2 .item span{
        font-size: 30px;
    }
}
@media (max-width: 1220px){
    .productBox1 .text h1,
    .productBox4 .title h2,
    .oemBox1 h1{
        font-size: 40px;
    }
    .header .nav_list > li{
        margin-left: 20px;
    }
    .indexBox1{
        height: 500px;
    }
    .indexBox1 .title{
        margin-top: -57px;
    }
    .indexBox1 .title h2{
        font-size: 48px;
    }
    .indexBox2 .title{
        padding: 50px 0 30px;
    }
    .indexBox2 .indexSwitchBox{
        padding: 50px 0;
    }
    .indexBox2 .indexSwitchBox .switch .text p{
        font-size: 16px;
    }
    .indexBox3{
        padding-bottom: 40px;
    }
    .indexBox3 .conBox{
        flex-wrap: wrap;
    }
    .indexBox3 .conBox .h100{
        width: 100%;
        padding: 40px 20px;
    }
    .footer_box .fast_navigation .itemBox{
        padding: 50px 0;
    }


    .productBox2 ul li{
        width: 25%;
    }
    .productBox4 .title{
        padding-top: 50px;
    }

    .parameter_box h1{
        font-size: 24px;
    }
    .parameter_btn a.a1{
        font-size: 16px;
        width: 145px;
        height: 40px;
        line-height: 40px;
        margin-top: 0;
    }
    .productDetailBox .productTabBox a{
        font-size: 18px;
    }


    .oemBox1 .conBox h2{
        font-size: 24px;
    }
    .oemBox1 .conBox .itemBox{
        margin-left: -19%;
        height: 450px;
        margin-top: -30px;
        -webkit-transform: scale(0.75);
        -moz-transform: scale(0.75);
        -ms-transform: scale(0.75);
        -o-transform: scale(0.75);
        transform: scale(0.75);
    }
    .oemBox2 .itemBox{
        margin: 0 -10px;
    }
    .oemBox2 .item{
        padding: 0 10px;
    }

    .aboutBox1{
        padding: 50px 0;
    }
    .aboutBox1 .conBox .text{
        padding-top: 0;
    }
    .aboutBox1 .conBox .text h2{
        padding-bottom: 10px;
    }
    .aboutBox2{
        padding: 50px 0;
    }
    .aboutBox2 .title h2{
        font-size: 30px;
        padding-bottom: 40px;
    }
    .aboutBox4 .title{
        padding: 50px 0;
    }
    .aboutBox4 .itemBox{
        padding-bottom: 50px;
    }
    .aboutBox4 .item .text{
        height: 40px;
    }
    .aboutBox5{
        padding: 50px 0;
    }
    .aboutBox5 .aboutSlick .slick_first{
        margin: 0 5px;
    }

    .contactBox1 .conBox .text{
        padding: 10px 50px;
    }
    .contactBox2 .conBox{
        padding-bottom: 0;
    }
}
@media (max-width: 992px){
    .productBox1 .text h1,
    .productBox4 .title h2,
    .oemBox1 h1{
        font-size: 34px;
    }
    .Three_menu_box{
        padding-left: 10px;
    }
    .Crumbs ul li a,
    .Crumbs ul li,
    .Crumbs ul li a span,
    .Crumbs ul i{
        font-size: 14px;
        line-height: 1.2;
    }
    .Crumbs span.youAreHere{
        display: none;
    }
    body{
        padding-top: 60px;
    }
    /*移动端隐藏模块*/
    .header {
        display: none;
    }

    /*移动端头部*/
    .m_header {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: #ffffff;
        z-index: 100002;
        -webkit-box-shadow: 0 0 10px 0 rgba(0,0,0,0.2);
        -moz-box-shadow: 0 0 10px 0 rgba(0,0,0,0.2);
        box-shadow: 0 0 10px 0 rgba(0,0,0,0.2);
    }

    .m_header {
        height: 60px;
    }

    .logo_box {
        width: 100%;
        height: 60px;
        text-align: center;
        padding: 15px 0;
        line-height: 0;
        font-size: 0;
        zoom: 1;
    }

    .logo_box img {
        height: 100%;
    }

    .langBox{
        top: 10px;
        right: 10px;
    }
    .langBox span{
        width: auto;
    }
    .lang a{
        line-height: 60px;
        font-size: 18px;
        color: #333333;
    }

    .nav_toggle {
        color: #fff;
        -webkit-transform: scale(0.7);
        -moz-transform: scale(0.7);
        -ms-transform: scale(0.7);
        -o-transform: scale(0.7);
        transform: scale(0.7);
        transform-origin: 50% 50%;
        position: absolute;
        top: 50%;
        left: 10px;
        margin-top: -13px;
        z-index: 999;
    }

    .nav_toggle {
        cursor: pointer;
        padding: 10px 35px 16px 0;
    }

    .nav_toggle span,
    .nav_toggle span:before,
    .nav_toggle span:after {
        cursor: pointer;
        height: 3px;
        width: 40px;
        background: #000000;
        position: absolute;
        display: block;
        content: '';
    }

    .nav_toggle span:before {
        top: -10px;
    }

    .nav_toggle span:after {
        bottom: -10px;
    }

    .nav_toggle span,
    .nav_toggle span:before,
    .nav_toggle span:after {
        transition: all 500ms ease-in-out;
        -webkit-transition: all 500ms ease-in-out;
        -moz-transition: all 500ms ease-in-out;
        -o-transition: all 500ms ease-in-out;
    }

    .nav_toggle.active span {
        background-color: transparent;
    }

    .nav_toggle.active span:before,
    .nav_toggle.active span:after {
        top: 0;
    }

    .nav_toggle.active span:before {
        transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
    }

    .nav_toggle.active span:after {
        transform: translateY(-10px) rotate(-45deg);
        -webkit-transform: translateY(-10px) rotate(-45deg);
        -ms-transform: translateY(-10px) rotate(-45deg);
        top: 10px;
    }

    /*移动端导航*/
    .m_header .m_nav {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        bottom: 0;
        width: 100%;
        background: #ffffff;
        z-index: 2;
        overflow: auto;
        border-top: 1px solid #f0f0f0;
        margin-top: -1px;
    }

    .m_header .m_nav_list a {
        display: block;
        width: 100%;
        padding: 0 15px;
        line-height: 35px;
        text-align: left;
        font-size: 14px;
        color: #000000;
    }

    .m_header .m_nav_list > li {
        position: relative;
        border-bottom: 1px solid #f0f0f0;
        transition: transform .5s ease;
        transform: matrix(1, -1, 0, 1, 200, 100);
    }

    .m_header .m_nav_list > li > i {
        position: absolute;
        width: 20px;
        height: 20px;
        background: #000;
        top: 8px;
        right: 10px;
        cursor: pointer;
        z-index: 2;
        background: url("https://gmssource.usa02.wondercdn.com/public/static/images/home/en-us/reset/li_click.png") no-repeat top center;
    }

    .m_header .m_nav_list > li > a {
        opacity: 0;
    }

    .m_header .m_nav_list .dropdown .dropdown_menu {
        height: 0;
        overflow: hidden;
    }

    .m_header .m_nav_list .dropdown .dropdown_menu.on {
        height: auto;
    }

    .m_header .m_nav_list .dropdown_menu > li {
        border-top: 1px solid #f0f0f0;
        background: #f5f5f5;
    }

    .footer_box .fast_navigation .item:nth-of-type(1){
        display: none;
    }

    .indexBox1{
        height: 400px;
    }
    .indexBox1 .title{
        margin-top: -48px;
    }
    .indexBox1 .title h2{
        font-size: 40px;
    }
    .indexBox2 .indexBtnBox .btn span{
        font-size: 14px;
    }
    .indexBox2 .indexSwitchBox .switch .text span{
        padding-bottom: 15px;
    }
    .indexBox2 .indexSwitchBox .switch .text h3{
        font-size: 20px;
    }
    .indexBox2 .indexSwitchBox .switch .text a{
        width: 145px;
        height: 40px;
        line-height: 40px;
        margin-top: 15px;
    }
    .indexBox3 .conBox .item{
        width: 100%;
    }
    .indexBox3 .conBox .item .box{
        padding: 40px 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .indexBox3 .conBox .item .box .ico{
        width: 100%;
        text-align: center;
    }
    .indexBox3 .conBox .item .ico em{
        width: 100%;
    }
    .indexBox3 .conBox .item .box .text{
        width: 100%;
        text-align: center;
        padding-right: 0;
    }
    .footer_box .footerOther p{
        font-size: 16px;
    }
    .footer_box .footerOther p a{
        font-size: 16px;
        width: 145px;
        height: 40px;
        line-height: 40px;
    }

    .productBox1{
        padding: 60px 0;
    }
    .productBox2 ul li{
        width: 33.33%;
    }
    .productBox4 .switchBox{
        padding: 50px 0;
    }

    .parameter_box .tipBox h3{
        padding-bottom: 10px;
    }
    .parameter_box{
        padding-left: 0;
    }
    .productDetailBox{
        padding-top: 30px;
    }
    .productDetailBox .productTabBox{
        display: none;
    }
    .productContactBox .title h2{
        font-size: 24px;
        padding: 20px 10px;
    }
    .contactBox2 .conBox{
        padding: 0 10px 30px;
    }
    .productContactBox .relatedProductsList{
        margin-bottom: 0;
    }

    .oemBox1 .conBox h2{
        padding-bottom: 30px;
    }
    .oemBox1 .conBox{
        padding-left: 80px;
        padding-right: 85px;
        overflow: hidden;
    }
    .oemBox1 .conBox .itemBox{
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
        height: auto;
        margin: 0;
    }
    .oemBox1 .conBox .item{
        position: relative;
        top: auto !important;
        bottom: auto !important;
        left: auto !important;
        right: auto !important;
        width: 100% !important;
        margin-bottom: 50px;
    }
    .oemBox1 .conBox .item:before{
        left: 50% !important;
        bottom: -40px !important;
        top: auto !important;
        right: auto !important;
        margin: 0 !important;
        -webkit-transform: rotate(90deg) !important;
        -moz-transform: rotate(90deg) !important;
        -ms-transform: rotate(90deg) !important;
        -o-transform: rotate(90deg) !important;
        transform: rotate(90deg) !important;
    }
    .oemBox1 .conBox .item.it3:after{
        right: -52px;
    }
    .oemBox1 .conBox .item.it5 .yes{
        width: 90%;
        left: auto;
        right: 0;
    }
    .oemBox1 .conBox .item.it5 .yes:before{
        position: absolute;
        content: '';
        width: 1px;
        height: 75px;
        top: 20px;
        left: 0;
        background: #1c4273;
    }
    .oemBox1 .conBox .item.it5 .no{
        right: -60px;
    }
    .oemBox1 .conBox .item.it5 .no:before{
        height: 208px;
    }
    .oemBox1 .conBox .item.it5 .no:after{
        bottom: -111px;
        width: 80px;
        top: auto;
    }
    .oemBox2{
        padding-bottom: 30px;
    }
    .oemBox2 .itemBox{
        margin: 0 -5px;
    }
    .oemBox2 .item{
        padding: 0 5px;
        margin-bottom: 10px;
    }
    .oemBox2 .item:before{
        display: none;
    }
    .oemBox2 .item span{
        font-size: 20px;
    }

    .aboutBox1 .conBox .text{
        width: 100%;
        padding-left: 0;
    }
    .aboutBox1 .conBox .text:before{
        display: none;
    }
    .aboutBox1 .conBox .img{
        width: 100%;
        text-align: center;
        line-height: 0;
        padding-top: 20px;
        padding-left: 0;
    }
    .aboutBox2 .item{
        width: 50%;
        margin-bottom: 15px;
    }
    .aboutBox2 .item:last-child{
        width: 100%;
    }

    .contactBox1{
        overflow: hidden;
    }
    .contactBox1 .conBox{
        flex-wrap: wrap;
        margin-top: 30px;
    }
    .contactBox1 .conBox .title{
        width: 100%;
        padding: 30px 10px;
        text-align: center;
    }
}
@media (max-width: 767px){
    #back_top{
        width: 0;
        height: 0;
        overflow: hidden;
    }

    .indexBox1{
        height: 300px;
    }
    .indexBox1 .title{
        margin-top: -36px;
        left: 0;
        right: 0;
    }
    .indexBox1 .title h2{
        font-size: 30px;
        text-align: center;
    }
    .indexBox2 .indexBtnBox{
        padding-bottom: 15px;
    }
    .indexBox2 .indexBtnBox .btn span{
        display: none;
    }
    .indexBox2 .indexBtnBox .btn em{
        font-size: 44px;
    }
    .indexBox2 .indexSwitchBox .switch .text{
        width: 100%;
        padding: 0 0 20px;
    }
    .indexBox2 .indexSwitchBox .switch .img{
        width: 100%;
    }

    .indexBox4 .title{
        padding: 100px 0 50px;
    }
    .indexBox4 .indexCustomerSlick .slick_first{
        margin-left: 0;
        margin-right: 0;
    }
    .indexBox4 .indexCustomerSlick .bot{
        padding: 15px;
    }
    .footer_box .footerOther p a{
        display: block;
        margin: 10px auto 0;
    }

    .productBox2 ul li{
        width: 50%;
    }
    .productBox3 .item,
    .productBox4 .item{
        width: 33.33%;
    }
    .productBox4 .item .conBox .text{
        padding: 10px;
    }

    .oemBox1 .conBox{
        padding-left: 20px;
    }
    .oemBox1 .conBox .item.it5{
        background: none;
    }
    .oemBox1 .conBox .item.it5 p{
        display: inline-block;
        background: #1c4273;
        padding: 15px;
        margin-top: -15px;
        margin-left: 42px;
    }
    .oemBox1 .conBox .item.it5 .yes{
        width: 95%;
    }
    .oemBox1 .conBox .item.it5 .yes:before{
        height: 90px;
    }
    .oemBox2 .item{
        width: 50%;
    }

    .aboutBox4 .item{
        width: 50%;
        flex-direction: column;
        margin-bottom: 10px;
    }
}
@media (max-width: 640px){
    .footer_box .fast_navigation .itemBox{
        flex-wrap: wrap;
    }
    .footer_box .fast_navigation .item:nth-of-type(2),
    .footer_box .fast_navigation .item:nth-of-type(3){
        width: 100%;
    }
    .footer_box .fast_navigation .item:nth-of-type(3){
        margin-top: 30px;
    }
    .contactBox1 .conBox .text{
        padding: 10px 20px;
    }
    .contactBox2 .conBox form{
        padding-bottom: 0;
    }
    .contactBox2 .conBox .info{
        width: 100%;
    }
}
@media (max-width: 540px){
    .productBox3 .item,
    .productBox4 .item{
        width: 50%;
    }
    .oemBox1 .conBox .itemBox{
        -webkit-transform: scale(0.9);
        -moz-transform: scale(0.9);
        -ms-transform: scale(0.9);
        -o-transform: scale(0.9);
        transform: scale(0.9);
        margin-top: -60px;
    }
    .oemBox1 .conBox .item.it12{
        margin-bottom: 0;
    }

    .aboutBox2 .item{
        width: 100%;
    }
}
@media (max-width: 480px){
}