body.fixed {
    padding-top: 94px;
}

/* public START */
.public {
    font-size: 14px;
    line-height: 35px;
    background: #f2f2f2;
    border-bottom: 1px solid #e8e8e8;
    position: relative;
    z-index: 100;
}

.public .left {
    color: #777;
}

.public .right {
    color: #888;
}

.public .right .line {
    width: 1px;
    height: 15px;
    background: #e5e5e5;
    margin: 0 10px;
}

.public .right a {
    -o-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.public .right a .iconfont {
    float: left;
    color: #c53833;
    font-size: 18px;
    margin-right: 8px;
}

.public .right a .iconfont.active {
    color: inherit;
}

.public .right a:hover {
    color: #c53833;
}

.public .right a.close_personal {
    color: #c53833;
}

/* public END */
/* header START */
.header {
    background: #fff;
    padding: 12px 0;
    position: relative;
    z-index: 100;
}

.header .center {
    position: relative;
}

.header .logo {
    height: 70px;
}

.header .nav {
    margin-top: -5px;
    margin-left: 60px;
    line-height: 66px;
}

.header .nav .item {
    margin: 0 25px;
    position: relative;
}

.header .nav .item:hover,
.header .nav .item.active {
    color: #c53833;
}

.header .nav .item:hover .stair .line,
.header .nav .item.active .stair .line {
    width: 100%;
    opacity: 1;
}

.header .nav .item .stair {
    padding: 0 3px;
    -o-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.header .nav .item .stair .line {
    position: absolute;
    width: 0;
    height: 3px;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
    background: #c53833;
    opacity: 0;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
.header .header-right{
    display:flex;
    align-items: center;
    gap: 30px;
}
.header .search {
    position: relative;
    margin-top: -3px;
    font-size: 24px;
    color: #c53833;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: right;
    overflow: hidden;
}

.header .search .iconfont {
    position: relative;
    z-index: 10;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.header .search .mask {
    position: absolute;
    left: 100%;
    top: 100%;
    width: 100%;
    height: 100%;
    background: #c53833;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    border-radius: 50%;
    -o-transform: translateZ(0) scale(0);
    -moz-transform: translateZ(0) scale(0);
    -webkit-transform: translateZ(0) scale(0);
    transform: translateZ(0) scale(0);
    opacity: 0;
}

.header .search:hover {
    color: #fff;
}

.header .search:hover .iconfont {
    -o-transform: translate(-8px, 0);
    -moz-transform: translate(-8px, 0);
    -webkit-transform: translate(-8px, 0);
    transform: translate(-8px, 0);
}

.header .search:hover .mask {
    left: 0;
    top: 0;
    opacity: 1;
    -o-transform: translateZ(0) scale(1);
    -moz-transform: translateZ(0) scale(1);
    -webkit-transform: translateZ(0) scale(1);
    transform: translateZ(0) scale(1);
    border-radius: 3px;
}

.header .search_form {
    position: absolute;
    right: -300px;
    top: 82px;
    z-index: -1;
    opacity: 0;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.header .search_form input {
    font-size: 14px;
    background: #f5f5f5;
    height: 40px;
    width: 220px;
    padding: 0 12px;
    color: #555;
    border: 1px solid #c53833;
}

.header .search_form input::-webkit-input-placeholder {
    color: #999999;
}

.header .search_form input:-moz-placeholder {
    color: #999999;
}

.header .search_form input:-ms-input-placeholder {
    color: #999999;
}

.header .search_form input::placeholder {
    color: #999999;
}

.header .search_form button {
    height: 40px;
    color: #fff;
    font-size: 16px;
    padding: 0 10px;
    cursor: pointer;
    background: #c53833;
}

.header .search_form button .iconfont {
    float: left;
    font-size: 20px;
    margin-right: 3px;
}

.header .search_form.active {
    z-index: 100;
    opacity: 1;
    right: 0;
}

.header.fixed {
    position: fixed;
    z-index: 9999;
    width: 100%;
    max-width: 1920px;
    /* min-width: 1200px; */
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    box-shadow: 0 15px 30px rgba(50, 50, 50, 0.1);
    -o-animation: header_move 0.8s;
    -moz-animation: header_move 0.8s;
    -webkit-animation: header_move 0.8s;
    animation: header_move 0.8s;
}

@keyframes header_move {
    0% {
        opacity: 0;
        top: -100px;
    }

    100% {
        opacity: 1;
        top: 0;
    }
}

@-webkit-keyframes header_move {
    0% {
        opacity: 0;
        top: -100px;
    }

    100% {
        opacity: 1;
        top: 0;
    }
}

/* header END */
/* banner_container START */
.banner_container {
    overflow: hidden;
    position: relative;
}

.banner_container .swiper-slide {
    position: relative;
    overflow: hidden;
    /* height: 500px; */
}

.banner_container .swiper-slide a {
    display: block;
    /* position: absolute; */
    /* top: 0; */
    /* left: 50%; */
    /* height: 500px; */
    -o-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    /* -webkit-transform: translate(-50%, 0); */
    /* transform: translate(-50%, 0); */
}

.banner_container .swiper-slide a img {
    /* max-width: none; */
    width:100%;
}

.banner_container [class*=swiper-button] {
    background: none;
    text-align: center;
    width: 50px;
    height: 50px;
    border: solid 1px #ffffff;
    color: #fff;
    opacity: 0.6;
    line-height: 48px;
    font-size: 24px;
    -o-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.banner_container [class*=swiper-button] .iconfont {
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.banner_container [class*=swiper-button]:hover {
    border-color: #c53833;
    background: #c53833;
}

.banner_container .swiper-button-next {
    right: 40px;
}

.banner_container .swiper-button-next:hover .iconfont {
    margin-left: 8px;
}

.banner_container .swiper-button-prev {
    left: 40px;
}

.banner_container .swiper-button-prev:hover .iconfont {
    margin-right: 8px;
}
.banner_container .swiper-pagination{
    bottom:6px;
    z-index:2;
    width:100%;
    /* display:none; */
}
.banner_container .swiper-pagination-bullet{
    background:#fff;
    opacity:1;
    margin:0 5px;
}
.banner_container .swiper-pagination-bullet-active{
    background:#c53833;
}
/* banner_container END */
/* inside_banner START */
.inside_banner {
    position: relative;
    overflow: hidden;
    /* height: 400px; */
}

.inside_banner img {
    /* position: absolute; */
    /* max-width: none; */
    top: 0;
    /* left: 50%; */
    -o-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    /* -webkit-transform: translate(-50%, 0); */
    /* transform: translate(-50%, 0); */
}

/* inside_banner END */
/* footer START */
.footer {
    background: #201f25;
    font-size: 14px;
    color: #747474;
}

.footer .blogroll {
    padding: 18px 0 30px;
}

.footer .blogroll .item {
    margin: 0 9px;
    /* opacity: 0.8; */
    margin-top: 12px;
    -o-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.footer .blogroll .item:hover {
    opacity: 1;
}

.footer .line {
    height: 1px;
    opacity: 0.1;
    background: #e5e5e5;
}

.footer .copyright {
    padding: 15px 0;
    line-height: 30px;
    text-align: center;
}

.footer .copyright span {
    margin-right: 15px;
}

.footer .copyright a {
    display: inline;
    -o-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.footer .copyright a:hover {
    color: #c53833;
}

/* footer END */
/* crumbs START */
.crumbs {
    height: 50px;
    line-height: 50px;
    overflow: hidden;
    font-size: 14px;
    color: #888888;
}

.crumbs.white {
    background: #fff;
}

.crumbs.gray {
    background: #f9f9f9;
}

.crumbs .iconfont {
    font-size: 12px;
    margin: 0 5px;
    transform: translateY(1px);
}

.crumbs .item:not(.active) {
    -o-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.crumbs .item:not(.active):hover {
    color: #c53833;
}

.crumbs .item:last-of-type {
    color: #c53833;
}

/* crumbs END */
/* index START */
.index .main {
    overflow: hidden;
    padding: 70px 0 60px;
}

.index .main .title {
    text-align: center;
}

.index .main .title h2 {
    font-size: 30px;
    font-weight: bold;
    line-height: 32px;
    color: #424242;
}

.index .main .title .title_desc {
    display: block;
    font-size: 14px;
    color: rgba(197, 197, 197, 0.6);
    margin-top: 12px;
}

.index .main .main_container {
    padding-top: 45px;
}
.index .main2 .list{
     display: grid;
     grid-template-columns: repeat(4,1fr);
     gap: 35px 25px;
}
.index .main1 .list .item {
    padding: 0 30px;
    text-align: center;
}

.index .main1 .list .item:nth-child(1) {
    -o-animation-delay: 0s;
    -moz-animation-delay: 0s;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

.index .main1 .list .item:nth-child(2) {
    -o-animation-delay: 0.15s;
    -moz-animation-delay: 0.15s;
    -webkit-animation-delay: 0.15s;
    animation-delay: 0.15s;
}

.index .main1 .list .item:nth-child(3) {
    -o-animation-delay: 0.3s;
    -moz-animation-delay: 0.3s;
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}

.index .main1 .list .item:nth-child(4) {
    -o-animation-delay: 0.45s;
    -moz-animation-delay: 0.45s;
    -webkit-animation-delay: 0.45s;
    animation-delay: 0.45s;
}

.index .main1 .list .item:nth-child(5) {
    -o-animation-delay: 0.5s;
    -moz-animation-delay: 0.5s;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

.index .main1 .list .item .picture_icon {
    width: 114px;
    height: 114px;
    margin: 0 auto;
    border: solid 1px #bdbdbd;
    border-radius: 50%;
    line-height: 112px;
    font-size: 50px;
    color: #bdbdbd;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.index .main1 .list .item .picture_icon .iconfont {
    -webkit-transition: transform 0.5s;
    transition: transform 0.5s;
}

.index .main1 .list .item .explain_title {
    font-size: 18px;
    color: #555555;
    margin-top: 20px;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.index .main1 .list .item .line {
    margin: 12px auto 20px;
    width: 34px;
    height: 1px;
    background: #ced9df;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.index .main1 .list .item .explain_content {
    font-size: 14px;
    line-height: 24px;
    color: #888888;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.index .main1 .list .item:hover .picture_icon,
.index .main1 .list .item.active .picture_icon {
    color: #c53833;
    border-color: #c53833;
    -o-transform: translate(0, -20px);
    -moz-transform: translate(0, -20px);
    -webkit-transform: translate(0, -20px);
    transform: translate(0, -20px);
}

.index .main1 .list .item:hover .picture_icon .iconfont,
.index .main1 .list .item.active .picture_icon .iconfont {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.index .main1 .list .item:hover .explain_title,
.index .main1 .list .item.active .explain_title {
    color: #c53833;
    -o-transform: translate(0, -16px);
    -moz-transform: translate(0, -16px);
    -webkit-transform: translate(0, -16px);
    transform: translate(0, -16px);
}

.index .main1 .list .item:hover .line,
.index .main1 .list .item.active .line {
    width: 66px;
    background: #c53833;
    -o-transform: translate(0, -12px);
    -moz-transform: translate(0, -12px);
    -webkit-transform: translate(0, -12px);
    transform: translate(0, -12px);
}

.index .main1 .list .item:hover .explain_content,
.index .main1 .list .item.active .explain_content {
    -o-transform: translate(0, -8px);
    -moz-transform: translate(0, -8px);
    -webkit-transform: translate(0, -8px);
    transform: translate(0, -8px);
}

.index .main2 {
    background: #f9f9f9;
    padding-bottom: 30px;
}

.index .main2 .list .item {
    /* width: 280px; */
    text-align: center;
    font-size: 18px;
    /* margin-bottom: 35px; */
    width: 100%;
}

.index .main2 .list .item:not( :nth-child(4n)) {
    /* margin-right: 25px; */
}

.index .main2 .list .item .picture_container {
    padding-top: 78.94%;
}

.index .main2 .list .item .explain_title {
    margin-top: 20px;
    padding: 0 15px;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    text-overflow: ellipsis;
    /* white-space: nowrap; */
    overflow: hidden;
}

.index .main2 .list .item.active,
.index .main2 .list .item:hover {
    color: #c53833;
}

.index .main2 .list .item.active .picture_container img,
.index .main2 .list .item:hover .picture_container img {
    -o-transform: translateZ(0) scale(1.1);
    -moz-transform: translateZ(0) scale(1.1);
    -webkit-transform: translateZ(0) scale(1.1);
    transform: translateZ(0) scale(1.1);
}

.index .main3 {
    padding: 80px 0 70px;
}

.index .main3 .main_module {
    padding: 30px;
    overflow: hidden;
    padding-top: 25px;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 4px 6px 21px 0px rgba(8, 1, 3, 0.07);
}

.index .main3 .main_module .title {
    text-align: left;
}

.index .main3 .main_module .title h2 {
    -o-animation-delay: 0.5s;
    -moz-animation-delay: 0.5s;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

.index .main3 .main_module .title .title_desc {
    -o-animation-delay: 0.5s;
    -moz-animation-delay: 0.5s;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

.index .main3 .main_module .picture {
    overflow: hidden;
    -o-animation-delay: 0.5s;
    -moz-animation-delay: 0.5s;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

.index .main3 .main_module .picture img {
    -o-transition: all 1s;
    -moz-transition: all 1s;
    -webkit-transition: all 1s;
    transition: all 1s;
}

.index .main3 .main_module .picture img:hover {
    -o-transform: translateZ(0) scale(1.1);
    -moz-transform: translateZ(0) scale(1.1);
    -webkit-transform: translateZ(0) scale(1.1);
    transform: translateZ(0) scale(1.1);
}
.index .main3 .left {
    width: 59.66%;
}

.index .main3 .left .explain_content {
    margin-top: 20px;
    font-size: 16px;
    color: #666666;
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    line-height: 32px;
    height: 96px;
    -o-animation-delay: 0.5s;
    -moz-animation-delay: 0.5s;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

.index .main3 .left .bottom {
    margin-top: 40px;
    position: relative;
}

.index .main3 .left .bottom .adorn {
    height: 42px;
    -o-animation-delay: 0.5s;
    -moz-animation-delay: 0.5s;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

.index .main3 .left .bottom .explain_link {
    -o-animation-delay: 0.5s;
    -moz-animation-delay: 0.5s;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
    width: 62px;
    height: 62px;
    line-height: 62px;
    border-radius: 50%;
    text-align: center;
    background: #ffffff;
    box-shadow: 4px 6px 21px 0px rgba(8, 1, 3, 0.07);
    font-size: 30px;
    color: #ddd;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto 0;
    -o-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.index .main3 .left .bottom .explain_link:hover {
    color: #c53833;
}

.index .main3 .right {
    width: 36.66%;
}

.index .main3 .right .item_active .explain {
    -o-animation-delay: 0.5s;
    -moz-animation-delay: 0.5s;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

.index .main3 .right .item_active .explain_title {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    margin-top: 18px;
    -o-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.index .main3 .right .item_active .explain_content {
    font-size: 14px;
    color: #888888;
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 26px;
    height: 52px;
    margin-top: 15px;
}

.index .main3 .right .item_active:hover .explain_title {
    color: #c53833;
}

.index .main3 .right .list {
    margin-top: 18px;
}

.index .main3 .right .list .item {
    padding: 12px 0;
    position: relative;
    border-top: 1px dashed #eee;
}

.index .main3 .right .list .item .explain {
    padding-left: 20px;
}

.index .main3 .right .list .item .explain .explain_title {
    color: #888888;
    font-size: 14px;
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    line-height: 32px;
    height: 32px;
    -o-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.index .main3 .right .list .item .dot {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #e6e6e6;
}

.index .main3 .right .list .item.active .explain .explain_title,
.index .main3 .right .list .item:hover .explain .explain_title {
    color: #c53833;
}

.index .main3 .right .list .item:nth-child(1) {
    -o-animation-delay: 0.6s;
    -moz-animation-delay: 0.6s;
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

.index .main3 .right .list .item:nth-child(2) {
    -o-animation-delay: 0.75s;
    -moz-animation-delay: 0.75s;
    -webkit-animation-delay: 0.75s;
    animation-delay: 0.75s;
}

.index .main3 .right .list .item:nth-child(3) {
    -o-animation-delay: 0.9s;
    -moz-animation-delay: 0.9s;
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
}

/* index END */
/* exit_personal START */
.exit_personal {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    z-index: -1;
    visibility: hidden;
    -o-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.exit_personal.active {
    opacity: 1;
    z-index: 100000000;
    visibility: visible;
}

.exit_personal.active .center {
    -o-transform: translateZ(0) scale(1);
    -moz-transform: translateZ(0) scale(1);
    -webkit-transform: translateZ(0) scale(1);
    transform: translateZ(0) scale(1);
}

.exit_personal .center {
    width: 630px;
    height: 320px;
    background: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 20px;
    -o-transform: translateZ(0) scale(0);
    -moz-transform: translateZ(0) scale(0);
    -webkit-transform: translateZ(0) scale(0);
    transform: translateZ(0) scale(0);
    -o-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.exit_personal .center>.close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #757575;
    font-size: 14px;
    -o-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.exit_personal .center>.close:hover {
    color: #c53833;
}

.exit_personal .center .hint {
    font-size: 16px;
    color: #424242;
    margin-top: 60px;
}

.exit_personal .center .control_list {
    margin-top: 70px;
}

.exit_personal .center .control_list .item {
    width: 120px;
    height: 46px;
    line-height: 46px;
    background: #888888;
    border-radius: 3px;
    font-size: 18px;
    letter-spacing: 1px;
    color: #ffffff;
    margin: 0 15px;
}

.exit_personal .center .control_list .item.active {
    background: #c53833;
}

/* exit_personal END */
/* car_type_details START */
.car_type_details .main1 {
    padding-top: 30px;
}

.car_type_details .main1 .left .left_title {
    font-size: 22px;
    color: #444444;
}

.car_type_details .main1 .left .left_list .item {
    /*width: 157px;*/
    height: 32px;
    background: rgba(25, 126, 203, 0.1);
    border-radius: 10px;
    font-size: 14px;
    line-height: 32px;
    color: #85aac7;
    text-align: center;
    margin-left: 20px;
    padding: 0px 10px;
}

.car_type_details .main1 .right {
    text-align: center;
    width: 80px;
    height: 40px;
    background: #c53833;
    border-radius: 10px;
    color: #ffffff;
    line-height: 40px;
}

.car_type_details .main2 {
    margin-top: 24px;
    padding-bottom: 50px;
}

.car_type_details .main2 .item .main_title {
    height: 46px;
    background: #f9f9f9;
    font-size: 18px;
    color: #444444;
    padding-left: 20px;
}

.car_type_details .main2 .item .main_title .dot {
    width: 10px;
    height: 10px;
    border: 1px solid #c53833;
    -webkit-transform: rotateZ(45deg);
    transform: rotateZ(45deg);
    margin-right: 10px;
}

.car_type_details .main2 .item .main_container {
    padding: 28px 22px;
    font-size: 14px;
    color: #666666;
    line-height: 24px;
}

.car_type_details .main2 .item .main_container ul li {
    line-height: 32px;
}

.car_type_details .main2 .item .main_container ul li:nth-child(3n) {
    width: 28%;
}

.car_type_details .main2 .item .main_container ul li:nth-child(3n-1) {
    width: 33%;
}

.car_type_details .main2 .item .main_container ul li:nth-child(3n-2) {
    width: 39%;
}

.car_type_details .main2 .item .main_container .item_text {
    margin-bottom: 10px;
}

/* car_type_details END */
/* advertising START */
.advertising .main1 .item {
    line-height: 66px;
}

.advertising .main1 .item:nth-child(1) .item_left .item_icon {
    color: #1ed290;
}

.advertising .main1 .item:nth-child(2) .item_left .item_icon {
    color: #f7ac1d;
}

.advertising .main1 .item:nth-child(3) .item_left .item_icon {
    color: #73bd12;
}

.advertising .main1 .item:nth-child(4) .item_left .item_icon {
    color: #ff663c;
}

.advertising .main1 .item:not(:last-child) {
    border-bottom: 1px solid #eee;
}

.advertising .main1 .item .item_left {
    width: 110px;
}

.advertising .main1 .item .item_left .item_icon {
    width: 26px;
    height: 26px;
    text-align: center;
    background: #f4f4f4;
    line-height: 26px;
    border-radius: 50%;
    font-size: 12px;
}

.advertising .main1 .item .item_left .item_title {
    margin-left: 10px;
}

.advertising .main1 .item .item_right {
    padding: 17px 0;
    width: 1090px;
    font-size: 14px;
    color: #555555;
    line-height: 32px;
}

.advertising .main1 .item .item_right .item_list_item {
    width: 10%;
    -o-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.advertising .main1 .item .item_right .item_list_item.active,
.advertising .main1 .item .item_right .item_list_item:hover {
    color: #c53833;
}

.advertising .main2 {
    padding: 20px 0 70px;
}
.advertising .main2 .list{
    /* display:grid;
    grid-template-columns:1fr,1fr, */
    justify-content: space-between;
}
.advertising .main2 .list .item {
    padding: 16px 14px;
    width: 48.33%;
    background: #f9f9f9;
    border-radius: 10px;
    margin-top: 30px;
    justify-content: space-between;
}

.advertising .main2 .list .item:not( :nth-child(2n)) {
    /* margin-right: 40px; */
}

.advertising .main2 .list .item .item_left {
    width: 44.28%;
}

.advertising .main2 .list .item .item_left .picture_container {
    padding-top: 68.85%;
    border-radius: 10px;
}

.advertising .main2 .list .item .explain {
    padding-top: 10px;
    width: 50.45%;
    /* margin-left: 30px; */
    position: relative;
    /* display: flex; */
    /* flex-direction: column; */
}

.advertising .main2 .list .item .explain .explain_title {
    font-size: 18px;
    color: #555555;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.advertising .main2 .list .item .explain .explain_info {
    font-size: 14px;
    line-height: 24px;
    margin: 20px 0;
    color: #888888;
    /* flex: 1; */
}

.advertising .main2 .list .item .explain .explain_link {
    font-size: 14px;
    color: #d5d5d5;
    /* position: absolute; */
    /* left: 0; */
    /* bottom: 20px; */
    -o-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.advertising .main2 .list .item .explain .explain_link:hover {
    color: #c53833;
}

.advertising .main2 .paging {
    margin-top: 60px;
}

/* advertising END */
/* advertising_details START */
.advertising_details .main1 {
    padding: 45px 0 65px;
}

.advertising_details .main1 .advertising_details_title {
    font-size: 26px;
    line-height: 32px;
    color: #444444;
    text-align: center;
}

.advertising_details .main1 .advertising_details_info {
    margin-top: 28px;
}

.advertising_details .main1 .advertising_details_info .info_title {
    height: 46px;
    background: #f9f9f9;
    font-size: 18px;
    color: #444444;
    padding-left: 20px;
}

.advertising_details .main1 .advertising_details_info .info_title .dot {
    width: 10px;
    height: 10px;
    border: 1px solid #c53833;
    -webkit-transform: rotateZ(45deg);
    transform: rotateZ(45deg);
    margin-right: 10px;
}

.advertising_details .main1 .advertising_details_info ul {
    padding: 30px 0;
    border: solid 1px #eeeeee;
    border-top: none;
    text-align: center;
}

.advertising_details .main1 .advertising_details_info ul .explain {
    font-size: 14px;
    margin-left: 20px;
    color: #888888;
}

.advertising_details .main1 .advertising_details_info ul .picture_icon {
    width: 40px;
    height: 40px;
    background: #f4f4f4;
    border-radius: 50%;
    line-height: 40px;
    /* font-size: 18px; */
    color: #c53833;
}

.advertising_details .main1 .main_container {
    padding: 20px 0 30px;
    font-size: 16px;
    line-height: 34px;
    color: #666666;
}

.advertising_details .main1 .main_container img {
    margin-top: 20px;
}

.advertising_details .main1 .details_control {
    border-top: solid 1px #eeeeee;
    font-size: 14px;
    color: #888888;
    padding-top: 15px;
}

.advertising_details .main1 .details_control .details_control_prev,
.advertising_details .main1 .details_control .details_control_next {
    width: 45%;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.advertising_details .main1 .details_control .details_control_next {
    text-align: right;
}

.advertising_details .main1 .details_control a {
    display: inline;
    -o-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.advertising_details .main1 .details_control a:hover {
    color: #c53833;
}

/* advertising_details END */
/* service START */
.service {
    background: #f4f4f4;
}

.service .main1 {
    padding: 50px 0 70px;
}
.service .main1 .center{
    display:flex;
    justify-content:space-between;
}
.service .main1 .main_left_container.active {
    position: fixed;
    width: 100%;
    top: 144px;
    left: 0;
}

.service .main1 .main_left {
    width: 220px;
    padding: 30px;
    background: #fff;
}

.service .main1 .main_left .main_left_title {
    font-size: 20px;
    color: #333333;
}

.service .main1 .main_left .main_left_title .main_left_title_icon {
    color: #c53833;
    margin-right: 8px;
}

.service .main1 .main_left .line {
    height: 1px;
    background: #eeeeee;
    margin-top: 15px;
}

.service .main1 .main_left .list {
    padding-top: 8px;
}

.service .main1 .main_left .list .item {
    margin-top: 15px;
    font-size: 14px;
    color: #777777;
    -o-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.service .main1 .main_left .list .item .dot {
    width: 6px;
    height: 6px;
    border: 1px solid #c53833;
    -webkit-transform: rotateZ(45deg);
    transform: rotateZ(45deg);
    margin-right: 8px;
}

.service .main1 .main_left .list .item.active,
.service .main1 .main_left .list .item:hover {
    color: #c53833;
}

.service .main1 .main_right {
    /* width: 960px; */
    background: #fff;
    padding: 45px 50px 30px;
    flex: 1;
    margin-left: 20px;
}

.service .main1 .main_right .main_right_title {
    font-size: 20px;
    font-weight: bold;
    color: #555555;
}

.service .main1 .main_right .line {
    height: 2px;
    margin-top: 15px;
    position: relative;
    background: #ebebeb;
}

.service .main1 .main_right .line .inside_line {
    width: 80px;
    height: 2px;
    background: #c53833;
    position: absolute;
    left: 0;
    top: 0;
}

.service .main1 .main_right .main_container {
    padding-top: 40px;
    text-align: center;
}

/* service END */
/* news START */
.news .main1 {
    padding: 55px 0 80px;
}

.news .main1 .title {
    text-align: center;
}

.news .main1 .title h2 {
    font-size: 30px;
    font-weight: bold;
    line-height: 32px;
    color: #424242;
}

.news .main1 .title .title_desc {
    display: block;
    font-size: 14px;
    color: rgba(197, 197, 197, 0.6);
    margin-top: 12px;
}

.news .main1 .main_classify {
    margin-top: 25px;
    text-align: center;
}

.news .main1 .main_classify .item {
    color: #424242;
    -o-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    margin: 0 25px;
    position: relative;
}

.news .main1 .main_classify .item:hover,
.news .main1 .main_classify .item.active {
    color: #c53833;
}

.news .main1 .main_classify .item::after {
    content: '';
    position: absolute;
    height: 15px;
    width: 1px;
    background: #eeeeee;
    margin: 0 26px;
    top: 4px;
}

/* .news .main1 .main_classify .line {  width: 1px;  height: 15px;  background: #eee;  margin: 0 25px;} */
.news .main1 .main_container {
    padding-top: 18px;
}
.news .main1 .main_container .list{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0 30px;
}
.news .main1 .main_container .list .item {
    /* width: 380px; */
    margin-top: 30px;
    background: #f9f9f9;
    -o-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.news .main1 .main_container .list .item .picture_container {
    padding-top: 52.63%;
}

.news .main1 .main_container .list .item .explain {
    padding: 22px 25px 20px;
}

.news .main1 .main_container .list .item .explain .explain_title {
    font-size: 16px;
    color: #444444;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    /* white-space: nowrap; */
    overflow: hidden;
    -o-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.news .main1 .main_container .list .item .explain .explain_content {
    margin-top: 15px;
    font-size: 14px;
    color: #888888;
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 26px;
    height: 52px;
}

.news .main1 .main_container .list .item:not( :nth-child(3n)) {
    /* margin-right: 30px; */
}

.news .main1 .main_container .list .item:hover {
    background: #ffffff;
    box-shadow: 4px 6px 21px 0px rgba(8, 1, 3, 0.07);
}

.news .main1 .main_container .list .item:hover .explain .explain_title {
    color: #c53833;
}

.news .main1 .main_container .paging {
    margin-top: 60px;
}

/* news END */
/* news_details START */
.news_details .main1 {
    padding: 55px 0 65px;
}

.news_details .main1 .title {
    text-align: center;
    font-size: 24px;
    line-height: 32px;
    color: #424242;
}

.news_details .main1 .details_info {
    margin-top: 20px;
    font-size: 14px;
    color: #c3c3c3;
    text-align: center;
}

.news_details .main1 .details_info span {
    margin: 0 15px;
}

.news_details .main1 .line {
    height: 1px;
    margin-top: 15px;
    background: #eee;
}

.news_details .main1 .main_container {
    font-size: 16px;
    line-height: 32px;
    color: #666666;
    padding: 20px 0;
}

.news_details .main1 .main_container img {
    display: block;
    margin: 20px auto;
}

.news_details .main1 .details_control {
    border-top: solid 1px #eeeeee;
    font-size: 14px;
    color: #888888;
    padding-top: 15px;
}

.news_details .main1 .details_control .details_control_prev,
.news_details .main1 .details_control .details_control_next {
    width: 45%;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.news_details .main1 .details_control .details_control_next {
    text-align: right;
}

.news_details .main1 .details_control a {
    display: inline;
    -o-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.news_details .main1 .details_control a:hover {
    color: #c53833;
}

/* news_details END */
/* about START */
.about .main1 {
    padding: 55px 0 70px;
}

.about .main1 .title {
    text-align: center;
}

.about .main1 .title h2 {
    font-size: 30px;
    font-weight: bold;
    line-height: 32px;
    color: #424242;
}

.about .main1 .title .title_desc {
    display: block;
    font-size: 14px;
    color: rgba(197, 197, 197, 0.6);
    margin-top: 12px;
}

.about .main1 .main_container {
    padding-top: 20px;
    font-size: 16px;
    line-height: 32px;
    color: #666666;
}

.about .main1 .main_container img {
    display: block;
    margin: 30px auto 0;
}

/* about END */
/* contact START */
.contact .main1 {
    padding: 55px 0 70px;
}

.contact .main1 .title {
    text-align: center;
}

.contact .main1 .title h2 {
    font-size: 30px;
    font-weight: bold;
    line-height: 32px;
    color: #424242;
}

.contact .main1 .title .title_desc {
    display: block;
    font-size: 14px;
    color: rgba(197, 197, 197, 0.6);
    margin-top: 12px;
}

.contact .main1 .main_container {
    padding-top: 35px;
    display: flex;
}
.contact .main1 .main_container:after{
    display:none;
}
.contact .main1 .main_container .main_container_left {
    width: 41.66%;
    padding-right: 30px;
}

.contact .main1 .main_container .main_container_left .main_container_left_title {
    font-size: 22px;
    color: #444444;
}

.contact .main1 .main_container .main_container_left .line {
    height: 1px;
    width: 414px;
    margin-top: 20px;
    background: #eee;
}

.contact .main1 .main_container .main_container_left .main_container_left_info {
    font-size: 18px;
    color: #444444;
    padding-top: 10px;
}

.contact .main1 .main_container .main_container_left .main_container_left_info .item {
    margin-top: 20px;
}

.contact .main1 .main_container .main_container_left .main_container_left_info .iconfont {
    color: #c53833;
    font-size: 26px;
    margin-right: 15px;
}

.contact .main1 .main_container .main_container_left .main_container_left_code {
    width: 175px;
    height: 175px;
    margin-top: 35px;
    border-radius: 10px;
    border: solid 1px #eeeeee;
}

.contact .main1 .main_container .main_container_left .main_container_left_code .logo_picture {
    height: 26px;
}

.contact .main1 .main_container .main_container_right {
    position: relative;
    padding-bottom: 15px;
    padding-right: 15px;
    flex: 1;
    float: none;
}

.contact .main1 .main_container .main_container_right img {
    max-width: none;
    max-height: none;
}

.contact .main1 .main_container .main_container_right #map {
    width: 680px;
    height: 390px;
    border-radius: 10px;
    position: relative;
    z-index: 10;
}

.contact .main1 .main_container .main_container_right .map_box {
    position: absolute;
    width: 680px;
    height: 390px;
    background: #f4f4f4;
    border-radius: 10px;
    bottom: 0;
    right: 0;
}

/* contact END */
/* main_register START */
.main_register {
    height: 608px;
    background-image: url(../images/change/register.jpg);
}

.main_register .main1 {
    height: 100%;
}

.main_register .main1 .center {
    height: 100%;
}

.main_register .main_container {
    width: 410px;
    padding: 25px 58px 32px;
    background: #ffffff;
}

.main_register .main_container .main_container_title {
    font-size: 22px;
    color: #383838;
    text-align: center;
}

.main_register .main_container .line {
    width: 40px;
    height: 3px;
    background: #c53833;
    margin: 8px auto 0;
}

.main_register .main_container .main_form {
    padding-top: 7px;
}

.main_register .main_container .main_form .item {
    position: relative;
    margin-top: 23px;
}

.main_register .main_container .main_form .item input {
    width: 100%;
    height: 42px;
    border: solid 1px #e5e5e5;
    padding-left: 40px;
    padding-right: 12px;
    font-size: 14px;
    color: #666;
}

.main_register .main_container .main_form .item input::-webkit-input-placeholder {
    color: #cfcfcf;
}

.main_register .main_container .main_form .item input:-moz-placeholder {
    color: #cfcfcf;
}

.main_register .main_container .main_form .item input:-ms-input-placeholder {
    color: #cfcfcf;
}

.main_register .main_container .main_form .item input::placeholder {
    color: #cfcfcf;
}

.main_register .main_container .main_form .item .iconfont {
    position: absolute;
    font-size: 18px;
    color: #c1c1c1;
    left: 13px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    line-height: 42px;
}

.main_register .main_container .main_form .item_picture .item_picture_code {
    position: absolute;
    height: 20px;
    right: 12px;
    top: 10px;
}

.main_register .main_container .main_form .item_picture input {
    padding-right: 100px;
}

.main_register .main_container .main_form .item_code input {
    padding-right: 90px;
}

.main_register .main_container .main_form .item_code .item_code_control {
    position: absolute;
    right: 12px;
    top: 0;
    bottom: 0;
    font-size: 12px;
    color: #c53833;
    line-height: 40px;
    cursor: pointer;
}

.main_register .main_container .main_form .item_code .item_code_control.active {
    top: 6px;
    width: 60px;
    height: 30px;
    line-height: 30px;
    background: #c53833;
    color: #fff;
    text-align: center;
    border-radius: 5px;
}

.main_register .main_container .main_form .item_code .item_code_control.active.disable {
    cursor: no-drop;
}

.main_register .main_container .main_form .item_control {
    margin-top: 12px;
    font-size: 14px;
    color: #c5c5c5;
}

.main_register .main_container .main_form .item_control .active {
    color: #c53833;
}

.main_register .main_container .main_form .item_btn {
    margin-top: 36px;
}

.main_register .main_container .main_form .item_btn button {
    width: 100%;
    height: 42px;
    background: #c53833;
    font-size: 16px;
    color: #ffffff;
    cursor: pointer;
}

/* main_register END */
/* find_password START */
.find_password {
    background: #f4f4f4;
    padding: 54px;
    height: auto;
}

.find_password .main_container {
    width: 100%;
    height: 500px;
    padding: 0;
    padding-top: 38px;
}

.find_password .main_container .main_container_title {
    font-size: 20px;
}

.find_password .main_container .step_list {
    width: 600px;
    height: 6px;
    background: #cfcccd;
    border-radius: 3px;
    margin: 35px auto 0;
    text-align: center;
    position: relative;
}

.find_password .main_container .step_list .step_list_item {
    position: relative;
    z-index: 10;
}

.find_password .main_container .step_list .step_list_item .picture_icon {
    width: 24px;
    height: 24px;
    background: #cfcccd;
    position: absolute;
    border-radius: 50%;
    left: 0;
    right: 0;
    top: -9px;
    margin: 0 auto;
    line-height: 24px;
    font-size: 14px;
    color: #fff;
    font-weight: bold;
    -o-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.find_password .main_container .step_list .step_list_item .explain {
    font-size: 14px;
    color: #cfcccd;
    margin-top: 22px;
    -o-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.find_password .main_container .step_list .step_list_item.active .picture_icon {
    background: #c53833;
}

.find_password .main_container .step_list .step_list_item.active .explain {
    color: #c53833;
}

.find_password .main_container .step_list .step_list_item_active {
    -o-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    position: absolute;
    width: 200px;
    height: 100%;
    background: #c53833;
    border-radius: 3px;
    top: 0;
    left: 0px;
}

.find_password .main_container .main_form {
    padding-top: 83px;
    width: 366px;
    margin: 0 auto;
}

.find_password .main_container .main_form .main_form_item {
    display: none;
}

.find_password .main_container .main_form .main_form_item.active {
    display: block;
}

.find_password .main_container .main_form .item_btn {
    margin-top: 40px;
}

.find_password .main_container .main_form .item_btn.three_step_btn {
    display: none;
}

.find_password .main_container .main_form .three_step {
    padding-top: 20px;
    text-align: center;
}

.find_password .main_container .main_form .three_step .picture_icon {
    width: 98px;
    height: 98px;
    border-radius: 50%;
    line-height: 92px;
    color: #c53833;
    font-size: 56px;
    border: solid 3px #c53833;
    margin: 0 auto;
}

.find_password .main_container .main_form .three_step .explain {
    font-size: 16px;
    color: #666666;
    margin-top: 16px;
}

.find_password .main_container .main_form .three_step .three_step_link {
    width: 180px;
    height: 42px;
    background: #c53833;
    line-height: 42px;
    font-size: 16px;
    color: #ffffff;
    margin: 55px auto 0;
}

/* find_password END */
/* download_templet START */
.download_templet {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    z-index: -1;
    visibility: hidden;
    -o-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.download_templet.active {
    opacity: 1;
    z-index: 51;
    visibility: visible;
}

.download_templet.active .center {
    -o-transform: translateZ(0) scale(1);
    -moz-transform: translateZ(0) scale(1);
    -webkit-transform: translateZ(0) scale(1);
    transform: translateZ(0) scale(1);
}

.download_templet .center {
    width: 842px;
    background: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 40px;
    padding-top: 35px;
    border-radius: 10px;
    -o-transform: translateZ(0) scale(0);
    -moz-transform: translateZ(0) scale(0);
    -webkit-transform: translateZ(0) scale(0);
    transform: translateZ(0) scale(0);
    -o-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.download_templet .center>.close {
    position: absolute;
    top: 20px;
    right: 22px;
    font-size: 14px;
    color: #757575;
    -o-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.download_templet .center>.close:hover {
    color: #c53833;
}

.download_templet .center .download_templet_title {
    font-size: 22px;
    color: #444444;
    margin-bottom: 25px;
}

.download_templet .center .line {
    height: 1px;
    background: #eee;
}

.download_templet .center .download_templet_btn {
    width: 182px;
    height: 54px;
    border-radius: 10px;
    background: #c53833;
    line-height: 54px;
    color: #fff;
    font-size: 18px;
    margin: 45px auto 0;
}

.download_templet .center .download_templet_content {
    font-size: 16px;
    line-height: 32px;
    color: #666666;
    margin-top: 20px;
}

.download_templet .center .download_templet_content span {
    color: #c53833;
}

.download_templet .center .download_templet_list {
    margin-top: 30px;
    margin-bottom: 50px;
}

.download_templet .center .download_templet_list .item {
    width: 290px;
    height: 180px;
    border-radius: 10px;
    border: solid 1px #dcdcdc;
    margin: 0 50px;
    overflow: hidden;
    background: #fff;
    position: relative;
    -webkit-transition: border-color 0.3s;
    transition: border-color 0.3s;
    cursor: pointer;
}

.download_templet .center .download_templet_list .item_title {
    width: 100px;
    font-size: 16px;
    line-height: 26px;
    color: #ffffff;
    background: #d2d2d2;
    position: absolute;
    left: -32px;
    top: 8px;
    -webkit-transform: rotateZ(-45deg);
    transform: rotateZ(-45deg);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.download_templet .center .download_templet_list .item_explain {
    padding-top: 40px;
}

.download_templet .center .download_templet_list .item_explain_title {
    font-size: 16px;
    color: #444444;
}

.download_templet .center .download_templet_list .item_explain_price {
    font-size: 14px;
    margin-top: 7px;
    color: #888888;
}

.download_templet .center .download_templet_list .item_explain_price .active {
    font-size: 22px;
    color: #c53833;
    margin-right: 5px;
    transform: translateY(2px);
}

.download_templet .center .download_templet_list .line {
    width: 190px;
    margin: 10px auto 0;
}

.download_templet .center .download_templet_list .item_explain_content {
    font-size: 14px;
    margin-top: 10px;
    color: #888888;
}

.download_templet .center .download_templet_list .item_icon {
    background: #c53833;
    font-size: 18px;
    color: #fff;
    position: absolute;
    bottom: -8px;
    right: -45px;
    width: 100px;
    height: 30px;
    -webkit-transform: rotateZ(-40deg);
    transform: rotateZ(-40deg);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.download_templet .center .download_templet_list .item_icon .iconfont {
    -webkit-transform: rotateZ(40deg) translate(-4px, -2px);
    transform: rotateZ(40deg) translate(-4px, -2px);
}

.download_templet .center .download_templet_list .item.active {
    border: solid 4px #c53833;
}

.download_templet .center .download_templet_list .item.active .item_title {
    background: #c53833;
}

.download_templet .center .download_templet_list .item.active .item_icon {
    opacity: 1;
    visibility: visible;
}

/* download_templet END */
.sign-tishi {
    width: 100%;
    height: 15px;
    padding-left: 20px;
    position: relative;
    font-size: 12px;
    color: #f64a4a;
    line-height: 15px;
    margin-bottom: 6px;
}

.sign-tishi.hidevs {
    visibility: hidden;
    opacity: 1;
}

.sign-tishi:after {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #f64a4a;
    position: absolute;
    top: 50%;
    left: -5px;
    transform: translateY(-50%) scale(.5);
    content: '!';
    font-size: 16px;
    color: #f64a4a;
    line-height: 20px;
    text-align: center;
    font-weight: bold;
}







/* 2020.03.31 lz 新增 */
/* aside START */
.aside {
    position: fixed;
    z-index: 10000;
    top: 50%;
    right: 0;
    width: 60px;
    margin-top: -120px;
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.aside .item {
    height: 60px;
    color: #fff;
    background: #201f25;
    text-align: center;
    position: relative;
    text-align: center;
    -webkit-transition: all 0.35s;
    transition: all 0.35s;
    /* display: flex; */
    /* align-items: center; */
    /* justify-content: center; */
}

.aside .item:first-child {
    border-radius: 5px 0 0 0;
}

.aside .item:last-child {
    border-radius: 0 0 0 5px;
}

.aside .item:hover {
    background: #c53833;
    border-radius: 0;
}

.aside .item:not(:first-child) {
    margin-top: 1px;
}

.aside .item .item_container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aside .item .item_icon {
    font-size: 26px;
}

.aside .item:hover .item_popup {
    opacity: 1;
    z-index: 10;
    right: 61px;
    visibility: visible;
}

.aside .item .item_popup {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    line-height: 60px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    opacity: 0;
    z-index: -1;
    right: 80px;
    visibility: hidden;
}

.aside .item .item_popup_explain {
    padding: 0 15px;
    font-size: 16px;
    letter-spacing: 1px;
    background: #c53833;
}

.aside .item .item_picture {
    width: 120px;
    padding: 4px;
    background: #fff;
    border: 1px solid rgba(50, 50, 50, 0.35);
    margin-top: -30px;
    margin-right: 2px;
}

.aside .item .item_picture .picture_container {
    height: 112px;
}
.m-right-buttom {
	display: none;
}
.pc-aslide {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: #fff;
	z-index: 9999;
	opacity: 0;
	pointer-events: none;
	visibility: hidden;
	transition: ease-in-out .6s;
}
@media(max-width:1199px){
    .news .main1 .main_container .paging{
        margin-top:45px;
    }
    .index .main2 .list{
        grid-template-columns:1fr 1fr;
    }
    .index .main .title h2{
        font-size:28px;
    }

.pc-aslide.active {
	opacity: 1;
	pointer-events: inherit;
	visibility: visible;
}

.pc-aslide-content {
	position: absolute;
	right: 0;
	top: 0;
	background-color: rgba(255, 255, 255, 1);
	height: 100%;
	width: 829px;
	max-width: 100%;
	padding: 48px 50px 50px 77px;
	display: flex;
	flex-direction: column;
	transition: ease-in-out .6s;
	transform: translateX(120%);
	opacity: 0;
}

.pc-aslide.active .pc-aslide-content {
	transform: translateX(0);
	transition: ease-in-out .6s .3s;
	opacity: 1;
}

.pc-aslide-content-t {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.pc-aslide-content-t .close {
	color: rgba(153, 153, 153, 1);
	transition: all .6s;
	cursor: pointer;
}

.pc-aslide-content-c .list .li-des a:hover,
.pc-aslide-content-c .list .li-title:hover,
.pc-aslide-content-c .list .li-title:hover a,
.pc-aslide-content-t .close:hover {
	color: rgba(245, 130, 31, 1);
}

.pc-aslide-content-t .close .iconfont {
	font-size: 30px;
}

.pc-aslide-content-c {
	text-align: center;
	margin-top: 100px;
	flex: 1;
	overflow: auto;
}

.pc-aslide-content-c .list {
	display: inline-block;
	min-width: 300px;
}

.pc-aslide-content-c .list li {
	opacity: 0;
	transition: all 1s ease;
	transform: translateY(40px);
}

.pc-aslide.active .pc-aslide-content-c .list li {
	opacity: 1;
	transform: translateY(0);
}

.pc-aslide-content-c .list li:not(:last-child) {
	margin-bottom: 50px;
}

.pc-aslide-content-c .list .li-title {
	font-size: 24px;
	font-family: Microsoft YaHei;
	font-weight: 300;
	color: #333333;
	line-height: 1;
	transition: all .6s;
	display: flex;
	justify-content: space-between;
}

.pc-aslide-content-c .list .li-title {
	color: #333333;
}

.pc-aslide-content-c .list .li-title a {
	color: #333333;
}

.pc-aslide-content-c .list .li-title .iconfont::before {
	font-size: 20px;
	display: block;
}

.pc-aslide-content-c .list li.active .li-title .iconfont {
	transform: rotate(90deg);
}

.pc-aslide-content-c .list .li-des {
	border-top: 1px solid rgba(230, 230, 230, 1);
	margin-top: 20px;
	padding-top: 20px;
	display: none;
}

.pc-aslide-content-c .list .li-des a {
	font-size: 18px;
	font-family: Microsoft YaHei;
	font-weight: 300;
	color: #666666;
	display: block;
	line-height: 2.5;
	transition: all .6s;
	text-align: left;
}
.pc-aslide-content-c .list .li-title {
		font-size: 20px;
	}

	.pc-aslide-content-c .list li:not(:last-child) {
		margin-bottom: 35px;
	}

	.pc-aslide-content-c .list .li-title {
		font-size: 18px;
	}

	.pc-aslide-content-c .list .li-des a {
		font-size: 16px;
		line-height: 2;
	}
    .header .nav .item{
        margin: 0 18px;
    }
    .header .logo{
        height:60px;
    }
    .header .nav{
        margin-left:30px;
    }
    .m-right-buttom .in {
		height: 30px;
		width: 19px;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.m-right-buttom span,
	.m-right-buttom span:after,
	.m-right-buttom span:before {
		display: block;
		height: 2px;
		width: 19px;
		background: RGBA(109, 110, 111, 1);
		transition: top .2s linear
	}

	.header.active .m-right-buttom span,
	.header.active .m-right-buttom span:after,
	.header.active .m-right-buttom span:before {
		background: RGBA(109, 110, 111, 1);
	}

	.m-right-buttom span {
		transition: all .2s .4s ease, background 0s;
		position: relative
	}

	.m-right-buttom span:after,
	.m-right-buttom span:before {
		position: absolute;
		left: 0;
		content: '';
		transform-origin: 50% 50%;
		transition: top .2s .4s ease, transform .4s ease;
		height: 2px
	}

	.m-right-buttom span:before {
		top: 6px
	}

	.m-right-buttom span:after {
		top: -6px
	}

	.m-right-buttom.active span,
	.header.active .m-right-buttom.active span {
		transition: all .2s 0s ease;
		background: 0 0
	}

	.m-right-buttom.active span:after,
	.m-right-buttom.active span:before {
		transition: top .2s ease, transform .2s .3s ease;
		top: 0;
		width: 19px
	}

	.m-right-buttom.active span:before {
		transform: rotate3d(0, 0, 1, 45deg)
	}

	.m-right-buttom.active span:after {
		transform: rotate3d(0, 0, 1, -45deg)
	}
    .advertising .main2 .paging{
        margin-top:45px;
    }
    .advertising_details .main1 .advertising_details_info ul{
        flex-wrap:wrap;
        padding:25px;
        gap: 15px;
    }
    .advertising_details .main1 .advertising_details_info ul li{
        flex:none;
        width:100%;
        justify-content: flex-start;
    }
    .advertising_details .main1 .advertising_details_title{
        font-size:24px;
    }
    .news .main1{
        padding-bottom:75px
    }
    .contact .main1 .title h2,
    .about .main1 .title h2,
    .news .main1 .title h2{
        font-size:28px;
    }
    
}
@media (max-width:1024px){
    .service .main1{
        padding-bottom:65px;
    }
    .service .main1 .center{
        flex-direction:column;
        /* gap:20px; */
    }
    .service .main1 .main_left{
        width:100%;
    }
    .service .main1 .main_right{
        margin-left:0;
        padding:40px 30px;
        margin-top:20px;
    }
    .contact .main1 .title h2,
    .about .main1 .title h2,
    .news .main1 .title h2{
        font-size:26px;
    }
     .news .main1 .main_container .paging{
        margin-top:40px;
    }
    .news .main1{
        padding-bottom:65px
    }
    .news .main1 .main_container .list{
        grid-template-columns:1fr 1fr;
    }
    .advertising_details .main1 .advertising_details_title{
        font-size:22px;
    }
    .advertising .main2 .list .item{
        width:100%;
    }
    .car_type_details .main1>.center{
        flex-direction:column;
        align-items:flex-end;
        gap: 15px;
    }
    .car_type_details .main1>.center .left{
        width:100%;
    }
    .index .main .main_container{
        padding-top: 40px;
    }
    .index .main3 .left .bottom .adorn{
        height:34px;
    }
    .index .main3 .left .bottom .explain_link{
        width:46px;
        height:46px;
        line-height:46px;
        display:flex;
        align-item:center;
        justify-content:center
    }
     .index .main3 .left .bottom .explain_link .iconfont{
         font-size:20px;
     }
    .index .main .list{
        grid-template-columns: repeat(3, 1fr);
    }
    .m-right-buttom {
		display: block;
		cursor: pointer;
		user-select: none;
	}
    .header .nav{
        display:none;
    }
    .index .main .title h2{
        font-size:26px;
    }
    .index .main{
        padding:65px 0 60px;
    }
    .index .main3>.center{
        flex-direction:column;
        gap: 30px;
    }
    .index .main3 .right,
    .index .main3 .left{
        width:100%;
    }
    .car_type_details .main2 .item .main_container ul{
     display:grid;
        grid-template-columns:1fr 1fr;
        gap:0 20px;
    }
    .car_type_details .main2 .item .main_container ul li:nth-child(3n-2),
    .car_type_details .main2 .item .main_container ul li:nth-child(3n),
    .car_type_details .main2 .item .main_container ul li:nth-child(3n-1),
    .car_type_details .main2 .item .main_container ul li{
        width:100%;
    }
    .advertising .main2 .paging{
        margin-top:40px;
    }
    .advertising .main2{
        padding-bottom:65px;
    }
    .about .main1{
        padding-bottom:65px;
    }
    .contact .main1{
        padding-bottom:65px;
    }
}
@media(max-width:768px){
    .service .main1{
        padding-bottom:55px;
    }
    .contact .main1{
        padding-bottom:55px;
    }
    .about .main1{
        padding-bottom:55px;
    }
    .news_details .main1{
        padding-bottom:55px;
    }
    .contact .main1 .title h2,
    .about .main1 .title h2,
    .news .main1 .title h2{
        font-size:24px;
    }
     .news .main1 .main_container .paging{
        margin-top:30px;
    }
    .news .main1{
        padding-bottom:55px
    }
    .advertising_details .main1{
        padding-bottom:55px;
    }
    .advertising_details .main1 .advertising_details_title{
        font-size:20px;
    }
    .car_type_details .main2 .item .main_container{
        padding:15px 20px;
    }
    .car_type_details .main2 .item .main_container ul{
        grid-template-columns:1fr;
    }
    .car_type_details .main1>.center .left{
        flex-direction:column;
        align-items:flex-start;
        gap:10px;
    }
    .car_type_details .main1 .left .left_list{
        flex-wrap:wrap;
        gap:15px;
    }
    .car_type_details .main1 .left .left_list .item{
        margin-left:0;
    }
    .index .main .main_container{
        padding-top:30px;
    }
    .index .main .title h2{
        font-size:24px;
    }
    .banner_container .swiper-button-prev,
    .banner_container .swiper-button-next{
        display:none;
    }
    .header{
        padding:6px 0;
    }
    .header .logo{
        height:50px;
    }
    .public .left{
        display:none;
    }
    .pc-aslide-content {
		background-color: transparent;
	}

	.pc-aslide {
		/* z-index: 99; */
		/* background-color: transparent; */
	}

	.pc-aslide::before,
	.pc-aslide::after {
		position: absolute;
		content: "";
		width: 100vw;
		height: 100vw;
		right: 50vw;
		bottom: -50vw;
		background-color: rgba(0, 0, 0, 1);
		border-radius: 0 50% 0 0;
		transform-origin: center;
		transform: scale(0);
		transition: opacity .7s, transform 1.5s;
	}

	.pc-aslide::after {
		background-color: #fff;
		right: auto;
		bottom: auto;
		left: 50vw;
		top: -50vw;
		border-radius: 0 0 0 50%;
		transition: opacity .7s, transform 1s;
	}

	.pc-aslide.active::after,
	.pc-aslide.active::before {
		transform: scale(5);
		opacity: 1;
	}

	.pc-aslide-content-t {
		display: none;
	}

	.pc-aslide-content {
		padding: 60px 3%;
	}

	.pc-aslide-content {
		transform: translateX(0);
		z-index: 4;
	}
    .index .main .list{
        grid-template-columns: 1fr 1fr;
        gap: 25px 20px;
    }
    .index .main{
        padding:55px 0;
    }
    .crumbs{
        line-height:40px;
        height:auto;
    }
    .advertising .main2 .paging{
        margin-top:30px;
    }
    .advertising .main2{
        padding-bottom:55px;
    }
    .news .main1 .main_container .list{
        gap:0 25px
    }
    .news_details .main1 .title{
        font-size:22px;
    }
    .aside{
        width:50px;
    }
    .aside .item .item_popup{
        line-height:50px;
        right: 60px;
    }
    .aside .item{
        height:50px;
    }
    .aside .item .item_icon .iconfont{
        font-size:24px;
    }
    
    .aside .item .item_picture{
        width:100px;
    }
    .aside .item .item_picture .picture_container{
        height:93px;
    }
    .about .main1 .main_container img{
        margin-top:25px
    }
    .contact .main1 .main_container{
        padding-top:30px;
        flex-direction:column;
        gap:30px
    }
    .contact .main1 .main_container .main_container_left .line,
    .contact .main1 .main_container .main_container_left{
        width:100%;
    }
    .contact .main1 .main_container .main_container_left .line{
        margin-top:0;
    }
    .contact .main1 .main_container .main_container_left{
        padding-right:0;
    }
    .service .main1 .main_right{
        padding:30px;
    }
}
@media (max-width:500px){
    .service .main1 .main_left,
    .service .main1 .main_right{
        padding:23px;
    }
    .service .main1{
        padding:45px 0;
    }
    .contact .main1 .main_container{
        padding-top: 25px;
    }
    .contact .main1{
        padding: 45px 0px;
    }
    .about .main1 .main_container img{
        margin-top:20px
    }
    .aside .item .item_picture{
        width:90px;
    }
    .aside .item .item_picture .picture_container{
        height:83px;
    }
    .aside .item .item_popup{
        line-height:40px;
        right: 50px;
    }
    .aside{
        width:40px;
    }
    .aside .item{
        height:40px;
    }
    .aside .item .item_icon .iconfont{
        font-size:16px;
    }
    .about .main1{
        padding:45px 0;
    }
    .news_details .main1{
        padding:45px 0;
    }
    .news_details .main1 .title{
        font-size:20px;
    }
    .contact .main1 .title h2,
    .about .main1 .title h2,
    .news .main1 .title h2{
        font-size:22px;
    }
     .news .main1 .main_container .paging{
        margin-top:25px;
    }
    .news .main1 .main_container .list{
        grid-template-columns:1fr;
    }
    .news .main1 .main_container{
        padding-top:0;
    }
    .news .main1{
        padding: 45px 0;
    }
    .advertising_details .main1 .advertising_details_info{
        margin-top:25px;
    }
     .advertising_details .main1{
        padding-bottom:45px;
    }
    .advertising_details .main1 .advertising_details_info ul .picture_icon{
        width:32px;
        height:32px;
        line-height:32px;
    }
    .advertising_details .main1 .advertising_details_info ul .picture_icon .iconfont{
        font-size:16px;
    }
    .advertising .main2 .paging{
        margin-top:25px;
    }
    .advertising .main2{
        padding-bottom:45px;
    }
    .advertising .main2 .list .item{
        margin-top:25px;
    }
    .advertising .main2 .list .item .explain .explain_title{
        font-size:16px;
    }
    .advertising .main2 .list .item .explain{
        width:52%;
        padding-top: 0;
    }
    .advertising .main2 .list .item .explain .explain_info{
        margin:10px 0;
    }
    .index .main3 .left .bottom .adorn{
        height:26px;
    }
    .index .main .main_container{
        padding-top:25px;
    }
    .index .main{
        padding: 45px 0;
    }
    .index .main .title h2{
        font-size:22px;
    }
    .index .main2 .list .item{
        font-size: 14px;
    }
    .header .logo{
        height:40px;
    }
    .pc-aslide-content-c .list {
		min-width: 249px;
	}

	.pc-aslide-content-c .list .li-des {
		padding-top: 15px;
		margin-top: 15px;
	}

	.pc-aslide-content-c .list li:not(:last-child) {
		margin-bottom: 25px;
	}

	.pc-aslide-content-c .list .li-des a {
		font-size: 14px;
		line-height: 2;
	}

	.pc-aslide-content-c .list .li-des a:not(:last-child) {
		margin-bottom: 5px;
	}

	.pc-aslide-content-c .list .li-title {
		font-size: 16px;
	}

	.pc-aslide-content-t {
		height: 50px;
	}

	.pc-aslide-content-t .logo img {
		width: 100px;
	}
    .advertising_details .main1 .advertising_details_info ul{
        padding:20px;
    }
    .advertising_details .main1 .advertising_details_info ul .explain{
        margin-left:10px
    }
}
