* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "微软雅黑";
  font-size: 16px;
  color: #565656;
  line-height: 1.8;
}
ul,
li {
  list-style: none;
}
img {
  display: inline-block;
  width: 100%;
  vertical-align: middle;
}
a {
  display: inline-block;
  width: 100%;
}
.bg {
  background: #09467d !important;
}
.color {
  color: #09467d !important;
}
.container {
  width: 1200px;
  margin: auto;
  overflow: hidden;
}
.over1 {
  overflow: hidden;
  /*文本不会换行*/
  white-space: nowrap;
  /*当文本溢出包含元素时，以省略号表示超出的文本*/
  text-overflow: ellipsis;
}
.over2 {
  width: 300px;
  overflow: hidden;
  /*将对象作为弹性伸缩盒子模型显示*/
  display: -webkit-box;
  /*设置子元素排列方式*/
  -webkit-box-orient: vertical;
  /*设置显示的行数，多出的部分会显示为...*/
  -webkit-line-clamp: 2;
}
.over3 {
  width: 300px;
  overflow: hidden;
  /*将对象作为弹性伸缩盒子模型显示*/
  display: -webkit-box;
  /*设置子元素排列方式*/
  -webkit-box-orient: vertical;
  /*设置显示的行数，多出的部分会显示为...*/
  -webkit-line-clamp: 3;
}
.xie {
  font-family: Cambria Math, sans-serif;
}
/*------------------------------头部开始------------------------------*/
.header .lang_box {
  padding: 6px 0;
  background: #09467d;
}
.header .lang_box .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .lang_box .container .tips {
  color: #fff;
  font-size: 12px;
}
.header .lang_box .container .lang {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.header .lang_box .container .lang a {
  font-size: 12px;
  color: #fff;
}
.header .lang_box .container .lang .line {
  display: inline-block;
  width: 1px;
  height: 8px;
  background: #fff;
  margin: 0 8px;
}
.header .content {
  display: flex;
}
.header .content .logo_box {
  width: 400px;
  text-align: center;
}
.header .content .logo_box .li_jump {
  width: 120px;
  float: left;
}
.header .content .ul {
  flex: 1;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
}
.header .content .ul .li {
  padding: 0 30px;
  height: 88px;
  text-align: center;
  margin-left: 20px;
}
.header .content .ul .li .logo {
  height: 88px;
}
.header .content .ul .li .li_jump {
  height: 100%;
  line-height: 88px;
  position: relative;
}
.header .content .ul .li .li_jump:after {
  transition: all 0.3s;
  opacity: 0;
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 5px;
  background: #09467d;
  border-radius: 6px;
}
.header .content .ul .li span {
  font-weight: 700;
  padding: 6px 0;
  border-bottom: 2px solid #ffffff;
  transition: all 0.5s;
}
.header .content .ul .li .mouseover_box {
  display: none;
  position: fixed;
  top: 120px;
  left: 50%;
  transform: translateX(-50%);
  width: 1200px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  z-index: 10;
}
.header .content .ul .li .mouseover_box .list {
  padding: 30px;
  display: flex;
  flex-wrap: wrap;
}
.header .content .ul .li .mouseover_box .list .item {
  width: 33.33%;
  align-items: left;
  padding: 0 30px 30px 0;
}
.header .content .ul .li .mouseover_box .list .item .title {
  text-align: left;
  border-bottom: 2px solid #0099cc;
  padding-bottom: 15px;
}
.header .content .ul .li .mouseover_box .list .item .content {
  display: flex;
}
.header .content .ul .li .mouseover_box .list .item .content .c_list {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  padding-top: 15px;
}
.header .content .ul .li .mouseover_box .list .item .content .c_list .c_li {
  width: 50%;
  text-align: left;
  cursor: pointer;
}
.header .content .ul .li .mouseover_box .list .item .content .c_list .c_li span {
  font-size: 14px;
  color: #0099cc;
}
.header .content .ul .li .mouseover_box .list .item .content .img {
  width: 100px;
  object-fit: cover;
}
.header .content .ul .li .mouseover_box_active {
  display: block;
}
.header .content .ul .li:last-child {
  padding-right: 0;
}
.header .content .ul .active .li_jump:after {
  opacity: 1;
}
.header .content .ul .active .li_jump span {
  font-weight: 700;
  color: #09467d;
}
/*------------------------------头部结束------------------------------*/
/*------------------------------内页公共开始------------------------------*/
.banner {
  height: 250px;
}
.banner img {
  height: 100%;
}
.head_title .content {
  padding: 10px 0;
  display: flex;
}
.head_title .content h3 {
  padding: 10px 0 4px 0;
  font-family: "Roboto Th", sans-serif;
  color: #09467d;
  font-size: 28px;
}
.head_title .content span {
  padding: 24px 0 0 20px;
  font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
  font-size: 13px;
  color: #666;
  font-style: italic;
}
.head_title .border_bottom {
  height: 14px;
  background: #e1f2fb;
}
/*------------------------------内页公共结束------------------------------*/
/*------------------------------尾部开始------------------------------*/
.footer {
  background: #f0f0f0;
}
.footer .nav_list {
  padding: 30px 0;
  display: flex;
}
.footer .nav_list .item {
  width: 20%;
  margin-right: 20px;
}
.footer .nav_list .item h3 {
  font-size: 14px;
  text-align: left;
  color: #252525;
  font-family: Verdana, Geneva, sans-serif;
}
.footer .nav_list .item .effect {
  margin: 6px 0 8px 0;
  width: 100%;
  height: 2px;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0px 1px 0px #ccc inset;
}
.footer .nav_list .item .list .li a {
  padding: 0 0 0 2px;
  font-family: "Franklin Gothic";
  color: #666;
  font-size: 12px;
}
.footer .nav_list .item .list .li a:hover {
  text-decoration: underline;
}
.footer .copyright {
  padding: 10px 0;
  text-align: center;
  background: #09467d;
}
.footer .copyright h2,
.footer .copyright h3 {
  font-family: "Franklin Gothic Book";
  font-size: 12px;
  color: #fff;
  padding: 6px 0;
}
.footer .copyright h3 a {
  font-family: "Franklin Gothic Book";
  font-size: 12px;
  color: #fff;
  overflow: hidden;
  margin: 0px;
  padding: 0px;
  border: none;
  list-style: none;
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
}
/*------------------------------尾部结束------------------------------*/
/*------------------------------首页开始------------------------------*/
.index .swiper_box {
  overflow-x: hidden;
}
.index .product {
  background: #fff;
}
.index .product .list {
  display: flex;
  flex-wrap: wrap;
  padding: 30px 10px;
}
.index .product .list .item {
  width: 24%;
  background: #f3f3f3;
  transition: all 0.3s;
  margin-right: 1%;
  margin-bottom: 1.25%;
}
.index .product .list .item .img_box {
  margin-top: 10px;
}
.index .product .list .item .img_box .img {
  object-fit: none;
}
.index .product .list .item .desc {
  display: block;
  margin: 20px 0 10px 0;
  padding: 0 3px;
  width: 242px;
  height: 58px;
  transition: margin 0.5s, height 0.5s;
  color: #696969;
  text-align: justify;
  font-family: Cambria Math, sans-serif;
  font-style: italic;
  font-size: 13px;
  line-height: 20px;
  opacity: 0.93;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.index .product .list .item .explain {
  padding: 10px 0;
  display: block;
  opacity: 0.908;
  font-family: Roboto, sans-serif;
  font-size: 14px;
  color: #09467d;
  text-align: left;
  transition: color 0.3s;
  padding-left: 10px;
  font-weight: 700;
  text-align: center;
}
.index .product .list .item:hover {
  box-shadow: 2px 2px 8px #999, 0 42px 0 #09467d inset;
}
.index .product .list .item:hover .explain {
  color: #fff;
  font-weight: 700;
}
.index .news {
  margin-top: 30px;
  padding-top: 30px;
  background: #f6f6f6;
}
.index .news .title {
  text-align: center;
  font-weight: 700;
  font-size: 32px;
  text-transform: uppercase;
}
.index .news .sub_title {
  text-align: center;
  font-weight: 700;
  font-size: 26px;
  text-transform: uppercase;
  color: #ccc;
}
.index .news .content {
  display: flex;
}
.index .news .content .cover {
  flex: 1;
  overflow: hidden;
}
.index .news .content .cover img {
  transition: all 0.3s;
}
.index .news .content .cover:hover img {
  transform: scale(1.1);
}
.index .news .content .right {
  flex: 2;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
}
.index .news .content .right .r_title {
  font-weight: 700;
  font-size: 18px;
}
.index .news .content .right .time {
  padding: 8px 0;
  font-size: 16px;
  color: #ccc;
}
.index .news .content .right .explain {
  font-size: 14px;
  line-height: 30px;
  margin-bottom: auto;
}
.index .news .content .right .more a {
  width: auto;
  font-size: 18px;
  line-height: 32px;
  text-transform: uppercase;
  border-bottom: 1px solid #09467d;
}
.index .news .news_list {
  display: flex;
  padding-bottom: 30px;
}
.index .news .news_list .item {
  width: 32%;
  padding: 15px;
  background: #fff;
  transition: all 0.3s;
}
.index .news .news_list .item .jump {
  width: 100%;
  display: flex;
}
.index .news .news_list .item .jump .date {
  flex-shrink: 0;
  width: 80px;
  text-align: center;
}
.index .news .news_list .item .jump .date .num {
  font-size: 22px;
  color: #999;
}
.index .news .news_list .item .jump .date .d_time {
  font-size: 12px;
  color: #999;
}
.index .news .news_list .item .jump .a_content {
  padding-left: 10px;
  font-size: 16px;
  line-height: 28px;
}
.index .news .news_list .item:nth-child(2) {
  margin: 0 2%;
}
.index .news .news_list .item:hover {
  background: #09467d;
}
.index .news .news_list .item:hover .jump .date .num {
  color: #fff;
}
.index .news .news_list .item:hover .jump .date .d_time {
  color: #fff;
}
.index .news .news_list .item:hover .jump .a_content {
  color: #fff;
}
.index .coop {
  padding: 50px 0;
  background: #fff;
}
.index .coop .c_item {
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}
.index .coop .c_item:hover {
  border: 1px solid #09467d;
}

.index .coop .c_item img {
    height: 80px;
}
/*------------------------------首页结束------------------------------*/
.product .wrap .content {
  padding: 30px 0;
  display: flex;
}
.product .wrap .content .left_menus {
  width: 25%;
  padding-right: 30px;
}
.product .wrap .content .left_menus .list .item h3 a {
  display: block;
  padding: 9px 0 9px 0;
  background: #f6f6f6;
  border: 1px solid #e9e9e9;
  text-indent: 12px;
  font-family: "Roboto", sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  color: #5c5c5c;
  transition: box-shadow 0.2s;
}
.product .wrap .content .left_menus .list .item .ul {
  padding: 10px 0;
  display: none;
}
.product .wrap .content .left_menus .list .item .ul .li a {
  display: block;
  padding: 4px 0 4px 0;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  color: #555;
  font-weight: 500;
  text-indent: 24px;
}
.product .wrap .content .left_menus .list .item .ul .li a:hover {
  color: #000;
}
.product .wrap .content .left_menus .list .active h3 a {
  color: #09467d;
  box-shadow: 4px 0 0 #09467d inset;
}
.product .wrap .content .left_menus .list .active .ul {
  display: block;
}
.product .wrap .content .c_content {
  flex: 1;
  border-left: 1px solid #ddd;
  padding-left: 30px;
}
.product .wrap .content .c_content .title {
  height: 34px;
  font-family: "MS Serif", "New York", serif;
  color: #B63E3A;
  font-size: 26px;
  line-height: 18px;
  cursor: pointer;
}
.product .wrap .content .c_content .desc {
  margin: 10px 0 0 0;
  font-size: 13.5px;
  line-height: 16px;
  font-family: Cambria Math, sans-serif;
  line-height: 22px;
  color: #3c3c3c;
  text-align: justify;
}
.product .wrap .content .c_content .explain h4 {
  margin: 30px 0 4px 0;
  color: #363636;
  font-size: 14px;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
}
.product .wrap .content .c_content .ul_list li {
  display: flex;
  align-items: center;
}
.product .wrap .content .c_content .ul_list li span {
  font-size: 12px;
  font-family: Calibri;
  color: #4c4c4c;
  text-indent: 12px;
  line-height: 16px;
  text-align: justify;
  font-weight: 500;
}
.product .wrap .content .c_content h4 {
  margin: 30px 0 4px 0;
  color: #363636;
  font-size: 14px;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
}
.product .wrap .content .c_content .desc {
  margin: 10px 0 0 0;
  font-size: 13.5px;
  line-height: 16px;
  font-family: Cambria Math, sans-serif;
  line-height: 22px;
  color: #3c3c3c;
  text-align: justify;
}
.product .wrap .content .c_content .title {
  overflow: hidden;
  display: block;
  margin: 0 0 2px 0;
  width: 99.9%;
  height: 40px;
  background: #09467d;
  box-shadow: 0 0 1px #00344d inset;
  border-radius: 3px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10px;
  margin: 20px 0;
}
.product .wrap .content .c_content .title span {
  color: #fff;
  font-weight: 700;
}
.product .wrap .content .c_content .title .iconfont {
  color: #fff;
  font-weight: 700;
  font-size: 26px;
}
.product .wrap .content .c_content .wrap_content {
  display: flex;
}
.product .wrap .content .c_content .wrap_content .ul_list {
  width: 50%;
}
.product .wrap .content .c_content .wrap_content .cover_box {
  width: 50%;
  text-align: right;
}
.product .wrap .content .c_content .wrap_content .cover_box .cover {
  margin: 0 0 15px 0;
  max-width: 90%;
  width: auto;
}

.product .wrap .content .c_content .product_cover {
  padding-top: 30px;
}
.product .wrap .content .c_content .product_cover .pc_list {
  display: flex;
  flex-wrap: wrap;
}
.product .wrap .content .c_content .product_cover .pc_list .pc_box {
  width: 30%;
  margin-right: 1%;
  margin-bottom: 30px;
}
.product .wrap .content .c_content .product_cover .pc_list .pc_box .pc_cover {
  overflow: hidden;
  height: 260px;
  padding: 20px;
}
.product .wrap .content .c_content .product_cover .pc_list .pc_box .pc_cover img {
  transition: all 0.3s;
  height: 100%;
    object-fit: contain;
}
.product .wrap .content .c_content .product_cover .pc_list .pc_box .pc_text {
  text-align: center;
  padding-top: 8px;
  width: 100%;
  font-size: 14px;
  line-height: 24px;
}
.product .wrap .content .c_content .product_cover .pc_list .pc_box:hover .pc_cover img {
  transform: scale(1.1);
}
.product .wrap .content .c_content .product_cover .pc_list .pc_box:nth-child(3n+3) {
  margin-right: 0;
}

.service .item_box {
  padding: 20px 0;
  text-align: center;
}
.service .item_box h3 {
  padding: 0 0 3px 0;
  color: #09467d;
  font-size: 38px;
}
.service .item_box .explain {
  font-family: "Lucida Sans Unicode", "Microsoft Sans Serif";
  font-size: 12.5px;
  color: #222;
  line-height: 24px;
  text-align: left;
}
.service .title {
  display: block;
  width: 320px;
  height: 42px;
  background: url(../img/sub-head.png) no-repeat;
  color: #FFF;
  text-align: center;
  line-height: 42px;
  font-size: 22px;
  font-weight: 400;
}
.service .level-one-list > li {
  display: inline-block;
  overflow: hidden;
  margin: 0 90px 30px 0;
  padding: 0;
  height: auto;
  background: none;
  list-style-type: none;
  vertical-align: top;
  font-family: Calibri;
  text-indent: 12px;
  color: #5c5c5c;
  font-size: 11.5px;
  text-align: justify;
}
.service .level-one-list > li h4 {
  padding: 30px 0 0 0;
  font-size: 18px;
  color: #111;
  text-indent: 0;
}
.service .level-one-list > li .level-two-list {
  padding: 10px 0 0 0;
}
.service .level-one-list > li .level-two-list li {
  color: #5c5c5c;
  font-size: 11.5px;
}
.news .content {
  padding: 30px 0;
  display: flex;
}
.news .content .menus {
  width: 20%;
}
.news .content .menus a {
  display: flex;
  align-items: center;
  font-family: Franklin Gothic;
}
.news .content .menus a h3 {
  padding-left: 5px;
  font-size: 14px;
  color: #000;
  font-weight: 400;
}
.news .content .menus .active h3 {
  color: #09467d;
  padding-left: 5px;
  font-weight: 700;
}
.news .content .menus .active i {
  color: #09467d;
}
.news .content .list {
  flex: 1;
}
.news .content .list h4 {
  font-family: "MS Serif", "New York", serif;
  color: #3c3c3c;
  font-size: 26px;
  line-height: 18px;
  height: 34px;
  border-bottom: 1px solid #e9e9e9;
}
.news .content .list .mediaindex-list-1 {
  padding-top: 20px;
}
.news .content .list .mediaindex-list-1 li {
  overflow: hidden;
  margin: 10px 0 20px 0;
}
.news .content .list .mediaindex-list-1 li .items {
  padding: 10px;
  background: #e9e9e9;
  display: flex;
  align-items: center;
}
.news .content .list .mediaindex-list-1 li .items a {
  padding: 0 0 0 12px;
  font-family: "Roboto Th", sans-serif;
  font-size: 14px;
  color: #3c3c3c;
  font-weight: 600;
}
.news .content .list .mediaindex-list-1 li .items i {
  float: right;
  font-size: 10px;
  color: #777;
  line-height: 20px;
  flex-shrink: 0;
}
.news .content .list .mediaindex-list-1 li .columns {
  display: flex;
  padding: 15px 0;
}
.news .content .list .mediaindex-list-1 li .columns .columns-left {
  width: 130px;
}
.news .content .list .mediaindex-list-1 li .columns .b {
  flex: 1;
  padding: 0 20px;
}
.news .content .list .mediaindex-list-1 li .columns .b p {
  font-size: 12px;
  overflow: hidden;
  margin: 0px;
  padding: 0px;
  border: none;
  list-style: none;
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
  color: #5c5c5c;
}
.news .content .list .mediaindex-list-1 li .columns .b p:first-child {
  font-weight: 700;
  padding-bottom: 10px;
}
.news .content .list .mediaindex-list-1 li .more {
  text-align: right;
  display: block;
  margin: 20px 10px 0 0;
  color: #888;
  font-size: 11px;
  font-family: Georgia, "Times New Roman", Times, serif;
}
.news .content .c_list h4 {
  font-family: "MS Serif", "New York", serif;
  color: #3c3c3c;
  font-size: 26px;
  line-height: 18px;
  height: 34px;
  border-bottom: 1px solid #e9e9e9;
}
.news .content .c_list .li {
  list-style: none;
  padding-top: 20px;
  padding-bottom: 30px;
}
.news .content .c_list .li .desc {
  line-height: 24px;
  font-size: 13.5px;
  font-family: Cambria Math, sans-serif;
}
.news .content .c_list .li .cover {
  width: 33.33%;
  margin: 5px 0;
}
.about_us .c_content {
  display: flex;
  padding: 30px;
  min-height: 300px;
}
.about_us .c_content .menus {
  width: 20%;
}
.about_us .c_content .menus a {
  display: flex;
}
.about_us .c_content .menus a i {
  color: #09467d;
}
.about_us .c_content .menus a h3 {
  color: #09467d;
  padding-left: 6px;
}
.about_us .c_content .form_box {
  flex: 1;
  border-left: 1px solid #ddd;
  padding: 0 30px;
}
.about_us .c_content .form_box h3 {
  font-size: 17.5px;
  font-family: "Roboto", sans-serif;
  color: #09467d;
}
.about_us .c_content .form_box .list {
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
}
.about_us .c_content .form_box .list .item {
  width: 50%;
  padding-bottom: 20px;
}
.about_us .c_content .form_box .list .item .name {
  display: block;
  padding: 0 0 6px 0;
  width: 100px;
  color: #8c8c8c;
  font-weight: 500;
  font-size: 12px;
  font-style: italic;
  font-family: "Arial", Gadget, sans-serif;
}
.about_us .c_content .form_box .list .item .text {
  padding: 0 0 0 30px;
  line-height: 25px;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #2c2c2c;
}
