/*
 * 初始化element的初始值
 * */
* {
    font: bold 16px/1.2em "FangSong";
}

body, h1, h2, h3, h4, h5, h6, p, ul {
    margin: 0;
}

ul {
    padding: 0;
    list-style: none;
}

img {
    width: 100%;
    height: 100%;
    border: none;
    vertical-align: middle;
    transition: all 0.3s ease;
    cursor: pointer;
}

a {
    text-decoration: none;
    color: #333333;
    transition: all 0.3s ease-in !important;
}

a:hover {
    color: #FF6E71;
}

/*这个class的a标签溢出隐藏*/
.set-img-tsn {
    display: block;
    overflow: hidden;
}

/*这个class的a标签里的图片,移入到的时候会放大*/
.set-img-tsn:hover img {
    transform: scale(1.3);
}
.more-style-wrap{
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 87;
}
/*more样式*/
a.more-style {
    margin: 30px 100px 0 auto;
    padding: 2px 12px 2px 8px;
    color: #fff;
    background: #FF6E71;
    text-align: center;
    font: bold 24px/30px "microsoft yahei";
    position: relative;
    z-index: 999;
}

a.more-style::before {
    content: "";
    position: absolute;
    width: 240%;
    height: 1px;
    background: #333333;
    top: 18px;
    z-index: -999;
    left: -68px;
}

a.more-style:after {
    content: "";
    position: absolute;
    width: 94px;
    height: 35px;
    border: 1px solid #333333;
    top: -5px;
    z-index: 1000;
    left: -5px;
    transition: all 0.3s ease;
}

a.more-style:hover {
    background: #fff;
    color: #FF6E71;
}

a.more-style:hover:after {
    width: 226px;
    height: 35px;
    top: 0;
    left: -68px;
}

/*清除浮动*/
.clearfix::after {
    content: "";
    display: block;
    clear: both;
    visibility: hidden;
}

/*100%父级*/
.ohp-width {
    width: 100%;
    height: auto;
    position: relative;
}

/*居中1200px包装*/
.center-wrap {
    width: 1200px;
    height: auto;
    margin: 0 auto;
    position: relative;
}

/*body*/
body {
    /*隐藏页面横向滚动条*/
    overflow-x: hidden;
    height: auto;
}

/******************************************************************/
/*header 树枝*/
.header {
    background: #fff url(../img/tupian1.jpg) no-repeat top left;
}

/*远山*/
.header::after {
    content: "";
    width: 638px;
    height: 180px;
    display: block;
    position: absolute;
    background: url(../img/right-sub-bg.png) no-repeat;
    right: 0;
    top: 0;
}

/*logo背景*/
.header .header-wrap .logo-wrap {
    width: 600px;
    padding-top: 70px;
    font-size: 0;
    background: #fff url(../img/logo-sub-bg.png) scroll no-repeat bottom left;
    /*背景图大小,这里第一个值X轴	 第二个值Y轴*/
    background-size: 41% 70%;
    margin: 0 auto 25px;
    /*让子元素所有inline-文字特性的元素居中*/
    text-align: center;
}

.header-wrap .logo-wrap .logo-link {
    width: 100px;
    height: 50px;
    display: block;
    margin: 0 auto 15px;
}

.header-wrap .logo-wrap p {
    font-size: 20px;
}

/*菜单*/
.header .nav {
    background: #FF6E71;
    border-top: 2px solid #565656;
    border-bottom: 3px solid #565656;
    position: relative;
}

.nav .menu-wrap {
    height: 50px;
    text-align: center;
}

.nav .menu-wrap ul {
    display: inline-block
}

.nav .menu-wrap ul li {
    float: left;
}

.nav .menu-wrap ul li {
    width: 110px;
}

.nav .menu-wrap ul li a {
    /*font缩写
     *第一个值   font-style(字体样式) 可以不写默认为italic
     *第二个值   font-variant(字体大小写) 可以不写默认为small-caps
     *第三个值   font-weight(字体加粗) 可以不写,这里加粗bold
     *第四个值	 font-size(字体大小) 必要,这里设置18px
     *第五个值	 line-height(字体行高) 必要,这里设置50px和父级高度一样使其文字垂直居中
     *第六个值	 font-family(字体库) 必要,这里要楷体为了保险所以写了英文
     *!注意! font-size/line-heiht 这里要用/来使用,则无效
     *!注意! font缩写顺序不能乱
     *  */
    font: bold 18px/50px "FangSong";
    display: block;
    color: #fff;
}

/*菜单滑动出现背景色*/
.ohp-wrap .menu-wrap ul li a.nav-sel,
.nav .menu-wrap ul li a:hover{
    background: rgba(255, 255, 255, .3);
}

/******************************************************/
/*left-aside 左边菜单*/
.left-aside {
    position: fixed;
    top: 200px;
    left: 0;
    z-index: 9998;
}

.left-aside .l-aside-wrap ul li {
    margin: 3px 3px 2px 0;
    width: 38px;
    height: 38px;
    cursor: pointer;
    position: relative;
    background: #7A6E6E url(../img/aside-sprites-iocns.png) no-repeat 1px 4px;
    background-size: 92% 580%;
    border-radius: 0 3px 3px 0;

}

.left-aside .l-aside-wrap ul li:nth-child(2) {
    background-position-y: -40px;
}

.left-aside .l-aside-wrap ul li:nth-child(3) {
    background-position-y: -86px;
}

.left-aside .l-aside-wrap ul li:nth-child(4) {
    background-position-y: -136px;
}

.left-aside .l-aside-wrap ul li:nth-child(5) {
    background-position-y: -187px;
}

.left-aside .l-aside-wrap ul li:hover {
    background-color: #FF6E71;
}

.left-aside .l-aside-wrap ul li:hover span {
    left: 36px;
    background: #FF6E71;
    color: #fff;
}

.left-aside .l-aside-wrap ul li span {
    display: block;
    left: -50px;
    width: 55px;
    height: 38px;
    font: bold 16px/38px "FangSong";
    text-align: center;
    position: absolute;
    transition: all 0.3s ease-in;
    z-index: -1;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;

}

/**************************************************/
/*旋转鲜花*/
#r_aside-active {
    width: 25px;
    height: 25px;
    display: block;
    background: url("../img/active-aside-icon.png") no-repeat;
    position: absolute;
    right: 30px;
    top: 12px;
    cursor: pointer;
    -webkit-animation: rotate 3s linear infinite;
    -moz-animation: rotate 3s linear infinite;
    -o-animation: rotate 3s linear infinite;
    animation: rotate 3s linear infinite;
}

@-webkit-keyframes rotate {
    from {
        -webkit-transform: rotate(0deg)
    }
    to {
        -webkit-transform: rotate(360deg)
    }
}

@-moz-keyframes rotate {
    from {
        -moz-transform: rotate(0deg)
    }
    to {
        -moz-transform: rotate(359deg)
    }
}

@-o-keyframes rotate {
    from {
        -o-transform: rotate(0deg)
    }
    to {
        -o-transform: rotate(359deg)
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg)
    }
    to {
        transform: rotate(359deg)
    }
}

.right-aside {
    display: none;
    position: absolute;
    top: 121px;
    right: 0;
    width: 219px;
    height: 676px;
    background: url("../img/aside-bg.png") no-repeat;
    z-index: 2;
    cursor: pointer;
}

/*******************************************************/
/*搜索search*/
.search {
    margin: 30px 0;
}

.search .form-wrap {
    width: 520px;
    margin: 0 auto;
}

.search .form-wrap form .search-border-wrap {
    padding: 24px 0 24px 2%;
    background: url("../img/search-middle-style.png") repeat-x;
    position: relative;
}

.search .form-wrap form .search-border-wrap:before,
.search .form-wrap form .search-border-wrap:after {
    width: 30px;
    height: 77px;
    content: "";
    position: absolute;
    top: 0;
    left: -24px;
    background: url("../img/search-head-style.png") no-repeat;
}

.search .form-wrap form .search-border-wrap:after {
    left: inherit;
    right: -24px;
    top: -2px;
    background: url("../img/search-foot-style.png") no-repeat;
}

.search .form-wrap form .search-border-wrap input[type="text"] {
    width: 80%;
    outline: 0;
    font-size: 24px;
    border: none;
    background: none;
}

.search .form-wrap form .search-border-wrap input[type="submit"] {
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 24px;
    padding: 0 20px;
    background: none;
    position: relative;
}

.search .form-wrap form .search-border-wrap input[type="submit"]:hover {
    color: #697833;
}

/******************************************/
/*mask-main遮罩*/
.mask-main,
.cart-iframe,
.text-iframe {
    display: none;
    top: 0;
    position: fixed;
    background: rgba(0, 0, 0, 0.5);
    width: 100vw;
    height: 100vh;
    z-index: 10086;
}

.mask-main .iframe-box,
.cart-iframe .iframe-container {
    overflow: hidden;
    width: 1000px;
    height: 540px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    border-radius: 8px;
    transform: scaleX(0) scaleY(0);
    transition: all 0.3s ease;
    box-shadow: 0 24px 38px 3px rgba(0, 0, 0, 0.14), 0 9px 46px 8px rgba(0, 0, 0, 0.12), 0 11px 15px -7px rgba(0, 0, 0, 0.2);
}

/* 购物车 */
.cart-iframe .iframe-container {
    width: 800px;
    height: 450px;
    background: #c6b2ac;
}

.cart-iframe .bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    top: 0;
    left: 0;
    z-index: 1;
    filter: blur(5px);
    -webkit-filter: blur(2px);
}

.cart-iframe .iframe-container .iframe-cover {
    width: 100%;
    height: 100%;
    padding: 40px;
    box-sizing: border-box;
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
}

.iframe-cover .left {
    width: 55%;
}

.iframe-cover .left img {
    border-radius: 3px;
    padding: 5px;
    box-sizing: border-box;
    box-shadow: inset 0px 0px 10px #000;
}

.iframe-cover .right {
    width: 45%;
    box-sizing: border-box;
    border-radius: 5px;
    box-shadow: 0 0 10px #000;
    padding: 0 5%;
    margin: 0 5%;
    background: rgba(255, 255, 255, .5);
}

.right .fl-name {
    display: block;
    font-size: 1.5em;
    text-overflow: ellipsis;
    overflow: hidden;
    line-height: 2em;
    border-bottom: 1px solid #bbb;
}

.right span {
    color: #000;
}

.right #money {
    font: bold 16px/1em '';
    color: #ff5000;
}

.right div {
    margin: 20px 0;
}

.right .buy {
    display: block;
    font: bold 16px/3em "";
    text-align: center;
    border: 1px solid #FFFFFF;
    color: #FFFFFF;
    transition: all .5s;
}

.right .buy:hover {
    background: #FFFFFF;
    color: #ff5000;
}

/* 显示 */
.out-box {
    transform: scaleX(1) scaleY(1) !important;
}

/* 关闭弹窗 */
.iframe-box #close,
.cart-iframe #cart-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    border-radius: 50px;
    background: #fff;
    cursor: pointer;
    box-shadow: 0 0 10px #333;
    transition: all;
    z-index: 997777;
}

.iframe-box #close:hover,
.cart-iframe #cart-close:hover {
    background: #ff5000;
    box-shadow: inset 0 0 10px #333;
}

/*弹窗内容*/
.mask-main .iframe-box .content-wrap .position-wrap {
    padding-left: 30px;
    height: 70px;
    line-height: 70px;
    background: #FF6E71;
}

/*弹窗标题*/
.mask-main .iframe-box .content-wrap .position-wrap > h3 {
    font-family: "Microsoft YaHei";
    font-size: 21px;
    color: #FFFFFF;
    display: inline-block;
    line-height: 70px;
}
.mask-main .iframe-box .content-wrap .box-wrap{
    background-color: #fff;
}
/*nav左菜单*/
.mask-main .iframe-box .content-wrap .box-wrap .tab-nav {
    width: 160px;
    height: 415px;
    padding-top: 50px;
    background: #f7f7f7;
    float: left;
}

.mask-main .iframe-box .content-wrap .box-wrap .tab-nav ul li {
    font: normal 14px/3.5em "Microsoft YaHei";
    cursor: pointer;
    text-align: center;
    border-bottom: 1px solid #e1e1e1 !important;
    color: #666;
}

.mask-main .iframe-box .content-wrap .box-wrap .tab-nav ul li:nth-child(1) {
    border-top: 1px solid #e1e1e1 !important;
}

.mask-main .iframe-box .content-wrap .box-wrap .tab-nav ul li:hover,
.tab-nav ul li.sel-active {
    border-right: 5px solid #FF6E71;
    color: #FF6E71 !important;
}

.mask-main .iframe-box .content-wrap .box-wrap .tab-item-wrap {
    width: 783px;
    padding: 20px;
    float: right;

}

/*items内容*/
/*item-1*/
.tab-items {
    display: none;
}

.tab-item-wrap .item-1 {
    border: 1px solid #e1e1e1;
    height: 140px;
}

.item-1 .user-info-wrap .details {
    overflow: hidden;
    padding: 28px 22px;
    float: left;
}

.details .portrait {
    float: left;
    overflow: hidden;
    width: 85px;
    height: 85px;
    margin-right: 15px;
}

.details .p_text h3 {
    color: #959595;
    font-size: 16px;
    margin-bottom: 13px;
}

.details .p_text h3 span {
    font-size: 12px;
    padding: 2px 6px;
    border: 1px solid #e1e1e1;
    margin-left: 12px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}

.details .p_text p.first {
    width: 85px;
}

.details .p_text p {
    font-size: 12px;

    display: block;
    float: left;
    padding: 5px 12px 5px 12px;
    border-left: 1px solid #e1e1e1;
    width: 65px;
}

.details .p_text p span {
    display: block;
    font-size: 18px;
    color: #eb6100;
    word-break: break-all;
}

.details .p_text {
    float: left;
}

.details .into {
    margin-top: 20px;
    display: inline-block;
}

.operate {
    text-align: center;
    border-left: 1px solid #e1e1e1;
    padding: 20px 0px;
    width: 162px;
    float: left;
}

.operate p {
    font-size: 14px;
    margin: 58px 0 7px;
}

.operate a {
    display: inline-block;
    padding: 3px 8px;
    color: #FFF;
    border-radius: 5px;
    background: #ff0000 !important;
    font-size: 14px;
}

.ortit {
    margin-top: 20px;
}

.ortit h3 {
    font-size: 16px;
    float: left;
    line-height: 24px;
}

.ortit a {
    float: right;
    line-height: 24px;
    padding-right: 18px;
    color: #707070;
    font-size: 14px;
}

/*item3*/

/*item4*/
.subtitle h2 {
    font-size: 20px;
    color: #717171;
    float: left;
    line-height: 43px;
}

.subtitle.wlt ul {
    float: right;
}

.subtitle.wlt ul li {
    float: left;
    font-size: 14px;
    padding: 0 22px;
}

.subtitle.wlt ul li a {
    line-height: 2em;
    padding-bottom: 15px;
}

.subtitle.wlt ul li a.on {
    border-bottom: 4px solid #eb6100;
    color: #eb6100;
}

.month {
    border: #e1e1e1 1px solid;
    border-top: none;
    height: 35px;
    line-height: 35px;
}

.month .sel_time {
    cursor: pointer;
    float: left;
    width: 150px;
    position: relative;
}

.month .sel_time .latest {
    padding-left: 18px;
    height: 35px;
    line-height: 35px;
    border-right: 1px solid #e1e1e1;
}

.month .addup {
    float: right;
    line-height: 35px;
}

.month .addup span {
    color: #eb6100;
    margin-right: 18px;
}

/*item2*/
.sctit {
    height: 75px;
    margin: 0 20px;
    border-bottom: 2px solid #e1e1e1;
}

.sctit h2 {
    float: left;
    font-size: 22px;
    font-weight: normal;
    color: #eb6100;
    text-align: center;
    line-height: 25px;
    padding: 25px 22px;
    border-bottom: 2px solid #eb6100;
    position: relative;
    z-index: 5;
}

.sctit p.curpagetxt {
    float: right;
    line-height: 25px;
    padding: 25px 22px 25px 0;
    font-size: 12px;
    color: #b5b5b5;
}

.sctit p.curpagetxt span.cur {
    color: #eb6100;
}

.sctit p.curpagetxt span em {
    display: inline-block;
    width: 35px;
    height: 4px;
    border-top: 1px solid #e1e1e1;
    margin: 0 4px;
}

/*item5*/
.subtitle {
    border-bottom: 1px solid #e1e1e1;
    overflow: hidden;
    border-bottom: #e1e1e1 1px solid;
}

.subtitle h2 {
    font-size: 20px;
    color: #717171;
    float: left;
    line-height: 43px;
}

.subtitle .addbtn {
    float: right;
    width: 105px;
    height: 40px;
    background: #eb6100;
    font-size: 14px;
    color: #fff;
    line-height: 40px;
    text-align: center;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    margin-bottom: 10px;
}

.addresslist ul li {
    overflow: hidden;
    color: #535353;
    border-bottom: #e1e1e1 1px solid;
    padding: 35px 15px;
}

.addresslist ul li .array {
    float: left;
    font-weight: lighter;
    font-size: 36px;
    color: #959595;
    line-height: 52px;
    width: 52px;
    height: 52px;
    border: #cecece 1px solid;
    border-radius: 50%;
    -moz-boder-radius: 50%;
    -webkit-boder-radius: 50%;
    -o-boder-radius: 50%;
    text-align: center;
    margin-right: 38px;
}
.addresslist ul li .infor {
    width: 470px;
    float: left;
    line-height: 1.8em;
    font-size: 12px;
    color: #959595;
    padding-top: 5px;
}

.addresslist ul li .infor p.t1 {
    color: #707070;
    font-size: 14px;
}

.addresslist ul li .infor p.t1 span {
    color: #eb6100;
    margin-right: 10px;
}

.addresslist ul li .infor p {
    width: 470px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5em;
}

/**********************************************/
/*footer 底部*/

.footer-help a,
.footer-help p{
    font-size: 13px;
    font-family: "Microsoft YaHei";
    color: #777;
}
.footer-help a:hover{
    color: #ff6e71;
}
.footer-help {
    font-size: 12px;
    padding-top: 30px;
    border-top: 1px solid #dcdcdc;
    border-bottom: 1px solid #dcdcdc;
    background-color: #f2f2f2;
    overflow: hidden;
}
.footer-help .container {
    width: 1200px;
    max-width: none !important;
    padding-right: 0;
    padding-left: 0;
    margin: 0 auto;
    overflow: hidden;
}
.footer-help .mod{
    float: left;
    width: 300px;
    height: 150px;
    padding-left: 30px;
    border-left: 1px solid #d9d9d9;
    box-sizing: border-box;
}
.footer-help .mod-a{
    padding-left: 0;
    border-left: none;
}
.footer-help .mod h4 {
    font-family: tahoma, arial, 'Hiragino Sans GB', '\5FAE\8F6F\96C5\9ED1', sans-serif;
    font-size: 14px;
    margin-top: 0;
    margin-bottom: 15px;
    color: #010101;
}
.footer-help .mod ul{
    padding: 0;
    margin: 0;
}
.footer-help .mod ul li {
    line-height: 24px;
}

.footer-help .mod-a li, .footer-help .mod-c li {
    display: inline-block;
    width: 80px;
}




/**************************************************/
/*返回顶部*/
.footer #back_top {
    display: none;
    position: fixed;
    width: 60px;
    height: 60px;
    right: 50px;
    bottom: 50px;
    background: url("../img/get-top.png") no-repeat center center;
    background-size: contain;
    z-index: 999;
    cursor: pointer;
    border-radius: 50%;
    transition: background-color .3s ease-in;

}

.footer #back_top:hover {
    background-color: rgba(255, 110, 113, .6);
}

.btn-numbox {
    overflow: hidden;
    margin-top: 20px;
}

.btn-numbox li {
    float: left;
}

.btn-numbox li .number,
.kucun {
    display: inline-block;
    font-size: 16px;
    vertical-align: sub;
}

.btn-numbox .count {
    overflow: hidden;
    margin: 0 10px;
}

.btn-numbox .count .num-jian,
.input-num,
.num-jia {
    float: left;
    width: 28px;
    height: 28px;
    line-height: 28px;
    text-align: center;
    font-size: 18px;
    cursor: pointer;
}

.btn-numbox .count .num-jian {
    color: #000;
}

.btn-numbox .count .num-jia {
    color: #baffbd;
}

.num-jia,
.num-jian {
    background: #28905A;
}

.btn-numbox .count .input-num {
    width: 48px;
    height: 26px;
    color: #333;
    border: none;
    cursor: text;
}