@charset "utf-8";




.sewing {
    height: 100px;
}

.header {
    color: #fff;
    font-size: 16px;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    transition: all ease-in-out .8s;
}

.header.on,
.header.active,
.header:hover {
    color: #666;
    background: #fff;
}

.header .wrapper {
    align-items: center;
}

.header h1 {
    width: 217px;
    height: 43px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left center;
    background-image: url(../images/logo-d.png);
}

.header.on h1,
.header.active h1,
.header:hover h1 {
    background-image: url(../images/logo.png);
}

.header h1 a {
    text-indent: -9999px;
    width: 100%;
    height: 100%;
    display: inline-block;
}

.header .nav {
    display: flex;
    margin: 0 auto;
}

.header .nav li {
    line-height: 100px;
    height: 100px;
    position: relative;
}

.header .nav li:not(:last-child) {
    margin-right: 66px;
}

.header .nav li.active,
.header .nav li:hover {
    color: #fff;
}

.header.on .nav li.active,
.header.active .nav li.active,
.header:hover .nav li
{
    color: var(--theme-color);
}

.header .nav li::after {
    content: '';
    width: 0;
    height: 4px;
    left: 0;
    bottom: 0;
    transition: all ease-in-out .3s;
    background: #fff;
}

.header.on .nav li::after,
.header.active .nav li::after,
.header:hover .nav li::after {
    background: #000;
}

.header .nav li.active::after,
.header .nav li:hover::after {
    width: 100%;
}

.header .nav li a {
    height: 100%;
    display: inline-block;
}

.header .switch {
    text-transform: uppercase;
}

.header .search-icon {
    cursor: pointer;
    width: 24px;
    height: 24px;
    margin-left: 26px;
    background-position: right center;
    background-image: url(../images/search-d.png);
}

.header.on .search-icon,
.header.active .search-icon,
.header:hover .search-icon {
    background-image: url(../images/search.png);
}

.header .form {
    font-size: 0;
    width: 100%;
    padding: 20px 0;
    display: none;
    position: fixed;
    left: 0;
    top: 100px;
    z-index: 9999;
    background: rgba(0, 0, 0, .4);
}

.header .form form {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    background: #fff;
}

.header .form input {
    color: #333;
    font-size: 15px;
    width: 100%;
    height: 50px;
    padding-left: 25px;
    padding-right: 45px;
}

.header .form button {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 25px;
    background: url(../images/search.png) no-repeat right center/contain;
}




.header .nav li .drop-down {
    text-align: center;
    width: 100%;
    display: none;
    position: fixed;
    top: 100px;
    left: 0;
    z-index: 999;
    border-top: 1px solid #dcdcdc;
    background: #fff;
}

.header .nav li .item {
    max-width: 1300px;
    display: inline-flex;
    flex-wrap: wrap;
    padding: 22px 42px;
    margin: 0 auto;
}

.header .nav li .item .li {
    color: #666;
    font-size: 16px;
    line-height: 36px;
}

.header .nav li .item .li:not(:last-child) {
    margin-right: 50px;
}

.header .nav li .item .li:hover {
    color: var(--theme-color);
    font-weight: bold;
}

.header .nav li .item .li a {
    width: 100%;
    height: 100%;
    display: inline-block;
}




.footer-nav {
    background: #1b1b1b;
}

.footer-nav ul {
    max-width: 1300px;
    display: flex;
    justify-content: center;
    margin: 0 auto;
}

.footer-nav ul li {
    color: #fff;
    font-size: 16px;
    line-height: 100px;
    position: relative;
}

.footer-nav ul li:not(:last-child) {
    margin-right: 130px;
}

.footer-nav ul li::after {
    content: '';
    width: 0;
    height: 4px;
    left: 0;
    bottom: 0;
    transition: all .5s;
    background: #fff;
}

.footer-nav ul li:hover::after {
    width: 100%;
}

.footer-nav ul li a {
    height: 100%;
    display: inline-block;
}




.footer {
    color: #fff;
    font-size: 16px;
    padding-top: 75px;
    background: #111;
}

.footer .item {
    max-width: 1300px;
    display: flex;
    margin: 0 auto 100px;
}

.footer .content em {
    font-size: 36px;
    font-weight: bold;
    display: block;
    margin-bottom: 13px;
}

.footer .content p {
    font-size: 15px;
    margin-bottom: 40px;
}

.footer .content form {
    max-width: 310px;
    display: block;
    position: relative;
}

.footer .content form input {
    color: #818080;
    font-size: 15px;
    height: 45px;
    padding: 0 50px 0 25px;
    border-radius: 50px;
    border: 1px solid #707070;
}

.footer .content form button {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 25px;
    background: url(../images/foot-search.png) no-repeat right center/contain;
}

.footer .series {
    width: 635px;
    margin-left: auto;
}

.footer .series ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.footer .series ul li {
    line-height: 40px;
    display: inline-block;
}

.footer .series ul li a {
    display: inline-block;
}

.footer .series ul li a:hover {
    text-decoration: underline;
}

.footer .share {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
    border-top: 1px solid #313131;
    border-bottom: 1px solid #313131;
}

.footer .share .li {
    cursor: pointer;
    width: 45px;
    height: 45px;
    position: relative;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.footer .share .li:not(:last-child) {
    margin-right: 75px;
}

.footer .share .li:nth-child(1) {
    background-image: url(../images/wechat.png);
}

.footer .share .li:nth-child(2) {
    background-image: url(../images/wechat.png);
}

.footer .share .li:nth-child(3) {
    background-image: url(../images/wechat.png);
}

.footer .share .li:nth-child(4) {
    background-image: url(../images/video.png);
}

.footer .share .li .img {
    width: 120px;
    height: 120px;
    display: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 50px;
}

.footer .share .li .img img {
    width: 100%;
    height: 100%;
}

.footer .share .li:hover .img {
    display: block;
}

.footer .copy {
    color: #818080;
    font-size: 15px;
    text-align: center;
    line-height: 30px;
    padding: 45px 0;
}




.unity-news .list:not(:last-child) {
    margin-bottom: 90px;
}

.unity-news .list a {
    width: 100%;
    display: inline-flex;
}

.unity-news .list .article {
    color: #888;
    font-size: 15px;
    width: 800px;
    padding-bottom: 32px;
    margin-top: auto;
    border-bottom: 1px solid #d2d2d2;
}

.unity-news .list .article span {
    display: block;
    margin-bottom: 23px;
}

.unity-news .list .article h4 {
    color: var(--theme-color);
    font-size: 24px;
    margin-bottom: 16px;
}

.unity-news .list:hover .article h4 {
    text-decoration: underline;
}

.unity-news .list .article p {
    line-height: 30px;
    margin-bottom: 31px;
}

.unity-news .list .article em {
    color: var(--theme-color);
}

.unity-news .list .img {
    width: 410px;
    height: 250px;
    margin-left: auto;
}




.news {
    padding-top: 85px;
}


.news .page {
    padding: 100px 0 90px;
}




.newsv {
    padding: 100px 0;
    background: #fff;
}

.newsv .title {
    margin-bottom: 30px;
    text-align: center;
}

.newsv .title h2 {
    color: #444;
    font-size: 26px;
    line-height: 30px;
    margin-bottom: 15px;
}

.newsv .title em {
    color: #999;
    font-size: 18px;
    display: block;
}

.newsv .text {
    color: #666;
    font-size: 16px;
    line-height: 30px;
    padding-bottom: 45px;
    margin-bottom: 45px;
    border-bottom: 1px solid #d2d2d2;
}

.newsv .agrop {
    text-align: center;
}

.newsv .agrop a {
    color: #666;
    font-size: 18px;
    display: inline-block;
    position: relative;
    margin-right: 101px;
}

.newsv .agrop a:last-child {
    margin-right: 0;
}

.newsv .agrop a::after {
    content: '';
    position: absolute;
    top: 50%;
    left: auto;
    right: -51px;
    transform: translate(0, -50%);
    width: 1px;
    height: 20px;
    background-color: #bfbfbf;
}

.newsv .agrop a:last-child::after {
    display: none;
}

.newsv .agrop a:hover {
    color: var(--theme-color);
    text-decoration: underline;
}




.case {
    padding-top: 65px;
    background: #f4f4f4;
}

.case .list-container {
    gap: 40px 35px;
}

.case .list {
    text-align: center;
    background: #fff;
}

.case .list .img {
    height: 260px;
}

.case .list .name {
    padding: 22px 15px;
}

.case .list .name h4 {
    color: #040404;
    font-size: 18px;
    margin-bottom: 8px;
}

.case .list .name em {
    color: #888;
    font-size: 15px;
}

.case .page {
    padding: 85px 0 80px;
}




.contact {
    padding: 85px 0 92px 0;
}

.contact .title {
    text-align: center;
    margin-bottom: 64px;
}

.contact .title h2 {
    color: #222;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 12px;
}

.contact .title p {
    color: #7b7b7b;
    font-size: 16px;
}

.contact .list-container {
    gap: 0 50px;
}

.contact .list {
    color: #333;
    font-size: 16px;
    text-align: center;
    padding: 48px 15px 52px;
    transition: all .2s;
    background: #fff;
}

.contact .list:hover {
    color: #fff;
    background: var(--theme-color);
}

.contact .list .icon {
    width: 45px;
    height: 45px;
    margin: 0 auto 32px;
}

.contact .list:nth-child(1) .icon {
    background-image: url(../images/phone.png);
}

.contact .list:nth-child(2) .icon {
    background-image: url(../images/address.png);
}

.contact .list:nth-child(3) .icon {
    background-image: url(../images/email.png);
}

.contact .list:hover .icon {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1)
}

.contact .list h4 {
    margin-bottom: 9px;
}




.message {
    padding: 103px 0 128px;
}

.message .theme-title {
    margin-bottom: 70px;
}

.message .group {
    display: grid;
    grid-template-columns: repeat(2 , 1fr);
    gap: 0 60px;
}

.message .infor {
    margin-bottom: 71px;
}

.message .content {
    margin-bottom: 114px;
}

.message .label {
    padding: 0 13px;
    border-bottom: 1px solid #878787;
}

.message .label span {
    color: #000;
    font-size: 16px;
}

.message .label input,
.message .label textarea {
    color: #666;
    font-size: 16px;
    width: 100%;
    height: 56px;
}

.message .label textarea {
    line-height: 56px;
    resize: none;
}

.message .subbtn .label {
    position: relative;
}

.message .subbtn .label .captcha {
    width: 170px;
    height: 60px;
    position: absolute;
    right: 0;
    bottom: 6px;
}

.message .subbtn button {
    color: #fff;
    font-size: 16px;
    height: 58px;
    margin-top: auto;
    border-radius: 7px;
    transition: all ease-in-out .3s;
    background: var(--theme-color);
}

.message .subbtn button:hover {
    background: #333;
}




.unity-product .list-container {
    display: grid;
    gap: 25px;
}

.unity-product .list {
    position: relative;
    transition: all ease-in-out .3s;
    background: #fff;
}

.unity-product .list:hover {
    box-shadow: 0px 0px 10px 5px #dcdcdc;
}

.unity-product .list .icon {
    width: 54px;
    height: 24px;
    position: absolute;
    top: 14px;
    right: 14px;
    background: url(../images/hot.png) no-repeat right center/contain;
}

.unity-product .list .img {
    height: 295px;
    border-bottom: 1px solid #dcdcdc;
}

.unity-product .list .name {
    text-align: center;
    padding: 20px 15px 23px;
}

.unity-product .list .name h4 {
    color: #040404;
    font-size: 16px;
    margin-bottom: 10px;
}

.unity-product .list .name p {
    color: #888;
    font-size: 14px;
}




.product {
    padding-top: 80px;
}

.product .product-select {
    width: 320px;
    height: 100%;
    padding: 45px 25px 35px;
    border-radius: 15px;
    background: #fff;
}

.product .product-select h2 {
    color: var(--theme-color);
    font-size: 20px;
    padding: 0 0 19px 40px;
    margin-bottom: 9px;
    border-bottom: 1px solid #dcdcdc;
    background: url(../images/select.png) no-repeat 0 3px/25px 22px;
}

.product .product-select h4 a,
.product .product-select ul li a
{
    padding-left: 25px;
    background-size: 17px 17px;
    background-repeat: no-repeat;
    background-position: left center;
    background-image: url(../images/dot.png);
}

.product .product-select h4 {
    color: #222;
    font-size: 16px;
    line-height: 54px;
    padding-right: 25px;
    position: relative;
}

.product .product-select h4::after {
    content: '';
    width: 15px;
    height: 15px;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    background-position: right center;
    background-image: url(../images/launched.png);
}

.product .product-select .option.active h4::after {
    background-image: url(../images/contraction.png);
}

.product .product-select h4 a {
    width: 100%;
    display: inline-block;
}

.product .product-select .option.active h4 a {
    background-image: url(../images/dot-active.png);
}
.product .product-select ul{
	display:none;
}
.product .product-select .option.active ul{
	display:block;
}


.product .product-select ul li {
    color: #666;
    font-size: 15px;
    line-height: 40px;
    padding-left: 25px;
}

.product .product-select ul li.active {
    color: #222;
}

.product .product-select ul li a {
    display: inline-block;
}

.product .product-select ul li.active a {
    background-image: url(../images/dot-active.png);
} 

.product .list-container {
    width: 950px;
    height: 100%;
    grid-template-columns: repeat(3, 1fr);
    margin-left: auto;
}

.product .page {
    padding: 90px 0 85px;
}




.introduction {
    padding: 45px 0 40px;
}

.introduction .breadcrumbs {
    margin-bottom: 42px;
}

.introduction .banner-container {
    width: 710px;
}

.introduction .gallery-slide {
    height: 510px;
    margin-bottom: 25px;
    background: #fff;
}

.introduction .hand-shape {
    position: relative;
}

.introduction .hand-shape .carousel-arrow {
    width: 25px;
    height: 30px;
    margin-top: 0;
    top: 50%;
    transform: translateY(-50%);
    background-size: contain;
}

.introduction .hand-shape .swiper-button-prev {
    left: 0;
    background-position: left center;
    background-image: url(../images/introd-carousel-prev.png);
}

.introduction .hand-shape .swiper-button-prev:hover {
    background-image: url(../images/introd-carousel-prev2.png);
}

.introduction .hand-shape .swiper-button-next {
    right: 0;
    background-position: right center;
    background-image: url(../images/introd-carousel-next.png);
}

.introduction .hand-shape .swiper-button-next:hover {
    background-image: url(../images/introd-carousel-next2.png);
}

.introduction .thumb-slide {
    width: 605px;
}

.introduction .thumb-slide .swiper-slide {
    cursor: pointer;
    height: 104px;
    border: 1px solid transparent;
    background: #fff;
}

.introduction .thumb-slide .swiper-slide-thumb-active {
    border: 1px solid var(--theme-color);
}

.introduction .content {
    color: #333;
    width: 535px;
    margin-left: auto;
}

.introduction .content h2 {
    font-size: 30px;
    margin-bottom: 34px;
}

.introduction .content .parameter {
    margin-bottom: 60px;
}

.introduction .content .parameter .label:not(:last-child) {
    margin-bottom: 31px;
}

.introduction .content .parameter h4 {
    font-size: 16px;
    position: relative;
    padding-bottom: 13px;
    border-bottom: 1px solid #dcdcdc;
}

.introduction .content .parameter h4::after {
    content: '';
    width: 15px;
    height: 15px;
    top: 3px;
    right: 0;
    background-position: right center;
    background-image: url(../images/launched.png);
}

.introduction .content .parameter h4.active::after {
    background-image: url(../images/contraction.png);
}

.introduction .content .parameter .text {
    color: #666;
    font-size: 15px;
    line-height: 30px;
    display: none;
    margin-top: 10px;
}

.introduction .content .parameter .label:nth-child(1) .text {
    display: block;
}

.introduction .content .button {
    display: flex;
}

.introduction .content .button a {
    color: var(--theme-color);
    font-size: 15px;
    text-align: center;
    line-height: 48px;
    width: 170px;
    height: 48px;
    transition: all ease-in-out .3s;
    border: 1px solid var(--theme-color);
    background: #fff;
}

.introduction .content .button a:not(:last-child) {
    margin-right: 12px;
}

.introduction .content .button a:hover {
    color: #fff;
    background: var(--theme-color);
}




.details {
    padding: 40px 0 35px;
}

.details .title {
    margin-bottom: 55px;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
}

.details .title .item {
    max-width: 1300px;
    margin: 0 auto;
}

.details .title h2 {
    color: #fff;
    font-size: 18px;
    line-height: 65px;
    display: inline-block;
    padding: 0 90px;
    background: #222;
}   

.details .article {
    color: #222;
    font-size: 15px;
    line-height: 32px;
    max-width: 1300px;
    margin: 0 auto;
}




.productv {
    padding: 35px 0 95px;
}

.productv h2 {
    color: #222;
    font-size: 26px;
    text-align: center;
    margin-bottom: 46px;
}

.productv .list-container {
    grid-template-columns: repeat(4, 1fr);
}




.about {
    overflow: hidden;
    padding: 149px 0 164px;
    position: relative;
}

.about::after {
    content: '';
    width: 480px;
    height: 100%;
    top: 0;
    right: 0;
    background: url(../images/about-bg-img.jpg) no-repeat right center/cover;
}

.about .theme-about-title {
    margin-bottom: 36px;
}

.about .article {
    color: var(--theme-color);
    font-size: 15px;
    line-height: 32px;
}




.culture {
    padding: 100px 0 69px;
}

.culture .group {
    display: flex;
    background: #f4f4f4;
}

.culture .group .img,
.culture .group .content {
    width: 50%;
}

.culture .group .img {
    height: 450px;
}

.culture .group:nth-child(2n) .img {
    order: 2;
}

.culture .group .content {
    padding: 80px 48px;
}

.culture .group:nth-child(2n) .content {
    order: 1;
}

.culture .group .content h4 {
    color: var(--theme-color);
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 14px;
}

.culture .group .content .introd {
    color: #666;
    font-size: 16px;
    line-height: 36px;
}




.course {
    padding: 135px 0 85px;
}

.course .theme-about-title {
    margin-bottom: 78px;
}

.course .around-btn {
    display: inline-block;
    position: relative;
}

.course .around-btn::after {
    content: '';
    width: 100%;
    height: 1px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: #bfbfbf;
}

.course .carousel-arrow {
    width: 23px;
    height: 28px;
    margin-top: 0;
    background-position: center;
}

.course .swiper-button-prev {
    margin-right: 0;
    margin-bottom: 50px;
    background-image: url(../images/course-carousel-prev.png);
}

.course .swiper-button-next {
    background-image: url(../images/course-carousel-next.png);
}

.course-slide {
    width: 910px;
    height: 765px; 
    margin-left: auto;
    border-top: 1px solid #040404;
}

.course-slide .swiper-slide {
    display: flex;
    align-items: center;
}

.course-slide .swiper-slide:not(:nth-child(9n)) {
    border-bottom: 1px solid #dcdcdc;
}

.course-slide .swiper-slide:nth-child(10n) {
     border-top: 1px solid #dcdcdc;
}

.course-slide span {
    color: #222;
    font-size: 28px;
}

.course-slide p {
    color: #666;
    font-size: 16px;
    line-height: 28px;
    width: calc(100% - 105px);
    margin-left: auto;
}




.honor {
    padding: 90px 0 110px;
    background: #f5f5f5;
}

.honor .theme-about-title {
    margin-bottom: 47px;
}

.honor-slide .swiper-wrapper {
    margin-bottom: 69px;
}

.honor-slide .swiper-slide {
    height: auto;
    background: #fff;
}

.honor-slide a {
    width: 100%;
    padding: 40px 40px 24px;
    display: inline-block;
}

.honor-slide .img {
    height: 270px;
    margin-bottom: 20px;
}

.honor-slide p {
    color: #333;
    font-size: 16px;
    text-align: center;
}

.honor-slide .swiper-scrollbar {
    height: 1px;
    background: #cdcdcd;
}

.honor-slide .swiper-scrollbar-drag {
    height: 7px;
    margin-top: -3px;
    border-radius: 0;
    background: #222;
}




.theme-index-title {
    color: var(--theme-color);
    font-size: 30px;
    font-weight: bold;
}




.banner .around-btn {
    color: #fff;
    font-size: 15px;
    position: absolute;
    left: 50%;
    bottom: 50px;
    z-index: 999;
    transform: translateX(-50%);
}

.banner .around-btn .carousel-arrow {
    width: 10px;
    height: 17px;
    margin-top: 0;
}

.banner .around-btn .swiper-button-prev {
    margin-right: 20px;
    background-image: url(../images/banner-carousel-prev.png);
}

.banner .around-btn .swiper-button-next {
    margin-left: 20px;
    background-image: url(../images/banner-carousel-next.png);
}

.banner .around-btn .swiper-scrollbar {
    width: 180px;
    height: 2px;
    margin: 0 10px;
    background: rgba(255, 255, 255, .3);
}

.banner .around-btn .swiper-scrollbar-drag {
    background: #fff;
}




.index-about {
    color: var(--theme-color);
    overflow: hidden;
    padding-bottom: 205px;
    margin-top: 100px;
    position: relative;
}

.index-about::after {
    content: '';
    width: 480px;
    height: 100%;
    top: 0;
    right: 0;
    background: url(../images/about-bg-img.jpg) no-repeat right center/cover;
}

.index-about .theme-index-title {
    margin-bottom: 170px;
}

.index-about .container {
    max-width: 945px;
    display: flex;
}

.index-about .left-content {
    display: flex;
    flex-direction: column;
}

.index-about .title h4 {
    font-size: 30px;
    font-family: Medium;
}

.index-about .title p {
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 52px;
}

.index-about .omit-icon {
    width: 39px;
    height: 8px;
    margin-top: auto;
    background: url(../images/omit.png) no-repeat left center/contain;
}

.index-about .right-content {
    max-width: 650px;
    margin-left: auto;
}

.index-about .article {
    font-size: 15px;
    line-height: 32px;
    margin-bottom: 94px;
}

.index-about .see-more {
    color: #fff;
    font-size: 15px;
    text-align: center;
    line-height: 50px;
    width: 210px;
    height: 50px;
    display: block;
    transition: all ease-in-out .3s;
    background: var(--theme-color);
}

.index-about .see-more:hover {
    background: #333;
}




.index-product {
    padding: 113px 0 135px;
    background: #e9edf0;
}

.index-product .theme-index-title {
    max-width: 1300px;
    margin: 0 auto 60px;
}

.index-product .hd {
    margin-bottom: 65px;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
}

.index-product .section {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
}

.index-product .thumb-slide {
    width: 1225px;
    margin: 0;
    border-left: 1px solid #222;
}

.index-product .thumb-slide .swiper-slide {
    color: #222;
    font-size: 18px;
    text-align: center;
    line-height: 65px;
    cursor: pointer;
    height: 65px;
    border-right: 1px solid #222;
}

.index-product .thumb-slide .swiper-slide-thumb-active {
    color: #fff;
    background: #222;
}

.index-product .section .swiper-button-next {
    width: 20px;
    height: 20px;
    margin-top: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    background-image: url(../images/introd-carousel-next2.png);
}

.index-product .container {
    max-width: 1300px;
    display: flex;
    align-items: center;
    margin: 0 auto;
    position: relative;
}

.index-product .container::after {
    content: '';
    width: 39px;
    height: 8px;
    top: 0;
    right: 0;
    background: url(../images/omit.png) no-repeat top  right/contain;
}

.index-product .gallery-slide {
    width: 880px;
    height: 530px;
    margin: 0;
}

.index-product .gallery-slide .img {
    position: relative;
}

.index-product .gallery-slide .img::before,
.index-product .gallery-slide .img::after {
    opacity: 0;
    position: absolute;
    transition: all ease-in-out .3s;
}

.index-product .gallery-slide .img::before {
    content: 'SEE MORE';
    color: #fff;
    font-size: 16px;
    top: 50%;
    left: 50%;
    z-index: 2;
    transform: translate(-50%, -50%);
}

.index-product .gallery-slide .img::after {
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    background: rgba(0, 0, 0, .3);
}

.index-product .gallery-slide .swiper-slide:hover .img::before,
.index-product .gallery-slide .swiper-slide:hover .img::after {
    opacity: 1;
}

.index-product .article {
    color: var(--theme-color);
    font-size: 15px;
    line-height: 40px;
    width: 340px;
    padding: 12px 65px;
    margin-left: auto;
    position: relative;
}

.index-product .article::before,
.index-product .article::after {
    content: '';
    width: 28px;
    height: 24px;
    position: absolute;
}

.index-product .article::before {
    top: 0;
    left: 0;
    background-image: url(../images/top-cited.png);
}

.index-product .article::after {
    bottom: 0;
    right: 0;
    background-image: url(../images/bottom-cited.png);
}




.index-news {
    padding: 120px 0;
}

.index-news .theme-index-title {
    margin-bottom: 99px;
}