a {
  color: #333;
  cursor: pointer;
}
a:link {
  text-decoration: none;
}
html {
  font-size: 19px;
}
.inner_main {
  width: 100%;
  height: 100%;
  display: flex;
  font-family: "微软雅黑";
  font-size: 1rem;
  font-weight: bold;
  position: relative;
}
.inner_main .left_side_bar {
  width: 16%;
}
.inner_main .left_side_bar .kind_title {
  padding: 1.75rem 0 1.5rem 2rem;
  background-color: #e8ebee;
  color: #333333;
  border-right: 1px solid #dcdee0;
}
.inner_main .left_side_bar .side_menu {
  padding: 0 0 0.75rem 1.5rem;
  border-top: 1px solid #dcdee0;
}
.inner_main .left_side_bar .side_menu .s_k_title {
  padding: 1.5rem 0 0.75rem;
}
.inner_main .left_side_bar .side_menu .down_menu .each {
  padding: 0.45rem 0.4rem;
  font-family: "ProximaNova-Medium";
  font-size: 0.9rem;
  color: #333333;
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.inner_main .left_side_bar .side_menu .down_menu .each input[type="radio"] {
  width: 0.9rem;
  height: 0.9rem;
  margin-right: 0.4rem;
  cursor: pointer;
  position: relative;
  border-radius: 0.15rem;
}
.inner_main .left_side_bar .side_menu .down_menu .each input[type="radio"]::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  width: 0.9rem;
  height: 0.9rem;
  border: 1px solid #d9d9d9;
  box-sizing: border-box;
  border-radius: 0.15rem;
}
.inner_main .left_side_bar .side_menu .down_menu .each input[type="radio"]:checked::after {
  content: "✔";
  position: absolute;
  top: 0;
  left: 0;
  width: 0.9rem;
  height: 0.9rem;
  display: block;
  text-align: center;
  font-size: 0.7rem;
  font-weight: bold;
  background-color: #27a37e;
  color: #fff;
  border: none;
  outline: none;
}
.inner_main .product_list {
  width: 84%;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
.inner_main .product_list .title {
  padding: 1.75rem 0 1.5rem 2rem;
  background-color: #e8ebee;
  color: #333333;
}
.inner_main .product_list .product_ul {
  display: flex;
  flex-wrap: wrap;
}
.inner_main .product_list .product_ul .selectProduct {
  width: 22%;
  margin: 1.5% 0.75%;
  padding: 1.5% 0.75%;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 6px;
  box-sizing: border-box;
  overflow: hidden;
}
.inner_main .product_list .product_ul .selectProduct .picture {
  position: relative;
  width: 100%;
  overflow: hidden;
  transition: all ease-in-out 0.3s;
}
.inner_main .product_list .product_ul .selectProduct .picture img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.inner_main .product_list .product_ul .selectProduct .picture:hover {
  transform: scale(1.1);
}
.inner_main .product_list .product_ul .selectProduct .picture::before {
  content: "";
  display: block;
  padding-top: 75%;
  /* 高度为宽度的75% */
}
.inner_main .product_list .product_ul .selectProduct .pro_text {
  padding: 1rem 0;
}
.inner_main .product_list .product_ul .selectProduct .pro_text .pro_name {
  display: block;
  margin: 1rem 0 0.5rem;
  font-family: "微软雅黑";
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: bold;
}
.inner_main .product_list .product_ul .selectProduct .pro_text .des {
  height: 2.8rem;
  font-size: 0.9rem;
  color: #535353;
  line-height: 1.4;
  letter-spacing: 0.05em;
  overflow: hidden;
  font-weight: 400;
}
.inner_main .product_list .product_ul .selectProduct:hover {
  box-shadow: 0 0 10px #ccc;
  cursor: pointer;
}
.mock {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  background-color: rgba(0, 0, 0, 0.3);
}
.mock .popup {
  margin: auto;
  width: 900px;
  height: 600px;
  background-color: #fff;
  position: relative;
}
.mock .popup .close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 32px;
  color: #666;
  font-weight: 300;
}
.mock .popup .close:hover {
  color: #1f87e8;
}
.mock .popup .main {
  padding: 40px 60px;
}
.mock .popup .main .title {
  color: #1f87e8;
  overflow-wrap: break-word;
  clear: both;
  font-family: 微软雅黑;
  font-size: 20px;
  font-weight: bold;
}
.mock .popup .main .top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}
.mock .popup .main .top .box {
  height: 26px;
  border-left: 6px solid #1f87e8;
}
.mock .popup .main .content {
  display: flex;
  margin-top: 12px;
  gap: 80px;
  height: 458PX;
}
.mock .popup .main .content img {
  width: 280px;
  margin: auto 0;
}
.mock .popup .main .content .right .name {
  padding: 12px 0;
  border-bottom: 1px solid #ccc;
  margin-bottom: 26px;
}
.mock .popup .main .content .right .scroll-box {
  max-height: 380px;
  overflow-y: auto;
}
.mock .popup .main .content .right .scroll-box p {
  line-height: 30px;
  font-family: "微软雅黑";
  font-size: 16px;
  font-weight: 400;
  color: #666;
}
.mock .popup .main .content .right .scroll-box::-webkit-scrollbar {
  display: none;
}
@keyframes show {
  0% {
    opacity: 0.4;
    transform: scale(0.2);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.show {
  animation: show 0.3s ease-in forwards;
}
