.bg-gray {
    background-color: #f5f5f5;
}
.text-btn {
    color: #0084e9;
}

/* 头部 */

.header {
    border-bottom: 4px solid #0084e9;
}
.logo {
    display: block;
    padding: 10px 0;
}
.logo img{
    max-width: 100%;
    max-height: 50px;
}

/* 底部 */

.footer {
    border-top: 1px solid #ccc;
}
.copyright {
    color: #666;
    padding: 20px 0;
}
.copyright a {
    color: #666;
}
.copyright a:hover {
    color: #333;
}

/* 分页 */

.pagination {
    display: inline-block;
}
.pagination li {
    float: left;
}
.pagination li a {
    display: block;
    font-family: arial;
    background-color: #fff;
    border: 1px solid #ccc;
    margin: 0 5px;
    padding: 5px;
    min-width: 20px;
    text-align: center;
    border-radius: 3px;
    line-height: 20px;
}
.pagination li a:hover {
    background-color: #f6f6f6;
}
.pagination li a.current {
    color: #fff;
    background-color: #0084e9;
    border-color: #0072CA;
    cursor: default;
}
.pagination li a.disabled {
    background-color: #eee;
    color: #999;
    cursor: not-allowed;
}

/* 商品分类 */

.mall-filter {
    margin-top: 30px;
}
.f-row {
    overflow: hidden;
    border: 1px solid #ccc;
    margin-top: -1px;
    background-color: #eee;
}
.f-row .f-hd {
    width: 85px;
    font-size: 18px;
    line-height: 46px;
    text-align: center;
    float: left;
}
.f-row .f-bd {
    margin-left: 85px;
    background-color: #fff;
    border-left: 1px solid #ccc;
}
.f-row ul {
    list-style: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
}
.f-row ul li {
    float: left;
    margin-left: 20px;
    cursor: pointer;
    padding: 10px 0;
}
.f-row ul li span {
    display: block;
    line-height: 24px;
    padding: 0 15px;
    border: 1px solid transparent;
}
.row-type ul li.active span {
    background-color: #0084e9;
    color: #fff;
    border-radius: 13px;
}
.row-attr {
    display: none;
}
.row-attr ul li.active span {
    background-color: #f2f2f2;
    border-color: #ddd;
    color: #0084e9;
}

/* 商品列表 */

.mall-list {
    margin-left: -7px;
    margin-right: -7px;
}
.mall-list .item {
    display: block;
    margin: 30px 7px 0;
    background-color: #fff;
    padding: 10px;
}
.mall-list .item .picture {
    position: relative;
    overflow: hidden;
}
.mall-list .item .picture img {
    display: block;
    max-width: 100%;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: -webkit-transform .3s linear;
    transition: transform .3s linear;
}
.mall-list .item .picture .intro {
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    background-color: #0084e9;
    color: #fff;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 15px;
    visibility: hidden;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: all .3s linear;
    transition: all .3s linear;
}
.mall-list .item .btns {
    position: absolute;
    text-align: center;
    width: 100%;
    bottom: 0;
    padding: 15px 0;
    visibility: hidden;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition: all .3s linear;
    transition: all .3s linear;
}
.mall-list .item .btns .btn {
    margin: 0 15px;
    background-color: transparent;
    border-color: #fff;
    color: #fff;
}
.mall-list .item .title {
    text-align: center;
    height: 40px;
    line-height: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
    overflow: hidden;
}
.mall-list .item .baseprice {
    text-align: center;
    text-decoration: line-through;
    color: #999;
}
.mall-list .item .price {
    text-align: center;
    font-size: 12px;
    color: #333;
}
.mall-list .item .price span {
    color: #ff6700;
    font-size: 16px;
}
.mall-list .item:hover .picture img {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
}
.mall-list .item:hover .picture .intro {
    visibility: visible;
    -webkit-transform: translateX(0);
    transform: translateX(0);
}
.mall-list .item:hover .btns {
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}
.mod-pagi {
    padding: 30px 0;
    text-align: center;
}
@media screen and (max-width: 767px) {
    .mall-list .item .picture .intro {
        display: none;
    }
    .mall-list .item .btns {
        visibility: visible;
        background-color: rgba(0, 132, 233, 0.76);
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    .mall-list .item:hover .picture img {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

/* 数量控件 */

.quantity {
    width: 110px;
    height: 30px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: inline-block;
    vertical-align: middle;
}
.quantity .minus, .quantity .plus, .quantity .ipt {
    text-align: center;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    color: #666;
    border: 1px solid #999;
    float: left;
    font-family: Arial;
}
.quantity .minus {
    border-right: none;
    width: 30px;
    height: 30px;
    line-height: 30px;
    cursor: pointer;
}
.quantity .plus {
    border-left: none;
    width: 30px;
    height: 30px;
    line-height: 30px;
    cursor: pointer;
}
.quantity .ipt {
    height: 30px;
    width: 50px;
    font-size: 14px;
    line-height: 1.42857143;
    padding: 4px 0;
    margin: 0;
}
.quantity .disabled {
    border-color: #ccc;
    color: #999;
    background-color: #f2f2f2;
}
.quantity input[readonly] {
    border-color: #ccc;
    color: #999;
}

/* 商品详情 */
.mall-detail-buttons{
    margin-top: 5px;
    background-color: #f1f1f1;
}
.mall-detail-buttons .mark{
    color: #0084e9;
}
.mall-detail-buttons .btn{
    border: none;
    background-color: transparent;
    border-radius: 0;
}
.mall-detail-buttons .btn:hover{
    background-color: #0084e9;
    color: #fff;
}
.mall-detail-base {
    padding: 30px 0;
}
.mall-detail-base .picture {
    border: 5px solid #f2f2f2;
}
.mall-detail-base .picture img{
    max-width: 100%;
}
.mall-detail-base .number {
    margin-top: 10px;
    font-size: 16px;
    color: #f60;
}
.mall-detail-base .info {
    padding-left: 30px;
}
.mall-detail-base .info .title {
    font-size: 18px;
}
.mall-detail-base .info .intro {
    color: #999;
    margin-top: 10px;
    margin-bottom: 10px;
}
.mall-detail-base .info .price {
    margin-top: 10px;
    color: #666;
}
.mall-detail-base .info .yen {
    color: #ff6600;
    font-size: 22px;
    font-style: normal;
}
.mall-detail-base .info .quantitys {
    margin-top: 20px;
}
.mall-detail-base .info .note {
    color: #999;
    padding-left: 15px;
}
.mall-detail-base .info .links {
    margin-top: 10px;
}
.mall-detail-base .info .links a {
    margin-right: 15px;
}
.mall-detail-base .info .btns {
    margin-top: 20px;
}
.mall-detail-base .info .btns .btn {
    margin-right: 15px;
}
.mall-detail-base .other {
    border: 1px solid #ccc;
    background-color: #f6f6f6;
    padding: 15px;
}
@media screen and (max-width: 479px) {
    .mall-detail-base .info {
        margin-top: 10px;
        padding: 0;
    }
}
.mall-detail-tab {
    background-color: #f6f6f6;
    height: 48px;
}
.mall-detail-tab .tab-nav li {
    float: left;
    height: 46px;
    line-height: 46px;
    font-size: 18px;
    width: 33.3333333%;
    max-width: 200px;
    text-align: center;
    cursor: pointer;
    border-left: 1px solid transparent;
    border-right: 1px solid transparent;
    border-top: 2px solid transparent;
    border-bottom: none;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.mall-detail-tab .tab-nav li.active {
    background-color: #fff;
    height: 49px;
    border-color: #0084e9 #ccc transparent #ccc;
}
.mall-detail-content {
    padding: 20px;
    border: 1px solid #ccc;
    margin-bottom: 30px;
}
.mall-detail-content .panel {
    display: none;
}
.mall-detail-content .panel img {
    max-width: 100%;
}

/* 步骤条 */

.stepbar {
    background-color: #bbb;
    height: 6px;
    border-radius: 3px;
}
.stepbar li {
    width: 50%;
    float: left;
    height: inherit;
    background-color: #bbb;
}
.stepbar li:first-child {
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
}
.stepbar li:last-child {
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}
.stepbar li .number {
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
    background-color: #bbb;
    color: #fff;
    margin: -12px auto 0;
}
.stepbar li .text {
    margin-top: 5px;
    text-align: center;
}
.stepbar .done {
    background-color: #86cbff;
}
.stepbar .done .number {
    background-color: #86cbff;
}
.stepbar .doing {
    position: relative;
    background-color: #0084e9;
    border-radius: 3px;
}
.stepbar .doing .number {
    background-color: #0084e9;
}

/* 购物车为空 */

.cartEmpty {
    background: url(/public/images/cart-empty.png) no-repeat left center;
    padding: 60px 0 60px 130px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* 我的购物车 */

.mycart {
    margin-top: 20px;
    background-color: #fff;
    padding: 40px 30px 30px;
}
.cartContainer {
    margin-top: 50px;
}
.table-cart {
    display: table;
    width: 100%;
    border-spacing: 0;
    border-collapse: collapse;
}
.table-cart th {
    background-color: #eee;
    padding: 10px;
    color: #666;
    text-align: left;
}
.table-cart td {
    padding: 15px 10px;
    border-bottom: 1px solid #eee;
}
.table-cart .mall-item {
    display: block;
}
.table-cart .mall-item img {
    float: left;
}
.table-cart .mall-item .title {
    height: 60px;
    line-height: 20px;
    overflow: hidden;
    margin-left: 70px;
    max-width: 220px;
}
.table-cart .price-group {
    color: #666;
}
.table-cart .price-group .m {
    color: #ff6700;
}
.cartTotal {
    text-align: right;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
    margin-bottom: 30px;
    margin-top: 30px;
}
.cartTotal .rw {
    margin-top: 10px;
}
.cartTotal .yen {
    color: #ff6700;
    font-size: 24px;
}

/* 推荐商品 */

.recommend-mall {
    margin-top: 30px;
    padding-bottom: 30px;
    overflow: hidden;
}
.recommend-mall h3 {
    font-size: 16px;
    margin-bottom: 1em;
}
.recommend-mall h3 i {
    color: #ff6700;
    font-size: 24px;
    vertical-align: middle;
    line-height: 80%;
}
.recommend-mall .list {
    margin: 0 -7px;
}
.recommend-mall .item {
    display: block;
}
.recommend-mall .item {
    display: block;
    margin: 0 7px;
    background-color: #fff;
    padding: 10px;
}
.recommend-mall .item .picture img {
    display: block;
    max-width: 100%;
}
.recommend-mall .item .title {
    text-align: center;
    height: 40px;
    overflow: hidden;
    line-height: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
}
.recommend-mall .item .price {
    text-align: center;
    font-size: 12px;
    color: #333;
}
.recommend-mall .item .price span {
    color: #ff6700;
    font-size: 16px;
}
.recommend-mall .owl-pagination {
    position: absolute;
    right: 0;
    top: -30px;
}
.recommend-mall .owl-pagination .owl-page {
    width: 16px;
    height: 16px;
    background-color: #ccc;
    border-radius: 50%;
    float: left;
    margin-right: 10px;
}
.recommend-mall .owl-pagination .owl-page.active {
    background-color: #fbe463;
}

/* 商品分类 */

.mall-filter {
    margin-top: 20px;
    background-color: #fff;
}
.mall-filter dl {
    background-color: #eee;
}
.mall-filter dl dt {
    width: 60px;
    float: left;
    font-weight: bold;
    padding: 24px 0;
    text-align: right;
}
.mall-filter dl dd {
    margin-left: 75px;
    padding: 10px;
    background-color: #fff;
}
.mall-filter dl dd a {
    display: inline-block;
    height: 30px;
    line-height: 30px;
    margin: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 0 15px;
    color: #333;
}
.mall-filter dl dd a:hover {
    background-color: #eee;
}
.mall-filter dl dd a.active {
    background-color: #0084e9;
    border-color: #077eda;
    color: #fff;
}

/* 创建站点 */

.form-createSite .control-label {
    width: 90px;
    float: left;
    line-height: 38px;
}
.form-createSite .form-group {
    margin-bottom: 15px;
}
.form-createSite .form-control {
    margin-left: 90px;
}
.form-createSite .control-text {
    display: inline-block;
    height: 38px;
    line-height: 38px;
}
.form-createSite .control-help {
    margin-left: 90px;
}
.form-createSite .input-text {
    width: 100%;
    max-width: 300px;
}
.form-createSite .domain {
    width: 200px;
}
.control-error .input-text {
    border-color: #f00;
}
.control-error .control-help {
    color: #f00;
}

/* responsive header */

.Layout_header {
    width: 100%;
    background-color: #333;
    position: relative;
    z-index: 999;
    border-bottom: 3px solid #222;
    height: 57px;
}
.Layout_header .logo {
    position: absolute;
    left: 50px;
    height: 47px;
    padding: 5px 0;
}
.Layout_header .logo img {
    max-height: 100%;
}
.Layout_header .previewNav {
    text-align: center;
    height: 57px;
}
.Layout_header .previewNav span {
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
    width: 50px;
    height: 57px;
    line-height: 57px;
    background-image: url(../images/rulersIcos.png);
    background-repeat: no-repeat;
}
.Layout_header .previewNav span.pc {
    background-position: center 17px;
}
.Layout_header .previewNav span.pad {
    background-position: center -20px;
}
.Layout_header .previewNav span.x_pad {
    background-position: center -59px;
}
.Layout_header .previewNav span.mob {
    background-position: center -104px;
}
.Layout_header .previewNav span.x_mob {
    background-position: center -150px;
}
.Layout_header .previewNav .pc:hover, .Layout_header .previewNav .pc.active {
    background-position: center -196px;
}
.Layout_header .previewNav .pad:hover, .Layout_header .previewNav .pad.active {
    background-position: center -233px;
}
.Layout_header .previewNav .x_pad:hover, .Layout_header .previewNav .x_pad.active {
    background-position: center -272px;
}
.Layout_header .previewNav .mob:hover, .Layout_header .previewNav .mob.active {
    background-position: center -317px;
}
.Layout_header .previewNav .x_mob:hover, .Layout_header .previewNav .x_mob.active {
    background-position: center -363px;
}
.Layout_header .previewNav span.active {
    background-color: #222;
}
.Layout_header .previewNav a {
    display: inline-block;
    vertical-align: middle;
    color: #999;
    width: 50px;
    font-size: 20px;
    height: 30px;
    line-height: 30px;
}
.Layout_header .previewNavBtn {
    position: absolute;
    right: 50px;
    top: 13px;
}
.previewNavBtn a {
    background-color: #0084e9;
    padding: 0px 10px;
    height: 30px;
    line-height: 30px;
    display: inline-block;
    color: #fff;
    font-size: 14px;
    border-radius: 15px;
    margin-left: 5px;
}
.previewNavBtn a:hover {
    background-color: #0073ca;
}
.previewNavBtn a i {
    padding-right: 5px;
    font-size: 14px;
    -webkit-transition: all .2s;
    transition: all .2s;
    position: relative;
}
#showQRcode:hover i:after {
    content: "";
    border-bottom: 14px solid #fff;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    position: absolute;
    left: -7px;
    bottom: -16px;
    z-index: 4;
}
.previewNavS {
    position: absolute;
    right: 210px;
    top: 13px;
}
.previewNavS input[type="text"] {
    width: 200px;
    border: 1px solid #dedede;
    height: 30px;
    line-height: 30px;
    padding: 0 8px;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
}
.previewNavS input[type="button"] {
    border: 0;
    height: 32px;
    line-height: 32px;
    background-color: #0084e9;
    color: #fff;
    cursor: pointer;
    padding: 0 15px 0 8px;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
}
#showQRcode {
    position: relative;
}
#showQRcode img {
    position: absolute;
    z-index: 3;
    left: 0;
    top: 42px;
    width: 0px;
    height: 0px;
    opacity: 0;
    filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=0);
    visibility: hidden;
    -webkit-transition: all .2s;
    transition: all .2s;
    border: 10px solid #fff;
}
#showQRcode:hover img {
    visibility: visible;
    width: 100px;
    height: 100px;
    opacity: 1;
    filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=100);
}

/* preview */

.previewBox {
    position: absolute;
    top: 60px;
    bottom: 0;
    width: 100%;
}
.previewBox .previewCon {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0;
    overflow: hidden;
    background: url(../images/iframeBg.gif) repeat;
}
.previewBox .previewCon .iframeCon {
    margin: 0 auto;
    height: inherit;
    box-shadow: 0 8px 8px #999;
}
.previewBox .previewCon .iframeCon iframe {
    width: 100%;
    height: 100%;
    border: 0;
}
