/*主题色-字体大小*/
:root{
  --yx_FS60:60px;
  --yx_FS_BannerBig:54px;
  --yx_FSOne: 48px;
  --yx_FSTwo: 36px;
  --yx_FSThree:24px;
  --yx_FSFour: 20px;
  --yx_FSFive: 18px;
  --yx_FSSix: 16px;
  --yx_Color:#d60a16;
  --yx_ColorTwo:#222;
  --yx_Jb:linear-gradient(to right,#016a34,#7fb50a);
}
.container {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

.yx_ani * {
  transition: all 0.5s;
  -moz-transition: all 0.5s;
  /* Firefox 4 */
  -webkit-transition: all 0.5s;
  /* Safari 鍜� Chrome */
  -o-transition: all 0.5s;
  /* Opera */
}
.yx_ani *:before {
  transition: all 0.5s;
  -moz-transition: all 0.5s;
  /* Firefox 4 */
  -webkit-transition: all 0.5s;
  /* Safari 鍜� Chrome */
  -o-transition: all 0.5s;
  /* Opera */
}
.yx_ani *:after {
  transition: all 0.5s;
  -moz-transition: all 0.5s;
  /* Firefox 4 */
  -webkit-transition: all 0.5s;
  /* Safari 鍜� Chrome */
  -o-transition: all 0.5s;
  /* Opera */
}

@keyframes scroll-icon{
  0% {
    -webkit-transform:translateY(-12px);
    transform: translateY(-12px);
    opacity: 0;
  }
  30%, 70% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(12px);
    transform: translateY(12px);
    opacity: 0;
  }
}
/*缁撴潫*/
input::-webkit-input-placeholder {
  /* WebKit browsers */ 
  color: #999;
  font-size:14px;
}
input:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */ 
  color: #999;
  font-size:14px;
}
input::-moz-placeholder {
  /* Mozilla Firefox 19+ */ 
  color: #999;
  font-size:14px;
}
input:-ms-input-placeholder {
  /* Internet Explorer 10+ */ 
  color: #999;
  font-size:14px;
}

/*表单字体�*/
html::-webkit-scrollbar {
  width: 3px;
  height: 3px;
  background-color: #ddd;
}
html::-webkit-scrollbar-track {
  border-radius: 0;
  background-color: #ddd;
}
html::-webkit-scrollbar-thumb {
  border-radius: 0;
  width: 17px;
  height: 17px;
  background-color:var(--yx_Color)
  }
  
  
  /*翻页*/
  .p_PromptNoneData .prompt_title .first,
  .p_nextBox a:hover{
    color:#000!important
  }
  .p_pagebox .next,
  .p_pagebox .pre,
  .p_page .next:hover,
  .p_page .pre:hover,
  .p_page .pageNum:hover,
  .p_page .pageNum.active{
    background-color: #060606 !important;
    color: #fff!important;
    border-color:#060606!important;
  }
  .p_pagebox .js_pageBtnDisable, .p_pagebox .js_pageBtnDisable:hover, .p_pagebox .js_pageBtnDisable:active{
    background: #f5f5f5!important;
    border-color: #d9d9d9!important;
    color: #bfbfbf!important;
    cursor: default;
  }