/* 字体引入 */

@font-face {
    font-family: 'm';
    src: url('../fonts/Roboto-Medium.ttf');
}

@font-face {
    font-family: 'ob';
    src: url('../fonts/Oswald-Bold.otf');
}

@font-face {
    font-family: 'l';
    src: url('../fonts/Roboto-Light.woff.ttf');
}

@font-face {
    font-family: 'b';
    src: url('../fonts/Roboto-Bold.woff.ttf');
}

@font-face {
    font-family: 'ia';
    src: url('../fonts/RIBN131B.TTF');
}


/* 网站基本宽度（注意修改） */

.container {
    max-width: 1330px;
    padding: 0 15px;
}

#header {
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9999;
}

#header .nav {
    position: relative;
    z-index: 999;
    height: 135px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	background-color: rgba(51, 51, 51, 0.2);
    transition: 300ms;
}

#header .nav.active {
    height: 100px;
    background-color: #333333ba;
}

#header .nav.active .logo {
    margin-top: 25px;
}

#header .nav.active .menu-box {
    margin-top: 42px;
}

#header .nav.active .search-btn {
    background-position: center center;
}

#header .nav.active .h-lan {
    margin-top: 42px;
}

#header .nav .logo {
    margin-left: 150px;
    margin-top: 53px;
    transition: 300ms;
}

#header .nav .h-lan {
    margin-top: 70px;
    margin-right: 40px;
    margin-left: 35px;
    position: relative;
    transition: 300ms;
}

#header .nav .h-lan>li {
    position: relative;
}

#header .nav .h-lan>li>a {
    display: block;
    font: 14px r;
    color: #fff;
    padding-bottom: 10px;
}

#header .nav .h-lan>li>a img {
    margin-right: 6px;
    vertical-align: middle;
}

#header .nav .h-lan>li>a i {
    margin-left: 6px;
    transition: 300ms;
}

#header .nav .h-lan>li>a i.active {
    transform: rotate(180deg);
}

#header .nav .h-lan>li ul {
    position: absolute;
    width: 100%;
    left: 0;
    top: 100%;
    display: none;
}

#header .nav .h-lan>li ul li a {
    display: block;
    font: 14px/40px r;
    background-color: #333;
    color: #fff;
    border-radius: 3px;
    text-align: center;
}

#header .nav .h-lan>li ul li a img {
    vertical-align: middle;
    margin-right: 5px;
}

#header .nav .h-lan>li ul li a:hover {
    background-color: #fc000c;
    color: #fff;
}

#header .nav .search-btn {
    width: 80px;
    height: 100%;
    background: url(../images/search.png) center 75px no-repeat;
    border: none;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    outline: none;
    margin-left: 15px;
}

#header .nav .search-box {
    line-height: normal;
    position: fixed;
    top: 0;
    left: 0;
    background: #fff;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: none;
}

#header .nav .search-box form {
    position: absolute;
    top: 45%;
    left: 50%;
    width: 60%;
    margin-left: -30%;
}

#header .nav .search-box form input {
    background: none;
    outline: none;
    border: none;
}

#header .nav .search-box form input[type="text"] {
    width: 100%;
    border-bottom: 1px solid #e1e1e1;
    font-size: 24px;
    font-family: r;
    color: #000;
    padding: 10px 0;
}

#header .nav .search-box form input[type="submit"] {
    width: 22px;
    height: 22px;
    background: url(../images/tc-zoom.png) no-repeat;
    position: absolute;
    right: 15px;
    top: 20px;
}

#header .nav .search-box form input[type="submit"]:hover {
    opacity: 0.7;
    filter: alpha(opacity=70);
}

#header .nav .search-box .close {
    width: 30px;
    height: 30px;
    background: url(../images/close.png) no-repeat;
    position: absolute;
    right: 25px;
    top: 15px;
    cursor: pointer;
}

#header .nav .menu-box {
    margin-top: 75px;
    transition: 300ms;
}

#header .nav .menu-box .menu::after {
    content: "";
    display: table;
    clear: both;
}

#header .nav .menu-box .menu>li {
    float: left;
    margin-left: 70px;
    position: relative;
    padding-bottom: 5px;
}

#header .nav .menu-box .menu>li:first-child {
    margin-left: 0;
}

#header .nav .menu-box .menu>li>a {
    font: 18px m;
    color: #fff;
    text-transform: uppercase;
}

#header .nav .menu-box .menu>li:hover>a {
    color: #fc000c;
}

#header .nav .menu-box .menu>li .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 180px;
    background-color: #333;
    z-index: 101;
    border-radius: 5px;
    overflow: hidden;
    display: none;
	margin-left:40px;
}

#header .nav .menu-box .menu>li .sub-menu li a {
    color: #fff;
    font: 16px/30px m;
    display: block;
    transition: 0.3s ease;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    text-align: center;
    text-transform: capitalize;
	margin-top:10px;
	margin-bottom:8px;
}

#header .nav .menu-box .menu>li .sub-menu li a:hover {
    background-color: #fc000c;
}

#header .nav .toggle-btn {
    position: absolute;
    left: 15px;
    top: 35px;
    border: none;
    outline: none;
    background-color: transparent;
    display: none;
}

#header .nav .toggle-btn i {
    font-size: 35px;
    color: #fff;
}

#header .toggle-nav {
    position: fixed;
    left: -270px;
    top: 0;
    padding-top: 120px;
    width: 270px;
    height: 100%;
    background-color: #fff;
    overflow: auto;
    transition: 300ms;
    display: none;
    z-index: 998;
}

#header .toggle-nav.open {
    left: 0;
}

#header .toggle-nav .menu>li {
    padding: 0 15px;
}

#header .toggle-nav .menu>li>a {
    display: block;
    font: 18px/40px m;
    color: #000;
    text-transform: uppercase;
}

#header .toggle-nav .menu>li .sub-menu>li>a {
    display: block;
    font: 16px/35px m;
    color: #000;
    padding-left: 15px;
    text-transform: capitalize;
}

#header .toggle-nav .search-box2 {
    padding: 15px;
}

#header .toggle-nav .search-box2 input {
    width: 80%;
    height: 40px;
    border: none;
    font: 16px m;
    color: #000;
    padding-left: 15px;
    background-color: #ccc;
}

#header .toggle-nav .search-box2 button {
    width: 20%;
    height: 40px;
    border: none;
    background-color: #000;
}

#header .toggle-nav .search-box2 button i {
    font-size: 18px;
    color: #fff;
}

#header .toggle-nav .h-lan2 {
    padding: 10px;
}

#header .toggle-nav .h-lan2 .title {
    font: 18px m;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 15px;
}

#header .toggle-nav .h-lan2 .link {
    display: flex;
    justify-content: space-around;
}

#header .toggle-nav .h-lan2 .link a {
    font: 16px m;
    color: #000;
    padding-left: 40px;
}

#header .toggle-nav .h-lan2 .link a:nth-of-type(1) {
    background: url(../images/en.png) left center no-repeat;
}

#header .toggle-nav .h-lan2 .link a:nth-of-type(2) {
    background: url(../images/cn.png) left center no-repeat;
}

.index-banner .swiper-slide {
    height: 920px;
    overflow: hidden;
    position: relative;
}

.index-banner .swiper-slide .container {
    position: relative;
    height: 100%;
}

.index-banner .swiper-slide .container .inner {
    position: absolute;
    width: 40%;
    top: 40%;
    left: 15px;
    transform: translateY(-50%);
}

.index-banner .swiper-slide .container .inner p:nth-of-type(1) {
    font: 44px/76px ob;
    color: #fff;
	font-family: impact;
    text-transform: uppercase;
    margin-bottom: 10px;
	text-shadow: 1px 1px 1px #000;
}

.index-banner .swiper-slide .container .inner p:nth-of-type(1) span{
	font-size: 25px;
}

.index-banner .swiper-slide .container .inner p:nth-of-type(2) {
    font: 16px/30px m;
    color: #fff;
    margin-bottom: 36px;
	text-shadow: 1px 1px 1px #000;
}

.index-banner .swiper-slide .container .inner .navigation a {
    display: inline-block;
    width: 60px;
    height: 58px;
    border: 1px solid #c82f24;
    text-align: center;
    transition: 300ms;
}

.index-banner .swiper-slide .container .inner .navigation a:hover {
    background-color: #c82f24;
}

.index-banner .swiper-slide .container .inner .navigation a i {
    font-size: 18px;
    color: #fff;
    line-height: 56px;
}

.index-banner #banner-page {
    bottom: 30px;
}

.index-banner #banner-page .swiper-pagination-bullet {
    width: 25px;
    height: 25px;
    background-color: #626262;
    border: 6px solid #fff;
    opacity: 1;
}

.index-banner #banner-page .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #ff0000;
    border-color: #000;
}

.index-about {
    padding-top: 60px;
    padding-bottom: 175px;
    background: #f6f6f5 url(../images/iabg.jpg) center center no-repeat;
    background-size: cover;
}

.index-about .container .top {
    margin-bottom: 50px;
}

.index-about .container .top .left {
    width: 50%;
    padding-right: 45px;
}

.index-about .container .top .left img {
    width: 100%;
}

.index-about .container .top .right {
    width: 50%;
    margin-top: 40px;
}

.index-about .container .top .right p:nth-of-type(1) {
    font: 18px l;
    color: #000;
}

.index-about .container .top .right p:nth-of-type(1) span {
    color: #c50e14;
}

.index-about .container .top .right p:nth-of-type(2) {
    font: 50px/63px l;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.index-about .container .top .right p:nth-of-type(2) span {
    font-family: b;
    color: #c50e14;
}

.index-about .container .top .right p:nth-of-type(3) {
    font: 16px/32px l;
    color: #000;
    margin-bottom: 20px;
}

.index-about .container .top .right p:nth-of-type(4) {
    font: 14px/32px l;
    color: #000;
	 
}

.index-about .container .top .right p:nth-of-type(5) {
    text-align: right;
}

.index-about .container .top .right a {
    display: block;
    width: 180px;
    height: 49px;
    border-radius: 24px;
    border: 1px solid #e60012;
    font: 16px/47px l;
    color: #000;
    text-align: center;
    text-transform: capitalize;
    overflow: hidden;
    position: relative;
    transition: 300ms;
}

.index-about .container .top .right a span {
    position: relative;
    z-index: 2;
}

.index-about .container .top .right a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-radius: 100%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: #e60012;
    transition: 300ms;
    z-index: 1;
}

.index-about .container .top .right a:hover {
    color: #fff;
}

.index-about .container .top .right a:hover::after {
    width: 102%;
    height: 102%;
    border-radius: 0;
}

.index-about .container .bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.index-about .container .bottom .item {
    width: 31%;
    padding: 120px 18px 40px;
    text-align: center;
    cursor: pointer;
    transition: 500ms;
}

.index-about .container .bottom .item p:nth-of-type(1) {
    font: 44px impact;
    color: #0d0d0d;
    margin-bottom: 10px;
    transition: 500ms;
}

.index-about .container .bottom .item p:nth-of-type(2) {
    font: 14px/22px l;
    color: #000;
    transition: 300ms;
}

.index-about .container .bottom .item:nth-of-type(1) {
    background: #fff url(../images/ia1.png) center 40px no-repeat;
}

.index-about .container .bottom .item:nth-of-type(2) {
    background: #fff url(../images/ia2.png) center 40px no-repeat;
}

.index-about .container .bottom .item:nth-of-type(2) span {
    font-size: 24px;
    font-family: l;
}

.index-about .container .bottom .item:nth-of-type(3) {
    background: #fff url(../images/ia3.png) center 40px no-repeat;
}

.index-about .container .bottom .item:hover {
    transform: translateY(-5px);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.32);
}

.index-about .container .bottom .item:hover p:nth-of-type(1) {
    color: #d31406;
}

.index-about .container .bottom .item:hover p:nth-of-type(2) {
    color: #d31406;
}

.index-about .container .bottom .item:hover:nth-of-type(1) {
    background: #fff url(../images/ia1-hv.png) center 40px no-repeat;
}

.index-about .container .bottom .item:hover:nth-of-type(2) {
    background: #fff url(../images/ia2-hv.png) center 40px no-repeat;
}

.index-about .container .bottom .item:hover:nth-of-type(3) {
    background: #fff url(../images/ia3-hv.png) center 40px no-repeat;
}

.index-business {
    background-color: #f6f6f5;
}

.index-business .tit {
    text-align: center;
    margin-bottom: 25px;
}

.index-business .tit p:nth-of-type(1) {
    font: 50px b;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.index-business .tit p:nth-of-type(2) {
    font: 16px/27px l;
    color: #000;
}

.index-business .list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.index-business .list li {
    flex: 1;
    height: 700px;
    position: relative;
    cursor: pointer;
}

.index-business .list li:hover::after {
    opacity: 1;
}

.index-business .list li:hover .inner {
    top: 30%;
}

.index-business .list li:hover .inner p:nth-of-type(1)::after {
    background-color: #0f0d0d;
}

.index-business .list li:hover .inner p:nth-of-type(3) {
    opacity: 1;
}

.index-business .list li:hover .inner a {
    opacity: 1;
}

.index-business .list li:nth-of-type(1) {
    background: url(../images/ib3.jpg) center center no-repeat;
}

.index-business .list li:nth-of-type(2) {
    background: url(../images/ib2.jpg) center center no-repeat;
}

.index-business .list li:nth-of-type(3) {
    background: url(../images/ib4.jpg) center center no-repeat;
}

.index-business .list li:nth-of-type(4) {
    background: url(../images/ib1.jpg) center center no-repeat;
}

.index-business .list li::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(230, 0, 18, 0.7);
    opacity: 0;
    transition: 500ms;
    z-index: 1;
}

.index-business .list li .inner {
    width: 100%;
    position: absolute;
    z-index: 2;
    text-align: center;
    left: 0;
    top: 45%;
    transition: 500ms;
}

.index-business .list li .inner p:nth-of-type(1) {
    font: 33px impact;
    color: #fff;
    position: relative;
    margin-bottom: 25px;
}

.index-business .list li .inner p:nth-of-type(1)::after {
    content: "";
    position: absolute;
    width: 83%;
    height: 24px;
    background-color: #e60012;
    z-index: -1;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: -10px;
    transition: 500ms;
}

.index-business .list li .inner p:nth-of-type(2) {
    font: 24px l;
    color: #fff;
    margin-bottom: 30px;
}

.index-business .list li .inner p:nth-of-type(3) {
    font: 16px/25px l;
    color: #fff;
    margin-bottom: 30px;
    opacity: 0;
    transition: 500ms;
}

.index-business .list li .inner a {
    display: block;
    width: 148px;
    height: 50px;
    background-color: #0f0d0d;
    text-align: center;
    font: 16px/50px l;
    color: #fff;
    margin: 0 auto;
    opacity: 0;
    transition: 500ms;
}

.index-business .list li .inner a:hover {
    background-color: #e60012;
}

.index-product {
    padding: 80px 0 45px;
    background-color: #ebf0f3;
}

.index-product .container .top {
    margin-bottom: 40px;
}

.index-product .container .top .tit {
    font: 45px/63px b;
    color: #000;
    padding-bottom: 30px;
    position: relative;
    text-transform: uppercase;
}

.index-product .container .top .tit::after {
    content: "";
    position: absolute;
    width: 147px;
    height: 2px;
    background-color: #e60012;
    left: 0;
    bottom: 0;
}

.index-product .container .top .nav {
    padding: 20px 30px 0;
    background-color: #fff;
    margin-top: 30px;
}

.index-product .container .top .nav li {
    display: inline-block;
    margin-left: 20px;
}

.index-product .container .top .nav li:first-of-type {
    margin-left: 0;
}

.index-product .container .top .nav li a {
    font: 16px l;
    color: #000;
    display: block;
    padding: 0 13px 13px;
    position: relative;
    user-select: none;
}

.index-product .container .top .nav li a.active::after {
    width: 100%;
}

.index-product .container .top .nav li a:hover::after {
    width: 100%;
}

.index-product .container .top .nav li a::after {
    content: "";
    width: 0;
    height: 2px;
    background-color: #e60012;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: 300ms;
}

.index-product .container .list {
    position: relative;
    display: none;
    margin-bottom: 15px;
}

.index-product .container .list.active {
    display: block;
}

.index-product .container .list .swiper-slide:hover .pro-name {
    background-color: #d0262e;
}

.index-product .container .list .swiper-slide .img-box a {
    display: inline-block;
    width: 100%;
}

.index-product .container .list .swiper-slide .img-box a img {
    width: 100%;
}

.index-product .container .list .swiper-slide .pro-name {
    display: block;
    width: 86%;
    font: 16px/50px l;
    color: #fff;
    background-color: #000;
    text-align: center;
    margin: 0 auto;
    position: relative;
    top: -13px;
    transition: 300ms;
}

.index-product .container .list .swiper-button-next,
.index-product .container .list .swiper-button-prev {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1px solid #8d9092;
    text-align: center;
    opacity: 1;
    background-image: none;
}

.index-product .container .list .swiper-button-next i,
.index-product .container .list .swiper-button-prev i {
    font-size: 18px;
    color: #8d9092;
    line-height: 33px;
}

.index-product .container .list .swiper-button-prev {
    left: -45px;
}

.index-product .container .list .swiper-button-next {
    right: -45px;
}

.index-product .container .pro-link {
    display: block;
    width: 37px;
    height: 37px;
    border-radius: 50%;
    border: 1px solid #000;
    font-size: 35px;
    line-height: 35px;
    color: #000;
    text-align: center;
    margin: 0 auto;
}

.index-strangth {
    background: url(../images/isbg.jpg) center center no-repeat;
    background-size: cover;
    padding: 50px 0 75px;
}

.index-strangth .container .title {
    font: 45px b;
    color: #fff;
	font-weight:bold;
    text-transform: uppercase;
    margin-bottom: 50px;
}

.index-strangth .container .content .img-box {
    width: 35%;
}

.index-strangth .container .content .img-box img {
    width: 100%;
}

.index-strangth .container .content .right {
    width: 62%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.index-strangth .container .content .right li {
    width: 47%;
    padding: 135px 40px 40px;
    margin-bottom: 40px;
    text-align: center;
    transition: 500ms;
    cursor: pointer;
}

.index-strangth .container .content .right li:hover:nth-of-type(1) {
    background: #d0262e url(../images/is1-hv.png) center 40px no-repeat;
}

.index-strangth .container .content .right li:hover:nth-of-type(2) {
    background: #d0262e url(../images/is2-hv.png) center 40px no-repeat;
}

.index-strangth .container .content .right li:hover:nth-of-type(3) {
    background: #d0262e url(../images/is3-hv.png) center 40px no-repeat;
}

.index-strangth .container .content .right li:hover:nth-of-type(4) {
    background: #d0262e url(../images/is4-hv.png) center 40px no-repeat;
}

.index-strangth .container .content .right li:hover p:nth-of-type(1) {
    color: #fff;
}

.index-strangth .container .content .right li:hover p:nth-of-type(2) {
    color: #fff;
}

.index-strangth .container .content .right li:nth-of-type(1) {
    background: #fff url(../images/is1.png) center 40px no-repeat;
}

.index-strangth .container .content .right li:nth-of-type(2) {
    background: #fff url(../images/is2.png) center 40px no-repeat;
}

.index-strangth .container .content .right li:nth-of-type(3) {
    margin-bottom: 0;
    background: #fff url(../images/is3.png) center 40px no-repeat;
}

.index-strangth .container .content .right li:nth-of-type(4) {
    margin-bottom: 0;
    background: #fff url(../images/is4.png) center 40px no-repeat;
}

.index-strangth .container .content .right li p:nth-of-type(1) {
    font: 18px m;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 30px;
    transition: 500ms;
}

.index-strangth .container .content .right li p:nth-of-type(2) {
    font: 14px/22px l;
    color: #000;
    transition: 500ms;
}

.index-net {
    padding-top: 95px;
    background: url(../images/inbg.jpg) center center no-repeat;
    background-size: cover;
    height: 1300px;
}

.index-net .tit {
    text-align: center;
    margin-bottom: 700px;
	margin-top: -50px;
}

.index-net .tit p:nth-of-type(1) {
    font: 50px b;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 35px;
}

.index-net .tit p:nth-of-type(2) {
    font: 16px/25px l;
    color: #000;
	margin-top: -30px;
}

.index-net .partner {
    font: 50px b;
    color: #fff;
	font-weight: bold;
    text-transform: uppercase;
    text-align: right;
    margin-bottom: 80px;
}

.index-net #partner {
    margin-bottom: 70px;
}

.index-net #partner .swiper-slide img {
    width: 100%;
}

.index-net .control{
    text-align: center;
    font-size: 0;
}

.index-net .control>div{
    display: inline-block;
    width: 50px;
    height: 50px;
    background: rgba(0,0,0,.8);
    text-align: center;
    cursor: pointer;
}
.index-net .control>div:first-child{
    margin-right: 15px;
}
.index-net .control>div i{
    line-height: 50px;
    color: #fff;
    font-size: 30px;
}

.index-net .link:hover {
    transform: scale(1.1);
}

#footer .top {
    padding-bottom: 90px;
    padding-top: 60px;
    background-color: #ebf0f3;
}

#footer .top .container .item:nth-of-type(1) {
    width: 26%;
    padding-right: 85px;
}

#footer .top .container .item:nth-of-type(1)>p {
    font: 24px m;
    color: #000;
    padding-bottom: 15px;
    position: relative;
    text-transform: uppercase;
    margin-bottom: 30px;
}

#footer .top .container .item:nth-of-type(1)>p::after {
    content: "";
    position: absolute;
    width: 35px;
    height: 5px;
    background-color: #cf0717;
    left: 0;
    bottom: 0;
}

#footer .top .container .item:nth-of-type(1) ul li {
    font: 14px/20px l;
    color: #000;
    padding-left: 30px;
    margin-bottom: 10px;
}

#footer .top .container .item:nth-of-type(1) ul li:last-of-type {
    margin-bottom: 0;
}

#footer .top .container .item:nth-of-type(1) ul li:nth-of-type(1) {
    background: url(../images/map.png) left 5px no-repeat;
}

#footer .top .container .item:nth-of-type(1) ul li:nth-of-type(2) {
    background: url(../images/phone.png) left center no-repeat;
}

#footer .top .container .item:nth-of-type(1) ul li:nth-of-type(3) {
    background: url(../images/fax.png) left center no-repeat;
}

#footer .top .container .item:nth-of-type(1) ul li:nth-of-type(4) {
    background: url(../images/email.png) left center no-repeat;
}

#footer .top .container .item:nth-of-type(1) ul li:nth-of-type(5) {
    background: url(../images/ie.png) left center no-repeat;
}

#footer .top .container .item:nth-of-type(2) {
    width: 17%;
}

#footer .top .container .item:nth-of-type(2)>p {
    font: 24px m;
    color: #000;
    padding-bottom: 15px;
    position: relative;
    text-transform: uppercase;
    margin-bottom: 30px;
}

#footer .top .container .item:nth-of-type(2)>p::after {
    content: "";
    position: absolute;
    width: 35px;
    height: 5px;
    background-color: #cf0717;
    left: 0;
    bottom: 0;
}

#footer .top .container .item:nth-of-type(2) ul li {
    margin-bottom: 20px;
}

#footer .top .container .item:nth-of-type(2) ul li:last-of-type {
    margin-bottom: 0;
}

#footer .top .container .item:nth-of-type(2) ul li a {
    font: 14px l;
    color: #474747;
}

#footer .top .container .item:nth-of-type(2) ul li a:hover {
    color: #cf0717;
}

#footer .top .container .item:nth-of-type(3) {
    width: 43%;
    padding-right: 110px;
}

#footer .top .container .item:nth-of-type(3)>p {
    font: 24px m;
    color: #000;
    padding-bottom: 15px;
    position: relative;
    text-transform: uppercase;
    margin-bottom: 30px;
}

#footer .top .container .item:nth-of-type(3)>p::after {
    content: "";
    position: absolute;
    width: 35px;
    height: 5px;
    background-color: #cf0717;
    left: 0;
    bottom: 0;
}

#footer .top .container .item:nth-of-type(3) ul li {
    margin-bottom: 20px;
}

#footer .top .container .item:nth-of-type(3) ul li:last-of-type {
    margin-bottom: 0;
}

#footer .top .container .item:nth-of-type(3) ul li .img-box {
    width: 24%;
}

#footer .top .container .item:nth-of-type(3) ul li .img-box img {
    width: 100%;
}

#footer .top .container .item:nth-of-type(3) ul li .info {
    width: 76%;
    padding-left: 10px;
    margin-top: 15px;
}

#footer .top .container .item:nth-of-type(3) ul li .info p:nth-of-type(1) {
    font: 14px l;
    color: #474747;
    margin-bottom: 15px;
}

#footer .top .container .item:nth-of-type(3) ul li .info p:nth-of-type(1) a:hover {
    color: #cf0717;
}

#footer .top .container .item:nth-of-type(3) ul li .info p:nth-of-type(2) {
    font: 14px l;
    color: #474747;
}

#footer .top .container .item:nth-of-type(4) {
    width: 14%;
}

#footer .top .container .item:nth-of-type(4)>p {
    font: 24px m;
    color: #000;
    padding-bottom: 15px;
    position: relative;
    text-transform: uppercase;
    margin-bottom: 30px;
}

#footer .top .container .item:nth-of-type(4)>p::after {
    content: "";
    position: absolute;
    width: 35px;
    height: 5px;
    background-color: #cf0717;
    left: 0;
    bottom: 0;
}

#footer .top .container .item:nth-of-type(4) img {
    width: 100%;
}

#footer .bottom {
    background-color: #dee2e4;
    padding: 20px 0;
}

#footer .bottom .container p {
    font: 14px l;
    color: #474747;
}

#footer .bottom .container p a:hover {
    color: #cf0717;
}

#footer .bottom .container ul {
    font-size: 0;
}

#footer .bottom .container ul li {
    display: inline-block;
    margin-right: 25px;
}

#footer .bottom .container ul li:last-of-type {
    margin-right: 0;
}

#footer .bottom .container ul li i {
    font-size: 20px;
    color: #424344;
}
.video-wrapper{
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.5);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99999;
  display: none;
}
.video-wrapper .video{
  max-width: 800px;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
	position: absolute;
	width: 100%;
}
.video-wrapper .close{
  position: absolute;
  font-size: 40px;
  color: #fff;
  right: 60px;
  top: 60px;
  cursor: pointer;
}

@media (max-width: 1800px) {
    #header .nav .logo {
        margin-left: 15px;
    }
}

@media (max-width: 1440px) {
    #header .nav .menu-box .menu>li {
        margin-left: 25px;
    }
    .index-product .container .list .swiper-button-prev {
        left: 15px;
    }
    .index-product .container .list .swiper-button-next {
        right: 15px;
    }
	.index-banner .swiper-slide{
		height: 700px;
	}
}

@media (max-width: 1200px) {
    #header .nav .menu-box {
        display: none;
    }
    #header .nav .search-btn {
        display: none;
    }
    #header .nav .h-lan {
        display: none;
    }
    #header .nav .logo {
        width: 100%;
        text-align: center;
        margin: 0;
    }
    #header .nav {
        background-color: #333;
        border-bottom: none;
        height: auto;
        padding: 25px 0;
    }
    #header .nav .toggle-btn {
        display: block;
    }
    #header .toggle-nav {
        display: block;
    }
    .index-banner {
        margin-top: 102px;
    }
    .index-banner .swiper-slide {
        height: 600px;
    }
    .index-banner .swiper-slide .container .inner {
        width: 100%;
        text-align: center;
        left: 0;
    }
    .index-product .container .top .tit {
        float: none;
        margin-bottom: 40px;
    }
    .index-product .container .top .nav {
        float: none;
    }
}

@media (max-width: 768px) {
    .index-banner .swiper-slide .container .inner p:nth-of-type(1) {
        font-size: 30px;
        line-height: 45px;
    }
    .index-banner .swiper-slide .container .inner p:nth-of-type(2) {
        display: none;
    }
    .index-banner .swiper-slide .container .inner .navigation a {
        display: none;
    }
    .index-banner #banner-page {
        display: none;
    }
    .index-about .container .top .left {
        width: 100%;
        float: none;
        padding-right: 0;
    }
    .index-about .container .top .right {
        width: 100%;
        float: none;
    }
    .index-business .list li {
        flex: auto;
        width: 50%;
        height: 500px;
    }
    .index-product .container .top .nav li {
        margin-left: 0;
    }
    .index-strangth .container .content .img-box {
        width: 100%;
        margin-bottom: 40px;
    }
    .index-strangth .container .content .right {
        width: 100%;
    }
    #footer .top {
        padding: 60px 0;
    }
    #footer .top .container .item:nth-of-type(1) {
        width: 100%;
        padding-right: 0;
        margin-bottom: 40px;
    }
    #footer .top .container .item:nth-of-type(2) {
        width: 100%;
        margin-bottom: 40px;
    }
    #footer .top .container .item:nth-of-type(3) {
        width: 100%;
        padding-right: 0;
    }
    #footer .top .container .item:nth-of-type(4) {
        display: none;
    }
}

@media (max-width: 576px) {
    #header .nav {
        padding: 20px 0;
    }
    #header .nav .logo img {
        width: 150px;
    }
    #header .nav .toggle-btn {
        top: 23px;
    }
    #header .nav .toggle-btn i {
        font-size: 25px;
    }
    #header .toggle-nav {
        padding-top: 75px;
    }
    .index-banner {
        margin-top: 65px;
    }
    .index-banner .swiper-slide {
        height: 300px;
    }
    .index-banner .swiper-slide .container .inner p:nth-of-type(1) {
        font-size: 25px;
        line-height: 45px;
    }
    .index-about {
        padding-bottom: 60px;
    }
    .index-about .container .top .right p:nth-of-type(1) {
        font-size: 16px;
        margin-bottom: 10px;
    }
    .index-about .container .top .right p:nth-of-type(2) {
        font-size: 25px;
        line-height: 35px;
    }
    .index-about .container .top .right p:nth-of-type(3) {
        font-size: 14px;
    }
    .index-about .container .top .right a {
        width: 120px;
        height: 40px;
        line-height: 38px;
        font-size: 14px;
    }
    .index-about .container .bottom .item {
        width: 100%;
        margin-bottom: 20px;
    }
    .index-about .container .bottom .item p:nth-of-type(1) {
        font-size: 25px;
    }
    .index-business .list li {
        width: 100%;
    }
    .index-business .tit p:nth-of-type(1) {
        font-size: 25px;
    }
    .index-business .tit p:nth-of-type(2) {
        font-size: 14px;
        line-height: 20px;
    }
    .index-business .list li {
        height: 400px;
    }
    .index-business .list li .inner p:nth-of-type(1) {
        font-size: 25px;
    }
    .index-business .list li .inner p:nth-of-type(2) {
        font-size: 18px;
    }
    .index-product .container .top .nav li {
        margin-bottom: 15px;
    }
    .index-product .container .top .nav li a {
        padding-bottom: 10px;
    }
    .index-product .container .top .tit {
        font-size: 25px;
        line-height: 35px;
        padding-bottom: 10px;
    }
    .index-strangth .container .title {
        font-size: 25px;
    }
    .index-strangth .container .content .right li {
        width: 100%;
    }
    .index-strangth .container .content .right li:nth-of-type(3) {
        margin-bottom: 40px;
    }
    .index-net {
        height: auto;
        background-image: none;
        background-color: #ccc;
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .index-net .tit {
        margin-bottom: 40px;
    }
    .index-net .tit p:nth-of-type(1) {
        font-size: 25px;
        margin-bottom: 20px;
    }
    .index-net .partner {
        font-size: 25px;
        color: #000;
        text-align: center;
        margin-bottom: 20px;
    }
    .index-net #partner {
        margin-bottom: 40px;
    }
    #footer .top .container .item>p {
        font-size: 16px!important;
    }
    #footer .top .container .item:nth-of-type(3) ul li .img-box {
        width: 50%;
    }
    #footer .top .container .item:nth-of-type(3) ul li .info {
        width: 50%;
    }
    #footer .bottom .container p {
        float: none;
        text-align: center;
        margin-bottom: 15px;
    }
    #footer .bottom .container ul {
        float: none;
        text-align: center;
    }
}

#cs {
    width: 100%;
}

#cs tr td {
    padding: 5px;
    font: 16px l;
    color: #000;
    border: 1px solid #000;
}

.inner-banner {
    padding-top: 158px;
    color: #fff;
    text-align: center;
    height: 400px;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url("../images/inner-banner.jpg");
    background-size: cover;
}

.inner-banner .inner-tit {
    font-size: 45px;
    text-transform: uppercase;
	font-family: Gabo Drive;
	
}

.inner-banner .bread-crumbs a,
.inner-banner .bread-crumbs span {
    font-size: 14px;
    color: #fff;
}

.inner-banner .bread-crumbs a:hover {
    color: #d11a1a;
}

.inner-page {
    padding: 55px 0 80px;
}

.inner-page .grid {
    display: inline-block;
    width: 100%;
}

.inner-page .grid>.sideBar.wide.column {
    width: 22%!important;
    float: left;
}

.inner-page .grid>.sideBar.wide.column .side-tit {
    color: #000000;
    margin-bottom: 31px;
}

.inner-page .grid>.sideBar.wide.column .side-tit h2 {
    font-size: 36px;
    line-height: 1em;
}

.inner-page .grid>.sideBar.wide.column .side-tit span {
    font-size: 14px;
}

.inner-page .grid>.sideBar.wide.column .side-tit span a {
    color: #000;
}

.inner-page .grid>.sideBar.wide.column .side-menu {
    margin-bottom: 64px;
}

.inner-page .grid>.sideBar.wide.column .side-menu li a {
    color: #000000;
    font-size: 14px;
    display: block;
    height: 40px;
    line-height: 40px;
    background: #efefef;
    padding-left: 19px;
    margin-bottom: 2px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.inner-page .grid>.sideBar.wide.column .side-menu li li a {
    padding-left: 35px;
    position: relative;
}

.inner-page .grid>.sideBar.wide.column .side-menu li li a:after {
    content: '';
    width: 5px;
    height: 1px;
    background: #222;
    position: absolute;
    top: 50%;
    left: 19px;
    display: block;
}

.inner-page .grid>.sideBar.wide.column .side-menu li a:hover,
.inner-page .grid>.sideBar.wide.column .side-menu li a.active {
    background: #d11a1a;
    color: #ffffff;
}

.inner-page .grid>.sideBar.wide.column .side-menu li a:hover:after,
.inner-page .grid>.sideBar.wide.column .side-menu li a.active:after {
    background: #fff;
}

.inner-page .grid>.sideBar.wide.column .side-contact {
    padding: 40px 24px 40px 16px;
    background: #efefef;
}

.inner-page .grid>.sideBar.wide.column .side-contact p {
    color: #000000;
    font-size: 16px;
    line-height: 25px;
    margin-top: 25px;
}

.inner-page .grid>.sideBar.wide.column .side-contact p:first-child {
    margin-top: 0;
}

.inner-page .grid>.sideBar.wide.column .side-contact p a {
    color: #000000;
}

.inner-page .grid>.sideBar.wide.column .side-contact .side-social {
    margin-top: 16px;
}

.inner-page .grid>.sideBar.wide.column .side-contact .side-social a {
    display: inline-block;
    width: 21px;
    height: 21px;
    text-align: center;
    line-height: 21px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    background: #272636;
    color: #efefef;
}

.inner-page .grid>.sideBar.wide.column .side-contact .side-social a .icon {
    margin-right: 0;
}

.inner-page .grid>.sideBar.wide.column .side-contact .side-social a:hover {
    background: #d11a1a;
    color: #fff;
}

.inner-page .inner-tit {
    color: #000000;
    font-size: 40px;
	font-family: Gabo Drive;
    text-transform: uppercase;
}

.inner-page .inner-txt {
    color: #000000;
    font-size: 16px;
    line-height: 35px;
}

.inner-page .grid>.page-rightBar.wide.column {
    width: 78%!important;
    padding-left: 3.1rem!important;
    float: right;
}

.prodetFeedback {
    padding: 70px 0 100px;
    background: #fff;
    display: inline-block;
    width: 100%;
}

.prodetFeedback .ptForm {
    margin-top: 83px;
}

.prodetFeedback .ptForm label {
    font-size: 16px;
    color: #3d3d3d;
    font-weight: 500;
    margin-bottom: 0;
}

.prodetFeedback .ptForm input,
.prodetFeedback .ptForm textarea {
    transition: 0.3s ease;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    background: none;
    color: #3d3d3d;
    font-size: 16px;
    width: 100%;
    outline: none;
    resize: none;
    border: none;
    border-bottom: 1px solid #bfbfbf;
}

.prodetFeedback .ptForm .fbTop {
    margin-bottom: 62px;
}

.prodetFeedback .ptForm .fbTop li {
    float: left;
    width: 31%;
    margin-right: 2%;
}

.prodetFeedback .ptForm .fbTop li:last-child {
    margin-right: 0;
}

.prodetFeedback .ptForm .fbTop li input {
    height: 15px;
    padding: 0 4px;
}

.prodetFeedback .ptForm .fbTop li input:focus {
    height: 43px;
    border-bottom: 3px solid #d11a1a;
}

.prodetFeedback .ptForm .fbBot {
    margin-bottom: 75px;
}

.prodetFeedback .ptForm .fbBot textarea {
    height: 16px;
    overflow: hidden;
}

.prodetFeedback .ptForm .fbBot textarea:focus {
    height: 55px;
    border-bottom: 3px solid #d11a1a;
}

.prodetFeedback .ptForm .fbBot .yzm-box {
    margin-top: 40px;
}

.prodetFeedback .ptForm .fbBot .yzm-box label {
    display: block;
}

.prodetFeedback .ptForm .fbBot .yzm-box input {
    max-width: 397px;
    height: 15px;
    padding: 0 4px;
}

.prodetFeedback .ptForm .fbBot .yzm-box input:focus {
    height: 43px;
    border-bottom: 3px solid #d11a1a;
}

.prodetFeedback .ptForm .fbBot .yzm-box img {
    display: inline-block;
}

.prodetFeedback .ptForm input[type="submit"] {
    box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.3);
    -ms-box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.3);
    -o-box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.3);
    transition: 0.3s ease;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    text-transform: capitalize;
    font-size: 16px;
    width: 288px;
    height: 53px;
    border: none;
    background: #d11a1a;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    color: #fff;
    cursor: pointer;
}

.prodetFeedback .ptForm input[type="submit"]:hover {
    background-color: #222;
}

.prodetFeedback .m-form-l li {
    margin-bottom: 30px;
}

.about-page {
    padding-bottom: 0;
}

.about-page .page-rightBar {
    /*margin-top: 83px;*/
}

.about-page .about-article .video-box {
    margin-bottom: 77px;
}

.about-page .about-article .video-box span {
    margin-top: 9px;
    color: #000000;
    font-size: 15px;
    font-weight: bold;
    text-transform: uppercase;
    display: inline-block;
}

.about-page .about-article .video-box span .icon {
    font-size: 24px;
    vertical-align: middle;
}

.about-page .about-article h1 {
    margin-bottom: 33px;
}

.about-page .about-article .flbox {
    margin-top: 61px;
}

.about-page .a-factory {
    margin-top: 86px;
    margin-bottom: 0;
}

.about-page .a-factory .head-box {
    margin-bottom: 39px;
}

.about-page .a-factory .bot-box {
    padding: 63px 0 49px;
    background: #383838;
}

.about-page .a-factory .bot-box li .con-box .tit a {
    overflow: visible;
    color: #ffffff;
}

.about-page .a-factory .bot-box li .con-box .more {
    margin-top: 17px;
    display: inline-block;
    color: #ffffff;
}

.product-yd-page {
    padding: 0;
}

.product-yd-page .procat-box {
    background: #ececec;
    padding: 47px 0 45px;
}

.product-yd-page .procat-box>.container>.grid .cat-con {
    width: 63.5%!important;
}

.product-yd-page .procat-box>.container>.grid .cat-con .tit a {
    color: #000000;
    font-size: 38px;
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-yd-page .procat-box>.container>.grid .cat-con .abst {
    color: #000000;
    font-size: 16px;
    line-height: 22px;
    margin: 54px 0 88px;
}

.product-yd-page .procat-box>.container>.grid .cat-con .more {
    color: #000000;
    font-size: 18px;
    text-transform: uppercase;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    display: block;
    width: 219px;
    height: 37px;
    line-height: 37px;
    text-align: center;
    background: #fff;
}

.product-yd-page .procat-box>.container>.grid .cat-con .more:hover {
    background: #d11a1a!important;
    color: #fff;
}

.product-yd-page .procat-box>.container>.grid .cat-pic {
    width: 36.5%!important;
    text-align: right;
}

.product-yd-page .procat-box>.container>.grid .cat-pic a {
    display: inline-block;
}

.product-yd-page .procat-box:nth-of-type(2n) {
    background: #fff;
}

.product-yd-page .procat-box:nth-of-type(2n)>.container>.grid .cat-con .more {
    background: #ececec;
}


/*.cat-box {
  margin-bottom: 50px;
}*/

.cat-box .intro {
    color: #000000;
    font-size: 16px;
    line-height: 23px;
}

.cat-box .return {
    color: #000000;
    font-size: 32px;
    text-transform: uppercase;
    margin-top: 10px;
    cursor: pointer;
}

.cat-box .return .icon {
    margin-right: 0;
    margin-left: 5px;
}

.pro-advantage {
    margin-top: 54px;
}

.pro-advantage .advan-list {
    margin-top: 53px;
}

.pro-advantage .advan-list .item {
    background: #fbfbfb;
}

.pro-advantage .advan-list .item:nth-of-type(2n) {
    background: #efefef;
}

.pro-advantage .advan-list .item .grid {
    display: table;
    height: 386px;
    width: 100%;
}

.pro-advantage .advan-list .item .grid .advan-pic,
.pro-advantage .advan-list .item .grid .advan-con {
    vertical-align: middle;
    display: table-cell;
}

.pro-advantage .advan-list .item .grid .advan-pic {
    width: 21.2%!important;
}

.pro-advantage .advan-list .item .grid .advan-con {
    width: 78.8%!important;
}

.pro-advantage .advan-list .item .grid .advan-con .tit {
    margin-bottom: 20px;
    color: #000000;
    font-size: 28px;
    text-transform: uppercase;
}

.pro-advantage .advan-list .item .grid .advan-con .abst {
    color: #000000;
    font-size: 16px;
    line-height: 34px;
}

.pro-advantage .advan-list .item .grid .advan-con .abst em,
.pro-advantage .advan-list .item .grid .advan-con .abst span {
    display: block;
}

.pro-advantage .advan-list .item .grid .advan-con .abst em {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: -6px;
}

.pro-advantage .advan-list .item .grid .advan-con .abst span {
    margin-bottom: 12px;
}

.pro-advantage .advan-list .item .grid .advan-con .abst span:last-child {
    margin-bottom: 0;
}

.product-page.lg-page {
    padding-bottom: 90px;
}

.product-page .pro-list li {
    float: left;
    width: 24.2%;
    margin-right: 1%;
    margin-bottom: 22px;
}

.product-page .pro-list li .img-box,
.prodet-parts .swiper-wrapper .img-box {
    border: 1px solid #eee;
    display: block;
}

.prodet-parts .swiper-wrapper {
    margin: -10px;
}

.prodet-parts .swiper-wrapper .swiper-slide {
    padding: 10px;
}

.product-page .pro-list li img {
    width: 100%;
}

.product-page .pro-list li:nth-of-type(4n) {
    margin-right: 0;
}

.product-page .pro-list li .tit {
    text-align: center;
    margin-top: 13px;
    height: 40px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.product-page .pro-list li .tit a {
    color: #000000;
    font-size: 14px;
    /*  text-transform: uppercase;*/
}

.prodet-page {
    padding-bottom: 0;
}

.prodet-page .prodet-tit {
    color: #000000;
    font-size: 40px;
    margin-bottom: 60px;
}

.prodet-page .prodet-top .prodet-pic {
    width: 47.3%;
}

.prodet-page .prodet-top .prodet-pic img {
    width: 100%;
	  border:1px solid #efefef;
}

.prodet-page .prodet-top .prodet-box-one {
    width: 46.7%;
}

.prodet-page .prodet-top .prodet-box-one .pro-tit {
    color: #000000;
    font-size: 36px;
}

.prodet-page .prodet-top .prodet-box-one .image-thumb {
    margin-bottom: 45px;
}

.prodet-page .prodet-top .prodet-box-one .image-gallery:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    overflow: hidden;
    clear: both;
}

.prodet-page .prodet-top .prodet-box-one .image-gallery li {
    margin-right: 2%;
    width: 15.5%;
    padding: 0;
}

.prodet-page .prodet-top .prodet-box-one .det {
    margin: 30px 0 30px;
}

.prodet-page .prodet-top .prodet-box-one .det p {
    color: #000000;
    font-size: 20px;
    line-height: 32px;
}

.prodet-page .prodet-top .prodet-box-one .prodet-email {
    display: block;
    width: 245px;
    height: 53px;
    background: url("../images/prodet-fb.jpg") no-repeat center;
}

.prodet-page .prodet-bot {
    margin: 130px 0 69px;
}

.prodet-page .prodet-bot p {
    color: #000000;
    font-size: 18px;
    line-height: 26px;
}

.prodet-parts .swiper-wrapper p {
    background: #fff;
    position: relative;
    z-index: 1;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    padding: 5px 10px;
}

.prodet-page .prodet-bot td,
.prodet-page .prodet-bot th {
    padding: 5px 10px;
}

.prodet-page .prodet-parts .list .item {
    margin-bottom: 117px;
}

.prodet-page .prodet-parts .list .item:last-child {
    margin-bottom: 0;
}

.prodet-page .prodet-parts .list .item .img-box {
    width: 34.2%!important;
}

.prodet-page .prodet-parts .list .item .con-box {
    width: 65.8%!important;
    padding-left: 2.6rem!important;
}

.prodet-page .prodet-parts .list .item .con-box .tit {
    color: #000000;
    font-size: 28px;
    margin-bottom: 26px;
}

.prodet-page .prodet-parts .list .item .con-box .table-box table {
    width: 100%;
}

.prodet-page .prodet-parts .list .item .con-box .table-box table tr {
    vertical-align: top;
}

.prodet-page .prodet-parts .list .item .con-box .table-box table tr:first-child td {
    padding-bottom: 14px;
}

.prodet-page .prodet-parts .list .item .con-box .table-box table tr:last-child td {
    padding-top: 14px;
}

.prodet-page .prodet-parts .list .item .con-box .table-box table tr:nth-of-type(2) td {
    padding: 14px 0;
    border-top: 2px solid #000;
    border-bottom: 2px solid #000;
}

.prodet-page .prodet-parts .list .item .con-box .table-box table tr td {
    color: #000000;
    font-size: 18px;
    line-height: 26px;
    font-weight: 500;
}

.dz-page {
    padding: 0;
}

.dz-page .dz-tit {
    color: #000000;
    font-size: 30px;
    text-transform: uppercase;
}

.dz-page .dz-top {
    padding: 82px 0 40px;
}

.dz-page .dz-top .intro {
    color: #000000;
    font-size: 16px;
    line-height: 24px;
    margin: 21px 0 73px;
}

.dz-page .dz-top img {
    margin: 0 auto;
}

.dz-page {
    padding: 0;
}

.dz-page .cus-service {
    padding: 130px 0 108px;
    background: #e2e2e2;
}

.dz-page .cus-service .dz-tit {
    margin-bottom: 19px;
}

.dz-page .cus-service p {
    color: #000000;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 90px;
}

.dz-page .cus-contact {
    height: 273px;
    background: url(../images/cus-contact-pic.jpg) no-repeat center;
    padding-top: 54px;
    overflow: hidden;
}

.dz-page .cus-contact .dz-tit {
    color: #fff;
}

.dz-page .cus-contact p {
    color: #fff;
    font-size: 23px;
    font-weight: bold;
}

.dz-page .cus-contact p span:last-child {
    margin-left: 72px;
}

.dz-page .dz-body {
    padding: 51px 0 110px;
    background: #f0f0f0;
}

.dz-page .dz-tit {
    color: #000000;
    font-size: 30px;
    text-transform: uppercase;
    margin-bottom: 53px;
}

.dz-page .dz-body .last-num .icon,
.dz-page .dz-body .last-num input {
    float: left;
    height: 19px;
    text-align: center;
    line-height: 19px;
}

.dz-page .dz-body .last-num .icon {
    margin-right: 0!important;
    width: 19px;
    font-size: 12px;
    color: #fff;
    background: #b6b6b6;
}

.dz-page .dz-body .last-num input {
    border: 1px solid #7d7d7d;
    background: #f0f0f0;
    color: #202020;
    font-size: 16px;
    -moz-appearance: textfield;
}

.dz-page .dz-body .last-num input::-webkit-outer-spin-button,
.dz-page .dz-body .last-num input::-webkit-inner-spin-button {
    -webkit-appearance: none !important;
    margin: 0;
}

.dz-page .dz-body .dz-left-box {
    width: 48.4%!important;
    background: #fff;
}

.dz-page .dz-body .dz-left-box .dz-gallery img {
    width: 100%;
    display: none;
}

.dz-page .dz-body .dz-left-box .dz-gallery img:first-child {
    display: block;
}

.dz-page .dz-body .dz-left-box .select-box {
    padding: 31px 22px 0 27px;
}

.dz-page .dz-body .dz-left-box .select-box .sel-tit {
    color: #202020;
    font-size: 18px;
    margin-bottom: 19px;
}

.dz-page .dz-body .dz-left-box .select-box .sel-list li {
    transition: 0.3s ease;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    margin-bottom: 19px;
    cursor: pointer;
    color: #c7c7c7;
    font-size: 15px;
    float: left;
    width: 31.47%;
    margin-right: 2.79%;
    height: 49px;
    line-height: 49px;
    text-align: center;
    border: 1px solid #c7c7c7;
}

.dz-page .dz-body .dz-left-box .select-box .sel-list li:nth-of-type(3n) {
    margin-right: 0;
}

.dz-page .dz-body .dz-left-box .select-box .sel-list li:hover,
.dz-page .dz-body .dz-left-box .select-box .sel-list li.active {
    color: #d81e06;
    border-color: #d81e06;
}

.dz-page .dz-body .dz-left-box .select-box .sel-list li>i {
    width: 23px;
    height: 23px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    display: inline-block;
    vertical-align: middle;
    margin-right: 16px;
}

.dz-page .dz-body .dz-left-box .select-box .sel-list li.cus-filed {
    position: relative;
}

.dz-page .dz-body .dz-left-box .select-box .sel-list li.cus-filed input {
    color: #c7c7c7;
    text-align: center;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border: none;
    background: none;
    outline: none;
}

.dz-page .dz-body .dz-left-box .select-box .sel-list li.cus-filed input:focus {
    border: 1px solid #d81e06;
}

.dz-page .dz-body .dz-left-box .select-box .sel-list li.cus-filed ::-webkit-input-placeholder {
    color: #c7c7c7;
}

.dz-page .dz-body .dz-left-box .select-box .sel-list li.cus-filed :-moz-placeholder {
    color: #c7c7c7;
}

.dz-page .dz-body .dz-left-box .select-box .sel-list li.cus-filed ::-moz-placeholder {
    color: #c7c7c7;
}

.dz-page .dz-body .dz-left-box .select-box .sel-list li.cus-filed :-ms-input-placeholder {
    color: #c7c7c7;
}

.dz-page .dz-body .dz-left-box .select-box .dz-color {
    margin: 10px 0 41px;
}

.dz-page .dz-body .dz-left-box .settlement-box {
    padding: 0 22px 28px 27px;
}

.dz-page .dz-body .dz-left-box .settlement-box .item {
    padding: 0;
}

.dz-page .dz-body .dz-left-box .settlement-box .last-price span {
    color: #000000;
    font-size: 18px;
    margin-right: 6px;
}

.dz-page .dz-body .dz-left-box .settlement-box .last-price strong {
    color: #d81e06;
    font-size: 26px;
    font-weight: 500;
}

.dz-page .dz-body .dz-left-box .settlement-box .add-to-list {
    width: 31.2%;
}

.dz-page .dz-body .dz-left-box .settlement-box .add-to-list button {
    transition: 0.4s ease;
    -webkit-transition: 0.4s ease;
    -moz-transition: 0.4s ease;
    -ms-transition: 0.4s ease;
    -o-transition: 0.4s ease;
    cursor: pointer;
    outline: none;
    height: 47px;
    line-height: 47px;
    width: 100%;
    background: #d81e06;
    border: none;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    color: #fff;
    font-size: 18px;
}

.dz-page .dz-body .dz-left-box .settlement-box .add-to-list button:hover {
    background: #222;
}

.dz-page .dz-body .dz-right-box {
    padding-left: 4.9%!important;
}

.dz-page .dz-body .dz-right-box .inner-box {
    height: 100%;
    background: #fff;
}

.dz-page .dz-body .dz-right-box .inner-box .r-tit {
    line-height: 84px;
    background: #474747;
    text-align: center;
    color: #fff;
    font-size: 30px;
}

.dz-page .dz-body .dz-right-box .inner-box .last-table {
    padding-top: 29px;
    text-align: center;
}

.dz-page .dz-body .dz-right-box .inner-box .last-table input[type="checkbox"] {
    width: 16px;
    height: 16px;
    outline: none;
}

.dz-page .dz-body .dz-right-box .inner-box .last-table .t-head>.column {
    color: #000000;
    font-size: 16px;
    text-transform: uppercase;
}

.dz-page .dz-body .dz-right-box .inner-box .last-table .last-list {
    margin-top: 22px;
    padding-top: 25px;
    overflow-y: auto;
    height: 420px;
}

.dz-page .dz-body .dz-right-box .inner-box .last-table .last-list .one-box {
    margin-bottom: 49px;
}

.dz-page .dz-body .dz-right-box .inner-box .last-table .last-list .one-box>.column {
    color: #000000;
    font-size: 18px;
}

.dz-page .dz-body .dz-right-box .inner-box .last-table .last-list .one-box>.column .last-num {
    display: inline-block;
}

.dz-page .dz-body .dz-right-box .inner-box .last-table .last-list .one-box>.column.t_del .icon {
    cursor: pointer;
}

.dz-page .dz-body .dz-right-box .inner-box .total-price {
    padding: 0 16px 0 12px;
    margin-top: 66px;
}

.dz-page .dz-body .dz-right-box .inner-box .total-price span {
    vertical-align: middle;
    color: #000000;
    font-size: 18px;
    display: block;
    border-bottom: 1px dashed #d7d7d7;
    padding-bottom: 14px;
    padding-left: 5px;
}

.dz-page .dz-body .dz-right-box .inner-box .total-price span em {
    color: #d81e06;
    font-size: 26px;
    display: inline-block;
}

.dz-page .dz-body .dz-right-box .inner-box .dz-form {
    margin-top: 20px;
    padding: 0 16px 0 17px;
}

.dz-page .dz-body .dz-right-box .inner-box .dz-form .grid.two.column {
    margin: 0 0 7px 0!important;
}

.dz-page .dz-body .dz-right-box .inner-box .dz-form .grid.two.column .ipt-txt,
.dz-page .dz-body .dz-right-box .inner-box .dz-form .grid.two.column .ipt-ipt input {
    height: 32px;
    line-height: 32px;
    color: #5a5a5a;
    font-size: 18px;
}

.dz-page .dz-body .dz-right-box .inner-box .dz-form .grid.two.column .ipt-txt {
    background: #dbdbdb;
    padding-left: 16px!important;
}

.dz-page .dz-body .dz-right-box .inner-box .dz-form .grid.two.column .ipt-ipt input,
.dz-page .dz-body .dz-right-box .inner-box .dz-form .grid.two.column .ipt-ipt textarea {
    display: block;
    width: 100%;
    border: none;
    background: #f0f0f0;
    outline: none;
}

.dz-page .dz-body .dz-right-box .inner-box .dz-form .grid.two.column .ipt-ipt input {
    padding: 0 15px;
}

.dz-page .dz-body .dz-right-box .inner-box .dz-form .grid.two.column.ipt-area .ipt-txt,
.dz-page .dz-body .dz-right-box .inner-box .dz-form .grid.two.column.ipt-area .ipt-ipt textarea {
    height: 78px;
    line-height: normal;
    padding: 8px 15px!important;
}

.dz-page .dz-body .dz-right-box .inner-box .dz-form .grid.two.column.ipt-area .ipt-ipt textarea {
    resize: none;
}

.dz-page .dz-body .dz-right-box .inner-box .dz-form .f-sub {
    margin-top: 19px;
}

.dz-page .dz-body .dz-right-box .inner-box .dz-form .f-sub p.fl {
    margin-top: 5px;
    width: 70%;
    color: #d4d4d4;
    font-size: 16px;
    line-height: 18px;
}

.dz-page .dz-body .dz-right-box .inner-box .dz-form .f-sub input[type="submit"] {
    cursor: pointer;
    transition: 0.4s ease;
    -webkit-transition: 0.4s ease;
    -moz-transition: 0.4s ease;
    -ms-transition: 0.4s ease;
    -o-transition: 0.4s ease;
    height: 47px;
    background: #d81e06;
    width: 26%;
    color: #fff;
    font-size: 18px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border: none;
}

.dz-page .dz-body .dz-right-box .inner-box .dz-form .f-sub input[type="submit"]:hover {
    background: #222;
}

.news-page .newslist li {
    padding: 0 10px 38px 20px;
    
    margin-bottom: 20px;
}
.news-page .newslist li .new-l {
    width: 30%;
}
.news-page .newslist li .new-l img{
    width: 100%;
}
.news-page .newslist li .new-r {
    width: 70%;
    padding-left: 20px;
}

.news-page .newslist li .new-r h3 {
    font-size: 18px;
    font-weight: 600;
    transition: 0.2s ease;
    -webkit-transition: 0.2s ease;
    -moz-transition: 0.2s ease;
    -ms-transition: 0.2s ease;
    -o-transition: 0.2s ease;
}

.news-page .newslist li .new-r h3 a {
    color: #555;
    font-size: 18px;
}

.news-page .newslist li .new-r i.new-update,
.news-page .newslist li .new-r p.new-abst {
    color: #777;
    font-size: 14px;
}

.news-page .newslist li .new-r i.new-update {
    display: block;
    margin: 10px 0;
}

.news-page .newslist li .new-r p.new-abst {
    line-height: 1.8em;
    font-size: 15px;
}

.news-page .newslist li .new-r:hover h3 a {
    color: #d11a1a;
}

.newdet-page .news {}

.newdet-page .news .news_title h1 {
    padding-bottom: 10px;
    font-size: 20px;
    text-align: center;
    color: #333;
}

.newdet-page .news .news_date {
    font-size: 13px;
    line-height: 22px;
    text-align: center;
    border-bottom: 1px solid #CCC;
    padding-bottom: 5px;
}

.newdet-page .news .news_abst {
    border-bottom: 1px dashed #CCC;
    padding: 10px 0;
    font-size: 14px;
}

.newdet-page .news .news_abst p {
    display: inline-block;
}

.newdet-page .news .news_contents {
    color: #000;
    font-size: 14px;
    line-height: 24px;
    clear: both;
    margin-top: 10px;
    border-bottom: 1px dashed #CCC;
    padding: 20px 0;
}

.newdet-page .news .news_contents a {
    color: #000;
    font-size: 16px;
    line-height: 24px;
}

.newdet-page .news .news_contents p,
.newdet-page .news .news_contents div,
.newdet-page .news .news_contents span,
.newdet-page .news .news_contents table {
    color: #000;
    font-size: 14px;
    line-height: 24px;
    clear: both;
}

.newdet-page .news .news_next {
    width: 99%;
    margin-top: 0px;
    padding-left: 5px;
    border-top: 0px solid #CCC;
    text-align: left;
    padding-top: 10px;
}

.newdet-page .news .news_next a {
    width: 100%;
    height: 25px;
    line-height: 25px;
    color: #999;
    font-size: 15px;
    margin-left: 5px;
}

.newdet-page .news .news_next a:hover {
    width: 100%;
    height: 25px;
    line-height: 25px;
    color: #000;
}

.newdet-page .news .newsnav {
    margin-bottom: 30px;
}

.contact-page {
    padding: 0;
}

.contact-page .c-list-box {
    padding: 68px 0 112px;
    background: #f9f9f9;
}

.contact-page .c-list-box .tit {
    color: #000000;
    font-size: 48px;
    margin-bottom: 50px;
    text-align: center;
    text-transform: capitalize;
}
.contact-page .c-list-box .list{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.contact-page .c-list-box .list .item{
    width: 32%;
    text-align: center;
}
.contact-page .c-list-box .list .item i{
    display: inline-block;
    font-size: 70px;
    color: #d11a1a;
    margin-bottom: 30px;
}
.contact-page .c-list-box .list .item p{
    font-size: 16px;
    text-align: center;
}
.faq-page .faq-list dt {
    color: #000000;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 600;
}

.faq-page .faq-list dd {
    font-size: 14px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #ddd;
}

.cn-form {
    width: 100%;
    height: auto;
    padding: 35px 45px 25px;
    border: 1px solid #dddddd;
    background: #fff;
}

.cn-form p {
    font-size: 18px;
    padding: 10px 0;
    color: #666;
}

.cn-form .formtit {
    margin-bottom: 26px;
    font-size: 22px;
    font-weight: 600;
    line-height: 23px;
    color: #444;
    text-align: center;
    padding-bottom: 18px;
    background: url(../images/form-tit-bg.jpg) no-repeat center bottom;
}

.cn-form li {
    margin-bottom: 13px;
    color: #444;
}

.cn-form li label {
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
}

.cn-form .btnTjly {
    font-size: 15px;
    transition: 0.4s ease;
    -webkit-transition: 0.4s ease;
    -moz-transition: 0.4s ease;
    -ms-transition: 0.4s ease;
    -o-transition: 0.4s ease;
    width: 100%;
    height: 38px;
    background: #e6212a;
    border: none;
    cursor: pointer;
    color: #fff;
}

.cn-form .btnTjly:hover {
    background: #000;
}

.cn-form .m-form-l {
    width: 49%;
}

.cn-form .m-form-l li .iptTxt {
    font-size: 13px;
    padding: 0 15px;
    transition: 0.2s linear;
    -webkit-transition: 0.2s linear;
    -moz-transition: 0.2s linear;
    -ms-transition: 0.2s linear;
    -o-transition: 0.2s linear;
    width: 100%;
    border: 1px solid #dedede;
    height: 40px;
    outline: none;
    background: #fff;
    color: #777;
}

.cn-form .m-form-l li .iptTxt:focus {
    border-color: #e9322d;
    box-shadow: 0, 0, 6px, 6px, #f8b9b7 0 0 0 #000;
    -webkit-box-shadow: 0, 0, 6px, 6px, #f8b9b7 0 0 0 #000;
    -moz-box-shadow: 0, 0, 6px, 6px, #f8b9b7 0 0 0 #000;
    -ms-box-shadow: 0, 0, 6px, 6px, #f8b9b7 0 0 0 #000;
    -o-box-shadow: 0, 0, 6px, 6px, #f8b9b7 0 0 0 #000;
    outline: 0;
    background: rgba(255, 43, 66, 0.04);
}

.cn-form .m-form-l li .txtAre {
    width: 95%;
    height: 383px;
    border: 1px solid #dedede;
    outline: none;
    resize: none;
    padding: 14px;
    color: #ccc;
    line-height: 18px;
}

.cn-form .m-form-r {
    width: 49%;
}

.cn-form .m-form-r .pcsb{
    display: none;
}

.cn-form .m-form-r textarea {
    height: 237px;
    width: 100%;
    border: 1px solid #dedede;
    font-size: 13px;
    padding: 10px 15px;
    transition: 0.2s linear;
    -webkit-transition: 0.2s linear;
    -moz-transition: 0.2s linear;
    -ms-transition: 0.2s linear;
    -o-transition: 0.2s linear;
}

.cn-form .m-form-r textarea:focus {
    border-color: #e9322d;
    box-shadow: 0, 0, 6px, 6px, #f8b9b7 0 0 0 #000;
    -webkit-box-shadow: 0, 0, 6px, 6px, #f8b9b7 0 0 0 #000;
    -moz-box-shadow: 0, 0, 6px, 6px, #f8b9b7 0 0 0 #000;
    -ms-box-shadow: 0, 0, 6px, 6px, #f8b9b7 0 0 0 #000;
    -o-box-shadow: 0, 0, 6px, 6px, #f8b9b7 0 0 0 #000;
    outline: 0;
    background: rgba(255, 43, 66, 0.04);
}

.cn-form div.wpcf7 .ajax-loader {
    display: block;
    margin: 0 auto;
    width: auto;
    background-repeat: no-repeat;
    background-position: center;
}

.cn-form .yzm img {
    width: 19.4%;
}

.cn-form .yzm input {
    font-size: 13px;
    padding: 0 15px;
    width: 75.6%;
    border: 1px solid #dedede;
    height: 30px;
    outline: none;
    background: #fff;
    color: #777;
}

::-webkit-input-placeholder {
    color: #777;
}

:-moz-placeholder {
    color: #777;
}

::-moz-placeholder {
    color: #777;
}

:-ms-input-placeholder {
    color: #777;
}

.recommend-product {
    margin: 50px 0;
}

.recommend-product ul li {
    float: left;
    width: 23%;
    margin-left: 2.6%;
}

.recommend-product ul li p {
    color: #222;
    margin-top: 8px;
    text-align: center;
}

.recommend-product ul li:first-child {
    margin-left: 0;
}

.zoom-box {
    position: relative;
}

.zoom-box .pic-zoom {
    opacity: 0;
    filter: alpha(opacity=0);
    transition: 0.4s ease;
    -webkit-transition: 0.4s ease;
    -moz-transition: 0.4s ease;
    -ms-transition: 0.4s ease;
    -o-transition: 0.4s ease;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.6) url(../images/zoom.png) no-repeat center center;
}

.zoom-box:hover .pic-zoom {
    opacity: 1;
    filter: alpha(opacity=1);
}

.zoom-pic {
    overflow: hidden;
}

.zoom-pic img {
    transition: 0.6s ease;
    -webkit-transition: 0.6s ease;
    -moz-transition: 0.6s ease;
    -ms-transition: 0.6s ease;
    -o-transition: 0.6s ease;
}

.zoom-pic img:hover {
    transform: translate(0, 0) rotate(0) scale(1.05, 1.05) skew(0, 0) rotateX(0) rotateY(0);
    -webkit-transform: translate(0, 0) rotate(0) scale(1.05, 1.05) skew(0, 0) rotateX(0) rotateY(0);
    -moz-transform: translate(0, 0) rotate(0) scale(1.05, 1.05) skew(0, 0) rotateX(0) rotateY(0);
    -ms-transform: translate(0, 0) rotate(0) scale(1.05, 1.05) skew(0, 0) rotateX(0) rotateY(0);
    -o-transform: translate(0, 0) rotate(0) scale(1.05, 1.05) skew(0, 0) rotateX(0) rotateY(0);
}

.white-zoom {
    position: relative;
}

.white-zoom:after {
    transition: 0.2s linear;
    -webkit-transition: 0.2s linear;
    -moz-transition: 0.2s linear;
    -ms-transition: 0.2s linear;
    -o-transition: 0.2s linear;
    content: '';
    position: absolute;
    z-index: 2;
    width: 1px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    left: 50%;
    top: 50%;
}

@media screen and (min-width: 768px) {
    .around-line>li {
        float: left;
        position: relative;
        cursor: pointer;
    }
    .around-line>li>a {
        color: #fff;
        display: block;
        text-decoration: none;
    }
    .around-line>li:before,
    .around-line>li:after {
        content: '';
        opacity: 0;
        filter: alpha(opacity=0);
        transition: 0.5s ease;
        -webkit-transition: 0.5s ease;
        -moz-transition: 0.5s ease;
        -ms-transition: 0.5s ease;
        -o-transition: 0.5s ease;
        position: absolute;
    }
    .around-line>li:before {
        top: 0;
        left: 0;
        right: 100%;
        bottom: 100%;
        border-top: 1px solid rgba(0, 148, 217, 0.8);
        border-left: 1px solid rgba(0, 148, 217, 0.8);
    }
    .around-line>li:after {
        right: 0;
        bottom: 0;
        top: 100%;
        left: 100%;
        border-bottom: 1px solid rgba(0, 148, 217, 0.8);
        border-right: 1px solid rgba(0, 148, 217, 0.8);
    }
    .around-line>li:hover:before {
        bottom: 0;
        right: 0;
        opacity: 1;
        filter: alpha(opacity=100);
    }
    .around-line>li:hover:after {
        top: 0;
        left: 0;
        opacity: 1;
        filter: alpha(opacity=100);
    }
    .around-line>li.active:before {
        bottom: 0;
        right: 0;
        opacity: 1;
        filter: alpha(opacity=100);
    }
    .around-line>li.active:after {
        top: 0;
        left: 0;
        opacity: 1;
        filter: alpha(opacity=100);
    }

}

.m-page {
    text-align: center;
    line-height: 22px;
    font-size: 0;
    letter-spacing: -0.307em;
    word-wrap: normal;
    white-space: nowrap;
    color: #d81e06;
    margin-top: 38px;
}

.m-page a,
.m-page span {
    display: inline-block;
    vertical-align: top;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 100%;
    margin: 0 5px;
    border: 1px solid #ddd;
    font-size: 16px;
    letter-spacing: normal;
    background: #fff;
    -webkit-transition: background-color 0.1s;
    -moz-transition: background-color 0.1s;
    -ms-transition: background-color 0.1s;
    -o-transition: background-color 0.1s;
    transition: background-color 0.1s;
}

.m-page a {
    text-decoration: none;
    color: #000;
}

.m-page a:first-child,
.m-page a:last-child {
    background-image: url(../images/m-page-arr-r.png);
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid #cdcdcd;
    box-shadow: none;
}

.m-page a:first-child {
    background-image: url(../images/m-page-arr-l.png);
}

.m-page a:hover {
    color: #fff;
    background-color: #d11a1a;
}

.m-page a:active {
    background: #d11a1a;
}

.m-page span.current,
.m-page span.current:hover,
.m-page span.current:active {
    cursor: default;
    color: #fff;
    background: #d11a1a;
}

.fbTop .screenshot,
.screenshot_form {
    display: none!important;
}


/*
.logo a img {
  width: auto;
  height: auto;
  max-width:65%;
  display: block;
}*/

.tab-tab table td {
    border: 1px solid #f7f7f7;
    line-height: 1.5em;
    padding-left: 20px;
    padding-top: 6px;
    padding-bottom: 6px;
}

.tab-tab table {
    border: 1px solid #f7f7f7;
}

#test-video,
.video-layer {
    position: fixed;
    display: none;
}

#test-video {
    width: 690px;
    height: 400px;
    top: 30%;
    left: 50%;
    margin-left: -345px;
    z-index: 1001;
}

.video-layer {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, .8);
    z-index: 1000;
}

.video-box img {
    cursor: pointer;
}

.pp_gallery ul a img {
    width: 50px;
}

a.pp_previous,
a.pp_next,
#hoverNav a {
    transition: 0s;
}

.about-tab .a {
    font-size: 30px;
}

.i-scroll-bar {
    padding-bottom: 98px;
    /*background:#f3f3f3;*/
}

.i-scroll-bar .head-box {
    margin-bottom: 75px;
}

.i-scroll-bar .head-box .tab-arr {
    margin-top: 31px;
}

.i-scroll-bar .head-box .tab-arr .fa,
.i-scroll-bar .head-box .tab-arr a {
    display: inline-block;
    height: 39px;
    line-height: 39px;
    text-align: center;
    background: #000;
    transition: 0.3s ease;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
}

.i-scroll-bar .head-box .tab-arr .fa:hover,
.i-scroll-bar .head-box .tab-arr a:hover {
    background: #d11a1a;
}

.i-scroll-bar .head-box .tab-arr .fa {
    margin-right: 5px;
    width: 42px;
    cursor: pointer;
    color: #fff;
    font-size: 12px;
    position: relative;
    top: 0;
}

.i-scroll-bar .head-box .tab-arr a {
    padding: 0 37px;
    color: #fff;
    font-size: 16px;
}

.i-scroll-bar .scroll-box {
    margin: -10px;
}

.i-scroll-bar .scroll-box li {
    width: 338px;
    padding: 10px;
}

.i-scroll-bar .scroll-box li .con-box a:hover {
    color: #ffffff!important;
}

.i-scroll-bar .scroll-box li .con-box .tit a {
    display: block;
    color: #000000;
    font-size: 30px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.i-scroll-bar .scroll-box li .con-box .abst {
    color: #000000;
    font-size: 16px;
    line-height: 20px;
    margin: 21px 0 27px;
}

.i-scroll-bar .scroll-box li .con-box .more {
    color: #000000;
    font-weight: bold;
}

.wpulike.wpulike-default {
    display: none;
}

.prodet-page .wpulike.wpulike-default,
.newdet-page .wpulike.wpulike-default {
    display: block;
}

.post-views-box {
    position: relative;
    margin: -50px 0 0 100px;
}

.post-views-box .wp_ulike_btn.wp_ulike_put_image:after {
    background-image: url(../images/fw.png)!important;
    filter: none;
}

.wpulike {
    z-index: 10;
}

.wpulike.post-views-box {
    z-index: 5;
}

.nivo-directionNav {
    display: none;
}

.spinner {
    margin: 0 auto;
    width: 60px;
    height: 60px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.container1>div,
.container2>div,
.container3>div {
    width: 6px;
    height: 6px;
    background-color: #333;
    border-radius: 100%;
    position: absolute;
    -webkit-animation: bouncedelay 1.2s infinite ease-in-out;
    animation: bouncedelay 1.2s infinite ease-in-out;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.spinner .spinner-container {
    position: absolute;
    width: 100%;
    height: 100%;
}

.container2 {
    -webkit-transform: rotateZ(45deg);
    transform: rotateZ(45deg);
}

.container3 {
    -webkit-transform: rotateZ(90deg);
    transform: rotateZ(90deg);
}

.circle1 {
    top: 0;
    left: 0;
}

.circle2 {
    top: 0;
    right: 0;
}

.circle3 {
    right: 0;
    bottom: 0;
}

.circle4 {
    left: 0;
    bottom: 0;
}

.container2 .circle1 {
    -webkit-animation-delay: -1.1s;
    animation-delay: -1.1s;
}

.container3 .circle1 {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}

.container1 .circle2 {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s;
}

.container2 .circle2 {
    -webkit-animation-delay: -0.8s;
    animation-delay: -0.8s;
}

.container3 .circle2 {
    -webkit-animation-delay: -0.7s;
    animation-delay: -0.7s;
}

.container1 .circle3 {
    -webkit-animation-delay: -0.6s;
    animation-delay: -0.6s;
}

.container2 .circle3 {
    -webkit-animation-delay: -0.5s;
    animation-delay: -0.5s;
}

.container3 .circle3 {
    -webkit-animation-delay: -0.4s;
    animation-delay: -0.4s;
}

.container1 .circle4 {
    -webkit-animation-delay: -0.3s;
    animation-delay: -0.3s;
}

.container2 .circle4 {
    -webkit-animation-delay: -0.2s;
    animation-delay: -0.2s;
}

.container3 .circle4 {
    -webkit-animation-delay: -0.1s;
    animation-delay: -0.1s;
}

@-webkit-keyframes bouncedelay {
    0%,
    80%,
    100% {
        -webkit-transform: scale(0.0)
    }
    40% {
        -webkit-transform: scale(1.0)
    }
}

@keyframes bouncedelay {
    0%,
    80%,
    100% {
        transform: scale(0.0);
        -webkit-transform: scale(0.0);
    }
    40% {
        transform: scale(1.0);
        -webkit-transform: scale(1.0);
    }
}

.button-group .button {
    background-color: #d11a1a !important;
}

.about-article p {
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 12px;
}

.about-article h4 {
    font-size: 20pt;
}

.about-article p strong {
    font-size: 16px;
}

.side-contact .add {
    font-size: 14px;
}

.con {
    background: #f8f8f8;
}

.init-5 .app-list {
    margin-top: 107px;
}

.init-5 .app-list>div .the_pic img {
    width: 100%;
}

.init-5 .app-list>div .the_con {
    padding: 0 105px 0 72px;
}

.init-5 .app-list>div .layout-tab {
    height: 100%;
}

.init-5 .app-list>div .the_con .tit {
    color: #363636;
    font-size: 29px;
    line-height: 43px;
}

.init-5 .app-list>div .the_con .intro {
    margin-top: 35px;
    color: #363636;
    line-height: 24px;
    font-size: 14px;
}

.about-article h3 {
    font-size: 26px;
    text-align: center;
    font-weight: bold;
}

.about-article p {
    font-size:16px;
	line-height: 32px;
    /*text-align:center;*/
}

.about-article h4 {
    font-size: 16px;
    text-align: center;
    font-weight: bold;
}

.about-article h5 {
    font-size: 14px;
    text-align: center;
    font-weight: bold;
}

@media screen and (max-width: 1000px) {
    .inner-page .grid>.sideBar.wide.column {
        display: none;
    }
    .inner-page .grid>.page-rightBar.wide.column {
        width: 100% !important;
        padding-left: 0 !important;
    }
    .product-page .pro-list li,
    .product-page .pro-list li:nth-of-type(4n) {
        width: 32%;
        margin-right: 2%;
    }
    .product-page .pro-list li:nth-of-type(3n) {
        margin-right: 0;
    }
    .cat-box .return {
        font-size: 24px;
    }
    .i-scroll-bar .scroll-box li .con-box .tit a {
        font-size: 18px;
        margin-top: 5px;
    }
    .about-page .a-factory .bot-box li .con-box .more {
        margin-top: 5px;
    }
    .inner-page .inner-tit {
        font-size: 30px;
    }
    .product-page.lg-page {
        padding-bottom: 30px;
    }
    .prodet-page .prodet-top .prodet-box-one,
    .prodet-page .prodet-top .prodet-pic {
        width: 100%;
        float: none;
    }
    .prodet-page .prodet-top .prodet-pic {
        text-align: center;
    }
    .prodet-page .prodet-top .prodet-pic img {
        width: auto;
        margin: 0 auto;
		    border: 1px solid #dedede;
    }
    .prodet-page .prodet-tit {
        font-size: 28px;
        margin-bottom: 20px;
    }
    .prodetFeedback .ptForm .fbBot {
        margin-bottom: 50px;
    }
    .contact-page .c-list-box .tit {
        font-size: 30px;
        margin-bottom: 40px;
    }
    .inner-banner .inner-tit {
        font-size: 38px;
    }
}

@media screen and (max-width: 700px) {
    .inner-banner {
        height: 260px;
        padding-top: 100px;
    }
    .inner-banner .inner-tit {
        font-size: 28px;
    }
    .inner-banner .bread-crumbs a,
    .inner-banner .bread-crumbs span {
        font-size: 12px;
    }
    .about-article p {
        font-size: 12px;
        line-height: 24px;
    }
    .about-page .a-factory {
        margin-top: 30px;
        padding-bottom: 30px;
    }
    .prodetFeedback .ptForm .fbTop li {
        width: 100%;
        padding-top: 10px;
    }
    .prodetFeedback .ptForm .fbTop li input {
        height: 40px;
    }
    .prodetFeedback .ptForm .fbBot textarea {
        height: 120px;
    }
    .prodetFeedback .ptForm .fbBot textarea:focus {
        height: 120px;
    }
    .prodetFeedback .ptForm .fbBot .yzm-box input {
        max-width: 200px;
        height: 40px;
    }
    .prodetFeedback .ptForm {
        margin-top: 40px;
    }
    .product-page .pro-list li,
    .product-page .pro-list li:nth-of-type(3n),
    .product-page .pro-list li:nth-of-type(4n) {
        width: 49%;
        margin-right: 2%;
    }
    .product-page .pro-list li:nth-of-type(2n) {
        margin-right: 0;
    }
    .prodet-page .prodet-tit {
        font-size: 20px;
    }
    .prodetFeedback {
        padding: 40px 0;
    }
    .news-page .newslist li .new-r h3 a {
        font-size: 14px;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
        max-height: 43px;
    }
    .news-page .newslist li .new-r p.new-abst {
        font-size: 12px;
        line-height: 24px;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 4;
        overflow: hidden;
    }
    .newdet-page .news .news_title h1 {
        font-size: 16px;
    }
    .newdet-page .news .news_abst,
    .newdet-page .news .news_contents p,
    .newdet-page .news .news_contents div,
    .newdet-page .news .news_contents span,
    .newdet-page .news .news_contents table {
        font-size: 12px;
    }
    .newdet-page .news .news_next a {
        font-size: 12px;
        line-height: 18px;
    }
    .contact-page .c-list-box .tit {
        font-size: 24px;
    }
    .contact-page .c-list-box .c-name {
        font-size: 16px;
        margin-bottom: 20px;
    }
    .contact-page .c-list-box .info {
        font-size: 13px;
        line-height: 24px;
    }
    .button-group .button#zh_en {
        display: none !important;
    }
    .news-page .newslist li .new-l{
        width: 100%;
        float: none;
        margin-bottom: 30px;
    }
    .news-page .newslist li .new-r{
        width: 100%;
        float: none;
        padding-left: 0;
    }
    .contact-page .c-list-box .list .item{
    width: 100%;
    margin-bottom: 40px;
}
.cn-form .m-form-l{
    width: 100%;
    float: none;
}
.cn-form .m-form-r{
    width: 100%;
    float: none;
}
.cn-form .m-form-l .pcsb{
    display: none;
}
.cn-form .m-form-r .pcsb{
    display: block;
}
}
.image-gallery a img {
	display: block;
    border: 1px solid #efefef;
}

.pageNum {
    color: #000000;
    font-size: 16px;
    line-height: 25px;
    margin-top: 25px;
}