﻿@charset "utf-8";
/*
   * wx.zhangruiwoloveni *
   * http://e.xoabc.com/ *
   * Released on: 2020,04,13 *
*/  

/* 3D fanzhuan */
.flip_pic img {
  cursor: pointer;
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}
.flip_pic:hover img {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

/* pic spin */
.spin_pic img {
  cursor: pointer;
  transition: All 0.8s ease-in-out;
  -webkit-transition: All 0.8s ease-in-out;
  -moz-transition: All 0.8s ease-in-out;
  -o-transition: All 0.8s ease-in-out;
}
.spin_pic:hover img {
  transform: rotate(360deg);
  -webkit-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -o-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
}

/* pic fangda */
.zoom_pic img {
  transition: all .8s;
}
.zoom_pic:hover img {
  transform: scale(1.1);
}

.p_pic {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
}

/* top */
p#back-to-top{
  position: fixed;
  display: none;
  bottom: 30px;
  right: 30px;
}
p#back-to-top a {
  text-align: center;
  display: block;
  height: 30px;
  width: 30px;
  line-height: 38px;
  border: 1px #e28d00 solid;
  color: #e28d00;
  overflow: hidden;
}
p#back-to-top a:hover {
  color: #fff;
  border-color: #e28d00;
  background-color: #e28d00;
}