      

@charset "utf-8";
/* sass变量 */
*html {
  background-image: url(about:blank);
  background-attachment: fixed;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
p,
blockquote,
dl,
dt,
dd,
ul,
ol,
li,
pre,
form,
fieldset,
legend,
button,
input,
textarea,
th,
td {
  margin: 0;
  padding: 0;
}

body,
button,
input,
select,
textarea {
  font: 14px/1.5 "Microsoft YaHei", "微软雅黑" ；;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var,
i {
  font-style: normal;
  font-weight: normal;
}

code,
kbd,
pre,
samp {
  font-family: courier new, courier, monospace;
}

ul,
ol {
  /*list-style: none;*/
}

a {
  color: #333;
  text-decoration: none;
}

a:hover {
  color: #666;
}

input::-webkit-input-placeholder {
  font-size: 12px;
  color: #999;
}

:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  font-size: 12px;
  color: #999;
}

::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  font-size: 12px;
  color: #999;
}

:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  font-size: 12px;
  color: #999;
}

fieldset,
img {
  border: 0;
  vertical-align: bottom;
}

q:before,
q:after {
  content: '';
}

button,
input,
select,
textarea {
  font-size: 100%;
  outline: 0;
}
























  /* 全局样式 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Microsoft YaHei", sans-serif;
        }
        body {
            background-color: #f5f5f5;
            color: #333;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* 页眉样式 */
        header {
            background: linear-gradient(135deg, #0A2463 0%, #1E3A8A 100%);
            color: white;
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            display: flex;
            align-items: center;
        }
        .logo img {
            width: 580px;
            height: 70px;
            margin-right: 15px;
        }
        .logo h1 {
            font-size: 24px;
            font-weight: bold;
            color: #FFD700;
        }
        .search-box {
            display: flex;
        }
        .search-box input {
            /*padding: 8px;*/
            border: none;
           /* border-radius: 4px 0 0 4px;*/
        }
        .search-box button {
            padding: 8px 15px;
            background: #FFD700;
            border: none;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
        }

        /* 导航栏 */
        nav {
            background-color: #2c3e50;
            margin-top: 10px;
        }
        .nav-menu {
            display: flex;
            list-style: none;
        }
        .nav-menu > li {
            position: relative;
            width: 200px;
            text-align: center;
        }
        .nav-menu > li > a {
            display: block;
            padding: 12px 20px;
            color: #EAEAEA;
            text-decoration: none;
            transition: background 0.3s;
        }
        .nav-menu > li > a:hover {
            background-color: #3498db;
        }
        .sub-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            box-shadow: 0 3px 10px rgba(0,0,0,0.2);
            min-width: 146px;
            z-index: 100;
            list-style-type: none;
        }
        .sub-menu li a {
            display: block;
            padding: 10px 15px;
            color: #333;
            text-decoration: none;
            border-bottom: 1px solid #eee;
        }
        .sub-menu li a:hover {
            background: #f8f9fa;
            color: #0A2463;
        }
        .nav-menu li:hover .sub-menu {
            display: block;
        }


/*banner*/
.banner{
	width: 100%;
	height: auto;
	overflow: hidden;
}
.slideBox {
	width: 100%;
	overflow: hidden;
	position: relative;
	margin-bottom: 20px;
        margin-top: 10px;
}
.slideBox1{
	height: 400px;
}
.slideBox .bd {
	position: relative;
	height: 100%;
	z-index: 0;
}
.slideBox .bd li {
	zoom: 1;
	vertical-align: middle;
}
/*前/后按钮代码 */
.slideBox .prev,
.slideBox .next {
	position: absolute;
	left: 16.5%;
	top: 50%;
	display: block;
	-moz-transition: all 0s ease-in;
	-webkit-transition: all 0s ease-in;
	-o-transition: all 0s ease-in;
	transition: all 0s ease-in;
}
.slideBox1 .prev,
.slideBox1 .next {
	margin-top: -41px;
	width: 44px;
	height: 82px;
	/* background: url(../images/arrow.png) 0 0 no-repeat;*/
}
.slideBox .next {
	left: auto;
	right: 16.5%;
	background-position: right 0; 
}
.slideBox1 .prev:hover{
	-moz-transition: all 0s ease-in;
	-webkit-transition: all 0s ease-in;
	-o-transition: all 0s ease-in;
	transition: all 0s ease-in;
	background-position: 0 bottom;
}
.slideBox1 .next:hover{
	-moz-transition: all 0s ease-in;
	-webkit-transition: all 0s ease-in;
	-o-transition: all 0s ease-in;
	transition: all 0s ease-in;
	background-position: right bottom;
}



.container1 {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 15px;
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}



       

.main-list2 li {
  line-height: 36px;
  /*white-space: nowrap;*/
  /*overflow: hidden;*/
  text-overflow: ellipsis;
  padding-left: 15px;
 /* background: url(../images/arr1.jpg) left center no-repeat;*/
 font-size: 17px;
list-style-type: none;

}

.main-list2 li .date {
  float: right;
  font-size: 14px;
  color: #242323;
  /*background:url(../images/tiem_bg.jpg );*/
}

.main-list2 li.last {
  border: none;
}












        .btn {
            display: inline-block;
            padding: 10px 25px;
            background: #FFD700;
            color: #0A2463;
            text-decoration: none;
            border-radius: 4px;
            font-weight: bold;
            transition: all 0.3s;
        }
        .btn:hover {
            background: #e6c200;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        /* 专业特色区块 */
        .specialties {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }
        .specialty-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: transform 0.3s;
        }
        .specialty-card:hover {
            transform: translateY(-10px);
        }
        .card-header {
            background: #0A2463;
            color: white;
            padding: 20px;
            text-align: center;
        }
        .robotics .card-header { background: linear-gradient(90deg, #0A2463, #3498db); }
        .drones .card-header { background: linear-gradient(90deg, #1E3A8A, #2c3e50); }
        .automation .card-header { background: linear-gradient(90deg, #2c3e50, #1a2a6c); }

        .card-body {
            padding: 20px;
        }
        .card-body ul {
            padding-left: 20px;
            margin: 15px 0;
        }
        .card-body li {
            margin-bottom: 8px;
            color: #555;
        }

        /* 新闻通知区块 */
        .news-section {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 30px;
            margin: 40px 0;
        }
        .news-column, .notice-column {
            background: white;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }
        .section-title {
            color: #0A2463;
            border-left: 4px solid #FFD700;
            padding-left: 12px;
            margin-bottom: 20px;
            font-size: 22px;
        }
        .news-list li {
            list-style: none;
            padding: 15px 0;
            border-bottom: 1px solid #eee;
        }
        .news-list li:last-child {
            border-bottom: none;
        }
        .news-title {
            font-weight: bold;
            color: #0A2463;
            text-decoration: none;
            display: block;
            margin-bottom: 5px;
          }
        .news-title2 {
            color: #4a4c52;
            display: block;
            text-decoration: none;
            margin-bottom: 5px;
             }
        .news-title:hover {
            color: #3498db;
        }
        .news-title2:hover {
            color: #3498db;
        }

        .news-date {
            color: #888;
            font-size: 14px;
        }

        /* 重要信息区块 */
        .info-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 40px 0;
        }
        .info-card {
            background: white;
            padding: 25px;
            border-radius: 8px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }
        .info-card h3 {
            color: #0A2463;
            margin-bottom: 15px;
        }
        .info-card .number {
            font-size: 36px;
            font-weight: bold;
            color: #FFD700;
            display: block;
            margin: 15px 0;
        }
        .info-card p {
            color: #666;
            line-height: 1.6;
        }

        /* 页脚 */
        footer {
            background: #2c3e50;
            color: #EAEAEA;
            padding: 40px 0 20px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        .footer-column h3 {
            color: #FFD700;
            margin-bottom: 20px;
            font-size: 18px;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        .footer-links a {
            color: #EAEAEA;
            text-decoration: none;
        }
        .footer-links a:hover {
            color: #FFD700;
            text-decoration: underline;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #3a506b;
            color: #aaa;
            font-size: 14px;
        }







.right-con {
  float: right;
  width: 700px;   
/* min-height: 720px;*/
}

.right-con .bread {
  text-align: right;
  margin-bottom: 10px;
  height: 40px;
  line-height: 40px;
  padding: 0 20px;
  color: #999;
  font-size: 12px;
}

.right-con .bread span {
  margin: 0 7px;
}

.right-con .bread a {
  color: #999;
  font-size: 18px;
}

.right-con .bread img {
  vertical-align: middle;
}

.right-con .inner-tit {
  background: #fff;
 /* border: 5px solid #ddddde;*/
  padding: 20px;
  margin-bottom: 15px;
}

.right-con .inner-tit span {
  display: inline-block;
  vertical-align: middle;
}

.right-con .inner-tit .text1 {
  padding-left: 20px;
  line-height: 24px;
  font-weight: bold;
  font-size: 18px;
  background: url(../images/line.jpg) left center no-repeat;
}

.right-con .inner-tit .text2 {
  font-weight: bold;
  color: #999;
}

.right-con .inner-tit .line {
  height: 22px;
  width: 1px;
  background: #dedee7;
  margin: 0 15px;
}

.right-con .main-text-list dl {
  padding: 12px 0;
  border-bottom: 1px dashed #cccccc;
}

.right-con .main-text-list dl dt {
  float: left;
  width: 70px;
  line-height: 35px;
  color: #fff;
  text-align: center;
}

.right-con .main-text-list dl dt .d {
  background: #99cc33;
}

.right-con .main-text-list dl dt .y {
  background: #3399cc;
}

.right-con .main-text-list dl dd {
  margin-left: 85px;
  line-height: 36px;
}

.right-con .main-text-list dl dd h6 {
  font-size: 15px;
}

.right-con .main-text-list dl dd p {
  color: #999;
}

.right-con .main-text-list dl dd p a {
  color: #f00;
}


.picScroll-left {
    width: 1400px;
    overflow: hidden;
    position: relative;
    margin: 30px auto;
}

.title {
   /* width: 100%;*/
    border-bottom: 1px #b2b2b2 dashed;
    line-height: 50px;
    height: 50px;
    font-size: 20px;
    color: #124998;
    padding-bottom: 10px;
}

.title a {
    display: block;
    width: 60px;
    height: 50px;
    /*background: url(../images/more.jpg) no-repeat center center;*/
    font-size: 14px;
    margin-top: -60px;
    margin-left: 1350px;

}




.right-con .main-pic-list ul {
  margin: 0 -30px;
}

.right-con .main-pic-list li {
  position: relative;
  float: left;
  width: 180px;
  height: 200px;
  margin: 15px 30px;
}

.right-con .main-pic-list li img {
  width: 100%;
  height: 100%;
}

.right-con .main-pic-list li .text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 90%;
  padding: 0 5%;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: #fff;
  font-size: 16px;
   
}

.right-con .main-pic-list li .cover {
  display: none;
  
  position: absolute;
  left: 0;
  top: 0;
  width: 80%;
  height: 100%;
  padding: 0 10%;
}

.right-con .main-pic-list li .cover a {
  color: #fff;
}

.right-con .main-pic-list li .cover h6 {
  font-size: 16px;
  margin-top: 10px;
  line-height: 40px;
}

.right-con .main-pic-list li .cover p {
  color: #ccc;
  line-height: 30px;
  font-size: 13px;
}

.right-con .main-pic-list li:hover .cover {
  display: block;
}

.right-con .main-pic-list li:hover .text {
  display: none;
}

.right-con .navigation {
  text-align: center;
  margin: 30px 0;
}

.right-con .navigation a {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  width: 26px;
  margin: 0 5px;
  height: 26px;
  text-align: center;
  line-height: 26px;
  color: #fff;
  background: #18427a;
}

.detail .title {
  line-height: 40px;
  color: #286193;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}

.detail .infor {
  line-height: 40px;
  text-align: center;
  line-height: 30px;
  padding-bottom: 10px;
  margin-bottom: 20px;
  /*border-bottom: 1px dashed #ccc;*/
}

.detail .main {
  line-height: 30px;
}




.leftbar {
  float: left;
  width: 300px;
  min-height: 500px;
}

.leftbar .title {
  line-height: 35px;
  background: #0977b6;
  margin-top: 1px;
  color: #fff;
  padding: 10px 20px 10px;
  font-size: 24px;
  border-bottom: 2px solid #c6b746;
  text-align: center;
}

.leftbar .list {
  margin-bottom: 10px;
}

.leftbar .list li {
  line-height: 42px;
  border-bottom: 1px solid #e7e7e7;
  width: 300px;
  list-style: none;
}

.leftbar .list li a {
  display: block;
  text-align: center;
  font-weight: bold;
  font-size: 17px;
}

.leftbar .list li.on {
  background: #efefef;
}





































        /* 响应式设计 */
        @media (max-width: 768px) {
            .header-top {
                flex-direction: column;
                text-align: center;
            }
            .logo {
                margin-bottom: 15px;
                justify-content: center;
            }
            .nav-menu {
                flex-direction: column;
            }
            .nav-menu > li {
                border-bottom: 1px solid #3a506b;
                width: 200px;
                text-align: center;
            }
            .sub-menu {
                position: static;
                width: 100%;
                box-shadow: none;
            }
            .banner {
                height: 300px;
            }
            .banner-text {
                left: 20px;
                bottom: 30px;
            }
            .banner-text h2 {
                font-size: 24px;
            }
            .news-section {
                grid-template-columns: 1fr;
            }
        }
.qa-sdk-wrapper {
  position: fixed;
  width: 400px;
  right: -600px;
  max-height: 530px;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease-in-out;
  background: #fff;
}

.qa-sdk-close-btn {
  display: inline-block;
  width: 18px;
  height: 18px;
  cursor: pointer;
  position: absolute;
  top: 16px;
  right: 16px;
}

.qa-sdk-close-btn:hover {
  border-radius: 50%;
  background-color: #d5d9df;
}

#qa-sdk-iframe {
  width: 400px;
}

@media (min-width: 1024px) and (max-width: 1366px) {
  .qa-sdk-wrapper{
    width: 356px;
  }
  #qa-sdk-iframe {
    width: 356px;
  }
}

    