/*body * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}*/

.modal_trigger {
	margin: 0;
	width: 100%;
}

.modal_trigger li {
	cursor: pointer;
	padding: 10px;
	text-align: center;
	position: relative;
	overflow: hidden;
	line-height: 130px;
	font-size: 20px;
	-webkit-transition: all .3s;
	transition: all .3s;
}

.modal_trigger li i {
	margin-left: 10px;
}
.modal_trigger li::before {
	content: '';
	display: inline-block;
	width: 100%;
	height: 100%;
	background: #fff;
	-webkit-transform: translateY(-100%);
	  transform: translateY(-100%);
	position: absolute;
	left: -20px;
	top: 100%;
	z-index: -1;
	opacity: 0;
}

.modal_trigger li:hover {
	color: #fff;
	background: #000;
}


@-webkit-keyframes slideRightBg {
  0% {
    opacity: 0;
    left: -50%;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}

@keyframes slideRightBg {
  0% {
    opacity: 0;
    left: -50%;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}

.modal_box {
  display: none;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
}

.modal_bg {
  background-color: rgba(30, 30, 30, 0.9);
  height: 100%;
  width: 100%;
}

.modal_inner {
  background-color: #fff;
  left: 50%;
  padding: 40px;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  max-width: 900px;
}

.modal_close {
  cursor: pointer;
  position: absolute;
  right: 1%;
  top: 4%;
  font-size: 2rem;
}

.sear_bottom_category-ti {
	clear: both;
	font-weight: bold;
	margin: auto auto 10px;
	line-height: 40px;
	border-bottom: #4caf50 2px solid;
	color: #4caf50;
	font-size: 20px;
}
.sear_bottom_category_li {
	float: left;
	margin: auto 10px 10px auto;
	width:45%;
	text-align: center;
}
.sear_bottom_category_li img{
	width:70%;
	margin: auto;
}
.sear_bottom_category_li a {
	border: 2px solid #4CAF50;
	border-radius: 10px;
	font-weight: bold;
	box-sizing: border-box;
	display: block;
	font-size: 16px;
	padding: 8px 20px;
	background: #fffded;
	text-decoration: none;
	transition: all .3s;
	color: #4caf50;
}

.sear_bottom_category_li a:hover {
	background: #2d2d2d;
	transition: all .3s;
	color: #FFF;
}


@media screen and (max-width: 480px) {
  .modal_trigger {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .modal_trigger li {
    width: 47.5%;
    margin-top: 20px;
    max-width: inherit;
  }
  .modal_trigger li + li {
    margin-left: 0;
  }
  .modal_inner {
    width: 90%;
    padding: 25px;
  }
  .modal_close {
    top: 5px;
    font-size: 2.2rem;
  }
}