@import "//at.alicdn.com/t/c/font_3666349_3x3d3olsjik.css";

.whmax {
    width: 100%;
    height: 100%
}

/*head*/
.headWrap {
    transition: 0.2s all ease-in;
    background: linear-gradient(180deg, rgba(255, 255, 255, .8), rgba(255, 255, 255, 0));
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10
}

.headWrap.curr {
    background-color: #fff;
}

.headWrap .headBox {
    width: 100%;
    max-width: 1400px;
    height: 90px;
    margin: 0 auto;
    display: flex;
    align-items: center
}

.headWrap .headLogo {
    width: 330px;
    flex-shrink: 0;
    display: flex;
    align-items: center
}

.headWrap .headNav {
    width: 100%;
    height: 100%;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center
}

.headWrap .headNav ul {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.headWrap .headNav li {
    flex: 1;
    height: 90px;
    line-height: 90px;
    position: relative;
    text-align: center;
    transition: 0.2s all ease-in;
}

.headWrap .headNav li:hover {
    background-color: #e04e0d;
}

.headWrap .headNav a {
    font-size: .18rem;
    color: #333
}

.headWrap .headNav li:hover > a {
    color: #fff;
}

.headWrap .headNav dl {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 90px;
    background-color: #fff;
    transition: 0.2s all ease-in;
}

.headWrap .headNav dd {
    height: .5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.2s all ease-in;
}

.headWrap .headNav dd a {
    font-size: .16rem;
    line-height: .2rem;
    color: #333;
}

.headWrap .headNav li dd:hover {
    background-color: #e04e0d;
}

.headWrap .headNav li dd:hover a {
    color: #fff;
}

.headWrap .headNav li:hover dl {
    display: block
}

.headWrap .headPhone {
    width: 250px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center
}

.headWrap .headPhone i {
    margin-right: 10px
}

.headWrap .headPhone i, .headWrap .headPhone span {
    font-size: .24rem;
    font-weight: 700;
    background: linear-gradient(180deg, #f48412 0, #da2225 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent
}

.headPlaceholder {
    width: 100%;
    height: 90px
}

.headWrapMb {
    display: none
}

.headWrapMb .headBoxMb {
    height: .5rem;
    padding: .05rem .15rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
    background-color: #fff;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.3)
}

.headWrapMb .headMainMb {
    position: absolute;
    top: 0;
    right: .2rem;
    bottom: 0;
    left: .2rem;
    z-index: 60;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.headWrapMb .headLogoMb img {
    height: .25rem
}

.headWrapMb .headNavBtn {
    display: block;
    width: .3rem;
    height: .4rem;
    background-size: auto 40%;
    position: relative
}

.headWrapMb .headNavBtn span {
    position: absolute;
    left: 50%;
    top: 50%;
    height: .03rem;
    width: 26px;
    margin-left: -13px;
    margin-top: -1px;
    background: #093a51;
    transition: all .5s ease
}

.headWrapMb .headNavBtn:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    height: .03rem;
    width: 26px;
    margin-left: -13px;
    margin-top: -8px;
    background: #146635;
    transition: all .5s ease
}

.headWrapMb .headNavBtn:after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    height: .03rem;
    width: 26px;
    margin-left: -13px;
    margin-top: 6px;
    background: #146635;
    transition: all .5s ease
}

.headWrapMb .headNavBtn.on {
    transition: all .5s ease
}

.headWrapMb .headNavBtn.on:before {
    margin-top: -1px;
    transform: rotate(45deg);
    transition: all .5s ease;
    background: #fff
}

.headWrapMb .headNavBtn.on:after {
    margin-top: -1px;
    transform: rotate(-45deg);
    transition: all .5s ease;
    background: #fff
}

.headWrapMb .headNavBtn.on span {
    width: 0;
    transition: all .5s ease
}

.headWrapMb .headNavMb {
    /*定位布局，absolute绝对定位（相对于父元素布局，距离自己最近的做过非static定位的父元素）*/
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    /*rem更具当前设备的默认字体大小的单位，如字体16px 则0.7rem就等于11.2px*/
    padding: .7rem 0 0 0;
    width: 100%;
    height: calc(100vh);
    background: #093a51;
    /**/
    z-index: 59;
    /*元素溢出时，根据当前浏览器自行处理（溢出内容可以根据浏览器显示滚动条）*/
    overflow: auto;
    /*隐藏当前元素*/
    display: none
}

.headWrapMb .headNavMb::-webkit-scrollbar {
    width: 0 !important
}

.headWrapMb .headNavMb > li {
    position: relative;
    width: 100%;
    user-select: none;
    padding: .2rem 0
}

.headWrapMb .headNavMb > li > a {
    font-weight: bold;
    padding: 0 3%;
    display: block;
    position: relative;
    transition: all .5s ease;
    color: #f3f3f3;
    text-align: center;
    font-size: .18rem;
    line-height: .2rem;
    /*当子元素的宽度和大于父容器宽度时，子元素会自动平均收缩*/
    display: flex;
    /*设置子元素（伸缩项）在侧轴方向上的对齐方式*/
    align-items: center;
    /*设置子元素的主轴方向上的排列方式*/
    justify-content: center
}

.headWrapMb .headNavMb > li > a > i {
    color: #969696;
    position: absolute;
    right: 30%;
    font-size: .4rem;
    transition: .2s all ease-in
}

.headWrapMb .headNavMb > li > a > i.rotate {
    transform: rotate(-180deg);
    transition: .2s all ease-in
}

.headWrapMb .headNavMb > li > a img {
    width: .2rem
}

.headWrapMb .headNavMb > li > div {
    padding: .15rem 0;
    background: #093a51;
    display: none;
    font-size: .15rem;
    text-align: center;
    overflow: hidden
}

.headWrapMb .headNavMb > li > div > a {
    display: block;
    line-height: 45px;
    font-size: .15rem;
    text-align: center;
    color: #969696
}

.headPlaceholderMb {
    width: 100%;
    height: .5rem;
    display: none
}

@media screen and (max-width: 1400px) {
    .headWrap .headLogo {
        width: 250px
    }

    .headWrap .headLogo img {
        width: 200px
    }

    .headWrap .headPhone {
        display: none
    }
}

@media screen and (max-width: 1025px) {
    .headWrap {
        display: none
    }

    .headPlaceholder {
        display: none
    }

    .headWrapMb {
        display: block
    }

    .headPlaceholderMb {
        display: block
    }
}

.defNewsWrap {
    width: 100%;
    margin-bottom: 30px;
}

.defNewsMore {
    font-size: .16rem;
    display: block;
    color: #fff;
    padding: .05rem .2rem;
    width: 1.5rem;
    text-align: center;
    margin: 0 auto;
    background: linear-gradient(180deg, #f48412 0, #da2225 100%);
}

.defBlockTip {
    text-align: center;
    padding-top: .4rem;
}

.defBlockTip h2 {
    color: #333;
    font-size: .4rem;
}

.defBlockTip p {
    color: #666;
    font-size: .16rem;
}

/*foot*/
.footerWrap {
    width: 100%;
    background-color: #1d1d1d;
    border-top: 4px solid #ee3224
}

.footerWrap .footerBox {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto
}

.footerWrap .footerMain {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .5rem 0;
}

.footerWrap .footerLogo {
    width: 30%;
}

.footerWrap .footerLogo p {
}

.footerWrap .footerLogo p img {
    height: .4rem
}

.footerWrap .footerNav {
    width: 20%;
    overflow: hidden;
    height: 200px;
    margin-right: 10%;
}

.footerWrap .footerNav p {
    margin-bottom: .5rem
}

.footerWrap .footerNav img {
    height: .4rem
}

.footerWrap .footerNav div {
    width: 100%
}

.footerWrap .footerNav dt {
    font-size: .18rem;
    font-weight: bold;
    color: #fff
}

.footerWrap .footerNav dd {
    margin-bottom: .18rem
}

.footerWrap .footerNav a {
    color: #fff;
    font-size: .14rem
}

.footerWrap .footerContent {
    width: 50%;
}

.footerWrap .footerContent h2 {
    font-size: .18rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: .2rem
}

.footerWrap .footerContent div {
    margin-bottom: .1rem
}

.footerWrap .footerContent p {
    line-height: .24rem;
    color: #fff
}

.footerWrap .footerContent h3 {
    color: #fff;
    font-size: .4rem;
    font-weight: 100;
}

.footerWrap .footerContent ul {
    width: 100%;
    margin-top: .2rem
}

.footerWrap .footerContent ul li {
    text-align: center;
    width: 20%;
    position: relative;
}

.footerWrap .footerContent ul li i {
    color: #e3e3e3;
    font-size: 40px;
    transition: .2s all ease-in;
}

.footerWrap .footerContent ul li img {
    width: 100%;
    margin: 0 auto;
    position: absolute;
    bottom: 50px;
    left: 0;
    transition: .2s all ease-in;
    opacity: 0;
    z-index: -1;
    visibility: hidden;
    transform: translateY(-10px)
}

.footerWrap .footerContent ul li:hover i {
    color: #fff;
}

.footerWrap .footerContent ul li:hover img {
    opacity: 1;
    visibility: visible;
    z-index: 10;
    transform: translateY(0)
}


/*.footerWrap .footerContent ul li{text-align: center; width:16.6%;}
.footerWrap .footerContent ul li img{width: 70%;margin: 0 auto}
.footerWrap .footerContent ul li span{font-size: .14rem;color: #fff}*/
/*��������*/
.footerWrap .footerLink {
    width: 100%;
    padding: .15rem 0;
    margin-top: .4rem;
    border-top: 1px solid #999;
    border-bottom: 1px solid #999;
    line-height: .24rem;
    display: flex;
    flex-wrap: wrap
}

.footerWrap .footerLink h2 {
    font-size: .14rem;
    font-weight: normal;
    color: #fff
}

.footerWrap .footerLink a {
    color: #fff;
    font-size: .14rem;
    margin-left: .3rem;
    word-break: break-all;
    white-space: pre-wrap
}

.footerWrap .footerRight {
    text-align: center;
    padding: .1rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid #999;
}

.footerWrap .footerRight span, .footerWrap .footerRight a {
    margin: 0 .1rem;
    color: #fff;
    line-height: 1.8
}

@media screen and (max-width: 1025px) {
    .footerWrap .footerBox {
        padding-left: .1rem;
        padding-right: .1rem
    }

    .footerWrap .footerMain {
        display: flex;
        align-items: center;
        flex-direction: column
    }

    .footerWrap .footerNav {
        width: 100%;
        height: 150px;
        margin-bottom: .3rem;
        margin-right: 0;
    }

    .footerWrap .footerLogo {
        width: 100%;
        height: 0;
        margin-bottom: .6rem
    }

    .footerWrap .footerContent {
        width: 100%
    }

    .footerWrap .footerContent ul li {
        text-align: center;
        width: 33%;
    }

    .footerWrap .footerRight {
        flex-direction: column
    }
}


/*��ҳbanner*/
/*.defBaneWrap .pcBanner .swiper-slide {width: 100%;height: calc(100vh);overflow: hidden;background-position: center;background-repeat: no-repeat;background-size: cover}
.defBaneWrap .mbBanner {display: none}
.defBaneWrap .mbBanner .swiper-slide {width: 100%;height: calc(100vh - .5rem);overflow: hidden;background-position: center;background-repeat: no-repeat;background-size: cover}
.defBaneWrap .swiper-pagination-bullet {background: #fff !important;opacity: 1}
.defBaneWrap .swiper-pagination-bullet-active {width: .2rem !important;border-radius: 4px;background:#e04e0d!important;}
@media screen and (max-width:1000px) {
    .defBaneWrap .pcBanner {display: none}
    .defBaneWrap .mbBanner {display: block}
}*/

/*��ҳbanner*/
.defBannerPC {
    width: 100%;
    height: auto; /* 自适应高度 */
    overflow: visible; /* 显示所有内容 */
    position: relative;
}

.defBannerPC > img {
    width: 100%;
    height: auto; /* 图片按比例缩放 */
}

.defBannerBOX {
    position: absolute;
    top: 150px;
    left: 50%;
    margin-left: -700px;
}

.defBannerBOX .defBannerText {
}

.defBannerBOX .defBannerText p {
    color: #fff;
    font-size: .8rem;
    font-weight: bold;
}

.defBannerBOX .defBannerText i {
    display: block;
    width: 50px;
    height: 4px;
    background: #fff;
    margin-top: 63px;
    margin-bottom: 27px;
}

.defBannerBOX .defBannerText span {
    display: block;
    line-height: 35px;
    opacity: 0.62;
    font-size: 20px;
    color: #fff;
    margin-bottom: 40px;
}

.defBannerBOX .defBannerUL {
}

.defBannerBOX .defBannerUL li {
    position: relative;
    margin-bottom: 30px;
}

.defBannerBOX .defBannerUL li a {
    display: block;
    width: 280px;
    line-height: 60px;
    color: #fff;
    border: 1px solid #e3e3e3;
    border-radius: 10px;
    text-align: center;
    transition: 0.2s all ease-in;
}

.defBannerBOX .defBannerUL li div {
    display: none;
    width: 134px;
    height: 124px;
    position: absolute;
    top: -32px;
    left: 300px;
    background: url(../images//ewmBg.png) no-repeat;
    background-size: 100% 100%;
    transition: 0.2s all ease-in;
}

.defBannerBOX .defBannerUL li div img {
    width: 110px;
    height: 110px;
    margin: 7px 7px 7px 17px;
}

.defBannerBOX .defBannerUL li:hover a {
    background-color: #fff;
    color: #333;
    border: 2px solid #fff;
}

.defBannerBOX .defBannerUL li:hover div {
    display: block;
}

.defBannerMB {
    width: 100%;
    height: calc(100vh - .5rem);
    overflow: hidden;
    display: none;
}

.defBannerMB img {
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 1000px) {
    .defBannerPC {
        display: none
    }

    .defBannerMB {
        display: block
    }
}


.BannerInfo {
    width: 100%;
    padding-bottom: 35%;
    overflow: hidden;
    position: relative
}

.BannerInfo p {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
}

.BannerInfo img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

@media screen and (max-width: 1025px) {
    .BannerInfo {
        padding-bottom: 45%
    }

    .BannerInfo p {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0
    }

    .BannerInfo img {
        width: 100%;
        height: 100%;
        object-fit: cover
    }
}


/*���ͽ���*/
.CarMain {
    width: 1200px;
    margin: 50px auto;
    padding: 60px;
    background-color: #fff;
}

.CarMain > p {
    font-size: 16px;
    color: #44454d;
    font-weight: 600;
}

.CarBox {
}

.CarBox li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 0;
    border-bottom: 1px solid #e3e3e3;
}

.CarBox li:last-child {
    border: 0;
}

.CarImg {
    width: 20%;
}

.CarImg img {
    width: 100%;
}

.CarInfo {
    width: 65%;
}

.CarInfo p {
    font-size: .15rem;
    font-weight: bold;
    color: #333;
}

.CarInfo dl {
    margin-top: 13px;
}

.CarInfo dl dd {
    display: inline-block;
    width: 100px;
    height: 33px;
    line-height: 33px;
    margin-right: 10px;
    text-align: center;
    border-radius: 4px;
}

.CarInfo dl dd:nth-child(1) {
    background-color: #f5efe1;
    color: #7d6535;
}

.CarInfo dl dd:nth-child(2) {
    background-color: #ebf5f6;
    color: #018489;
}

.CarInfo dl dd:nth-child(3) {
    background-color: #dfe6f6;
    color: #395697;
}

.CarInfo dl dd:nth-child(4) {
    background-color: #f6e9e8;
    color: #923c35;
}

.CarInfo dl dd:nth-child(5) {
    background-color: #f5f9f2;
    color: #64993c;
}

.CarInfo dl dd:nth-child(6) {
    background-color: #f5efe1;
    color: #7d6535;
}

.CarInfo dl dd:nth-child(7) {
    background-color: #ebf5f6;
    color: #018489;
}

.CarInfo dl dd:nth-child(8) {
    background-color: #dfe6f6;
    color: #395697;
}

.CarInfo dl dd:nth-child(9) {
    background-color: #f6e9e8;
    color: #923c35;
}

.CarInfo dl dd:nth-child(10) {
    background-color: #f5f9f2;
    color: #64993c;
}

.CarInfo div {
    margin-top: 12px;
}

.CarInfo div img {
    display: inline;
    width: 15px;
    height: 15px;
    vertical-align: baseline;
    line-height: 20px;
    margin-right: 10px;
}

.CarInfo div span {
    line-height: 20px;
    font-size: 16px;
    margin-left: 20px;
}

.CarRight {
}

.CarRight p {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    text-align: right;
}

.CarRight p span {
    color: #e02020;
}

.CarRight a {
    display: block;
    width: 90px;
    height: 40px;
    font-size: 16px;
    color: #fff;
    background-color: #e04e0d;
    border-radius: 4px;
    margin: 15px 0 0 0;
    text-align: center;
    line-height: 40px;
}


@media screen and (max-width: 1025px) {
    .CarMain {
        width: 100%;
        padding: 60px .3rem;
        margin: 0;
    }

    .CarBox li {
        display: block;
        padding: 50px 0;
        border-bottom: 1px solid #e3e3e3;
    }

    .CarImg {
        width: 100%;
    }

    .CarInfo {
        width: 100%;
    }

    .CarInfo > p {
        margin-top: .5rem;
        text-align: center;
    }

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

    .CarInfo dl dd {
        width: 40%;
        margin-bottom: 10px;
    }

    .CarRight a {
        margin: 0 auto;
        margin-top: .5rem;
    }
}


/*���ͽ��������������������������������������������������������������������������*/
.CarBread {
    width: 100%;
    height: 60px;
    background-color: #f6f6f6;
}

.CarBread div {
    width: 1400px;
    margin: 0 auto;
}

.CarBread div a {
    display: inline-block;
    font-size: 18px;
    line-height: 60px;
    padding: 0 30px;
    color: #333;
    transition: 0.2s all ease-in;
    margin: 0;
    float: left;
}

.CarBread div a:first-child {
    background-color: #F9BE00;
    color: #fff;
}

.CarBread div a:hover {
    background-color: #F9BE00;
    color: #fff;
}

.CarTitle {
    width: 1400px;
    margin: 0 auto;
    margin-top: 55px;
}

.CarTitle p {
    font-size: 28px;
    margin-bottom: 48px;
    font-weight: bold;
}

.CarTitle div {
    display: flex;
    justify-content: left;
    align-items: center;
}

.CarTitle div dl {
    width: 30%;
    padding: 0 3%;
    border-right: 1px solid #e2e2e2;
}

.CarTitle div dl:last-child {
    border: 0;
}

.CarTitle div dl dt {
    font-size: 24px;
    color: #333;
    margin-bottom: 5px;
}

.CarTitle div dl dd {
    font-size: 16px;
    color: #999;
}

.CarTip {
    width: 100%;
    height: 48px;
    margin-top: 70px;
    position: relative;
    text-align: center;
    display: flex;
    justify-content: center;
}

.CarTip p {
    padding: 0 30px;
    font-size: 35px;
    background-color: #fff;
    z-index: 1;
}

.CarTip::after {
    content: "";
    width: 100%;
    height: 1px;
    background: #dadada;
    position: absolute;
    left: 0;
    top: 24px;
    z-index: 0;
}

.CarText {
    width: 1200px;
    margin: 70px auto;
}

.CarText img {
    max-width: 1200px;
    margin: 0 auto;
}

.swiperMain {
    width: 100%;
    position: relative;
}

.gallery-top {
    width: 980px;
    height: 622px;
}

.gallery-top .swiper-slide {
    margin: 0 auto;
    background-size: cover;
    background-position: center;
}

.swp-pot {
    width: 1400px;
    position: absolute;
    top: 300px;
    left: 50%;
    margin-left: -700px;
    z-index: 0;
}

.swiper-button-next {
    outline: none;
    background-image: url("") !important;
    width: 34px !important;
    height: 67px !important;
}

.swiper-button-prev {
    outline: none;
    background-image: url("") !important;
    width: 34px !important;
    height: 67px !important;
}

.arrow-left img {
    width: 34px;
    height: 67px;
}

.arrow-right img {
    width: 34px;
    height: 67px;
}

.gallery-thumbs {
    width: 980px !important;
    height: 120px !important;
    box-sizing: border-box;
    padding: 10px 0;
}

.gallery-thumbs .swiper-slide {
    background-size: cover;
    background-position: center;
}

.gallery-thumbs .swiper-slide {
    height: 100%;
    opacity: 0.4;
}

.gallery-thumbs .swiper-slide-thumb-active {
    opacity: 1;
}

/*���ͽ��������������������������������������������������������������������������*/

@media screen and (max-width: 1025px) {
    /*���ͽ��������������������������������������������������������������������������*/
    .CarBread {
        width: 100%;
        height: 60px;
        background-color: #f6f6f6;
    }

    .CarBread div {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .CarBread div a {
        width: 33.33%;
        display: inline-block;
        font-size: 18px;
        line-height: 60px;
        padding: 0;
        color: #333;
        transition: 0.2s all ease-in;
        text-align: center;
    }

    .CarTitle {
        width: 100%;
        margin: 0 auto;
        margin-top: 55px;
    }

    .CarTitle p {
        font-size: 24px;
        margin-bottom: 48px;
        width: 70%;
        margin: 0 auto;
        margin-bottom: 20px;
        font-weight: bold;
    }

    .CarTitle div {
        flex-wrap: wrap;
    }

    .CarTitle div dl {
        width: 100%;
        padding: 20px 15%;
        border-right: 0
    }

    .CarTitle div dl dt {
        font-size: 24px;
        color: #333;
        margin-bottom: 5px;
    }

    .CarTitle div dl dd {
        font-size: 16px;
        color: #999;
    }

    .CarTip {
        width: 100%;
        height: 48px;
        margin-top: 70px;
        position: relative;
        text-align: center;
    }

    .CarTip p {
        font-size: .4rem;
    }

    .CarTip::after {
        top: .3rem;
        z-index: 0;
    }

    .CarText {
        width: 100%;
        margin: 70px auto;
    }

    .CarText img {
        width: 100%;
        margin: 0 auto;
    }

    .swiperMain {
        margin-top: .2rem;
    }

    .gallery-top {
        width: 80%;
        height: 2rem;
    }

    .gallery-top .swiper-slide {
        background-size: 100% 100%;
        background-position: center;
    }

    .swp-pot {
        display: none;
    }

    .gallery-thumbs {
        width: 100% !important;
        height: .5rem !important;
        box-sizing: border-box;
        padding: 10px 0;
    }

    .gallery-thumbs .swiper-slide {
        background-size: cover;
        background-position: center;
    }

    .gallery-thumbs .swiper-slide {
        height: 100%;
        opacity: 0.4;
    }

    .gallery-thumbs .swiper-slide-thumb-active {
        opacity: 1;
    }
}


.TipOne {
    text-align: center;
    margin-top: 70px;
}

.TipOne a {
    color: #666;
    font-size: 20px;
    margin: 0 20px;
    padding-bottom: 5px;
}

.TipOne .curr {
    border-bottom: 2px solid #FFAC00;
    color: #333;
}

.TipOne a:hover {
    border-bottom: 2px solid #FFAC00;
    color: #333;
}

.TipTwo {
    width: 1200px;
    margin: 0 auto;
    margin-top: 70px;
}

.TipTwo a {
    display: inline-block;
    color: #666;
    font-size: 20px;
    margin: 0 20px;
    padding-bottom: 5px;
    line-height: 50px;
}

.TipTwo a.curr {
    border-bottom: 2px solid #FFAC00;
    color: #333;
}

.TipTwo a:hover {
    border-bottom: 2px solid #FFAC00;
    color: #333;
}

@media screen and (max-width: 1025px) {
    .TipOne {
    }

    .TipOne a {
        display: inline-block;
        margin-bottom: .2rem;
    }

    .TipTwo {
        width: 100%;
        margin-top: 30px;
    }

    .TipTwo a {
        font-size: 20px;
        margin: 0 10px;
        padding-bottom: 5px;
        line-height: 50px;
    }
}

/*�������У���Ʒ��*/
.LineWrap {
    padding: .8rem 0;
    overflow: hidden
}

.LineWrap .LineBox {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto
}

.LineWrap .LineItem {
    display: block;
    width: 100%;
    overflow: hidden
}

.LineWrap .LineItem .LinePic {
    width: 100%;
    padding-bottom: 59%;
    overflow: hidden;
    position: relative
}

.LineWrap .LineItem .LinePic p {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0
}

.LineWrap .LineItem .LinePic img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.LineWrap .LineItem .LineInfo {
    padding: .1rem .15rem
}

.LineWrap .LineItem .LineInfo h3 {
    height: .2rem;
    overflow: hidden;
    line-height: .2rem;
    font-size: .16rem;
    color: #333;
    font-weight: normal;
    text-align: center;
}

.LineWrap .LineItem .LineInfo p {
    height: .4rem;
    overflow: hidden;
    margin: .1rem 0;
    line-height: .2rem;
    font-size: .14rem;
    color: #999
}

.LineWrap .LineItem .LineInfo div {
    height: .2rem;
    overflow: hidden;
    margin-bottom: .1rem;
    line-height: .2rem;
    font-size: .14rem;
    color: #e04e0d
}

.LineWrap .LineItem .LineInfo span {
    font-size: .16rem;
    font-weight: bold
}

@media screen and (max-width: 1400px) {
    .LineWrap .LineBox {
        padding: 0 1rem
    }
}

@media screen and (max-width: 1025px) {
    .LineWrap {
        padding: .15rem 0
    }

    .LineWrap .LineBox {
        padding: 0 .15rem
    }

    .LineWrap .xhcol03 {
        width: 100%
    }

    .LineWrap .xhcol04 {
        width: 100%
    }
}

/*�������У���Ʒ��*/


/*��*/
.lineYTF {
    width: 100%;
    height: 2px;
    margin: 0 auto;
    background-color: #e3e3e3;
    margin-top: 70px;
}

/*�ŵ�*/
.StoreShow {
    width: 1400px;
    margin: 0 auto;
    margin-top: 100px;
}

.StoreInfo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.StoreInfo img {
    width: 50%;
}

.StoreInfo div {
    width: 50%;
    padding: 0 50px;
}

.StoreInfo div p {
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #333;
}

.StoreInfo div i {
    font-style: normal;
    color: #666;
    font-size: 20px;
}

.StoreInfo div span {
    display: block;
    margin-top: 20px;
    text-indent: 2em;
    font-size: 18px;
    color: #333;
    line-height: 40px;
}

.StoreInfo div a {
    margin-top: 20px;
    display: inline-block;
    color: #fff;
    background-color: #e04e0d;
    border-radius: 5px;
    text-align: center;
    line-height: 40px;
    padding: 0 20px;
}

#dituContent {
    margin: 50px 0;
}

@media screen and (max-width: 1400px) {
    .StoreShow {
        width: 100%;
        margin-top: 0;
    }
}

/*����+��ϵ����*/
.CustomTip {
    width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 50px;
}

.CustomTip p {
    font-size: 36px;
    font-weight: 600;
    color: #333;
    text-align: center
}

.CustomTip span {
    font-size: 20px;
    font-weight: 400;
    color: #999;
    line-height: 28px;
}

@media screen and (max-width: 1400px) {
    .CustomTip {
        width: 100%;
    }
}

@media screen and (max-width: 1025px) {

}

.CustomTitle {
    width: 1400px;
    margin: 50px auto;
    display: flex;
    justify-content: left;
    align-items: center;
    padding-bottom: 50px;
    margin-bottom: 0;
}

.CustomTitle dl {
    width: 17%;
}

.CustomTitle dl dt {
}

.CustomTitle dl dt img {
    margin: 0 auto;
}

.CustomTitle dl dd {
    text-align: center;
    font-size: 20px;
    line-height: 28px;
    margin-top: 14px;
}

.CustomTitle > img {
    width: 64px;
    height: 19px;
    margin: 0 3%;
}

.CustomInfo {
    width: 1000px;
    margin: 0 auto;
}

.CustomInfo ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 50px;
}

.CustomInfo ul li {
    width: 45%;
    margin-top: 30px;
}

.CustomInfo ul li p {
    width: 88px;
    font-size: 18px;
    color: #666666;
    line-height: 25px;
}

.CustomInfo ul li p span {
    color: #ff0000;
}

.CustomInfo ul li input[type='text'] {
    width: 100%;
    border: 0;
    background-color: #f8f8f8;
    border-radius: 8px;
    padding: 15px 20px;
    margin-top: 15px;
    font-size: 14px;
}

.CustomInfo ul li textarea {
    width: 100%;
    border: 0;
    background-color: #f8f8f8;
    border-radius: 8px;
    padding: 15px 20px;
    margin-top: 15px;
    font-size: 14px;
    height: 100px;
    overflow-y: visible;
}

.CustomInfo ul li:last-child {
    width: 100%;
}

.CustomInfo a {
    display: block;
    width: 250px;
    padding: 10px 0;
    text-align: center;
    margin: 50px auto;
    background: #ffda00;
    border-radius: 30px;
    box-shadow: 0px 12px 35px -4px rgb(255 218 0 / 67%);
    font-size: 22px;
    color: #fff;
}

@media screen and (max-width: 1400px) {
    .CustomTitle {
        width: 100%;
        flex-wrap: wrap;
    }

    .CustomTitle dl {
        width: 50%;
    }

    .CustomTitle > img {
        display: none;
    }

    .CustomInfo {
        width: 100%;
        margin: 0 auto;
        padding: 0 .2rem;
    }

    .CustomInfo ul li {
        width: 100%;
        margin-top: 30px;
    }
}

@media screen and (max-width: 1025px) {

}

/*��������*/

.nshowWarp {
    padding: .8rem 0;
    background-color: #fff
}

.nshowWarp .nshowBox {
    width: 1200px;
    margin: 0 auto
}

.nshowWarp .nshowBox .nshowTitle {
    font-size: 40px;
    line-height: 50px
}

.nshowWarp .nshowBox .nshowTag {
    height: 50px;
    padding: 15px 0;
    border-bottom: 1px solid #e3e3e3;
    display: flex
}

.nshowWarp .nshowBox .nshowTag p {
    line-height: 20px;
    margin-right: 40px;
    color: #999
}

.nshowWarp .nshowBox .nshowInfo {
    margin: 40px 0
}

.nshowWarp .nshowBox .nshowInfo video {
    max-width: 100%;
}

.nshowWarp .nshowBox .nshowInfo p {
    font-size: 15px;
    line-height: 28px;
    margin-bottom: 15px;
    text-indent: 2em
}

.nshowWarp .nshowBox .nshowInfo img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
}

.nshowWarp .nshowBox .nshowOther {
    height: 60px;
    padding: 10px;
    border-radius: 30px;
    background-color: #f2f2f2;
    display: flex;
    justify-content: space-between;
    line-height: 40px
}

.nshowWarp .nshowBox .nshowBack {
    width: 150px;
    height: .4rem;
    border-radius: 20px;
    background-color: #fff;
    text-align: center;
    color: #093a51;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.4);
    transition: .2s all ease-in;
    margin: 0 15px;
    font-family: cnFont;
    line-height: .4rem;
    font-size: .18rem
}

.nshowWarp .nshowBox .nshowBack:hover {
    background: #093a51;
    color: #fff;
    transition: .2s all ease-in
}

.nshowWarp .nshowBox .nshowNext {
    display: flex;
    color: #666;
    overflow: hidden
}

.nshowWarp .nshowBox .nshowOther a:first-child {
    width: 40%
}

.nshowWarp .nshowBox .nshowOther a:last-child {
    width: 40%
}

.nshowWarp .nshowBox .nshowNext i {
    flex-shrink: 0;
    display: block;
    width: 38px;
    height: 38px;
    margin: 0 10px 0 0;
    border-radius: 20px;
    background-color: #fff;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.4);
    text-align: center;
    line-height: 40px;
    color: #093a51;
    font-size: 15px;
    transition: .2s all ease-in
}

.nshowWarp .nshowBox .nshowNext i:hover {
    background: #093a51;
    color: #fff;
    transition: .2s all ease-in
}

.nshowWarp .nshowBox .nshowNext span {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap
}

.nshowWarp .nshowBox .nshowNext:last-of-type {
    flex-direction: row-reverse
}

.nshowWarp .nshowBox .nshowNext:last-of-type i {
    margin: 0 0 0 10px
}

@media screen and (max-width: 1300px) {
    .nshowWarp .nshowBox {
        width: 1100px
    }
}

@media screen and (max-width: 768px) {
    .nshowWarp {
        padding: .2rem 0
    }

    .nshowWarp .nshowBox {
        width: auto;
        margin: 0 .1rem
    }

    .nshowWarp .nshowBox .nshowTitle {
        font-size: .2rem;
        line-height: .25rem
    }

    .nshowWarp .nshowBox .nshowTag {
        height: auto;
        padding: .1rem 0;
        border-bottom: 1px solid #e3e3e3;
        display: flex;
        font-size: .12rem;
        flex-wrap: wrap
    }

    .nshowWarp .nshowBox .nshowTag p {
        line-height: .2rem;
        margin-right: 0;
        width: 50%
    }

    .nshowWarp .nshowBox .nshowInfo {
        margin: .2rem 0
    }

    .nshowWarp .nshowBox .nshowInfo p {
        font-size: .13rem;
        line-height: .24rem;
        margin-bottom: .1rem;
        text-indent: .2em
    }

    .nshowWarp .nshowBox .nshowOther {
        height: .5rem;
        padding: .1rem;
        border-radius: .25rem;
        justify-content: space-between;
        line-height: .3rem
    }

    .nshowWarp .nshowBox .nshowBack {
        width: 1rem;
        height: .3rem;
        border-radius: .15rem;
        font-size: .13rem
    }

    .nshowWarp .nshowBox .nshowNext i {
        width: .3rem;
        height: .3rem;
        margin: 0;
        border-radius: .15rem;
        line-height: .3rem;
        font-size: .15rem
    }

    .nshowWarp .nshowBox .nshowNext span {
        display: none
    }

    .nshowWarp .nshowBox .nshowNext:last-of-type i {
        margin: 0
    }
}


.videoWrap {
    padding: .8rem 0;
    overflow: hidden
}

.videoWrap .videoBox {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto
}

.videoWrap .videoBox ul {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.videoWrap .videoBox ul li {
    width: 25%;
    padding: 20px;
}

.videoWrap .videoBox ul li:first-child {
    width: 100%;
    padding: 20px;
}

.videoWrap .videoBox ul li:first-child .videoItemBox a {
    padding-bottom: 0% !important;
}

.videoWrap .videoItemBox {
    width: 100%
}

.videoWrap .videoItemBox a {
    display: block;
    width: 100%;
    padding-bottom: 55%;
    overflow: hidden;
    position: relative
}

.videoWrap .videoItemBox a p {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0
}

.videoWrap .videoItemBox a img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.videoWrap .videoItemBox a i {
    display: block;
    font-size: .5rem;
    color: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: -0.25rem;
    margin-left: -0.25rem
}

.videoWrap .videoItemBox div {
    height: .2rem;
    margin-top: .15rem;
    padding: 0 .1rem;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.videoWrap .videoItemBox div p {
    height: .2rem;
    margin-right: .4rem;
    overflow: hidden;
    color: #333;
    font-size: .16rem;
    line-height: .2rem;
    text-align: center;
    width: 100%;
}

@media screen and (max-width: 1400px) {
    .videoWrap .videoBox {
        padding: 0 1rem
    }
}

@media screen and (max-width: 1025px) {
    .videoWrap {
        padding: .15rem 0
    }

    .videoWrap .videoBox {
        padding: 0 .15rem
    }

    .videoWrap .xhcol06 {
        width: 100%
    }

    .videoWrap .videoBox ul li {
        width: 100%;
    }

    .videoWrap .videoBox ul li:first-child .videoItemBox a {
        padding-bottom: 55% !important;
    }
}


.AboutusMain {
    width: 1400px;
    margin: 0 auto;
}

.AboutusTop {
    margin: 80px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.AboutusTop div {
    width: 45%;
}

.AboutusTop div img {
    margin-bottom: 20px;
    width: 150px;
}

.AboutusTop div p {
    color: #586673;
    font-size: 40px;
    font-weight: bold;
}

.AboutusTop div i {
    margin-top: 10px;
    font-size: 22px;
    line-height: 24px;
    letter-spacing: 3px;
    color: #8b98a2;
}

.AboutusTop div span {
    display: block;
    font-size: 18px;
    color: #8b98a2;
    line-height: 29px;
    margin-top: 20px;
}

.AboutusTop div a {
    display: block;
    width: 118px;
    height: 30px;
    border: 1px solid #333;
    color: #333;
    line-height: 30px;
    text-align: center;
    margin-top: 20px;
}

.AboutusTop > img {
    width: 45%;
}

.AboutusBottom {
    width: 100%;
    padding-bottom: 80px;
}

.AboutusBottom img {
    width: 100%;
}

@media screen and (max-width: 1400px) {
    .AboutusMain {
        width: 100%;
    }

    .AboutusTop {
        flex-wrap: wrap;
    }

    .AboutusTop div {
        width: 100%;
        padding: 0 .2rem;
    }

    .AboutusTop > img {
        width: 100%;
        margin-bottom: .2rem;
    }

    .AboutusTop div a {
        margin-bottom: .2rem;
    }
}

@media screen and (max-width: 1025px) {
    .AboutusMain {
        width: 100%;
    }
}


/*����*/
.NewsList {
    width: 1400px;
    margin: .8rem auto;
}

.NewsList ul {
}

.NewsList ul li {
    display: block;
    padding: 40px 20px;
    border-bottom: 1px dashed #e3e3e3;
}

.NewsList ul li:last-child {
    border-bottom: 0;
}

.NewsList ul li a {
    color: #666;
    font-size: .16rem;
}

.NewsList ul li a span {
    color: #2a5caa;
}

.NewsList ul li a p {
    display: inline;
}

.NewsList ul li a i {
    float: right;
    font-style: normal;
    font-size: .15rem;
}

@media screen and (max-width: 1400px) {
    .NewsList {
        width: 100%;
        margin: 0;
    }

    .NewsList ul li a span {
        display: none;
    }
}

@media screen and (max-width: 1025px) {
    .NewsList {
        width: 100%;
        margin: 0;
    }

    .NewsList ul li a span {
        display: none;
    }
}