/* 初始样式 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* 关键：盒模型重置 */
}
body,
html {
  min-width: 1400px;
  font-family: "微软雅黑";
  font-size: 12px;
  color: #333333;
  margin: 0 auto;
  padding: 0;
  line-height: 24px;
}
body {
  background: #ffffff;
}
a {
  font-family: "微软雅黑";
  font-size: 12px;
  color: #333333;
}
a:link {
  text-decoration: none;
}
a:visited {
  text-decoration: none;
  color: #333333;
}
a:hover {
  text-decoration: none;
  color: #FF0000;
}
a:active {
  text-decoration: none;
  color: #FF0000;
}
div,
form,
ul,
ol,
li,
p,
span {
  margin: 0;
  padding: 0;
  border: 0;
}
input,
button,
textarea {
  outline: none;
}
div,
ul,
li,
ol {
  list-style: none;
}
ul {
  text-align: left;
}
img {
  border: 0;
}
._hidden {
  display: none;
}
/*外框架*/
.cont {
  width: 100%;
  min-width: 1400px;
  margin: 0 auto;
  clear: both;
}
.cont ul {
  width: 1400px;
  margin: 0 auto;
  overflow: hidden;
}
/*@media screen and (max-width: 900px){
	.cont{
	width:~"@{_width}";
	margin: 0 auto;
	min-height: 135px;
	overflow: hidden;
	clear: both;
	ul{
		width:~"@{_width}";	
		margin:0;
	}
}
}*/
/*提示词*/
.tishici {
  width: calc(100%);
  padding: 15px 0 30px 0;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  font-size: 15px;
  color: #696969;
}
.tishici .font {
  font-size: 15px;
  color: #000000;
  text-align: left;
  display: inline-block;
  margin-right: 20px;
}
.tishici .active {
  font-weight: bold;
}
.tishici .icon_arrow {
  width: 10px;
  display: inline-block;
  margin: 0 30px 0 10px;
}
.cylj {
  width: calc(100%);
  padding: 15px 0 30px 0;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.cylj .font {
  font-size: 16px;
  color: #000;
  font-weight: bold;
  text-align: left;
  display: inline-block;
  margin-right: 13px;
}
.cylj .a_link {
  font-size: 15px;
  color: #000;
  margin-right: 10px;
  padding: 0 5px;
  background-color: #fff;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.cylj .a_link a {
  display: block;
  font-size: 15px;
}
.cylj .a_link:hover {
  background-color: #f8f9fa;
}
.cylj .a_link:hover a {
  color: #1a53b1;
  transform: scale(1);
}
.cylj .a_link::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background-color: #1a53b1;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}
.cylj .a_link:hover::before {
  transform: scaleX(1);
}
