/*共用样式*/
/*
 * Swiper 2.7.6
 * Mobile touch slider and framework with hardware accelerated transitions
 *
 * http://www.idangero.us/sliders/swiper/
 *
 * Copyright 2010-2015, Vladimir Kharlampidi
 * The iDangero.us
 * http://www.idangero.us/
 *
 * Licensed under GPL & MIT
 *
 * Released on: February 11, 2015
*/
/* ===============================================================
Basic Swiper Styles
================================================================*/
.swiper-container {
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    direction: ltr;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -o-backface-visibility: hidden;
    backface-visibility: hidden;
    /* Fix of Webkit flickering */
    z-index: 1;
}
.vjs-poster {
    background-size: cover !important;
}
.swiper-wrapper {
    position: relative;
    width: 100%;
    -webkit-transition-property: -webkit-transform, left, top;
    -webkit-transition-duration: 0s;
    -webkit-transform: translate3d(0px,0,0);
    -webkit-transition-timing-function: ease;
    -moz-transition-property: -moz-transform, left, top;
    -moz-transition-duration: 0s;
    -moz-transform: translate3d(0px,0,0);
    -moz-transition-timing-function: ease;
    -o-transition-property: -o-transform, left, top;
    -o-transition-duration: 0s;
    -o-transform: translate3d(0px,0,0);
    -o-transition-timing-function: ease;
    -o-transform: translate(0px,0px);
    -ms-transition-property: -ms-transform, left, top;
    -ms-transition-duration: 0s;
    -ms-transform: translate3d(0px,0,0);
    -ms-transition-timing-function: ease;
    transition-property: transform, left, top;
    transition-duration: 0s;
    transform: translate3d(0px,0,0);
    transition-timing-function: ease;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}



.swiper-free-mode > .swiper-wrapper {
    -webkit-transition-timing-function: ease-out;
    -moz-transition-timing-function: ease-out;
    -ms-transition-timing-function: ease-out;
    -o-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    margin: 0 auto;
}

.swiper-slide {
    float: left;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}

/* IE10 Windows Phone 8 Fixes */
.swiper-wp8-horizontal {
    -ms-touch-action: pan-y;
}

.swiper-wp8-vertical {
    -ms-touch-action: pan-x;
}

/* ===============================================================
Your custom styles, here you need to specify container's and slide's
sizes, pagination, etc.
================================================================*/
.swiper-container {
    /* Specify Swiper's Size: */
    /*width:200px;
	height: 100px;*/
}

.swiper-slide {
    /* Specify Slides's Size: */
    /*width: 100%;
	height: 100%;*/
}

.swiper-slide-active {
    /* Specific active slide styling: */
}

.swiper-slide-visible {
    /* Specific visible slide styling: */
}
/* ===============================================================
Pagination Styles
================================================================*/
.swiper-pagination-switch {
    /* Stylize pagination button: */
}

.swiper-active-switch {
    /* Specific active button style: */
}

.swiper-visible-switch {
    /* Specific visible button style: */
}

.pagination {
    position: absolute;
    z-index: 20;
    bottom: 10px;
    width: 100%;
    text-align: center;
}

.swiper-pagination-switch {
    width: 16px;
    height: 16px;
    display: inline-block;
    background: none;
    border: 2px solid #fff;
    border-radius: 100%;
    margin: 0px 5px;
}

.swiper-active-switch {
    opacity: 1;
    background: #a62128;
    border: 2px solid #a62128;
}

.swiper-container {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}
* {
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-touch-callout: none;
    box-sizing: border-box;
}

html, body {
    -webkit-text-size-adjust: none;
    font-family: "微软雅黑" !important;
}

html {
    font-size: 625%;
}

body {
    color: #666666;
    margin: 0;
    background: #fff;
    line-break: 100%;
    font-family: "微软雅黑";
    font-size: 14px;
    font-size: 0.14rem;
    overflow-x: hidden;
}

.clear {
    clear: both;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
    empty-cells: show;
}

th, td {
    border-collapse: collapse;
}
a {
    color: #333333;
}
a:link {
    text-decoration: none;
}

a:visited {
    text-decoration: none;
}

img {
    vertical-align: middle;
    border: 0; /*添加以下属性是解决图片在微信浏览器下默认转换效果造成页面模糊*/
    -webkit-transform: scale(1)rotate(0)translate3d(0, 0, 0);
    transform: scale(1)rotate(0)translate3d(0, 0, 0);
    display: inline-block;
    outline: none;
    max-width: 100%;
    height: auto;
}

div, p, img, ul, ol, li, form, input, label, span, dl, dt, dd, h1, h2, h3, h4, h5, h6, input, button, figure {
    margin: 0;
    padding: 0;
}

ol, ul, li {
    list-style-type: none;
}

input[type=button] {
    -webkit-appearance: none;
    outline: none;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    height: auto;
    -webkit-appearance: none;
}

a, input {
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}
textarea {
    font-family: "微软雅黑";
}

button {
    cursor: pointer;
}

.clear {
    clear: both;
}

/*h1, h2, h3, h4, h5, h6 {*/
/*    font-weight: bold!important;*/
/*}*/
.fr-wrapper > div[style*='z-index:9999;width:100%;position:relative'] {
    position: absolute;
    top: -10000px;
    height: 0px;
    display: none;
    opacity: 0;
}

.fr-wrapper > div[style*='width: 100%; position: relative; z-index: 9999;'] {
    position: absolute;
    top: -10000px;
    height: 0px;
    display: none;
    opacity: 0;
}

.fr-box.fr-basic .fr-element {
    margin-top: -30px;
}

.second-toolbar a {
    display: none;
}

.fr-box.fr-basic .fr-element {
    margin-top: 0;
}
.banner .swiper-container a {
    display: block;
    height: 100%;
    width: 100%;
    position: relative;
}

.ly_link_title {
    width: 100%;
    height: auto;
    padding: 0.3rem 0;
}
.ly_link_title span {
    display: block;
    text-align: center;
    font-size: 0.24rem;
    font-weight: 600;
}
.ly_link_lsummary {
    width: 100%;
    height: 0.3rem;
    line-height: 0.3rem;
    background: #e5e5e5;
    margin-bottom: 0.3rem;
}
.ly_link_lsummary p {
    text-align: center;
}
.ly_link_ltext {
    padding-left: 0.2rem;
    padding-right: 0.1rem;
}
.ly_link_ltext p {
    margin-bottom: 0.15rem;
    font-size: 0.18rem;
    font-weight: 600;
}
.ly_link_ltext ul {
    padding-left: 0.2rem;
}
.ly_link_ltext ul li {
    float: left;
    width: 33%;
    height: 0.25rem;
    line-height: 0.25rem;
    text-align: left;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.ly_link_ltext ul li a:hover {
    color: #c30726;
}
/**
page start 2020-01-19
*/
.pages {
    font-size: 0.14rem;
    color: #ccc;
    text-align: center;
    padding-top: 0.6rem;
    padding-bottom: 0.15rem;
    clear: both;
    overflow: hidden;
    font-family: Arial, Helvetica, sans-serif;
}
.pages .prev {
    float: inherit
}

.pages .curr {
    color: #fff;
    background: #df0024;
    font-size: 0;
}

.pages .curr a {
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    cursor: text;
    border: 1px solid #ececec;
    background: #df0024;
    border-radius: 0.02rem
}

.pages .curr a:hover {
    background-color: #df0024;
    color: #fff;
    text-decoration: none;
}

.pages a {
    color: #666;
    text-decoration: none;
    padding: 3px 8px;
    border: 1px solid #CCC /*#ececec*/;
    border-radius: 0.02rem;
    font-size: 0.14rem;
    font-family: 'Microsoft YaHei';
}

.pages a:hover {
    background-color: #df0024;
    color: #fff;
    text-decoration: none;
}

.pages span {
    margin: 0 0.02rem;
}

.pages span a {
    padding: 0 0.15rem; /*color:#999999;*/
    color: #999999;
    background: none;
    height: 0.4rem;
    line-height: 0.4rem;
    font-size: 0.14rem;
    display: inline-block;
    background-color: #ffffff;
    border: solid 1px #dedede;
}

.pages .pagesTxt {
    height: 0.38rem;
    border: 1px solid #CCC /*#ececec*/;
    width: 0.45rem;
    text-align: center;
    margin-left: 0.2rem;
    font-size: 0.14rem;
    font-family: 'Microsoft YaHei';
    outline: none;
    vertical-align: top;
}

pages .pagesTxt:-moz-placeholder {
    color: #999;
}

pages .pagesTxt::-moz-placeholder {
    color: #999;
}

.pages .pagesTxt:-ms-input-placeholder {
    color: #999 !important;
}

.pages .pagesTxt::-webkit-input-placeholder {
    color: #999 !important;
}

.pages .pagesBtn {
    height: 0.38rem;
    border: none;
    width: 0.4rem;
    background: rgba(0,0,0,0.5);
    color: #fff;
    padding: 5px;
    padding: 0.05rem;
    vertical-align: top;
}
/**
    page end 2020-01-19
*/
/**
    header and banner and footer
    header top start 2020-01-17
*/
.ly_hd_header {
    width: 100%;
    height: auto;
    position: relative;
}
.ly_hd_header_top {
    width: 100%;
    height: 0.35rem;
    background: #f4f4f4;
    position: relative;
    z-index: 100;
}
.ly_content {
    max-width: 1200px;
    width: 12rem;
    min-width: 12rem;
    margin: 0 auto;
    position: relative;
    background: none;
    zoom: 1;
}

.ly_content::after {
    content: "";
    display: block;
    visibility: hidden;
    opacity: 0;
    clear: both;
}
.ly_hd_header_title {
    height: 0.35rem;
    line-height: 0.35rem;
    float: left;
    font-size: 0.12rem;
    color: #666666;
}

/**/

ul.header_cards{
    width: auto;
    float: left;
    height: 0.35rem;
}

ul.header_cards li{
    display: inline-block;
    position: relative;
    cursor: pointer;
    width: 0.35rem;
}


ul.header_cards li span{
    width:3rem;
    position: absolute;
    z-index: 999 !important;
    top: 0.35rem;
    left: 0;
    display: none;
}

ul.header_cards li:hover span {
    display: block;
}
/**/




.ly_hd_header_top_list {
    width: auto;
    float: right;
    text-align: right;
    height: 0.35rem;
}
.ly_hd_header_top_list > li {
    width: auto;
    height: 0.35rem;
    line-height: 0.35rem;
    float: left;
}
.ly_hd_header_top_list > li > div, .ly_hd_header_top_list > li > a {
    display: block;
    width: 100%;
    height: 100%;
    font-size: 0.12rem;
    color: #666666;
    padding-left: 0.08rem;
    position: relative;
    cursor: pointer;
}
.ly_hd_header_top_list > li a:hover, .ly_hd_header_top_list > li > div:hover {
    color: #c30726;
}
.ly_hd_header_top_list > li a span, .ly_hd_header_top_list > li > div span {
    font-size: 0.12rem;
    color: #666666;
    /*margin-left: 0.06rem;*/
}
.ly_hd_header_top_username span {
    font-size: 0.12rem;
    color: #666666;
    margin-left: 0.06rem;
}
.ly_hd_header_top_username a > span:nth-child(1) {
    display: inline-block;
    width: 0.2rem;
    position: relative;
    overflow: hidden;
}
.ly_hd_header_top_username a > span:nth-child(1) img {
    width: 0.2rem;
    height: 0.2rem;
    border-radius: 50%;
}

.ly_hd_header_top_username a > span:nth-child(2) {
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-left: 0 !important;
    line-height: 0.32rem;
}

.ly_hd_header_top_username a > span:nth-child(3) {
    overflow: hidden;
    display: inline-block;
}

.ly_hd_header_message {
    display: inline-block;
    width: 0.25rem;
    height: 0.23rem;
    position: relative;
    background: url(https://shijiaoke.oss-cn-beijing.aliyuncs.com/News/7e2166c98f7b6a70d8c85a2380a778f9.png)no-repeat;
    vertical-align: middle;
    overflow: hidden;
    background-size: 2rem 3.25rem;
    background-position: -1.78rem -1.16rem;
}
.ly_hd_header_msgTip {
    display: none;
    width: 0.2rem;
    height: 0.2rem;
    position: absolute;
    top: 0.04rem;
    left: 0.2rem;
    border: 1px solid #fff;
    border-radius: 50%;
    font-size: 0.12rem;
    color: #fff;
    background: #df0024;
    overflow: hidden;
    text-align: center;
    line-height: 0.18rem;
    font-weight: normal;
}
.ly_hd_header_top_list li:hover .ly_hd_header_email{
    display: block;
}
.ly_hd_header_email {
    display: none;
}
.ly_hd_header_email li {
    background: #f4f4f4;
    text-align: center;
    height: 0.25rem;
    line-height: 0.25rem;
}
.ly_hd_header_email li a {
    display: block;
    width: 100%;
    height: 100%;
    padding-left: 0;
    font-size: 0.12rem;
    color: #666666;
}
.ly_hd_header_wechat:hover div{
    display: block;
}
.ly_hd_header_wechat div {
    display: none;
    width: 1.8rem;
    height: auto;
    background: #fff;
    position: absolute;
    z-index: 9;
    top: 0.35rem;
    left: 50%;
    margin-left: -0.9rem;
}
.ly_hd_header_wechat div img {
    width: 100%;
}
/**
    header top end
    header middle start lzh 2020-01-17
*/
.ly_hd_header_search {
    width: 100%;
    height: 1.05rem;
    background: #fff;
}
.ly_hd_header_search_logo {
    width: 2.5rem;
    height: 0.95rem;
    float: left;
    padding-bottom: 0.1rem;
    margin-top: 0.1rem;
}
.ly_hd_header_search_logo span {
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}
.ly_hd_header_search_logo a > img {
    margin-top: 26px;
    height: 0.5rem;
    margin-right: 0.05rem;
    vertical-align: top;
}

.logo_content {
    display: inline-block;
    margin-top: 0.3rem;
    border-left: 1px solid #D2D2D2;
}
.logo_content p {
    margin-left: 0.1rem;
    height: 0.24rem;
    line-height: 0.24rem;
}
.logo_content p:last-child {
    font-size: 0.16rem;
}
.logo_content .logo_title {
    margin-left: 0.1rem;
    font-size: 0.18rem;
    font-weight: bold;
}

.ly_hd_header_search_main {
    width: 4.65rem;
    height: 1.05rem;
    float: left;
    position: relative;
}
.ly_hd_header_search_main_top {
    width: 100%;
    height: 0.16rem;
    font-size: 0.12rem;
    margin-top: 0.15rem;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-all;
}

.ly_hd_header_search_main_top span {
    color: #df0024;
}
.ly_hd_header_search_main_top a {
    font-size: 0.12rem;
    color: #666666;
    margin-left: 0.03rem;
}

.ly_hd_header_search_main_top a:hover{
    color: #df0024;
}
.ly_hd_header_search_main_bottom {
    width: 100%;
    position: relative;
    margin-top: 0.1rem;
}
.ly_hd_header_search_main_box {
    border: 2px solid #df0024;
    height: 0.45rem;
    line-height: 0.45rem;
    width: 100%;
}
/*.ly_hd_header_search_main_box > div.search_nav:hover .select_option{*/
/*    display: block;*/
/*}*/

.ly_hd_header_search_main_box > div.search_nav{
    height: 100%;
    color: #999999;
    width: 22%;
    line-height: 0.4rem;
    float: left;
    position: relative;
    font-size: 0.14rem;
}
.ly_hd_header_search_main_box .select_showbox {
    height: 100%;
    background: url(/img/search_ico.png)no-repeat 0.6rem center;
    text-indent: 1.1em;
    color: #666;
    line-height: 0.4rem;
    cursor: pointer;
}
.ly_hd_header_search_main_box .select_option {
    border: 2px solid #df0024;
    border-top: none;
    left: -2px;
    top: 0.41rem;
    position: absolute;
    z-index: 100;
    background: #fff;
    display: none;
}
.ly_hd_header_search_main_box .select_option li {
    text-indent: 1.5em;
    width: 0.9rem;
    cursor: pointer;
    color: #666;
}
.ly_hd_header_search_main_box .select_option li:hover {
    background-color: #F3F3F3;
    color: #666;
}
.ly_hd_header_search_main_box .select_option li.selected {
    background-color: #F3F3F3;
}
.ly_hd_header_search_main_box select {
    display: none;
    position: relative;
}
.ly_hd_header_search_main_box input {
    outline: none;
    width: 60%;
    height: 100%;
    font-size: 0.14rem;
    border: none;
    background: none;
    line-height: 0.4rem;
    float: left;
}
.ly_hd_header_search_main_box > span {
    float: right;
    width: 18%;
    height: 100%;
    line-height: 0.4rem;
    text-align: center;
    vertical-align: bottom;
    background: #df0024;
    border: none;
    cursor: pointer;
    position: relative;
    top: -2px;
    height: 0.45rem !important;
    right: -2px;
}
.ly_hd_header_search_main_box > span span {
    display: inline-block;
    width: 0.22rem;
    height: 0.22rem;
    background-image: url(/img/spiritmap-new.png);
    background-repeat: no-repeat;
    background-position: -47px -456px;
    vertical-align: middle;
}
.ly_hd_header_search_chat {
    float: right;
    text-align: right;
    height: 0.95rem;
    margin-top: 0.1rem;
    margin-right: 0.5rem;
}
.ly_hd_header_search_chat > div {
    width: 1rem;
    height: 1.05rem;
    line-height: 1.05rem;
    text-align: left;
    font-size: 0.14rem;
    color: #666;
    display: inline-block;
    cursor: pointer;
}
.ly_hd_header_search_chat > div span {
    display: inline-block;
    width: 0.36rem;
    height: 0.36rem;
    background-image: url(/img/spiritmap-new.png);
    background-repeat: no-repeat;
    /*background-position: 0 -310px;*/
    background-position: -56px -310px;
    vertical-align: middle;
    float: right;
    margin-top: 0.33rem;
}
.ly_hd_header_search_chat > div:hover, .ly_hd_header_search_chat span:hover {
    color: #df0024;
}
.ly_hd_header_search_chat > div:hover span {
    background-image: url(/img/spiritmap-new.png);
    background-repeat: no-repeat;
    background-position: -56px -310px;
}
.ly_hd_header_search_chat > span {
    width: 1rem;
    height: 1.05rem;
    line-height: 1.05rem;
    font-size: 0.14rem;
    color: #666;
    display: inline-block;
    margin-left: 0.2rem;
    text-align: left;
    cursor: pointer;
}
.ly_hd_header_search_chat > span span {
    display: inline-block;
    width: 0.36rem;
    height: 0.36rem;
    background-image: url(/img/spiritmap-new.png);
    background-repeat: no-repeat;
    background-position: -218px -310px;
    vertical-align: middle;
    float: right;
    margin-top: 0.33rem;
}
.ly_hd_header_search_chat > span:hover span {
    background-image: url(/img/spiritmap-new.png);
    background-repeat: no-repeat;
    background-position: -274px -310px;
}
/**
header middle end
header bottom/nav start lzh 2020-01-17
*/
nav {
    width: 100%;
    height: 0.6rem;
    position: absolute;
    left: 0rem;
    top: 1.4rem;
    z-index: 50;
    background: rgba(0,0,0,0.69);
}
nav ul {
    width: 12rem;
    height: auto;
    margin: 0 auto;
    position: relative;
}

nav ul::after{
    content: "";
    display: block;
    opacity: 0;
    visibility: hidden;
    clear: both;
}
nav ul li {
    width: 1.7rem;
    height: 0.6rem;
    text-align: center;
    float: left;
    text-align: center;
    position: relative;
}
nav ul li:hover {
    background: #c30726;
}
nav ul li a {
    width: 100%;
    display: block;
    height: 100%;
    text-align: center;
}
nav ul li a.active {
    background: #c30726;
}
nav ul li a p {
    font-size: 0.14rem;
    color: #ffffff;
    padding-top: 0.1rem;
}
nav ul li a span {
    font-size: 0.12rem;
    color: #fff;
    display: block;
    padding-top: 0.08rem;
    font-family: Arial;
    text-transform: uppercase;
}
.ly_hd_nav_menu {
    width: 100%;
    height: auto;
    position: absolute;
    z-index: 20;
    display: none;
    max-height: 5.83rem;
}
.ly_hd_nav_menu > div {
    width: 1.7rem;
    background: #b1adaa;
    height: 0.53rem;
    /*height: 0.58rem;*/
    overflow: hidden;
}

.ly_hd_nav_menu_left {
    width: 1.7rem;
    height: 0.53rem;
    /*height: 0.58rem;*/
    float: left;
}
.ly_hd_nav_banner:hover .ly_hd_nav_menu_left a {
    background: #fff;
    color: #df0024;
}
.ly_hd_nav_menu_left a {
    display: block;
    width: 100%;
    height: 100%;
    /*line-height: 0.53rem;*/
    line-height: 0.58rem;
    overflow: hidden;
    font-size: 0.14rem;
    color: #ffffff;
    padding-left: 0.2rem;
    text-align: left;
    background: rgba(223,0,36,0.9);
}
.ly_hd_nav_menu_right {
    width: 7.55rem;
    /*background: rgba(255,255,255,0.95);*/
    background: #ffffff;
    height: 4.8rem;
    /*left: 1.5rem;*/
    left: 1.7rem;
    overflow-y: scroll;
    display: none;
    position: absolute;
    top: 0;

    border-bottom: 1px solid #666;
    border-right: 1px solid #666;
    box-shadow: #666 5px 5px 5px 0px;
}
.ly_hd_nav_menu_right::-webkit-scrollbar {
    display: none;
}
.ly_hd_nav_menu_right_box {
    width: 100%;
    height: auto;
    float: left;
    position: relative;
    padding: 0rem 0rem 0.2rem 0rem;
    overflow: hidden;
}
.product_box{
    padding:0!important;
}
.ly_hd_nav_menu_right_box_bt {
    width: 3.6rem;
    height: auto;
    float: left;
    text-align: left;
    border-right: 1px solid #e4e4e4;
    padding-left: 0.3rem;
}
.ly_product_menu_right{
    width: 7.55rem;
    /*background: rgba(255,255,255,0.95);*/
    background: #FFFFFF;
    height: 4.24rem;
    /*left: 1.5rem;*/
    left: 1.7rem;
    overflow-y: scroll;
    display: none;
    position: absolute;
    top: 0;

    border-bottom: 1px solid #666;
    border-right: 1px solid #666;
    box-shadow: #666 5px 5px 5px 0px;
}
.product_menu_left{
    width:50%;
    height: auto;
    border-right: 1px solid #e4e4e4;
    float:left;
    padding-right: 20px;
    text-align: left;
    padding-bottom: 0.2rem;
}
.product_menu_right{
    width:46%;
    height: 100%;
    float:left;
    text-align: left;
}
.ly_hd_nav_menu_right_box_column .ly_hd_nav_menu_right_box_bt:nth-child(2){ border-right: 0 !important; }
.ly_hd_nav_menu_right_box_column .ly_hd_nav_menu_right_box_bt:nth-child(4){ border-right: 0 !important; }
.ly_hd_nav_menu_right_box_column .ly_hd_nav_menu_right_box_bt:nth-child(5){ border-right: 0 !important; }
.ly_hd_nav_menu_right_box_column .ly_hd_nav_menu_right_box_bt:nth-child(7){ border-right: 0 !important; }
.ly_hd_nav_menu_right_box_column .ly_hd_nav_menu_right_box_bt:nth-child(8){ border-right: 0 !important; }
.ly_hd_nav_menu_right_box_column .ly_hd_nav_menu_right_box_bt:nth-child(10){ border-right: 0 !important; }
.ly_hd_nav_menu_right_box_column .ly_hd_nav_menu_right_box_bt:nth-child(12){ border-right: 0 !important; }


.ly_hd_nav_menu_right_box_bt .nav_menu_list_title, .ly_hd_nav_menu_right_box_bt h3 {
    font-weight: bold;
    margin-top: 0.2rem;
}
.ly_hd_nav_menu_right_box_bt .nav_menu_list_title a, .ly_hd_nav_menu_right_box_bt h3 a {
    width: 100%;
    display: block;
    height: 100%;
    font-size: 0.15rem;
    font-weight: bold;
    color: #df0024;
    text-align: left;
}
.ly_hd_nav_menu_right_box_tree a {
    font-size: 0.14rem;
    color: #333333;
    margin-top: 0.1rem;
    line-height: inherit;
    background: none;
    padding-left: inherit;
    display: inline-block;
    width: auto;
    height: auto;
    padding-right: 0px;
    float: none;
    text-align: inherit;
    border-right: 1px solid #dcdcdc;
    padding: 0rem 0.05rem;
    height: 0.15rem;
    line-height: 0.14rem;
}
.ly_hd_nav_menu_right_box_tree a:last-child{
    border-right: none;
}
.ly_hd_nav_menu_right_block {
    overflow: hidden;
    padding-top: 0.1rem;
}

.ly_hd_nav_menu_right_block a {
    width: 50%;
    float: left;
    text-align: left;
    padding-left: 0.3rem;
    border: none;
    margin-top: 0.15rem;
}


.ly_hd_nav_menu_right_box_img1, .ly_hd_nav_menu_right_box_img2 {
    width: 3rem;
}
.ly_hd_nav_menu_right_img1, .ly_hd_nav_menu_right_img2 {
    width: 3rem;
}
.ly_hd_nav_menu_right_img1{
    margin-top: 0.2rem;
}
.ly_hd_nav_menu_right_img2 {
    margin-top: 0.3rem;
}
.ly_hd_nav_menu_right_box_img1 {
    margin-top: 0.67rem;
}
.ly_hd_nav_menu_right_box_img2 {
    margin-top: 0.15rem;
}
.ly_hd_nav_menu_right_box_tree a:hover {
    color: #df0024 !important;
}
.ly_hd_nav_menu_right_gngw {
    width: 4rem !important;
}

.ly_hd_nav_menu_right_gngw .ly_hd_nav_menu_right_box_bt {
    padding-left: 0.2rem !important;
    border: none !important;
    width: 100% !important;
    padding-right: 0.1rem;
}

.ly_product_anclass {
    min-width: 100% !important;
}
.ly_banner_nav_box {
    display: none;
    min-width: 100%;
    background: #404040;
    border: 1px solid #fff;
    padding: 0.2rem;
    position: absolute;
    z-index: 1;
    top: 0.39rem;
    padding-top: 20px;
    margin-top: 0px;
    padding-bottom: 20px;
    margin-bottom: 0px;
    width:100%;
}

.ly_banner_nav_box a {
    display: block;
    font-size: 0.14rem;
    color: #fffefe;
    margin-bottom: 0.1rem;
    line-height: inherit;
}

.ly_banner_nav_biao {
    max-width: 6rem;
    height: 0.5rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
/**
    header bottom/nav end
    header banner start lzh 2020-01-17
*/
.ly_banner_nav {
    width: 100%;
    height: auto;
    background: rgba(0,0,0,0.5);
    margin-top: -0.5rem;
    position: absolute;
    left: 0px;
    bottom: 0px;
    z-index: 2;
}
.ly_banner_nav:before{
    content: "";
    display: block;
    clear: both;
    visibility: hidden;
    opacity: 0;
}

.ly_banner_nav > div {
    max-width: 12rem;
    min-width: 12rem;
    height: auto;
    margin: 0 auto;
    white-space: nowrap;
}

.ly_banner_nav b {
    font-weight: normal;
    font-style: normal;
    font-size: 0.14rem;
    color: #fffefe;
    float: left;
    line-height: 0.5rem;
}

.ly_banner_nav ul {
    display: inline-block;
    float: left;
    white-space: nowrap;
}

.ly_banner_nav ul li {
    display: inline-block;
    float: left;
    position: relative;
}

.ly_banner_nav ul li a {
    font-size: 0.14rem;
    color: #fffefe;
    line-height: 0.5rem;
}

.ly_banner_nav ul li span {
    display: inline-block;
    font-size: 0.16rem;
    color: #fffefe;
    margin: 0px 0.25rem;
}
.ly_banner_nav ul li.ly_standard_allName {
    float: right;
    max-width: 6.8rem;
}
.ly_banner_nav ul li.ly_standard_allName span {
    padding: 0 0.25rem;
    margin: 0;
}
.ly_banner_nav ul li.ly_standard_allName a {
    width: 100%;
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    vertical-align: middle;
}
.ly_banner_wrap {
    width: 100%;
    height: 5rem;
    height: calc(100vw/3.8);
    height: -webkit-calc(100vw/3.8);
    height: -moz-calc(100vw/3.8);
    position: relative;
}


.ly_banner_wrap img, .index_banner img {
    width: 100%;
    height: 100%;
}

.ly_banner_nav ul li .ly_banner_nav_box a {
    display: block;
    font-size: 0.14rem;
    color: #fffefe;
    margin-bottom: 0.1rem;
    line-height: inherit;
    overflow: hidden;
}

.ly_banner_nav ul li .ly_banner_nav_box a:hover {
    color: #40ffff;
    text-decoration: underline;
}

.ly_banner_nav .ly_banner_nav_menu {
    font-size: 0.14rem;
    color: #fffefe;
    display: inline-block;
    position: relative;
    z-index: 2;
    line-height: 0.3rem;
    margin-top: 0.09rem;
    padding: 0px 0.5rem 0px 0.14rem;
    border: 1px solid #fff;
    background: url(/img/icon19.png) no-repeat 90% center;
    background-size: 0.1rem 0.07rem;
}

.ly_banner_nav .current {
    background: #404040 url(/img/icon19.png) no-repeat 90% center;
    border-bottom: none;
    background-size: 0.1rem 0.07rem;
}
.ly_banner_pagination {
    width: 2rem;
    position: absolute;
    z-index: 20;
    right: 1rem;
    bottom: 10px;
    text-align: center;
    cursor: pointer;
}
.ly_banner_text {
    position: absolute;
    text-align: left;
    left: 0px;
    font-size: 0.14rem;
    color: #ffffff;
    bottom: 0px;
    z-index: 2;
    background: rgba(0,0,0,0.52);
    width: 100%;
    height: 0.5rem;
    line-height: 0.5rem;
}
.ly_banner_text span {
    font-size: 0.14rem;
    color: #ffffff;
    margin-left: 0.05rem;
    text-align: left;
    display: inline-block;
}
/**
    header banner end  lzh 2020-01-17
    layout and footer  lzh 2020-01-18
*/
.bshare-custom {
    width: 0.5rem;
    height: 0.5rem;
    position: absolute;
    right: 0.05rem;
    top: 0;
    border-radius: 50%;
    display: block;
    opacity: 0;
    z-index: 1;
}

.bshare-custom a {
    width: 100%;
    height: 100% !important;
}
.ly_right_fix {
    width: 0.6rem;
    height: auto;
    right: 0.1rem;
    top: 50%;
    margin-top: -1.5rem;
    position: fixed;
    z-index: 60;
}
.ly_right_fix ul {
    width: 100%;
    height: auto;
}
.ly_right_fix ul li {
    position: relative;
    width: 0.6rem;
    height: 0.6rem;
    text-align: center;
    margin-bottom: 0.02rem;
}
.ly_right_fix ul li > a > .num {
    display: block;
    position: absolute;
    right: 0.02rem;
    top: 0.02rem;
    background: #df0024;
    width: 0.22rem;
    height: 0.22rem;
    line-height: 0.22rem;
    text-align: center;
    border-radius: 50%;
    color: #fff;
    font-size: 0.12rem;
}
.ly_right_fix ul li > span {
    display: block;
    width: 100%;
    height: 100%;
    cursor: pointer;
    position: relative;
    width: 0.60rem;
    height: 0.60rem;
    background-image: url(/img/spiritmap-new.png);
    background-repeat: no-repeat;
}
.ly_right_fix ul li > a {
    display: block;
    width: 100%;
    height: 100%;
    cursor: pointer;
    position: relative;
    width: 0.60rem;
    height: 0.60rem;
    background-image: url(/img/spiritmap-new.png);
    background-repeat: no-repeat;
}

.catalog_download_right_fix {
    background-position: -718px -1px
}

.catalog_download_right_fix:hover {
    background-position: -639px -1px;
}
.catalog_download_li i {
    z-index: 5000;
    color: #666;
    background: #fff;
    position: absolute;
    right: -6px;
    width: 84px;
    font-style: inherit;
    top: 89%;
    font-size: 12px;
    height: 21px;
    line-height: 21px;
    display: none;
    box-shadow: 0 0 12px 0px rgb(0 0 0 / 40%);
    transition: 0.1s;
}
.catalog_download_li:hover i {
    display: block;
}
/*帖子，新闻*/
.news_li_right_fix:hover .ly_right_fix_div {
    display: block;
}
.news_span_right_fix {
    background-position: -80px -90px;
}
.news_span_right_fix:hover {
    background-position: 1px -91px;
}
/*分享*/
.share_li_right_fix:hover .ly_right_fix_share {
    display: block;
}
.share_li_right_fix >span{
    background-position: -160px -90px;
}
.share_li_right_fix >span:hover {
    background-position: -240px -90px;
}
/*客服*/
.chat_right_fix{
    background-position: -479px -90px;
}
.chat_right_fix:hover {
    background-position: -559px -90px;
}
/*购物车*/
#floatShoppingCart>a{
    background-position: -399px -90px;
}
#floatShoppingCart>a:hover {
    background-position: -320px -90px;
}
/*回顶部*/
.to_top_right_fix{
    background-position: -719px -90px;
}

.to_top_right_fix:hover {
    background-position: -639px -90px;
}



.ly_right_fix_div {
    position: absolute;
    top: 0;
    right: 0.6rem;
    border-top: 1px solid #666;
    border-left: 1px solid #666;
    border-bottom: 1px solid #666;
    background: #fff;
    display: none;
}
.ly_right_fix_div a, .ly_right_fix_div span {
    width: 1rem;
    display: block;
    height: 0.35rem;
    line-height: 0.35rem;
    text-align: center;
    font-size: 0.16rem;
    cursor: pointer;
}


.ly_right_fix_div a:hover, .ly_right_fix_div span:hover {
    background: #f4f4f4;
}
.ly_right_fix_share {
    display: none;
    position: absolute;
    top: 0.05rem;
    right: 0.6rem;
    width: 2.8rem;
}
.ly_right_fix_share span, .ly_right_fix_share a {
    display: inline-block;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    cursor: pointer;
    background-image: url(/img/spiritmap-new.png);
    background-repeat: no-repeat;
}
.bds_weixin{
    background-position: -70px 0;
}
.share_qq {
    background-position: 0 0;
}
.share_xlwb {
    background-position: -281px -1px;
}
.share_qzone {
    background-position: -210px 0;
}
.share_link {
    background-position: -140px 0;
}

footer {
    width: 100%;
    height: auto;
    margin-top: 1rem;
    position: relative;
}
.ly_footer_top {
    width: 100%;
    height: auto;
    background: #3a3a3a;
    padding-top: 0.35rem;
    padding-bottom: 0.48rem;
    overflow: hidden;
}
.ly_footer_href {
    width: 100%;
    height: auto;
    padding-bottom: 0.35rem;
    border-bottom: 1px solid #4e4e4e;
    overflow: hidden;
}
.ly_footer_href_left {
    width: auto;
    height: 0.21rem;
    /*float: left;*/
    margin-top: 0.02rem;
}
.ly_footer_href_left ul {
    width: 100%;
    height: auto;
}
.ly_footer_href_left ul li {
    width: auto;
    height: 0.17rem;
    line-height: 0.16rem;
    float: left;
    padding: 0px 0.1rem;
    border-left: 0.02rem solid #cecece;
}
.ly_footer_href_left ul li a {
    font-size: 0.16rem;
    color: #cecece;
}
.ly_footer_href_left ul li a:hover {
    color: #df0024;
}
.ly_footer_href_left ul li:first-child {
    padding-left: 0px;
    border-left: none;
}
.ly_footer_href_right {
    width: auto;
    height: 0.2rem;
    /*float: right;*/
    margin-left: 0px;
    margin-top:0.15rem;
}
.ly_footer_href_right a {
    font-size: 0.16rem;
    color: #ccc;
    padding: 0px 0.1rem;
    border-right: 0.02rem solid #999999;
    height: 0.17rem;
    line-height: 0.16rem;
    display: inline-block;
    margin:0.05rem 0;
}
.ly_footer_href_right a:hover {
    color: #df0024;
}
.ly_footer_href_right .ly_footer_href_right_link {
    font-size: 0.16rem;
    color: #ccc;
    display: inline-block;
    padding-left: 0.3rem;
    background: url(/img/icon18.png) no-repeat left center;
    background-size: 0.25rem 0.11rem;
    /*margin-left: 0.3rem;*/
}
.ly_footer_href_right a:last-child {
    border-right: none;
}
.ly_footer_bottom {
    width: 100%;
    margin-top: 0.5rem;
}
.ly_footer_bottom_contact {
    width: 3.9rem;
    height: auto;
    float: left;
}
.ly_footer_bottom_contact p {
    font-size: 0.14rem;
    color: #cccccc;
    line-height: 0.28rem;
}
.ly_footer_bottom_contact p a {
    color: #cccccc;
}
.ly_footer_bottom_phone {
    width: 4rem;
    height: auto;
    float: left;
    text-align: center;
    border-left: 1px solid #4e4e4e;
    border-right: 1px solid #4e4e4e;
    padding: 0.2rem 0;
}
.ly_footer_bottom_phone .tel>img{
    position: relative;
    bottom: 0.05rem;
    width: 0.36rem;
}
.ly_footer_bottom_phone p {
    /* font-size: 0.14rem; */
    color: #cccccc;
    /* line-height: 0.28rem; */
    font-size: 0.3rem;
    /* color: #df0024; */
    font-weight: bold;
    font-family: Arial;
}
.ly_footer_bottom_phone .tel {
    font-size: 0.3rem;
    color: #df0024;
    font-weight: bold;
    font-family: Arial;
    margin-top: 0.2rem;
}
.ly_footer_bottom_phone .ly_footer_chat {
    margin-top: 0.1rem;
    display: block;
    width: 2rem;
    height: 0.55rem;
    line-height: 0.55rem;
    background: #df0024 url(/img/icon15.png) no-repeat 0.29rem center;
    background-size: 0.35rem 0.36rem;
    padding-left: 0.8rem;
    font-size: 0.24rem;
    color: #ffffff;
    border-radius: 0.1rem;
    cursor: pointer;
}
.ly_footer_bottom_wechat {
    width: 4.1rem;
    height: auto;
    float: right;
    text-align: center;
}
.ly_footer_bottom_wechat img {
    margin-bottom: 0.05rem;
    width: 1.35rem;
    background: #fff;
}
.ly_footer_bottom_wechat {
    font-size: 0.16rem;
    color: #ffffff;
}
.footer-icon{
    display: inline-block;
    background-image: url('/img/iconAll1.png');
    background-repeat: no-repeat;
    width: 0.35rem;
    position: relative;
    height: 0.3rem;
    transform: scale(0.7);
    background-position: -514px -24px;
    bottom: 0.06rem;
}
.ly_footer_bottom_line {
    width: 100%;
    height: auto;
    text-align: center;
    padding: 0.15rem 0;
    font-size: 0.14rem;
    background: #1d1d1d;
}
.ly_footer_bottom_line a {
    color: #666666 !important;
}
.ly_footer_bottom_line a:hover {
    color: #989898 !important;
    text-decoration: underline;
}
/**
layout and footer end  lzh 2020-01-18
wechat shared start    lzh 2020-01-18
*/
.wechat_share_img {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    display: none;
}

.wechat_share_yy {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0,0,0,.2);
}

.wechat_share_content {
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -1.5rem;
    margin-top: -1.75rem;
    background: #fff;
}

.wechat_share_title {
    width: 100%;
    height: 0.35rem;
    line-height: 0.35rem;
    font-size: 0.16rem;
    padding-left: 0.1rem;
    border-bottom: 1px solid #ccc;
}

.wechat_share_title span {
    color: #df0024;
    margin-left: 0.05rem;
}

.wechat_share_title img {
    width: 0.2rem;
    float: right;
    margin-top: 0.07rem;
    margin-right: 0.1rem;
    cursor: pointer;
}

.wechat_share_imgwidth {
    width: 100%;
    height: 100%;
    padding: 0.2rem;
}
.wechat_share_imgwidth{
    height: 100%;
    width: 100%;
}
/**
wechat shared end  lzh 2020-01-18
login model start lzh  2020-01-19
*/
.ly_login_wrap {
    display: none;
    width: 4.9rem;
    margin: 0 auto;
}
.ly_login_content {
    width: 4.9rem;
    height: 5.5rem;
    background: #fff;
    padding: 0.3rem 0.39rem 0px 0.39rem;
}
.ly_login_title {
    width: 100%;
    height: auto;
    text-align: center;
    margin-bottom: 0.15rem;
    overflow: hidden;
}
.ly_login_title ul {
    width: 100%;
    height: auto;
}
.ly_login_title ul li {
    width: 1rem;
    height: 0.5rem;
    line-height: 0.5rem;
    color: #505050;
    font-size: 0.18rem;
    float: left;
    text-align: left;
    cursor: pointer;
    margin-right: 0.2rem;
}
.ly_login_title ul li:hover {
    color: #e21939;
    border-bottom: 0.02rem solid #e21939;
}
.ly_login_title ul li.lactive {
    color: #e21939;
    border-bottom: 0.02rem solid #e21939;
}
.ly_login_form {
    width: 100%;
    margin-top: 0.25rem;
}
.ly_login_code {
    width: 100%;
    display: block;
}
.ly_login_phone {
    display: none;
    width: 100%;
}
.ly_login_list {
    width: 100%;
    margin-bottom: 0.35rem;
    overflow: hidden;
}
.ly_login_list button {
    width: 100%;
    height: 0.6rem;
    line-height: 0.6rem;
    display: block;
    text-align: center;
    background: #e21939;
    border: 1px solid #e21939;
    transition: all 0.3s linear;
    color: #fff;
    font-size: 0.22rem;
    border-radius: 0.03rem;
}
.ly_login_input_phone {
    width: 100%;
    height: 0.6rem;
    background: #f3f3f3;
    border: none;
    font-size: 0.16rem;
    color: #999999;
    padding-left: 0.2rem;
}
.ly_login_input_code {
    width: 2.2rem;
    height: 0.6rem;
    background: #f3f3f3;
    border: none;
    font-size: 0.16rem;
    color: #999999;
    padding-left: 0.2rem;
}
.ly_login_input_captcha img {
    width: 1.75rem;
    height: 0.6rem;
    margin-left: 0.1rem;
}
.ly_login_input_smscode {
    width: 2.2rem;
    height: 0.6rem;
    background: #f3f3f3;
    border: none;
    font-size: 0.16rem;
    color: #999999;
    padding-left: 0.2rem;
}
.ly_login_input_smscodebtn {
    display: inline-block;
    width: 1.75rem;
    cursor: pointer;
    height: 0.6rem;
    line-height: 0.6rem;
    text-align: center;
    border: none;
    background: #e21939;
    font-size: 0.16rem;
    color: #fff;
    margin-left: 0.12rem;
}
.ly_login_mgtop-20 {
    margin-top: -0.2rem;
}
.ly_login_list_left {
    float: left;
    width: 2.2rem;
}
.ly_login_list_left input {
    display: none;
}
.ly_login_list_left span {
    font-size: 0.16rem;
    color: #777777;
    vertical-align: top;
}
.ly_login_list_left label {
    background-color: #f3f3f3;
    border-radius: 0.25rem;
    display: inline-block;
    position: relative;
    margin-right: 0.05rem;
    -webkit-transition: all 0.1s ease-in;
    transition: all 0.1s ease-in;
    width: 0.5rem;
    height: 0.2rem;
    cursor: pointer;
}
.ly_login_list_right {
    float: right;
    text-align: right;
}


.ly_login_list_left_ck + label {
    background-color: #f3f3f3;
    border-radius: 0.25rem;
    display: inline-block;
    position: relative;
    margin-right: 0.05rem;
    -webkit-transition: all 0.1s ease-in;
    transition: all 0.1s ease-in;
    width: 0.5rem;
    height: 0.2rem;
    cursor: pointer;
}

.ly_login_list_left_ck + label:after {
    content: ' ';
    position: absolute;
    top: 0;
    -webkit-transition: box-shadow 0.1s ease-in;
    transition: box-shadow 0.1s ease-in;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 1rem;
    box-shadow: inset 0 0 0 0 #eee, 0 0 1px rgba(0,0,0,0.4);
}

.ly_login_list_left_ck + label:before {
    content: ' ';
    position: absolute;
    background: white;
    top: 1px;
    left: 1px;
    z-index: 999999;
    width: 0.18rem;
    -webkit-transition: all 0.1s ease-in;
    transition: all 0.1s ease-in;
    height: 0.18rem;
    border-radius: 1rem;
    box-shadow: 0 0.03rem 1px rgba(0,0,0,0.05), 0 0px 1px rgba(0,0,0,0.3);
}

.ly_login_list_left_ck:active + label:after {
    box-shadow: inset 0 0 0 0.2rem #eee, 0 0 1px #eee;
}

.ly_login_list_left_ck:active + label:before {
    width: 0.37rem;
}

.ly_login_list_left_ck:checked:active + label:before {
    width: 0.37rem;
    left: 0.2rem;
}

.ly_login_list_left_ck + label:active {
    box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px 1px 3px rgba(0,0,0,0.1);
}

.ly_login_list_left_ck:checked + label:before {
    content: ' ';
    position: absolute;
    left: 0.31rem;
    border-radius: 1rem;
    z-index: 1;
}

.yp-riddler-mark {
    /*display: none !important;*/
    color: #e8e3e3 !important;
}

.ly_login_list_left_ck:checked + label:after {
    content: ' ';
    font-size: 1.5em;
    position: absolute;
    background: #e21939;
    box-shadow: 0 0 1px #e21939;
}
.ly_login_list_right {
    float: right;
    text-align: right;
}
.ly_login_list_right span {
    font-size: 0.16rem;
    cursor: pointer;
}

.ly_login_bottom {
    width: 100%;
}
.ly_login_bottom_third {
    text-align: center;
    font-size: 0.16rem;
    color: #505050;
    background: url(/img/xian.png) no-repeat center center;
    background-size: 4.1rem 1px;
}
.ly_login_bottom_text {
    text-align: center;
    margin-top: 0.25rem;
}
.ly_login_bottom_text span:nth-child(1) {
    background: url(/img/icon39.png) no-repeat;
    width: 0.6rem;
    height: 0.6rem;
    display: inline-block;
    background-size: 0.6rem 0.6rem;
}
.ly_login_bottom_text a:nth-child(2) {
    background: url(/img/icon40.png) no-repeat;
    width: 0.6rem;
    height: 0.6rem;
    margin-left: 0.3rem;
    display: inline-block;
    background-size: 0.6rem 0.6rem;
}
/**
    login model end  lzh 2020-01-18
    set password start lzh  2020-01-19
*/
.ly_password_set_wrap {
    background: #fff;
    display: none;
}
.ly_password_tel {
    width: 100%;
    height: auto;
    padding: 0.2rem;
}
.ly_password_tel span {
    display: inline-block;
    font-size: 0.16rem;
    color: #333333;
}
.ly_password_tel form {
    width: 100%;
    height: auto;
    margin: 0.05rem 0rem;
}
.ly_password_tel input {
    width: 3rem;
    height: 0.5rem;
    background: #f3f3f3;
    padding-left: 0.18rem;
    font-size: 0.14rem;
    color: #999999;
    border: 1px solid #c10728;
}
.ly_password_tel button {
    width: 1rem;
    height: 0.5rem;
    line-height: 0.5rem;
    text-align: center;
    color: #fff;
    font-size: 0.14rem;
    background: #c10728;
    border: none;
    margin-left: 0.05rem;
}
/**
    set password end  lzh 2020-01-19
    ret password start lzh  2020-01-19
*/
.ly_password_ret_pass {
    display: none;
}
.ly_login_form {
    width: 100%;
    height: auto;
    margin-top: 0.25rem;
}
.ly_password_ret_content {
    width: 100%;
    height: auto;
    padding: 0.2rem;
}
/**
    ret password end  lzh 2020-01-19
    phone tel start lzh  2020-01-19
*/
.ly_tel_phone_wrap {
    background: #fff;
    display: none;
}
.ly_tel_phone_content {
    width: 100%;
    padding: 0.2rem;
}
.ly_tel_phone_title {
    display: inline-block;
    font-size: 0.16rem;
    color: #333333;
}
.ly_tel_phone_content p {
    color: #999999;
    font-size: 0.12rem;
    line-height: 0.28rem;
}
.ly_tel_phone_content form {
    width: 100%;
    height: auto;
    margin: 0.05rem 0rem;
}
.ly_tel_phone_content form input {
    width: 3rem;
    height: 0.5rem;
    background: #f3f3f3;
    padding-left: 0.18rem;
    font-size: 0.14rem;
    color: #999999;
    border: 1px solid #c10728;
}
.ly_tel_phone_content form button {
    width: 2rem;
    height: 0.5rem;
    line-height: 0.5rem;
    text-align: center;
    color: #fff;
    font-size: 0.14rem;
    background: #c10728;
    border: none;
    margin-left: -0.05rem;
    vertical-align: bottom;
}
/**
    phone to end  lzh 2020-01-19
    hongbao start lzh  2020-01-19
*/
.layout_hongbao {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: none;
}

.layout_yy {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.36);
}

.layout_img {
    position: absolute;
    width: 3rem;
    left: 50%;
    top: 50%;
    margin-top: -1.62rem;
    margin-left: -1.5rem;
}

.layout_close {
    width: 0.25rem;
    position: absolute;
    right: 0.2rem;
    top: 0.2rem;
    z-index: 1;
    cursor: pointer;
}

.layout_close img {
    width: 0.25rem;
}

.layout_hongbao_img {
    width: 3rem;
    height: 3.24rem;
}

.layout_hongbao_href {
    display: inline-block;
    width: 0.9rem;
    height: 0.9rem;
    border-radius: 50%;
    position: absolute;
    left: 1.05rem;
    top: 1.62rem;
}
b.ly_hd_bz{
    font-weight:normal;
    padding:0 0.02rem;
}
/**
    hongbao end  lzh 2020-01-19
*/

#editor em, .fr-emoticon {
    width: 0.2rem;
    height: 0.2rem;
    display: inline-block;
    vertical-align: middle;
}
.ly_jingwang {
    width: 300px;
    margin: 0 auto;
    padding: 15px 0;
}
.ly_jingwang img{
    vertical-align:top;
    float:left;
}
.ly_anbei {
    display: inline-block;
    text-decoration: none;
    height: 20px;
    line-height: 20px;
}
.ly_anbei p {
    float: right;
    height: 20px;
    line-height: 20px;
    margin: 0px 0px 0px 5px;
    color: #939393;
}
.banners {
    height: 150px !important;
    position: relative;
}
.banners_product {
    position: relative;
}

.p_daohan {
    width: 100%;
    height: auto;
    margin-top: -0.5rem;
    position: absolute;
    left: 0px;
    z-index: 2;
    background: none;
    bottom: 20px;
}

.p_daohan_product {
    width: 100%;
    height: auto;
    margin-top: 0.3rem;
    position: absolute;
    left: 0px;
    z-index: 2;
    background: none;
}

.p_list {
    max-width: 14rem;
    min-width: 12rem;
    height: auto;
    margin: 0 auto;
    white-space: nowrap;
}
.pro_li {
    margin-left: 1rem;
    height: 0.3rem;
    line-height: 0.3rem;
    font-size: 0.16rem;
    display: inline-block;
    border-bottom: 1px solid #df0024;
}

.pro_li span {
    font-size: 0.16rem;
}

.chat-span-hover{
    cursor: pointer;
}

.chat-span-hover:hover{
    color: #df0024;
}

#lim_mini{
    box-sizing: content-box;
    background-color: #df0024 !important;
    right: -1000px;
}

.post-icon-img {
    height: 15px;
    margin-left: 0.05rem;
    vertical-align: baseline;
}
/*设置密码 */
#setpasswords {
    background: #fff;
    display: none;
}

.setpasswords_btn {
    width: 1rem;
    height: 0.5rem;
    line-height: 0.5rem;
    text-align: center;
    color: #fff;
    font-size: 0.14rem;
    background: #c10728;
    border: none;
    margin-left: 0.05rem;
}
#setpasswords .install{
    display: inline-block;
    font-size: 0.16rem;
    color: #333333;
}
#setpasswords input {
    width: 3rem;
    height: 0.5rem;
    background: #f3f3f3;
    padding-left: 0.18rem;
    font-size: 0.14rem;
    color: #999999;
    border: 1px solid #c10728;
}
/*设置密码 */
