﻿@charset "utf-8";
.main {
    background-repeat: no-repeat;
    background-position: center top;
    min-height: 800px;
    padding-top: 160px;
}

.main-tit span {
    display: inline-block;
    position: relative;
    font-size: 36px;
    color: #383838;
    line-height: 1.75;
}

.main-tit span:after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #ee1d23;
}

.main-tit-sub,
.center-tit-sub {
    font-size: 20px;
    color: #383838;
    line-height: 1.5;
    margin-top: 20px;
    margin-bottom: 35px;
}

.tab-list {
    margin-top: 32px;
}

.tab-list ul {
    display: flex;
    flex-wrap: wrap;
}

.tab-list li {
    width: calc((100% - 60px) / 3);
    margin: 0 30px 30px 0;
    transition: all .3s;
}

.tab-list li:nth-of-type(3n) {
    margin-right: 0;
}

.tab-list a {
    display: block;
}

.tab-list .pic {
    position: relative;
    height: 0;
    padding-top: 68.4%;
}

.tab-list .pic img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.tab-list .tit {
    font-size: 24px;
    color: #565656;
    height: 90px;
    padding: 13px 20px 0;
    line-height: 1.5;
}

.tab-list .txt {
    position: absolute;
    padding: 42px 30px 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    color: #fff;
    opacity: 0;
    z-index: 2;
    transition: all .3s;
}

.tab-list .info {
    font-size: 20px;
    line-height: 1.6;
    z-index: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.tab-list .more {
    font-size: 16px;
    display: inline-block;
    margin-top: 2.625em;
    padding: 0.95em 2.3em;
    border: 1px solid #fff;
}

.tab-list .pic:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 0, 0, .7);
    z-index: 1;
    opacity: 0;
}

.tab-list li:hover .pic::before,
.tab-list li:hover .txt,
.tab-list li.on .pic::before,
.tab-list li.on .txt {
    opacity: 1;
}

.tab-list li:hover .tit,
.tab-list li.on .tit {
    background: #fff;
}

.tab-list li:hover,
.tab-list li.on {
    box-shadow: 0 0 50px rgba(0, 0, 0, .14);
}

.auto-scroll {
    padding: 135px 0 100px;
}

.center-tit {
    text-align: center;
}

.center-tit span {
    display: inline-block;
    position: relative;
    font-size: 36px;
    color: #383838;
    line-height: 1.75;
}

.center-tit span:after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -1em;
    width: 2em;
    height: 2px;
    background: #ee1d23;
}

.small-tab {
    margin-top: 20px;
    overflow: hidden;
    margin-bottom: 15px;
}

.small-tab li {
    float: left;
    margin-right: 28px;
}

.small-tab a {
    display: block;
    font-size: 16px;
    color: #383838;
    line-height: 1.5;
}

.small-tab .cur a {
    color: #ee1d23;
}

.pic-txt .pic {
    width: 580px;
    height: 330px;
}

.pic-txt li {
    display: flex;
    background: #f8f8f8;
    margin-bottom: 40px;
}

.pic-txt .txt {
    flex: 1;
    font-size: 20px;
    color: #484848;
    padding: 2.75em 1.5em 0;
    line-height: 1.8;
}

.pic-txt .pic img {
    display: block;
    width: 100%;
    height: 100%;
}

.pic-txt .name {
    font-size: 24px;
    color: #383838;
    font-weight: bold;
    line-height: 1.4;
}

.pic-txt .info {
    margin-top: 0.6em;
}

.pic-txt .words {
    /* overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical; */
    height: 5.4em;
    overflow-y: auto;
    padding-right: 10px;
    text-align: justify;
}

.pic-txt .words::-webkit-scrollbar {
    width: 4px;
    height: 4px;
    background-color: rgba(146, 146, 146, 0.3);
    border-radius: 2px;
}

.pic-txt .words::-webkit-scrollbar-thumb {
    background-color: rgb(241, 0, 0);
    border-radius: 2px;
}

.fadeInUp50 {
    -webkit-animation-name: fadeInUp50;
    animation-name: fadeInUp50;
}

@keyframes fadeInUp50 {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 50px, 0);
        transform: translate3d(0, 50px, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.fadeInRight50 {
    -webkit-animation-name: fadeInRight50;
    animation-name: fadeInRight50;
}

@keyframes fadeInRight50 {
    from {
        opacity: 0;
        -webkit-transform: translate3d(50px, 0, 0);
        transform: translate3d(50px, 0, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@media screen and (min-width: 1920px) {
    .main {
        background-size: 100% auto;
    }
}

.load-more,
.back-list {
    width: 380px;
    height: 58px;
    font-size: 16px;
    color: #565656;
    line-height: 56px;
    border: 2px solid #f7f0e6;
    padding-left: 170px;
    margin: 20px auto 0;
    cursor: pointer;
    background: url(../images/loading2.png) no-repeat 130px center;
    display: block;
}

.back-list {
    background-image: url(../images/back_list.jpg);
}

.btn-tab {
    margin-top: 35px;
    overflow: hidden;
}

.btn-tab li {
    float: left;
    margin-right: 10px;
    margin-bottom: 10px;
}

.btn-tab li a {
    display: block;
    font-size: 18px;
    color: #484848;
    line-height: 2.55;
    padding: 0 1.5em;
    border: 1px solid #d9d9d9;
    position: relative;
}

.btn-tab li.on a {
    color: #fff;
    background: #ee1d23;
    border-color: #ee1d23;
}

.logo-list {
    margin-top: 25px;
}

.logo-list ul {
    display: flex;
    flex-wrap: wrap;
}

.logo-list li {
    width: calc((100% - 90px) / 4);
    margin: 0 30px 30px 0;
    border: 2px solid #f6f0e6;
}

.logo-list li:nth-of-type(4n) {
    margin-right: 0;
}

.logo-list .pic {
    height: 0;
    padding-top: 66%;
    position: relative;
}

.logo-list .pic .flex {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.logo-list .pic img {
    max-width: 80%;
    max-height: 80%;
}

.logo-list .tit {
    font-size: 24px;
    font-weight: bold;
    color: #383838;
    text-align: center;
    line-height: 1.2;
    margin-top: 15px;
    display: none;
}

.logo-list a {
    display: block;
    padding-bottom: 30px;
}

.only-pic img {
    display: block;
    height: auto;
    width: 100%;
}

.icon-txt {
    margin-top: 35px;
    background: url(../images/about_brand.jpg) no-repeat right bottom;
    padding-bottom: 10px;
}

.icon-txt ul {
    display: flex;
    flex-wrap: wrap;
}

.icon-txt li {
    width: calc((100% - 60px) / 3);
    height: 173px;
    margin: 0 30px 30px 0;
    border: 2px solid #f7f2ea;
    background: #fffefb;
    padding: 32px 20px 0;
    display: flex;
}

.icon-txt li:nth-of-type(3n) {
    margin-right: 0;
}

.icon-txt .txt {
    flex: 1;
    margin-left: 25px;
    color: #383838;
    line-height: 1.5;
}

.icon-txt .name {
    font-size: 26px;
}

.icon-txt .info {
    margin-top: 14px;
    font-size: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.icon-txt .icon {
    margin-top: 5px;
}

.mag-list {
    background: #f9f6f0;
    padding: 60px 0 20px;
}

.mag-list ul {
    display: flex;
    flex-wrap: wrap;
}

.mag-list li {
    width: calc((100% - 120px) / 3);
    margin: 0 60px 40px 0;
    background: #fff;
    padding: 28px;
}

.mag-list li:nth-of-type(3n) {
    margin-right: 0;
}

.mag-list a {
    display: block;
}

.mag-list .pic {
    height: 0;
    padding-top: 150%;
    position: relative;
}

.mag-list img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.year-tit {
    margin-top: 35px;
}

.year-tit .en {
    color: #ee1d23;
    font-size: 36px;
    text-transform: uppercase;
}

.year-tit .ch {
    font-size: 24px;
    color: #484848;
    margin-top: 3px;
}

.open-more {
    width: 180px;
    height: 58px;
    border: 2px solid #f6f0e6;
    background: url(../images/loading2.png) no-repeat 35px center;
    padding-left: 66px;
    font-size: 18px;
    color: #565656;
    line-height: 54px;
    cursor: pointer;
}

.about-detail {
    font-size: 18px;
    color: #383838;
    line-height: 1.67;
    text-align: justify;
    margin-top: 35px;
}

.about-detail p {
    margin-bottom: 1.4em;
}

.about-detail-more {
    margin-top: 30px;
    display: none;
}

.about-brand-map .txt {
    padding: 0 90px 45px;
}

.about-brand-map .txt .flex {
    justify-content: space-between;
    flex-wrap: wrap;
}

.about-brand-map .txt i {
    font-size: 48px;
    color: #e50012;
    font-style: normal;
}

.about-brand-map .txt span {
    color: #868686;
    font-size: 10px;
    margin-left: 5px;
}

.about-brand-map .txt span.span {
    margin-left: -2px;
}

.about-brand-map .txt p {
    font-size: 16px;
    color: #565656;
    margin-bottom: 2px;
    text-indent: 5px;
}

.about-brand-map .tips {
    border-top: 1px solid #eee;
    padding-top: 15px;
    text-align: right;
    padding-bottom: 40px;
}

.about-brand-map .tips span {
    font-size: 14px;
    color: #ee1d23;
}

.about-brand-map {
    margin-top: 40px;
}

.about-brand-pics img {
    display: block;
    margin-bottom: 40px;
    width: 100%;
    height: auto;
}

.about-history>div {
    background-repeat: no-repeat;
    background-position: center bottom;
    padding-top: 30px;
    padding-bottom: 30px;
}

.about-history>div:nth-of-type(even) {
    background-color: #f6f0e6;
}

.about-history1 {
    background-image: url(../images/history1.png);
}

.about-history2 {
    background-image: url(../images/history2.png);
}

.about-history3 {
    background-image: url(../images/history3.png);
}

.about-history4 {
    background-image: url(../images/history4.png);
}

.about-history5 {
    background-image: url(../images/history5.png);
}

.history-item {
    overflow: hidden;
}

.history-item-bg {
    background: url(../images/history_bg_01.png) no-repeat 0 0;
    width: 150px;
    height: 64px;
    overflow: hidden;
    float: left;
}

.about-history>div:nth-of-type(even) .history-item-bg {
    background-image: url(../images/history_bg_02.png);
}

.history-item span {
    display: block;
    float: left;
    width: 50%;
    height: 64px;
    line-height: 64px;
    color: #ee1d23;
    font-size: 36px;
    text-align: center;
    /*font-family: '宋体';*/
}

.history-item-year {
    font-size: 30px;
    color: #868686;
    font-style: italic;
    font-family: 'Microsoft Yahei';
    float: left;
    line-height: 1;
    margin-top: 36px;
    margin-left: 34px;
}

.about-h1 {
    font-size: 24px;
    color: #868686;
    font-family: 'Microsoft Yahei';
}

.about-h2 {
    font-size: 24px;
    color: #ee1d23;
    margin-top: 8px;
    margin-bottom: 70px;
}

.history-item-txt {
    margin-top: 26px;
    font-size: 18px;
    color: #484848;
    line-height: 32px;
}

.history-item-txt dt {
    margin-bottom: 25px;
}

.pic-txt2 {
    display: flex;
    overflow: hidden;
    flex-wrap: wrap;
    margin-top: 35px;
}

.pic-txt2 li {
    width: calc((100% - 40px) / 2);
    margin: 0 40px 40px 0;
    background: #f8f8f8;
}

.pic-txt2 li:nth-of-type(2n) {
    margin-right: 0;
}

.pic-txt2 .pic {
    height: 0;
    position: relative;
    padding-top: 56.9%;
}

.pic-txt2 img {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.pic-txt2 .txt {
    padding: 24px 20px 40px;
    min-height: 120px;
}

.pic-txt2 .tit {
    font-size: 24px;
    font-weight: bold;
    color: #383838;
}

.pic-txt2 .info {
    font-size: 20px;
    line-height: 1.6;
    color: #484848;
    margin-top: 12px;
}

.coop-contact {
    margin-top: 35px;
    background: #f8f8f8;
}

.coop-contact-info {
    flex-wrap: wrap;
}

.coop-contact-info>div {
    padding: 40px 38px 50px 60px;
    font-size: 20px;
    color: #565656;
    line-height: 1.8;
}

.coop-contact-info .name {
    font-weight: bold;
    line-height: 1.3;
    font-size: 24px;
    margin-bottom: 18px;
}

.coop-contact-form {
    margin-top: 35px;
}

.coop-contact-form .tips {
    font-size: 16px;
    color: #565656;
    margin-bottom: 20px;
    display: none !important;
}

.feedback-form {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    display: none !important;
}

.feedback-form .item {
    margin-bottom: 20px;
    width: 595px;
}

.feedback-form .item.long {
    width: 100%;
}

.feedback-form .item input[type=text],
.feedback-form .item textarea,
.feedback-form .item select {
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border: 1px solid #d9d9d9;
    height: 52px;
    font-size: 14px;
    padding-left: 20px;
    border-radius: 0;
}

.feedback-form .item textarea {
    padding: 15px 20px;
    height: 160px;
    line-height: 1.5;
    resize: none;
}

.feedback-form .btn {
    text-align: right;
}

.feedback-form .btn input {
    width: 140px;
    height: 52px;
    color: #fff;
    background: #ee1d23;
    border: none;
    outline: none;
    cursor: pointer;
    border-radius: 0;
}

.feedback-form .btn input[type=reset] {
    background: #b2b2b2;
}

.news-list {
    margin-top: 35px;
}

.news-list ul {
    display: flex;
    flex-wrap: wrap;
}

.news-list li {
    width: calc((100% - 40px) / 2);
    margin: 0 40px 40px 0;
}

.news-list li:nth-of-type(2n) {
    margin-right: 0;
}

.news-list .txt {
    padding: 25px 19px 40px;
    border: 1px solid #f7f0e6;
}

.news-list .pic {
    height: 0;
    position: relative;
    padding-top: 59.4%;
}

.news-list img {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.news-list .tit {
    font-size: 24px;
    color: #383838;
    font-weight: bold;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.news-list .info {
    font-size: 20px;
    color: #484848;
    line-height: 1.6;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-top: 10px;
    height: 3.2em;
}

.news-list2 {
    margin-top: 35px;
}

.news-list2 li {
    margin-bottom: 40px;
}

.news-list2 li a {
    display: flex;
    flex-wrap: wrap;
}

.news-list2 .pic img {
    display: block;
    width: 580px;
    height: 345px;
}

.news-list2 .txt {
    flex: 1;
    padding: 84px 30px 0;
    border: 1px solid #f7f0e6;
}

.news-list2 .tit {
    font-size: 24px;
    font-weight: bold;
    color: #383838;
    line-height: 1.4;
}

.news-list2 .info {
    font-size: 20px;
    line-height: 1.6;
    color: #484848;
    margin-top: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.honor-pics {
    padding: 40px 0 20px;
}

.honor-pics .swiper-slide {}

.honor-pics .swiper-slide .pic {
    height: 196px;
    background: #f6f0e7;
}

.honor-pics .swiper-slide .pic img {
    display: block;
    max-width: 100%;
    max-height: 100%;
}

.honor-pics .swiper-slide .tit {
    text-align: center;
    font-size: 16px;
    color: #565656;
    margin-top: 10px;
}

.honor-pics .swiper-button-prev,
.honor-pics .swiper-button-next {
    color: #ee1d23;
    height: 196px;
    top: 0;
    margin: 0;
    width: 80px;
}

.honor-pics .swiper-button-prev {
    background: url(../images/honor_prev.png) no-repeat left;
    background-size: auto 100%;
    left: 0;
}

.honor-pics .swiper-button-prev:after {
    content: '\e818';
    font-family: 'iconfont';
    font-size: 46px;
    margin-left: -36px;
}

.honor-pics .swiper-button-next:after {
    content: '\e817';
    font-family: 'iconfont';
    font-size: 46px;
    margin-right: -36px;
}

.honor-pics .swiper-button-next {
    background: url(../images/honor_next.png) no-repeat right;
    background-size: auto 100%;
    right: 0;
    padding: 0;
}

.honor-pics .swiper-button-next.swiper-button-disabled,
.honor-pics .swiper-button-prev.swiper-button-disabled {
    color: #fff;
    opacity: 1;
}

.honor-pics-detail {
    background: #f6f0e7;
    position: relative;
    height: 726px;
}

.honor-pics-detail img {
    display: block;
    box-shadow: 0 0 8px rgba(0, 0, 0, .16);
    max-width: 90%;
    max-height: 90%;
}

.honor-pics-title {
    text-align: center;
    font-size: 18px;
    color: #565656;
    padding: 15px 0 30px;
}

.news-detail-tit {
    font-size: 30px;
    color: #383838;
    text-align: center;
    line-height: 1.4;
}

.news-detail-info {
    font-size: 18px;
    color: #868686;
    text-align: center;
    margin-top: 30px;
    padding-bottom: 35px;
    border-bottom: 2px solid #e5e5e5;
}

.article {
    padding: 30px 10px 40px;
    line-height: 1.8;
    font-size: 20px;
    color: #484848;
}

.article * {
    max-width: 100% !important;
}

.article p {
    padding: 15px 0;
}

.article img {
    width: 800px !important;
    height: auto !important;
}

.career-red {
    color: #e50012;
    font-size: 24px;
}

.about-idea-ul {
    margin-top: 60px;
}

.about-idea-ul ul {
    background: url(../images/idea_bg.jpg) no-repeat center;
    background-size: cover;
    overflow: hidden;
    padding: 48px 0 130px 0;
}

.about-idea-ul li {
    padding: 0 110px 0 120px;
    background: url(../images/idea_03.png) no-repeat 50px 2px;
    margin-bottom: 52px;
}

.about-idea-ul li:nth-child(2) {
    background-image: url(../images/idea_04.png);
}

.about-idea-ul .dot {
    padding-left: 11px;
    position: relative;
    margin-top: 12px;
}

.about-idea-ul .dot:before {
    content: '';
    display: block;
    position: absolute;
    top: 14px;
    left: 0;
    background: #ee1d23;
    width: 4px;
    height: 4px;
    border-radius: 4px;
}

.about-idea-ul .tit {
    font-size: 18px;
    color: #565656;
    line-height: 1.4;
}

.about-idea-ul .txt {
    color: #868686;
    font-size: 18px;
    line-height: 1.778;
    margin-top: 12px;
}

.employee-search {
    padding: 60px 0;
    display: flex;
}

.employee-search .tit {
    font-size: 16px;
    color: #565656;
    line-height: 48px;
    margin-right: 8px;
}

.employee-search .fx1 input {
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border: 1px solid #d9d9d9;
    height: 48px;
    padding-left: 20px;
    font-size: 16px;
    font-family: 'Microsoft Yahei';
}

.employee-search input[type=submit] {
    background: #ee1d23;
    color: #fff;
    width: 160px;
    height: 48px;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 16px;
    margin-left: 15px;
}

.employee .sub-bg {
    padding: 40px 0 50px;
}

.employee-table {
    width: 100%;
    background: #fff;
    border-top: 1px solid #f6f0e6;
    border-left: 1px solid #f6f0e6;
    border-right: 1px solid #f6f0e6;
    margin-bottom: 50px;
}

.employee-table th {
    text-align: left;
    line-height: 1.4;
    padding: 15px;
    background: #fbf9f5;
}

.employee-table td {
    border-bottom: 1px solid #f6f0e6;
    text-align: left;
    line-height: 1.4;
    padding: 15px;
    color: #868686;
    font-size: 14px;
    border-top: 1px solid #fff;
    cursor: pointer;
    position: relative;
}

.employee-table th {
    font-size: 16px;
    font-weight: normal;
    color: #565656;
}

.employee-table .t1 {
    padding-left: 35px;
}

.employee-table .t7 {
    padding-right: 65px;
}

.employee-table tr:hover td {
    background: #fef9f9;
}

.employee-table tr:hover td.t1 {
    border-left: 1px solid #ee1d23;
}

.employee-table tr:hover td.t7 {
    border-right: 1px solid #ee1d23;
}

.employee-table tr:hover td.t7:after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    margin-top: -7px;
    right: 20%;
    width: 0;
    height: 0;
    border-top: 7px solid transparent;
    border-left: 7px solid #ee1d23;
    border-bottom: 7px solid transparent;
}

.employee-table .t1,
.employee-table .t3,
.employee-table .t5,
.employee-table .t6,
.employee-table .t7 {
    white-space: nowrap;
}

.employee-table .t4 {
    max-width: 200px;
}

.employee-detail {
    padding: 70px 0 90px;
}

.employee-detail h1 {
    font-size: 16px;
    color: #565656;
    text-align: center;
    background: #fbf9f5;
    line-height: 58px;
    border: 1px solid #f7f1e8;
    width: 100%;
}

.employee-detail .content>div {
    float: left;
}

.employee-detail .item {
    width: 33.3%;
    border-bottom: 1px solid #f7f1e8;
    font-size: 14px;
    line-height: 1.5;
    padding: 13px 20px;
}

.employee-detail .item .txt {
    -webkit-flex: 1;
    -moz-flex: 1;
    -ms-flex: 1;
    -o-flex: 1;
    flex: 1;
    color: #868686;
}

.employee-detail .long {
    width: 100%;
}

.employee-detail .item .tit {
    color: #565656;
    margin-right: 10px;
}

.employee-detail .btn {
    text-align: right;
    padding-top: 20px;
}

.employee-detail .btn a {
    display: inline-block;
    background: #ee1d23;
    color: #fff;
    font-size: 16px;
    width: 160px;
    height: 48px;
    text-align: center;
    line-height: 48px;
}

.employee-detail {
    padding: 70px 0 90px;
}

.employee-detail h1 {
    font-size: 16px;
    color: #565656;
    text-align: center;
    background: #fbf9f5;
    line-height: 58px;
    border: 1px solid #f7f1e8;
    width: 100%;
}

.employee-detail .content>div {
    float: left;
}

.employee-detail .item {
    width: 33.3%;
    border-bottom: 1px solid #f7f1e8;
    font-size: 14px;
    line-height: 1.5;
    padding: 13px 20px;
}

.employee-detail .item .txt {
    -webkit-flex: 1;
    -moz-flex: 1;
    -ms-flex: 1;
    -o-flex: 1;
    flex: 1;
    color: #868686;
}

.employee-detail .long {
    width: 100%;
}

.employee-detail .item .tit {
    color: #565656;
    margin-right: 10px;
}

.employee-detail .btn {
    text-align: right;
    padding-top: 20px;
}

.employee-detail .btn a {
    display: inline-block;
    background: #ee1d23;
    color: #fff;
    font-size: 16px;
    width: 160px;
    height: 48px;
    text-align: center;
    line-height: 48px;
}

.join-tab {
    display: flex;
    justify-content: space-between;
    padding: 0 0 70px;
    margin-top: 30px;
}

.join-tab a {
    display: block;
}

.join-tab .pic {
    height: 0;
    padding-top: 44.8%;
    position: relative;
}

.join-tab .pic img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.join-tab li {
    width: calc((100% - 40px) / 2);
    box-shadow: 0 0 40px rgba(0, 0, 0, .15);
}

.join-tab .tit {
    background: #fff;
    font-size: 24px;
    color: #565656;
    padding: 15px 20px 42px;
}

.employee-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.mag-big-pic {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .8);
    z-index: 999;
    display: none;
}

.mag-big-pic img {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    max-height: 96%;
    max-width: 96%;
    transform: translate(-50%, -50%);
}

.close-mag {
    color: #fff;
    font-size: 24px;
    position: absolute;
    top: 30px;
    right: 30px;
    cursor: pointer;
}

.join-table {
    padding: 60px 0 90px;
}

.join-table table {
    border-collapse: collapse;
    font-size: 14px;
}

.join-table table tr td {
    border-collapse: collapse;
    border: 1px solid #E3E3E3;
    height: 24px;
    line-height: 24px;
    color: #7D7D7D;
}

.join-table table tr td input {
    border: none;
    height: 30px;
    background: transparent;
}

.join-table table tr td textarea {
    border: none;
    resize: none;
    overflow-y: auto;
    background: transparent;
}

.zh_1,
.zh_2,
.zh_3,
.zh_4 {
    width: 100%;
}

.join-table table tr .td_1,
.join-table table tr .td_5 {
    border-left: none;
}

.join-table table tr .td_2,
.join-table table tr .td_6 {
    border-right: none;
}

.join-table table tr .td_3 {
    border-bottom: none;
    border-top: none;
}

.join-table table tr .td_4 {
    border-bottom: none;
    border-left: none;
    border-right: none;
}

.join-table table tr td input.line_btn {
    width: 160px;
    height: 48px;
    color: #fff;
    background: #ee1d23;
}


.search-result li {
    padding: 20px 0;
    border-bottom: 1px solid #b6b6b6;
}
.search-result li a {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
}
.search-result .txt {
    -webkit-flex: 1;
    -moz-flex: 1;
    -ms-flex: 1;
    -o-flex: 1;
    flex: 1;
    font-size: 16px;
    color: #565656;
    line-height: 24px;
    height: 24px;
    overflow: hidden;
    text-overflow: ellipsis;
}
.search-result .date{
    font-size: 16px;
    color: #e60012;
    width: 80px;
    font-weight: bold;
    line-height: 24px;
    margin-right: 30px;
}

.search-index {
    padding: 30px 0 80px;
}


.single-video {
    margin-top: 50px;
}

.single-video video {
    width: 100%;
    height: auto;
}
@media screen and (max-width: 1230px) {
    .main {
        padding-top: 90px;
    }
    .main-tit span,
    .center-tit span {
        font-size: 30px;
    }
    .main-tit-sub,
    .center-tit-sub,
    .tab-list .info,
    .icon-txt .name,
    .pic-txt2 .tit,
    .coop-contact-info .name,
    .news-list2 .tit {
        font-size: 18px;
    }
    .btn-tab li a,
    .pic-txt .txt,
    .icon-txt .info,
    .pic-txt2 .info,
    .coop-contact-info>div,
    .news-list .info,
    .news-list2 .info {
        font-size: 16px;
    }
    .tab-list .tit,
    .logo-list .tit,
    .pic-txt .name,
    .news-list .tit,
    .news-detail-tit {
        font-size: 20px;
    }
    .tab-list li,
    .logo-list li {
        width: calc((100% - 30px) / 2);
        margin-right: 30px !important;
    }
    .tab-list li:nth-of-type(2n),
    .logo-list li:nth-of-type(2n) {
        margin-right: 0 !important;
    }
    .pic-txt .pic {
        width: 420px;
        height: 240px;
    }
    .pic-txt .txt {
        padding: 2em 1.5em 0;
    }
    .icon-txt li {
        padding: 20px 15px 0;
        height: 130px;
    }
    .icon-txt .info {
        margin-top: 10px;
    }
    .icon-txt .txt {
        margin-left: 15px;
    }
    .icon-txt .icon img {
        width: 40px;
    }
    .main {
        min-height: 0;
    }
    .mag-list li {
        padding: 15px;
        margin: 0 20px 20px 0;
        width: calc((100% - 40px) / 3);
    }
    .about-brand-map .txt {
        padding: 0;
    }
    .pic-txt2 .txt {
        min-height: 0;
        padding-bottom: 25px;
    }
    .coop-contact-info>div {
        padding: 25px 50px 30px;
    }
    .news-list .txt {
        padding: 20px 15px 30px;
    }
    .news-list2 .pic img {
        width: 58vw;
        height: 34.5vw;
    }
    .news-list2 .txt {
        padding-top: 8vw;
    }
    .honor-pics-detail {
        height: 1.7rem;
    }
    .honor-pics .swiper-slide {
        width: 200px;
    }
    .honor-pics .swiper-button-prev,
    .honor-pics .swiper-button-next,
    .honor-pics .swiper-slide .pic {
        height: 135px;
    }
    .honor-pics .swiper-button-prev,
    .honor-pics .swiper-button-next {
        width: 30px;
    }
    .honor-pics-title {
        font-size: 16px;
    }
    .honor-pics .swiper-slide .tit {
        font-size: 12px;
    }
    .honor-pics .swiper-button-next:after,
    .honor-pics .swiper-button-prev:after {
        font-size: 22px;
    }
    .honor-pics .swiper-button-next:after {
        margin-right: -1px;
    }
    .honor-pics .swiper-button-prev:after {
        margin-left: -1px;
    }
    .news-detail-info {
        font-size: 14px;
        margin-top: 20px;
        padding-bottom: 20px;
        border-width: 1px;
    }
    .article {
        font-size: 16px;
    }
    .article img {
        width: 100% !important;
    }
    .employee-detail .item {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .content {
        padding-left: 15px;
        padding-right: 15px;
    }
    .main-tit span,
    .center-tit span {
        font-size: 18px;
    }
    .main-tit-sub,
    .center-tit-sub,
    .tab-list .info,
    .icon-txt .name {
        font-size: 16px;
    }
    .main-tit-sub,
    .center-tit-sub {
        margin-top: 15px;
        margin-bottom: 20px;
    }
    .tab-list {
        margin-top: 20px;
    }
    .tab-list li,
    .logo-list li,
    .icon-txt li,
    .mag-list li {
        margin-right: 15px !important;
        width: calc((100% - 15px) / 2);
        margin-bottom: 15px !important;
    }
    .tab-list .tit,
    .logo-list .tit {
        font-size: 14px;
        text-align: center;
    }
    .tab-list .tit {
        height: 40px;
        padding: 10px 10px 0;
    }
    .tab-list .txt {
        padding: 10px 15px 0;
    }
    .tab-list .info,
    .pic-txt .txt {
        font-size: 12px;
    }
    .tab-list .more {
        margin-top: 10px;
        padding: 6px 20px;
        font-size: 11px;
    }
    .auto-scroll {
        padding: 60px 0 50px;
    }
    .btn-tab li a,
    .small-tab a,
    .pic-txt .name,
    .icon-txt .info {
        font-size: 14px;
    }
    .pic-txt .pic {
        width: 100%;
        height: 56.8vw;
    }
    .pic-txt li {
        display: block;
        margin-bottom: 20px;
    }
    .pic-txt .txt {
        padding: 20px 20px;
    }
    .load-more,
    .back-list {
        width: 280px;
        background-position: 90px center;
        padding-left: 124px;
        font-size: 14px;
    }
    .logo-list a {
        padding-bottom: 15px;
    }
    .logo-list li {
        border-width: 1px;
    }
    .btn-tab li a {
        border: none;
    }
    .btn-tab li a:after {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 200%;
        height: 200%;
        transform: scale(.5);
        border: 1px solid #ccc;
        transform-origin: 0 0;
        box-sizing: border-box;
    }
    .icon-txt li:nth-of-type(2n),
    .mag-list li:nth-of-type(2n) {
        margin-right: 0 !important;
    }
    .icon-txt .icon {
        margin-top: 3px;
    }
    .icon-txt .icon img {
        width: 32px;
    }
    .icon-txt li {
        border-width: 1px;
        padding: 18px 13px 0;
        height: 110px;
    }
    .icon-txt .info {
        margin-top: 8px;
    }
    .icon-txt {
        margin-top: 20px;
        background: none;
    }
    .mag-list {
        padding: 30px 0 15px;
    }
    .mag-list li {
        padding: 5px;
    }
    .about-brand-map .txt p {
        font-size: 16px;
        margin-bottom: 4px;
        margin-left: -4px;
    }
    .about-brand-map .txt .flex div {
        width: 100%;
        height: 80px;
    }
    .about-brand-map .txt i {
        font-size: 30px;
    }
    .about-detail {
        font-size: 14px;
    }
    .year-tit .en {
        font-size: 28px;
    }
    .year-tit .ch {
        font-size: 16px;
    }
    .year-tit,
    .about-detail {
        margin-top: 15px;
    }
    .open-more {
        width: 120px;
        height: 40px;
        border-width: 1px;
        font-size: 14px;
        line-height: 38px;
        white-space: nowrap;
        padding-left: 46px;
        background-size: 24px auto;
        background-position: 23px center;
    }
    .about-brand-map {
        /* padding: 0 50px; */
    }
    .history-item-txt {
        margin-top: 20px;
        font-size: 14px;
        line-height: 24px;
    }
    .history-item-txt dt {
        margin-bottom: 16px;
    }
    .about-history>div {
        padding-bottom: 40px;
        padding-top: 40px;
    }
    .history-item-bg {
        background-size: contain;
        width: 120px;
        height: 52px;
    }
    .history-item span {
        height: 52px;
        line-height: 52px;
        font-size: 30px;
    }
    .history-item-year {
        font-size: 20px;
        margin-top: 28px;
        margin-left: 26px;
    }
    .pic-txt2 li {
        width: 100%;
        margin: 0 0 15px 0;
    }
    .pic-txt2 .tit,
    .news-list .tit,
    .news-detail-tit {
        font-size: 16px;
    }
    .pic-txt2 .info,
    .coop-contact-form .tips,
    .news-list2 .tit {
        font-size: 14px;
    }
    .pic-txt2 .txt {
        padding: 15px 20px 20px;
    }
    .pic-txt2,
    .news-list,
    .news-list2 {
        margin-top: 20px;
    }
    .coop-contact-info>div {
        width: 100%;
        padding: 20px 20px 0;
        font-size: 14px;
    }
    .coop-contact-info .name {
        font-size: 16px;
        margin-bottom: 10px;
    }
    .coop-contact-info {
        padding-bottom: 20px;
    }
    .news-list .txt,
    .news-list2 .txt {
        padding: 15px 10px;
    }
    .news-list .info,
    .news-list2 .info {
        font-size: 14px;
        margin-top: 6px;
        height: auto;
    }
    .news-list li {
        width: 100%;
        margin: 0 0 15px 0;
    }
    .news-list2 li a {
        display: block;
    }
    .news-list2 .pic {
        width: 100%;
    }
    .news-list2 .pic img {
        width: 100%;
        height: 58vw;
    }
    .honor-pics {
        padding: 0;
    }
    .honor-pics-title {
        font-size: 15px;
    }
    .honor-pics .swiper-slide .tit {
        font-size: 11px;
    }
    .article {
        font-size: 14px !important;
        padding: 20px 0 30px;
    }
    .article p {
        padding: 8px 0;
    }
    .news-detail-info {
        margin-top: 12px;
        padding-bottom: 15px;
        font-size: 12px;
    }
    .about-idea-ul li {
        padding: 10px 20px 30px 58px;
        background-position: 20px 12px;
        background-size: 26px;
    }
    .about-idea-ul {
        margin-top: 30px;
    }
    .about-idea-ul li {
        margin-bottom: 15px;
    }
    .career-red {
        font-size: 18px;
    }
    .employee-detail .btn a {
        font-size: 14px;
        width: 120px;
        height: 38px;
        line-height: 38px;
    }
    .employee-search .tit {
        font-size: 14px;
        margin-right: 4px;
        line-height: 36px;
    }
    .employee-search input[type=submit] {
        font-size: 12px;
        width: 70px;
        height: 36px;
        margin-left: 4px;
    }
    .employee-search .fx1 input {
        height: 36px;
        padding-left: 10px;
        font-size: 14px;
    }
    .employee-search {
        padding: 30px 0;
    }
    .employee .sub-bg .content {
        width: 100%;
        padding: 0;
        overflow-x: auto;
    }
    .employee-table {
        width: 750px;
        margin-bottom: 30px;
    }
    .employee-table th,
    .employee-table td {
        font-size: 12px;
        padding: 10px;
    }
    .employee-table .t1 {
        padding-left: 10px;
    }
    .employee-table .t2 {
        width: 150px;
    }
    .employee-table .t7 {
        padding-right: 10px;
    }
    .employee .sub-bg {
        background: none;
        padding: 0;
    }
    .employee-detail {
        padding-top: 30px;
    }
    .pic-txt .words {
        height: auto;
        overflow-y: visible;
    }
    .about-idea-ul ul {
        padding: 20px 0 30px;
    }
    .about-idea-ul .tit {
        font-size: 16px;
    }
    .about-idea-ul .txt {
        font-size: 14px;
    }
    .about-idea-ul .dot:before {
        top: 11px;
    }
    .join-tab {
        flex-wrap: wrap;
        padding-bottom: 20px;
    }
    .join-tab li {
        width: 100%;
        margin-bottom: 20px;
    }
    .join-tab .tit {
        font-size: 16px;
        padding: 15px 15px 25px;
    }
    .scroll-x {
        overflow-x: auto;
    }
    .scroll-x::-webkit-scrollbar {
        width: 4px;
        height: 4px;
        background-color: rgba(146, 146, 146, 0.3);
        border-radius: 2px;
    }
    .scroll-x::-webkit-scrollbar-thumb {
        background-color: rgb(241, 0, 0);
        border-radius: 2px;
    }
    .employee-title {
        font-size: 16px;
    }
    .about-brand-map .tips {
        padding-top: 8px;
    }
    .about-brand-map .tips span {
        font-size: 12px;
    }
    .about-brand-map .txt {
        padding-left: 20px;
    }
    .search-result li {
        padding: 12px 0;
    }
    .search-result .date {
        font-size: 12px;
        font-weight: normal;
        margin-right: 15px;
        width: 60px;
        line-height: 20px;
    }
    .search-result .txt {
        font-size: 12px;
        line-height: 20px;
        height: 20px;
        white-space: nowrap;
    }    
    .single-video {
        margin-top: 20px;
    }
}