* {
    /* margin: 0;
    padding: 0; */
    font-weight: 400;
    box-sizing: border-box;
}

body {
    font-family: Microsoft YaHei, Microsoft YaHei;
    width: 100%;
    min-width: 1402px;
    margin: 0;
    padding: 0;
}

img {
    display: block;
    border: none;
}

a {
    /*outline: medium none;*/
    text-decoration: none;
    /*background: transparent;*/
    /*star: expression(this.onFocus=this.blur())*/
    cursor: pointer;
}

.main p {
    margin: 0;
}

/* ul {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
} */

.type-area {
    width: 1200px;
    margin: 0 auto;
}

.overflow-h{
    overflow: hidden;
}

.h1 {
    font-weight: bold;
    font-size: 36px;
    color: #2B3041;
}

.pointer {
    cursor: pointer;
}

.w-50{
    width: 50%;
}
.w-33{
    width: 33%;
}
.w-25{
    width: 25%;
}

.flex {
    display: flex;
}

.flex-a-c {
    align-items: center;
}

.flex-a-s{
    align-items: flex-start;
}

.flex-j-c {
    justify-content: center;
}

.flex-j-start {
    justify-content: flex-start;
}

.flex-j-end {
    justify-content: flex-end;
}

.flex-j-s-b {
    justify-content: space-between;
}

.flex-j-s-a {
    justify-content: space-around;
}

.flex-j-s-e {
    justify-content: space-evenly;
}

.single-line-text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.multi-line-text-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* 显示最大2行 */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.multi-line-text-4 {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    /* 显示最大4行 */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.el-table__header>thead>tr>th.small-padding-th>.cell{
    padding: 0 5px !important;
}
.el-table__header>thead>tr>th.no-padding-cell>.cell{
    padding: 0 !important;
}

/* 顶部导航 */
header {
    width: 100%;
    /* height: 690px; */
    position: relative;
}

.header-wrap {
    height: 100px;
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 2;
    transform: translateX(-50%);

}

.header-wrap .nav {
    width: 900px;
    height: 36px;
    margin: 32px 0 0;
    float: left;
}

.header-wrap .nav .nav-item {
    height: 100%;
    float: left;
    line-height: 36px;
    position: relative;
    /* margin: 0 12px; */
    margin-right: 30px;
    /* background-color: red; */
}

.header-wrap .nav .nav-item:hover .nav-text img {
    transform: rotate(180deg);

}

.header-wrap .nav .nav-item .nav-text {
    padding: 0 12px;
    height: 100%;
}

.header-wrap .nav .nav-item .nav-text a {
    float: left;
    font-weight: bold;
    font-size: 18px;
    color: #FFFFFF;
}
.header-wrap .nav .nav-item .nav-active a{
    /* color: #0079ff; */
}
.header-wrap .nav .nav-item:hover .nav-text a{
    /* color: #0079ff; */
}
.header-wrap .nav .nav-item .nav-text span {
    float: left;
    font-weight: bold;
    font-size: 18px;
    color: #FFFFFF;
}
.header-wrap .nav .nav-item .nav-active span{
    /* color: #0079ff; */
}
.header-wrap .nav .nav-item:hover .nav-text span{
    /* color: #0079ff; */
}
.header-wrap .nav .nav-item .nav-text img {
    width: 12px;
    height: 12px;
    float: left;
    margin: 12px 0 12px 10px;
    transition: all .3s;
}

.header-wrap .nav .nav-item ul {
    width: 132px;
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
}

.header-wrap .nav .nav-item ul.open{
    display: block;
}
.header-wrap .nav .nav-item ul li {
    height: 50px;
    background: #FFFFFF;
    text-align: center;
}
.header-wrap .nav .nav-item ul li:first-child{
    border-radius: 4px 4px 0 0;
    box-shadow: inset 0px -1px 0px 0px rgba(0, 0, 0, 0.25);
}
.header-wrap .nav .nav-item ul li:last-child{
    border-radius: 0 0 4px 4px;
}
.header-wrap .nav .nav-item ul li:hover{
    background: linear-gradient(90deg, #0074FF 0%, #039EFF 100%);
    box-shadow: none;
}
.header-wrap .nav .nav-item ul li:hover a{
    color: #FFFFFF;
}
.header-wrap .nav .nav-item ul li a{
    display: block;
    font-size: 16px;
    color: #050B20;
    line-height: 50px;
    padding: 0 12px;
}
.header-wrap .phone-wrap {
    float: right;
    height: 36px;
    margin: 32px 0 0;
}

.header-wrap .login-wrap {
    float: right;
    height: 36px;
    margin: 32px 0 0 32px;
}

.header-wrap .login-wrap .register {
    font-weight: bold;
    font-size: 18px;
    color: #FFFFFF;
    line-height: 36px;
}

.header-wrap .login-wrap .login {
    width: 100px;
    height: 36px;
    border-radius: 0px 0px 0px 0px;
    border: 1px solid #FFFFFF;
    margin-left: 30px;
    font-weight: bold;
    font-size: 18px;
    color: #FFFFFF;
    text-align: center;
    line-height: 36px;
}

/* 底部 */

footer {
    width: 100%;
    background: #050B20;
    padding-top: 60px;
}

.footer-content-wrap {
    width: 1340px;
    margin: 0 auto;
}

.footer-content-wrap .footer-left {
    flex: 1;
}

.footer-content-wrap .footer-left .platform-name {
    height: 30px;
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;
    line-height: 30px;
    letter-spacing: 3px;
    margin-bottom: 47px;
}

.footer-content-wrap .footer-left .contacts-title {
    height: 21px;
    font-weight: bold;
    font-size: 16px;
    color: #FFFFFF;
    line-height: 19px;
    margin-bottom: 20px;
}

.footer-content-wrap .footer-left .contacts-content,
.footer-content-wrap .footer-left .address-info {
    padding-bottom: 40px;
}
.footer-content-wrap .footer-left .address-info .address-item{
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
} 
.footer-content-wrap .footer-left .address-info .address-item:last-child{
    margin: 0;
}

.footer-content-wrap .footer-left .contacts-content .contacts-item {
    margin-right: 20px;
}
.footer-content-wrap .footer-left .contacts-content .contacts-item:nth-child(3){
    margin-right: 0px;
}

.footer-content-wrap .footer-left .contacts-content .contacts-item .post {
    margin-bottom: 20px;
    font-weight: 400;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 16px;

}

.footer-content-wrap .footer-left .contacts-content .contacts-item .phone {
    margin-bottom: 18px;
    font-weight: 400;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 16px;
}

.footer-content-wrap .footer-left .contacts-content .contacts-item .email {
    font-weight: 400;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 16px;
}

.footer-content-wrap .footer-right {
    min-width: 452px;
}

.footer-content-wrap .footer-right .or-code-item {
    max-width: 140px;
}
.footer-content-wrap .footer-right .or-code-item:nth-child(2){
    /* margin: 0 30px; */
}

.footer-content-wrap .footer-right .or-code-item .or-code-img {
    width: 108px;
    height: 108px;
    margin: 0 auto;
}

.footer-content-wrap .footer-right .or-code-item .or-code-img>img {
    width: 100%;
    height: 100%;
}

.footer-content-wrap .footer-right .or-code-item .or-code-text {
    height: 36px;
    margin-top: 24px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 16px;
    text-align: center;
}

.footer-bottom {
    width: 1340px;
    margin: 0 auto;
    height: 80px;
    box-shadow: inset 0px 1px 0px 0px rgba(255, 255, 255, 0.2);
    border-radius: 0px 0px 0px 0px;
}

.footer-bottom .label-box {
    font-weight: 400;
    font-size: 14px;
    color: #FFFFFF;
}

.footer-bottom .text-box {
    font-weight: 400;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}
.footer-bottom .text-box a {
    font-weight: 400;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}
.footer-bottom .text-box a:hover{
    color: #fff;
}

.footer-bottom .line {
    font-weight: 400;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 36px;
}

.filing-information a{
    font-weight: 400;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-left: 60px;
}
.filing-information a:hover{
    color: #fff;
}

.icon-phone {
    background: url('../../xny-images/index/phone.svg') center center / 100% no-repeat;
    width: 16px;
    height: 16px;
    margin-right: 6px;
}

.icon-mail {
    background: url('../../xny-images/index/Mail.svg') center center / 100% no-repeat;
    width: 16px;
    height: 16px;
    margin-right: 6px;
}
/* 回到顶部按钮 */
#back-to-top{
    width: 40px;
    height: 40px;
    position: fixed;
    right: -100px;
    bottom: 40px;
    font-size: 20px;
    color: #fff;
    background-color: #405FF2;
    border-radius: 50%;
    cursor: pointer;
    transition: right .3s;
    transform: rotate(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
}
#back-to-top._show{
    right: 40px;
}
#back-to-top:hover{
    background-color: rgba(0, 0, 0, 0.8);
}
.el-icon-arrow-down{
    transform: rotate(0deg);
    transition: transform .3s;
}
.el-icon-arrow-down._rotate{
    transform: rotate(180deg);
}
.el-checkbox{
    margin-right: 20px !important;
}
.el-checkbox .el-checkbox__label{
    padding-left: 5px !important;
}

/* 右侧悬浮二维码 */
.or-code-fixed-wrap{
    position: fixed;
    right: 10px;
    top: 440px;
    z-index: 99;
}
.or-code-fixed-wrap .trigger-btn{
    width: 40px;
    font-size: 16px;
    padding: 5px 10px;
    background: linear-gradient(-270deg, #0074FF 0%, #039EFF 100%);
    text-align: center;
    color: #FFFFFF;
    cursor: pointer;
    box-sizing: border-box;
    border-radius: 4px;
}
.or-code-fixed-wrap ._popup-wrap{
    border: 1px solid #d9d9d9;
    position: absolute;
    right: 50px;
    top: 50%;
    transform-origin: right center;
    transform: translateY(-50%) scale(0);
    background-color: #FFFFFF;
    border-radius: 4px;
    padding: 10px 0;
    transition: all .3s;
} 
.or-code-fixed-wrap ._popup-wrap._show{
    transform: translateY(-50%) scale(1);
}
.or-code-fixed-wrap:hover ._popup-wrap{
    /* transform: translateY(-50%) scale(1); */
}
.or-code-fixed-wrap ._popup-wrap ._popup-item{
    width: 100px;
    padding: 0 10px;
}
.or-code-fixed-wrap ._popup-wrap ._popup-item:nth-child(2){
    margin: 10px 0;
}
.or-code-fixed-wrap ._popup-wrap ._popup-img{
    width: 80px;
    height: 80px;
}
.or-code-fixed-wrap ._popup-wrap ._popup-img img{
    width: 80px;
    height: 80px;
}
.or-code-fixed-wrap ._popup-wrap ._popup-text{
    color: rgba(5, 11, 32, 0.85);
    font-size: 12px;
    text-align: center;
    margin-top: 5px;
}
.or-code-fixed-wrap ._popup-wrap::before{
    position: absolute;
    top: 50%;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 10px solid #d9d9d9;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    content: '';
}
.or-code-fixed-wrap ._popup-wrap::after{
    position: absolute;
    top: 50%;
    right: -9px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 9px solid #FFFFFF;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    content: '';
}


/* 测评车型和评价结果 主体内容左侧表单及右侧标题部分 css */
.main {
    width: 100%;
    background: #F9FBFC;
}

.main-content {
    width: 1200px;
    min-width: 1200px;
    margin: 0 auto;
    min-height: 800px;
}

.main-left {
    width: 230px;
    float: left;
    position: sticky;
    top: 0;
}

.main-left-title {
    width: 100%;
    height: 120px;
    position: relative;
}

.main-left-title p {
    height: 32px;
    font-weight: 400;
    font-size: 24px;
    color: rgba(5, 11, 32, 0.85);
    line-height: 32px;
    position: absolute;
    top: 68px;
    left: 40px;
}

.main-left-title img {
    width: 100%;
    height: 100%;
}

.main-left-nav {
    width: 100%;
    height: 210px;
    background: #EFF2F6;
    padding-top: 30px;
    margin-bottom: 40px;
}

.main-left-nav>div {
    width: 100%;
    height: 46px;
    padding: 0 40px;
    border-right: 4px solid #EFF2F6;
    line-height: 46px;
}

.main-left-nav>div:hover {
    background: #E8EDF2;
}

.main-left-nav>div:hover {
    background: #E8EDF2;
}

.main-left-nav .nav-active {
    background: #E8EDF2;
    border-right: 4px solid #405FF2;
}

.main-left-nav .nav-active>a {
    font-weight: bold;
    color: #405FF2;
}

.main-left-nav>div>a {
    display: block;
    font-size: 15px;
    color: #686F88;
}

.main-left-form {
    padding: 0 20px;
}

.main-left-form .form-title {
    height: 24px;
    font-weight: 400;
    font-size: 18px;
    color: rgba(5, 11, 32, 0.85);
    line-height: 24px;
    margin-bottom: 8px;
}


.main-left-form .form-input-wrap {
    margin-top: 12px;
}

.main-left-form .search_btn {
    width: 190px;
    height: 40px;
    background: #FFFFFF;
    box-shadow: 0px 0px 25px 0px rgba(64, 95, 242, 0.1);
    border: 1px solid #405FF2;
    font-weight: bold;
    font-size: 15px;
    color: #405FF2;
    letter-spacing: 1em;
    text-align: center;
    line-height: 40px;
    margin: 20px 0;
}

.main-left-form .all_btn {
    width: 190px;
    height: 40px;
    background: #405FF2;
    box-shadow: 0px 0px 25px 0px rgba(64, 95, 242, 0.1);
    font-weight: bold;
    font-size: 15px;
    color: #FFFFFF;
    text-align: center;
    line-height: 40px;
    margin-bottom: 60px;
}

.main-left-contrast {
    width: 100%;
    margin-bottom: 80px;
}

.main-left-contrast .contrast-title {
    height: 24px;
    font-weight: 400;
    font-size: 18px;
    color: rgba(5, 11, 32, 0.85);
    line-height: 24px;
    margin-bottom: 8px;
    padding: 0 20px;
}

.car-contrast-list {
    width: 100%;
}

.car-contrast-item {
    padding: 16px;
    background: #F9FBFC;
    box-shadow: inset 0px 1px 0px 0px rgba(0, 0, 0, 0.1);
}

.car-contrast-item:last-child {
    box-shadow: inset 0px 1px 0px 0px rgba(0, 0, 0, 0.1), inset 0px -1px 0px 0px rgba(0, 0, 0, 0.1);
}

.car-contrast-item .car-msg {
    font-weight: 400;
    font-size: 14px;
    color: rgba(42, 52, 87, 0.85);
    line-height: 22px;
}

.car-contrast-item i {
    font-size: 14px;
    color: rgba(42, 52, 87, 0.85);
    margin-left: 20px;
}

.car-contrast-item i:hover {
    color: rgba(64, 95, 242, 0.85);
}

.contrast-tabbar {
    padding: 20px;
}

.contrast-tabbar .contrast_btn {
    width: 190px;
    height: 40px;
    background: #405FF2;
    box-shadow: 0px 0px 25px 0px rgba(64, 95, 242, 0.1);
    font-weight: bold;
    font-size: 15px;
    color: #FFFFFF;
    text-align: center;
    line-height: 40px;
    margin-top: 20px;
    margin-bottom: 12px;
}

.contrast-tabbar .reset_bth {
    font-weight: 400;
    font-size: 14px;
    color: rgba(5, 11, 32, 0.4);
    line-height: 22px;
}

.contrast-tabbar .reset_bth:hover {
    color: rgba(64, 95, 242, 0.85);
}

.main-right {
    width: 970px;
    padding: 60px 30px;
    background: #fff;
    margin-left: 230px;
}

.main-right-evaluate,
.main-right-result {
    width: 970px;
    padding: 60px 30px;
    background: #fff;
    margin-left: 230px;
}

.main-right-title {
    width: 100%;
    padding-bottom: 20px;
    border-bottom: 1px solid #E8EDF2;
}

.main-right-title-icon {
    width: 44px;
    height: 44px;
}

.main-right-title-icon img {
    width: 100%;
    height: 100%;
}

.main-right-title-wrap {
    flex: 1;
}

.main-right-title-content {
    padding: 6px 0 6px 0;
    font-weight: 400;
    font-size: 24px;
    color: rgba(5, 11, 32, 0.85);
    line-height: 28px;
}

.main-right-title-msg span {
    font-size: 12px;
    color: #A0A4B4;
    line-height: 16px;
}

.el-tooltip.query-icon {
    width: 14px !important;
    height: 14px !important;
    margin: 0 0 0 4px !important;
}