/*======================================================
                    layer
======================================================*/
body .layui-layer {
    border-radius: 8px;
    overflow: hidden;
}



/*======================================================
                    common
======================================================*/
html.unscroll{
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.allwrap{
    padding-top: 121px;
}

.allwrap{
    position: relative;
    min-width: 1200px;
}

.yfdlink:hover{
    color: #17b5aa;
}

.unselect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.tb{
    display: table;
    table-layout: fixed;
}

.td{
    display: table-cell;
    text-align: center;
    vertical-align: middle;
}

.full{
    width: 100%;
    height: 100%;
}

.overhide{
    overflow: hidden;
}

.clearmgt{
    margin-top: 0 !important;
}

.clearmgb{
    margin-bottom: 0 !important;
}

.hide{
    display: none !important;
}

.wrap,
.container{
    position: relative;
    margin: 0 auto;
}

.container{
    width: 85%;
    margin: 0 auto;
}

/*.container{*/
    /*width: auto;*/
    /*margin: 0 120px;*/
/*}*/

.backtotop{
    position: fixed;
    bottom: 120px;
    right: 2.5%;
    z-index: 950;
    display: none;
    width: 43px;
    height: 93px;
    background: url("../images/icons/backtotop.png") 0 0;
}

.backtotop:hover{
    background: url("../images/icons/backtotop.png") 43px 0;
}

.copyright,
.copyright a{
    font-weight: normal;
    font-size: 12px;
}

.grid{
    position: relative;
}

.grid-item{
    position: relative;
    float: left;
    box-sizing: border-box;
    width: 33.33%;
}

.grid-link,
.grid-picbox{
    position: relative;
    display: block;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.grid-picbox{
    border: 1px solid #f6f6f6;
}

.grid-pic{
    display: block;
    width: 100%;
}

.grid-mask{
    position: absolute;
    top: 100%;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(69, 196, 187, .8);
}

.grid-search{
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 10;
    display: none;
    width: 40px;
    height: 40px;
    margin-top: -20px;
    margin-left: -20px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    color: #fff;
    background-color: #17b5aa;
    cursor: pointer;
}

.choice-color{
    display: block;
    box-sizing: border-box;
    width: 100%;
    text-align: center;
}

.choice-color li{
    display: inline-block;
    box-sizing: border-box;
    width: 14px;
    height: 14px;
    padding: 1px;
    background-color: #75ccc4;
}

.choice-color li img{
    display: block;
    width: 100%;
    height: 100%;
}

.copyright .brand{
    color: #17b5aa;
}

.counter {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.counter .counter-add:hover,
.counter .counter-reduce:hover{
    color: #17b5aa!important;
}

.counter .counter-add.disable,
.counter .counter-reduce.disable {
    color: #999 !important;
}

/*===============================================
                    loading
===============================================*/
.loading-wrap{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    width: 100%;
    height: 100%;
    background-color: #fafafa;
}

.loading {
    position: absolute;
    top: 50%;
    left: 50%;
    box-sizing: border-box;
    display: table;
    height: 64px;
    width: 64px;
    margin: -20px 0 0 -20px;
    background: #fafafa;
}

.loading:before,
.loading:after{
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    height: 64px;
    width: 64px;
    border: 6px solid #17b5aa;
    border-bottom-color: transparent;
    border-top-color: transparent;
    border-radius: 100%;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation: rotate 1s 0s ease-in-out infinite;
    animation: rotate 1s 0s ease-in-out infinite;
}

.loading:after {
    display: inline-block;
    top: 20px;
    left: 20px;
    width: 24px;
    height: 24px;
    border-color: #17b5aa transparent #17b5aa transparent;
    -webkit-animation-direction: reverse;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    animation-direction: reverse;
}

.imgloader{
    position: relative;
    width: 100%;
    height: 50px;
}

.imgloader .loading{
    width: 34px;
    height: 34px;
    background-color: transparent;
}

.imgloader .loading:before{
    width: 34px;
    height: 34px;
    border-width: 2px;
    border-color: transparent #e1e1e1 transparent #e1e1e1;
}

.imgloader .loading:after{
    top: 11px;
    left: 11px;
    width: 12px;
    height: 12px;
    border-width: 2px;
    border-color: #e1e1e1 transparent #e1e1e1 transparent;
}

@-webkit-keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg) scale(1);
        transform: rotate(0deg) scale(1);
    }

    50% {
        -webkit-transform: rotate(180deg) scale(0.6);
        transform: rotate(180deg) scale(0.6);
    }

    100% {
        -webkit-transform: rotate(360deg) scale(1);
        transform: rotate(360deg) scale(1);
    }
}

@-moz-keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg) scale(1);
        transform: rotate(0deg) scale(1);
    }

    50% {
        -webkit-transform: rotate(180deg) scale(0.6);
        transform: rotate(180deg) scale(0.6);
    }

    100% {
        -webkit-transform: rotate(360deg) scale(1);
        transform: rotate(360deg) scale(1);
    }
}

@-ms-keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg) scale(1);
        transform: rotate(0deg) scale(1);
    }

    50% {
        -webkit-transform: rotate(180deg) scale(0.6);
        transform: rotate(180deg) scale(0.6);
    }

    100% {
        -webkit-transform: rotate(360deg) scale(1);
        transform: rotate(360deg) scale(1);
    }
}

@-o-keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg) scale(1);
        transform: rotate(0deg) scale(1);
    }

    50% {
        -webkit-transform: rotate(180deg) scale(0.6);
        transform: rotate(180deg) scale(0.6);
    }

    100% {
        -webkit-transform: rotate(360deg) scale(1);
        transform: rotate(360deg) scale(1);
    }
}

@keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg) scale(1);
        transform: rotate(0deg) scale(1);
    }

    50% {
        -webkit-transform: rotate(180deg) scale(0.6);
        transform: rotate(180deg) scale(0.6);
    }

    100% {
        -webkit-transform: rotate(360deg) scale(1);
        transform: rotate(360deg) scale(1);
    }
}



/*======================================================
                     mall header
======================================================*/
.header{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    min-width: 1200px;
    height: 120px;
    /*border-bottom: 1px solid #e1e1e1;*/
    background-color: #fff;
    transition: all .7s;
}

.header .container,
.header .content,
.header .left,
.header .right,
.header .right-inner{
    height: 100%;
}

.header .logo{
    display: inline-block;
    margin: 36px 0 44px;
    transition: all .35s;
}

.header .logo-link{
    display: block;
    height: 40px;
    color: #b8b8b8;
    vertical-align: bottom;
    overflow: hidden;
}

.header .logo-link img{
    display: inline-block;
    width: auto;
    height: 100%;
    vertical-align: bottom;
}

.header .logo-link span{
    position: relative;
    display: inline-block;
    padding: 0 15px;
    vertical-align: bottom;
}

.header .logo-link span:before{
    content: "";
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 1px;
    height: 12px;
    background-color: #b8b8b8;
}

.header .logo-link h1{
    margin-top: 100px;
    visibility: hidden;
}

.header .nav{
    position: relative;
    float: left;
    margin: 55px 0 45px;
    transition: all .35s;
}

.header .nav ul{
    position: relative;
    transition: opacity .35s;
}

.header .nav ul.unsee{
    z-index: -1;
    opacity: 0;
    pointer-events: none;
}

.header .nav li{
    position: relative;
    float: left;
    margin-right: 55px;
}

.header .nav li:after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #17b5aa;
    transition: width .35s;
}

.header .nav li.active:after{
    width: 100%;
}

.header .nav li a{
    display: block;
    color: #6f6f6f;
}

.header .nav li a:hover{
    color: #17b5aa;
}

.header .nav-search{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    display: block;
    width: 100%;
    height: 100%;
    opacity: 1;
    background-color: transparent;
    transition: opacity .35s;
}

.header .nav-search.unsee{
    opacity: 0;
    z-index: -1;
}

.header .nav-search input{
    display: block;
    box-sizing: border-box;
    width: 400px;
    height: 100%;
    margin: 0 auto;
    border: 0;
border-bottom: 1px solid rgba(69, 196, 187, .8);
    color: #6f6f6f;
    background-color: transparent;
}

.header .icons{
    float: left;
    margin: 52px 0 48px;
    transition: all .35s;
}

.header .icons .iconfont{
    color: #6f6f6f;
}

.header .icons .iconfont:hover{
    color: #17b5aa;
}



.header .icons li{
    position: relative;
    float: left;
    margin-right: 20px;
}

.header .icons li a{
    position: relative;

}


.header .icons li:last-child{
    margin-right: 0;
}

.header .icons .icon-tips{
    position: absolute;
    top: -25px;
    left: 7px;
    height: 18px;
    padding: 0 5px;
    border: 1px solid #b8b8b8;
    border-radius: 4px;
    font-size: 12px;
    color: #6f6f6f;
    line-height: 18px;
    white-space: nowrap;
    opacity: 0;
    transform: translate(-50%, 0);
    transition: all .35s;
    backface-visibility: hidden;
}

.header .icons .icon-tips:before,
.header .icons .icon-tips:after{
    content: "";
    position: absolute;
    left: 50%;
    display: block;
    width: 0;
    height: 0;
    margin-left: -6px;
    border-top: 6px solid #b8b8b8;
    border-right: 6px solid transparent;
    border-left: 6px solid transparent;
}

.header .icons .icon-tips:before{
    bottom: -6px;
}

.header .icons .icon-tips:after{
    bottom: -5px;
    border-top-color: #fff;
}

.header .icons li:hover .icon-tips{
    opacity: 1;
}

.header .v-line{
    float: left;
    width: 1px;
    height: 14px;
    margin: 58px 55px 42px 0;
    background-color: #b8b8b8;
    transition: all .35s;
}

.header.scrolled {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
}

.header.scrolled{
    height: 70px;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,.1);
}

.header.scrolled .logo{
    margin: 15px 0;
}

.header.scrolled .nav{
    margin: 30px 0 20px;
}

.header.scrolled .icons{
    margin: 29px 0 17px;
}

.header.scrolled .icons .icon-tips:after{
    border-top-color: #fff;
}

.header.scrolled .v-line{
    margin: 34px 55px 22px 0;
}

.header .show-usercenter{
    display: none;
}

@media screen and (max-width: 1440px) {
    .header .nav li{
        margin-right: 25px;
    }
    .header .v-line,
    .header.scrolled .v-line{
        margin-right: 25px;
    }
}




/*======================================================
                      footer
======================================================*/
.footer{
    min-width: 1200px;
    padding: 40px 0;
    color: #6f6f6f;
    background: #202323 url("../images/mallfooter_bg.jpg") 0 0 / cover no-repeat;
}

.footer a{
    font-size: 12px;
    color: #6f6f6f;
}

.footer .nav-item{
    float: left;
    margin-right: 100px;
}

.footer .nav-item:last-child{
    margin-right: 0;
}

.footer .nav-item h2{
    font-size: 14px;
    font-weight: normal;
    color: #fff;
}

.footer .nav-item a:hover{
    color: #fff;
}

.footer .service-tel{
    text-align: right;
    font-size: 14px;
    color: #fff;
}

.footer .service-tel h1{
    font-size: 30px;
    color: #6f6f6f;
}

.footer .iconfont{
    margin: 0 5px;
    font-size: 16px;
    transition: color .3s;
}

.footer .iconfont:hover{
    color: #fff;
}

.footer .bottom{
    margin-top: 70px;
}

.footer .qrcode{
    position: absolute;
    top: 22px;
    left: 56%;
    -ms-transform: scale(0);
    transform: scale(0);
    transition: transform .35s;
}

.footer .qrcode.show{
    -ms-transform: scale(1);
    transform: scale(1);
}


/*======================================================
                    mall index
======================================================*/
.allwrap.index{
    padding-top: 0;
}

.index .header{
    background-color: transparent;
}

.index .header .icons .icon-tips:after {
    bottom: -5px;
    border-top-color: #f0f0f0;
}

.index .header.scrolled{
    background-color: #fff;
}

.index .banner{

}

.index .banner .slide-inner{
    width: 100%;
    background: center center / cover no-repeat;
}

.index .banner .plink{
    display: block;
    height: 100%;
}

.index .banner .ptext{
    width: 65%;
    margin: 0 auto;
    text-align: left;
}

.index .banner .text1{
    font-size: 22px;
}

.index .banner .text2{
    font-size: 50px;
}

.index .banner .pprice{
    margin-top: 30px;
    font-size: 50px;
    color: #17b5aa;
}

.index .grid{
    margin: 0 -8px;
}

.index .grid-item{
    margin-bottom: 16px;
    padding: 0 8px;
}

.index .grid-picbox{
    border: 0;
}

.index .grid-text{
    position: absolute;
    left: 0;
    box-sizing: border-box;
    padding: 0 20px;
    white-space: nowrap;
    color: #a2a2a2;
    transition: all .35s;
}

.index .text-top .grid-text{
    top: 20px;
}

.index .text-bottom .grid-text{
    bottom: 20px;
}

.index .grid-text .price{
    font-size: 16px;
    font-weight: bold;
    transition: color .35s;
}

.index .grid-text .describe{
    width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
}

.index .floor.active .grid-text .price{
    color: #17b5aa;
}

.index .floor.active .grid-link:hover .grid-text .price{
    color: #fff;
}

.index .grid-link:hover .grid-text{
    color: #fff;
}

.index .grid-choice{
    text-align: center;
}

.index .grid-choice a{
    display: inline-block;
    padding: 0 15px;
    color: #acacac;
}

.index .grid-choice a.active{
    color: #17b5aa;
}

.index .grid-choice a .iconfont{
    font-size: 28px;
}

.index .grid-choice a span{
    display: block;
}

.index .products{
    margin-bottom: 100px;
    overflow: hidden;
}

.index .products-hd{
    margin: 80px 0 50px;
    text-align: center;
}

.index .products .title{
    font-size: 30px;
    color: #000;
}

.index .products .more{
    display: inline-block;
    min-width: 36px;
    border-top: 3px solid #a2a2a2;
    font-size: 12px;
    transition: border .3s;
}

.index .products .more a{
    display: none;
}

.index .floor.active .more{
    border-color: #17b5aa;
}

.index .floor.active .more a{
    display: block;
    color: #17b5aa;
}

.index .products-list{
    margin: 0 -8px;
}

.index .product-item{
    position: relative;
    float: left;
    box-sizing: border-box;
    width: 25%;
    margin-bottom: 16px;
    padding: 0 8px;
}

.index .col-3 .product-item{
    width: 33.33%;
}

.index .product-item a,
.index .product-item .picbox{
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.index .product-item img{
    display: block;
    width: 100%;
}


.index .isad img{
    display: block;
    width: 100%;
}

.index .products.col-4 .grid-sizer,
.index .products.col-4 .grid-item{
    width: 25%;
}

.index .products.col-4 .grid-item.larger{
    width: 50%;
}

.index .products.style1 .text{
    position: absolute;
    bottom: 40px;
    left: 0;
    display: block;
    box-sizing: border-box;
    width: 100%;
    padding: 10px;
    text-align: center;
    color: #fff;
}

.index .products.style1 .price{
    font-size: 18px;
    font-weight: bold;
}

.index .products.style1 .describe{
    box-sizing: border-box;
    width: 100%;
    margin: 10px 0;
    font-size: 16px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.index .sidebar{
    position: fixed;
    top: 50%;
    right: 0;
    z-index: 100;
    display: block;
    box-sizing: border-box;
    min-width: 100px;
    text-align: right;
    -ms-transform: translate(100%, -50%);
    transform: translate(100%, -50%);
    transition: transform .5s;
}

.index .sidebar.open{
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

.index .sidebar li a{
    position: relative;
    display: block;
    padding: 10px 15px;
    font-size: 12px;
    color: #6f6f6f;
    transition: color .35s;
}

.index .sidebar li a:after{
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    display: block;
    width: 0;
    height: 1px;
    background-color: #17b5aa;
    transition: width .35s;
}

.index .sidebar li.active a,
.index .sidebar li a:hover{
    color: #17b5aa;
}

.index .sidebar li.active a:after{
    width: 100%;
}

.index .swiper-pagination-bullet-active{
    background-color: #17b5aa;
}

.index .swiper-container-horizontal>.swiper-pagination-bullets{
    bottom: 35px;
}



/*======================================================
                   mall all products
======================================================*/
.allproducts {

}

.allproducts .imgloader{
    margin: 50px auto;
}

.allproducts .header .icons .icon-tips:after{
    border-top-color: #fff;
}

.crumb {
    border-bottom: 1px solid #e1e1e1;
    font-size: 12px;
    line-height: 50px;
    color: #6f6f6f;
}

.crumb ul {
    text-align: center;
    font-size: 0;
    vertical-align: top;
}

.crumb ul li {
    display: inline-block;
    font-size: 12px;
    vertical-align: top;
}

.crumb ul li a {
    display: block;
    color: #6f6f6f;
    vertical-align: top;
    transition: color .3s;
}

.crumb ul li a:hover {
    color: #17b5aa;
}

.crumb .iconfont{
    font-size: 10px;
    line-height: 50px;
}

.crumb .crumb-item {

}

.crumb .crumb-search{
    position: relative;
    font-size: 12px;
    color: #d0d0d0;
}

.crumb-search input {
    width: 100px;
    padding-right: 12px;
    border: 0 solid #6f6f6f;
    color: #6f6f6f;
    transition: all .35s;
}

.crumb-search.focus input{
    width: 300px;
    padding-right: 22px;
    border-bottom: 1px solid #6f6f6f;
}

.crumb-search.focus .icon-sousuo{
    padding-left: 10px;
    color: #6f6f6f;
}

.crumb-search .icon-sousuo{
    position: absolute;
    top: 0;
    right: 0;
    z-index: 10;
    display: block;
    cursor: pointer;
    transition: all .35s;
}

.crumb-search .icon-sousuo:hover{
    color: #17b5aa;
}

.crumb .arrow {
    display: inline-block;
    margin: 0 5px;
    vertical-align: top;
}

.filter {
    position: relative;
    font-size: 12px;
    color: #a2a2a2;
}

.filter a {
    color: #a2a2a2;
}

.filter a.checked,
.filter a:hover {
    color: #17b5aa;
}

.filter-bd {
    position: relative;
    overflow: hidden;
    transition: all .35s;
}

.filter.show-more .filter-bd {
    height: auto;
}

.filter-bd dl{
    position: relative;
    display: block;
    box-sizing: border-box;
    width: 100%;
    border-bottom: 1px solid #e1e1e1;
    line-height: 27px;
    background-color: #f5f5f5;
    overflow: hidden;
    transition: all .35s;
}

.filter-bd dl.show-more {
    /*max-height: none;*/
}

.filter-bd dl:after,
.filter-bd dl dd:after,
.filter-bd dl dd .left ul:after{
    content: "";
    display: block;
    height: 0;
    visibility: hidden;
    clear: both;
}

.filter-bd dl dt,
.filter-bd dl dd {
    display: block;
    box-sizing: border-box;
    height: 100%;
}

.filter-bd dl dt{
    float: left;
    width: 110px;
    padding: 12px 0 12px 15px;
    background-color: #f5f5f5;
}

.filter-bd dl dd{
    float: right;
    width: calc(100% - 110px);
    padding: 12px 15px 12px 20px;
    background-color: #fff;
}

.filter-bd dl dd li{
    /*margin: 12px 0;*/
}

.filter-bd dl dd .left,
.filter-bd dl dd .right {
    position: relative;
    float: left;
    box-sizing: border-box;
    height: 100%;
}

.filter-bd dl dd .left{
    width: calc(100% - 150px);
}

.filter-bd dl dd .right {
    width: 150px;
    text-align: right;
}

.filter-bd dl dd .left li{
    float: left;
    margin-right: 25px;
    /*line-height: 25px;*/
}

.filter-bd dl dd .right a {
    display: inline-block;
}

.filter-bd dl dd .right a:last-child{
    margin-right: 0;
}

.filter-bd .btn-multi{
    padding: 1px 5px;
    line-height: 1.5;
    background-color: #f5f5f5;
}

.filter-bd dl dd .right .btn-more{
    margin-left: 20px;
    display: none;
}

.filter .btn-options span,
.filter-bd .btn-more span {
    display: inline-block;
    width: 9px;
    height: 5px;
    margin-left: 5px;
    background: transparent url("../images/icons/more_arrow_down.png") 0 0 no-repeat;
    vertical-align: middle;
    -ms-transform: rotate(0);
    transform: rotate(0);
    transition: transform .3s;
}

.filter .btn-options:hover span,
.filter-bd .btn-more:hover span{
    background-image: url("../images/icons/more_arrow_down_active.png");
}

.filter.show-more .btn-options,
.filter .btn-options.checked,
.filter-bd dl.show-more .btn-more{
    color: #17b5aa;
}

.filter.show-more .btn-options span,
.filter .btn-options.checked span,
.filter-bd dl.show-more dd .right .btn-more span {
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    background-image: url("../images/icons/more_arrow_down_active.png");
}

.filter .btn-options{
    position: absolute;
    bottom: -20px;
    left: 50%;
    z-index: 10;
    display: block;
    box-sizing: border-box;
    width: 130px;
    height: 20px;
    margin-left: -65px;
    padding: 2px 10px;
    text-align: center;
    background-color: #f5f5f5;
    -ms-transform: rotate(0);
    transform: rotate(0);
    transition: all 0.35s;
}

.sorter{
    box-sizing: border-box;
    width: 100%;
    margin-top: 50px;
    margin-bottom: 20px;
    padding: 0 15px 5px;
    border-bottom: 1px solid #f6f6f6;
}

.sorter li{
    position: relative;
    float: left;
    margin-right: 30px;
}

.sorter li:last-child{
    margin-right: 0;
}

.sorter a{
    font-size: 12px;
    color: #a2a2a2;
}

.sorter a span{
    display: inline-block;
    width: 9px;
    height: 5px;
    margin-left: 5px;
    background: transparent url("../images/icons/more_arrow_down.png") 0 0 no-repeat;
    vertical-align: middle;
    -ms-transform: rotate(0);
    transform: rotate(0);
    transition: transform .3s;
}

.sorter a.checked,
.sorter a:hover{
    color: #17b5aa;
}

.sorter a:hover span,
.sorter a.checked span{
    background-image: url("../images/icons/more_arrow_down_active.png");
}

.sorter a.checked.up span{
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    background-image: url("../images/icons/more_arrow_down_active.png");
}

.allproducts .grid{
    margin: 0 -6px;
}
.allproducts .grid-item{
    width: 25%;
    margin-bottom: 12px;
    padding: 0 6px;
}

.allproducts .grid-text{
    margin: 20px 10px;
    font-size: 12px;
    color: #a2a2a2;
    text-align: center;
    white-space: nowrap;
    transition: color .3s;
}

.allproducts .grid-text .price{
    font-size: 14px;
    transition: color .3s;
}

.allproducts .grid-text .summary,
.allproducts .grid-text .brand{
    width: 100%;
    text-align: center;
    text-overflow: ellipsis;
    overflow: hidden;
}

.allproducts .grid-link:hover .grid-text{
    color: #222;
}

.allproducts .grid-link:hover .price{
    color: #17b5aa;
}



/*======================================================
                    productdetails
======================================================*/
.zoomPup,
.zoomWrapper{
    border-color: #e1e1e1;
}

.inline-block{
    display: inline-block;
    vertical-align: middle;
}

.pro-details{

}

.pro-details .crumb {
    border-color: #f6f6f6;
}

.pro-details .sharebar{
    width: auto;
    margin-left: 20%;
    margin-top: 20px;
    text-align: left;
}

.pro-details .sharebar .btn{
    position: relative;
    display: inline-block;
    height: 35px;
    margin: 0 10px;
    font-size: 12px;
    color: #6f6f6f;
    line-height: 35px;
    float:left;
}

.pro-details .sharebar .btn:hover{
    color: #17b5aa;
    background-color: transparent;
}

.pro-details .sharebar .btn .share-icons{
    position: absolute;
    top: 30px;
    left: 0;
    display: none;
    white-space: nowrap;
}

.pro-details .sharebar .btn-share:hover .share-icons{
    display: block;
}

.pro-details .sharebar .btn .share-icons .iconfont{
    display: inline-block;
    margin: 0 5px;
    font-size: 14px;
    color: #6f6f6f;
}

.pro-details .sharebar .btn .share-icons .iconfont:hover{
    color: #17b5aa;
}

.pro-details .sharebar .icon-shoucangwancheng{
    color: #17b5aa;
}

.pro-details .preview{
    position: relative;
    margin: 50px auto;
    /*background-color: #eee;*/
    /*overflow: hidden;*/
    width: calc(85% - 20px);
    
}

.pro-details .preview .tb{
    width: 100%;
    height: 100%;
    /*overflow: hidden;*/
}

.pro-details .preview .td{
    position: relative;
    box-sizing: border-box;
    width: 50%;
    vertical-align: top;
    /*overflow: hidden;*/
}

.pro-details .piclist{
    width: 14%;
    /*overflow: hidden;*/
}

.pro-details .piclist li{
    position: relative;
    box-sizing: border-box;
    margin-bottom: 10px;
    border: 1px solid #f6f6f6;
    cursor: pointer;
}

.pro-details .piclist li img,
.pro-details .picview .pichover{
    display: block;
    width: 100%;
}

.pro-details .piclist li .pic-mask{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(69, 196, 187, 0);
    transition: background .35s;
}

.pro-details .piclist li:hover .pic-mask,
.pro-details .piclist li.active .pic-mask{
    background-color: rgba(69, 196, 187, .8);
}

.pro-details .picview{
    position: relative;
    box-sizing: border-box;
    width: calc(85% - 10px);
    min-width: 85%;
    min-height: 85%;
    border: 1px solid #f6f6f6;
}


.pro-details .preview-info .content{
    box-sizing: border-box;
    width: 100%;
    padding: 30px 0 0 40px;
    font-size: 16px;
    text-align: left;
}

.pro-details .preview-info .row{
    position: relative;
    margin: 25px 0;
    height: 50px;
    vertical-align: middle;
}

.pro-details .preview-info .left-text{
    display: inline-block;
    min-width: 110px;
    text-align: left;
    vertical-align: middle;
}

.pro-details .preview-info .pname{
    font-size: 24px;
    font-weight: bold;
}

.pro-details .preview-info .poutline{
    margin-bottom: 10px;
    font-size: 12px;
    color: #d0d0d0;
}

.pro-details .preview-info .pcompatible,
.pro-details .preview-info .pcod {
    font-size: 14px;
    color: #a2a2a2;
    line-height: 30px;
}

.pro-details .preview-info .pprice{
}

.pro-details .preview-info .pprice span{
    vertical-align: middle;
}

.pro-details .preview-info .pprice .dollar{
    font-size: 16px;
    color: #17b5aa;
}

.pro-details .preview-info .pprice .price{
    font-size: 30px;
    font-weight: bold;
    color: #17b5aa;
}

.pro-details .preview-info .pcolor{
    line-height: 50px;
    vertical-align: middle;
}

.pro-details .preview-info .pcolor li{
    position: relative;
    display: inline-block;
    box-sizing: border-box;
    width: 40px;
    height: 40px;
    margin-right: 6px;
    vertical-align: middle;
}

.pro-details .preview-info .pcolor li a{
    display: block;
    width: 100%;
    height: 100%;
}

.pro-details .preview-info .pcolor li img{
    display: block;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    border: 1px solid #d0d0d0;
    transition: border .3s;
}

.pro-details .preview-info .pcolor li:hover img{
    border-color: #17b5aa;
}

.pro-details .preview-info .pcolor li .color-marker{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    background: 0 0 / 100% 100% no-repeat;
}

.pro-details .preview-info .pcolor li.active .color-marker{
    background-image: url("../images/icons/pcolor_marker.png");
}

.pro-details .preview-info .pstock .counter{
    position: relative;
    box-sizing: border-box;
    width: 140px;
    height: 40px;
    margin-right: 35px;
    vertical-align: middle;
}

.pro-details .preview-info .pstock .counter-reduce,
.pro-details .preview-info .pstock .counter-add{
    position: absolute;
    top: 0;
    display: block;
    box-sizing: border-box;
    width: 40px;
    height: 100%;
    border: 1px solid #d6d6d6;
    font-size: 16px;
    text-align: center;
    line-height: 40px;
    color: #000;
    background-color: #fff;
    cursor: pointer;
}

.pro-details .preview-info .pstock .counter-reduce{
    left: 0;
}

.pro-details .preview-info .pstock .counter-add{
    left: 100px;
}

.pro-details .preview-info .pstock .counter-num{
    position: absolute;
    top: 0;
    left: 40px;
    display: block;
    box-sizing: border-box;
    width: 60px;
    height: 100%;
    border: 0;
    border-top: 1px solid #d6d6d6;
    border-bottom: 1px solid #d6d6d6;
    text-align: center;
    background-color: #e8e8e8;
}

.pro-details .preview-info .pstock .stock-wrap{
    color: #d0d0d0;
}

.pro-details .preview-info .pbuy span{
    display: inline-block;
    vertical-align: middle;
}

.pro-details .preview-info .pbuy .btn{
    float: left;
    display: block;
    box-sizing: border-box;
    width: 160px;
    height: 40px;
    margin-right: 10px;
    border: 1px solid #d6d6d6;
    text-align: center;
    line-height: 40px;
}

.pro-details .preview-info .pbuy .btn.active,
.pro-details .preview-info .pbuy .btn:hover{
    color: #fff;
    border-color: #17b5aa;
    background-color: #17b5aa;
}

.pro-details .preview-info .collocations{
    width: 100%;
}

.pro-details .collocations{
    width: 100%;
}

.pro-details .owl .owl-buttons{
    opacity: 0;
    transition: opacity .5s;
}

.pro-details .owl:hover .owl-buttons{
    opacity: 1;
}

.pro-details .owl .owl-prev,
.pro-details .owl .owl-next{
    position: absolute;
    top: 50%;
    width: 50px;
    height: 50px;
    margin-top: -25px;
    /*border-radius: 50%;*/
    background: #17b5aa url("../images/icons/owlbtn.png") center center / 80% auto no-repeat;
}

.pro-details .owl .owl-prev{
    left: 0;
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.pro-details .owl .owl-next{
    right: 0;
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.pro-details .collocations .owl .owl-item{
    box-sizing: border-box;
}

.pro-details .collocations .owl .owl-box{
    width: auto;
    margin: 0 -6px;
}

.pro-details .collocations-item{
    position: relative;
    float: left;
    box-sizing: border-box;
    width: 25%;
    padding: 0 6px;

}

.pro-details .collocations-item:last-child{
    width: calc(25% - 1px);
}

.pro-details .collocations-item-inner{
    width: 100%;
    box-sizing: border-box;
    padding: 15px;
    border: 1px solid #f5f5f5;
}


.pro-details .collocations-item a{
    display: block;
    box-sizing: border-box;

}

.pro-details .collocations-item .pimg{
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.pro-details .collocations-item .pimg img{
    display: block;
    width: 100%;
}

.pro-details .collocations-item .ptxt{
    font-size: 13px;
    font-weight: normal;
    text-align: left;
}

.pro-details .collocations-item .pname{
    font-size: 14px;
    font-weight: bold;
    width: 100%;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.pro-details .collocations-item .pnum{
    font-size: 12px;
    color: #999;
}

.pro-details .collocations-item .pprice{
    line-height: 30px;
}

.pro-details .collocations-item .nowprice{
    margin-right: 10px;
    font-size: 18px;
    font-weight: bold;
    color: #17b5aa;
}

.pro-details .collocations-item .oldprice{
    position: relative;
    margin: 0 15px;
    color: #999;
}

.pro-details .collocations-item .oldprice:after{
    content: "";
    position: absolute;
    top: 14px;
    left: -5px;
    width: calc(100% + 10px);
    height: 1px;
    background-color: #999;
}

.pro-details .collocations-item .ptxt span{
    margin-right: 10px;
    color: #999;
}

.pro-details .collocations-item .ptxt span.num{
    color: #222;
}

.pro-details .collocations-item .checkbox{
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
    display: block;
    width: 14px;
    height: 14px;
    border: 1px solid #eee;
    background-color: #fff;
}

.pro-details .collocations-item .checkbox:after{
    position: absolute;
    top: 2px;
    right: 2px;
    bottom: 2px;
    left: 2px;
    background-color: #17b5aa;
}

.pro-details .collocations-item .checkbox.checked:after{
    content: "";
}

.pro-details .collocations-item .checkbox input{
    display: none;
}

.pro-details .collocations-item .selector{
    position: relative;
    z-index: 100;
    float: left;
    box-sizing: border-box;
    width: calc(50% - 5px);
    height: 24px;
    border: 1px solid #f6f6f6;
    font-size: 12px;
    line-height: 24px;
    color: #333;
    cursor: pointer;
    overflow: hidden;
}

.pro-details .collocations-item .selector:nth-child(1){
    margin-right: 5px;
}

.pro-details .collocations-item .selector:nth-child(2){
    margin-left: 5px;
}

.pro-details .collocations-item .selector .title{
    position: relative;
    width: 100%;
    height: 100%;
}

.pro-details .collocations-item .selector .result{
    display: block;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    padding: 0 18px 0 6px;
}

.pro-details .collocations-item .selector .triangle{
    position: absolute;
    top: 50%;
    right: 6px;
    display: block;
    width: 0;
    height: 0;
    border-top: 4px solid #999;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    -ms-transform: translate3d(0, -50%, 0) rotate(0);
    transform: translate3d(0, -50%, 0) rotate(0);
    transition: transform .35s;
}

.pro-details .collocations-item .selector.active .triangle{
    -ms-transform: translate3d(0, -50%, 0) rotate(180deg);
    transform: translate3d(0, -50%, 0) rotate(180deg);
}

.pro-details .collocations-item .selector .list{
    position: absolute;
    top: 23px;
    left: -1px;
    min-width: 100%;
    background-color: #fff;
    opacity: 0;
    transition: top .35s, opacity .35s;
}

.pro-details .collocations-item .selector.active .list{
    top: 28px;
    opacity: 1;
}

.pro-details .collocations-item .selector .list ul{
    min-width: 100%;
    max-height: 200px;
    border: 1px solid #f6f6f6;
    background-color: #fff;
    overflow-y: auto;
}

.pro-details .collocations-item .selector .list ul li{
    box-sizing: border-box;
    width: 100%;
    padding: 0 6px;
}

.pro-details .collocations-item .selector .list ul li.selected,
.pro-details .collocations-item .selector .list ul li:hover{
    color: #fff;
    background-color: #17b5aa;
}

.pro-details .collocations-item .selector.active{
    overflow: visible;
}

.pro-details .rec{
    position: relative;
    width: 100%;
    overflow: hidden;
}

.pro-details .rec .owl-box{
    width: auto;
    margin: 0 -6px;
}

.pro-details .rec .owl-box .grid-item{
    width: 25%;
}

.pro-details .rec .owl-box .grid-item:last-child{
    width: calc(25% - 1px);
}

.pro-details .rec .owl-box .grid-link{
    padding: 0 6px;
}

.pro-details .rec .owl-box .grid-picbox{
    transition: border .35s;
}

.pro-details .rec .owl-box .grid-item:hover .grid-picbox{
    border-color: #17b5aa;
}

.pro-details .rec .owl-box .grid-link img{
    width: 100%;
    transition: transform .5s;
}

.pro-details .rec .owl-box .grid-item:hover .grid-picbox img{
    -ms-transform: scale(1.12);
    transform: scale(1.12);
}

.pro-details .rec .owl-box .grid-text{
    margin: 20px 10px;
    font-size: 12px;
    color: #a2a2a2;
    text-align: center;
    white-space: nowrap;
    transition: color .35s;
}

.pro-details .rec .owl-box .grid-item:hover .grid-text{
    color: #222;
}

.pro-details .rec .owl-box .grid-text .price {
    font-size: 14px;
    transition: color .3s;
}

.pro-details .rec .owl-box .grid-item:hover .price{
    color: #17b5aa;
}

.pro-details .rec .owl-box .grid-text .summary,
.pro-details .rec .owl-box .grid-text .brand {
    width: 100%;
    text-align: center;
    text-overflow: ellipsis;
    overflow: hidden;
}

.pro-details .tab{
    box-sizing: border-box;
    width: calc(85% - 20px);
    margin: 0 auto;
    padding-bottom: 100px;
}

.pro-details .tab-btns{
    border-bottom: 4px solid #ebebeb;
}

.pro-details .tab-btns .btn{
    position: relative;
    float: left;
    display: block;
    box-sizing: border-box;
    min-width: 170px;
    height: 40px;
    margin-left: -1px;
    border: 1px solid #f6f6f6;
    text-align: center;
    line-height: 40px;
}

.pro-details .tab-btns .btn:first-child{
    margin-left: 0;
}

.pro-details .tab-btns .btn.active,
.pro-details .tab-btns .btn:hover{
    color: #fff;
    border-color: #17b5aa;
    background-color: #17b5aa;
}

.pro-details .tab-contents .parameter{
    padding: 40px 0;
    border-bottom: 1px solid #f6f6f6;
}

.pro-details .tab-contents .parameter ul {
    float: left;
    box-sizing: border-box;
    width: 33.33%;
    line-height: 25px;
    color: #a2a2a2;
}

.pro-details .poster img{
    width: 100%;
}

.pro-details .details-pic{
    text-align: center;
}

.pro-details .details-pic img{
    width: 100%;
}

.pro-details .reviewfilter{
    padding-bottom: 15px;
    border-bottom: 1px solid #f6f6f6;
}

.pro-details .reviewfilter li{
    float: left;
    margin-right: 20px;
}

.pro-details .reviewfilter li:last-child{
    margin-right: 0;
}

.pro-details .reviewfilter li a{
    display: block;
    font-size: 12px;
    color: #999;
    transition: color .35s;
}
.pro-details .reviewfilter li.active a,
.pro-details .reviewfilter li:hover a{
    color: #17b5aa;
}

.pro-details .review table{
    position: relative;
    table-layout: fixed;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    /*overflow: hidden;*/
}

.pro-details .review table tr{
    position: relative;
    vertical-align: top;
}

.pro-details .review table td{
    position: relative;
    height: 100%;
    padding: 40px 0;
    border-bottom: 1px solid #f6f6f6;
    vertical-align: top;
}

.pro-details .review .cell-head{
    width: 150px;
    min-width: 150px;
    max-width: 150px;
    text-align: center;
}

.pro-details .review .cell-content{
    box-sizing: border-box;
    padding: 40px 15px;
}

.pro-details .review .cell-other{
    box-sizing: border-box;
    width: 200px;
    min-width: 200px;
    max-width: 200px;
    padding: 0 20px;
    font-size: 12px;
    color: #999;
    text-align: center;
    vertical-align: middle;
}

.pro-details .review .headimg{
    width: 100px;
    height: 100px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
}

.pro-details .review .headimg img{
    width: 100%;
}

.pro-details .review .username{
    font-size: 14px;
    font-weight: bold;
}

.pro-details .review .time{
    position: absolute;
    top: 42px;
    right: 0;
    font-size: 12px;
    color: #999;
}

.pro-details .review .evaluate{
    margin: 15px 0;
}

.pro-details .review .evaluate p{
    text-align: left;
    color: #333;
}

.pro-details .review .buyershow li{
    float: left;
    width: 100px;
    margin-right: 10px;
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #f6f6f6;
    transition: border .35s;
}

.pro-details .review .buyershow li:hover{
    border-color: #17b5aa;
}

.pro-details .review .buyershow li a{
    display: block;
    width: 100%;
    height: 100%;
    outline: none;
    overflow: hidden;
}

.pro-details .review .buyershow li a img{
    width: 100%;
}

.pro-details .review .sellerreplie{
    margin-top: 15px;
    font-size: 12px;
    color: #17b5aa;
}

.pro-details .recommend{
    margin-bottom: 200px;
    /*padding-top: 100px;*/
    border-top: 3px solid #ebebeb;
}

.pro-details .recommend .title{
    font-size: 30px;
    text-align: center;
}

.pro-details .recommend .stockquantity{
    margin-bottom: 35px;
    font-size: 16px;
    color: #000;
}

.pro-details .recommend .grid{
    margin: 0 -8px;
}

.pro-details .recommend .grid-item{
    width: 25%;
    margin-bottom: 16px;
    padding: 0 8px;
}

.pro-details .recommend .grid-text{
    padding: 20px 10px;
    text-align: center;
    color: #a2a2a2;
    transition: color .2s;
}

.pro-details .recommend .grid-text .summary{
    text-align: center;
}

.pro-details .recommend .grid-link:hover .grid-text{
    color: #000;
}

.pro-details .recommend .btn-more{
    display: block;
    width: 150px;
    height: 40px;
    margin: 50px auto 0;
    border: 1px solid #17b5aa;
    text-align: center;
    line-height: 40px;
    color: #17b5aa;
    background-color: transparent;
}

.pro-details .recommend .btn-more:hover{
    color: #fff;
    background-color: #17b5aa;
}

.buybar{
    position: fixed;
    bottom: -55px;
    left: 0;
    z-index: 100;
    display: block;
    width: 100%;
    height: 50px;
    vertical-align: top;
    opacity: 0;
    transition: bottom .5s, opacity .5s;
}

.buybar.open{
    bottom: 0;
    opacity: 1;
}

.buybar .content{
    width: calc(72.25% - 20px);
    margin: 0 auto;
    background-color: #fff;
}

.buybar .left{
    box-sizing: border-box;
    height: 50px;
    padding-left: 25px;
    line-height: 50px;
    background-color: #fff;
    vertical-align: top;
}

.buybar .box{
    display: inline-block;
    height: 50px;
    margin-right: 30px;
    vertical-align: top;
}

.buybar .pricebox{
    color: #17b5aa;
    /*line-height: 50px;*/
}

.buybar .pricebox{
    color: #17b5aa;
}

.buybar .pprice{
    font-size: 30px;
}

.buybar .colorbox ul{
    height: 20px;
    margin: 15px 0;
    vertical-align: top;
}

.buybar .colorbox li{
    position: relative;
    display: inline-block;
    margin-right: 2px;
    vertical-align: top;
}

.buybar .colorbox li img{
    display: block;
    box-sizing: border-box;
    width: 20px;
    height: 20px;
    border: 1px solid #f6f6f6;
    transition: border .3s;
}

.buybar .colorbox li:hover img{
    border-color: #17b5aa;
}

.buybar .colorbox li .color-marker{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    background: 0 0 / 100% 100% no-repeat;
}

.buybar .colorbox li.active .color-marker{
    background-image: url("../images/icons/pcolor_marker.png");
}

.buybar .counter{
    position: relative;
    box-sizing: border-box;
    display: block;
    width: 70px;
    height: 20px;
    margin: 15px 0;
    cursor: pointer;
}

.buybar .counter .counter-add,
.buybar .counter .counter-reduce{
    position: absolute;
    top: 0;
    display: block;
    box-sizing: border-box;
    width: 20px;
    height: 100%;
    border: 1px solid #d6d6d6;
    text-align: center;
    line-height: 18px;
    background-color: #fff;
}

.buybar .counter .counter-reduce {
    left: 0;
}

.buybar .counter .counter-add{
    left: 50px;
}

.buybar .counter .counter-num {
    position: absolute;
    top: 0;
    left: 20px;
    width: 30px;
    height: 100%;
    box-sizing: border-box;
    border: 0;
    border-top: 1px solid #d6d6d6;
    border-bottom: 1px solid #d6d6d6;
    font-size: 12px;
    text-align: center;
    background-color: #e8e8e8;
}

.buybar .stockbox{
    font-size: 12px;
    color: #d0d0d0;
}

.buybar .right{
    box-sizing: border-box;
    border-left: 1px solid #f6f6f6;
    background-color: #fff;
}

.buybar .btn{
    float: left;
    display: block;
    width: 160px;
    height: 100%;
    text-align: center;
    line-height: 50px;
}

.buybar .btn.active,
.buybar .btn:hover{
    color: #fff;
    background-color: #17b5aa;
}




/*======================================================
                    footer nav page
======================================================*/
.footerpage .banner{
    position: relative;
    width: 100%;
    height: 425px;
    background: url("../images/usercenterheadbg1.jpg") center center no-repeat;
    overflow: hidden;
}

.footerpage .navigator{
    margin-top: -25px;
    text-align: center;
    vertical-align: top;
}

.footerpage .navigator ul{
    display: inline-block;
    margin-left: 1px;
    vertical-align: top;
}

.footerpage .navigator li{
    position: relative;
    float: left;
}

.footerpage .navigator li a {
    display: block;
    box-sizing: border-box;
    width: 200px;
    height: 50px;
    margin-left: -1px;
    border: 1px solid #f6f6f6;
    font-size: 14px;
    text-align: center;
    line-height: 50px;
    color: #a2a2a2;
    background-color: #fff;
    transition: all .35s;
}

.footerpage .navigator li a.active,
.footerpage .navigator li a:hover{
    border-color: #17b5aa;
    color: #fff;
    background-color: #17b5aa;
}

.footerpage .contents{
    position: relative;
    width: 60%;
    margin: 0 auto;
}

.footerpage .contents .content{
    display: none;
}

.footerpage .contents .content.active{
    display: block;
}

.footerpage .contents p{
    margin-bottom: 35px;
    color: #a2a2a2;
}

.footerpage .logoicon{
    width: 100%;
    height: 250px;
    background: url("../images/icons/logo_gray.png") center center no-repeat;
}
.btn-ok {
      display: block;
    box-sizing: border-box;
    width: 120px;
    height: 40px;
    font-size: 12px;
    line-height: 40px;
    text-align: center;
    color: #fff;
    background-color: #17b5aa;
}


.cartnum {
    position: absolute;
    top: -15px;
    right: -16px;
    z-index: -1;
    display: block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #17b5aa;
    color: #fff;
    font-size: 10px;
    text-align: center;
    line-height: 20px;
    display:none;
}


/* */
 .link_icon{
    box-sizing: border-box;
    width: calc(85% - 20px);
    margin: 0 auto;
    margin-bottom: 150px;
    height: 170px;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
 }
.link_icon_box{
    width:33%;
    height:100%;
    float: left;
    line-height: 170px;
    text-align: center;
}
.link_icon_box a{
    font-size: 16px;
    color: #333333;

}
.link_icon_box a:hover{
    color: #00bfd4;
}