/*公共样式*/

* {
    margin: 0;
    padding: 0;
}

ul,
li,
p,
h1,
h2,
h3,
h4,
h5,
h6,
dl,
dd,
dt {
    margin: 0;
    padding: 0;
}

dt {
    font-weight: normal
}

body {
    
    color:#666666;
    background-color: #fff;
    font-size: 16px;
    font-family: "Microsoft YaHei", 微软雅黑, "MicrosoftJhengHei", 华文细黑, STHeiti, MingLiu;
    -webkit-font-smoothing: antialiased;
    /*字体抗锯齿*/
}

.details .content{
    line-height:24px; 
}

a {
    text-decoration: none;
    cursor: pointer;
    color: #666;
}

a:hover {
    color: #c90b0b
}

a:active {
    color: #666;
}

li {
    list-style: none;
}

article{
    line-height: 1.75;
}

.w-1200 {
    width: 1200px;
    margin: auto;
    overflow:hidden
}

.show {
    display: block!important;
}


/* 头部 */
header {
    /*background-color: rgba(59, 55, 55, 0.7);*/
    background-color: #fff;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 9999;
    height: 120px;
    width: 100%;
    line-height: 120px;
    overflow: hidden;
}

header .logo {
    width: 360px;
    /*height: 120px;*/
    float: left;
    margin-right: 120px;
    margin-top: 6px;
}

header .logo a{
    width: 397px;
    height: 120px;
    display: block;
    background:url("../../static/images/logo.png") no-repeat center;
}

nav .menu {
    display: flex
}

nav .menu li {
    /* float: left; */
    flex: 1;
    font-size: 16px;
    width: 100px;
    text-align: center;
    font-weight: bold;
}

nav .menu li a {
    color: #484848;
    display: block;
}

nav .menu li a:hover {
    /* color: #bb2929; */
    /*background-color: rgba(255, 255, 255,.3);*/
    color:#D8313C;
}

.menu-active {
    /*background-color: rgba(255, 255, 255, .3);*/
    color:#D8313C;
}

nav .menu li.menu-active>a {
    /*color: #fff;*/
    color:#D8313C;
}


/* 底部 */

footer {
    background-color: #171717;
    width: 100%;
    z-index: 99999;
    padding-top: 60px;
    overflow: hidden;
}

footer #wx {
    cursor: pointer;
}

footer .footer-content {
    height: 200px;
    padding-left: 75px;
}

footer .footer-content .contact {
    width: 184px;
}

footer .footer-content ul {
    float: left;
}

footer .footer-content .contact-title {
    font-size: 26px;
}

footer .footer-content .sub-title{
    font-size: 16px;
}

footer .footer-content .attention {
    width: 200px;
}

footer .footer-content .attention li {
    font-size: 16px;
    color: #707070;
}

footer .footer-content .attention .icon {
    padding-top: 10px;
}

footer .footer-content .attention .icon img {
    margin: 8px;
}

footer .footer-content .infomation {
    color: #707070;
}

footer .beian img{
    padding-left: 10px;
    padding-top: 10px;
}

footer .footer-content .infomation h3 {
    margin-bottom: 25px;
    font-size: 16px;
}

footer .footer-content .infomation p {
    line-height: 30px;
}

footer .footer-content .infomation .details p{
    float: left;
}
footer .footer-content .infomation .details .item{
    overflow: hidden;
}
footer .footer-content .infomation .left {
    float: left;
    width: 300px;
}

footer .footer-content .infomation .right {
    float: left;
    width: 400px;
}

footer .copyright {
    text-align: center;
    border-top: 1px solid #212121;
    line-height: 35px;
    font-size: 14px;
    font-weight: bold;
}

footer .copyright a:hover {
    color: #aaa!important;
}

footer .copyright a:active {
    color: #aaa!important;
}


/* 分页 */

#page {
    margin: 80px auto;
    width: 100%;
    text-align: center;
}

#page ul {
    display: inline-block;
}


#page ul li {
    float: left;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin: 2px;
    line-height: 14px;
    text-align: center;
}

#page ul li a{
    transition: all .2s;
}

#page ul li a:hover {
    background-color: #c90b0b;
    color: #fff;
}

#page ul li a,
#page ul li span {
    border-radius: 5px;
    display: block;
    padding: 12px 16px;
    font-size: 14px;
    color: #585858;
}

#page ul li .current {
    color: #fff;
    background-color: #c90b0b;
}


/* 弹窗背景 */

.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 9999;
    /* Sit on top */
    padding-top: 100px;
    /* Location of the box */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.9);
    /* Black w/ opacity */
}


/* 图片 */

.modal-content {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    border: 1px solid #fff;
    display: block;
    width: 200px;
    max-width: 200px;
    height: 200px;
    max-height: 200px;
}


/* 文本内容 */

#caption {
    display: block;
    width: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -80px;
    margin-top: 130px;
    max-width: 160px;
    text-align: center;
    color: #ccc;
    height: 30px;
}


/* 添加动画 */

.modal-content,
#caption {
    animation-name: zoom;
    animation-duration: .6s;
}

@keyframes zoom {
    from {
        transform: scale(0)
    }
    to {
        transform: scale(1)
    }
}

.right-tag {
    position: fixed;
    right: 0;
    top: 50%;
    font-size: 14px;
    z-index: 99;
}

.right-tag li {
    padding: 2px 0 2px 6px;
    position: relative;
    cursor: pointer;
}
.right-tag .common img{
    z-index:9
}
.right-tag li .content {
    z-index:-9;
    background: #fff;
    min-width: 180px;
    white-space: nowrap;
    height: 60px;
    position: absolute;
    border: 1px solid #d4d4d4;
    right: 60px;
    top: 2px;
    padding: 6px 14px;
    box-sizing: border-box;
    display: none;
    cursor: text;
}

.right-tag li .content p {
    line-height: 24px
}

.right-tag li .content p.red {
    color: #c90b0b;
}


/* banner */

.banner img {
    width: 100%;
    cursor: pointer;
}


/*左侧分类列表*/

.left-class {
    width: 160px;
}

.page-content .details .left-class {
    float: left;
}

.page-content .details .left-class li {
    width: 160px;
    height: 50px;
    display: block;
    font-size: 16px;
    background: #f0f0f0;
    line-height: 50px;
    margin-bottom: 5px;
    padding-left: 18px;
    border-left: 2px solid #dbdbdb;
}

.page-content .details .left-class li a {
    display: block;
    height: 50px;
    font-size: 16px;
}

.page-content .details .left-class .c-active {
    background-color: #f9eeee;
    border-left: 2px solid #c90b0b;
}

.page-content .details .left-class .c-active a {
    color: #c90b0b;
}

.mark {
    display: none;
    width: 100%;
    height: 100%;
    z-index: 999;
    color: #fff;
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.8);
    position: absolute;
    top: 0;
    left: 0;
    text-align: center
}

.mark a {
    display: block;
    width: 100%;
    height: 100%;
    opacity: 1;
}

.mark a:hover {
    color: #fff
}


.text-over-2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.text-over {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}


.swiper-pagination-bullet {
    background: #fff!important;
}

.swiper-pagination-bullet-active {
    background-color: #cc1919!important
}

.hide{
    display: none;
}

.swiper-button-next:after,
.swiper-button-prev:after{
    color: #fff!important;
   
}
.swiper-button-next,
.swiper-button-prev{
    width:calc(var(--swiper-navigation-size)*1.2);
    height:calc(var(--swiper-navigation-size)*1.8);
    background-color: rgba(0,0,0,.5);
}

.swiper-button-next{
    right: 0;
}

.swiper-button-prev{
    left: 0;
}