@charset "utf-8";
/* ————————————————————————————首页标题样式1———————————————————————————— */
.index_title {
  position: relative;
  height: 70px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.index_title h2 {
  float: left;
  color: #0066cc;
  font-size: 28px;
  font-weight: bold;

}
.index_title h3 {
  float: left;
  padding: 15px 10px 0 15px;
  font-size: 16px;
  font-weight: normal;
  color: #cccccc;
}
.index_title a.more-btn {
  position: absolute;
  top: 0px;
  right: 0;
  padding: 0 40px 0 40px;
  height: 40px;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 50px;
  background: none;
  font-size: 16px;
  color: #666666;
  line-height: 40px;
}
.index_title a:hover.more-btn {
  border: 1px solid #0066cc;
  background: #0066cc;
  color: #fff;
}
@media only screen and (max-width: 1024px) {
.case-tit.more-btn {
display: none
}
}
/* ————————————————————————————首页查看更多按钮通用———————————————————————————— */
        .index_more_w {
            margin: 0;
            display: flex;
			text-align:center;
            justify-content: center;
            align-items: center;
			 background: #f8f8f8;
    
        }
            .index_more {
            text-align:center;
            padding: 10px 30px;
            border-radius: 50px;
			margin: 20px 0px 40px 0px;  
            border: 1px solid #0066cc;
            background: transparent;
            color: #0066cc;
            text-decoration: none;
            border-radius: 50px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            
            /* 移动端适配 */
            font-size: clamp(17px, 3vw, 16px);
            white-space: nowrap;
        }

        /* 悬停动画效果 */
        .index_more:hover {
            background: #0066cc;
            border-color: #0066cc;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(33, 150, 243, 0.3);
        }


        /* 移动端优化 */
        @media (max-width: 480px) {
            .index_more {
                padding: 8px 24px;
                border-radius: 24px;
            }
        }

        /* 点击效果 */
        .index_more:active {
            transform: translateY(1px);
            transition-duration: 0.1s;
        }
/* 首页头部轮播主图开始———————————————————————————— */

        .index_banner-container {
            position: relative;
            width: 100%;
            margin: 0 auto;
            overflow: hidden;
        }

        /* 轮播图片列表样式 */
        .index_banner-slides {
            display: flex;
            transition: transform 0.5s ease;
            height: auto;
        }

        /* 轮播图片项样式 */
        .index_banner-slide {
            min-width: 100%;
            position: relative;
        }

        /* 强制统一大图尺寸 */
        .index_banner-slide img {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
            max-height: 700px; /* 可根据需要调整 */
        }

        /* 文字容器样式 */
        .index_banner-caption {
            position: absolute;
            top: 38%;
            left: 50%;
            transform: translateX(-50%);
            text-align: center;
            color: white;
            width: 100%;
            max-width: 1000px;
        }

        /* 第一行文字样式 */
        .index_banner-caption h2 {
            font-size: 3.2em;
            margin-bottom: 0.5em;
			font-weight:bold;
			text-shadow:1px 1px 5px #000000; 
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.5s ease, transform 0.5s ease;
        }

        /* 第二行文字样式 */
        .index_banner-caption p {
            font-size: 2.25em;
			font-weight:bold;
			text-shadow:1px 1px 5px #000000; 
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.5s ease 0.2s, transform 0.5s ease 0.2s;
        }

        /* 激活状态的文字 */
        .index_banner-slide.active .index_banner-caption h2,
        .index_banner-slide.active .index_banner-caption p {
            opacity: 1;
            transform: translateY(0);
        }

        /* 导航按钮样式 */
        .index_banner-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 10;
        }

        /* 方向按钮样式 */
        .index_banner-prev,
        .index_banner-next {
            background-color: rgba(0, 0, 0, 0.3);
            color: white;
            border: none;
            width: 40px;
            height: 40px;
            font-size: 18px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            border-radius: 50%;
            margin: 0 15px;
        }

        .index_banner-prev:hover,
        .index_banner-next:hover {
            background-color: rgba(0, 0, 0, 0.8);
            transform: scale(1.01);
        }

        /* 指示器样式 */
        .index_banner-indicators {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            justify-content: center;
            z-index: 10;
        }

        .index_banner-indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            margin: 0 5px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .index_banner-indicator.active {
            background-color: white;
            transform: scale(1.2);
        }

        /* 响应式设计 */
        @media (max-width: 768px) {
			
        .index_banner-slide {
            min-width: 100%;
            aspect-ratio: 16/9;
            position: relative;
        }

        .index_banner-slide img {
            width: 100%;
            height: 100%;			
            object-fit: cover;
            vertical-align: middle;
        }
			
			
        .index_banner-caption {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translateX(-50%);
            text-align: center;
            color: white;
            width: 80%;
            max-width: 800px;
        }
            .index_banner-caption h2 {
                font-size: 1.2em;
            }
            
            .index_banner-caption p {
                font-size: 0.8em;
            }
            
            .index_banner-prev,
            .index_banner-next {
                width: 30px;
                height: 30px;
                font-size: 15px;
                margin: 0 10px;
            }
        }

/* ————————————————————————————首页产品2行2列，左图右字 ———————————————————————————— */
        .index_pro_trpe-container {
            margin: 0 auto;
            padding: 0px 0px 50px 0px;
        }

        /* 产品项基础样式 */
        .index_pro_trpe-item {
            display: flex;
            margin-bottom: 0px;
            background: #fff;
            border-radius: 0px;
            overflow: hidden;
         
            transition: transform 0.3s ease;
        }
		     .index_pro_trpe-item:hover{
            display: flex;
            background: #fff;
            border-radius: 0px;
            overflow: hidden;
           box-shadow:2px 2px 16px rgba(0,0,0,.1)
        }
		
        /* 图片容器样式 */
        .index_pro_trpe-image-container {
            flex: 0 0 35%;
            position: relative;
            overflow: hidden;
     
        }

        .index_pro_trpe-image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        /* 悬停效果 */
        .index_pro_trpe-item:hover .index_pro_trpe-image-container img {
            transform: scale(1.05);
        }

        /* 内容区域样式 */
        .index_pro_trpe-content {
            flex: 1;
            padding: 20px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        /* 文字颜色控制 */
        .index_pro_trpe-title {
            color: #333;
            font-size: 24px;
            margin-bottom: 10px;
			font-weight:normal;
            transition: color 0.3s ease;
        }

        .index_pro_trpe-description {
            color: #666;
            font-size: 14px;
            line-height: 1.8;
            margin-bottom: 15px;
        }

        /* 按钮动画效果 */
        .index_pro_trpe-button {
            display: inline-block;
            padding: 8px 22px;
            background: none;
            color: #666666 !important;
		    border: 1px solid rgba(0,0,0,0.2);
            text-decoration: none;
            border-radius: 50px;
            transition: all 0.3s ease;
            align-self: flex-start;
        }

        .index_pro_trpe-button:hover {
            background: #0066cc;
			color: #ffffff !important;
            transform: translateY(-2px);
        }

        /* 悬停文字变蓝 */
        .index_pro_trpe-item:hover .index_pro_trpe-title {
            color: #007bff;
        }

        /* 桌面端双列布局 */
        @media (min-width: 768px) {
            .index_pro_trpe-row {
                display: flex;
                flex-wrap: wrap;
                margin: -10px;
            }
            .index_pro_trpe-item {
                width: calc(50% - 20px);
                margin: 10px;
                flex-direction: row;
            }
        }

        /* 移动端单列布局 */
        @media (max-width: 767px) {
            .index_pro_trpe-item {
                flex-direction: column;
            }
        }


/* ————————————————————————————首页关于我们———————————————————————————— */



/* ————————————————————————————首页滚动案例———————————————————————————— */

        .index_pro_roll-container {

            margin: 0 auto;
            padding: 0px 0px; /* 增加两侧留白 */
            position: relative;
        }

        /* 轮播主体 */
        .index_pro_roll-slider {
            overflow: hidden;
            position: relative;
            border-radius: 0px;
        }

        /* 箭头容器 */
        .index_pro_roll-arrows {
            position: absolute;
            top: 50%;
            left: 0px;
            right: 0px;
            transform: translateY(-50%);
            display: flex;
            justify-content: space-between;
            pointer-events: none; /* 防止遮挡点击 */
        }

        /* 箭头样式 */
        .index_pro_roll-arrow {
            width: 40px;
            height: 40px;
			color: #ffffff;
            background: rgba(0,0,0,0.1);
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            pointer-events: auto; /* 启用点击 */
        }

        .index_pro_roll-arrow:hover {
            background: #fff;
            transform: scale(1.1);
            box-shadow: 0 6px 16px rgba(0,0,0,0.15);
        }

        .index_pro_roll-arrow::after {
            content: '';
            width: 10px;
            height: 10px;
            border: 3px solid #333;
            border-width: 3px 3px 0 0;
        }

        .index_pro_roll-prev::after {
            transform: rotate(-135deg);
            margin-left: 5px;
        }

        .index_pro_roll-next::after {
            transform: rotate(45deg);
            margin-right: 5px;
        }

        /* 轮播内容 */
        .index_pro_roll-slide-list {
            display: flex;
            transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .index_pro_roll-slide-item {
            flex: 0 0 25%;
            padding: 1px;
            box-sizing: border-box;
            position: relative;
        }

        /* 图片容器 */
        .index_pro_roll-image-box {
            position: relative;
            overflow: hidden;
            border-radius: 0px;
            aspect-ratio: 1/1;
            background: #fff;
        }

        .index_pro_roll-image-link {
            display: block;
            height: 100%;
            transition: transform 0.3s ease;
        }

        .index_pro_roll-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.4s ease;
        }

        /* 悬停效果 */
        .index_pro_roll-hover {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.1);
            color: #ffffff;
            display: none;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            pointer-events: none;
        }

        .index_pro_roll-image-box:hover .index_pro_roll-hover {
            display: flex;
            animation: index_pro_roll_shine 0.8s;
        }

        .index_pro_roll-image-box:hover .index_pro_roll-image {
            transform: scale(1.05);
        }

        @keyframes index_pro_roll_shine {
            0% { opacity: 0; }
            50% { opacity: 1; }
            100% { opacity: 1; }
        }

        /* 标题样式 */
        .index_pro_roll-title {
            background: #f8f8f8;
            padding: 15px 10px;
            text-align: center;
            margin-top: 0px;
            transition: all 0.3s ease;
            border-radius: 0 0 8px 8px;
        }

        .index_pro_roll-title a {
            color: #000;
            text-decoration: none;
            font-size: 18px;
            line-height: 1.4;
        }

        .index_pro_roll-slide-item:hover .index_pro_roll-title {
            background: #0066cc;
        }

        .index_pro_roll-slide-item:hover .index_pro_roll-title a {
            color: white;
        }

        /* 导航圆点 */
        .index_pro_roll-dots {
            display: flex;
            justify-content: center;
            padding: 25px 0 15px;
            gap: 10px;
        }

        .index_pro_roll-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ddd;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .index_pro_roll-dot.active {
            background: #0066cc;
            transform: scale(1.2);
        }

        /* 移动端适配 */
        @media (max-width: 768px) {
            .index_pro_roll-container {
                padding: 0px 0px;
            }

            .index_pro_roll-slide-item {
                flex: 0 0 100%;
            }

            .index_pro_roll-arrows {
                display: none; /* 移动端隐藏箭头 */
            }

            .index_pro_roll-dots {
                padding: 20px 0 10px;
            }
        }
/* ————————————————————————————首页公司介 左图右白字蓝色背景———————————————————————————— */
.about-info{overflow:hidden;width:100%;display:flex}
.about-info div{width:50%}
.about-info .about-img img{width:100%;display:block;}
.about-info .about-content{padding:40px 0px;background:#0066cc;display:flex;flex-direction:column;justify-content:space-evenly}
.about-info .about-content .content-title{padding-left:80px;font-size:36px;font-weight:bold;color:#FFFFFF}
.about-info .about-content article{padding-left:80px;padding-right:200px}
.about-info .about-content article p{font-size:16px;color:#FFFFFF;line-height:32px;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:10;-webkit-box-orient:vertical}
.about-info .about-content .about-btn{width:180px;height:50px;border:1px solid #FFFFFF;font-size:20px;display:flex;justify-content:center;align-items:center;margin-left:80px;transition:all .5s ease}
.about-info .about-content .about-btn:hover{background:#FFFFFF;border:2px solid var(--color);cursor:pointer}
.about-info .about-content .about-btn:hover a{color:var(--color)}
.about-info .about-content .about-btn a{color:#FFFFFF}
@media(min-width:1441px)and (max-width:1680px){
.about-info .about-content .content-title{font-size:30px}
.about-info .about-content article{padding-right:100px}
.about-info .about-content article p{font-size:16px}
.about-info .about-content .about-btn{width:140px;height:40px;font-size:16px}}
@media(min-width:1281px)and (max-width:1440px){
.about-info .about-content .content-title{font-size:26px}
.about-info .about-content article{padding-right:100px}
.about-info .about-content article p{font-size:14px}
.about-info .about-content .about-btn{width:120px;height:30px;font-size:14px}}
@media(max-width:1440px){
.about-info .about-content .content-title{padding-left:20px;font-size:18px}
.about-info .about-content article{padding:0px 20px}
.about-info .about-content article p{font-size:16px;line-height:28px}
.about-info .about-content .about-btn{width:120px;height:30px;font-size:14px;margin-left:20px}}
@media(min-width:769px)and (max-width:1081px){
.about-info .about-content article{padding:0px 20px}
.about-info .about-content article p{font-size:14px;line-height:28px}}
@media screen and (max-width:768px){
.about-info{position:relative}
.about-info .about-img{width:100%;background:var(--color)}
.about-info .about-img img{opacity:.1}
.about-info .about-content{padding:6vw 0vw;width:100%;background:0 0;z-index:9}
.about-info .about-content .content-title{padding-left:4vw;font-size:4.8vw;font-weight:bold;color:#FFFFFF}
.about-info .about-content article{padding-left:4vw;padding-right:4vw;margin:15px 0px}
.about-info .about-content article p{font-size:16px}
.about-info .about-img{position:absolute;height:100%;height:100%}
.about-info .about-content .about-btn{width:30vw;height:10vw;font-size:16px}
.about-info .about-content .about-btn:hover{background:#FFFFFF;border:2px solid var(--color);cursor:pointer}
.about-info .about-content .about-btn:hover a{color:var(--color)}
.about-info .about-content .about-btn a{color:#FFFFFF}}
@media screen and (min-width:751px)and (max-width:768px){
.about-info .about-content .content-title{font-size:28px}
.about-info .about-content article p,.hot-product ul li .pro-name,.lastest-news ul li .news-content .news-title{font-size:24px}
}

/* ————————————————————————————首页广告条———————————————————————————— */

        .index_adv_container {
            font-family: 'Microsoft YaHei', sans-serif;
            display: flex;
            min-height: 280px;
            position: relative;
        }

        /* 左侧样式 */
        .index_adv_left {
		
            flex: 1;
            background: #0066cc;
            position: relative;
            z-index: 2;
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 20px;
            color: white;
        }

        /* 右侧样式 */
        .index_adv_right {
            flex: 1.5;
            position: relative;
            background: url('../img/adv.jpg') center/cover;
			clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .index_adv_right::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.5);
        }

        /* 文字内容样式 */
		 .index_adv_left_content {
             padding-left:250px
        }
		
		
        .index_adv_title {
            font-size: 30px;
            font-weight: noraml;
            margin-bottom: 0px;
        }

        .index_adv_divider {
            width: 100px;
            height: 2px;
            background: white;
            margin: 20px 0;
        }

        .index_adv_slogan {
            font-size: 16px;
            letter-spacing: 1px;
        }

        /* 按钮样式 */
        .index_adv_btn {
            position: relative;
            z-index: 1;
            padding: 15px 40px;
            background: rgba(255,255,255,0.2);
            color: white;
            border: 2px solid white;
            border-radius: 30px;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            backdrop-filter: blur(5px);
        }

        .index_adv_btn:hover {
            background: rgba(0,0,0,0.5);
			color: white;
            transform: scale(1.02);
        }

        /* 移动端适配 */
        @media (max-width: 768px) {
            .index_adv_container {
                flex-direction: column;
                min-height: auto;
            }

            .index_adv_left {
                clip-path: none;
                padding: 50px 20px;
                text-align: center;
            }

            .index_adv_right {
                min-height: 150px;
            }

            .index_adv_title {
                font-size: 2rem;
            }

            .index_adv_divider {
                margin: 15px auto;
            }

            .index_adv_slogan {
                font-size: 1.2rem;
            }

            .index_adv_btn {
                font-size: 16px;
                padding: 12px 30px;
            }
        }

/* ————————————————————————————首页新闻中心———————————————————————————— */

  .index_info_container {
            margin: 0 auto;
            padding: 30px 0px 30px 0px;
            display: flex;
            flex-wrap: wrap;
        }

        .index_info_left,
        .index_info_right {
            padding: 0px;
            box-sizing: border-box;
        }

        .index_info_left {
            width: 60%;padding-right: 15px;
        }

        .index_info_right {
            width: 40%;padding-left: 15px;
        }

        /* 左半部分样式 */
        .index_info_left_top {
            margin-bottom: 20px;
        }

        .index_info_news_title {
            background: #0066cc;
            color: white;
			
            padding: 10px 10px;
			text-align:center;
            width: 120px;
            border-radius: 0px;
        }

        .index_info_left_mid {
            display: flex;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid #eee;
        }

        .index_info_mid_left {
            width: 30%;
        }

        .index_info_mid_right {
            width: 70%;
            padding-left: 15px;
        }
		  .index_info_mid_right h2 a{
			font-size: 22px;
            width: 100%;
			padding-top: 10px;
			
            padding-left: 10px;

        }
		  .index_info_mid_right p{
			font-size: 15px;
			padding-top: 10px;
            padding-left: 10px;
			line-height:28px;
        }
        .index_info_mid_img {
            width: 100%;
            height: auto;
            border-radius: 4px;
        }

        /* 新闻列表 */
        .index_info_news_item {
            display: flex;
            justify-content: space-between;
            padding: 14px 0;
            border-bottom: 1px solid #eee;
        }
        .index_info_news_item span{
          font-size: 14px;
        }

        .index_info_news_item:last-child {
            border-bottom--: none;
        }

        /* 右半部分样式 */
        .index_info_right_top {
            color: #0066cc;
            font-size: 18px;
            margin-bottom: 20px;
        }

        .index_info_qa_item {
            padding: 20px 0;
            border-bottom: 1px solid #ddd;
        }

        .index_info_qa_item:last-child {
            border-bottom: none;
        }

        .index_info_question {
            display: inline-block;
            background: #0066cc;
            color: white;
			font-size: 15px;
            padding: 2px 6px;
            border-radius: 3px;
            margin-right: 8px;
        }

        .index_info_answer {
            display: inline-block;
            background: #ff9400;
            color: #fff;
			font-size: 15px;
            padding: 2px 6px;
            border-radius: 3px;
            margin-right: 8px;
        }

        /* 移动端适配 */
        @media (max-width: 768px) {
            .index_info_left,
            .index_info_right {
                width: 100%;
            }

            .index_info_container {
                flex-direction: column;
            }

            .index_info_left_mid {
                flex-direction: column;
            }

            .index_info_mid_left {
                width: 100%;
                margin-bottom: 15px;
            }

            .index_info_mid_right {
                width: 100%;
                padding-left: 0;
            }
        }
/* ————————————————————————————首页底部优势———————————————————————————— */
.index_Adv { width:100%; overflow:hidden; margin:0 auto; padding:50px 0; background:#0066cc url(../img/bg_adv.png) center center no-repeat; background-size:cover;}
.index_Adv .indexAdv_main { width:1400px; height:auto; margin:0 auto; padding:0;}
.indexAdv_main ul li { width:25%; overflow:hidden; margin:0; padding:0 40px; float:left; box-sizing: border-box; -webkit-box-sizing: border-box; -moz-box-sizing: border-box;}
.indexAdv_main ul li .indexAdv_con { width:100%; height:80px; overflow:hidden; margin:0 auto; padding:15px 0 15px 85px; position:relative; box-sizing: border-box; -webkit-box-sizing: border-box; -moz-box-sizing: border-box;}
.indexAdv_main ul li .indexAdv_con img { display:block; width:80px; height:80px; margin:-40px 0 0; padding:0; position:absolute; left:0; top:50%; transform:rotateY(0deg); -webkit-transform:rotateY(0deg); -moz-transform:rotateY(0deg); -o-transform:rotateY(0deg); transition: all 0.5s; -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -o-transition: all 0.5s;}
.indexAdv_main ul li:hover .indexAdv_con img { transform:rotateY(180deg); -webkit-transform:rotateY(180deg); -moz-transform:rotateY(180deg); -o-transform:rotateY(180deg);}
.indexAdv_main ul li .indexAdv_con p { width:100%; height:30px; overflow:hidden; line-height:30px; color:#fff; font-size:24px; font-weight:bold; text-overflow:ellipsis; white-space:nowrap; margin:0 auto; padding:0;}
.indexAdv_main ul li .indexAdv_con span { display:block; width:100%; height:20px; overflow:hidden; line-height:20px; color:#fff; font-size:12px; text-transform:Uppercase; text-overflow:ellipsis; white-space:nowrap; margin:0 auto; padding:0; opacity:0.8;}

/* ————————————————————————————首页底部版权———————————————————————————— */
.am-cf:after,.am-cf:before{content:" ";display:table}.am-cf:after{clear:both}.am-fl{float:left}.am-fr{float:right}
footer{ background:#f0f0f0;  padding-top:50px;}
footer .foot-main{ padding-bottom:20px;}
footer .foot-main .foot-letxt{ width:32%; float:left;}
footer .foot-main .foot-letxt .stt{font-family: Bahnschrift,Arial, Helvetica, sans-serif; font-size:26px; text-transform:uppercase; font-weight:800; letter-spacing:-1px;}
footer .foot-main .foot-letxt .stel i{ width:32px; height:32px; display:inline-block; margin-right:8px; font-size:20px; text-align:center; background:#4d4d4d; border-radius:30px; color:#fff;}
footer .foot-main .foot-letxt .stel a{font-family: Bahnschrift,Arial, Helvetica, sans-serif; font-size:30px; text-transform:uppercase; font-weight:800; color:#4d4d4d}
footer .foot-main .foot-letxt .foot-le-txt{ font-size:14px; color:#333; line-height:2; margin-top:10px; max-width:96%;}
footer .foot-main .foot-nav{ width:50%; float:left;}
footer .foot-main .foot-nav ul{display: flex;flex-direction: row;justify-content: space-between;}
footer .foot-main .foot-nav ul li{}
footer .foot-main .foot-nav ul li{ float:left;}
footer .foot-main .foot-nav ul li .foot-tit{ font-size:18px; color:#333; margin-bottom:15px; }
footer .foot-main .foot-nav ul li .foot-tit a{ color:#333;}
footer .foot-main .foot-nav ul li p{ font-size:14px; color:#888a92; line-height:2.4;}
footer .foot-main .foot-nav ul li p a{ color:#333;}
footer .foot-main .foot-nav ul li p a:hover{ color:#000;}
footer .foot-main .foot-nav ul li:nth-child(2) p{}
footer .foot-main .foot-ewm{ width:120px; float:right; text-align:center; font-size:14px; color:#333;}
footer .foot-main .foot-ewm p{ margin-top:5px;}
footer .yq-link{ margin-top:35px; color:#666; font-size:18px;}
footer .yq-link a{ color:#666; font-size:14px; display:inline-block; margin-right:10px;}

footer .foot-copyr{ padding:20px 0;font-size:14px;color:#666;border-top:1px solid rgba(0,0,0,.08);}
footer .foot-copyr a{color:#666;}
@media screen and (max-width:1024px){
footer{ padding-top:0;}
footer .foot-main .foot-nav{ display:none;}
footer .foot-main .foot-letxt{ width:60%;}
footer .foot-main .foot-letxt .foot-le-txt{ font-size:12px; max-width:100%;}
footer .foot-main .foot-letxt .stt{ font-size:18px;}
footer .foot-main .foot-letxt .stel a{ font-size:18px;}
footer .foot-main .foot-letxt .stel i{ width:24px; height:24px; font-size:15px;}
footer .yq-link{ display:none;}
footer .foot-main{ border-top:none; padding:40px 0;}
footer .foot-main .foot-ewm{ margin-top:10px;}
footer .foot-main .foot-ewm p{ font-size:12px;}
footer .foot-copyr{ font-size:10px;}
footer .foot-copyr p{ float:none; text-align:center;}
footer .foot-copyr p img{ width:90px; margin-top:-7px !important;}
}
