footer-tophtml,
body {
    margin: 0;
    padding: 0;
    background: rgba(235, 236, 237, 1);
}

body {
    font-size: 16px;
    font-family: 微软雅黑;
    color: #000;
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    text-decoration: none;
    color: inherit;
}

a:focus {
    text-decoration: none;
    color: inherit;
}

.t {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.mask {
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    left: 0;
    top: 0;
    z-index: 99;
    transition: all .3s;
    display: none;
    opacity: 0;
}


/*头部*/

#header {
    background-color: #fff;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 10
}

.header {
    display: flex;
    padding: 10px 0;
    justify-content: center;
    align-items: center;
}

.head-logo img {
    height: 75px;
    object-fit: contain;
    margin: 25px 0;
}

.nav-list {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-list-btn {
    margin-left: 10px;
    position: relative;
}

.nav-text {
    display: block;
    padding: 12px 15px;
    transition: all .3s;
}

.nav-btn-part {
    width: 150px;
    background-color: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 11;
    transition: all .3s;
    opacity: 0;
    visibility: hidden;
}

.nav-btn:hover>.nav-text {
    color: #EB0017;
}

.nav-list-btn:hover>.nav-text {
    color: #EB0017;
}

.nav-list-btn:hover>.nav-btn-part {
    opacity: 1;
    visibility: visible;
}

.nav-active>.nav-text {
    color: #EB0017;
}

.nav-icon {
    font-size: 24px;
    cursor: pointer;
}


/*移动端导航*/

.m-nav-list {
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    padding: 20px;
    background-color: #fff;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 100;
    display: none;
}

.m-nav-list-btn {
    border-bottom: 1px solid #eee;
    text-align: center;
}

.m-nav-btn-part {
    background-color: #f5f5f5;
    display: none
}


/*.m-nav-list-btn:hover > .nav-text{color: #EB0017;}*/

.main {
    min-height: 500px;
}

.noData {
    text-align: center;
    line-height: 100px;
    font-size: 16px;
    color: #ccc;
}


/*轮播*/

.banner {
    width: 100%;
    height: 100%;
}

.banner-ny {
    background-color: #EB0017;
    color: white;
    text-align: center;
    padding: 40px;
    font-size: 30px;
}


/*尾部*/

.footer-top {
    padding: 30px 0;
    color: #000;
    margin-top: 10px;
}

.footer-down {
    background: #E6E6E6;
    padding: 16px 0;
    color: #565763;
}

.footer-text {
    padding-top: 20px;
    transition: all .3s;
}

.footer-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
}

.footer-desc {
    font-size: 14px;
    margin-top: 10px;
}

.footer-cont {
    display: block;
    font-size: 14px;
    margin-top: 10px;
    transition: all .3s;
}

.footer-cont:hover {
    color: #EB0017;
}

.footer-fir {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-link {
    margin-right: 10px;
}

.copy-right {
    text-align: center;
}

.copy-right p {
    margin: 0;
    font-size: 12px;
}


/*列表页导航*/

.page-tab {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 15px;
}

.page-title {
    font-size: 20px;
}

.page-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
    margin: 30px 0;
}

.page-nav-btn {
    display: block;
    padding: 8px 15px;
    border: 1px solid #EB0017;
    margin-left: 10px;
    transition: all .3s;
    font-size: 18px;
}

.page-nav-btn:first-child {
    margin-left: 0;
}

.page-nav-btn:hover {
    color: #fff;
    background-color: #EB0017;
}

.page-nav-active {
    color: #fff;
    background-color: #EB0017;
}


/*列表页分页颜色*/

.pagination>.active>span {
    background-color: #EB0017;
}

.pagination>li>a {
    color: #EB0017;
}


/*详情页导航*/

.detail-tab {
    padding: 20px 0;
    color: #999;
    font-size: 14px;
}

.detail-tab>a {
    color: #EB0017;
}


/*详情页内容*/

.page-content {
    margin: 20px 0;
}

.page-content img {
    max-width: 100%;
}

.page-content video {
    max-width: 100%;
}


/*详情页分页*/

.page-box {
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.page-no {
    color: #999 !important;
    background: white !important;
}


/*新闻*/

.news {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.news-img {
    width: 250px;
    height: 200px;
    margin-right: 20px;
    border-radius: 5px;
    overflow: hidden;
}

.news-img>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .3s;
}

.news-text {
    margin-right: 20px;
    flex: 1;
}

.news-title {
    color: #333;
    font-size: 20px;
    transition: all .3s;
}

.news-desc {
    color: #666;
    line-height: 24px;
    margin-top: 10px;
}

.news-look {
    color: #999;
    font-size: 12px;
    margin-top: 20px;
}

.news-time {
    text-align: center;
}

.news-date {
    color: #999;
    font-size: 36px;
    font-weight: 100;
    line-height: 1;
}

.news-year {
    color: #bbb;
    font-size: 24px;
    padding-top: 10px;
    line-height: 1;
}

.news:hover>.news-img>img {
    transform: scale(1.15);
}

.news:hover .news-title {
    color: #EB0017;
}


/*产品*/

.pro-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.pro {
    display: block;
    width: calc(25% - 10px);
    margin-right: 10px;
    margin-bottom: 10px;
    border: 1px solid #eee;
    border-radius: 5px;
    overflow: hidden;
    transition: all .3s;
}

.pro:nth-child(4n) {
    margin-right: 0;
}

.pro-img {
    width: 275px;
    height: 275px;
    object-fit: cover;
}

.pro-imgs {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pro-title {
    padding: 0 10px;
    margin-top: 15px;
    font-size: 18px;
    transition: all .3s;
}

.pro-desc {
    margin: 10px;
    color: #666;
    font-size: 14px;
}

.pro:hover {
    box-shadow: 5px 5px 10px #ccc;
}

.pro:hover>.pro-title {
    color: #EB0017;
}

.pro-detail {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}

.pro-slide {
    width: 55%;
}

.pro-text {
    width: 45%;
    padding-left: 20px;
}

.pro-specs-list {
    padding: 10px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.pro-specs {
    width: 50%;
    padding-right: 5px;
    color: #999;
    line-height: 24px;
}

.pro-cont-tab {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    border-bottom: 1px solid #eee;
    margin-top: 30px;
}

.pro-cont-tab-btn {
    color: #EB0017;
    font-size: 16px;
    padding: 12px 15px;
    border-bottom: 2px solid #EB0017;
    cursor: pointer;
}


/*推荐产品*/

.well-title {
    color: #EB0017;
    font-size: 16px;
    padding: 20px 0;
}

.well-pro {
    display: block;
    width: calc((100% - 30px) / 4);
    background-color: #f5f5f5;
    border-radius: 5px;
    overflow: hidden;
}


/*图片*/

.img-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.img {
    display: block;
    width: calc(25% - 10px);
    margin-right: 10px;
    margin-bottom: 10px;
    border: 1px solid #eee;
    border-radius: 5px;
    overflow: hidden;
    transition: all .3s;
}

.img:nth-child(4n) {
    margin-right: 0;
}

.img-img {
    width: 275px;
    height: 275px;
    object-fit: cover;
}

.img-title {
    padding: 10px;
    text-align: center;
    font-size: 16px;
    transition: all .3s;
}

.img:hover {
    box-shadow: 0 0 10px #ccc;
}

.img:hover>.img-title {
    color: #EB0017;
}


/*下载*/

.file {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.file-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-right: 20px;
}

.file-text {
    flex: 1;
}

.file-title {
    color: #333;
    font-size: 20px;
    transition: all .3s;
}

.file-desc {
    color: #666;
    line-height: 24px;
    margin-top: 10px;
}

.file-down {
    color: #999;
    font-size: 12px;
    margin-top: 20px;
}

.file-btn {
    display: table;
    color: #EB0017;
    border: 1px solid #EB0017;
    padding: 5px 15px;
    margin-left: 20px;
    cursor: pointer;
    transition: all .3s;
}

.file-btn:hover {
    color: #fff;
    background-color: #EB0017;
}


/*搜索*/

.sr-form {
    display: flex;
    align-items: center;
    border: 1px solid #eee;
    border-radius: 50px;
    line-height: 35px;
    margin: 20px 0;
}

.sr-select {
    width: 80px;
    display: table;
    position: relative;
    cursor: pointer;
}

.sr-select-icon {
    font-size: 18px;
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
}

.sr-select-value {
    padding: 0 20px 0 15px;
    width: 100%;
    user-select: none;
}

.sr-select-init {
    color: #999;
}

.sr-select-list {
    width: 150px;
    background-color: #fff;
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 11;
    border: 1px solid #eee;
    box-shadow: 0 0 10px #eee;
    border-radius: 5px;
    overflow: hidden;
    transition: all .3s;
    opacity: 0;
    visibility: hidden;
}

.sr-option {
    padding: 12px 15px;
    line-height: 1;
    color: #EB0017;
    transition: all .3s;
    cursor: pointer;
    user-select: none;
}

.sr-option:hover {
    color: #fff;
    background-color: #EB0017;
}

.sr-option-active {
    color: #fff;
    background-color: #EB0017;
}

.search-select {
    background: white;
    border: none;
    margin: 0 20px;
    height: 39px;
}


/*.sr-select:hover .sr-select-list{opacity: 1;visibility: visible;}*/

.sr-input {
    min-width: 50px;
    flex: 1;
    padding: 0 15px;
    outline: none;
    border: none;
    background-color: #f5f5f5;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.sr-btn {
    padding: 0 15px;
    color: #fff;
    background-color: #EB0017;
    border: 1px solid #EB0017;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
}

.search {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.search-title {
    display: table;
    color: #666;
    font-size: 20px;
    transition: all .3s;
}

.search-title>span {
    font-size: 12px;
}

.search-link {
    display: table;
    color: #EB0017;
    margin-top: 10px;
}

.search-link:hover {
    color: #EB0017;
}

.search-desc {
    color: #333;
}

.search:hover>.search-title {
    color: #333;
}


/*表单*/

.form-cell {
    display: flex;
    margin-bottom: 15px;
    line-height: 30px;
    flex-wrap: wrap
}

.form-icon {
    font-size: 12px;
    color: #f00;
    transform: scale(0.5);
}

.form-label {
    line-height: 30px;
    color: #333;
    margin-right: 15px;
    font-weight: normal;
    width: 100%
}

.form-input {
    min-width: 50px;
    flex: 1;
    height: 40px;
    padding: 0 15px;
    outline: none;
    border: 1px solid #eee;
    border-radius: 5px;
}

.form-textarea {
    min-width: 50px;
    flex: 1;
    padding: 10px 15px;
    line-height: 20px;
    outline: none;
    border: 1px solid #eee;
    border-radius: 5px;
    resize: none;
}

.form-select {
    width: 150px;
    border: 1px solid #eee;
    border-radius: 5px;
}

.form-radio {
    display: flex;
    align-items: center;
    flex-wrap: wrap
}

.form-checkbox {
    display: flex;
    align-items: center;
    flex-wrap: wrap
}

.form-label>input {
    margin-right: 5px;
}

.checkbox_select {
    padding-right: 20px;
    font-weight: normal;
}

.checkbox_select>input {
    margin-right: 5px;
}

.form-upload {
    flex: 1;
    display: flex;
    align-items: center;
    position: relative;
}

.form-file {
    width: 40px;
    height: 40px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    cursor: pointer;
}

.form-file:focus {
    outline: none !important;
    border: none;
}

.form-upload-icon {
    width: 40px;
    line-height: 40px;
    text-align: center;
    color: #fff;
    background-color: #EB0017;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    transition: all .3s;
}

.form-file:hover+.form-upload-icon {
    box-shadow: none;
}

.form-sub {
    background-color: #EB0017;
}

.form_file {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 9;
    cursor: pointer;
}

@media (max-width: 1200px) {}

@media (max-width: 992px) {
    .swiper-banner .swiper-wrapper {
        width: 100vw;
    }
    .swiper-banner .swiper-wrapper .swiper-slide {
        height: auto;
    }
    .banner {
        height: auto;
    }
    .footer-text {
        width: 50%;
    }
    .page-title {
        width: 100%;
        text-align: center;
    }
    .page-nav {
        width: 100%;
        justify-content: center;
    }
    .page-nav-btn {
        margin-left: 0;
        margin-right: 10px;
        margin-top: 10px;
    }
    .news-img {
        display: none;
    }
    .pro {
        width: calc(33.33% - 10px);
    }
    .pro:nth-child(4n) {
        margin-right: 10px;
    }
    .pro:nth-child(3n) {
        margin-right: 0
    }
    .well-pro {
        width: calc((100% - 20px) / 3);
    }
    .img {
        width: calc(33.33% - 10px);
    }
    .img:nth-child(4n) {
        margin-right: 10px;
    }
    .img:nth-child(3n) {
        margin-right: 0
    }
}

@media (max-width: 768px) {
    .pro {
        width: calc(50% - 10px);
    }
    .pro:nth-child(3n) {
        margin-right: 10px;
    }
    .pro:nth-child(2n) {
        margin-right: 0;
    }
    .pro-slide {
        width: 100%;
    }
    .pro-text {
        width: 100%;
        margin-top: 20px;
        padding-left: 0;
    }
    .well-pro {
        width: calc((100% - 10px) / 2);
    }
    .img {
        width: calc(50% - 10px);
    }
    .img:nth-child(3n) {
        margin-right: 10px;
    }
    .img:nth-child(2n) {
        margin-right: 0;
    }
}

@media (max-width: 480px) {
    .footer-text {
        width: 100%;
    }
    .pro {
        width: 100%;
        margin-right: 0
    }
    .pro:nth-child(3n) {
        margin-right: 0;
    }
    .pro-specs {
        width: 100%;
        padding-right: 0;
    }
    .well-pro {
        width: 100%;
    }
    .img {
        width: 100%;
        margin-right: 0
    }
    .img:nth-child(3n) {
        margin-right: 0;
    }
    .footer-top {
        text-align: center
    }
}


/* 通用样式 */

.w {
    width: 1200px;
    margin: auto;
}

.header-desc {}

.fa {
    width: 18px;
    height: 18px;
    text-align: center;
    margin-right: 5px;
}

.model-title {
    text-align: center;
    margin-bottom: 50px;
}

.model-chname {
    font-size: 36px;
    font-weight: bold;
    color: #1A1D21;
}

.model-enname {
    font-size: 24px;
    color: #eb0018a6;
}

.pa {
    padding: 80px 0 100px 0;
}

.product-center-hover {
    position: absolute;
    top: 0;
    left: 0;
    background: #29292957;
    color: #ffffff;
    opacity: 0;
}

.product-center-list {
    position: relative;
}


/* app */

#app {
    overflow: hidden;
}

.ui-big-images {
    height: 100%;
    width: 100%;
    overflow: hidden;
    display: flex;
    margin-bottom: 32px;
}

.ui-big-image {
    width: 100%;
    margin-right: -100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ui-big-image img {
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center 20%;
    object-position: center 20%;
    width: 379px;
    height: 380px;
    display: block;
    margin: auto;
}

@media (max-height: 600px) {
    .ui-big-image img {
        -o-object-position: center center;
        object-position: center center;
    }
}

.ui-thumbnails {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    height: 150px;
    justify-content: space-between;
}

.ui-thumbnail {
    display: block;
    cursor: pointer;
    width: 170px;
    height: 150px;
    background: radial-gradient(50% 50%, rgba(255, 255, 255, 1) 0%, rgba(224, 224, 224, 1) 100%);
    border-radius: 2px;
}

.ui-cuticle {
    background-color: #D4A12D;
    position: absolute;
    bottom: 0;
    height: .25rem;
    width: 100%;
}

.ui-thumbnail>img {
    width: 170px;
    height: 150px;
    object-fit: contain;
}

.ui-content {
    position: absolute;
    width: 40%;
    right: 5%;
    bottom: 0;
}

.ui-articles {
    background: #493e56;
    color: white;
    display: flex;
    align-items: stretch;
    overflow: hidden;
}

.ui-article {
    padding: 1.5rem;
    width: 100%;
    margin-right: -100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ui-paragraph {
    margin: 0;
    font-size: .7rem;
    line-height: 1.7;
}

.ui-nav {
    position: absolute;
    right: 0;
    bottom: 100%;
    background: inherit;
}

.ui-nav button {
    background: #493e56;
    border: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: .5em;
    width: 2em;
    color: #FFF;
    font-family: monospace;
    transition: inherit;
    transition-duration: 300ms;
}

.ui-nav button:hover,
.ui-nav button:focus {
    background: #D4A12D;
    outline: none;
}

.ui-nav button:active {
    outline: none;
    -webkit-transform: translateY(0.25em);
    transform: translateY(0.25em);
    transition-duration: 100ms;
}

.ui-heading {
    margin: 0;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    font-weight: normal;
}

.ui-heading:before {
    content: 'Animator';
    font-size: .5rem;
    text-transform: uppercase;
    display: block;
    margin-bottom: .5rem;
    letter-spacing: 1px;
}


/* ---------------------------------- */

.ui-big-image {
    opacity: 0;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
}

.ui-big-image img {
    -webkit-transform: scale(0.85);
    transform: scale(0.85);
}

.ui-big-image[data-active]~.ui-big-image {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
}

.ui-big-image[data-active] {
    opacity: 1;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
}

.ui-big-image[data-active] img {
    -webkit-transform: scale(1);
    transform: scale(1);
}


/* ---------------------------------- */

.ui-article {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
}

.ui-article:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #D4A12D;
    opacity: 1;
    transition-duration: 0.35s;
    z-index: 1;
}

.ui-article[data-active]~.ui-article {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
}

.ui-article[data-active] {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
}

.ui-article[data-active]:before {
    opacity: 0;
}


/* ---------------------------------- */

.ui-thumbnail>img {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    transition-duration: 0.35s;
}

.ui-thumbnail:active>img {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
    transition-duration: 100ms;
}

.ui-thumbnail:focus {
    outline: none;
}

.ui-cuticle {
    display: none;
}

.ui-thumbnail[data-active]>img,
.ui-thumbnail:hover>img {
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
}

.ui-thumbnail[data-active] .ui-cuticle {
    display: block;
}


/* 产品中心 */

.product-center-lists {
    display: flex;
    justify-content: space-between;
}

.product-list-size1 {
    width: 350px;
    height: 560px;
}

.pro-hover-size1 {
    width: 350px;
    height: 560px;
    line-height: 560px;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
}

.product-center-rigth {
    width: 830px;
}

.product-list-size2 {
    width: 270px;
    height: 270px;
}

.pro-hover-size2 {
    width: 270px;
    height: 270px;
    line-height: 270px;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
}

.product-list-size3 {
    width: 540px;
    height: 270px;
}

.pro-hover-size3 {
    width: 540px;
    height: 270px;
    line-height: 270px;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
}

.product-center-list:hover .product-center-hover {
    opacity: 1;
}

.product-list-size4 {
    width: 270px;
    height: 270px;
    text-align: center;
    background: #FFFFFF;
}

.producy-more {
    font-size: 24px;
}

.product-center-des {
    display: flex;
    justify-content: space-between;
}

.pro-des {
    width: 49.8%;
    display: flex;
    align-items: center;
}

.des-text {
    padding: 190px 0 190px 100px;
    width: 100%;
}

.endes-text {
    padding: 190px 0 190px 100px;
    width: 100%;
}

.des-des {
    width: 40%;
}

.des-pic {
    z-index: -1;
    width: 100%;
}

.des-pic img {
    width: 100%;
    object-fit: contain;
}

.des-text p {
    font-size: 60px;
}

.endes-text p {
    font-size: 40px;
}

.des-des {
    margin-top: 72px;
}


/* 新品推荐 */

.arr-pic {
    width: 460px;
    height: 380px;
    background: radial-gradient(50% 50%, rgba(255, 255, 255, 1) 0%, rgba(224, 224, 224, 1) 100%);
    border-radius: 4px;
    margin-right: 36px;
}

.arr-cont {
    width: 300px;
}

.arr-name {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 8px;
}

.main p img {
    width: 100%;
}

.arr-des p {
    font-size: 14px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 2;
}

.arr-des p img {
    object-fit: contain;
}

.arr-more {
    width: 80px;
    height: 32px;
    border: 1px solid #EB0017;
    text-align: center;
}

.arr-more a {
    line-height: 32px;
    color: #EB0017;
}

#prev,
#next {
    border: none;
    font-size: 32px;
}


/* 关于我们 */

.about-us {
    background: url(/public/static/index/images/bg.png) no-repeat;
}

.about-cont {
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.about-pic img {
    width: 564px;
    height: 261px;
}

.about-des {
    width: 549px;
    height: 232px;
    line-height: 24px;
}

.about-des p {
    text-indent: 2em;
    color: #565763;
}

.enabout-des {
    width: 549px;
    height: 232px;
    line-height: 24px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 9;
    -webkit-box-orient: vertical;
}

.enabout-des p {
    text-indent: 2em;
    color: #565763;
}

.swiper-banner .swiper-wrapper {
    height: 740px;
}

.head-logo {
    display: flex;
    align-items: center;
    padding-left: 25px;
}

.head-logo-name {
    font-size: 42px;
    margin-left: 5px;
    font-weight: bold;
    margin-bottom: 5px;
}

.head-hot {
    font-size: 18px;
}

.head-tel {
    font-size: 36px;
    color: #EB0017;
}

.pagination>.active>span {
    border: #EB0017;
}

.pagination>.active>span:hover {
    background-color: #EB0017;
}

.pagination>li>a:hover {
    color: #fff;
    background-color: #EB0017;
}

.pagination>li>a {
    border: #EB0017;
}

.btnColor {
    background: #EB0017;
    color: #fff;
}