* {
  padding: 0;
  margin: 0;
}
.law_menu {
  width: 1210px;
  margin: 0 auto;
  margin-top: 72px;
  margin-bottom: 68px;
  overflow: hidden;
}
.law_menu_head {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin-top: 30px;
}
.law_menu_head_left {
  width: 830px;
  height: 400px;
  cursor: pointer;
}
.law_menu_head_left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.law_menu_head_right {
  width: 326px;
  height: 400px;
  margin-left: 36px;
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.law_menu_head_right_title {
  width: 100%;
  height: 20px;
  font-size: 20px;
  color: #222222;
  font-weight: bold;
}
.law_menu_head_right_box {
  width: 100%;
  margin-top: 27px;
}
.law_menu_head_right_box ul {
  list-style: none;
}
.law_menu_head_right_box ul li {
  margin-bottom: 24px;
}
.law_menu_head_right_box ul li:hover .law_menu_head_right_box_title p{
  color: #ff7b06;
}
.law_menu_head_right_box ul li:last-child {
  margin-bottom: 0;
}
.law_menu_head_right_box_title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.law_menu_head_right_box_title span {
  display: block;
  width: 16px;
  height: 16px;
  background-color: #cccccc;
  text-align: center;
  line-height: 16px;
  color: #ffffff;
  font-size: 12px;
  margin-right: 9px;
}
.active_num {
  background-color: #ff7b06 !important;
}
.law_menu_head_right_box_title p {
  width: 304px;
  color: #222222;
  font-size: 14px;
  /* 超过一行省略 */
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  cursor: pointer;
}
.law_menu_head_right_box_intro {
  width: 304px;
  margin-left: 25px;
  font-size: 12px;
  color: #999999;
  margin-top: 20px;
  line-height: 18px;
  /* 超过多行省略 */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  cursor: pointer;
}
.my_location {
  width: 1210px;
  margin: 0 auto;
  margin-top: 20px;
  margin-bottom: 50px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.my_location span {
  font-size: 13px;
  color: #999999;
}
.my_location ul {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.my_location ul li {
  font-size: 13px;
  color: #222222;
}
.my_location ul .active{
  cursor: pointer;
}
.my_location ul .active:hover{
  color: #ff7b06;
}
.my_location ul li:last-child {
  color: #999999;
}
.my_location ul li em {
  font-style: normal;
  margin: 0 3px;
}

.law_menu_content {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.law_menu_content_left {
  width: 873px;
}

.law_menu_content_box {
  margin-bottom: 50px;
}
.law_menu_content_box:last-child {
  margin-bottom: 0;
}
.law_menu_content_box_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.law_menu_content_box_head p {
  font-size: 24px;
  color: #222222;
}
.law_menu_content_box_head span {
  font-size: 16px;
  color: #222222;
  cursor: pointer;
}
.law_menu_content_box_head span:hover{
  color: #ff7b06;
}
.law_menu_content_box_head a:link,
.law_menu_content_box_head a:visited,
.law_menu_content_box_head a:hover,
.law_menu_content_box_head a:active {
  font-size: 16px;
  color: #ff7b06;
}
.law_menu_content_box_line {
  width: 873px;
  height: 1px;
  background-color: #e8e8e8;
  margin-top: 15px;
  margin-bottom: 30px;
}
.law_menu_content_box_main {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.law_menu_content_box_left_banner {
  position: relative;
  width: 503px;
  height: 304px;
  cursor: pointer;
  overflow: hidden;
}
.law_menu_content_box_left_banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .3s;
}
.law_menu_content_box_left_banner:hover img{
  transform: scale(1.05);
}
.law_menu_content_box_left_banner div {
  position: absolute;
  width: 503px;
  height: 90px;
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
}
.law_menu_content_box_left_banner div p {
  width: 454px;
  font-size: 16px;
  color: #ffffff;
  margin: 15px 20px;
  font-weight: bold;
  /* 超过一行省略 */
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
}
.law_menu_content_box_left_banner div span {
  display: block;
  width: 454px;
  font-size: 13px;
  color: #ffffff;
  margin: 0 20px;
  /* 超过一行省略 */
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
}
.law_menu_content_box_left_list {
  width: 503px;
  margin-top: 25px;
}
.law_menu_content_box_left_list_title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.law_menu_content_box_left_list_title div {
  width: 4px;
  height: 18px;
  background-color: #3c93ff;
}
.law_menu_content_box_left_list_title span {
  font-size: 16px;
  color: #222222;
  font-weight: bold;
  margin-left: 10px;
}
.law_menu_content_box_left_list ul {
  list-style: none;
  margin-top: 26px;
}
.law_menu_content_box_left_list ul li {
  width: 503px;
  font-size: 16px;
  color: #222222;
  margin-bottom: 25px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  cursor: pointer;
}
.law_menu_content_box_left_list li:last-child {
  margin-bottom: 0;
}
.law_menu_content_box_left_list ul li::before {
  content: "\02022";
  color: #cccccc;
  margin-right: 22px;
}
.law_menu_content_box_left_list ul li:hover {
  color: #ff7b06;
}
.law_menu_content_box_right {
  width: 340px;
  margin-left: 31px;
}
.law_menu_content_box_right ul {
  list-style: none;
}
.law_menu_content_box_right ul li {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin-bottom: 26px;
  cursor: pointer;
}
.law_menu_content_box_right ul li:hover .law_menu_content_box_right_detail_title{
  color: #ff7b06;
}
.law_menu_content_box_right ul li:last-child {
  margin-bottom: 0;
}
.law_menu_content_box_right_img {
  width: 134px;
  height: 82px;
  overflow: hidden;
}
.law_menu_content_box_right_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .3s;
}
.law_menu_content_box_right_img:hover img{
  transform: scale(1.05);
}
.law_menu_content_box_right_detail {
  width: 188px;
  margin-left: 18px;
}
.law_menu_content_box_right_detail_title {
  font-size: 16px;
  color: #222222;
  margin-bottom: 20px;
  font-weight: bold;
  /* 超过一行省略 */
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
}
.law_menu_content_box_right_detail_intro {
  font-size: 14px;
  color: #999999;
  /* 超过多行省略 */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  line-height: 22px;
}
.law_menu_content_right {
  width: 292px;
  margin-left: 35px;
}
.law_menu_content_right_service {
  position: relative;
  width: 100%;
}
.law_menu_content_right_service_bg {
  width: 100%;
  height: 240px;
  object-fit: cover;
}
.law_menu_content_right_service_counsel {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
}
.law_menu_content_right_service_counsel img {
  width: 49px;
  height: 41px;
  object-fit: cover;
}
.law_menu_content_right_service_counsel span {
  font-size: 18px;
  color: #222222;
  margin-top: 30px;
  text-decoration: underline;
}
.law_menu_content_right_correlation {
  width: 100%;
  margin-top: 38px;
}
.correlation_tip {
  font-size: 18px;
  color: #222222;
  font-weight: bold;
}

.law_menu_content_right_correlation ul {
  list-style: none;
  margin-top: 32px;
}
.law_menu_content_right_correlation ul li {
  width: 292px;
  font-size: 14px;
  color: #222222;
  margin-bottom: 22px;
  /* 超过一行省略 */
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  cursor: pointer;
}
.law_menu_content_right_correlation ul li:last-child {
  margin-bottom: 0;
}
.law_menu_content_right_correlation ul li::before {
  content: "\02022";
  color: #cccccc;
  margin-right: 22px;
}
.law_menu_content_right_correlation ul li:hover{
  color: #ff7b06;
}
.correlation_more {
  width: 100%;
  height: 48px;
  background-color: #f2f7ff;
  font-size: 16px;
  color: #3c93ff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  cursor: pointer;
}
.correlation_more:hover{
  opacity: .8;
}
.law_menu_content_right_hot_label {
  width: 100%;
  margin-top: 38px;
  background-color: #f5f5f5;
  overflow: hidden;
}
.hot_label_title {
  font-size: 18px;
  color: #222222;
  font-weight: bold;
  margin: 0 20px;
  margin-top: 16px;
}
.hot_label_box {
  margin: 22px 20px 14px 6px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: start;
}
.hot_label_box span {
  padding: 14px 15px;
  background-color: #ffffff;
  font-size: 14px;
  color: #222222;
  margin-bottom: 14px;
  margin-left: 14px;
}
.law_menu_content_right_regulations {
  width: 100%;
  margin-top: 38px;
}
.regulations_tip {
  font-size: 16px;
  color: #222222;
  font-weight: bold;
}
.law_menu_content_right_regulations ul {
  list-style: none;
  width: 100%;
  margin-top: 28px;
}
.law_menu_content_right_regulations ul li {
  margin-bottom: 20px;
}
.law_menu_content_right_regulations ul li:hover .regulations_top p{
  color: #ff7b06;
}
.regulations_top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.regulations_top span {
  display: block;
  width: 16px;
  height: 16px;
  line-height: 16px;
  text-align: center;
  background-color: #CCCCCC;
  color: #ffffff;
  font-size: 12px;
}
.regulations_top p {
  width: 266px;
  margin-left: 9px;
  font-size: 14px;
  color: #222222;
  /* 超过一行省略 */
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  cursor: pointer;
}
.regulations_bottom {
  width: 266px;
  margin-top: 19px;
  margin-left: 25px;
  font-size: 12px;
  color: #999999;
  line-height: 18px;
  /* 超过多行省略 */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  cursor: pointer;
}
.banner_bottom{
  position: relative;
  width: 1210px;
  height: 100px;
  margin: 0 auto;
  margin-top: 50px;
  cursor: pointer;
}
.banner_bottom img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner_bottom div{
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner_bottom div span{
  font-size: 28px;
  color: #222222;
}