:root {
    --body-font: Helvetica Neue,Helvetica,PingFang SC,Hiragino Sans GB,Microsoft YaHei,Noto Sans CJK SC,WenQuanYi Micro Hei,Arial,sans-serif;
    --heading-font: "Roboto Slab", serif;
    --heading-font2: "Marcellus", serif;
    --theme-color: #2F6DB0;
    --theme-color2: #FF2768;
    --theme-bg-light: #F6F6F6;
    --color-dark: #20232A;
    --color-gray: #F6F6F6;
    --body-text-color: #757F95;
    --color-white: #ffffff;
    --hero-overlay: #98c00f;
    --slider-arrow-bg: rgba(140, 82, 255, .2);
    --box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
    --box-shadow2: 0 0 15px rgba(0, 0, 0, 0.17);
    --transition: all .5s ease-in-out;
    --transition2: all .3s ease-in-out;
    --border-info-color: rgba(0, 0, 0, 0.08);
    --border-info-color2: rgba(0, 0, 0, 0.05);
    --border-white-color: rgba(255, 255, 255, 0.08);
    --border-white-color2: rgba(255, 255, 255, 0.05);
    --footer-bg: #0B0917;
    --footer-text-color: #F5FAFF
}

*,*:before,*:after {
    box-sizing: inherit
}

* {
    scroll-behavior: inherit!important
}

html,body {
    height: auto;
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--body-font);
    font-style: normal;
    font-size: 16px;
    font-weight: 400;
    color: var(--body-text-color);
    line-height: 1.8
}

a {
    color: var(--color-dark);
    display: inline-block
}

a,a:active,a:focus,a:hover {
    outline: none;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
    text-decoration: none
}

a:hover {
    color: var(--color-blue)
}

ul {
    margin: 0;
    padding: 0
}

li {
    list-style: none
}

h1,h2,h3,h4,h5,h6 {
    color: var(--color-dark);
    margin: 0;
    font-weight: 600;
    /*font-family: var(--heading-font);*/
    line-height: 1.2
}

h1 {
    font-size: 40px
}

h2 {
    font-size: 35px
}

h3 {
    font-size: 28px
}

h4 {
    font-size: 22px
}

h5 {
    font-size: 18px
}

h6 {
    font-size: 16px
}

p {
    margin: 0
}

.img,img {
    max-width: 100%;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
    height: auto
}

label {
    color: #999;
    cursor: pointer;
    font-weight: 400
}

*::-moz-selection {
    background: #d6b161;
    color: var(--color-white);
    text-shadow: none
}

::-moz-selection {
    background: #555;
    color: var(--color-white);
    text-shadow: none
}

::selection {
    background: #555;
    color: var(--color-white);
    text-shadow: none
}

*::-moz-placeholder {
    color: #999;
    font-size: 16px;
    opacity: 1
}

*::placeholder {
    color: #999;
    font-size: 16px;
    opacity: 1
}
.theme-btn {
    font-size: 16px;
    color: var(--color-white);
    padding: 10px 24px;
    transition: all .5s;
    text-transform: capitalize;
    position: relative;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    vertical-align: middle;
    overflow: hidden;
    border: none;
    background: var(--theme-color);
    box-shadow: var(--box-shadow);
    z-index: 1;
}
.preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    background: var(--color-white);
    top: 0;
    left: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center
}

.loader-ripple {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px
}

.loader-ripple div {
    position: absolute;
    border: 4px solid var(--theme-color);
    opacity: 1;
    border-radius: 50%;
    animation: loader-ripple 1s cubic-bezier(0,.2,.8,1) infinite
}

.loader-ripple div:nth-child(2) {
    animation-delay: -.5s
}

@keyframes loader-ripple {
    0% {
        top: 36px;
        left: 36px;
        width: 0;
        height: 0;
        opacity: 1
    }

    100% {
        top: 0;
        left: 0;
        width: 72px;
        height: 72px;
        opacity: 0
    }
}

.ovrflow-hidden {
    overflow: hidden
}

.position-relative {
    position: relative;
    z-index: 1
}

.text-right {
    text-align: right
}

.space-between {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.c-pd {
    padding: 0 7rem
}

.s-pd {
    padding: 0 12rem
}

.h-100 {
    height: 100%
}

.h-100vh {
    height: 100vh
}

.bg {
    background: var(--theme-bg-light)
}

.pt-0 {
    padding-top: 0
}

.pt-10 {
    padding-top: 10px
}

.pt-20 {
    padding-top: 20px
}

.pt-30 {
    padding-top: 30px
}

.pt-40 {
    padding-top: 40px
}

.pt-50 {
    padding-top: 50px
}

.pt-60 {
    padding-top: 60px
}

.pt-70 {
    padding-top: 70px
}

.pt-80 {
    padding-top: 80px
}

.pt-90 {
    padding-top: 90px
}

.pt-100 {
    padding-top: 100px
}

.pt-110 {
    padding-top: 110px
}

.pt-120 {
    padding-top: 120px
}

.pb-0 {
    padding-bottom: 0
}

.pb-10 {
    padding-bottom: 10px
}

.pb-20 {
    padding-bottom: 20px
}

.pb-30 {
    padding-bottom: 30px
}

.pb-40 {
    padding-bottom: 40px
}

.pb-50 {
    padding-bottom: 50px
}

.pb-60 {
    padding-bottom: 60px
}

.pb-70 {
    padding-bottom: 70px
}

.pb-80 {
    padding-bottom: 80px
}

.pb-90 {
    padding-bottom: 90px
}

.pb-100 {
    padding-bottom: 100px
}

.pb-110 {
    padding-bottom: 110px
}

.pb-120 {
    padding-bottom: 120px
}

.py-80 {
    padding: 80px 0
}

.py-90 {
    padding: 90px 0
}

.py-100 {
    padding: 100px 0
}

.py-110 {
    padding: 110px 0
}

.py-120 {
    padding: 120px 0
}

.mt-0 {
    margin-top: 0
}

.mt-10 {
    margin-top: 10px
}

.mt-20 {
    margin-top: 20px
}

.mt-30 {
    margin-top: 30px
}

.mt-40 {
    margin-top: 40px
}

.mt-50 {
    margin-top: 50px
}

.mt-60 {
    margin-top: 60px
}

.mt-70 {
    margin-top: 70px
}

.mt-80 {
    margin-top: 80px
}

.mt-90 {
    margin-top: 90px
}

.mt-100 {
    margin-top: 100px
}

.mt-110 {
    margin-top: 110px
}

.mt-120 {
    margin-top: 120px
}

.mb-0 {
    margin-bottom: 0
}

.mb-10 {
    margin-bottom: 10px
}

.mb-20 {
    margin-bottom: 20px
}

.mb-30 {
    margin-bottom: 30px
}

.mb-40 {
    margin-bottom: 40px
}

.mb-50 {
    margin-bottom: 50px
}

.mb-60 {
    margin-bottom: 60px
}

.mb-70 {
    margin-bottom: 70px
}

.mb-80 {
    margin-bottom: 80px
}

.mb-90 {
    margin-bottom: 90px
}

.mb-100 {
    margin-bottom: 100px
}

.mb-110 {
    margin-bottom: 110px
}

.mb-120 {
    margin-bottom: 120px
}

.my-80 {
    margin: 80px 0
}

.my-90 {
    margin: 90px 0
}

.my-100 {
    margin: 100px 0
}

.my-110 {
    margin: 110px 0
}

.my-120 {
    margin: 120px 0
}
#banner .carousel-item{
    height: 680px;
    background-repeat:no-repeat;
    background-position: center center;
    background-size: cover;
}
.box{
    max-width: 1920px;
    margin: 0 auto;
}
.main{
    margin-top: -170px;
}

.navbar {
    padding-top: 0;
    padding-bottom: 0;
    z-index: 4;
    margin-left: 100px;
}
.header{
	position: relative;
	max-width: 1788px;
	height: 105px;
	background: rgba(255, 255, 255, .80);
	border-radius: 8px;
	/*opacity: 0.9;*/ 
	margin: 0 auto;
	margin-top: 65px;
	z-index: 999;
	display: flex;
	align-items: center;
}
.header .logo{
	display: flex;
	align-items: center;
	margin-left: 50px;
}
.header .logo-img img{
	vertical-align: middle;
	height: 37px;
}
.header .company-title{
	font-size: 22px;
	color: #000;
	font-weight: bold;
	margin-left: 16px;
}

@media all and (max-width: 1920px) {
    .header{
    	width: 100%;
    	border-radius:0;
    	height: 80px;
    }
}

@media all and (max-width: 1400px) {
    .company-title{
        display: none;
    }
}
@media all and (max-width: 1100px) {
    .header .logo{
        display: none;
    }
}

@media all and (max-width: 991px) {
    .header{
        margin: 0;
        height: 40px;
        display: block;
        background: var(--theme-color);
    }
    .navbar{
        margin: 0;
    }
}
.fixed-top {
    position: fixed;
    /*top: 50px;*/
    margin: 0 auto;
    height: 50px;
    background: rgba(255, 255, 255, .90);
    box-shadow: var(--box-shadow2);
    animation: slide-down .7s;
    /*max-width: 100%;*/
    
}
@media all and (max-width: 991px) {
   .fixed-top{
        height: 38px;
        background: var(--theme-color);
        box-shadow: var(--box-shadow2);
    }
}
@keyframes slide-down {
    0% {
        transform: translateY(-100%)
    }

    100% {
        transform: translateY(0)
    }
}

.navbar .navbar-brand .logo-display {
    display: block
}

.navbar .navbar-brand .logo-scrolled {
    display: none
}

.navbar.fixed-top .navbar-brand .logo-display {
    display: none
}

.navbar.fixed-top .navbar-brand .logo-scrolled {
    display: block
}

.navbar .navbar-toggler:focus {
    outline: none;
    box-shadow: none
}

.navbar-toggler-mobile-icon {
    display: inline-block;
    width: inherit;
    height: inherit
}

.navbar-brand {
    margin-right: 0
}

.navbar-brand img {
    width: 200px
}

.navbar .dropdown-toggle::after {
    display: inline-block;
    margin-left: 5px;
    vertical-align: baseline;
    font-family: 'FontAwesome';
    content: "\f107";
    font-weight: 600;
    border: none;
    font-size: 14px
}

@media all and (max-width: 1199px) {
    .nav-right {
        margin-left:25px!important
    }

    .navbar .nav-item .nav-link {
        margin-right: 30px
    }

    .navbar .nav-right-btn {
        display: none
    }
}

@media all and (min-width: 992px) {
    .navbar .nav-item .nav-link {
        margin-right:30px;
        padding: 15px 0;
        font-size: 16px;
        font-weight: 500;
        color: #1C1C1C;
        text-transform: capitalize
    }

    .navbar .nav-item:last-child .nav-link {
        margin-right: 0
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        padding: 10px;
        margin-top: 0;
        left: -15px;
        border-radius: 15px;
        border: none;
        background: var(--color-white);
        width: 220px;
        box-shadow: var(--box-shadow);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition2)
    }

    .navbar .nav-item .dropdown-menu .dropdown-item {
        font-size: 16px;
        padding: 6px 15px;
        font-weight: 500;
        color: var(--color-dark);
        position: relative;
        overflow: hidden;
        border-radius: 10px;
        text-transform: capitalize;
        transition: var(--transition2);
        z-index: 1
    }

    .navbar .nav-item .dropdown-menu .dropdown-item:hover {
        background: var(--theme-color);
        color: var(--color-white);
        padding-left: 32px
    }

    .navbar .nav-item .dropdown-menu .dropdown-item::before {
        content: "//";
        position: absolute;
        left: 15px;
        top: 6px;
        color: var(--color-white);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: -1
    }

    .navbar .nav-item .dropdown-menu .dropdown-item:hover::before {
        opacity: 1;
        visibility: visible
    }

    .navbar .nav-item .nav-link {
        position: relative
    }

    .navbar .nav-item .nav-link::before {
        content: "";
        position: absolute;
        left: 0;
        bottom: 8px;
        width: 0;
        height: 2px;
        transition: var(--transition2)
    }

    .navbar .nav-item .nav-link.active::before,.navbar .nav-item:hover .nav-link::before {
        background: var(--theme-color);
        width: 100%
    }

    .navbar.fixed-top .nav-item .nav-link.active::before,.navbar.fixed-top .nav-item:hover .nav-link::before {
        background: var(--color-white)
    }

    .navbar .nav-item .nav-link.active,.navbar .nav-item:hover .nav-link {
        color: #1C1C1C;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transition: .3s;
        opacity: 1;
        visibility: visible;
        top: 100%;
        transform: rotateX(0deg)
    }

    .navbar .dropdown-menu-end {
        right: 0;
        left: auto
    }

    .navbar .dropdown-menu.fade-down {
        top: 80%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%
    }

    .navbar .dropdown-menu.fade-up {
        top: 140%
    }

    .navbar #main_nav {
        justify-content: space-between
    }

    .nav-right {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        margin-left: 45px
    }

    .nav-right-link {
        position: relative;
        font-size: 20px;
        color: var(--color-white);
        transition: var(--transition)
    }

    .nav-right-link:hover {
        color: var(--theme-color)!important
    }

    .nav-right .search-btn .nav-right-link {
        border: none;
        background: 0 0;
        color: #4F4F4F;
        font-size: 28px;
        padding-right: 0
    }

    .nav-right .sidebar-btn .nav-right-link {
        background: var(--theme-color);
        width: 65px;
        height: 61px;
        color: var(--color-white)!important;
        font-size: 25px;
        border: none
    }

    .navbar.fixed-top .nav-right .sidebar-btn .nav-right-link {
        background: var(--color-dark)
    }

    .nav-right .sidebar-btn .nav-right-link:hover {
        background: var(--theme-color2)
    }

    .nav-right .search-btn .nav-right-link {
        font-size: 20px;
        padding: 0
    }

    .nav-right .cart-btn .nav-right-link {
        position: relative;
        font-size: 20px;
        padding: 0;
        margin-right: 15px
    }

    .nav-right .cart-btn span {
        position: absolute;
        right: -9px;
        top: -2px;
        width: 15px;
        height: 15px;
        line-height: 15px;
        text-align: center;
        font-size: 12px;
        border-radius: 50px;
        background: var(--theme-color);
        color: var(--color-white)
    }

    .navbar.fixed-top .nav-right .cart-btn span {
        background: var(--theme-color2)
    }
}

.mobile-menu-right {
    display: none
}

@media all and (max-width: 991px) {
    .navbar {
        position:absolute;
        width: 100%;
        height: auto
    }

    .navbar-brand img {
        width: 130px
    }

    .navbar-collapse {
        max-height: 220px;
        overflow: hidden;
        overflow-y: auto;
        padding: 0 20px;
        margin-bottom: 10px;
        background-color: var(--theme-bg-light);
        border-radius: 15px
    }

    .navbar-toggler {
        padding: 0;
        border: none
    }

    .dropdown-toggle::after {
        float: right;
        margin-top: 2.5px
    }

    .navbar .nav-item .nav-link {
        color: var(--color-dark);
        font-weight: 700;
        margin-right: 0;
        transition: var(--transition)
    }

    .navbar .nav-item .nav-link:hover {
        color: var(--theme-color)!important
    }

    .mobile-menu-right {
        width: 100%;
        margin: 0 12px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 20px
    }

    .mobile-menu-right .nav-right-link {
        background: 0 0;
        border: none;
        font-size: 20px;
        color: var(--color-white)
    }

    .mobile-menu-right .nav-right-link:hover {
        color: var(--theme-color)
    }

    .navbar-toggler-mobile-icon {
        font-size: 25px;
        color: var(--color-white);
        font-weight: 500
    }

    .navbar .dropdown-menu {
        border-radius: 15px;
        border: none
    }

    .nav-right {
        display: none
    }
}

.navbar .nav-item .dropdown-submenu {
    position: relative
}

.navbar .nav-item .dropdown-submenu .dropdown-menu::before {
    display: none
}

.navbar .nav-item .dropdown-submenu a::after {
    transform: rotate(-90deg);
    position: absolute;
    right: 15px;
    top: 8px;
    font-weight: 600
}

.navbar .nav-item .dropdown-submenu a:hover {
    background: 0 0;
    color: var(--color-white)
}

.navbar .nav-item .dropdown-submenu .dropdown-menu {
    top: 120%;
    left: 100%;
    opacity: 0;
    visibility: hidden
}

.navbar .nav-item .dropdown-submenu:hover .dropdown-menu {
    top: 0;
    opacity: 1;
    visibility: visible
}

@media all and (max-width: 991px) {
    .navbar .nav-item .dropdown-menu .dropdown-item {
        color:var(--color-dark)
    }

    .navbar .nav-item .dropdown-submenu .dropdown-menu {
        margin: 0 17px
    }

    .navbar .nav-item .dropdown-submenu .dropdown-menu {
        opacity: unset;
        visibility: unset
    }

    .navbar .nav-item .dropdown-submenu a::after {
        top: 3px
    }

    .navbar .nav-item .dropdown-submenu a:hover {
        color: var(--theme-color)
    }
}
.main{
    margin-top: -170px;
}
/********************首页相关*********************/

/*首页关于我们*/
.home-about{
    margin-top: 100px;
    position: relative;
    padding: 120px 0;
    background-color: #F3F3F3;
}
.home-about-left{
    position: relative;
    display: block;
    margin-right: 30px;
}
.home-about-right{
    position: relative;
    display: block;
    padding-left: 10px;
}

.home-about-title {
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 0;
}
/***********解决方案**************/
.solution{
    background: url(../image/solution-bg.png) no-repeat center;
    background-size:100% 100%;
    width: 100%;
    padding: 94px 0;
    /*height: 944px;*/
}
.solution .container-title-cn{
    color: #fff;
}

.solution-wrapper{
    display: flex;
    flex-wrap: wrap;
    width: 1700px;
    background: #fff;
    margin: 0 auto;
    margin-top: 72px;
    padding: 20px 20px 0 20px;
}
.solution-wrapper>div{
    padding: 32px;
    margin-bottom: 20px;
    height: 240px;
}
.solution-item{

    width: calc((100% - 20px) / 4 - 10px) ;;
}
.solution-item-len{
    width: calc((100% - 20px) / 2) ;
}

.solution-item:nth-child(even){
    background: linear-gradient( 236deg, #29B5EE 0%, #01C6DC 100%);
}
.solution-item:nth-child(odd){
    background: linear-gradient( 246deg, #2781FA 0%, #408EF9 100%);
}
.solution-item:nth-child(2){
    margin-right: 20px;

}
.solution-item:nth-child(4){
    /*margin-left: 20px;*/
    margin-right: 20px;
}


.solution-item-len:first-child{
    background: url(../image/sol-item-bg2.png) no-repeat center;
    margin-right: 20px;
    
}
.solution-item-len:last-child{
    margin-left: 20px;
    background: url(../image/sol-item-bg1.png) no-repeat center;
}

.solution-item{
    color: #fff;
}
.solution-item-title{
    color: #fff;
    font-size: 26px;
}

.solution-item-content{
    /*width: 324px;*/
    color: #fff;
    font-size: 15px;
    line-height: 21px;
    margin-top: 50px;
}

@media all and (max-width: 1740px) {
    .solution-wrapper{
        width: calc(100% - 40px);
    }
    
}

@media all and (max-width: 1440px) {

    .solution-item-len,.solution-item{
        width: calc((100% - 40px) / 3);
    }
    
}
@media all and (max-width: 992px) {
    .solution-item-len,.solution-item{
        width: calc((100% - 20px) / 2);
    }
    .solution-item-len{
        margin: 0;
    }
    .solution-item:nth-child(2){
        margin-right: 0;
    }
    .solution-item:nth-child(4) {
        margin-left: 20px; 
        margin-right: 0;
    }
}
@media all and (max-width: 576px) {
    .solution-item-len,.solution-item{
        width: 100%;
    }
    .solution-item-len,.solution-item{
        margin: 0;
        margin-bottom: 20px;
    }
    .solution-item:nth-child(4) {
        margin-left: 0; 
    }
    .solution-item-len:last-child{
        margin-left: 0;
    }
}
/*首页新闻*/
.home-news{
    width: 1507px;
    margin: 0 auto;
    margin-top: 100px;
}

.home-news-wrapper{
    margin: 0;
    margin-top: 20px;
}
.home-news-item{
    display: flex;
    align-items: center;
    height: 86px;
    margin-top: 40px;
}
.home-news-item{
    transition: var(--transition)
}
.home-news-item:hover{
    margin-top: 35px;
    
}
.home-news-item a:hover{
    color: var(--theme-color);
}
.home-news-date{
    width: 86px;
    height: 86px;
    background: #2F6DB0;
    text-align: center;
}
.home-news-date>span{
    display: block;
    color: #FFFFFF;
}
.home-news-date>.home-news-day{
    font-weight: 500;
    font-size: 36px;
    line-height: 40px;
    font-style: normal;
    margin-top: 10px;
}
.home-news-content{
    width: calc(100% - 102px);
    margin-left: 16px;
}
.home-news-content>h5{
    font-size: 18px;
    color: #242424;
    line-height: 18px;
}
.home-news-desc{
    margin-top: 10px;
    font-weight: 400;
    font-size: 14px;
    color: #949292;
    line-height: 20px;
    text-align: left;
    font-style: normal;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}
@media all and (max-width: 1600px) {
    .home-news {
        width: 100%;
    }
    .home-news-wrapper{
        padding: 0 20px;
    }
}
/*应用*/
.application{
    margin-top: 100px;
}
.app-wrapper{
    margin: 0;
    margin-top: 40px;
}
.app-item img{
    height: 297px;
    margin-bottom: 10px;
}
.app-content{
    padding: 0 20px;
}
.app-content>h5{
    font-size: 20px;
    margin: 10px 0;
}
.app-desc{
    height: 65px;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    text-align: left;
    font-style: normal;
}
.container-title{
    width: 100%;
}
.container-title{
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.container-title-cn{
    position: relative;
    font-size: 44px;
    font-weight: 600;
    color: #000;
    padding: 0;
    z-index: 100;
}
.container-title-en{
    position: relative;
    font-weight: 600;
    font-size: 58px;
    color: #dddc;
    margin-top: -66px;
    text-transform: uppercase;
    font-family: var(--heading-font2);
}
.container-title-en::after{
    position: absolute;
    left: calc(50% - 23px);
    bottom: 0;
    display: inline-block;
    vertical-align: baseline;
    content: " ";
    font-weight: 600;
    width: 46px;
    border: 3px solid var(--theme-color);
}

.product-wrapper{
    margin: 0;
    margin-top: 60px;
}
.product-item-img{
    text-align: center;
    position: relative;
    z-index: 1;
}
.product-item-title{
    font-weight: 400;
    font-size: 32px;
    color: #242422;
    text-align: center;
    padding: 20px 0;
}
/*内页列表*/
.list {
    position:relative
}
.list-bg::before {
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:500px;
    background:linear-gradient(to bottom right,#5715ac 0%,#f92f69 100%);
    z-index:-1
}
.list .site-shadow-text {
    top:-50px;
    right:unset;
    opacity:.1
}
.list-item {
    background:var(--color-white);
    padding:20px;
    box-shadow:var(--box-shadow)
}
.list-meta {
    margin-bottom:10px
}
.list-meta span {
    color:var(--body-text-color);
    font-weight:500
}
.list-meta span i {
    color:var(--theme-color);
    margin-right:5px
}
.list-img {
    overflow:hidden;
    border-radius:4px;
    text-align: center;
}
.list-img img {
    border-radius:4px
}
.list-item:hover .list-img img {
    transform:scale(1.1)
}
.list-content h4 {
    margin-top:20px
}
.list-content h4 a {
    color:var(--color-dark)
}
.list-content h4 a:hover {
    color:var(--theme-color)
}
.list-content p {
    margin:10px 0 20px
}
.list-content>h4>a{
    display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
.list-content>p{
   display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 85px;
}
.list-slider .owl-item {
    padding:0 25px 40px
}
.list-slider .owl-dots {
    text-align:center
}
.list-slider .owl-dots .owl-dot span {
    background:0 0;
    border:2px solid var(--theme-color);
    margin:5px;
    border-radius:10px;
    width:16px;
    height:16px;
    display:inline-block;
    transition:var(--transition)
}
.list-slider .owl-dots .owl-dot.active span {
    background:var(--theme-color)
}
.sa-2 .list-item {
    display:flex;
    flex-wrap:wrap;
    gap:18px;
}
.sa-2 .list-content {
    flex:1
}
.sa-2 .list-img img {
    width:230px;
    height:240px;
    object-fit:cover
}
.sa-2 .list-meta {
    margin-bottom:0
}
.sa-2 .list-content h4 {
    margin-top:5px
}
@media all and (max-width:767px) {
    .list::before {
    height:600px
}
.sa-2 .list-img img {
    width:100%;
    height:auto;
    object-fit:unset
}
}.list-details img {
    border-radius:15px
}
.list-map {
    margin-bottom:20px
}
.list-map iframe {
    border-radius:15px;
    height:400px;
    width:100%
}
.list-content-single {
    margin-bottom:20px
}
.list-content-single h5 {
    margin-bottom:5px
}
.list-content-single i {
    color:var(--theme-color);
    margin-right:5px
}
.list-single-info p {
    margin-bottom:20px;
}
.list-author-info {
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    gap:15px;
    margin-top:50px
}
.list-author-info img {
    border-radius:50%
}
.list-cd-area {
    position:relative;
    background-repeat:no-repeat;
    background-size:cover!important;
    background-position:center!important;
    width:100%;
    z-index:1
}
.list-cd-area::before {
    position:absolute;
    content:'';
    background:rgba(11,9,23,.7);
    width:100%;
    height:100%;
    top:0;
    left:0;
    z-index:-1
}
.list-countdown-content {
    text-align:center
}
.list-countdown-info span {
    font-size:25px;
    text-transform:uppercase;
    color:var(--theme-color2);
    letter-spacing:5px;
    font-weight:600;
    font-family:var(--heading-font2)
}
.list-countdown-info h1 {
    font-size:65px;
    color:var(--color-white);
    font-family:var(--heading-font2)
}
.list-countdown-wrap {
    margin-top:40px;
    margin-bottom:45px
}
.list-countdown .time-wrap {
    display:flex;
    align-items:center;
    justify-content:center;
    flex-wrap:wrap;
    gap:18px
}
.list-countdown .time {
    width:125px;
    border-radius:15px;
    padding:14px 10px
}
.list-countdown .time span {
    display:block;
    font-family:var(--heading-font2)
}
.list-countdown .time span:first-child {
    color:var(--theme-color2);
    font-weight:700;
    font-size:60px;
    line-height:1
}
.list-countdown .time .unit {
    color:var(--color-white);
    font-size:30px;
    font-weight:500
}
.list-countdown .divider {
    color:var(--color-white);
    font-size:50px
}
@media all and (max-width:767px) {
    .list-countdown .time {
    width:unset
}
.list-countdown .time span:first-child {
    font-size:30px
}
.list-countdown .time .unit {
    font-size:25px
}
.list-countdown .divider {
    font-size:30px
}
}
.page-banner{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: cover !important;
    position: relative;
    z-index: 1;
    height: 447px;
}
.page-banner::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: #000;
    opacity: .65;
    z-index: -1;
}
.page-banner-content{
    margin-top: 122px;
}
.page-title {
    font-size: 40px;
    color: var(--color-white);
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: capitalize;
    font-family: var(--heading-font2);
}
.page-breadcrumb{
    color: var(--color-white);
    position: relative;
    z-index: 1;
}
.page-breadcrumb li:first-child {
    margin-left: 0;
}
.page-breadcrumb li {
    position: relative;
    display: inline-block;
    margin-left: 25px;
    font-weight: 500;
    text-transform: capitalize;
}
.page-breadcrumb a{
    color: var(--color-white);
}
.page-breadcrumb li.active {
    color: var(--theme-color);
}
.page-breadcrumb li::before {
    position: absolute;
    content: '\f101';
    font-family: 'FontAwesome';
    right: -21px;
    top: 1px;
    text-align: center;
    font-size: 16px;
    color: var(--color-white);
}
.page-breadcrumb li:last-child:before{
    content:'';
}

.page-cate{
    position: relative;
    display: flex;
    flex-wrap: wrap;
    background: #FFFFFF;
    margin-top: -40px;
    box-shadow: 0px 0px 17px 0px #2F6DB0;
    z-index: 99;
 }
 .page-cate .cate-item{
    position: relative;
    padding: 20px;
 }
 .page-cate .cate-item>a::before{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 0;
    height: 3px;
    transition: var(--transition2);
 }
 .page-cate .cate-item>a{
    
    font-size: 28px;
    display: block;
    text-decoration: none;
    text-transform: capitalize;
    position: relative;
 }
 .page-cate .cate-item:hover .cate-link::before {
    background: var(--theme-color);
    width: 100%
}
.page-cate>.active>a::before{
    background: var(--theme-color);
    width: 100%
}
/*分页*/
.pagination{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}
.pagination .page-numbers{
    border: none;
    background: var(--theme-bg-light);
    color: var(--color-dark);
    font-weight: 500;
    padding: 5px 20px;
    border-radius: 4px !important;
    height: 40px;
    line-height: 28px;
    text-align: center;
    transition: var(--transition);
    z-index: 1;
    margin-right: 10px;
}

.pagination>a:hover,.pagination .current {
    background: var(--theme-color);
    color: var(--color-white);
}

.news {
    position: relative
}

.news-item {
    padding: 20px;
    border: 2px solid #dfdc02;
    /*border-radius: 15px;*/
    transition: var(--transition);
    position: relative
}

.news-item:hover {
    border-color: #97c00e
}

.news-year {
    display: block;
    position: absolute;
    right: 12px;
    top: 12px;
    color: var(--color-white);
    padding: 0 10px;
    box-shadow: var(--box-shadow);
    z-index: 1
}

.news-year::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--theme-color);
    border-radius: 8px;
    transform: skewX(-10deg);
    z-index: -1
}

.news-item-img {
    border-radius: 4px;
    overflow: hidden;
    max-height: 220px;
}

.news-item-img img {
    border-radius: 4px

}

.news-item:hover .news-item-img img {
    transform: scale(1.1)
}

.news-item-info {
    padding: 15px 0 0
}

.news-item-mate ul {
    margin: 0;
    margin-bottom: 14px;
    padding: 0;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border-info-color)
}

.news-item-mate ul li {
    display: inline-block;
    margin-right: 15px;
    font-weight: 500;
    position: relative;
    color: var(--color-dark)
}

.news-item-mate ul li i {
    margin-right: 5px;
    color: var(--theme-color)
}

.news-item-mate a {
    color: var(--color-dark)
}

.news-item-mate a:hover {
    color: var(--theme-color)
}

.new-title {
    font-size: 22px;
    margin-bottom: 15px;
    text-transform: capitalize
}

.news-item-info h4 a {
    color: var(--color-dark)
}

.news-item-info h4 a:hover {
    color: var(--theme-color)
}

.news-item-info p {
    margin-bottom: 16px
}

.news-item-info .theme-btn {
    margin-top: 10px
}



/*footer start*/
.footer-area {
    background: #222;
    position: relative;
    z-index: 1
}

.footer-widget-box {
    margin-bottom: 20px
}

.footer-widget-box.about-us {
    padding-right: 50px
}

.footer-widget {
    position: relative;
    z-index: 1
}

.footer-logo img {
    width: 170px;
    margin-bottom: 18px
}

.footer-widget-title {
    color: #c1c1c2;
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 30px;
    font-size: 20px;
    z-index: 1
}

.footer-widget-title::before {
    position: absolute;
    content: '';
    z-index: -1;
    width: 90px;
    height: 2px;
    background: rgba(255,255,255,.2);
    bottom: 0;
    left: 0
}

.footer-widget-title::after {
    position: absolute;
    content: '';
    z-index: -1;
    width: 30px;
    height: 2px;
    background-color: var(--theme-color);
    bottom: 0;
    left: 18px
}

.footer-list {
    display: flex;
    flex-direction: column;
    gap: .65rem
}

.footer-list li a {
    color: #c1c1c2;
    transition: var(--transition)
}

.footer-list li a i {
    margin-right: 5px;
    color: var(--theme-color)
}

.footer-list li a:hover {
    padding-left: 10px;
    color: var(--theme-color)
}
.footer-list a::before{
    content: "\f0da";
    color: var(--theme-color);
    font: normal normal normal 14px / 1 FontAwesome;
    font-size: 16px;
    margin-right: 5px;
}

.footer-widget-box p {
    color: #c1c1c2;
    /*padding-right: 18px;p*/
    /*margin-bottom: 20px*/
}

.footer-social {
    display: flex;
    gap: 15px;
    justify-content: end
}

.footer-social li a i {
    height: 38px;
    width: 38px;
    line-height: 38px;
    text-align: center;
    border-radius: 50px;
    background: var(--color-white);
    color: var(--theme-color);
    transition: var(--transition)
}

.footer-social li a i:hover {
    background: var(--color-dark);
    color: var(--color-white)
}

.footer-contact p {
    margin-bottom: 0;
}

.footer-widget-box.about-us .footer-newsletter p {
    font-size: 18px;
    font-weight: 500
}



@media all and (max-width: 1199px) {
    .footer-widget-box {
        margin-bottom:50px
    }
}

@media all and (max-width: 991px) {
    .footer-widget-wrapper {
        padding-bottom:0
    }
}

@media all and (max-width: 767px) {
    .footer-widget-wrapper {
        padding-bottom:0
    }

    .footer-social {
        justify-content: flex-start;
        margin-top: 20px
    }
}
.footer-bottom{
    box-sizing: unset;
    border-top: 1px solid #979797FF;
    text-align: center;
    padding: 12px 0;
    margin-top: 20px;
    color: #c1c1c2;
}
.footer-bottom a{
    color: #c1c1c2;
}
.footer-bottom a:hover{
    color: var(--theme-color);
}
/*footer end*/
#scroll-top {
    position: fixed;
    bottom: -20px;
    right: 30px;
    z-index: 99;
    font-size: 20px;
    border: none;
    outline: none;
    border-radius: 50px;
    color: var(--color-white);
    background-color: var(--theme-color);
    cursor: pointer;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    box-shadow: var(--box-shadow2);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 1;
}

#scroll-top.active {
    opacity: 1;
    visibility: visible;
    bottom: 20px;
}