/*初始化样式*/
html {
    margin: 0;
    padding: 0;
    border: 0;
}

body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
p,
blockquote,
pre,
a,
address,
code,
b,
em,
img,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
footer,
header,
hgroup,
nav,
section {
    margin: 0;
    padding: 0;
    border: 0;
}

body {
    background: #fff;
    color: #666;
    position: relative;
    font: 12px/1.5 Microsoft YaHei, arial, 宋体, sans-serif;
    vertical-align: baseline;
    width: 100%;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    outline: none;
}

a:link {
    color: #666;
}

a:visited {
    color: #666;
}

a:hover,
a:active,
a:focus {
    color: #009b4c;
    text-decoration: none;
    outline: none;
}

input {
    padding: 0;
    margin: 0;
    font-family: 'Microsoft YaHei';
}

img {
    border: none;
    background: none;
    vertical-align: middle;
}

ul,
ol,
li {
    list-style-type: none;
}

select,
input,
img,
select {
    vertical-align: middle;
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

table,
th,
td {
    vertical-align: middle
}

.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    overflow: hidden;
    visibility: hidden;
}

.clearfix {
    zoom: 1
}

.clearboth {
    height: 0px;
    line-height: 0px;
    overflow: hidden;
    clear: both;
    font-size: 0px;
}

h1,
h2,
h3,
h4 {
    font-size: 12px;
    font-weight: bold;
}

hr {
    border: 0;
    border-top: 1px solid #ccc;
    height: 0;
}

dt {
    font-weight: normal;
}

/*----- Common css ------*/
.fl {
    float: left;
}

.fr {
    float: right;
}

.di {
    _display: inline;
}

.fwn {
    font-weight: normal;
}

.dib {
    *display: inline;
    _zoom: 1;
    _display: inline;
    _font-size: 0px;
}

.flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.flexd {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.wh {
    width: 1200px;
    margin: 0 auto;
}

.pos {
    position: relative;
    width: 1920px;
    left: 50%;
    margin-left: -958px;
}

.com-img {
    display: inline;
    overflow: hidden;
    margin: 0 auto;
    display: table;
}

.com-img img {
    transition: all 0.8s;
    -webkit-transition: all 0.8s;
    -moz-transition: all 0.8s;
    -o-transition: all 0.8s;
    width:100%;
}

.com-img:hover img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
}



/*头部样式*/

.top2 {
    height: 150px;
}

.top2 .logo a {
    display: block;
    line-height: 150px;
}

.top2 .logotext {
    padding-left: 13px;
    margin-left: 18px;
    background: url(//cdn.myxypt.com/08e6838a/21/09/cedcedc25382cfdc6ee501d3cc22bc1cb2fe774a.png) no-repeat left center;
}

.top2 .logotext p {
    font-size: 26px;
    font-weight: 700;
    color: #333333;
}

.top2 .logotext p strong {
    color: #ff4f14;
}

.top2 .k2 {
    padding-left: 70px;
    background: url(//cdn.myxypt.com/08e6838a/21/09/0204186b83e89d6ccb932c52d2005cb342130c83.png) no-repeat left center;
}

.top2 .k2 h4 {
    font-size: 16px;
    font-weight: normal;
    color: #333333;
}

.top2 .k2 p {
    font-family: "Arial";
    font-size: 36px;
    color: #ff4f14;
    font-weight: 700;
}






/* 导航样式 */
#menu {
    background-color: #ffffff;
    box-shadow: 0px -3px 5px 0px rgba(14, 5, 10, 0.15);
    position: relative;
    z-index: 999;
}

.x-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.x-menu>li {
    position: relative;
    flex: 1;
}

.x-menu>li>a {
    display: block;
    font-size: 18px;
    color: #333333;
    white-space: nowrap;
    line-height: 58px;
    height: 58px;
    text-align: center;
    position: relative;
    z-index: 0;
    transition: all ease .6s;
}

.x-menu>li>a::after {
    content: "";
    width: 0%;
    background-color: #ff4f14;
    position: absolute;
    left: 0;
    height: 100%;
    transition: all ease .6s;
    z-index: -1;
}


.x-menu>li:hover>a {
    color: #fff;
}

.x-menu>li:hover>a::after {
    width: 100%;
}

.x-menu>li:after {
    content: '';
    position: absolute;
    z-index: 100;
    width: 100%;
    left: 0;
    /*height: 40px;*/
    opacity: 0;
    top: 100%;
}

.x-menu>li:hover .x-sub-menu {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    background: #fff;
}

.x-sub-menu {
    position: absolute;
    z-index: 99;
    width: 100%;
    left: 0%;
    top: 58px;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}

.x-sub-menu>li {
    /* padding: 0 0.9rem; */
}

.x-sub-menu>li>a {
    display: block;
    text-align: center;
    line-height: 2;
    font-size: 14px;
    color: #333;
    line-height: 2.6;
    transition: all ease .6s;
    position: relative;
}

.x-sub-menu>li>a::after {
    content: "";
    width: 0%;
    background-color: #ff4f14;
    position: absolute;
    left: 0;
    height: 100%;
    transition: all ease .6s;
    z-index: -1;
}

.x-sub-menu>li:hover>a {
    color: #fff;

}

.x-sub-menu>li:hover>a::after {
    width: 100%;
}

.x-sub-menu:after {
    content: '';
    width: 0;
    height: 0;
    line-height: 0;
    font-size: 0;
    overflow: hidden;
    border-width: 10px;
    cursor: pointer;
    border-style: dashed dashed solid dashed;
    border-color: transparent transparent #fff transparent;
    border-top: none;
    position: absolute;
    top: -10px;
    left: 50%;
    margin-left: -10px;
    z-index: 99;
    display: none;
}


.banner-osSlider {
    margin: 0 auto;
    height: 693px;
}

.banner-osSlider img {
    width: 100%;
}

.banner-osSlider .slider-btn-prev,
.banner-osSlider .slider-btn-next {
    position: absolute;
    z-index: 99;
    cursor: pointer;
    width: 40px;
    height: 60px;
    top: 50%;
    margin-top: -30px;
    text-indent: -9999px;
    overflow: hidden;
    visibility: hidden;
}

.banner-osSlider:hover .slider-btn-prev,
.banner-osSlider:hover .slider-btn-next {
    visibility: visible;
}

.banner-osSlider .slider-btn-prev {
    left: 50px;
    background-position: 0 0;
}

.banner-osSlider .slider-btn-next {
    right: 50px;
    background-position: -40px 0;
}

.banner-osSlider .slider-nav {
    position: absolute;
    z-index: 99;
    left: 0;
    right: 0;
    bottom: 20px;
    text-align: center;
}

.banner-osSlider .slider-nav li {
    display: inline-block;
    width: 25px;
    height: 25px;
    background:#fff;
    font-size: 0;
    margin: 0 9px;
    position: relative;
    cursor: pointer;
    border-radius: 50%;

  
}

.banner-osSlider .slider-nav li::after {
    content: "";
    width: 33px;
    height: 2px;
    background-color: #839ca9;
    position: absolute;
    right: -34px;
    top: 50%;
    transform: translateY(-50%);
    display:none;
}

.banner-osSlider .slider-nav li:last-child::after {
    display: none;
}

.banner-osSlider .slider-nav li.active {
    background:#ff4f14;
}







/* w1 */
.w1 {
    margin-top: 83px;
    background: url(//cdn.myxypt.com/08e6838a/21/09/062cbbb2011d5784226c49a92b4024f4090f4705.png) center no-repeat;
    height: 556px;
    margin-bottom: 79px;
    position: relative;
    z-index: 999;
}

.wh1 {
    width: 1200px;
    margin: 0 auto;
    position: relative;
}

.w1tit {
    /* width: 230px; */
}

.w1tit h2 {
    font: bold 52px/52px MicrosoftYaHei;
    color: #ff4f14;
    width: 105px;
    float: left;
}

.w1tit .fl1 {
    float: left;
    margin-left: 13px;

}

.w1tit .fl1 dd {
    font: normal 30px/30px MicrosoftYaHei;
    color: #333333;
}

.w1tit .fl1 span {
    display: block;
    background-color: #808080;
    font: normal 10px/16px MicrosoftYaHei;
    color: #ffffff;
    margin-top: 3px;
    width: 120px;
    height: 16px;
    line-height: 16px;
    padding-left: 9px;
    margin-top: 4px;
}

.w1 .w1a {
    position: absolute;
    width: 52px;
    height: 52px;
    right: -22px;
    top: 0;
    transition: all ease .8s;
}

.w1 .w1a:hover {
    transform: rotateY(360deg);
}

.w1 .w1a a {
    display: block;
    font: normal 26px/52px MicrosoftYaHei;
    color: #fff;
    text-align: center;
}

.w1 .ableft {
    margin-top: 43px;
    width: 216px;
    height: 416px;
}

.w1 .abconst {
    width: 668px;
    margin-top: 99px;
}

.abconst dd {
    text-align: center;
    font: bold 22px/22px MicrosoftYaHei;
    color: #333333;
    background: url(//cdn.myxypt.com/08e6838a/21/09/071b927c75d68f1a0bd68d228a889ae69207f01c.png) center bottom no-repeat;
    padding-bottom: 19px;
}

.abconst dt {
    margin: 0 auto;
    font: normal 16px/28px MicrosoftYaHei;
    color: #444444;
    margin-top: 30px;
    width: 560px;
}

.abconst a {
    display: block;
    background: #ff4f14;
    width: 133px;
    height: 40px;
    margin: 22px auto 0;
    text-align: center;
    font: normal 16px/40px MicrosoftYaHei;
    color: #fff;
    border:1px solid #ff4f14;
}

.abconst a:hover {
    background: #fff;
    color: #ff4f14;
}

.w1b {
    position: relative;
}

.ablist {
    width: 164px;
    position: absolute;
    bottom: -45px;
    right: -2px;
}

.ablist ul li {
    width: 164px;
    height: 52px;
    background: rgba(255, 79, 20, .6);
    margin-top: 13px;
    text-align: center;
}

.ablist ul li a {
    display: block;
    font: normal 18px/52px MicrosoftYaHei;
    color: #fff;
    z-index: 0;
    position: relative;
}

.ablist ul li a::before {
    content: "";
    width: 0%;
    right: 0;
    height: 100%;
    position: absolute;
    transition: all ease .6s;
    background: #ff4f14;
    z-index: -1;
}

.ablist ul li a:hover::before {
    width: 100%;

}



/* w2 */
.prosecbg {
    background: url(//cdn.myxypt.com/08e6838a/21/09/5d2e882c324f46370ae103b3ef81be7a220e3de1.jpg) center no-repeat;
    height: 141px;
    margin-top: 79px;
}

.prosecbg .w1tit {
    margin-top: 47px;
}

.prosecbg .prolist {
    width: 863px;
    margin-top: 31px;
}

.prolist ul li {
    float: left;
    width: 155px;
    height: 32px;
    background-color: #ffffff;
    border-radius: 15px;
    margin-right: 22px;
    text-align: center;
    margin-bottom: 14px;
    border: solid 1px #ff4f14;
    transition: all ease .3s;
}

.prolist ul li:nth-child(5n) {
    margin-right: 0;
}

.prolist ul li a {
    display: block;
    font: normal 16px/32px MicrosoftYaHei;
    color: #4f4b69;
}

.prolist ul li:last-child {
    background-color: #ff4f14;
}

.prolist ul li:last-child:hover {
    transform: translateY(10px);
}

.prolist ul li a.promo {
    color: #Fff;
}

.prolist ul li:hover {
    background-color: #ff4f14;
}

.prolist ul li:hover a {
    color: #fff;
}






.w2 {
    background: url(//cdn.myxypt.com/08e6838a/21/09/50bbac3ac723152bc35e98e3020708e31526ec50.jpg) center no-repeat;
    height: 627px;
    padding-top: 74px;
    background-size: cover;
}

.w2 .pritui {
    width: 576px;
    background: #cccccc;
    position: relative;
}

.pritui .bd ul li {
    width: 100%;
    height: 462px;
}

.pritui .bd ul li a.img {
    display: block;
    width: 576px;
    height: 411px;
    position: relative;
}

.pritui .bd ul li a.img .pptuij {
    width: 57px;
    height: 80px;
    position: absolute;
    top: 0;
    left: 21px;
    z-index: 99;
    background: url(//cdn.myxypt.com/08e6838a/21/09/c471e7b8a737c15d7e0a36116ceb202ace5f215c.png) center no-repeat;
    font: normal 18px/20px MicrosoftYaHei;
    color: #fff;
    padding: 10px;
}

.pritui .bd ul li h3 {
    width: 100%;
}

.pritui .bd ul li h3 a {
    display: block;
    font: normal 18px/53px MicrosoftYaHei;
    color: #333333;
    padding-left: 27px;
    transition: all ease .3s;
}

.pritui .bd ul li:hover h3 a {
    color: #ff4f14;
    transform: translateX(10px);
}

.pritui .hd {
    position: absolute;
    bottom: 20px;
    right: 30px;
}

.pritui .hd ul li {
    float: left;
    width: 12px;
    height: 12px;
    background-color: #ffffff;
    margin-left: 8px;
    border-radius: 50%;
    cursor: pointer;
}

.pritui .hd ul li.on {
    background-color: #ff4f14;
}










#multipleColumn {
    width: 579px;
    margin: 0 auto;
    position: relative;
}

#multipleColumn .hd {
    height: 46px;
    background: #fff;
}

#multipleColumn .hd .prev {
    position: absolute;
    left: 0;
    bottom: 6px;
    width: 289px;
    height: 46px;
    display: block;
    background: url(//cdn.myxypt.com/08e6838a/21/09/5de1cca3a807d0dde7ecfe65e2b2529bdf0f4ca9.png) no-repeat;
    cursor: pointer;
}

#multipleColumn .hd .prev:hover {

    background: url(//cdn.myxypt.com/08e6838a/21/09/675d7900534d143930a2d974c57ce2bbf5e6d5c5.png) no-repeat center center;
}


#multipleColumn .hd .next {
    position: absolute;
    right: 0;
    bottom: 6px;
    width: 289px;
    height: 46px;
    display: block;
    background: url(//cdn.myxypt.com/08e6838a/21/09/8b4553fe7123adbe51f024688e916b17513b39c4.png) no-repeat;
    cursor: pointer;
}

#multipleColumn .hd .next:hover {
    background: url(//cdn.myxypt.com/08e6838a/21/09/75143d4d90a690cf3c3605ca9c197b54d4dfaea7.png) no-repeat center center;
}

#multipleColumn .hd {
    overflow: hidden;
    zoom: 1;
    zoom: 1;
}

#multipleColumn .hd ul {
    text-align: center;
    position: absolute;
    left: 46%;
    top: 320px;
    display: none;
}

#multipleColumn .hd ul li {
    display: inline-block;
    width: 11px;
    height: 11px;
    overflow: hidden;
    border-radius: 11px;
    margin: 0 10px;
    text-indent: -999px;
    cursor: pointer;
    background: #fff;
}

#multipleColumn .hd ul li.on {
    background: #1f9ab6;
}



#multipleColumn .bd {
    width: 579px;
    margin: 0 auto !important;
    overflow: hidden;
    zoom: 1;
    _display: inline;
    overflow: hidden;
    position: relative;
}

#multipleColumn .bd li {
    margin: 0 13px 11px 0;
    float: left;
    _display: inline;
    text-align: center;
}

#multipleColumn .bd li:nth-child(2n) {
    margin-right: 0px;
}

#multipleColumn .bd li .pics {
    text-align: center;
    position: relative;
}

#multipleColumn .bd li .pics img {
    width: 283px;
    height: 200px;
    display: block;
}

#multipleColumn .bd li .pics h3 {
    position: absolute;
    bottom: 0;
    height: 24px;
    width: 100%;
    background: rgba(0, 0, 0, .7);
    text-align: center;
    font: normal 16px/24px MicrosoftYaHei;
    color: #fff;
}

#multipleColumn .bd li:hover .pics h3 {
    color: #ff4f14;
}






.p1 {
    background: url(//cdn.myxypt.com/08e6838a/21/09/ec95243694fc4e8dc701a0325f3e51a392ad64b6.jpg) no-repeat center center;
    background-size: cover;
    padding-top: 139px;
    height: 788px;
}




.p1cont {
    flex-wrap: nowrap;
}

.p1a {
    width: 685px;
    height: 500px;
    position: relative;
    margin-left: 380px;
}

.p1a .title {
    width: 155px;
    height: 155px;
    background: url(//cdn.myxypt.com/08e6838a/21/09/5b2290e7ede010c24360d1d0028793edbc740f96.jpg) no-repeat center center;
    font-size: 30px;
    font-weight: 700;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    line-height: 39px;
    position: absolute;
    left: 269px;
    top: 166px;
}



.p1a1 li {
    position: absolute;
}

.p1a1 li a {
    display: block;
    width: 101px;
    height: 101px;
    background-color: #f18763;
    text-align: center;
    padding-top: 8px;
}

.p1a1 li a h3 {
    width: 42px;
    height: 42px;
    border: solid 1px #ffffff;
    border-radius: 50%;
    font-size: 31px;
    font-weight: normal;
    color: #ffffff;
    margin: 0 auto 4px;
    line-height: 42px;
}

.p1a1 li a span,
.p1a1 li a p {
    font-size: 15px;
    font-weight: normal;
    color: #ffffff;
}


.p1a1 .p1text1 {
    left: 0px;
    top: 165px;
}

.p1a1 .p1text2 {
    left: 157px;
    top: 303px;
}

.p1a1 .p1text2 a {
    background-color: #74a4de;
}

.p1a1 .p1text3 {
    left: 434px;
    top: 4px;
}

.p1a1 .p1text3 a {
    background-color: #74a4de;
}

.p1a1 .p1text4 {
    left: 434px;
    top: 358px;
}

.p1a2 li {
    position: absolute;
    overflow: hidden;
}

.p1a2 li a {
    display: block;
    color: #fff;
}

.p1a2 li a div.img {
    width: 100%;
    height: 100%;
}

.p1a2 li a .cont {
    width: 100%;
    height: 100%;
    bottom: -100%;
    background: rgba(0, 0, 0, .5);
    padding-top: 50px;
    font-size: 16px;
    color: #fff;
    position: absolute;
    text-align: center;
    padding: 0 4px;
    transition: all ease .3s;
    padding-top: 32%;
}

.p1a2 li a .cont h3 {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

.p1a2 li a .cont span {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

.p1a2 .p1img5 a .cont {
    padding-top: 28%;
}

.p1a2 .p1img5 a .cont h3 {
    font-size: 13px;
}

.p1a2 .p1img5 a .cont span {
    font-size: 13px;
}


.p1a2 li:hover .cont {
    bottom: 0;
}

.p1a2 .p1img1 {
    left: 108px;
    top: 141px;
    width: 150px;
    height: 150px;
}

.p1a2 .p1img2 {
    left: 269px;
    top: 4px;
    width: 155px;
    height: 155px;
}

.p1a2 .p1img3 {
    left: 269px;
    top: 328px;
}

.p1a2 .p1img4 {
    left: 434px;
    top: 113px;
    width: 236px;
    height: 237px;
}

.p1a2 .p1img5 {
    left: 160px;
    top: 29px;
    width: 100px;
    height: 100px;
}



.p1b {
    width: 468px;
    margin-right: 272px;
}

.p1b1 {
    justify-content: flex-start;
    align-items: flex-end;
}

.p1b1 h3.title {
    font-size: 30px;
    color: #ff4f14;
    margin-right: 16px;
}

.p1b1 span {
    font-size: 18px;
    font-weight: normal;
    color: #333333;
    line-height: 1;
}

.p1b2 {
    margin-top: 28px;
}

.p1b2 li a {
    width: 100%;
    margin-bottom: 18px;
}

.p1b2 li a div.img {
    overflow: hidden;
}

.p1b2 li a div.img img {
    width: 150px;
    height: 101px;
    transition: all ease .6s;
}

.p1b2 li:hover a div.img img {
    transform: scale(1.1);
}

.p1b2 li a .cont {
    width: 280px;
    font-size: 14px;
    font-weight: normal;
    color: #666666;
    margin-right: 20px;
}

.p1b2 li a .cont h3 {
    font-size: 16px;
    font-weight: normal;
    color: #333333;
    margin-bottom: 13px;
    transition: all ease .3s;
}

.p1b2 li a .cont p {
    font-size: 14px;
    line-height: 20px;
    color: #666666;
}

.p1b2 li:hover .cont h3 {
    padding-left: 12px;
    color: #ff4f14;
}

.p1b3 {
    width: 468px;
    height: 90px;
    background-image: linear-gradient(#dde4ed,
            #dde4ed),
        linear-gradient(#f5f5f5,
            #f5f5f5);
    background-blend-mode: normal,
        normal;
}

.p1b3a {
    padding-left: 10px;
    justify-content: flex-start;
    transform: translateY(-50%);
    margin-top: 58px;
}

.p1b3a h3 {
    font-family: "Arial";
    font-size: 50px;
    color: rgba(51, 51, 51, .7);
    margin-right: 10px;
}

.p1b3a p {
    font-size: 14px;
    line-height: 17px;
    color: rgba(255, 79, 20, 1);
}

.p1b3b {
    justify-content: flex-start;
    padding-left: 18px;
    margin-top: -18px;
}

.p1b3b h3 {
    font-size: 30px;
    line-height: 39px;
    color: #ff4f14;
    margin-right: 17px;
}

.p1b3b1 li a {
    display: block;
    width: 94px;
    line-height: 30px;
    background-color: #fa622f;
    border-radius: 10px;
    font-size: 14px;
    color: #ffffff;
    text-align: center;
    transition: all ease .3s;
}

.p1b3b1 li+li a {
    margin-left: 7px;
}

.p1b3b1 li:hover a {
    background-color: #f18763;
    transform: translateY(10px);
}












.w4 {
    background: #fff;
    margin-top: 71px;
    margin-bottom: 60px;
}

.gongsj {
    width: 402px;
}

.gslun {
    margin-top: 33px;
}

.gslun ul li {
    width: 100%;
}

.gslun ul li .gspic {
    width: 402px;
    height: 220px;
    overflow: hidden;
}

.gslun ul li .gspic img {
    width: 100%;
    transition: all ease .8s;
}

.gslun ul li h3 a {
    display: block;
    font: bold 18px/18px MicrosoftYaHei;
    color: #444444;
    margin-top: 23px;
    transition: all ease .3s;
}

.gslun ul li:hover h3 a {
    color: #ff4f14;
    transform: translateX(10px);
}

.gslun ul li:hover>a {
    background: #ff4f14;
}

.gslun ul li .gsname {
    font: normal 14px/19px MicrosoftYaHei;
    color: #666666;
    margin-top: 12px;
    border-bottom: 1px solid #dcdbe1;
    padding-bottom: 15px;
}

.gslun ul li>a {
    display: block;
    width: 93px;
    height: 22px;
    background-color: #7f7f7f;
    text-align: center;
    font: normal 14px/22px MicrosoftYaHei;
    color: #fff;
    margin-top: 14px;
}

.gslun ul li:hover .gspic img {
    transform: scale(1.1);
}



.xinlists {
    width: 780px;
}

.xinlists .xintit {
    float: right;
    margin-top: 33px;
}

.xinlists .xintit ul li {
    float: left;
    background: url(//cdn.myxypt.com/08e6838a/21/09/e08637ac73669cd7c70139c46aabd5de5ed488d7.png) right center no-repeat;
    padding: 0 6px;
}

.xinlists .xintit ul li a {
    display: block;
    font: bold 18px/18px MicrosoftYaHei;
    color: #333333;
    padding: 0 12px;
}

.xinlists .xintit ul li.on a {
    color: #ff4f14;
}

.xinlists .xintit ul li:last-child {
    background: none;
    padding: 0 6px 0 3px;
}

.xinlists .xintit ul li:last-child a {
    padding: 0 12px 0 6px;
}

.xinlists .xinlie {
    margin-top: 41px;
    width: 100%;
}

.xinlists .xinlie ul li {
    width: 382px;
    height: 113px;
    background-color: #ffffff;
    border: solid 1px #dcdbe1;
    margin-bottom: 15px;
    margin-right: 14px;
    float: left;
    position: relative;
    transition: all ease .5s;
}

.xinlists .xinlie ul li:nth-child(2n) {
    margin-right: 0;
}

.xinlists .xinlie ul li .xintime {
    width: 99px;
    background: url(//cdn.myxypt.com/08e6838a/21/09/96deac051f2a07fa94922a1ac9cc43178fc0a15b.png) right center no-repeat;
    height: 113px;
    padding-top: 30px;
    text-align: center;
}

.xinlists .xinlie ul li .xintime dd {
    font: normal 36px/36px MicrosoftYaHei;
    color: #333;
}

.xinlists .xinlie ul li .xintime dt {
    font: normal 16px/16px MicrosoftYaHei;
    color: #333;
    margin-top: 4px;
}

.xinlists .xinlie ul li .xinconst {
    width: 252px;
    margin-right: 15px;
    padding-top: 30px;
}

.xinlists .xinlie ul li .xinconst h3 {
    font: normal 18px/18px MicrosoftYaHei;
    color: #333333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all ease .3s;
    margin-bottom: 8px;
}

.xinlists .xinlie ul li .xinconst h5 {
    font: normal 14px/18px MicrosoftYaHei;
    color: #777777;
    margin-top: 5px;
}

.xinlists .xinlie ul li:hover .xinconst h3 {
    color: #ff4f14;
    padding-left: 10px;
}


.xinlists .xinlie ul li:hover {
    border: 1px solid transparent;
}

.xinlists .xinlie ul li .xx1 {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 0%;
    height: 1px;
    background: #fe001d;
    transition: .2s;
}

.xinlists .xinlie ul li:hover .xx1 {
    width: 100%;
}

.xinlists .xinlie ul li .xx2 {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 1px;
    height: 0px;
    background: #fe001d;
    transition: 0.4s;
}

.xinlists .xinlie ul li:hover .xx2 {
    height: 100%;
}

.xinlists .xinlie ul li .xx3 {
    position: absolute;
    bottom: 0px;
    right: 0px;
    width: 0px;
    height: 1px;
    background: #fe001d;
    transition: 0.6s;
}

.xinlists .xinlie ul li:hover .xx3 {
    width: 100%;
}

.xinlists .xinlie ul li .xx4 {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 1px;
    height: 0px;
    background: #fe001d;
    transition: 0.8s;
}

.xinlists .xinlie ul li:hover .xx4 {
    height: 100%;
}














/* 底部 */
.fotbg {
    background: #f5f5f5;
    padding-top: 60px;
    padding-bottom: 30px;
}

.f_link {

    color: #444444;
    display: flex;
    justify-content: space-between;
    background: #fff;
}

.f_link h3 {
    width: 140px;
    background: url(//cdn.myxypt.com/08e6838a/21/09/d40441ead8f3efefa4d451d601d24b07ff564be9.png) left 2px no-repeat #fff;
    padding-left: 54px;
    font: normal 16px/49px MicrosoftYaHei;
    border-right: 2px solid #f5f5f5;
}

.f_link .f_link1 {
    width: 1058px;
    padding: 14px;
}

.f_link a {
    font: normal 14px/1.6 MicrosoftYaHei;
    color: #888888;
    margin: 0 5px;
}

.footdass {
    margin-top: 42px;
}

.fnavxia {
    width: 830px;
}

.fnavxia dl {
    background: url(//cdn.myxypt.com/08e6838a/21/09/538c835528cf0cd6e1cd6da74ac1efa93597d25b.png) left top no-repeat;
    padding-left: 32px;
    float: left;
    padding-right: 26px;
    min-height: 208px;
}

.fnavxia dl dt {
    font: normal 17px/17px MicrosoftYaHei;
    color: #222222;
    margin-bottom: 20px;
}

.fnavxia dl dd a {
    display: block;
    font: normal 14px/28px MicrosoftYaHei;
    color: #777777;
    transition: all ease .3s;
}

.fnavxia .fotpro {
    width: 270px;
    padding-right: 0;
}

.fnavxia .fotpro dd {
    float: left;
    width: 50%;
}


.fnavxia dl dd a:hover {
    transform: translateX(10px);
    color: #ff4f14;
}


.fewm{
    width: 352px;
}
.flogos-title{
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
}
.flogos-title h3 {
    font-size: 20px;
    color: #333333;
    margin-right: 5px;
}
.flogos-title h3 strong {
    color: #ff4f14;
}
.flogos-title span {
    width: 108px;
	height: 16px;
	background-color: #808080;
    line-height: 16px;
    font-family: "arail";
	font-size: 10px;
	color: #ffffff;
    padding: 0 5px;
}

.ftel{
    height: 48px;
    padding-left: 65px;
    background: url(//cdn.myxypt.com/08e6838a/21/09/a815adadab62fbb13689d8ba4b0ef5492b282827.png) no-repeat left center;
    margin-top: 12px;
    padding-top: 6px;
}
.ftel h3{
    font-size: 14px;
	font-weight: normal;
	color: #666666;
}
.ftel h4{
    font-family: "Arial";
	font-size: 30px;
	font-weight: 700;
	color: #333333;
}

.flogos-contact > p {
    font-size: 14px;
	font-weight: normal;
	color: #333333;
}

.fdewm{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: center;
    margin-top: 17px;
}
.fdewm .ewm img {
    width: 119px;
	height: 119px;
    margin-bottom: 12px;
}
.fdewm .ewm p {
    font-size: 15px;
	color: #888888;
}

.footerzhuy{
    padding: 15px 0;
    font-size: 14px;
	font-weight: normal;
	color: #666666;
}
.footerzhuy a{
	color: #666666;
}
.footerzhuy a:hover{
    color: #ff4f14;
}
/*内页左侧样式*/

.container {
    width: 1200px !important;
    margin: 0 auto;
    padding: 0;
}

.page-product-inquiry a {
    color: #fff;
}


/* 内页 */


/* InpageAddress */

.InpageAddress {
    width: 100%;
    height: 62px;
    border-bottom: 1px solid #eaeaea;
}

.InpageAddress a.homePage {
    display: block;
    width: 64px;
    height: 62px;
    border-left: 1px solid #eaeaea;
    border-right: 1px solid #eaeaea;
    background: url(//cdn.myxypt.com/08e6838a/21/09/6d0ac4ace4115ef0de9265f3c0d72feb1616db64.png) no-repeat center;
    float: left;
}

.InpageAddress .p1 {
    line-height: 62px;
    float: left;
    margin-left: 16px;
}

.InpageAddress .p1 a {
    display: block;
    padding-right: 14px;
    background: url() no-repeat right center;
    font-size: 14px;
    color: #666666;
    float: left;
    margin-left: 10px;
}

.InpageAddress .p1 a:first-child {
    margin-left: 0;
}

.InpageAddress .p1 a:last-child {
    color: #0e98a5;
    background-image: none;
}

.InpageAddress .p2 {
    float: right;
}

.InpageAddress .p2 a {
    display: block;
    font-size: 14px;
    color: #666666;
    font-weight: bold;
    height: 61px;
    line-height: 61px;
    float: left;
    margin-left: 26px;
    text-decoration: none;
}

.InpageAddress .p2 a.cur {
    color: #333333;
    border-bottom: 2px solid #ff4f14;
}

.InpageAddress .p2 a:hover {
    color: #333333;
    border-bottom: 2px solid #ff4f14;
}


/* product*/

.InpageHotSale {
    width: 100%;
    /*background: #f6f6f6;*/
    padding: 50px 0;
}


/*内页左侧分类通用样式*/

.sort li {
    position: relative;
    z-index: 999;
}

.sort li .about_b {
    position: absolute;
    left: 210px;
    top: 0px;
    width: 210px;
    padding: 10px 20px;
    background: #f5f6f6;
    border-bottom: 2px solid #3a78c1;
    z-index: 9999;
}


/*.sort li .layer2{display:none;position:absolute;left:210px;top:0px;width:210px;padding:10px 20px;background:#f5f6f6;*/


/*	border-bottom:2px solid #3a78c1;z-index:9999;}*/

.sort li .layer2 li {
    overflow: hidden;
}

.sort li .layer2 li a {
    font-weight: bold;
    background: url(../images/ico1.gif) no-repeat 0% 50%;
}

.sort li .layer2 li a:hover {
    text-decoration: none;
    color: #3a78c1;
}

.sort li .layer2 li .layer3 li {
    margin: 6px 0px;
    line-height: 24px;
    padding-left: 10px;
}

.sort li .layer2 li .layer3 li a {
    font: normal 12px/24px "微软雅黑";
    background: none;
}

.sort li .layer2 li .layer3 li .layer4 li {
    margin: 6px 0px;
    line-height: 24px;
    padding-left: 15px;
}

.sort li .layer2 li .layer3 li .layer4 li a {
    font: normal 12px/24px "微软雅黑";
    background: none;
}

.sort li {
    display: inline-block;
    margin-left: 26px;
    line-height: 61px;
}

.sort li a {
    font-size: 15px;
    color: #666666;
    font-weight: normal;
    height: 61px;
    line-height: 61px;
    display: block;
    padding: 0 10px
}

.sort li:hover a {
    background: #ff4f14;
    color: #fff !important;
    line-height: 61px;
}

.sort li.cur {
    border-bottom: 2px solid #006ccc;
}

.sort li.cur a {
    color: #006ccc;
}

.sort li a:hover {}

.sort li.change a {}

.sort li .linshi {
    background: #ff4f14;
    color: #fff !important;
    line-height: 61px;
}

.location {
    background: url(//cdn.myxypt.com/08e6838a/21/09/6d0ac4ace4115ef0de9265f3c0d72feb1616db64.png) no-repeat center;
    width: 64px;
    height: 62px;
    border-left: 1px solid #eaeaea;
    border-right: 1px solid #eaeaea;
}

.con-left a {
    padding: 0 10px;
    font-size: 14px;
}

.con-left a:first-child {
    font-size: 14px;
    color: #666666;
    display: block;
    padding-right: 14px;
    /*background: url() no-repeat right center;*/
    display: inline-block;
    text-align: center;
    line-height: 62px;
}


/* 内页加 */

.xypg-news-list li .tit h3 {
    transition: 0.5s ease;
}

.xypg-news-list li:hover .tit h3 {
    transform: translateX(10px);
}

.xypg-case-list li .img {
    border: 1px solid #eeeeee;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
    position: relative;
}

.xypg-product-list li {
    position: relative;
    transition: all ease .6s;
}

.xypg-product-list li:hover {
    border: 1px solid transparent;
}

.xypg-product-list li .xx1,
.xypg-case-list li .xx1 {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 0%;
    height: 1px;
    background: #fe001d;
    transition: .2s;
}

.xypg-product-list li:hover .xx1,
.xypg-case-list li:hover .xx1 {
    width: 100%;
}

.xypg-product-list li .xx2,
.xypg-case-list li .xx2 {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 1px;
    height: 0px;
    background: #fe001d;
    transition: 0.4s;
}

.xypg-product-list li:hover .xx2,
.xypg-case-list li:hover .xx2 {
    height: 100%;
}

.xypg-product-list li .xx3,
.xypg-case-list li .xx3 {
    position: absolute;
    bottom: 0px;
    right: 0px;
    width: 0px;
    height: 1px;
    background: #fe001d;
    transition: 0.6s;
}

.xypg-product-list li:hover .xx3,
.xypg-case-list li:hover .xx3 {
    width: 100%;
}

.xypg-product-list li .xx4,
.xypg-case-list li .xx4 {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 1px;
    height: 0px;
    background: #fe001d;
    transition: 0.8s;
}

.xypg-product-list li:hover .xx4,
.xypg-case-list li:hover .xx4 {
    height: 100%;
}


/* 内页案例详情 */
.page_dh1 {
    text-align: center;
    font-size: 22px;
    color: #0d0d0d;
    margin-bottom: 20px;
}

.page-product-detail-effect {
    width: 800px;
    height: 553px;
    margin: 0 auto;
    float: none;
    overflow: hidden;
}

.page-product-detail-effect img {
    width: 800px;
    height: 553px;
}

.page-product-detail-right {
    width: 100%;
}

.xypg-product-detail.case .product-detail-slick a.slick-item {
    height: 145px;
}

.product-detail-slick a.slick-item img {
    height: 100%;
}
