/* CSS重置 */

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
a,
blockquote,
th,
td,
hr,
button,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

header,
footer,
nav,
hgroup,
section,
article,
section,
aside {
  display: block;
}

/*标签属性重置*/
.w {
  width: 83.3333vw;
  margin: 0 auto;
}
body {
  font:
    400 16px/1 "Microsoft Yahei",
    "PingFang SC",
    "Avenir",
    "Segoe UI",
    "Hiragino Sans GB",
    STHeiti,
    "Microsoft Sans Serif",
    "WenQuanYi Micro Hei",
    sans-serif;
  color: #333333;
  background-color: #fff;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  border: 0;
  vertical-align: middle;
}

ol,
ul,
li {
  list-style: none;
}

input {
  border: none;
  outline: medium;
}

a {
  font-size: 16px;
  color: #333333;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

p,
span {
  -webkit-transition: all 0.6s ease-out;
  -moz-transition: all 0.6s ease-out;
  -ms-transition: all 0.6s ease-out;
  transition: all 0.6s ease-out;
}

.trans-ease {
  -webkit-transition: all 0.6s ease-out;
  -moz-transition: all 0.6s ease-out;
  -ms-transition: all 0.6s ease-out;
  transition: all 0.6s ease-out;
}

.center-block {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

/*隐藏显示*/

.hide {
  display: none;
}

.show {
  display: block;
}

.invisible {
  visibility: hidden;
}

.overflow-hidden {
  overflow: hidden;
}

/*对于 IE8 及更早版本中的 :before :after，必须声明 <!DOCTYPE>。*/

.clearfix:before,
.clearfix:after {
  display: block;
  content: " ";
  clear: both;
}

.text-over {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.text-over-2 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  /*将对象作为弹性伸缩盒子模型显示。*/
  -webkit-box-orient: vertical;
  /*从上到下垂直排列子元素（设置伸缩盒子的子元素排列方式）*/
  -webkit-line-clamp: 2;
  /*这个属性不是css的规范属性，需要组合上面两个属性，表示显示的行数。*/
}

.text-over-3 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  /*将对象作为弹性伸缩盒子模型显示。*/
  -webkit-box-orient: vertical;
  /*从上到下垂直排列子元素（设置伸缩盒子的子元素排列方式）*/
  -webkit-line-clamp: 3;
  /*这个属性不是css的规范属性，需要组合上面两个属性，表示显示的行数。*/
}
.text-over-4 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  /*将对象作为弹性伸缩盒子模型显示。*/
  -webkit-box-orient: vertical;
  /*从上到下垂直排列子元素（设置伸缩盒子的子元素排列方式）*/
  -webkit-line-clamp: 4;
  /*这个属性不是css的规范属性，需要组合上面两个属性，表示显示的行数。*/
}
.pic {
  overflow: hidden;
}
.pic img {
  transition: all 0.5s ease;
  width: 100%;
  height: 100%;
}
.pic img:hover {
  transform: scale(1.1);
}
/* 分页 */
#pages {
  margin-top: 2.5vw !important;
  margin-bottom: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
#pages a:hover {
  border: 1px solid #6a005f;
  background-color: #6a005f;
  color: #fff;
}

#pages a.previous {
  position: relative;
  top: 0px;
  width: 1.6667vw;
  height: 1.9792vw;
  margin: 0 0.3125vw;
  line-height: 1.7708vw;
  border-radius: 0.2604vw;
  border: 1px solid #dddddd;
}

#pages a.next {
  width: 1.6667vw;
  height: 1.9792vw;
  margin: 0 0.3125vw;
  line-height: 1.7708vw;
  border: 1px solid #dddddd;
  position: relative;
  top: 0px;
}
#pages span {
  border: 1px solid #6a005f;
  background-color: #6a005f;
  color: #fff;
  font-weight: bold;
  position: relative;
  top: 0px;
  width: 1.6667vw;
  height: 1.9792vw;
  margin: 0 0.3125vw;
  border-radius: 0.2604vw;
  padding-left: 0;
  padding-right: 0;
  display: block;
  line-height: 1.9792vw;
  box-sizing: border-box;
}
#pages a {
  margin: 0 0.3125vw;
  width: 1.6667vw;
  height: 1.9792vw;
  line-height: 1.9792vw;
  border-radius: 0.2604vw;
  border: 1px solid #dddddd;
}
#pages-num {
  width: 1.6667vw;
  height: 1.9792vw;
  border-radius: 0.2604vw;
  border: 1px solid #dddddd;
}

#pages font a {
  width: auto;
  font-size: 0.8333vw;
  height: 1.9792vw;
}
#pages font {
  display: flex;
  align-items: center;
  justify-content: center;
}
#upanddown {
  border-top: solid 1px RGBA(235, 235, 235, 1) !important;
  padding-top: 10px !important;
}
#upanddown table {
  width: 100% !important;
  border-top: none !important;
}
#upanddown table td {
  font-size: 18px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  margin-bottom: 0.5208vw;
  -webkit-line-clamp: 2;
  height: auto;
  -webkit-box-orient: vertical;
}
#upanddown table td a {
  font-size: 18px;
}
/* end */
.column-banner {
  width: 100%;
  height: 20.8333vw;
}
.column-banner img {
  width: 100%;
  height: 100%;
}
.column-heda {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 0.0521vw solid #ccc;
  padding-bottom: 1.5625vw;
  margin-top: 1.5625vw;
}
.column-title {
  display: flex;
  align-items: center;
}
.column-title-item a {
  height: 1.25vw;
  font-weight: bold;
  font-size: 1.25vw;
  color: #666666;
  margin-right: 2.6042vw;
  display: flex;
}
.column-title .active a {
  color: #74146a;
  border-left: 0.2083vw solid #74146a;
  padding-left: 0.5208vw;
}
.column-position {
  display: flex;
  align-items: center;
}
.column-position img {
  width: 0.9375vw;
  height: 0.8854vw;
  margin-right: 0.5208vw;
}
.column-position a {
  font-weight: 400;
  font-size: 0.8333vw;
  color: #74146a;
}
.gotop {
  display: none;
  position: fixed;
  bottom: 3.6458vw;
  right: 2.6042vw;
  z-index: 20;
  cursor: pointer;
  width: 2.0833vw;
  height: 2.0833vw;
}

@media screen and (max-width: 370px) {
  .header3-logo a img {
    width: 255px !important;
  }
}

@media screen and (max-width: 1000px) {
  #pages {
    margin-top: 20px !important;
    margin-bottom: 10px !important;
  }
  .gotop {
    display: none;
  }
  .column-banner {
    width: 100%;
    height: 200px;
  }
  .column-heda {
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
    margin-top: 0px;
    flex-wrap: wrap;
  }

  .column-title-item a {
    height: 18px;
    font-size: 18px;
    margin-right: 20px;
    margin-top: 10px;
  }
  .column-title .active a {
    color: #74146a;
    border-left: 2px solid #74146a;
    padding-left: 5px;
  }
  .column-position {
    flex-wrap: wrap;
    margin-top: 10px;
  }
  .column-position img {
    width: 15px;
    height: 14px;
    margin-right: 5px;
  }
  .column-position a {
    font-weight: 400;
    font-size: 14px;
  }
  #pages a.previous {
    width: 30px;
    height: 30px;
    margin: 0 3px;
    line-height: 30px;
    border-radius: 5px;
    border: 1px solid #dddddd;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #pages span {
    width: 30px;
    height: 30px;
    margin: 0 3px;
    line-height: 30px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #pages a {
    width: 30px;
    height: 30px;
    margin: 0 3px;
    line-height: 30px;
    border-radius: 5px;
  }
  #pages a.next {
    width: 30px;
    height: 30px;
    margin: 0 3px;
    line-height: 30px;
    border-radius: 5px;
    border: 1px solid #dddddd;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #pages-num {
    width: 30px;
    height: 30px;
    border-radius: 5px;
    border-width: 1px;
  }
  #pages font a {
    width: 46px;
    height: 30px;
    font-size: 16px;
  }
}

.animation {
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-timing-function: ease-in-out;
  -moz-animation-timing-function: ease-in-out;
  -o-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInUp {
  -webkit-animation-duration: 1.3s;
  -moz-animation-duration: 1.3s;
  -o-animation-duration: 1.3s;
  animation-duration: 1.3s;
  -webkit-animation-name: fadeInUp;
  -moz-animation-name: fadeInUp;
  -o-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInRight {
  -webkit-animation: fadeInRight;
  -moz-animation: fadeInRight;
  -o-animation: fadeInRight;
  animation: fadeInRight;
  -webkit-animation-duration: 1.3s;
  -moz-animation-duration: 1.3s;
  -o-animation-duration: 1.3s;
  animation-duration: 1.3s;
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInLeft {
  -webkit-animation: fadeInLeft;
  -moz-animation: fadeInLeft;
  -o-animation: fadeInLeft;
  animation: fadeInLeft;
  -webkit-animation-duration: 1.3s;
  -moz-animation-duration: 1.3s;
  -o-animation-duration: 1.3s;
  animation-duration: 1.3s;
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInDown {
  -webkit-animation: fadeInDown;
  -moz-animation: fadeInDown;
  -o-animation: fadeInDown;
  animation: fadeInDown;
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  -o-animation-duration: 1s;
  animation-duration: 1s;
}
@keyframes dh_bottom {
  0% {
    transform: translate(0, 100px);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}
.dh_bottom {
  animation: dh_bottom 0.6s;
  animation-fill-mode: forwards;
  animation-delay: 0.5s;
  opacity: 0;
}
.dh_bottom1 {
  animation: dh_bottom 0.6s;
  animation-fill-mode: forwards;
  animation-delay: 0.5s;
  opacity: 0;
  animation-delay: 1s;
}
