html {
    --color: #F8AF3F;
    --font-family: 'Arial';
}

.w1520 {
    width: 100%;
    max-width: 1520px;
    margin: 0 auto;
}

.w1400 {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}
.w1200{
    max-width: 1200px;
    margin: 0 auto;
}
.flex {
    display: flex;
}

p,
a {
    font-size: initial;
}

header {
    -webkit-backdrop-filter: saturate(100%) blur(0px);
    backdrop-filter: saturate(100%) blur(0px);
    transition: ease-in-out 0.6s;
    -webkit-transition: ease-in-out 0.6s;
    width: 100%;
    height: 120px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 20;
}
.menu{
    display: none;
}
.menu_down{
    display: none;
}

.header-color{
    background: var(--color);
}
header:hover {
    background: var(--color);
}

header.header-bg {
    background: var(--color);
}

header>.flex {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}

header .logo {
    height: 70px;
    margin-left: 20px;
}

header .logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
header .nav {
    width: 60%;
}
header .nav ul li {
    position: relative;
    width: 20%;
}

header .nav li>a {
    height: 120px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

header .nav li::after {
    display: none;
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #fff;
}

header .nav li:hover::after {
    display: block;
}

header .nav li .erji {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
	min-width:200px;
    padding: 20px;
    background: var(--color);
}

header .nav li .erji p a {
    width: 100%;
    font-size: 16px;
    color: #fff;
    line-height: 3;
	    white-space: nowrap;
}

header .nav li:hover .erji {
    display: block;
}

header .nav li a {
    font-size: 20px;
    color: #fff;
}

header .right {
    align-items: center;
    margin-right: 20px;
}

header .right .lang {
    align-items: center;
    cursor: pointer;
    height: 120px;
    position: relative;
}

header .right .lang img {
    margin-right: 10px;
}

header .right .lang span {
    font-size: 16px;
}

header .right .lang-down {
    display: none;
    position: absolute;
    top: 120px;
    left: 20px;
    padding: 20px 30px;
    width: 100%;
    background: rgba(255, 255, 255, .6);
    border-radius: 10px;
}

header .right .lang-down li {
    text-align: center;
    line-height: 2;
    color: #FFf;
	    white-space: nowrap;
}

header .right .lang:hover .lang-down {
    display: block;
}

header .right p {
    font-size: 20px;
    color: #fff;
    white-space: nowrap;
}

header .right img {
    width: auto;
    height: 22px;
}

header .right .vr {
    margin: 0 40px;
    cursor: pointer;
}

header .right .search {
    cursor: pointer;
}

.content_search {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: none;
    transition: ease-in-out 0.3s;
    -webkit-transition: ease-in-out 0.3s;
    z-index: 99;
}

.content_search .bg {
    background-color: rgba(12, 18, 23, 0.7);
    height: 100%;
    width: 100%;
}

.content_search .bg .search_close {
    z-index: 1;
    position: fixed;
    right: 40px;
    top: 30px;
    border: 2px solid #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    cursor: pointer;
    justify-content: center;
}

.content_search .search_box {
    position: fixed;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: transparent;
    /* box-shadow: 0 0.25px 1.25px rgba(0, 0, 0, 0.4); */
    flex-flow: column;
    transition: transform 0.2s ease-out, left 0.2s ease-out, top 0.2s ease-out, right 0.2s ease-out;
    will-change: transform, left, top, right;
    max-width: 1440px;
    padding-left: 48px;
    padding-right: 48px;
    width: 100%;
}

.content_search .search_inner {
    overflow-y: visible;
    width: 100%;
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.content_search .search_inner h3 {
    font-size: 48px;
    color: #fff;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 24px;
    text-transform: capitalize;
    text-align: center;
}

.content_search .search_inner .input_box {
    height: 52px;
    width: 100%;
    padding: 8px 12px;
    background: #fff;
    border-radius: 5px;
    position: relative;
}

.content_search .search_inner .input_box input {
    width: 100%;
    height: 100%;
    padding-left: 20px;
}

.content_search .search_inner .input_box button {
    position: absolute;
    width: 44px;
    height: 32px;
    padding: 6px 12px;
    border: 2px solid var(--color);
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--color);
    border-radius: 20px;
    outline-offset: -1px;
    transition: ease-in-out 0.2s;
    -webkit-transition: ease-in-out 0.2s;
    -moz-transition: ease-in-out 0.2s;
    -ms-transition: ease-in-out 0.2s;
    -o-transition: ease-in-out 0.2s;
}

.content_search .search_inner .input_box button:hover {
    outline: 4px solid var(--color);
}

/* banner */
.banner {
   /*  background: var(--color); */
    position: relative;
}
.banner img{
    width: 100%;

	object-fit:cover;
}

.banner .swiper {
    --swiper-theme-color: #ff6600;
    --swiper-pagination-color: #DA6F13;
    /* 两种都可以 */
}

.banner .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
}

.banner .swiper-slide {
    width: 100%;
   
   /*  display: flex;
    justify-content: center;
    align-items: center; */
}
.banner .swiper-slide img{
	min-height:600px;
}

.banner .swiper-prev,
.banner .swiper-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 2;
}

.banner .swiper-prev {
    left: 20px;
}

.banner .swiper-next {
    right: 20px;
}

.banner .info {
    position: absolute;
    top: 60%;
    left: 50%;
    width: 92%;
    height: 40%;
    transform: translateX(-50%);
}

.banner .info>img {
    width: 24px;
    margin-bottom: 35px;
}

.banner .info h2 {
    font-size: 60px;
    color: #Fff;
    font-family: var(--font-family);
    margin-bottom: 15px;
}

.banner .info ul {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.banner .info ul li {
    font-size: 18px;
    color: #fff;
}

.banner .info ul li a {
    font-size: 18px;
    color: #fff;
}


.index-page1 {
    background: url('../images/index-product-bg.jpg') no-repeat;
    background-size: cover;
    background-position: center;
    height: calc(100vh - 120px);
}

.index-page1 .index-product {
    padding: 10vh 0;
    position: relative;
    height: 100%;
}

.index-page1 .index-product .product-info {
    position: absolute;
    left: 0;
    top: -160px;
    color: #fff;
	text-align:left;
}

.index-page1 .index-product .product-info h2 {
    font-weight: 600;
    font-size: 72px;
    text-transform: uppercase;
}

.index-page1 .index-product .product-info p {
    margin: 15px 0;
    font-size: 30px;
}

.index-page1 .index-product .product-info span {
    width: 100px;
    height: 3px;
    background: var(--color);
    display: inline-block;
}

.index-page1 .index-product .thum_swiper {
    position: absolute;
    top: 10%;
    right: 0;
    border: 1px solid rgba(238, 238, 238, .6);
    border-radius: 20px;
    overflow: hidden;
    z-index: 11;
    height: 80%;
}

.index-page1 .index-product .thum_swiper .swiper-slide p::before {
    content: '';
    background: url('../images/swiper_pagination_icon.png');
    background-size: contain;
    width: 0px;
    height: 22px;
    display: inline-block;
    margin-right: 15px;
    opacity: 0;
}

.index-page1 .index-product .thum_swiper .swiper-wrapper {
    flex-direction: column;
}

.index-page1 .thum_swiper .swiper-slide {
    width: 240px;
    height: 11.111%;
    font-size: 16px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-align: center;
    border-bottom: 1px solid rgba(238, 238, 238, .6);
    /* position: relative; */
}

.index-page1 .index-product .thum_swiper .swiper-slide p {
    display: flex;
    align-items: center;
}

.index-page1 .index-product .thum_swiper .swiper-slide:last-child {
    border-bottom: 0;
}

.index-page1 .index-product .thum_swiper .swiper-slide:hover {
    background: var(--color);
}

/* .index-page1 .index-product .thum_swiper .swiper-slide-active{
    
} */
.index-page1 .index-product .thum_swiper .swiper-slide-thumb-active {
    background: var(--color);
}

.index-page1 .index-product .thum_swiper .swiper-slide-thumb-active p::before {
    width: 22px;
    opacity: 1;
}

.index-page1 .index-product .thum_swiper .swiper-slide:hover p::before {
    width: 22px;
    opacity: 1;
}

.index-page1 .index-product .swiper1 {
    padding-top: 160px;
    width: calc(100% - 300px);
    height:100%;
    margin-left: 0;
    color: #Fff;
}

.index-page1 .index-product .swiper1 .swiper-slide {
    width: 100%;
    height: 100%;
    text-align: center;
}

.index-page1 .index-product .swiper1 img {
    height: 100%;
    object-fit: contain;
}

.index-page2 {
    margin: 90px auto;
}

.index-page2 h2 {
    text-transform: uppercase;
    font-size: 48px;
    font-weight: 600;
    font-family: 'Arial';
}

.index-page2 .top {
    display: flex;
    flex-direction: row;
    margin: 90px auto;
}

.index-page2 .top .left h2 {
    color: #999;
    white-space: nowrap;
}
.index-page2 .top .left img{
    margin-top:40px;
}

.index-page2 .top .right {
    margin: 0 90px;
      
}


.index-page2 .top .right .editor {
    font-size: 18px;
    line-height: 30px;
}

.index-page2 .bottom {
   /*  background: url('../images/index-about-img-bg.jpg');
    background-repeat: no-repeat;
    background-position: right;
    background-size: cover; */
    width: 100%;
    text-align: center;
}

.index-page2 .bottom img {
	width:100%;
    max-width: 1520px;
    margin: 0 auto 45px;
    object-fit: contain;
}

.index-page3 {
    position: relative;
    width: 100%;
}

.index-page3 .info {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #Fff;
    text-align: center;
}

.index-page3 .info h2 {
    font-family: 'Arial';
    font-size: 80px;
    font-weight: 600;
}

.index-page3 .info p {
    font-size: 28px;
}

.index-page3 .info a {
    display: inline-block;
    padding: 15px 45px;
    border: 1px solid #fff;
    margin: 60px 0;
    color: #Fff;
    border-radius: 50px;
    transition: all 0.2s ease-in-out;
}

.index-page3 .info a:hover {
    background: var(--color);
}

.index-page4 {
    margin: 90px auto 50px;
}

.index-page4 .title {
    font-size: 48px;
    font-family: 'Arial';
    font-weight: 600;
}

.index-page4 .news-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 50px;
}

.index-page4 .news-list li {
    width: 30%;
    margin-bottom: 50px;
}

.index-page4 .news-list li img {
    width: 100%;
    object-fit: cover;
}

.index-page4 .news-list li h4 {
    margin: 15px 0;

    margin-bottom: 10px;
}

.index-page4 .news-list li h4 a {
    color: #000;
    line-height: 1.5;
    font-size: 20px;
    font-weight: 600;
    height: 60px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.index-page4 .news-list li:hover h4>a{
    color: var(--color);
}
.index-page4 .news-list li:hover span{
    color: var(--color);
}
.index-page4 .news-list li:hover span img{
    background: var(--color);
}
.index-page4 .news-list li p {
    margin-bottom: 30px;
}

.index-page4 .news-list li p a {
    font-size: 16px;
    color: #666;
    height: 75px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;

}

.index-page4 .news-list li span {
    color: #666;
    font-weight: 600;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.index-page4 .news-list li span a {
    display: flex;
    align-items: center;
}

.index-page4 .news-list li span a img {
    height: 12px;
    width: auto;
    background: #666;
}

.about .index-page2 .top .left h2 {
    color: #000;
    max-width: 250px;
    text-transform: none;
    line-height: 1.4;
    white-space: normal;
}

.about .index-page2 .top .left img {
    width: 60%;
}

.about .index-page2 .bottom img {
    max-width: 1400px;
}

.about-page2 {
    margin-bottom: 90px;
}

.about-page2 .title {
    font-size: 48px;
    text-align: center;
    font-weight: 600;
    font-family: var(--font-family);
    margin-bottom: 60px;
}

.about-page2 {
    width: 100%;
    position: relative;
}

.about-page2 .swiper {
    padding: 10px 50px;
}

.about-page2 .swiper-slide {
    background: #fff;
    text-align: center;
    box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.1);
    background: #ccc;

}

.about-page2 .swiper-button-prev,
.about-page2 .swiper-button-next {
    width: 42px;
    height: 42px;
    border-radius: 42px;
    background: #999999;
    transition: all 0.3s;
}

.about-page2 .swiper-button-prev::after,
.about-page2 .swiper-button-next::after {
    font-size: 18px;
    color: #fff;
}

.about-page2 .swiper-button-prev:hover,
.about-page2 .swiper-button-next:hover {
    background: var(--color);
}

.about-page2 .swiper-button-prev {
    left: -50px;
}

.about-page2 .swiper-button-next {
    right: -50px;
}
.news-detail {
    margin-top: 120px;
    padding: 100px 0;
}
.news-detail .time{
    font-size: 24px;
    color: #666;
}
.news-detail .title{
    font-size: 48px;
    font-weight: 600;
    line-height: 1.4;
    margin: 40px 0;
}
.news-detail .editor{
    line-height: 2;
    font-size: 18px;
}
.news-detail .editor p ,.news-detail .editor a{
    font-size: inherit;
}

.product{
    width: 90%;
    margin:50px auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.product .sidebar{
    display: flex;
    flex-direction: column;
    width: 20%;
    height: 100%;
}
.product .sidebar li{

    background: #e7e7e7;
    border-bottom: 1px solid #fff;
    font-weight: 600;
    cursor: pointer;
	line-height:1;
}
.product .sidebar li.active{
 background: var(--color);
}
.product .sidebar li a{
	display:inline-block;
	width:100%;
	height:100%;
	  padding: 25px 30px;
}
.product .sidebar li.active a{
    color: #fff;
	
	  
}
.product .sidebar li:hover{
    background: var(--color);
   
}
.product .sidebar li:hover a{
    color: #fff;
}
.product .sidebar li:last-child{
    border-bottom: 0;
}
.product .product-right{
	width:75%;
	 height: 100%;
    display: flex;
    flex-direction: column;
}
.product .product-list{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.product .product-list li{
    width: 31%;
    background: #e7e7e7;
    margin-bottom: 20px;
	margin-right:1%;
}
.product .product-list li:nth-child(3n+3){
	margin-right:0;
}
.product .product-list li a{
	display:block;
	width:100%;
	text-align:center;
}
.product .product-list li .product-img{
	 padding:1px;
	/*height:300px; */
	object-fit: contain;
    margin: 0 auto;
}

.product .product-list li .bottom{
    display: flex;
    flex-direction: row;
    margin:35px 0 20px;
    justify-content: space-between;
    align-items: center;
    padding:0 30px ;
}
.product .product-list li .bottom a{
	display:block;
	width:auto;
	    text-align: left;
}
.product .product-list li .bottom p{
    font-size: 18px;
    font-weight: 500;
	line-height:1.2;
    color: #000;
	overflow : hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}
.product .product-list li .bottom img{
    height: 10px;
    width: auto;
    background: #666;
    display: flex;
    align-items: center;
}   

.product .product-list li:hover p{
    color: var(--color);
}
.product .product-list li:hover .bottom img{
    background: var(--color);
}

.product-detail{
    margin-top: 120px;
}
.product-detail .top{
    display: flex;
    
}
.product-detail .top .info-left{
    width: 50%;
    background: url('../images/product_detail_bg.jpg') no-repeat center;
    background-size: cover;
    min-height: 400px;
    padding: 100px 0;
	text-align:center;
}
.product-detail .top .info-left img{

    object-fit: contain;
	padding:12%;
}
.product-detail .top .info-right{
    width: 50%;
    padding: 100px 70px;
	max-width:700px;
  display: flex;
  flex-direction: column;
  justify-content: center;
    
}
.product-detail .top .info-right h2{
    font-size: 48px;
    font-weight: 600;
	line-height:1;
}
.product-detail .top .info-right h3{
	font-size:24px;
	font-weight: 500;
}
.product-detail .top .info-right .top-editor{
    font-size: 18px;
    line-height: 2;
    font-weight: 500;
    max-width: 700px;
    max-height: 500px;
    padding-right: 20px;
    overflow: auto;
	margin:3% 0;
}
.product-detail .top .info-right .top-editor::-webkit-scrollbar{
    width: 5px;
    background: #eee;
}
.product-detail .top .info-right .top-editor::-webkit-scrollbar-thumb{
    background: #999;
    border-radius: 3px;
}
.product-detail .top .info-right .btns{
    display: flex;
    flex-direction: row;
    margin-top: 20px;
}
.product-detail .top .info-right .btns a{
    display: inline-block;
    padding: 15px 30px;
    margin-right: 20px;
    background: #999;
    color: #fff;
    border-radius: 6px;
    font-weight: 600;
    letter-spacing: 1px;
}
.product-detail .top .info-right .btns a:hover{
    background: var(--color);
}
.product-detail .bottom .title{
    border-bottom: 1px solid #e8e8e8;
}

.product-detail .bottom .title span{
    border-bottom: 3px solid var(--color);
    padding: 23px 3px 20px;
    font-size: 24px;
    color: #000;
    font-weight: 600;
    display: inline-block;
}

.product-detail .bottom .product-detail-editor{
    margin: 60px auto;
    min-height: 400px;
    font-size: 16px;
    line-height: 2;
}
.distributor{
    margin-bottom: 100px;
}
.distributor .top{
    text-align: center;
    margin: 35px auto;
}
.distributor .bottom .title{
    text-align: center;
    font-size: 30px;
    color: #333;
    font-weight: 600;
    margin-bottom: 50px;
    
}
.distributor .bottom .tabs{
    display: flex;
    flex-direction: row;
    justify-content:center;
    align-items: center;
    border-bottom: 1px solid #ccc;
    margin-bottom: 40px;
}
.distributor .bottom .tabs span{
    font-size: 14px;
    color: #ccc;
}
.distributor .bottom .tab{
    margin:30px 60px;
    cursor: pointer;
    font-size: 18px;
    color: #666;
    position: relative;
}
.distributor .bottom .tab:hover::after{
    content: '';
    width: 100%;
    height: 3px;
    background: var(--color);
    position: absolute;
    bottom: -32px;
    left: 0;
}
.distributor .bottom .tab.active::after{
    content: '';
    width: 100%;
    height: 3px;
    background: var(--color);
    position: absolute;
    bottom: -32px;
    left: 0;
}

.distributor .bottom .item{
    display: none;
}

.distributor .bottom .item:first-child{
    display: block;
}
.distributor .bottom .item1 .flex{
    justify-content: space-between;
}

.distributor .bottom .item1 .flex>img{
    width: 48%;
    height: 100%;
    object-fit: contain;
}
.distributor .bottom .item1 .right{
    width: 48%;
    height: 100%;
}
.distributor .bottom .item1 .right h3{
    font-size: 24px;
    line-height:2;
    font-weight: 600;
    margin-bottom: 30px;
}
.distributor .bottom .item1 .right p{
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 30px;
}
.distributor .bottom .item1 .right p img{
    width: 20px;
    height: 30px;
    object-fit: contain;
    margin-right: 10px;
}
.distributor .bottom .item2 ul{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}
.distributor .bottom .item2 ul li{
    width: 24%;
    border: 1px solid #ccc;
    margin-bottom: 20px;
}
.contact{
    padding: 90px 0;
    background: url('../images/contact_bg.jpg') no-repeat center;
    background-size: cover;
}
.contact .title{
    font-size: 48px;
    font-weight: 600;
    font-family: var(--font-family);
}
.contact .editor{
    padding: 240px 0;
}
.contact .editor ul{
    display: flex;
    flex-direction: row;
}
.contact .editor ul li{
    display: flex;
    flex-direction: column;
}
.contact .editor ul li{
    position: relative;
   
	padding:0 60px 0 30px;
    border-left: 1px solid #eee;
}
.contact .editor ul li:first-child{
    border-left: 0;
}
.contact .editor ul h4{
    font-size: 28px;
    color: #999;
    font-weight: 600;
    line-height: 1;
}
.contact .editor ul p{
    max-width: 300px;
    line-height: 30px;
}
.contact .editor ul li:nth-child(4){
    display: flex;
    flex-direction: row;
}
.contact .editor ul li:nth-child(4)>img{
    width: 100px;
    height: auto;
    object-fit: contain;
    border: 5px solid #ccc;
    margin-right: 20px;
}
.contact .editor ul .icon{
    position: absolute;
    bottom: calc(100% + 20px);
    left: 40px;
}

.contact .editor ul .icon2{
    position: absolute;
    bottom: calc(100% + 20px);
    left: 30px;
}
.contact .editor ul .icon img{
    width: 30px;
    height: auto;
    object-fit: contain;
}
.contact .editor ul .icon2 img{
    height: 30px;
    width: auto;
    object-fit: contain;
}












.message {
    background: #F2F2F2;
    padding: 80px 0 100px;
}

.message .title {
    font-size: 48px;
    font-weight: 600;
    width: 100%;
    text-align: center;
    margin-bottom: 60px;
}

.message .form {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

.message input {
    width: 49%;
    border-radius: 5px;
    box-shadow: 0 0 10px 5px #cccccc80;
    font-size: 16px;
    padding: 20px;
    margin-bottom: 20px;
}

.message textarea {
    width: 100%;
    border-radius: 5px;
    box-shadow: 0 0 10px 5px #cccccc80;
    font-size: 16px;
    padding: 20px;
    margin-bottom: 20px;
}

.message button {
    font-size: 24px;
    width: 700px;
    height: 50px;
    line-height: 50px;
    background: var(--color);
    color: #fff;
    border-radius: 5px;
    margin: 0 auto;
}


footer .footer-top {
    background: #363636;
    color: #fff;
    padding: 60px 0;
    flex-direction: row;
    justify-content: space-between;
}

footer .footer-top .left {
    width: 200px;
}

footer .footer-top .left img {
    height: 80px;
}

footer .footer-top .left .rwm {
    width: 100%;
    text-align: end;
}

footer .footer-top .left .rwm img {
    width: 100px;
    height: auto;
}

footer .footer-top .center {
    margin: 0 80px;
    flex: 1;
    display: flex;
    flex-direction: row;
}

footer .footer-top .center .item:first-child {
    padding-right: 50px;
    width: 45%;
}

footer .footer-top .center .item .title {
    font-size: 24px;
    margin-bottom: 40px;
}

footer .footer-top .center .item ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    border-right: 1px solid #eeeeee33;
}

footer .footer-top .center .item ul a {
    display: flex;
    font-size: 14px;
    color: #fff;
	line-height:1.2;
}
footer .footer-top .center .item ul li{
width:50%;
padding-right:10px;
margin-bottom:15px
}
footer .footer-top .center .item p {
    line-height: 36px;
}

footer .footer-top .right {
    width: 240px;
    margin-top: 80px;
    text-align: end;
}

footer .footer-top .right ul {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

footer .footer-top .right img {
    width: 30px;
    height: 30px;
}

footer .footer-top .right input {
    width: 100%;
    border-radius: 5px;
    text-align: center;
    padding: 15px;
    margin: 15px 0;
}

footer .footer-top .right button {
    padding: 15px 20px;
    border-radius: 5px;
    background: var(--color);
    color: #fff;
    margin-left: auto;
}

footer .footer-bottom {
    background: #000;
    height: 70px;
    line-height: 70px;
    font-size: 16px;
    color: rgba(255, 255, 255, .6);
}

footer .footer-bottom .flex {
    justify-content: space-between;
    align-items: center;
}
footer .footer-bottom a{
	display:flex;
		

}
footer .footer-bottom img {
   height: 20px;
}

.share{
	
}