.banner-container {
    width: 100%;
    position: relative;
}

.banner {
    width: 100%;
}

.banner-picwords {
    width: 100%;
}

.banner-pic {
    width: 100%;
}

.banner-pic img {
    width: 100%;
    object-fit: cover;
}

.banner-pic .banner-pc {
    display: block;
    min-height: 520px;
}

.banner-pic .banner-mb {
    display: none;
    min-height: 320px;
}

.banner-words {
    position: absolute;
    z-index: 6;
    top: 50%;
    left: 14%;
    transform: translate(0, -50%);
}

.banner-words h4 {
    font-size: 64px;
    color: #fff;
    font-family: 'SYREGULUM';
}

.banner-words h4 span {
    color: #e3144e;
    font-weight: bold;
}

.banner-words p {
    font-size: 18px;
    color: #fff;
    font-family: 'SYREGULUM';
}

.banner-words a {
    display: block;
    font-size: 16px;
    color: #fff;
    width: 158px;
    height: 52px;
    text-align: center;
    line-height: 52px;
    border: 1px solid #fff;
    border-radius: 4px;
    margin-top: 44px;
    transition: all .4s ease-in-out;
}

.banner-words a:hover {
    background: #e3144e;
    border-color: #e3144e;
}

.swiper-slide-active .banner-words h4 {
    animation: banWords 1s ease-in-out both 100ms;
}

.swiper-slide-active .banner-words p {
    animation: banWords 1s ease-in-out both 600ms;
}

.swiper-slide-active .banner-words a {
    animation: banWords 1s ease-in-out both 1000ms;
}

@keyframes banWords {
    0% {
        transform: translateX(120px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.banner-prev,
.banner-next {
    position: absolute;
    z-index: 4;
    top: 50%;
    width: 58px;
    height: 58px;
    margin-top: -29px;
    cursor: pointer;
    user-select: none;
    transition: all .3s ease-in-out;
}

.banner-prev {
    left: 0;
    background: rgba(255, 255, 255, .03) url('../images/index/banL.png') no-repeat center center;
}

.banner-next {
    right: 0;
    background: rgba(255, 255, 255, .03) url('../images/index/banR.png') no-repeat center center;
}

.banner-prev:hover,
.banner-next:hover {
    background-color: rgba(227, 20, 59, .6);
}

.banner .swiper-pagination {
    bottom: 32px;
}

.banner .swiper-pagination-bullet {
    width: 36px;
    height: 6px;
    border-radius: initial;
    background: rgba(255, 255, 255, .1);
    opacity: 1;
    position: relative;
}

.banner .swiper-pagination-bullet:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .52);
    width: 0;
    height: 6px;
    z-index: 1;
    transition: 0s;
}

.banner .slideOntrue.swiper-pagination-bullet:before {
    width: 100%;
    transition: all 3.6s ease;
}


/* =====banner动画===== */

.banner-dhoneimg {
    position: absolute;
    width: 993px;
    top: 10%;
    z-index: 1;
    right: 6%;
}

.banner-dhone1 {
    width: 100%;
}

.banner-dhone1 img {
    width: 100%;
}

.banner-dhone2 {
    position: absolute;
    left: 310px;
    bottom: 320px;
    z-index: 2;
    width: 288px;
}

.banner-dhone2 img {
    width: 100%;
}

.banner-dhone3 {
    position: absolute;
    left: 384px;
    bottom: 380px;
    z-index: 1;
    opacity: 0;
    width: 136px;
}

.banner-dhone3 img {
    width: 100%;
}

.swiper-slide-active .banner-dhone2 {
    animation: dhoneR1 1.2s ease both 300ms;
}

.swiper-slide-active .banner-dhone3 {
    animation: dhoneR2 1.8s ease infinite 1.6s;
}

@keyframes dhoneR1 {
    0% {
        opacity: 1;
        transform: scale(0)
    }
    50% {
        opacity: .4;
    }
    100% {
        opacity: 1;
        transform: scale(1)
    }
}

@keyframes dhoneR2 {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(-40px);
        opacity: 1;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.banner-dhtwoimg {
    position: absolute;
    width: 612px;
    top: 20%;
    z-index: 1;
    right: 14.4%;
}

.banner-dhtwo1 {
    width: 100%;
    position: relative;
    z-index: 2;
}

.banner-dhtwo1 img {
    width: 100%;
}

.banner-dhtwo2 {
    position: absolute;
    top: 2px;
    left: 134px;
    z-index: 3;
    transition: all .4s ease 600ms;
    width: 420px;
}

.banner-dhtwo2 img {
    width: 100%;
}

.banner-dhtwo3 {
    position: absolute;
    top: -106px;
    left: 142px;
    z-index: 4;
    width: 431px;
    opacity: 0;
}

.banner-dhtwo3 img {
    width: 100%;
}

.swiper-slide-active .banner-dhtwo2 {
    opacity: 0;
}

.swiper-slide-active .banner-dhtwo3 {
    animation: dhtwoR3 1.4s ease both 1s;
}

@keyframes dhtwoR3 {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}


/* ==================== */

.product-container,
.apply-container,
.news-container {
    width: 100%;
    padding: 90px 0 120px 0;
}

.product,
.apply,
.news {
    width: auto;
    margin: 0 auto;
}

.product-picwords {
    width: 100%;
    margin-top: 46px;
}

.product-picwords ul {
    margin-left: -1.5%;
}

.product-picwords ul li {
    width: 23.5%;
    float: left;
    margin-left: 1.5%;
    padding: 92px 0 88px 0;
    border: 1px solid #ececec;
    text-align: center;
    transition: all .4s ease-in-out;
    margin-top: 16px;
}

.product-pic {
    width: 100%;
    height: 96px;
}

.product-pic img {
    max-width: 100%;
}

.product-words {
    width: 100%;
    overflow: hidden;
    font-size: 0;
    margin-top: 36px;
}

.product-words h6 {
    font-size: 30px;
    color: #000;
    transition: all .3s ease-in-out;
}

.product-words h6:hover {
    color: #e3144e;
}

.product-words p {
    width: 100%;
    margin-top: 4px;
    min-height: 25px;
}

.product-words p a,
.product-words p span {
    display: inline-block;
    vertical-align: middle;
    font-size: 18px;
    color: #777;
}

.product-words p a {
    transition: all .3s ease-in-out;
}

.product-words p a:hover {
    color: #e3144e;
}

.product-words p span {
    margin: 0 20px;
}

.product-picwords ul li:hover {
    box-shadow: 0 6px 20px 2px #ececec;
    transform: translateY(-6px)
}

.apply-container {
    /* background: #0d0f14; */
    overflow: hidden;
    position: relative;
}

#applylz {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.apply-top,
.apply-bottom {
    width: 100%;
    position: relative;
    z-index: 3;
}

.apply-top {
    margin-top: 66px;
}

.apply-top ul {
    margin-left: -2%;
}

.apply-top ul li {
    width: 48%;
    float: left;
    margin-left: 2%;
    height: 514px;
    overflow: hidden;
    position: relative;
}

.apply-top ul li a {
    display: block;
    width: 100%;
    height: 100%;
}

.apply-top ul li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .4s ease-in-out;
}

.apply-words {
    position: absolute;
    z-index: 4;
    width: 88%;
    top: 8%;
    left: 6%;
}

.apply-words h6 {
    font-size: 30px;
    color: #000;
    font-weight: bold;
    transition: all .3s ease-in-out;
}

.apply-words p {
    font-size: 18px;
    color: #666;
    margin-top: 2px;
}

.apply-top ul li a:hover img {
    transform: scale(1.1);
}

.apply-top ul li a:hover h6 {
    color: #e3144e;
}

.apply-topsize {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
}

.apply-topsize .apply-words {
    top: 18%;
}

.apply-topminl,
.apply-topminr {
    width: 48%;
    position: relative;
    height: 240px;
    overflow: hidden;
}

.apply-topminl {
    float: left;
}

.apply-topminr {
    float: right;
}

.apply-topminl .apply-words,
.apply-topminr .apply-words {
    left: 12%;
    width: 76%;
}

.apply-top ul li:nth-child(2)>div:nth-child(2) {
    margin-top: 34px;
}

.apply-bottom {
    width: 100%;
    /*margin-top: 34px;*/
}

.apply-bottom ul {
    margin-left: -2%;
}

.apply-bottom ul li {
    width: 23%;
    float: left;
    margin-left: 2%;
    height: 330px;
    overflow: hidden;
    position: relative;
}


/*******适配 +90*******/

.ul-li-img {
    height: 200px;
    line-height: 200px;
    overflow: hidden;
}

.ul-li-content {
    text-align: center;
    /* border-bottom: 1px solid #c5c5c5; */
    font-family: 微软雅黑;
    font-size: 18px;
    color: #464545;
    padding-top: 35px;
    padding-bottom: 30px;
}


/*******适配*******/

.apply-bottom ul li a {
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
}

.apply-bottom ul li img {
    /* width: 100%; */
    height: 100%;
    object-fit: cover;
    transition: all .4s ease-in-out;
}

.apply-bottom ul li a:hover img {
    transform: scale(1.1);
}

.apply-bottom ul li a:hover h6 {
    color: #e3144e;
}

.apply-bottom .apply-words {
    top: 18%;
}

.news-container {
    background: #f3f7ff;
}

.news-click {
    width: 100%;
    overflow: hidden;
    font-size: 0;
    margin-top: 28px;
    text-align: center;
}

.news-click ul li {
    display: inline-block;
    cursor: pointer;
    width: 148px;
    height: 48px;
    line-height: 48px;
    font-size: 18px;
    color: #687286;
    background: #fff;
    border: 1px solid #e5eaf4;
    margin: 0 6px;
    user-select: none;
}

.news-click ul li.ontrue {
    background: #e3143b;
    color: #fff;
    border-color: #e3144e;
}

.news-wordsbox {
    width: 100%;
    margin-top: 66px;
    box-shadow: 0 6px 16px 4px #e3e7ee;
}

.news-tablist {
    width: 100%;
}

.news-tablist ul li {
    float: left;
    height: 398px;
    overflow: hidden;
    position: relative;
}

.news-tablist ul li a {
    display: block;
    width: 100%;
    height: 100%;
}

.news-tablist ul li:first-child {
    width: 28%;
}

.news-tablist ul li:nth-child(2),
.news-tablist ul li:nth-child(3),
.news-tablist ul li:last-child {
    width: 24%;
}

.news-tablist ul li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .4s ease-in-out;
}

.news-tablist ul li a:hover img {
    transform: scale(1.1);
}

.news-tablist ul li:nth-child(2) {
    background: #e3143b;
}

.news-tablist ul li:nth-child(4) {
    background: #fff;
}

.news-words {
    position: absolute;
    z-index: 2;
    width: 90%;
    left: 5%;
    bottom: 32px;
    color: #fff;
}

.news-words h4 {
    font-size: 26px;
    font-family: 'SYREGULUM';
    height: 78px;
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.news-words p {
    font-size: 16px;
    line-height: 24px;
    margin-top: 24px;
    height: 72px;
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.news-words h6 {
    width: 100%;
    color: rgba(255, 255, 255, .3);
    font-size: 14px;
    padding-right: 20px;
    margin-top: 38px;
    background: url('../images/index/arrRW.png') no-repeat right center;
}

.news-words.black h4 {
    color: #222;
}

.news-words.black p {
    color: #666
}

.news-words.black h6 {
    color: #777;
    background: url('../images/index/arrRB.png') no-repeat right center;
}

.news-wordslist {
    width: 100%;
}

.news-wordslist ul li {
    float: left;
    height: 398px;
    overflow: hidden;
    position: relative;
}

.news-wordslist ul li a {
    display: block;
    width: 100%;
    height: 100%;
}

.news-wordslist ul li:first-child {
    width: 28%;
    background: #62667a;
}

.news-wordslist ul li:nth-child(2) {
    width: 48%;
    background: #fff;
}

.news-wordslist ul li:last-child {
    width: 24%;
    background: #e3143b;
}


/* -------------------------PC端--------------------------- */

@media all and (max-width:1700px) {
    .banner-words h4 {
        font-size: 58px;
    }
    .product,
    .apply,
    .news {
        width: 80%;
    }
    .product-container,
    .apply-container,
    .news-container {
        padding: 72px 0 100px 0;
    }
    .product-picwords ul li {
        padding: 72px 0 80px 0;
    }
    .apply-top ul li {
        height: 460px;
    }
    .apply-topsize {
        height: 216px;
    }
    .apply-top ul li:nth-child(2)>div:nth-child(2) {
        margin-top: 28px;
    }
    .apply-bottom ul li,
    .apply-topminl,
    .apply-topminr {
        height: 306px;
    }
    /*******适配 +90*******/
    .ul-li-img {
        height: 216px;
        overflow: hidden;
    }
    .ul-li-content {
        text-align: center;
        /* border-bottom: 1px solid #c5c5c5; */
        font-family: 微软雅黑;
        font-size: 18px;
        color: #464545;
        padding-top: 27px;
        padding-bottom: 27px;
    }
    /*******适配*******/
    .apply-words h6 {
        font-size: 26px;
    }
    .product-words h6 {
        font-size: 26px;
    }
    .apply-bottom {
        margin-top: 30px;
    }
    .news-tablist ul li,
    .news-wordslist ul li {
        height: 366px;
    }
    .news-words h4 {
        font-size: 22px;
        height: 64px;
    }
    .banner-dhoneimg {
        width: 780px;
    }
    .banner-dhone2 {
        left: 242px;
        bottom: 250px;
        width: 228px;
    }
    .banner-dhone3 {
        left: 310px;
        bottom: 288px;
        width: 90px;
    }
    .banner-dhtwoimg {
        width: 508px;
    }
    .banner-dhtwo3 {
        top: -90px;
        left: 118px;
        width: 360px;
    }
    .banner-dhtwo2 {
        top: 2px;
        left: 112px;
        width: 342px;
    }
}

@media all and (max-width:1460px) {
    .banner-words h4 {
        font-size: 46px;
    }
    .product-container,
    .apply-container,
    .news-container {
        padding: 66px 0 84px 0;
    }
    .apply-top ul li {
        height: 400px;
    }
    .apply-topsize {
        height: 188px;
    }
    .apply-top ul li:nth-child(2)>div:nth-child(2) {
        margin-top: 24px;
    }
    .apply-top {
        margin-top: 46px;
    }
    .apply-bottom ul li,
    .apply-topminl,
    .apply-topminr {
        height: 278px;
    }
    /*******适配 +90*******/
    .ul-li-img {
        height: 160px;
        overflow: hidden;
    }
    .ul-li-content {
        text-align: center;
        /* border-bottom: 1px solid #c5c5c5; */
        font-family: 微软雅黑;
        font-size: 18px;
        color: #464545;
        padding-top: 30px;
        padding-bottom: 30px;
    }
    /*******适配*******/
    .apply-words h6 {
        font-size: 24px;
    }
    .news-wordsbox {
        margin-top: 48px;
    }
    .news-tablist ul li,
    .news-wordslist ul li {
        height: 320px;
    }
    .news-words h4 {
        font-size: 20px;
        height: 58px;
    }
    .news-words p {
        margin-top: 18px;
    }
    .news-words h6 {
        margin-top: 28px;
    }
    .banner-dhoneimg {
        width: 680px;
    }
    .banner-dhone2 {
        left: 218px;
        bottom: 222px;
        width: 188px;
    }
    .banner-dhone3 {
        left: 272px;
        bottom: 248px;
        width: 72px;
    }
    .banner-dhtwoimg {
        width: 458px;
    }
    .banner-dhtwo3 {
        top: -82px;
        left: 106px;
        width: 326px;
    }
    .banner-dhtwo2 {
        top: 2px;
        left: 100px;
        width: 308px;
    }
}

@media all and (max-width:1380px) {
    .banner-words h4 {
        font-size: 42px;
    }
    .product-container,
    .apply-container,
    .news-container {
        padding: 60px 0 68px 0;
    }
    .product-words h6 {
        font-size: 22px;
    }
    .product-words p a,
    .product-words p span {
        font-size: 16px;
    }
    .product-words p span {
        margin: 0 16px;
    }
    .product-words {
        margin-top: 30px;
    }
    .product-picwords ul li {
        padding: 54px 0 60px 0;
    }
    .product-picwords {
        margin-top: 30px;
    }
    .apply-top ul li {
        height: 340px;
    }
    .apply-topsize {
        height: 160px;
    }
    .apply-top ul li:nth-child(2)>div:nth-child(2) {
        margin-top: 20px;
    }
    .apply-top {
        margin-top: 46px;
    }
    .apply-bottom ul li,
    .apply-topminl,
    .apply-topminr {
        height: 250px;
    }
    /*******适配 +90*******/
    .ul-li-img {
        height: 130px;
        line-height: 130px;
        overflow: hidden;
    }
    .ul-li-content {
        text-align: center;
        /* border-bottom: 1px solid #c5c5c5; */
        font-family: 微软雅黑;
        font-size: 18px;
        color: #464545;
        padding-top: 35px;
        padding-bottom: 30px;
    }
    /*******适配*******/
    .apply-words h6 {
        font-size: 20px;
    }
    .apply-words p {
        font-size: 16px;
    }
    .news-tablist ul li,
    .news-wordslist ul li {
        height: 300px;
    }
    .apply-bottom {
        margin-top: 0px;
    }
    .news-wordsbox {
        margin-top: 40px;
    }
    .news-words h4 {
        font-size: 18px;
        height: 54px;
    }
    .news-words p {
        font-size: 14px;
        line-height: 22px;
        margin-top: 14px;
        height: 66px;
    }
    .news-words h6 {
        margin-top: 20px;
    }
}

@media all and (max-width:1280px) {
    .banner-words h4 {
        font-size: 38px;
    }
}

@media all and (max-width:1200px) {
    .banner-words h4 {
        font-size: 34px;
    }
    .banner-words a {
        margin-top: 28px;
    }
    .product-words p a,
    .product-words p span {
        font-size: 14px;
    }
    .product-words p span {
        margin: 0 12px;
    }
    .apply-top ul li {
        height: 300px;
    }
    .apply-topsize {
        height: 140px;
    }
    .apply-top ul li:nth-child(2)>div:nth-child(2) {
        margin-top: 20px;
    }
    .apply-top {
        margin-top: 46px;
    }
    .apply-bottom ul li,
    .apply-topminl,
    .apply-topminr {
        height: 230px;
    }
    /*******适配 +90*******/
    .ul-li-img {
        height: 120px;
        line-height: 120px;
        overflow: hidden;
    }
    .ul-li-content {
        text-align: center;
        /* border-bottom: 1px solid #c5c5c5; */
        font-family: 微软雅黑;
        font-size: 18px;
        color: #464545;
        padding-top: 35px;
        padding-bottom: 30px;
    }
    /*******适配*******/
    .apply-bottom {
        margin-top: 22px;
    }
    .apply-words p {
        font-size: 14px;
    }
    .news-words h4 {
        font-size: 16px;
        height: 46px;
    }
    .news-tablist ul li,
    .news-wordslist ul li {
        height: 260px;
    }
    .news-words p {
        font-size: 14px;
        line-height: 20px;
        margin-top: 10px;
        height: 60px;
    }
    .news-words h6 {
        margin-top: 14px;
    }
}


/* ------------------------手机端-------------------------- */

@media all and (max-width:1000px) {
    .banner-pic .banner-pc {
        display: none;
    }
    .banner-pic .banner-mb {
        display: block;
    }
    .banner-prev,
    .banner-next {
        display: none;
    }
    .banner-words {
        left: 3%;
        width: 94%;
    }
    .banner-words h4 {
        font-size: 26px;
    }
    .banner-words p {
        font-size: 14px;
    }
    .banner-words a {
        width: 140px;
        height: 44px;
        line-height: 44px;
        margin-top: 16px;
    }
    .banner .swiper-pagination {
        bottom: 14px;
    }
    .product-container,
    .apply-container,
    .news-container {
        padding: 34px 0 44px 0;
    }
    .product-picwords {
        margin-top: 20px;
    }
    .product-picwords ul li {
        width: 48.5%;
        padding: 32px 0 40px 0;
    }
    .product-words h6 {
        font-size: 20px;
    }
    .product-words {
        margin-top: 16px;
    }
    .product-words p a,
    .product-words p span {
        font-size: 12px;
    }
    .product-words p span {
        margin: 0 8px;
    }
    .apply-top ul {
        margin-left: 0;
    }
    .apply-top ul li {
        width: 100%;
        margin-left: 0;
        height: auto;
    }
    .apply-top ul li:last-child {
        margin-top: 16px;
    }
    .apply-topsize {
        height: 140px;
    }
    .apply-top ul li:nth-child(2)>div:nth-child(2) {
        margin-top: 16px;
    }
    .apply-words h6 {
        font-size: 16px;
    }
    .apply-words p {
        font-size: 12px;
    }
    .apply-bottom ul li {
        width: 48%;
        margin-top: 6px;
    }
    /*******适配 +90*******/
    .ul-li-img {
        height: 110px;
        overflow: hidden;
    }
    .ul-li-content {
        text-align: center;
        border-bottom: none;
        font-family: 微软雅黑;
        font-size: 12px;
        color: #464545;
        padding-top: 15px;
        padding-bottom: 10px;
    }
    /*******适配*******/
    .apply-bottom {
        margin-top: 12px;
    }
    .news-click ul li {
        width: 92px;
        height: 40px;
        line-height: 40px;
        font-size: 16px;
        margin: 0 4px;
    }
    .news-tablist ul li {
        width: 50% !important;
        height: 200px;
    }
    .news-words h4 {
        font-size: 14px;
        height: 40px;
    }
    .news-words p {
        font-size: 12px;
        line-height: 18px;
        margin-top: 8px;
        height: 54px;
    }
    .news-words h6 {
        margin-top: 10px;
        font-size: 12px;
    }
    .news-words {
        bottom: 16px;
    }
    .news-wordslist ul li {
        width: 100% !important;
        height: 180px;
    }
    .news-wordsbox {
        margin-top: 28px;
    }
    .apply-top {
        margin-top: 32px;
    }
    .apply-topminl,
    .apply-topminr {
        width: 49%;
    }
    .banner-dhoneimg,
    .banner-dhtwoimg {
        display: none;
    }
}