@import url("../iconfont/iconfont.css");

/*安友软件官网2025版*/
* {
  outline: none;
  font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  list-style: none;
}

:root {
  --color-primary: #003074;
  --color-primary-light: #305b99;
  --color-white: #fff;
}

a {
  text-decoration: none;
}

img {
  overflow-clip-margin: content-box;
  overflow: clip;
}
.no-select {
  -webkit-user-select: none; /* Chrome, Safari, Opera */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none;
}
.text-ellipsis {
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 100%;
  display: block;
}
.flex-box {
  display: flex;
}
/*水平*/
.flex-space-between {
  justify-content: space-between;
}
.flex-space-around {
  justify-content: space-around;
}
.flex-center {
  justify-content: center;
}
.flex-start {
  justify-content: flex-start;
}
.flex-end {
  justify-content: flex-end;
}
/*垂直*/
.flex-top {
  align-items: flex-start;
}
.flex-items-center {
  align-items: center;
}
.flex-bottom {
  align-items: flex-end;
}
.flex-stretch {
  align-items: stretch;
}
.flex-baseline {
  align-items: baseline;
}
.flex-1 {
  flex: 1;
}
.flex-2 {
  flex: 2;
}
.flex-3 {
  flex: 3;
}
.flex-4 {
  flex: 4;
}
.flex-5 {
  flex: 5;
}
.flex-6 {
  flex: 6;
}
.flex-7 {
  flex: 7;
}
.flex-8 {
  flex: 8;
}
.flex-9 {
  flex: 9;
}
.flex-10 {
  flex: 10;
}
.flex-11 {
  flex: 11;
}
.flex-12 {
  flex: 12;
}
.flex-13 {
  flex: 13;
}
.flex-14 {
  flex: 14;
}
.ptb-60 {
  padding: 60px 0;
}
.pb-60 {
  padding-bottom: 60px;
}
.text-right {
  text-align: right;
}
.header {
  height: 80px;
  position: relative;
  width: 100%;
}
.header-fixed {
  position: fixed;
  height: 80px;
  background: #fff;
  z-index: 1000;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
}
.brand {
  line-height: 80px;
}
.brand img {
  max-height: 50px;
  width: auto;
  max-width: 100%;
  vertical-align: middle;
}

.title-h1 {
  font-size: 24px;
  font-weight: bold;
  color: var(--color-primary);
  line-height: 60px;
  position: relative;
  text-align: center;
}

.title-h1::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: var(--color-primary);
  position: absolute;
  left: 50%;
  bottom: 0;
  margin-left: -25px;
}

.title-h2 {
  font-size: 16px;
  line-height: 60px;
  color: #4a4a4a;
  text-align: center;
}

.title-h2.line::before,
.title-h2.line::after {
  content: "-";
}
/*菜单*/
.nav {
  display: inline-flex;
  margin-left: 60px;
  margin-top: 15px;
}

.nav > li {
  align-items: center;
  color: #000;
  cursor: pointer;
  display: flex;
  font-size: 16px;
  height: 60px;
  line-height: 60px;
  padding: 0 25px;
  position: relative;
}

.nav > li a {
  display: block;
}

.nav span > a,
.nav span {
  position: relative;
  color: #000;
  white-space: nowrap;
}

.nav span > i.icon-arrow-down {
  color: #ddd;
  font-size: 10px;
  margin-left: 2px;
}
.nav .child-menu:hover span:before {
  width: 60px;
  height: 3px;
  content: "";
  display: block;
  position: absolute;
  bottom: 10px;
  left: 50%;
  margin-left: -30px;
  background: var(--color-primary-light);
}

.nav .child-menu > ul {
  display: none;
  transition: all 0.2s ease;
  opacity: 0;
}

.nav .child-menu:hover > ul {
  display: block;
  border-radius: 12px;
  box-shadow: 0 0 0 1px #e6eaf0, 0 4px 10px rgba(12, 31, 80, 0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
  padding: 16px;
  position: absolute;
  z-index: 1000;
  width: 200px;
  background: #fff;
  top: 50px;
  left: 0px;
  opacity: 1;
}

.nav .child-menu:hover > ul li {
  align-items: center;
  border-radius: 6px;
  background-color: rgba(255, 246, 239, 0);
  display: flex;
  padding: 0 12px;
  transition: background-color 0.1s ease;
  width: 100%;
  font-size: 15px;
  line-height: 36px;
  height: 36px;
  cursor: pointer;
  margin: 0;
}

.nav .child-menu:hover > ul li:hover {
  background-color: #ebf4ff !important;
  color: var(--color-primary-light) !important;
  font-weight: 500;
}

.nav .child-menu:hover > ul li > i {
  font-size: 20px;
  margin-right: 12px;
}

.nav .child-menu:hover > ul li img {
  width: 20px;
  margin-right: 6px;
  margin-left: -6px;
}

.nav .child-menu:hover > ul li a {
  color: inherit;
  -webkit-text-decoration: none;
  text-decoration: none;
}
.nav li.phone {
  white-space: nowrap;
  width: auto;
  color: var(--color-primary);
  font-size: 18px;
  font-weight: bold;
}
.nav li.phone span {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: var(--color-primary) 1px solid;
  margin-right: 10px;
  line-height: 40px;
  text-align: center;
}
.nav li.phone span i {
  color: var(--color-primary);
  font-size: 24px;
}
.menu-button {
  display: none;
}
@media screen and (max-width: 1400px) {
  .nav > li {
    padding: 0 15px;
  }
}
@media screen and (max-width: 1200px) {
  .nav {
    margin-left: 0px;
  }
  .nav li.phone {
    font-size: 14px;
  }
  .nav li.phone span {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
  .nav li.phone span i {
    font-size: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .nav > li {
    padding: 0 10px;
  }
}
@media screen and (max-width: 992px) {
  .menu-button {
    display: block;
    line-height: 80px;
  }
  .menu-button i {
    font-size: 40px;
    vertical-align: middle;
  }
  .nav {
    z-index: 1000;
    position: fixed;
    top: 80px;
    width: 100%;
    left: 0;
    background: #fff;
    margin-top: 0;
    flex-direction: column;
    padding: 0 3%;
    height: calc(100vh - 80px);
    display: none;
  }
  .nav span > i.icon-arrow-down {
    float: right;
    font-size: 16px;
  }
  .nav > li {
    border-top: #ddd 1px solid;
    height: auto;
    display: block;
  }
  .nav span > a,
  .nav span {
    display: block;
    width: 100%;
  }
  .nav .child-menu.active > ul {
    position: relative;
    width: 100%;
    top: 0;
    margin-bottom: 15px;
  }
  .nav .child-menu.active > span {
    font-weight: bold;
    color: var(--color-primary);
  }
  .nav .child-menu:hover span:before {
    display: none;
  }
  .nav .child-menu:hover > ul li.active {
    background-color: #ebf4ff !important;
    color: var(--color-primary-light) !important;
    font-weight: 500;
  }
}
@media screen and (max-width: 768px) {
  .layui-container {
    width: 96%;
  }
}
@media screen and (max-width: 560px) {
  .header,
  .header-fixed {
    height: 60px;
  }
  .nav {
    top: 59px;
    height: calc(100vh - 60px);
  }

  .menu-button {
    line-height: 60px;
  }
  .menu-button i {
    font-size: 30px;
  }
  .brand {
    line-height: 60px;
  }

  .brand img {
    height: 40px;
    margin: 10px 0;
  }
}

/*footer*/

.footer-wrap .register {
  background: url(../images/foot_sgin.jpg) no-repeat center top;
  background-size: cover;
  padding: 60px 0;
  color: #fff;
}
.footer-wrap .register h2 {
  color: #fff;
  text-align: center;
  font-size: 24px;
  line-height: 50px;
}
.footer-wrap .register a {
  display: block;
  width: 170px;
  height: 45px;
  line-height: 44px;
  color: #fff;
  background: var(--color-primary);
  border-radius: 5px;
  margin: 30px auto;
  font-size: 18px;
  text-align: center;
}
.footer-wrap .register a:hover {
  opacity: 0.8;
}
.footer-wrap .footer {
  padding-top: 50px;
  background: #222;
}
.footer-wrap .footer .footer_top ul {
  display: flex;
  gap: 60px;
}
.footer-wrap .footer .footer_top ul li {
  flex: 1;
  height: 78px;
  line-height: 78px;
  border: 1px solid #333;
  color: #aaaaaa;
  padding: 0 20px;
  text-align: center;
}
.footer-wrap .footer .footer_top:after,
.footer-wrap .footer .footer_down:after {
  content: "";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
  overflow: hidden;
}
.footer-wrap .footer .footer_top ul li img {
  width: 34px;
  height: 34px;
  vertical-align: middle;
  margin-right: 10px;
}

.footer-wrap .footer .footer_tel {
  border-bottom: 1px solid #333;
  margin: 0 auto;
  padding-top: 30px;
  color: #fff;
}
.footer-wrap .footer .footer_tel .tel {
  font-size: 16px;
  height: 65px;
  background: url(../images/foot_icon5.png) no-repeat 30px 0;
  padding-left: 100px;
  color: #fff;
}
.footer-wrap .footer .footer_tel ul {
  padding: 15px 0;
}
.footer-wrap .footer .footer_tel ul li {
  line-height: 30px;
  display: inline-block;
  padding: 0 20px;
  color: #aaa;
  border-right: #aaa 1px solid;
}
.footer-wrap .footer .footer_tel ul li:last-child {
  padding-left: 0;
  border-right: 0;
}
.footer-wrap .footer .footer_down {
  padding-top: 50px;
}
.footer-wrap .footer .footer_down .left ul {
  display: flex;
}
.footer-wrap .footer .footer_down .left ul li {
  width: 25%;
}
.footer-wrap .footer .footer_down .left h3 {
  font-size: 16px;
  color: #fff;
  font-weight: normal;
}
.footer-wrap .footer .footer_down .left p {
  font-size: 14px;
  padding-top: 20px;
}
.footer-wrap .footer .footer_down .left p a {
  font-size: 14px;
  color: #888;
  margin: 0 20px 15px 0;
  white-space: nowrap;
  display: block;
}
.footer-wrap .footer .footer_down .left p a:hover {
  color: #fff;
}
.footer-wrap .footer .footer_down .right ul {
  text-align: center;
}
.footer-wrap .footer .footer_down .right ul li {
  display: inline-block;
  vertical-align: top;
  width: 120px;
  height: 150px;
  margin-right: 40px;
  text-align: center;
}
.footer-wrap .footer .footer_down .right ul li:last-child {
  margin-right: 0;
}
.footer-wrap .footer .footer_down .right ul li img {
  width: 100%;
}
.footer-wrap .footer .footer_down .right ul li h3 {
  color: #888;
  padding-top: 15px;
  font-weight: normal;
  font-size: 14px;
  text-align: center;
}
.footer-wrap .footer .footer_copyright {
  padding: 30px 0;
}
.footer-wrap .footer .footer_copyright p {
  line-height: 30px;
  color: #888;
  font-size: 14px;
}
.footer-wrap .footer .footer_copyright p.beian a {
  color: #888;
  padding-right: 20px;
  display: inline-block;
}
.footer-wrap .footer .footer_copyright p.beian a img {
  vertical-align: middle;
}
@media screen and (max-width: 1400px) {
  .footer-wrap .footer .footer_top ul {
    gap: 30px;
  }
}
@media screen and (max-width: 1200px) {
  .footer-wrap .footer .footer_top ul li {
    height: 50px;
    line-height: 50px;
  }
  .footer-wrap .footer .footer_top ul li img {
    width: 24px;
    height: 24px;
  }
}
@media screen and (max-width: 1024px) {
  .footer-wrap .footer .footer_top ul {
    flex-wrap: wrap;
  }
  .footer-wrap .footer .footer_top ul li {
    flex: auto;
    width: 40%;
    height: 50px;
    line-height: 50px;
  }
  .footer-wrap .footer .footer_top ul li img {
    width: 24px;
    height: 24px;
  }
  .footer-wrap .footer .footer_tel ul li {
    padding: 0 10px;
    font-size: 14px;
    line-height: 24px;
  }
}
@media screen and (max-width: 560px) {
  .footer-wrap .footer .footer_tel {
    padding-top: 0;
  }
  .footer-wrap .footer .footer_top,
  .footer-wrap .footer .footer_tel ul,
  .footer-wrap .footer .left {
    display: none;
  }
  .footer-wrap .footer .footer_down {
    padding-top: 20px;
  }
}
.banner {
  background-repeat: no-repeat;
  background-position: top center;
}

.banner .shaw {
  background-color: rgba(42, 44, 87, 0.3);
  background-position: center top;
  background-repeat: no-repeat;
  padding: 90px 0;
  position: relative;
}

.banner .shaw .toptitle {
  text-align: center;
}

.banner .shaw .title {
  font-size: 36px;
  line-height: 70px;
  font-weight: 700;
  letter-spacing: 0;
  color: #fff;
  margin: 0;
}
.banner .shaw .link span {
  color: rgba(255, 255, 255, 0.6);
}
.banner .shaw .link li {
  display: inline-block;
  color: rgba(255, 255, 255, 0.6);
}

.banner .shaw .link li a {
  color: rgba(255, 255, 255, 0.6);
}

.breadcrumbs {
  padding: 10px 0;
  background: #f2f2f2;
  min-height: 40px;
}

.breadcrumbs h2 {
  font-size: 24px;
  line-height: 50px;
  font-weight: 6 00;
  margin: 0;
  color: var(--color-primary);
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  color: var(--color-primary);
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: var(--color-primary);
  content: "/";
}

.breadcrumbs ol li a {
  color: var(--color-primary);
}

@media screen and (max-width: 992px) {
  .breadcrumbs .flex-box {
    flex-direction: column;
  }
}
.index-case{
	display: flex;
	gap: 30px;
	padding: 30px 0;
}
.index-case .item{
	flex:1;
	box-shadow: 0px 12px 24px 0px rgba(207, 216, 234, 0.5);
	border-radius: 10px;overflow: hidden;
}
.index-case .item .img img{width: 100%;}
.index-case .item .text{
	padding: 15px 15px 30px 15px;
}
.index-case .item .text .title{font-size: 18px;line-height: 30px;}
.index-case .item .text p{font-size: 14px;line-height:28px}
.index-case .item .text a {
    display: inline-block;
    font-size: 16px;
    background: var(--color-primary-light);
    color: #fff;
    border-radius: 5px;
    line-height: 40px;
    padding: 0 20px;
    margin-top: 20px;
}
.index-case .item .text a:hover{
	opacity: .8;
}
@media screen and (max-width:992px) {
	.index-case{
		flex-wrap: wrap;}
		.index-case .item{
			flex:none;
			width:calc(50% - 30px);
		}
	
}
@media screen and (max-width:560px) {
	
		.index-case .item{
			width:100%;
		}
	
}