﻿
:root {
  --theme-color: #1c56a8;
  --yx_Color: #1c56a8;
  --yx_Grad:#1c56a8;
}
* {
  word-break: break-word;
}
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: #d7d7d7;
  border-radius: 6px;
}
::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--theme-color);
}

/*图片居中定位*/
.L_img{
  overflow: hidden;
  display-radio: 1;
  position: relative;
  height: 0;
  padding-bottom: 60%;
}
.L_img img{
  width: 100%;
  min-height:100%;
  object-fit: cover;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  transition: all .5s ease;
}
.p_list>div:hover .L_img img{
  transform: translate(-50%,-50%) scale(1.05);
}

/*翻页*/
body .page_a {
  border: none;
  font-size: 18px;
  color: #333;
  font-weight: 700;
  width: 32px;
  height: auto;
  line-height: 32px;
  vertical-align: middle;
}
body .page_prev , body .page_next {
  font-size: 24px;
  font-family: '宋体' !important;
  font-weight: normal;
  vertical-align: middle;
}
body .page_a:hover, body .page_a.current {
  background: var(--theme-color);
  border-radius: 0;
  border: none;
  color:#fff;
}

body .page_a.disabled {
  background: transparent;
  border: none;
  cursor: no-drop;
}
@media screen and (max-width:768px){
  body .page_a {
    border: none;
    font-size: 16px;
    color: #333;
    font-weight: 700;
    width: 24px;
    height: auto;
    line-height: 24px;
    vertical-align: middle;
  }
  body .page_prev, body .page_next {
    font-size: 24px;
    font-weight: 500;
  }
}


/*搜索输入框*/
.s_form_layout1 .s_input:focus, .s_form_layout1 .e_label .p_labelItem label:hover, .s_form_layout1 .e_address .cascader-wrap:not(.is-disabled):hover .zd-input__inner, .s_form_layout1 .e_uploadImg .p_uploadBtn:hover {
  background: transparent;
  outline: 0;
  box-shadow: none;
  border: 1px solid #9fceff;
  color: #666666;
}

/*swiper*/
.swiper {
  overflow: hidden;
}