html, body{
    overflow: auto;
    min-height: 100%;
}
body{
    position: relative;
    font-family: "Microsoft YaHei";
    overflow: hidden;
    min-width: 1024px;
    overflow-x: auto;
    background-color: black;
}
a:hover, a:focus{
    text-decoration: none;
}
ul,li,menu{
    margin: 0;
    padding: 0;
    list-style: none;
}
select {
    /*Chrome和Firefox里面的边框是不一样的，所以复写了一下*/
    border: none;
    background: none;
    box-shadow: none;
    /*很关键：将默认的select选择框样式清除*/
    appearance:none;
    -moz-appearance:none;
    -webkit-appearance:none;
    /*为下拉小箭头留出一点位置，避免被文字覆盖*/
    padding-right: 40px;
}
/*清除ie的默认选择框样式清除，隐藏下拉箭头*/
select::-ms-expand { display: none; }
*{
    -webit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    text-decoration: none;
}
a:focus{
    outline:none;
    -moz-outline:none;
}
::-moz-focus-inner{
    border:0;
}
.fs16{
    font-size: 16px;
}
.fs20{
    font-size: 20px;
}
.width100{
    width: 100%;
}
.mr10{
    margin-right: 10px;
}
.mr20{
    margin-right: 20px;
}
.mb20{
    margin-bottom: 20px;
}
.animate, .animate *{
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.green{
    color: #73b49e;
}
/*Components Styles*/
[class^='icon-']{
    display: inline-block;
    background: url("../images/icon.png") 0 0;
}
.icon-index{
    background-position: 0 -930px;
    width: 33px;
    height: 29px;
}
.icon-menu{
    background-position: 0 -315px;
    width: 29px;
    height: 25px;
}
.icon-news{
    background-position: 0 -385px;
    width: 30px;
    height: 25px;
}
.icon-tools{
    background-position: 0 -590px;
    width: 27px;
    height: 26px;
}
.icon-shopping{
    background-position: 0 -525px;
    width: 30px;
    height: 25px;
}
.icon-address{
    background-position: 0 -820px;
    width: 18px;
    height: 25px;
}
.icon-jd{
    background-position: 0 -890px;
    width: 40px;
    height: 25px;
}
.menu .icon-item.active .icon-address, .menu .icon-item a:hover .icon-address{
    background-position: 0 -780px;
}
.menu .icon-item.active .icon-jd, .menu .icon-item a:hover .icon-jd{
    background-position: 0 -855px;
}
.icon-online{
    background-position: 0 -455px;
    width: 23px;
    height: 25px;
}
.icon-delink{
    background-position: 0 -180px;
    width: 25px;
    height: 18px;
}
.icon-cursor{
    background-position: 0 -90px;
    width: 40px;
    height: 59px;
}
.icon-wechat{
    width: 32px;
    height: 25px;
    background-position: 0 -630px;
}
.icon-weibo{
    width: 28px;
    height: 26px;
    background-position: 0 -700px;
}
.icon-facebook{
    width: 26px;
    height: 25px;
    background-position: 0 -210px;
}
.icon-more{
    width: 7px;
    height: 12px;
    background-position: 0 -70px;
}
.icon-arrow-solid{
    width: 9px;
    height: 18px;
    background-position: 0 -45px;
}
.icon-arrow-long{
    width: 28px;
    height: 15px;
    background-position: 0 -25px;
}
.icon-close-gray{
    width: 41px;
    height: 41px;
    background: url("../images/icon-other.png") 0 0;
}
.btn-link{
    display: inline-block;
    padding: 0 55px 0 18px;
    line-height: 50px;
    border: 1px solid white;
    position: relative;
    color: white;
    transition: all 0s;
}
.btn-link:hover, .btn-link:focus{
    text-decoration: none;
    border: 2px solid white;
    padding: 0 54px 0 17px;
    line-height: 48px;
}
.btn-link .icon-arrow-solid{
    position: absolute;
    right: 13px;
    top: 17px;
}
.btn-link.black{
    color: black;
    border-color: black;
}
.btn-link.black .icon-arrow-solid{
    background-position: 0 0;
}

/*logo Style*/
.logo{
    position: fixed;
    right: 45px;
    top: 0;
    z-index: 10;
    opacity: 0;
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -ms-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
}
.logo img{
    /*width: 10.4%;*/
    /*min-width: 150px;*/
}
.init .logo{
    opacity: 0.9;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}
.init .logo:hover{
    opacity: 1;
    -webkit-animation: turn 0.3s ease-in;
    -moz-animation: turn 0.3s ease-in;
    -ms-animation: turn 0.3s ease-in;
    -o-animation: turn 0.3s ease-in;
    animation: turn 0.3s ease-in;
}
@-webkit-keyframes turn {
    0% {-webkit-transform: scale(1);}
    60% {-webkit-transform: scale(1.1);}
    100% {-webkit-transform: scale(1);}
}
@-moz-keyframes turn {
    0% {-moz-transform: scale(1);}
    60% {-moz-transform: scale(1.1);}
    100% {-moz-transform: scale(1);}
}
@-ms-keyframes turn {
    0% {-ms-transform: scale(1);}
    60% {-ms-transform: scale(1.1);}
    100% {-ms-transform: scale(1);}
}
@-o-keyframes turn {
    0% {-o-transform: scale(1);}
    60% {-o-transform: scale(1.1);}
    100% {-o-transform: scale(1);}
}
@keyframes turn {
    0% {transform: scale(1);}
    60% {transform: scale(1.1);}
    100% {transform: scale(1);}
}
/*slider dots Style*/
.slider-dots{
    position: fixed;
    right: 45px;
    top: 50%;
    width: 24px;
    height: auto;
    z-index: 10;
}
.slider-dots .dot{
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: white;
    margin: 5px;
    float: left;
    overflow: hidden;
}
.slider-dots .dot:hover{
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
    transform: scale(1.3);
}
.slider-dots .current, .slider-dots .current:hover{
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: none;
    border: 2px solid white;
    margin: 5px 0;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}
/*Cursor Style*/
.cursor{
    z-index: 10;
    position: fixed;
    bottom: 15px;
    left: 50%;
    margin-left: -20px;
    -webkit-animation: slideDown 1.4s ease-out infinite;
    -moz-animation: slideDown 1.4s ease-out infinite;
    -ms-animation: slideDown 1.4s ease-out infinite;
    -o-animation: slideDown 1.4s ease-out infinite;
    animation: slideDown 1.4s ease-out infinite;
}
@-webkit-keyframes slideDown {
    0% { -webkit-transform: translateY(0); }
    100% { -webkit-transform: translateY(5px); }
}
@-moz-keyframes slideDown {
    0% { -moz-transform: translateY(0); }
    100% { -moz-transform: translateY(5px); }
}
@-ms-keyframes slideDown {
    0% { -ms-transform: translateY(0); }
    100% { -ms-transform: translateY(5px); }
}
@-o-keyframes slideDown {
    0% { -o-transform: translateY(0); }
    100% { -o-transform: translateY(5px); }
}
@keyframes slideDown {
    0% { transform: translateY(0); }
    100% { transform: translateY(5px); }
}
/*Menu Styles*/
.menu{
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 70px;
    margin: 0;
    padding: 0;
    z-index: 100;
    min-height: 600px;
    /*overflow-y: scroll;*/
}
.menu:before, .menu:after{
    display: none;
}
.menu a{
    display: block;
}
.step1{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 70px;
    background-color: black;
    color: white;
    z-index: 10;
    min-height: 600px;
}
/*Top Menu*/
.menu .top-items{
    position: absolute;
    top: 0;
    left: 0;
    width: 70px;
    text-align: center;
}
.menu .top-items .step1-item{
    width: 70px;
    height: 70px;
    position: relative;
}
.menu .top-items a{
    color: white;
    display: block;
    font-size: 12px;
}
.menu .top-items .item-text{
    display: block;
}
/*Top Menu Step1*/
.step1-menu, .step1-menu > a, .step1-menu > .next-step{
    background-color: #0f3363;
}
.step1-news{
    background-color: #f79328;
}
.step1-tools, .step1-tools > a, .step1-tools > .next-step{
    background-color: #a91f3a;
}
.step1-shopping, .step1-shopping > a, .step1-shopping > .next-step{
    background-color: #54a486;
}
.step1-online{
    background-color: #7b1e60;
}
.step1-delink{
    background-color: #b48d55;
}
.menu .step1-item > a, .menu .icon-item > a{
    width: 70px;
    height: 70px;
    display: block;
    box-sizing: border-box;
    padding: 14px 0 0;
    position: relative;
    z-index: 10;
}
.menu .step1-item > a .item-icon, .menu .icon-item > a .item-icon {
    margin: 0 auto;
    display: block;
}
.menu .step1-item > a .item-text, .menu .icon-item > a .item-text{
    opacity: 0.7;
    line-height: 100%;
    margin-top: 5px;
}
.menu .step1-item.active > a .item-icon, .menu .step1-item:hover > a .item-icon,
.menu .icon-item.active > a .item-icon, .menu .icon-item:hover > a .item-icon {
    -webkit-transform: translateY(-3px);
    -moz-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    -o-transform: translateY(-3px);
    transform: translateY(-3px);
}
.menu .step1-item.active > a .item-text, .menu .step1-item:hover > a .item-text,
.menu .icon-item.active > a .item-text, .menu .icon-item:hover > a .item-text {
    -webkit-transform: translateY(3px);
    -moz-transform: translateY(3px);
    -ms-transform: translateY(3px);
    -o-transform: translateY(3px);
    transform: translateY(3px);
}
.menu .step1-item.active > a .item-text, .menu .icon-item.active > a .item-text{
    opacity: 1;
}
.menu [class^="icon-"]{
    -webit-transition: transform 0.3s;
    -moz-transition: transform 0.3s;
    -ms-transition: transform 0.3s;
    -o-transition: transform 0.3s;
    transition: transform 0.3s;
}
.menu .step1-item.active .icon-menu{
    background-position: 0 -970px;
}
.menu .step1-item.active .icon-menu{
    background-position: 0 -280px;
}
.menu .step1-item.active .icon-tools{
    background-position: 0 -555px;
}
.menu .step1-item.active .icon-news{
    background-position: 0 -350px;
}
.menu .step1-item.active .icon-shopping{
    background-position: 0 -490px;
}
.menu .step1-item.active .icon-online{
    background-position: 0 -420px;
}
.menu .step1-item.active .icon-delink{
    background-position: 0 -155px;
}
.step1-item .next-step{
    position: absolute;
    left: 100%;
    top: 0;
    line-height: 70px;
    min-width: 50px;
    height: 70px;
    z-index: -1;
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
}
.step2-item{
    float: left;
}
.step2-item .item-cover{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0,0,0);
    z-index: 10;
    opacity: 0;
}
.step2-item.unActive > .item-cover{
    opacity: 0.5;
}
.step1{
    z-index: 50;
}
.step2{
    z-index: 5;
}
.step3{
    z-index: 1;
}
/*Top Menu Step2*/
.step1-item.active > .next-step{
    opacity: 1;
    display: block;
    z-index: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
}
.step1-item.active .step2-items{
    background: url("../images/white-line.png") repeat-y 0 0;
    height: 70px;
    padding: 0 10px;
}
.step1-item.active .step2-item{
    margin: 0 10px;
}
.step1-item.active .icon-item{
    margin: 0;
}
/*Top Menu menu-Step2*/
.step2-menu, .step3-menu{
    position: absolute;
    left: 70px;
    top: 0;
    bottom: 0;
    height: 100%;
    color: white;
    width: 240px;
    -webkit-transform: translateX(-480px);
    -moz-transform: translateX(-480px);
    -ms-transform: translateX(-480px);
    -o-transform: translateX(-480px);
    transform: translateX(-480px);
}
.step3-menu{
    left: 310px;
}
.step2-menu{
    background: black;
}
.step2-cover{
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    display: none;
    background-color: rgba(0,0,0,.5);
}
.menu.open .step2-cover{
    display: block;
}
.step2-menu .step2-items{
    padding: 0;
}
.step2-menu .step2-item{
    width: 240px;
    height: 105px;
    margin: 0;
    position: relative;
}
.menu.open .step2-menu, .menu.open .step3-menu.active{
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
}
.step2-menu a, .step3-menu a{
    color: white;
}
.step2-menu .step2-item .item-text{
    position: absolute;
    top: 34px;
    right: 20px;
    line-height: 100%;
    font-size: 15px;
}
.step2-item:hover .item-text, .step2-item.active .item-text{
    -webkit-transform: translateY(-3px);
    -moz-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    -o-transform: translateY(-3px);
    transform: translateY(-3px);
}
.step2-item:hover .item-icon, .step2-item.active .item-icon{
    -webkit-transform: translateY(3px);
    -moz-transform: translateY(3px);
    -ms-transform: translateY(3px);
    -o-transform: translateY(3px);
    transform: translateY(3px);
}
.step2-menu .item-icon{
    position: absolute;
    bottom: 34px;
    right: 20px;
}
.step2-menu img{
    width: 240px;
    height: 105px;
}
/*Top Menu menu-Step3*/
.step3-brand{
    background-color: #007bb6;
}
.step3-product{
    background-color: #8dc3b0;
}
.step3-tech{
    background-color: #ec5161;
}
.step3-items{
    display: none;
    padding-top: 20px;
    position: relative;
    height: 100%;
}
.step3-items.active{
    display: block;
}
.step3-item{
    position: relative;
}
.step3-item a{
    line-height: 60px;
    padding-left: 60px;
    text-align: left;
    position: relative;
    z-index: 10;
}
.step3-item .item-cover{
    background-color: rgba(255,255,255,.3);
    position: absolute;
    width: 240px;
    height: 60px;
    top: 0;
    left: 0;
    display: block;
    opacity: 0;
}
.step3-item.active .item-cover, .step3-item:hover .item-cover{
    opacity: 1;
}
/*.step3-item-cover{*/
/*position: absolute;*/
/*width: 240px;*/
/*height: 60px;*/
/*top: 20px;*/
/*left: 0;*/
/*background-color: rgba(255,255,255,.2);*/
/*transition: all 0.4s ease;*/
/*}*/

/*Bottom Menu*/
.menu .bottom-items{
    position: absolute;
    width: 70px;
    bottom: 70px;
    text-align: center;
    left: 0;
}

.menu .bottom-items .menu-item{
    margin-top: 12px;
    margin-bottom: 12px;
    position: relative;
}
.menu .bottom-items .menu-item .erweima{
    position: absolute;
    left: 70px;
    bottom: 0;
    opacity: 0;
    display: none;
}
.menu .bottom-items .menu-item a{
    width: 35px;
    margin: 0 auto;
}
.menu .bottom-items .menu-item a:hover .erweima{
    opacity: 1;
    display: block;
}
.hover-light{
    opacity: 0.6;
}
.hover-light:hover{
    opacity: 1;
}
.next-item{
    display: none;
}
.step1-item{
    width: 70px;
    height: 70px;
}
/*Page Slide*/
.slider-item{
    margin: 0;
    width: 100%;
    min-width: 1024px;
    position: relative;
    overflow: hidden;
    display: none;
}
.slider-bg, .slider-content{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}
.slider-bg{
    background: no-repeat 50% 0;
    background-size: auto 100%;
}
.slider-content{
    position: absolute;
    left: 160px;
    right:  90px;
    top: 80px;
    width: auto;
    height: auto;
    color: white;
}
/*.slider-title, .slider-subTitle, .slider-detail, .slider-content .btn-link{*/
/*position: absolute;*/
/*left: 160px;*/
/*top: 80px;*/
/*color: white;*/
/*}*/
.slider-title{
    font-size: 50px;
    line-height: 50px;
    color: white;
}
.slider-subTitle{
    font-size: 40px;
    line-height: 50px;
    color: white;
    /*top: 140px;*/
}
.slider-detail{
    font-size: 18px;
    /*top: 200px;*/
    line-height: 32px;
    width: 440px;
    margin-top: 10px;
}
.slider-pic{
    margin-top: 20px;
    width: 100%;
}
.slider-pic img{
    max-width: 100%;
}
.slider-content .btn-link{
    /*top: auto;*/
    /*bottom: 100px;*/
    margin-top: 30px;
    font-size: 20px;
    color: white;
}
.slider-content .btn-link.black{
    color: black;
}
.slider-subItems{
    width: 100%;
    left: 0;
    bottom: 90px;
    position: absolute;
}
.slider-subItems .subItem{
    width: 25%;
    height: 100%;
    position: relative;
    overflow: hidden;
    float: left;
    margin-bottom: 10px;
    padding-right: 10px;
    box-sizing: border-box;
    max-width: 279px;
}
.slider-subItems .subItem > a{
    display: block;
    position: relative;
    width: 100%;
}
.slider-subItems .subItem img{
    width: 100%;
}
.subItem .subItem-tip{
    line-height: 26px;
    padding-left: 16px;
    color: white;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 27px;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.subItem .tip-cover{
    background-color: #000;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.subItem.active .tip-cover, .subItem:hover .tip-cover{
    opacity: 0.5;
}
.subItem.active .subItem-tip, .subItem:hover .subItem-tip{
    height: 100%;
}
.subItem.active .tip-wrap, .subItem:hover .tip-wrap{
    margin-top: 23%;
}
.subItem .tip-wrap, .subItem .icons-wrap{
    position: relative;
    z-index: 10;
}
/*Scroll Styles*/
.animate-element{
    -webkit-transition: all 0.6s 0.1s;
    -moz-transition: all 0.6s 0.1s;
    -ms-transition: all 0.6s 0.1s;
    -o-transition: all 0.6s 0.1s;
    transition: all 0.6s 0.1s;
}
.animate-element.delay{
    -webkit-transition-delay: 0.7s;
    -moz-transition-delay: 0.7s;
    -ms-transition-delay: 0.7s;
    -o-transition-delay: 0.7s;
    transition-delay: 0.7s;
}
.animate-element.delaydelay{
    -webkit-transition-delay: 1.0s;
    -moz-transition-delay: 1.0s;
    -ms-transition-delay: 1.0s;
    -o-transition-delay: 1.0s;
    transition-delay: 1.0s;
}
.turn-big{
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 3s 0.1s;
    -moz-transition: all 3s 0.1s;
    -ms-transition: all 3s 0.1s;
    -o-transition: all 3s 0.1s;
    transition: all 3s 0.1s;
}
.current .turn-big{
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
    -webkit-transition: all 20s 0.1s;
    -moz-transition: all 20s 0.1s;
    -ms-transition: all 20s 0.1s;
    -o-transition: all 20s 0.1s;
    transition: all 20s 0.1s;
}
.fly-in-left{
    -webkit-transform: translateX(-1900px);
    -moz-transform: translateX(-1900px);
    -ms-transform: translateX(-1900px);
    -o-transform: translateX(-1900px);
    transform: translateX(-1900px);
}
.current .fly-in-left{
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
}
.fly-in-right{
    -webkit-transform: translateX(1900px);
    -moz-transform: translateX(1900px);
    -ms-transform: translateX(1900px);
    -o-transform: translateX(1900px);
    transform: translateX(1900px);
}
.current .fly-in-right{
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
}
.fly-in-bottom{
    -webkit-transform: translateY(1200px);
    -moz-transform: translateY(1200px);
    -ms-transform: translateY(1200px);
    -o-transform: translateY(1200px);
    transform: translateY(1200px);
}
.current .fly-in-bottom{
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}
.fade-in{
    opacity: 0;
}
.current .fade-in{
    opacity: 1;
}

@media screen and (max-height: 680px){
    .menu .bottom-items{
        bottom: 0;
    }
    .slider-bg{
        background-size: 100% auto;
    }
    .slider-pic img{
        width: 80%;
    }
}

/*
 Styles for news
 */
/* News list Page */
.main{
    padding-left: 70px;
    padding-bottom: 150px;
    font-size: 12px;
}
.news-banner{
    width: 100%;
    height: 70px;
    line-height: 70px;
    color: white;
    background: url('../images/news/list-banner.png') no-repeat 50% 0;
    background-size: 100% 100%;
    text-align: center;
    font-size: 36px;
}
.news-types .news-types-inner{
    background-color: #f7f5f6;
    padding: 10px 15px;
}
.types-box{
    line-height: 30px;
    margin-bottom: 5px;
}
.types-box:last-child{
    margin: 0;
}
.title{
    float: left;
    margin-right: 30px;
}
.types-box .types{
    padding-left: 80px;
}
.types .type{
    margin-right: 20px;
    margin-bottom: 10px;
    display: inline-block;
    padding: 0 10px;
    cursor: pointer;
}
.types .type .icon-unselected{
    display: none;
    vertical-align: -1px;
    margin-left: 5px;
}
.types .type.selected, .types .type:hover{
    background-color: #f89329;
    color: white;
}
.types .type.selected .icon-unselected{
    display: inline-block;
}
.types .type.gy{
    color: #aace48;
}
.types .type.gy.selected, .types .type.gy:hover{
    color: white;
    background-color: #aace48;
}
.types .type.mj{
    color: #eb7dbc;
}
.types .type.mj.selected, .types .type.mj:hover{
    color: white;
    background-color: #eb7dbc;
}
.types .type.fg{
    color: #6f9ccd;
}
.types .type.fg.selected, .types .type.fg:hover{
    color: white;
    background-color: #6f9ccd;
}
.types .type.hot{
    color: #f89329;
}
.types .type.hot.selected, .types .type.hot:hover{
    color: white;
    background-color: #f89329;
}
.news-types{
    position: relative;
    background-color: #f7f5f6;
}
.search-box{
    overflow: hidden;
    width: 30%;
    position: absolute;
    right: 15px;
    top: 10px;
}
.search-box .search-input{
    width: 85%;
    float: left;
    line-height: 20px;
    border: 2px solid #f79328;
    padding: 3px 10px;
    background: none;
    display: block;
}
.search-box .btn-search{
    background: url('../images/news/icon-search.png') no-repeat 50% 50% #f79328;
    width: 15%;
    height: 30px;
    text-align: center;
    display: block;
    float: right;
    border: none;
}
.news-lists{
    width: 100%;
    overflow: hidden;
}
.news-lists .list{
    display: block;
    position: relative;
    background-size: 100% 100%;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}
.news-lists .list-box-4 .list{
    background-size: auto 100%;
}
.list-box{
    width: 50%;
    overflow: hidden;
    position: relative;
    float: left;
}
.list-box-4{
    width: 25%;
}
.list-box img{
    width: 100%;
    height: auto;
}
.list-box .cover, .list-box .news-detail, .list-box .news-detail-bg{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}
.list-box .news-detail-bg{
    height: 200%;
    transform: translateY(50%);
}
.list-box .cover{
    background-color: black;
    opacity: 0;
}
.list-box:hover .cover{
    opacity: 0.5;
}
.list-box .news-detail > div{
    position: relative;
    z-index: 1;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.list-box .news-detail .news-detail-bg{
    position: absolute;
    z-index: 0;
}
.list-box-gy .news-detail-bg{
    background-color: #a9cd45;
}
.list-box-mj .news-detail-bg{
    background-color: #eb7dbc;
}
.list-box-fg .news-detail-bg{
    background-color: #6d9bcf;
}
.list-box:hover .news-detail-bg{
    opacity: 0;
}
.list-box:hover .news-detail{
    transform: translateY(-30px);
    transition: transform 0.2s;
}
.list-box .news-detail{
    color: white;
    height: 70px;
    padding: 10px 20px;
    line-height: 26px;
}

.icon-time{
    background: url('../images/news/icon-time.png') no-repeat 0 0;
    width: 17px;
    height: 17px;
    vertical-align: -3px;
    margin-right: 10px;
}
.icon-detail{
    background: url('../images/news/icon-detail.png') no-repeat 0 0;
    width: 28px;
    height: 16px;
    vertical-align: -3px;
    margin-left: 20px;
}
.icon-close-type{
    background: url('../images/news/icon-close-type.png') no-repeat 0 0;
    width: 17px;
    height: 10px;
    background-size: 100%;
    margin-right: 5px;
}
.icon-unselected{
    background: url('../images/news/icon-unselected.png') no-repeat 0 0;
    width: 9px;
    height: 9px;
    background-size: 100%;
}
/* News detail Page */
.chapter-main{
    background-color: white;
    font-size: 12px;
}
.chapter-banner{
    padding: 25px 0 20px;
    text-align: center;
}
.chapter-title{
    font-size: 36px;
    margin-bottom: 15px;
}
.chapter-info{
    color: #ccc;
}
.chapter-slide{
    width: 100%;
    overflow: hidden;
    background: url('../images/news/detail-img-bg.png') no-repeat 0 0;
    background-size: 100% 100%;
}
.slide-inner, .about-inner{
    width: 1080px;
    margin: 0 auto;
}
.chapter-detail{
    position: relative;
}
.chapter-detail .detail-inner{
    width: 700px;
    margin: 0 auto;
    overflow: hidden;
    color: #666666;
    padding: 25px 0;
}
.chapter-detail .detail-inner img{
    margin: 10px 0;
    max-width: 100%;
}
.chapter-about{
    width: 100%;
    overflow: hidden;
}
.chapter-about .about-inner{
    border-top: 1px solid #ccc;
}
.chapter-about .types-list{
    width: 50%;
    float: left;
}
.chapter-about .types-title{
    margin: 15px 0;
}
.chapter-about .chapter-type{
    padding: 0 5px;
    display: inline-block;
    color: #f79328;
    cursor: pointer;
    margin-right: 10px;
    margin-bottom: 10px;
}
.chapter-about .chapter-type:hover,
.chapter-about .chapter-type.selected{
    color: white;
    background-color: #f79328;
}
.chapter-about .chapter-type i{
    margin-left: 5px;
    vertical-align: -1px;
    display: none;
}
.chapter-about .chapter-type.selected i{
    display: inline-block;
}
.chapter-about .tag-list  .chapter-type{
    padding: 0;
}
.chapter-about .chapter-addmark{
    width: 100px;
    text-align: center;
    border: 1px solid #f79328;
}
.chapter-about .chapter-addmark.selected{
    color: white;
    background-color: #f79328;
}
.pagination{
    display: block;
    text-align: center;
    clear: both;
    overflow: hidden;
    width: 100%;
    padding: 30px;
    margin: 0;
    line-height: 36px;
}
.pagination .page{
    display: inline-block;
}
.page-input{
    width: 46px;
    height: 36px;
    border: 1px solid #ccc;
    text-align: center;
}
.page-submit{
    width: 46px;
    height: 36px;
    background: #e5e5e5;
    border: 1px solid #e5e5e5;
    vertical-align: -3px;
}
.page-prev, .page-next{
    width: 10px;
    height: 19px;
    display: inline-block;
    margin: 0 10px;
    vertical-align: -9px;
}
.page-prev{
    background: url("../images/news/icon-prev.png") no-repeat 0 0;
    background-size: 100%;
}
.page-next{
    background: url("../images/news/icon-next.png") no-repeat 0 0;
    background-size: 100%;
}
.pagination-white span{
    color: white;
}
.pagination-white .page-prev{
    background: url("../images/news/icon-prev-white.png") no-repeat 0 0;
}
.pagination-white .page-next{
    background: url("../images/news/icon-next-white.png") no-repeat 0 0;
}

/*baid share*/
.bdsharebuttonbox{
    display: inline-block;
    vertical-align: -23px;
}
/* .bdshare-button-style0-16 a{
    width: 44px;
    height: 44px;
    box-sizing: border-box;
}
.bdshare-button-style0-16 .bds_more{
    width: 44px;
    height: 44px;
    box-sizing: border-box;
    background: url("../images/news/share-more.png") no-repeat 50% 50%;
}
.bdshare-button-style0-16 .bds_qzone{
    width: 44px;
    height: 44px;
    box-sizing: border-box;
    background: url("../images/news/share-qzone.png") no-repeat 50% 50%;
}
.bdshare-button-style0-16 .bds_tsina{
    width: 44px;
    height: 44px;
    box-sizing: border-box;
    background: url("../images/news/share-weibo.png") no-repeat 50% 50%;
}
.bdshare-button-style0-16 .bds_tqq{
    width: 44px;
    height: 44px;
    box-sizing: border-box;
    background: url("../images/news/share-pyq.png") no-repeat 50% 50%;
}
.bdshare-button-style0-16 .bds_weixin{
    width: 44px;
    height: 44px;
    box-sizing: border-box;
    background: url("../images/news/share-wx.png") no-repeat 50% 50%;
} */

/*
 Styles for Product
 */
/* Product list Page */
.product-body{
    background-color: white;
}
.product-classify{
    border-bottom: 1px solid black;
    padding: 20px 0 5px;
}
.product-classify .product-classify-inner{
    width: 1246px;
    margin: 0 auto;
    position: relative;
}
.product-classify .title{
    color: #73b49e;
    font-size: 20px;
}
.product-classify .types{
    padding-left: 70px;
}
.product-classify .types .type{
    border: 1px solid #73b49e;
    line-height: 28px;
    font-size: 14px;
}
.product-classify .types .type.selected, .product-classify .types .type:hover{
    background-color: #73b49e;
}
.product-search-box .btn-search{
    background-color: #73b49e;
}
.product-search-box .search-input{
    border-color: #73b49e;
    padding: 6px 10px;
}
.product-search-box{
    overflow: hidden;
    width: 30%;
    position: absolute;
    right: 0;
    top: -5px;
    font-size: 14px;
}
.product-search-box .btn-search{
    height: 36px;
}
.gray{
    color: #999999;
}
.black{
    color: black;
}
.blue{
    color: #73b49e;
}
.icon-hot{
    width: 10px;
    height: 14px;
    background: url("../images/product/icon-hot.png") no-repeat 0 0;
    display: inline-block;
}
.icon-collect{
    width: 11px;
    height: 11px;
    background: url("../images/product/icon-collect.png") no-repeat 0 0;
    display: inline-block;
}
.product-lists{
    width: 1246px;
    margin: 0 auto;
    padding: 25px 1px;
    overflow: hidden;
    position: relative;
}
.product-lists .list-box{
    width: 20%;
    line-height: 26px;
    border: 1px solid #ccc;
    position: relative;
    z-index: 1;
    margin-left: -1px;
    margin-top: -1px;
}
.product-lists .box-inner{
    padding: 10px 20px;
    margin: -1px;
    border: 1px solid #ccc;
}
.product-lists .list-box:hover{
    border-color: #73b49e;
    z-index: 10;
}
.product-lists .list-box .list{
    display: block;
    text-align: center;
}
.product-lists .list-box .product-info div{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    height: 26px;
}
.product-lists .product-info{
    border-bottom: 1px #ccc dashed;
    margin-bottom: 15px;
    padding-bottom: 10px;
    display: block;
}
.product-lists .product-opts{
    padding: 0 20px;
}
.product-lists .opts-box{
    display: flex;
}
.product-lists .product-opts .opt{
    flex: 1;
    font-size: 14px;
}
.product-lists .product-opts .btn-opt{
    border: 1px solid #73b49e;
    margin-bottom: 10px;
    color: #73b49e;
    cursor: pointer;
}
.product-lists .list-box .btn-opt:hover,
.product-lists .list-box .btn-opt.selected{
    color: white;
    background-color: #73b49e;
}
.product-lists .product-opts .opt [class^=icon]{
    margin-right: 8px;
}
/* Product Detail Page */
.product-breadcrumbs{
    background-color: #f2f2f2;
}
.breadcrumbs-inner{
    width: 1300px;
    margin: 0 auto;
    padding: 22px 0;
    line-height: 36px;
    position: relative;
    font-size: 14px;
}
.breadcrumbs-inner .search-box{
    top: 22px;
}
.breadcrumbs-box > *{
    color: #666666;
}
.breadcrumbs-box .active{
    color: #73b49e;
}
.detail-inner{
    width: 990px;
    margin: 0 auto;
    padding: 50px 0;
}
.product-intr{
    overflow: hidden;
    position: relative;
}
.product-more{
    margin-top: 45px;
}
.product-more img{
    max-width: 100%;
}
.product-intr .product-img{
    width: 420px;
    position: relative;
    float: left;
    border: 1px solid #73b49e;
}
.product-intr .product-img a{
    height: 418px;
    width: 418px;
    display: table-cell;
    text-align: center;
    vertical-align: middle;
}
.product-intr .product-img img{
    max-width: 418px;
    max-height: 418px;
}
.product-bigImg{
    position: absolute;
    left: 100%;
    top: 0;
    width: 100%;
    transform: translateX(10px);
    display: none;
}
.product-intr .product-bigImg img{
    width: auto;
}
.zoomDiv{
    z-index:999;
    position:absolute;
    top:0;
    left:0;
    width:420px;
    height:420px;
    background:#ffffff;
    border:1px solid #73b49e;
    display:none;
    text-align:center;
    overflow:hidden;
    margin-top: -1px;
}
.zoomMask{
    position:absolute;
    background:url("../images/mask.png") repeat scroll 0 0 transparent;
    cursor:move;
    z-index:1;
    -webit-transition: all 0s;
    -moz-transition: all 0s;
    -ms-transition: all 0;
    -o-transition: all 0s;
    transition: all 0s;
}
.icon-show{
    width: 17px;
    height: 18px;
    background: url("../images/product/icon-search-gray.png") no-repeat 0 0;
}
.product-intr .product-img .icon-show{
    position: absolute;
    right: 8px;
    bottom: 8px;
}
.product-text{
    /*width: 57.6%;*/
    width: 570px;
    padding-left: 40px;
    float: right;
}
.product-text .product-info{
    border-top: 1px solid #73b49e;
    border-bottom: 1px solid #73b49e;
    font-size: 18px;
    line-height: 36px;
    padding: 15px 0;
}
.btn-add{
    width: 100px;
    height: 36px;
    line-height: 36px;
    background-color: #73b49e;
    color: white;
    text-align: center;
    display: block;
    font-size: 14px;
    cursor: pointer;
}
.icons-box{
    margin-bottom: 20px;
    overflow: hidden;
}
.icons-box .product-icon{
    float: left;
    margin-right: 10px;
    text-align: center;
}
.product-text .btn-box{
    padding-bottom: 15px;
    border-bottom: 1px solid #73b49e;
}
.attribute-box{
    font-size: 16px;
    overflow: hidden;
    line-height: 26px;
    padding: 18px 0 18px;
}
.attribute-box > div{
    width: 50%;
    float: left;
}

/*Reset Modal*/
.modal{
    top: 140px;
}
.modal-dialog{
    width: 1080px;
}
@media (min-width: 1200px){
    .modal-dialog {
        width: 1080px;
    }
}
@media (max-width: 1200px){
    .modal-dialog {
        width: 600px;
    }
}
.modal-backdrop{
    top: 140px;
    background-color: #e5e5e5;
    opacity: 0.95;
}
.modal .close{
    position: absolute;
    right: -80px;
    top: 0;
    opacity: 0.9;
}
.modal-content, .modal-body{
    padding: 0;
    border: none;
    box-shadow: none;
    border-radius: 0;
}
.modal-content img{
    max-width: 100%;
}
/*QA Styles*/
.page-white{
    background-color: white;
    font-size: 14px;
    background: url("../images/page-bottom.jpg") no-repeat 0 bottom;
    background-size: 100% auto;
    padding-bottom: 100px;
    min-height: 100%;
    position: relative;
}
.page-white.has-pagetip{
    padding-bottom: 150px;
}
.page-tip{
    line-height: 34px;
    padding: 0 0 30px;
    font-size: 14px;
    position: absolute;
    bottom: 50px;
    left: 105px;
}
.main-banner{
    width: 100%;
    height: 70px;
    line-height: 70px;
    color: white;
    background: url('../images/other/qa-top-bg.jpg') no-repeat 50% 0;
    background-size: 100% 100%;
    text-align: center;
    font-size: 36px;
}
.qa-types{
    padding: 20px 30px 5px;
    background-color: #f7f7f7;
    font-size: 14px;
    position: relative;
}
.qa-types .types{
    padding-left: 120px;
}
.qa-types .search-box{
    right: 35px;
    top: 20px;
}
.qa-types .search-box .search-input{
    border: 2px solid #1b4e90;
    background-color: white;
}
.qa-types .search-box .btn-search{
    background-color: white;
    color: #1b4e90;
    border: 2px solid #1b4e90;
    border-left: none;
}
.qa-types .title{
    font-size: 20px;
    margin-right: 40px;
}
.qa-types .types .type{
    margin-right: 50px;
    padding: 0;
    background: none;
    color: black;
}
.qa-types .icon-checkbox{
    border: 1px solid #ccc;
    width: 18px;
    height: 18px;
    display: inline-block;
    margin-right: 10px;
    vertical-align: -5px;
    background: none;
}
.qa-types .selected .icon-checkbox{
    background: url('../images/other/icon-type-choose.png') no-repeat -1px -1px;
}
.qa-types .type:hover{
    font-weight: bold;
}
.qa-lists{
    padding: 30px 5px 0 35px;
    display: flex;
    margin-top: 140px;
}
.qa-lists .list-box{
    flex: 1;
    margin-right: 30px;
}
.qa-lists .list-box .list{
    cursor: pointer;
    margin-bottom: 30px;
    border: 1px solid white;
}
.qa-lists .list-box .list-inner{
    border: 1px solid #bfbfbf;
}
.qa-lists .list-box .list img{
    width: 100%;
    display: block;
    border-bottom: 1px solid #bfbfbf;
}
.qa-lists .list-box .list-detail{
    padding: 18px 10px 10px 15px;
    line-height: 24px;
    border-top: 1px solid #bfbfbf;
}
.qa-lists .list-box .list:hover,
.qa-lists .list-box .list:hover .list-inner,
.qa-lists .list-box .list:hover img,
.qa-lists .list-box .list:hover .list-detail{
    border-color: #1b4e90;
}
.qa-lists .qa-title{
    font-size: 16px;
    color: #54a486;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.qa-lists .qa-intr{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.modal .qa-detail{
    width: 64%;
    margin: 0 auto;
    padding: 30px 0;
}
@media (max-width: 1000px){
    .modal .qa-detail {
        width: 100%;
        padding: 0 30px;
    }
}
.modal .qa-img{
    width: 100%;
}
.modal .qa-detail-title{
    color: #54a486;
    font-size: 40px;
    margin-bottom: 30px;
}
.modal .qa-detail-author{
    color: #54a486;
    font-size: 14px;
    margin-bottom: 30px;
}
.fixed{
    position: fixed;
    top: 0;
    left: 70px;
    right: 0;
    background-color: white;
    z-index: 10;
}

/*Shop styles*/
.shop-banner{
    background: url('../images/other/shop-top-bg.jpg') no-repeat 50% 0;
}
.shop-main{
    width: 1260px;
    margin: 0 auto 80px;
    overflow: hidden;
}
.shop-main p{
    margin-bottom: 0;
}
.shop-lists{
    width: 470px;
    margin-right: 20px;
    margin-top: 30px;
}
.shop-select{
    display: flex;
}
.select-wrapper{
    flex: 1;
    margin-bottom: 20px;
    position: relative;
    font-size: 14px;
    margin-right: 20px;
}
.select-wrapper:last-child{
    margin-right: 0;
}
.select-wrapper > p{
    line-height: 30px;
    font-size: 16px;
}
.select-box{
    width: 100%;
    height: 52px;
    padding: 5px 0;
    border: 1px solid #c9c9c9;
    position: relative;
    margin: 0;
}
.select-box .select-inner{
    position: relative;
}
.select-box .select-input {
    /*width: 172px;*/
    width: 100%;
    height: 42px;
    padding: 0 10px;
    line-height: 24px;
    box-shadow: none;
    border: none;
    /*border-right: 1px solid #c9c9c9;*/
    border-radius: 0;
}
.select-box .icon-drop{
    display: block;
    width: 20px;
    height: 11px;
    background: url('../images/other/icon-bottom.png') no-repeat 0 0;
    position: absolute;
    right: 14px;
    top: 20px;
}
.select-wrapper ul{
    width: 100%;
    height: 260px;
    border: 1px solid #c9c9c9;
    position: absolute;
    top: 81px;
    left: 0;
    overflow-y: scroll;
    background-color: white;
    display: none;
    z-index: 10;
}
.select-wrapper ul li{
    line-height: 34px;
    padding: 0 10px;
}
.select-wrapper ul li:hover{
    background-color: #e5e5e5;
}
.select-wrapper:hover ul,
.select-wrapper:hover .select-box{
    border-color: #73b49e;
    display: block;
}
.select-wrapper ul li:hover .icon-drop{
    transform: rotateZ(180deg);
}
.shop-show{
    height: 493px;
    border: 1px solid #c9c9c9;
    overflow-y: scroll;
}
.shop-show .list-city{
    color: #73b49e;
    margin: 15px 25px 0;
    line-height: 30px;
    font-size: 16px;
    border-bottom: 1px solid #73b49e;
}
.shop-lists{
    float: left;
}
.shop-show .list{
    padding: 0 25px;
    line-height: 30px;
    cursor: pointer;
}
.shop-show .icon-number{
    width: 20px;
    height: 26px;
    background: url('../images/other/icon-number.png') no-repeat 0 0;
    text-align: center;
    font-style: normal;
    color: white;
    line-height: 20px;
    float: left;
    margin-top: 6px;
}
.shop-show .shop-info{
    margin-left: 30px;
    font-size: 14px;
}
.shop-show .shop-info p:first-child{
    color: #73b49e;
}
.shop-show .list .list-inner{
    padding: 15px 0 10px;
    border-bottom: 1px dashed #cdcdcd;
}
.shop-show .list:last-child .list-inner{
    border: none;
}
.shop-show .list:hover,
.shop-show .list.selected{
    background-color: #eeeeee;
}
.shop-map{
    float: right;
    border: 1px solid #c9c9c9;
    width: 770px;
    height: 565px;
    margin-top: 60px;
}
.shop-map .map-wrapper{
    position: relative;
    width: 100%;
    height: 100%;
}

/*Contact Styles*/
.btn-group{
    display: flex;
}
.btn-green{
    display: block;
    font-size: 20px;
    border: 1px solid #73b49e;
    color: #73b49e;
    line-height: 50px;
    text-align: center;
    cursor: pointer;
    background-color: white;
}
.btn-group .btn-green{
    flex: 1;
}
.btn-green:hover,
.btn-green.selected{
    background-color: #73b49e;
    color: white;
}
.contact-main .submit-result{
    padding: 150px 0;
}
.contact-main .submit-result p{
    margin-bottom: 35px;
}
.submit-result .btn-group{
    width: 590px;
    margin: 0 auto;
}
.submit-result .btn-group .btn-green:first-child{
    margin-right: 35px;
}
.contact-collect{
    width: 1200px;
    margin: 0 auto;
}
.contact-form{
    width: 680px;
    float: left;
}
.collect-lists{
    width: 500px;
    float: right;
}
.contact-collect .main-title{
    padding: 30px 0 20px;
    font-size: 20px;
    border-bottom: 1px solid #c9c9c9;
}
.form-tip{
    padding: 15px 0 10px;
    line-height: 18px;
    font-size: 16px;
    color: #666666;
    display: block;
    clear: both;
    width: 100%;
}
.form-tip span{
    margin-left: 5px;
    vertical-align: -3px;
    line-height: 10px;
}
.contact-form input{
    padding: 15px 10px;
    line-height: 22px;
    height: 54px;
    color: #666666;
    border: 1px solid #c9c9c9;
    -webkit-border-radius:0;
    -moz-border-radius:0;
    border-radius:0;
}
.contact-form input:focus{
    box-shadow: none;
    border-color: #73b49e;
}
.collect-lists .list-title{
    font-size: 20px;
    margin: 20px 0;
    border-left: 2px solid #73b49e;
    text-indent: 15px;
    line-height: 20px;
}
.collect-lists .list{
    overflow: hidden;
    border: 1px solid #c9c9c9;
    position: relative;
    margin-bottom: 10px;
}
.collect-lists .list-img{
    width: 238px;
    height: 58px;
    overflow: hidden;
    float: left;
}
.collect-lists .list-img img{
    width: 100%;
    height: auto;
}
.collect-lists .list-info{
    height: 58px;
    padding: 10px 10px 0 10px;
    margin-left: 238px;
    border-left: 1px solid #c9c9c9;
}
.collect-lists .list-info p{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    line-height: 16px;
    margin-bottom: 5px;
    margin-right: 13px;
}
.icon-remove-collect{
    width: 14px;
    height: 14px;
    position: absolute;
    right: 10px;
    top: 10px;
    background: url("../images/other/icon-close-gray-smaller.png") no-repeat 0 0;
    display: block;
    cursor: pointer;
}
.collect-lists .list:hover,
.collect-lists .list:hover .list-info{
    border-color: #73b49e;
    color: #73b49e;
}
.collect-lists .list:hover .icon-remove-collect{
    background-image: url("../images/other/icon-close-gray-smaller-hover.png");
}
.collect-lists .form-group{
    margin: 0;
}
.group-box{
    display: flex;
}
.form-group{
    flex: 1;
    margin-right: 20px;
    margin-bottom: 0;
}
.group-box .form-group:last-child{
    margin-right: 0;
}
.contact-form .btn-group .btn-green:nth-child(2){
    border-left: none;
}
.contact-form .select-wrapper ul{
    top: 50px;
}
.contact-form .select-wrapper{
    margin-bottom: 0;
}
.contact-form .btn-submit{
    width: 31.5%;
    margin: 60px auto 90px;
}
.contact-form .checkbox-group label{
    flex: 1;
    margin-right: 50px;
    margin-bottom: 0;
    line-height: 18px;
    position: relative;
    color: #333;
}
.contact-form .checkbox-group label:last-child{
    margin: 0;
}
.contact-form .checkbox-group .icon-checkbox{
    width: 18px;
    height: 18px;
    background: none;
    border: 1px solid #73b49e;
    margin-right: 12px;
    vertical-align: -5px;
}
.contact-form .selected .icon-checkbox{
    background: url("../images/other/icon-checkbox-selected.png") no-repeat 0 0;
}
.contact-form  .checkbox-group input[type="checkbox"]{
    display: block;
    width: 100%;
    height:100%;
    position: absolute;
    left: 0;
    top: 0;
    padding: 0;
    margin: 0;
    overflow: hidden;
    opacity: 0;
    cursor: pointer;
}
.shopAddress-box{
    margin: 15px 0 10px;
}

/*Tool Styles*/
.tool-main .icon-hot{
    background-image: url("../images/other/icon-hot.png");
}
.tool-main .icon-collect{
    width: 13px;
    height: 13px;
    background-image: url("../images/other/icon-collact.png");
    margin-right: 8px;
    vertical-align: -1px;
}
.tool-main .main-banner{
    background-image: url("../images/other/tools-top-bg.jpg");
}
.tool-main .search-box .search-input{
    padding: 6px 10px;
    border-color: #9c1675;
}
.tool-main .search-box .btn-search{
    height: 36px;
    background-color: #9c1675;
}
.tool-types{
    padding: 19px 65px;
    overflow: hidden;
    border-bottom: 1px solid #999999;
}
.tool-main .switch-box{
    width: 260px;
    float: left;
}
.btn-deep{
    width: 100%;
    line-height: 22px;
    height: 40px;
    padding: 8px 0;
    color: #9c1675;
    border: 1px solid #9c1675;
    border-right: none;
    text-align: center;
    display: inline-block;
    cursor: pointer;
}
.btn-group .btn-deep:last-child{
    border-right: 1px solid #9c1675;
}
.btn-deep:hover,
.btn-deep.selected{
    background-color: #9c1675;
    color: white;
}
.tool-main .btn-group{
    display: flex;
}
.tool-main .types-box{
    min-width: 600px;
    width: 36%;
    height: 40px;
    float: right;
    border: 1px solid #9c1675;
}
.tool-main .types-box .title{
    line-height: 22px;
    height: 38px;
    padding: 8px 14px;
    background-color: #9c1675;
    color: white;
    text-align: center;
    display: inline-block;
    margin: 0;
}
.tool-main .types{
    padding-top: 13px;
    line-height: 14px;
}
.tool-main .types .type{
    font-size: 14px;
    padding: 0 12px;
    border-right: 1px solid #999999;
    background: none;
    color: #333333;
    margin: 0;
}
.tool-main .types .type:last-child{
    border-right: none;
}
.tool-main .types .type:hover,
.tool-main .types .type.selected{
    background: none;
    color: #9c1675;
}
.tool-main .search-box{
    position: relative;
    right: 0;
    top: 0;
    float: right;
    margin-top: 2px;
    padding-left: 20px;
    width: 30%;
}
.tool-lists{
    padding: 0 65px;
}
.tool-lists{
    padding-top: 35px;
}
.tool-lists .lists-inner{
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: -1px;
}
.tool-lists .list{
    width: 12.5%;
    float: left;
    border: 1px solid #999999;
    position: relative;
    min-height: 1px;
    background: no-repeat;
    background-size: 100% auto;
    background-position: 0 50%;
    margin-left: -1px;
    z-index: 1;
}
.tool-lists .list.list-head{
    position: absolute;
    left: 0;
    top: 0;
    z-index: 10;
}
.tool-lists .list:hover,
.tool-lists .list.selected{
    border: 1px solid #9c1675;
    z-index: 10;
}
.tool-lists .lists-inner .list:first-child{
    border: none;
}
.tool-lists .lists-inner .list.list-head{
    border: 1px solid #999999;
}
.tool-lists .lists{
    position: relative;
    margin-bottom: 20px;
}
.tool-lists .list img{
    width: 100%;
}
.tool-lists .list .list-intr{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0 8px;
    height: 33px;
    line-height: 33px;
    color: white;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.icon-point{
    width: 18px;
    height: 18px;
    border: 9px solid #fff;
    border-bottom-color: #9c1675;
}
.product-panel{
    width: 100%;
    padding-top: 20px;
    margin-bottom: 20px;
    overflow: hidden;
    position: relative;
}
.product-panel .icon-point{
    position: absolute;
    left: 40%;
    top: 2px;
    margin-left: -9px;
}
.icon-close-white{
    width: 13px;
    height: 13px;
    display: block;
    background: url("../images/other/icon-close-white.png") no-repeat 0 0;
    background-size: 100% 100%;
    cursor: pointer;
}
.product-panel .icon-close-white{
    position: absolute;
    right: 10px;
    top: 10px;
    width: 26px;
    height: 26px;
}
.product-panel .product-detail{
    width: 100%;
    position: relative;
}
.product-panel .product-detail img{
    width: 100%;
    display: block;
}
.product-panel .product-detail .img-change-color{
    display: none;
    height: 352px;
}
.product-panel .product-info {
    background-color: #eeeeee;
    padding: 9px 20px 8px;
    line-height: 20px;
    overflow: hidden;
    font-size: 16px;
    border-left: 1px solid #9c1675;
    border-right: 1px solid #9c1675;
}
.product-panel .product-info a{
    color: #333;
    font-size: 14px;
    margin-right: 25px;
}
.product-panel .product-info a:hover{
    color: #9c1675;
}
.product-panel .product-info p,
.product-panel .product-info span{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    margin: 0;
}
.twinkle{
    -webkit-animation: twinkle 0.4s ease-out;
    -ms-animation: twinkle 0.4s ease-out;
    -moz-animation: twinkle 0.4s ease-out;
    animation: twinkle 0.4s ease-out;
}
@-webkit-keyframes twinkle{
    0%{background-color:#eeeeee; color: purple;}
    75%{background-color:purple; color: white;}
    100%{background-color:#eeeeee; color: purple;}
}
@-ms-keyframes twinkle{
    0%{background-color:#eeeeee; color: purple;}
    75%{background-color:purple; color: white;}
    100%{background-color:#eeeeee; color: purple;}
}
@-moz-keyframes twinkle{
    0%{background-color:#eeeeee; color: purple;}
    75%{background-color:purple; color: white;}
    100%{background-color:#eeeeee; color: purple;}
}
@keyframes twinkle{
    0%{background-color:#eeeeee; color: purple;}
    75%{background-color:purple; color: white;}
    100%{background-color:#eeeeee; color: purple;}
}
.product-panel .product-info p:first-child{
    color: #9c1675;
}
.product-panel .product-control .btn-deep:hover .icon-collect,
.product-panel .product-control .btn-deep.selected .icon-collect{
    background-image: url("../images/other/icon-collact-white.png");
}
.product-panel .panel-content{
    width: 50%;
    position: relative;
}
.color-text{
    font-weight: normal;
    display: inline-block;
    padding: 0 5px;
}
#J_productPanel .panel-content {
    width: 100%;
}
#J_productPanel.product-panel .product-detail {
    width: 50%;
}
#J_productPanel .blocks-wrapper .color-blocks{
    margin: 0;
    padding: 0;
}
#J_productPanel .blocks-wrapper .color-blocks .color{
    border: none;
    border-right: 1px solid #bfbfbf;
    border-top: 1px solid #bfbfbf;
    margin: 0;
}
#J_productPanel .blocks-wrapper .color-blocks .color:hover,
#J_productPanel .blocks-wrapper .color-blocks .color.selected{
    border: 5px solid white;
}
.blocks-wrapper .color-blocks .color:hover,
.blocks-wrapper .color-blocks .color.selected{
    border: 5px solid white;
}
.product-panel .choose-color{
    display: none;
    width: 75%;
    min-height: 100%;
    border: 1px solid #9c1675;
    border-left: none;
    position: absolute;
    top: 0;
    right: 0;
}
.product-panel .img-show,
.product-panel .img-change-color{
    border: 1px solid #9c1675;
    /*background-size: auto 100%;*/
    background-position: 50% 50%;
    background-repeat: no-repeat;
}
.product-panel .img-show{
    background-size: 100% auto;
    background-position: 50% 0;
}
.product-panel .choose-color .picker-wrapper{
    background-color: #eeeeee;
    padding: 19px 0 20px;
}
.product-panel .choose-color .picker-wrapper .picker{
    width: 94%;
    margin: 0 auto;
    float: none;
}
.product-panel.step2 .btn-deep{
    display: none;
}
.product-panel .blocks-wrapper .color-blocks .color{
    height: 102px;
}
.product-panel.step2 .J_addCollect{
    display: block;
    border-right: 1px solid #9c1675;
}
.product-panel.step2 .icon-close-white{
    display: none;
}
.product-panel.step2 .img-show{
    display: none;
}
.product-panel.step2 .img-change-color{
    display: block;
    position: relative;
}
.product-panel .img-change-color .cover{
    background-color: rgba(0,0,0,0.5);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.product-panel .img-change-color .cover p{
    position: absolute;
    top: 50%;
    width: 100%;
    text-align: center;
    color: white;
    transform: translateY(-50%);
    font-size: 14px;
}
#J_productPanel.product-panel.step2 .product-detail{
    width:25%;
}
.product-panel.step2 .choose-color{
    display: block;
}
.product-panel.step2 .product-info p:first-child span{
    display: block;
    margin-bottom: 10px;
}
.product-panel .icon-close{
    width: 18px;
    height: 18px;
    background: url('../images/other/icon-close-gray.png');
    position: absolute;
    right: 13px;
    top: 17px;
    display: block;
    background-size: 100% 100%;
    cursor: pointer;
}
.product-panel .color-info{
    padding: 10px 20px;
    border: 1px solid #9c1675;
    border-bottom: none;
    min-height: 112px;
    font-size: 16px;
}
.color-picker{
    padding: 0 60px;
    background-color: #eeeeee;
}
.color-picker-inner{
    padding: 15px 5px;
    overflow: hidden;
}
.color-picker .picker-wrapper{
    width: 75%;
    float: left;
}
.picker-wrapper .picker{
    height: 40px;
    float: left;
    position: relative;
}
.picker-wrapper .picker .color{
    width: 10px;
    height: 10px;
    float: left;
}
.picker-frame{
    /*  width: 90px;
        height: 60px;
        border: 5px solid white;
        box-shadow: 1px 1px 1px #ccc; */
    position: absolute;
    left: -5px;
    top: -5px;
}
.picker-frame div{
    position: absolute;
}
.picker-frame div.left{
    left: 0;
    top: 0;
    width: 5px;
    height: 50px;
    border-left: 5px solid white;
}
.picker-frame div.top{
    top: 0;
    left: 0;
    width: 90px;
    height: 5px;
    border-top: 5px solid white;
}
.picker-frame div.right{
    left: 85px;
    top: 0;
    width: 5px;
    height: 50px;
    border-right: 5px solid white;
}
.picker-frame div.bottom{
    left: 0;
    top: 45px;
    width: 90px;
    height: 5px;
    border-bottom: 5px solid white;
}
.color-thumbnails{
    height: 40px;
    overflow: hidden;
}
.color-thumbnails li{
    float: left;
    width: 10px;
    height: 40px;
}
.blocks-wrapper{
    position: relative;
    overflow: hidden;
}
.blocks-wrapper .color-blocks{
    /*width: 12.5%;*/
    width: 100%;
    float: left;
    padding-left: 1px;
    padding-top: 1px;
}
.blocks-wrapper .color-blocks .color{
    /*width: 100%;*/
    width: 12.5%;
    height: 120px;
    float: left;
    border: 1px solid #bfbfbf;
    margin-left: -1px;
    margin-top: -1px;
}
#J_productPanel .blocks-wrapper .color-blocks .color.selected{
    border: 5px solid #fff;
    box-shadow: 1px 1px 1px #ccc, -2px -2px 2px #ccc;
}
.blocks-wrapper .picker-frame{
    width: 12.5%;
    height: 60px;
    left: 0;
    top: 0;
    border-width: 3px;
}
.color-picker .search-box{
    width: 25%;
    padding-left: 0;
}
.color-lists{
    padding: 0 65px;
    margin-top: 44px;
}
.color-lists .product-lists{
    width: 100%;
    padding: 0;
    margin-top: 20px;
    padding-top: 1px;
    padding-left: 1px;
    padding-right: 30px;
    display: none;
}
.color-lists .product-lists .list-box{
    margin-bottom: 20px;
    border: none;
    padding-right: 30px;
}
.color-lists .product-lists .list-box .box-inner{
    border: 1px solid #e5e5e5;
    margin: 0;
}
.color-lists .product-lists .list-box:hover .box-inner{
    border-color: #9c1675;
}
.color-lists .product-lists .product-opts{
    padding: 0 10px;
}
.color-lists .product-lists .box-inner{
    padding: 10px;
}
.color-lists .product-lists .product-opts .btn-opt{
    border-color: #9c1675;
    color: #9c1675;
}
.color-lists .product-lists .product-opts .btn-opt:hover,
.color-lists .product-lists .product-opts .btn-opt.selected{
    background-color: #9c1675;
    color: white;
}
.product-panel .color-details .icon-close{
    right: 13px;
    top: 12px;
}
/*Collect Panel Style*/
.collect-panel{
    position: fixed;
    bottom: 0;
    right: 0;
    background-color: #eeeeee;
    left: 70px;
    padding-left: 65px;
    padding-right: 260px;
    max-height: 150px;
}
.collect-panel .collect-lists{
    width: 100%;
    padding: 10px 0 0 10px;
    max-height: 150px;
    overflow-y: auto;
}
.collect-panel .list{
    width: 32%;
    float: left;
    overflow: hidden;
    margin-bottom: 10px;
    margin-right: 1%;
}
.collect-panel .collect-lists .list-img{
    width: 48%;
    /*height: 58px;*/
}
.collect-panel .collect-lists .list-info{
    margin-left: 48%;
}
.collect-panel .close-trigger{
    display: none;
}
.collect-panel.open .open-trigger{
    display: none;
}
.collect-panel.open .close-trigger{
    display: block;
}
.collect-trigger{
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 65px;
    background-color: #9c1675;
    color: white;
    padding: 20px 0 0 20px;
}
.collect-trigger.open-trigger{
    padding-left: 35px;
}
.collect-trigger.open-trigger .icon-open{
    right: 45px;
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
}
.collect-control{
    width: 260px;
    position: absolute;
    right: 10px;
    bottom: 10px;
    display: block;
}
.collect-control .btn-deep{
    width: 50%;
    float: right;
}
.collect-panel .collect-lists .list:hover,
.collect-panel .collect-lists .list:hover .list-info{
    border-color: #9c1675;
    color: #9c1675;
}
.collect-panel .collect-lists .list:hover .icon-remove-collect {
    background-image: url('../images/other/icon-close-gray-smaller-hover2.png');
}
.icon-open{
    width: 11px;
    height: 20px;
    background: url('../images/other/icon-open.png');
    position: absolute;
    right: 13px;
    top: 30px;
    display: block;
    background-size: 100% 100%;
}
.collect-panel{
    min-height: 80px;
    z-index: 10;
    width: 65px;
    padding: 0;
    left: auto;
}
.collect-panel.open{
    left: 70px;
    padding-left: 65px;
    padding-right: 275px;
    width: auto;
}
.collect-panel.open .collect-lists{
    display: block;
}
.collect-panel .collect-lists{
    display: none;
}