@charset "UTF-8";

@font-face {
    font-family : "PingFang SC";
    src :
        url("/font/PingFang_SC.ttf");
}

/*css 初始化 */
html, body, ul, li, ol, dl, dd, dt, p, h1, h2, h3, h4, h5, h6, form, div, input, section, article {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
a,
a:hover,
a:focus,
a.active {
    text-decoration: none;
}
body {
    font-family: "PingFang SC", Helvetica, Arial, sans-serif;
    font-size: 14px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #333;
    background: #ffffff;
}

li {
    list-style: none;
}

fieldset, img, input, button {
    border: none;
    padding: 0;
    margin: 0;
    outline-style: none;
}

ul, ol {
    list-style: none;
}

.btn-trash {
    display: none;
}
button {
    cursor: pointer;
}

input {
    padding-top: 0;
    padding-bottom: 0;
    font-family: "SimSun", "宋体";
    padding-left: 20px;
}

select, input {
    vertical-align: middle;
}

select, input, textarea {
    font-size: 14px;
    margin: 0;
    outline: none;
    background: transparent;
}

textarea {
    resize: none;
}

.container {
     padding:0;
}

/*防止拖动*/
img {
    border: 0;
    font-size: 0;
    vertical-align: middle;
}

/*  去掉图片低测默认的3像素空白缝隙*/
table {
    border-collapse: collapse;
}

a {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

h1, h2, h3, h4, h5, h6 {
    text-decoration: none;
    font-weight: normal;
    font-size: 100%;
}

s, i, em {
    font-style: normal;
    /*字体没有样式*/
    text-decoration: none;
}

html, body {
    height: 100%;
}

body {
    min-width: 1200px;
}

/* 清除 浮动*/
.overflow {
    overflow: auto;
    zoom: 1;
}

.clearfix:after, .clearfix:before {
    content: "";
    display: block;
    clear: both;
    visibility: hidden;
    height: 0;
}

.clearfix {
    zoom: 1;
}

/* float */
.clear:after {
    display: block;
    clear: both;
    content: "";
    visibility: hidden;
    height: 0
}

.clear {
    zoom: 1
}

.fl {
    float: left;
}

.fr {
    float: right;
}

/* flex */
.fx {
    display: flex;
}

.fx_ai {
    display: flex;
    align-items: center;
}

.fx_center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.fx_one {
    flex: 1
}
.cursor_pointer {
    cursor: pointer;
}
/* 单行 超出 */
.over {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

/* 两行文本超出 */
.over2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.over3 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.mz-title {
    line-height: 40px;
}

/* public */
.img {
    width: 100%;
}

.postr {
    position: relative;
}

.posta {
    position: absolute
}

.c6 {
    color: #666;
}

.c9 {
    color: #999;
}

.cf {
    color: #fff;
}

.red {
    color: #FF6464;
}

.green{
    color: #3ABF7C;
}

.orange {
    color: #FFA31D
}

.blue {
    color: #2356AA;
}
.cred{
    color: #EA1616;
}

.bgf {
    background: #fff;
}

.bor {
    border: 1px solid #D2D2D2;
}

.f14 {
    font-size: 14px;
}

.f18 {
    font-size: 18px;
}

.f12 {
    font-size: 12px;
}

.borb {
    border-bottom: solid 1px #F6F6F6;
}

.bor {
    border: 1px solid #F6F6F6;
}

.txtc {
    text-align: center;
    color: #707070;
}
.c70{
    color: #707070;
}

.layout {
    width: 1200px;
    margin: 0 auto;
}

.mz-col-5 {
    width: 20%;
    padding: 10px;
    float: left;
}
.content-index {
    min-height: calc(100vh - 275px);
    margin-top: 30px;
    margin-bottom: 50px;
}

.foot-line {
    margin: 60px 0;
}

.foot-line .lang_line {
    width: 280px;
    height: 1px;
    background: #DCDCDC;
    display: inline-block;
}

.foot-line span {
    margin: 0 20px;
}

/**公共radio**/

.choose {
    position: relative;
}

.choose .radio {
    position: relative;
    display: inline-block;
    font-weight: 400;
    color: #0c4757;
    padding-left: 25px;
    cursor: pointer;
    padding-right: 25px;

}

.choose .radio input {
    position: absolute;
    left: -9999px;
}

.choose .radio i {
    display: block;
    position: absolute;
    top: 2px;
    left: 0;
    width: 15px;
    height: 15px;
    outline: 0;
    border: 1px solid #e4e4e4;
    background: #ffffff;
    border-radius: 50%;
    transition: border-color .3s;
    -webkit-transition: border-color .3s;
}

.choose .radio input + i:after {
    position: absolute;
    content: '';
    top: 3px;
    left: 3px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: #EA7916;
    opacity: 0;
    transition: opacity .1s;
    -webkit-transition: opacity .1s;
}

.choose .radio input:checked + i:after {
    opacity: 1;
}

/**公共checkbox**/



input[type=checkbox] {
    width:15px;
    height:15px;
    text-align: center;
}
input[type=checkbox]:after {
    width: 100%;
    height: 100%;
    top: 0px;
    content: " ";
    background-color:White;
    color: #EAEAEA;
    display: inline-block;
    visibility: visible;
    border-radius: 2px;
    border:1px solid #EAEAEA;
}
input[type=checkbox][disabled=disabled]:after {
    width: 100%;
    height: 100%;
    top: 0;
    content: " ";
    background-color:#3ABF7C;
    color: #ffffff;
    display: inline-block;
    visibility: visible;
    border-radius: 2px;
    border:1px solid #A9A9A9;
}
input[type=checkbox]:checked:after {
    content: "\2713";/*UNICODE中对号*/
    font-size: 12px;
    font-weight:bold;
    background-color:#3ABF7C;
}

/* 浮动窗口 */
.float_box {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    z-index: 99;
}

.float_box li a {
    display: block;
}

.float_box li {
    width: 80px;
    height: 80px;
    text-align: center;
    line-height: 80px;
    cursor: pointer;
    position: relative;
}

.float_box li img {
    width: 60px;
}

.float_box .wechat:hover .code {
    display: block;
}

.float_box .code {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 120px;
    height: 120px;
    right: 90px;
    background: url('../images/float_ico_qrbg.png') center center no-repeat;
    background-size: contain;
}

/* 新增 */
.float_box .code img {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 104px;
}

.float_box .shopNumb {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    line-height: 20px;
    font-size: 12px;
}

.float_box .phone:hover .tel {
    display: block;
}

.float_box .tel {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 200px;
    font-size: 18px;
    line-height: 50px;
    height: 50px;
    background: #fff;
    right: 90px;
}

.triangle {
    width: 0;
    height: 0;
    border: 10px solid;
    border-top-color: #fff;
    border-bottom: none;
    border-left-color: transparent;
    border-right-color: transparent;
    margin-left: 10px;
    transform: translateY(-50%) rotate(-90deg);
    position: absolute;
    right: -15px;
    top: 50%;
}

.label_r {
    float: right;
    text-align: left;
    color: #FFA31D;
    font-size: 12px;
}

.hide {
    display: none
}

/* nav */
.nav {
    position: relative;
    cursor: pointer;
    text-align: center;
}

/* 白色背景层title样式 */
.bgf .nav.active {
    color: #000;
}

.bgf .nav.active .nav_line {
    position: absolute;
    width: 60%;
    height: 2px;
    background: #EA7916;
    top: 55px;
    left: 50%;
    transform: translateX(-50%);
}

/* 透明背景层title样式 */
.white-content {
    color: #FFFFFF;
}

.white-content .nav.active .nav-title {
    color: #FFFFFF;
    font-weight: bolder;
}

.bgf .nav.active .nav-title {
    color: #333;
    font-weight: bolder;
}

.white-content .nav.active .nav_line {
    position: absolute;
    width: 60%;
    height: 2px;
    background: #FFFFFF;
    top: 55px;
    left: 50%;
    transform: translateX(-50%);
}

header .bgf {
    box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.06);
}
/* ------------------------------------------------------------------------- */

.top-logo {
    width: 80px;
    height: 80px;
    position: absolute;
    top: 0;
    left: 0;
}

.top-logo img {
    width: 128px;
    height: 30px;
}

.top-right {
    width: 28px;
    height: 25px;
    position: absolute;
    top: 27px;
    right: 60px;
}

.top-right img {
    display: block;
    width: 100%;
    height: 100%;
}

.top-nav {
    width: 100%;
    height: 100%;
}

.top-content {
    width: 750px;
    height: 100%;
    margin: 0 auto;
}

.top-nav-item {
    width: 125px;
    height: 80px;
    font-size: 19px;
    /*font-weight: bold;*/
    color: #999;
    line-height: 80px;
    text-align: center;
    position: relative;
}
.top-content .active{
    color:#333333 !important;
}
.top-nav-item-line {
    width: 30px;
    height: 1px;
    background-color: #333333;
    position: absolute;
    top: 58px;
    left: 50%;
    transform: translate(-50%,50%);
}


.active .top-nav-item-line {
    background-color: #333333;
}


/* ------------------------------------------------------------------------- */
/* 头部 */
.header {
    width: 100%;
    height: 80px;
    line-height:80px;
}
.header .top .login a {
    color: #999999;
    margin: 0 15px;
    text-decoration: none;
}
.header .top .login {
    /*float: left;*/
    min-width: 320px;
    text-align: right;
    color: #fff;
    display: block;
    /*margin-right: 80px;*/
    font-size: 20px;
}
.header .top .logo_r {
    float: right;
    margin-right: 80px;
    background-size: 45px 35px;
    text-indent: 62px;
    font-size: 18px;
    font-family: Arial;
}
.header .top .topmain {
    width: 1200px;
    margin: 0 auto;
    height: 100%;
}
.header .top .logo_r a {
    display: block;
    width: 27px;
    height: 24px;
    background: url(/assets/img/wx.png) no-repeat;
    margin-top: 1.6rem;
    position: relative;
}
.login .active,.login a:hover{
    color:#333333 !important;
    border-bottom:2px solid #333;
    font-weight:bold;
    padding-bottom: 10px
}
a:hover {
    color: #23527c;
    text-decoration: none !important;
}
.header .top .logo_r a span {
    display: none;
    position: absolute;
    top: 50px;
    left: -140px;
    width: 280px;
    overflow: hidden;
    background: rgba(255,255,255,.28);
}
.header .top .logo_r a span img {
    float: left;
    display: block;
    margin-right: 2px;
}
.header .top {
    height: 82px;
    line-height: 81px;
    background: #fff;
    position: absolute;
    z-index: 1000;
    width: 100%;
    color: #505050;
}
.header .top .logo_r a span img {
    float: left;
    display: block;
    margin-right: 2px;
}
img {
    border: 0;
    vertical-align: middle;
}
.showTop.fixed {
    position: fixed;
    left: 0;
    top: 0;
    border-bottom: 1px solid #d7d6d4;
}
/*底部浮动*/
.bottom_fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    padding: 13px 0;
    /*background: rgba(0,0,0,.5);*/
    filter: progid:DXImageTransform.Microsoft.gradient(startcolorstr=#b2000000, endcolorstr=#b2000000);
    height:66px;
    background:rgba(0,0,0,.29);
}
.bottom_fixed .inner .close_btn {
    position: absolute;
    right: 26px;
    text-align: center;
    font-size: 30px;
    color: #999;
}
.bottom_fixed .inner {
    /* width: 100%; */
    position: relative;
}
.bottom_fixed .inner ul {
    width: 600px;
    margin: 0 auto;
    /* height: 20px; */
    /*padding-left: 1%;*/
}
.bottom_fixed .inner li {
    float: left;
    /*margin-right: 10px;*/
    display: inline;
}
.bottom_fixed .inner li .text {
    width: 180px;
    line-height: 16px;
    padding: 12px 0;
    text-indent: 10px;
    border: 0 none;
    background: #fff;
    font-size: 14px;
    color:#666666;
}
.bottom_fixed .inner li .submit_btn {
    border: 0 none;
    width: 180px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: #fff;
    background: #5D7082;
    cursor: pointer;
    font-size: 14px;
}
.footer {
    width: 100%;
    min-width: 1200px;
    background: #fff !important;
    padding: 20px 0 30px;
    text-align: center;
    border-top: 1px solid #d7d6d4;
    /*margin: 10px auto;*/
    margin-bottom:66px;
}

footer.footer .copyright {
    background: #fff;
    line-height: 30px;
}

/* 不进行浮动的顶部样式 */
.navigation header .head {
    position: static;
    height: 124px;
    line-height: 124px;
    padding-top: 20px;
    font-size: 16px;
    color: #333333 !important;
    box-shadow:0 3px 6px rgba(0,0,0,0.06);
}
.navigation header .nav_box {
    margin-left: 300px;
}
.navigation header .nav {
    margin: 0 23px;
}

/* 面包屑 */
.breadcrumb {
    color: #A4A4A4;
    margin: 20px 0;
}
/**底部*/
footer {
    background: #272836;
    color: #fff;
}

/* modules */
.modules {
    border: 1px solid #EAEAEA;
    margin-bottom: 20px;
}

.modules .header {
    height: 50px;
    border-bottom: 1px solid #EAEAEA;
    padding-left: 20px;
}

.modules .header .title {
    font-size: 14px;
    color: #333333;
    font-weight: 500;
    position: relative;
    display: inline-block;
    line-height: 50px;
    border-bottom: none;
    padding: 0 5px;
}
.modules .header .title + .title {
    margin-left: 50px;
}
.modules .header .title.active {
    border-bottom: 2px solid #EA7916;
    line-height: 48px;
}
.modules .header .title img {
    width: 20px;
    vertical-align: middle;
}
.modules .panel-body {
    padding-left: 47px;
    overflow: hidden;
    padding-bottom: 45px;
}
.modules .panel-body .tab-pane {
    display: none;
}
.modules .panel-body .tab-pane.active {
    display: block;
    width: 100%;
}
/* modules 结束*/
.foot-01 .logo{
    width: 77px;
    height: 50px;
}
.foot-01 .logo img{
    width: 100%;
}
footer .wechat-content {
    margin-top: 10px;
    font-size: 14px;
}

footer .wechat-content p {
    height: 34px;
    line-height: 34px;
}

footer .wechat-content .wechat-item {
    margin-right: 10px;
    text-align: left;
}

footer .footer-container {
    padding-top: 30px;
    padding-bottom: 30px;
    min-width: 1200px;
}

footer .foot-02 {
    width: 310px;
    margin-left: 200px;
}

footer .foot-02 ul li {
    display: inline-block;
    margin-right: 80px;
    line-height: 30px;
    font-size: 14px;
}

footer .foot-03 .address p {
    line-height: 30px;
    font-size: 14px;
}

footer .foot-03 .address p img{
    margin-right: 8px;
}
footer .footer-title {
    margin-top: 10px;
    margin-bottom: 20px;
}

.wechat-item img {
    width: 89px;
    height: 89px;
}

/* 按钮组 */
.btn {
    border-radius:24px;
    text-align: center;
    display: inline-block;
}
.btn.btn-large {
    width: 150px;
    line-height: 45px !important;
    height: 45px;
}
.no-radius {
    border-radius:0;
}
.btn.btn-small {
    width: 82px;
    height: 30px;
    line-height: 30px !important;
}
.btn-medium {
    width: 90px;
    line-height: 38px !important;
}
.btn-block {
    width: 100%;
    height: 50px;
    line-height: 50px !important;
}
.btn-org {
    background: #EA7916;
    color: #ffffff;
}
.btn-gray {
    background: #EAEAEA;
    color: #333333;
}
.btn-yellow {
    background: #FFBB00;
    color: #ffffff;
}
.btn-white {
    background: #ffffff;
    color: #333333;
}
.btn-green {
    background: #3ABF7C;
    color: #ffffff;
}

.btn {
    text-align: center;
    line-height: 50px;
    margin: auto;
    border-radius: 4px;
}

.btn_orange {
    line-height: 45px;
    background: #FFA31D;
    width: 100%;
    color: #fff;
    font-size: 18px;
}
/* 字体颜色 */
.text-gray {
    color: #A4A4A4;
}
/*弹窗*/
.Mask {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #000000;
    opacity: 0.3;
    z-index: 10;
}

.Mask {
    display: none;
}
.edit-popup {
    width: 456px;
    height: 445px;
    position: fixed;
    top: 18%;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    z-index: 10;
    display:none;
}
.edit-popup h4 {
    height: 50px;
    line-height: 50px;
    background: #F9F9F9;
    margin-bottom: 40px;
    padding-left: 40px;
    font-size: 17px;
    font-weight: bold;
    position: relative;
}
.edit-popup .close-popup {
    position: absolute;
    right: 20px;
    top: 20px;
}

/* 表单验证 */
.n-right .msg-wrap {
    top: 10px;
}

.submit-btn{
    width: 150px;
    height: 45px;
    background: #EA7916;
    border-radius: 24px;
    color: #fff;
    font-size: 16px;
    margin-left: 110px;
    margin-top:25px;
}
/* 辅助类 */
.fz0 {
    font-size: 0 !important;
}

.fz_12 {
    font-size: 12px !important;
}

.fz_14 {
    font-size: 14px !important;
}

.fz_20 {
    font-size: 20px !important;
}

.text-center {
    text-align: center !important;
}

.text-right {
    text-align: right !important;
}

.text-left {
    text-align: left !important;
}

.f_s12 {
    font-size: 12px !important;
}

.f_s14 {
    font-size: 14px !important;
}

.f_s15 {
    font-size: 15px !important;
}

.f_s25 {
    font-size: 25px !important;
}

.f_s35 {
    font-size: 35px !important;
}

.m_t0 {
    margin-top: 0px !important;
}

.m_t5 {
    margin-top: 5px !important;
}

.m_t10 {
    margin-top: 10px !important;
}

.m_t15 {
    margin-top: 15px !important;
}

.m_t20 {
    margin-top: 20px !important;
}

.m_t30 {
    margin-top: 30px !important;
}

.m_t50 {
    margin-top: 50px !important;
}

.m_b0 {
    margin-bottom: 0px !important;;
}

.m_b5 {
    margin-bottom: 5px !important;
}

.m_b10 {
    margin-bottom: 10px !important;
}

.m_b15 {
    margin-bottom: 15px !important;
}

.m_b20 {
    margin-bottom: 20px !important;
}

.m_b30 {
    margin-bottom: 30px !important;
}
.m_b50 {
    margin-bottom: 50px !important;
}

.m_r0 {
    margin-right: 0px !important;
}

.m_r5 {
    margin-right: 5px !important;
}

.m_r10 {
    margin-right: 10px !important;
}

.m_r15 {
    margin-right: 15px !important;
}

.m_r20 {
    margin-right: 20px !important;
}

.m_r30 {
    margin-right: 30px !important;
}

.m_l0 {
    margin-left: 0px !important;
}

.m_l5 {
    margin-left: 5px !important;
}

.m_l10 {
    margin-left: 10px !important;
}

.m_l15 {
    margin-left: 15px !important;
}

.m_l30 {
    margin-left: 30px !important;
}

.m_l50 {
    margin-left: 50px !important;
}

.m_l60 {
    margin-left: 60px !important;
}

.p_t0 {
    padding-top: 0 !important;
}

.p_t5 {
    padding-top: 5px !important;
}

.p_t10 {
    padding-top: 10px !important;
}

.p_t15 {
    padding-top: 15px !important;
}

.p_t20 {
    padding-top: 20px !important;
}

.p_t30 {
    padding-top: 30px !important;
}

.p_t50 {
    padding-top: 50px !important;
}

.p_b0 {
    padding-bottom: 0 !important;
}

.p_b5 {
    padding-bottom: 5px !important;
}

.p_b10 {
    padding-bottom: 10px !important;
}

.p_b15 {
    padding-bottom: 15px !important;
}

.p_b20 {
    padding-bottom: 20px !important;
}

.p_b30 {
    padding-bottom: 30px !important;
}

.p_b50 {
    padding-bottom: 50px !important;
}

.p_l0 {
    padding-left: 0 !important;
}

.p_l5 {
    padding-left: 5px !important;
}

.p_l10 {
    padding-left: 10px !important;
}

.p_l15 {
    padding-left: 15px !important;
}

.p_l20 {
    padding-left: 20px !important;
}

.p_l30 {
    padding-left: 30px !important;
}

.p_l50 {
    padding-left: 50px !important;
}

.p_r0 {
    padding-right: 0 !important;
}

.p_r5 {
    padding-right: 5px !important;
}

.p_r10 {
    padding-right: 10px !important;
}

.p_r15 {
    padding-right: 15px !important;
}

.p_r20 {
    padding-right: 20px !important;
}

.p_r30 {
    padding-right: 30px !important;
}

.p_r50 {
    padding-right: 50px !important;
}
.help-block {
    display: block;
    color: #8F8F8F;
    font-size: 12px;
    margin-top: 10px;
}
/**左侧**/
.content-left{
    width: 218px;
    background: rgba(255,255,255,1);
    border: 1px solid rgba(234,234,234,1);
}
.content-left .title-user{
    height: 50px;
    line-height: 48px;
    border-bottom: 1px solid #EAEAEA;
    padding-left: 20px;
}

.title-user .active .line{
    width: 84px;
    height: 2px;
    background: rgba(234,121,22,1);
}

.content-left ul li{
    height: 48px;
    line-height: 48px;
    text-align: left;
    border-bottom: 1px solid #EAEAEA;
    padding-left: 60px;
    position: relative;
}

.content-left ul .nav-active{
    color: #EA7916;
}

.content-left ul .active{
    color: #EA7916;
    background:#FFFDF6;
}
.content-left ul img{
    float: right;
    right: 20px;
    position: absolute;
    top: 17px;
}
.content-left ul li span{
    width: 160px;
}
.content-left .subItem{
    display: none;
    font-size: 12px;
}
.content-left .subItem li{
    text-align: left;
    padding-left: 80px;
}
.content-left .show{
    display: block;
}
.iconfont{
    font-size: 15px;
}
.content-nav ul li a{
    width: 100%;
    display: inline-block;
}

.content-nav ul li i{
    position: absolute;
    right: 16px;
}


.content-nav .subItem .sub_active{
    color: #EA7916;
}

.content-nav ul li:hover{
    color: #EA7916;
}
.content-nav .sub.active .iconfont {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}
.content-nav .sub .iconfont {
    display: inline-block;
    -webkit-transition: -webkit-transform .5s;
    transition: -webkit-transform .5s;
    transition: transform .5s;
    transition: transform .5s,-webkit-transform .5s;
}

.right_wrap{
    position: fixed;
    right: 2px;
    bottom: 100px;
    z-index: 10;
    height: auto;
    width: 70px;
    display: none;
    border:1px solid #D7D6D4;
}
.right_wrap ul li {
    position: relative;
    margin-bottom: 0px;
}

.right_wrap ul li div {
    box-sizing: content-box;
    position: absolute;
    left: -221px;
    top: 0;
    background: #f1f1f1;
    padding: 5px 10px;
    border: 1px solid #e8e8e8;
    z-index: 5;
    width: 197px;
    display: none;
}
.right_wrap ul li span {
    display: inline-block;
    line-height: 24px;
    font-size: 14px;
    color: #9e9083;

}
.right_wrap ul li .shouji {
    width: 68px;
    height: 68px;
    background: url(/assets/img/shouji-n.png) no-repeat center;
    display: block;
}
.right_wrap ul li .qq {
    width: 68px;
    height: 68px;
    background: url(/assets/img/qq-n.png) no-repeat center;
    display: block;
}

.right_wrap ul li .weixin {
    width: 68px;
    height: 68px;
    background: url(/assets/img/weixin-n.png) no-repeat center;
    display: block;
}
.right_wrap ul li .weixin span {
    position: absolute;
    left: -180px;
    top: 0;
    z-index: 5;
    width: 180px;
    height: 166px;
    border: 0px solid #dedede;
    display: none;
    background: #5D7082;
}
.right_wrap ul li .weixin span img {
    float: left;
    display: block;
    margin-right: 2px;
    margin-top:14px;
    margin-left:26px;
}
.right_wrap ul li .weixin span img:nth-child(2) {
    margin-left:6px;
}
img {
    border: 0;
    vertical-align: middle;
}
.right_wrap ul li .xinjian {
    width: 68px;
    height: 68px;
    background: url(/assets/img/xinjian-n.png) no-repeat center;
    display: block;
}
.logo_i{
    /*float:left;*/
    width:80px;
    height:80px;
}


.right_wrap ul li .back_top {
    width: 68px;
    height: 68px;
    background: url(/assets/img/back_top-n.png) no-repeat center;
    display: block;
}

.right_wrap li{
    border-bottom:1px solid #D7D6D4;
}

.right_wrap li:last-child{
    border-bottom:none;
}
#page .banner{
    width:1920px;
    height:480px;
}
footer.footer .copyright a:hover{
    color:#aaa;
}
.page-box{
    text-align: center;
}
.top-right:hover +.wechat-top{
    transform: scale(1);
    -webkit-transform: scale(1);
    /*opacity: 1;*/
    display: block;
}
.wechat-top {
    background:#5D7082 ;
    padding:10px;
    /*opacity: 0;*/
    display: none;
}
main.content{
    padding:0 !important;
    padding-right:0;
    padding-left:0;
}

