/* CSS Document */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    text-align: center;
}
a {
    text-decoration: none !important;
    color: #000;
}
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
* {
    font-family: "微软雅黑";
}

h1 {
    font-size: 36px;
    font-weight: bold;
    text-shadow: 1px 1px 3px #333;
}

h2 {
    font-size: 24px;
    font-weight: bold;
    text-shadow: 1px 1px 3px #333;
}

h3 {
    font-size: 18px;
    font-weight: bold;
    text-shadow: 0px 1px 1px #333;
}

hr {
    width: 99%;
    border: none;
    border-top: 1px dashed #999;

}
.content-slide hr {
    width: 700px;
    margin-bottom: 10px;
}
.content-slide img {
    border-radius: 10px;
}
/*==banner==*/
.banner {
    width: 100%;
    max-width: 1366px;
    margin: 20px auto;
}

.banner img {
    width: 100%;
}

/*==反转样式==*/
/* 样式调节 */
.pd-list {
    width: 1200px;
    margin: 80px auto 0;
}

@media (max-width: 1200px) {
    .pd-list {
        width: 1200px;
    }
}

@media (max-width: 1000px) {
    .pd-list {
        width: 800px;
    }
}

.pd-list ul {
    padding: 0;
    margin: 0;
}

.pd-list ul:after {
    content: "";
    display: table;
    clear: both;
}

.pd-list li {
    position: relative;
    float: left;
    width: 340px;
    height: 340px;
    margin: 30px;
    padding: 0;
    list-style: none;
}

.pd-list li img {
    width: 340px;
    border-radius: 20px;
}

.pd-list li a {
    display: inline-block;
    vertical-align: top;
    text-decoration: none;
    border-radius: 20px;
}

.pd-list li h2 {
    margin: 10px auto 20px;
    color: #fff;
}

.pd-list li h3 {
    text-align: left;
    padding: 0 40px;
    color: #fff;
}

.pd-list li .normal {
    width: 100%;
    height: 100%;
    background-color: #ECF0F1;
    color: rgba(52, 73, 94, 0.6);
    box-shadow: inset 0 2px 20px #e6ebed;
    text-align: center;
    font-size: 36px;
    line-height: 100px;
}

.pd-list li .normal svg {
    pointer-events: none;
    width: 50px;
}

.pd-list li .normal svg path {
    fill: rgba(52, 73, 94, 0.2);
}

.pd-list li {
    -webkit-perspective: 680px; /*3D 元素距视图的距离*/
    perspective: 680px;
}

.pd-list .info {
    -webkit-transform: rotate3d(1, 0, 0, 90deg); /*沿 X,Y,Z轴旋转 1=是 0=否 90deg=90度*/
    transform: rotate3d(1, 0, 0, 90deg);
    width: 100%;
    height: 100%;
    padding: 20px;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 20px;
    pointer-events: none; /*鼠标点击无效*/
    background-color: rgba(0, 153, 255, 0.8);
}

.pd-list .in-top .info {
    -webkit-transform-origin: 50% 0%;
    transform-origin: 50% 0%;
    -webkit-animation: in-top 300ms ease 0ms 1 forwards;
    animation: in-top 300ms ease 0ms 1 forwards;
}

.pd-list .in-right .info {
    -webkit-transform-origin: 100% 0%;
    transform-origin: 100% 0%;
    -webkit-animation: in-right 300ms ease 0ms 1 forwards;
    animation: in-right 300ms ease 0ms 1 forwards;
}

.pd-list .in-bottom .info {
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    -webkit-animation: in-bottom 300ms ease 0ms 1 forwards;
    animation: in-bottom 300ms ease 0ms 1 forwards;
}

.pd-list .in-left .info {
    -webkit-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
    -webkit-animation: in-left 300ms ease 0ms 1 forwards;
    animation: in-left 300ms ease 0ms 1 forwards;
}

.pd-list .out-top .info {
    -webkit-transform-origin: 50% 0%;
    transform-origin: 50% 0%;
    -webkit-animation: out-top 300ms ease 0ms 1 forwards;
    animation: out-top 300ms ease 0ms 1 forwards;
}

.pd-list .out-right .info {
    -webkit-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
    -webkit-animation: out-right 300ms ease 0ms 1 forwards;
    animation: out-right 300ms ease 0ms 1 forwards;
}

.pd-list .out-bottom .info {
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    -webkit-animation: out-bottom 300ms ease 0ms 1 forwards;
    animation: out-bottom 300ms ease 0ms 1 forwards;
}

.pd-list .out-left .info {
    -webkit-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
    -webkit-animation: out-left 300ms ease 0ms 1 forwards;
    animation: out-left 300ms ease 0ms 1 forwards;
}

@-webkit-keyframes in-top {
    from {
        -webkit-transform: rotate3d(-1, 0, 0, 90deg);
        transform: rotate3d(-1, 0, 0, 90deg);
    }
    to {
        -webkit-transform: rotate3d(0, 0, 0, 0deg);
        transform: rotate3d(0, 0, 0, 0deg);
    }
}

@keyframes in-top {
    from {
        -webkit-transform: rotate3d(-1, 0, 0, 90deg);
        transform: rotate3d(-1, 0, 0, 90deg);
    }
    to {
        -webkit-transform: rotate3d(0, 0, 0, 0deg);
        transform: rotate3d(0, 0, 0, 0deg);
    }
}

@-webkit-keyframes in-right {
    from {
        -webkit-transform: rotate3d(0, -1, 0, 90deg);
        transform: rotate3d(0, -1, 0, 90deg);
    }
    to {
        -webkit-transform: rotate3d(0, 0, 0, 0deg);
        transform: rotate3d(0, 0, 0, 0deg);
    }
}

@keyframes in-right {
    from {
        -webkit-transform: rotate3d(0, -1, 0, 90deg);
        transform: rotate3d(0, -1, 0, 90deg);
    }
    to {
        -webkit-transform: rotate3d(0, 0, 0, 0deg);
        transform: rotate3d(0, 0, 0, 0deg);
    }
}

@-webkit-keyframes in-bottom {
    from {
        -webkit-transform: rotate3d(1, 0, 0, 90deg);
        transform: rotate3d(1, 0, 0, 90deg);
    }
    to {
        -webkit-transform: rotate3d(0, 0, 0, 0deg);
        transform: rotate3d(0, 0, 0, 0deg);
    }
}

@keyframes in-bottom {
    from {
        -webkit-transform: rotate3d(1, 0, 0, 90deg);
        transform: rotate3d(1, 0, 0, 90deg);
    }
    to {
        -webkit-transform: rotate3d(0, 0, 0, 0deg);
        transform: rotate3d(0, 0, 0, 0deg);
    }
}

@-webkit-keyframes in-left {
    from {
        -webkit-transform: rotate3d(0, 1, 0, 90deg);
        transform: rotate3d(0, 1, 0, 90deg);
    }
    to {
        -webkit-transform: rotate3d(0, 0, 0, 0deg);
        transform: rotate3d(0, 0, 0, 0deg);
    }
}

@keyframes in-left {
    from {
        -webkit-transform: rotate3d(0, 1, 0, 90deg);
        transform: rotate3d(0, 1, 0, 90deg);
    }
    to {
        -webkit-transform: rotate3d(0, 0, 0, 0deg);
        transform: rotate3d(0, 0, 0, 0deg);
    }
}

@-webkit-keyframes out-top {
    from {
        -webkit-transform: rotate3d(0, 0, 0, 0deg);
        transform: rotate3d(0, 0, 0, 0deg);
    }
    to {
        -webkit-transform: rotate3d(-1, 0, 0, 104deg);
        transform: rotate3d(-1, 0, 0, 104deg);
    }
}

@keyframes out-top {
    from {
        -webkit-transform: rotate3d(0, 0, 0, 0deg);
        transform: rotate3d(0, 0, 0, 0deg);
    }
    to {
        -webkit-transform: rotate3d(-1, 0, 0, 104deg);
        transform: rotate3d(-1, 0, 0, 104deg);
    }
}

@-webkit-keyframes out-right {
    from {
        -webkit-transform: rotate3d(0, 0, 0, 0deg);
        transform: rotate3d(0, 0, 0, 0deg);
    }
    to {
        -webkit-transform: rotate3d(0, -1, 0, 104deg);
        transform: rotate3d(0, -1, 0, 104deg);
    }
}

@keyframes out-right {
    from {
        -webkit-transform: rotate3d(0, 0, 0, 0deg);
        transform: rotate3d(0, 0, 0, 0deg);
    }
    to {
        -webkit-transform: rotate3d(0, -1, 0, 104deg);
        transform: rotate3d(0, -1, 0, 104deg);
    }
}

@-webkit-keyframes out-bottom {
    from {
        -webkit-transform: rotate3d(0, 0, 0, 0deg);
        transform: rotate3d(0, 0, 0, 0deg);
    }
    to {
        -webkit-transform: rotate3d(1, 0, 0, 104deg);
        transform: rotate3d(1, 0, 0, 104deg);
    }
}

@keyframes out-bottom {
    from {
        -webkit-transform: rotate3d(0, 0, 0, 0deg);
        transform: rotate3d(0, 0, 0, 0deg);
    }
    to {
        -webkit-transform: rotate3d(1, 0, 0, 104deg);
        transform: rotate3d(1, 0, 0, 104deg);
    }
}

@-webkit-keyframes out-left {
    from {
        -webkit-transform: rotate3d(0, 0, 0, 0deg);
        transform: rotate3d(0, 0, 0, 0deg);
    }
    to {
        -webkit-transform: rotate3d(0, 1, 0, 104deg);
        transform: rotate3d(0, 1, 0, 104deg);
    }
}

@keyframes out-left {
    from {
        -webkit-transform: rotate3d(0, 0, 0, 0deg);
        transform: rotate3d(0, 0, 0, 0deg);
    }
    to {
        -webkit-transform: rotate3d(0, 1, 0, 104deg);
        transform: rotate3d(0, 1, 0, 104deg);
    }
}

* {
    box-sizing: border-box;
}

/*==通用参数==*/

.neirong {
    width: 850px;
    margin: auto;
}
.neirong p {
    text-align: left;
    text-indent: 2em;
}
.neirong h1 {
    font-weight: 600;
    font-size: 24px;
}
.neirong h2 {
    text-align: left;
    font-size: 18px;
    font-weight: 600;
}
.neirong h3 {
    text-align: left;
    font-size: 16px;
    font-weight: 600;
}
.neirong ul {
    width: 100%;
    text-align: left;
}
.neirong ul li {
    width: 120px;
    display: inline-block;
    padding: 8px;
}
.neirong ul li a {
    font-size: 16px;
    color: #ff6600;
    font-weight: 600;
    text-shadow: 1px 0px 1px #555;
}
.neirong ul li a:hover{
    border-bottom: 2px solid #ff6600;
}
/*=搜索栏=*/
.sousuo {
    width: 100%;
    height: 20px;
    max-width: 1000px;
    margin: 20px auto 0;
    padding-left: 20px;
    padding-right: 20px;
}

.sousuo a {
    color: #000000;

}

.sousuo .left {
    width: 540px;
    float: left;
    text-align: left;
}

.sousuo .left ul li {
    display: inline-block;
}

.sousuo .right {
    width: 240px;
    float: right;
    text-align: right;
    margin-right: 0px;
}

/*==选项卡样式==*/
.wrap {
    margin: 20px auto 0;
    width: 900px;
}

/*选项卡整体宽度*/
.tabs {
    float: left;
    width: 80px;
}

/*选项卡标题高度*/
.tabs a {
    display: block;
    padding-top: 1px;
    padding-bottom: 5px;
    margin-bottom: 3px;
    text-align: center;
    background-color: #eee;
    box-shadow: 1px 1px 3px #aaa;
    border-radius: 20px 0px 0px 20px;
}

.tabs a h2 {
    color: #ddd;
    font-weight: normal;
    line-height: 36px;
    text-shadow: 1px 1px 1px #333;
}

/*选项卡标题样式*/
.tabs a.active {
    color: #fff;
    font-weight: bold;
    background-color: #0099ff;
}

.tabs a.active h2 {
    color: #fff;
    text-shadow: 1px 1px 1px #333;
}

.swiper-container {
    background: #eee;
    height: 900px;
    width: 820px;
    border: 1px solid #ccc;
    border-radius: 0px 20px 20px 20px;
    box-shadow: 1px 1px 2px #aaa;
}

.swiper-slide {
    height: auto;
    width: 100%;
    background: none;
    color: #000;
}

/*==列表样式==*/
.liebiao {
    padding: 10px 20px;
}

.liebiao h3 {
    text-align: left;
}
.liebiao a {
    color: #0099ff;
    font-size: 16px;
}
.zhushi {
    text-align: left;
    font-size: 14px;
    line-height: 16px;
    padding-left: 10px;
    color: #333;
}

.danwei {
    text-align: right;
    padding-right: 20px;
}

.liebiao ul {
    text-align: left;
}

.liebiao ul li {
    display: inline-block;
    text-align: center;
    padding: 5px 8px;
    margin: 0 4px;
    border-radius: 6px;
}

.liebiao ul li a {
    font-size: 16px;
    color: #0099ff;
}

.liebiao ul li:hover {
    background: #0099ff;
}

.liebiao ul li:hover a {
    font-weight: bold;
    color: #fff;
    text-shadow: 1px 1px 1px #333;
}

.liebiao .img {
    width: 100%;
    margin: 0 auto;
}

.liebiao .img img {
    width: 100%;
    border-radius: 15px;
}

.liebiao .wz {
    text-align: left;
    text-indent: 2em;
    font-size: 16px;
    lin-height: 24px;
    color: #000000;
}

/*产品图片放大镜样式*/
.photos {
    width: 800px;
    margin: 30px auto;
    padding: 30px 90px;
}

.photos img {
    border: none;
}

.photos a:link,
.photos a:visited {
    color: #F0353A;
}

.photos a:hover {
    color: #8C0B0E;
}

.sp-loading {
    text-align: center;
    max-width: 600px;
    max-height: 600px;
    padding: 15px;
    border: 5px solid #eee;
    border-radius: 3px;
    font-size: 16px;
    color: #888;
}

.sp-loading img {
    width: 260px;
    padding-top: 50px;
}

/* 产品图 */

.sp-wrap {
    display: none;
    line-height: 0;
    font-size: 0;
    background: #eee;
    border: 5px solid #eee;
    border-radius: 3px;
    position: relative;
    margin: 0 30px 10px 0;
    float: left;
    width: 600px;
}

/* 缩略图 */

.sp-thumbs {
    display: inline-block;
}

.sp-thumbs img {
    height: 100px;
    width: 100px;
}

.sp-thumbs a:link, .sp-thumbs a:visited {
    width: 100px;
    height: 100px;
    margin: 3px;
    overflow: hidden;
    opacity: .3;
    display: inline-block;
    background-size: cover;
    background-position: center;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    -ms-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    transition: all .2s ease-out;
}

.sp-thumbs a:hover {
    opacity: 1;
}

/* Styles for the currently selected thumbnail */

.sp-thumbs a:active, .sp-current {
    opacity: 1 !important;
    position: relative;
}

/* Image currently being viewed */

.sp-large {
    position: relative;
    overflow: hidden;
    top: 0;
    left: 0;
}

.sp-large a img {
    max-width: 100%;
    height: auto;
}

.sp-large a {
    display: block;
}

/* 放大图片 */

.sp-zoom {
    position: absolute;
    left: -50%;
    top: -50%;
    cursor: -webkit-zoom-in;
    cursor: -moz-zoom-in;
    cursor: zoom-in;
    display: none;
}

/* 浮动展示 */

.sp-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgb(0, 0, 0);
    background: rgba(0, 0, 0, .9);
    z-index: 500;
    display: none;
    cursor: pointer;
}

.sp-lightbox img {
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 90%;
    max-height: 90%;
    border: 2px solid #fff;
}

#sp-prev, #sp-next {
    position: absolute;
    top: 50%;
    margin-top: -25px;
    z-index: 501;
    color: #fff;
    padding: 14px;
    text-decoration: none;
    background: #000;
    border-radius: 25px;
    border: 2px solid #fff;
    width: 50px;
    height: 50px;
    box-sizing: border-box;
    transition: .2s;
}

#sp-prev {
    left: 10px;
}

#sp-prev:before {
    content: '';
    border: 7px solid transparent;
    border-right: 15px solid #fff;
    position: absolute;
    top: 16px;
    left: 7px;
}

#sp-next {
    right: 10px;
}

#sp-next:before {
    content: '';
    border: 7px solid transparent;
    border-left: 15px solid white;
    position: absolute;
    top: 16px;
    left: 18px;
}

#sp-prev:hover, #sp-next:hover {
    background: #444;
}


/*==表格样式==*/
.table {
    padding: 0;
    margin: 0 auto;
    width: 780px; /*撑满上面定义的780像素*/
    border: 0px solid #FF00FF; /*表格边框*/
    border-collapse: collapse; /*边线与旁边的合并*/
    border-spacing: 0 0; /*表格单元格间距 横向-纵向 边距合并无效*/
    table-layout: fixed; /*表格样式固定，内容强制换行*/
    text-align: center; /*表格内文字居中对齐*/
    background-color: #fff;
}

/*奇数行*/
.table tr:nth-child(odd) {
    background-color: #ddd;
}

/*偶数行*/
.table tr:nth-child(even) {
    background-color: #b0c4de;
}

/*左1列奇数行*/
.table tr:nth-child(odd) td:nth-child(1) {
    background: #888;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    text-shadow: 1px 1px 1px #333;
}

/*左1列偶数行*/
.table tr:nth-child(even) td:nth-child(1) {
    background: #4682b4;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    text-shadow: 1px 1px 1px #333;
}
.table tr:hover td:nth-child(1) {
    background: #ff9900;
}
/*鼠标经过样式*/
.table tr:hover {
    background: #ffcc66;
}

.table td:hover {
    background: #333;
    color: #fff;
    font-weight: bold;
}

/*表头单元格(这里将表头单元格的样式设置成了和单元格一样,实际中可以改变)*/
.table tr th {
    text-align: center;
    background: #0099ff; /*背景颜色*/
    line-height: 40px; /*行高*/
    font-size: 18px; /*字号*/
    font-weight: bold; /*字体加粗*/
    text-shadow: 1px 1px 1px #000; /*字体阴影*/
    color: #fff; /*字体颜色*/
    border: 1px solid #fff; /*边框样式*/
    /*overflow: hidden; 超出长度的内容不显示 可选用*/
    word-wrap: break-word; /* 内容将在边界内换行*/
    /*text-overflow: ellipsis; 当对象内文本溢出时显示省略标记（…），省略标记插入的位置是后一个字符*/
    word-break: break-all; /*字内断开*//*==white-space: nowrap;文本不换行==*/
    vertical-align: middle !important; /*垂直剧中对齐*/
}

.table tr:nth-child(2) th {
    font-size: 16px;
    font-weight: 500;
}

/*第二行标题 针对特殊表格*/
.table tr:nth-child(3) th {
    font-size: 16px;
    font-weight: 500;
}

/*第三行标题 针对特殊表格*/
.table tr:nth-child(4) th {
    font-size: 14px;
    font-weight: 500;
}

/*第四行标题 针对特殊表格*/

/*单元格样式*/
.table tr td {
    padding: 1px;
    font-size: 12px;
    line-height: 30px;
    border: 1px solid #fff;
    overflow: hidden;
    /*==word-wrap: break-word;内容将在边界内换行*/
    /*==text-overflow: ellipsis;当对象内文本溢出时显示省略标记（…），省略标记插入的位置是后一个字符==*/
    /*==word-break: break-all;允许在单词内换行==*/
    white-space: nowrap; /*==文本不换行==*/
    vertical-align: middle !important; /*垂直剧中对齐*/
}


/*容纳表格内容的DIV,这个DIV上放置滚动条*/
.gundong {
    width: 100%;
    height: 195px; /*显示区域高度   定一下高度,要不然就撑出来没滚动条了*/
    overflow-y: scroll; /*总是显示滚动条*/
    overflow-x: hidden; /*总是隐藏x方向滚动条*/
}

/*滚动条样式*/
.gundong::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.3);
    border-radius: 3px;
    background-color: #ddd;
}

/*滚动条滑轨背景颜色*/
.gundong::-webkit-scrollbar {
    width: 5px;
    background-color: #ddd;
}

/*滚动条滑轨样式*/
.gundong::-webkit-scrollbar-thumb {
    border-radius: 3px;
    -webkit-box-shadow: inset 0 0 1px rgba(0, 119, 220, .3);
    background-color: #0099ff;
}

/*滑块颜色*/

/*==联系方式==*/
.contactus {
    width: 600px;
    margin: 30px auto;
}

.contactus h3 {
    font-size: 18px;
    font-weight: bold;
}

.contactus ul {
    text-align: left;
}

.contactus ul li {
    font-size: 14px;
}

.contactus ul li:hover a {
    font-weight: bold;
    border-bottom: 1px solid #ff6600;
}

.jishu {
    margin: 60px auto 0;
    width: 90%;
    max-width: 1000px;
    min-width: 800px;
    height: 200px;
    padding: 20px;
    background-color: #0099ff;
    box-shadow: 2px 2px 6px #333;
}

.jishu h1 {
    margin-top: 10px;
    color: #fff;
}

.jishu h3 {
    padding: 10px;
    float: left;
    color: #fff;
}

.jishu .ewm {
    position: relative;
    float: right;
    top: -80px;
    right: 20px;
    width: 135px;
    font-size: 14px;
    text-align: center;
}

.shop-car {
    margin: 0 auto;
    width: 800px;
    min-width: 800px;
}

.shop-car ul li {
    display: inline-block;
    width: 263px;
    margin: 0 auto;
}
.shop-car ul li a {
    font-size: 14px;
    color: #000;
}
.shipin {
    width: 1000px;
    margin: 30px auto 60px;
}
.zhuyi{
    width:850px;
    margin: auto;
}
.zhuyi h1{
    font-size:24px;
    font-weight:600;
    margin:20px auto;
}
.zhuyi h2{
    text-align:left;
    font-size:18px;
    font-weight:600;
    margin:20px auto 0;
}
.zhuyi h3{
    font-size:18px;
    font-weight:500;

}
.zhuyi h4{
    margin:0;
    padding-left:60px;
    text-align:left;
    font-size:16px;
    font-weight:500;

}
.zhuyi ul{
    padding-left:80px;
    text-align:left;
    font-size:16px;
    font-weight:500;
    list-style-type:disc;
}