html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  /*font: inherit;*/
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
img {
  vertical-align: middle;
}
a {
  color: black;
  text-decoration: none;
}

#footer .copyright a {
  color: #d1d1d1;
}

.dialog {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
 display:none;
}

.dialog .error-text{
  color: red;
  margin-top: 8px;
  display:none;
}

.dialog > .center {
  position: relative;
  margin: 0 auto 50px;
  background: #fff;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgb(0 0 0 / 30%);
  box-sizing: border-box;
  width: 40%;
  margin-top: 20vh;
}

.dialog > .center > .dialog-header {
  padding: 20px 30px 10px;
}

.dialog > .center > .dialog-header > p {
  color: #ff794a;
  font-size: 28px;
  text-align:center;
}

.dialog > .center > .dialog-body .one {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 30px 0px;
}

.dialog > .center > .dialog-body .one > div{
  width: 48%;
  height: 78px;
}

.dialog > .center > .dialog-body .two {
  padding: 30px 30px 0px;
}

.dialog > .center > .dialog-body input {
  width: 94%;
  padding: 0 3%;
  height: 60px;
  line-height: 60px;
  border: 1px solid rgba(255, 121, 74, 0.5);
  background: none;
  border-radius: 5px;
  display: block;
  overflow: hidden;
  outline: none;
  font-size: 20px;
  font-family: "微软雅黑", "Helvetica Neue", Helvetica, Arial, sans-serif;

}

.dialog > .center > .dialog-body input::-webkit-input-placeholder {
	color: #ccc !important;
}

.dialog > .center > .dialog-body input:-moz-placeholder {
	color: #ccc !important;
}



.dialog > .center > .dialog-body input:-ms-input-placeholder {
	color: #ccc !important;
}
.dialog > .center > .dialog-body textarea{
  width: 94%;
  height: 200px;
  line-height: 24px;
  padding: 9px 3%;
  border: 1px solid rgba(255, 121, 74, 0.5);
  background: none;
  border-radius: 5px;
  display: block;
  overflow: hidden;
  outline: none;
  font-size: 20px;
    font-family: "微软雅黑", "Helvetica Neue", Helvetica, Arial, sans-serif;

}
.dialog > .center > .dialog-body textarea::-webkit-input-placeholder {
	color: #ccc !important;
}

.dialog > .center > .dialog-body textarea:-moz-placeholder {
	color: #ccc !important;
}



.dialog > .center > .dialog-body textarea:-ms-input-placeholder {
	color: #ccc !important;
}



.dialog > .center > .dialog-footer{
  padding: 30px 30px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.dialog > .center > .dialog-footer button{
  width: 220px;
  height: 60px;
}

.dialog > .center > .dialog-footer > .cancel{
  margin-left: 20px;
  background: #fff;
  border: 1px solid #ff794a;
  color: #ff794a;
  font-size: 18px;
  cursor: pointer;
}

.dialog > .center > .dialog-footer > .submit{
  margin-left: 20px;
  background: #ff794a;
  border: 1px solid #ff794a;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

/*
 * ** dialog end
 * */


/*
 * ** message-box start
 * */

.message-box{
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 3000;
    display:none;
}

.message-box > .center{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgb(0 0 0 / 30%);
  box-sizing: border-box;
  width: 422px;
  min-height: 80px;
  padding: 22px;
}

.message-box > .center > div{
  padding-bottom: 15px;
}

.message-box > .center > .message-box-header{
  color: #303133;
  font-size: 18px;
}

.message-box > .center > .message-box-content{
  color: #606266;
  font-size: 14px;
}

.message-box > .center > .message-box-footer{
  text-align: center;
  padding: 0px;
}

.message-box > .center .confirm{
  width: 60px;
  height: 32px;
  background: cornflowerblue;
  border: 1px solid cornflowerblue;
  color: #fff;
  cursor: pointer;
}

/*
 * ** message-box end
 * */

.publicColory{
	color:#ff794a;
}
#top > img.mashed{
	width:100%;
	height:100%;
	position:absolute;
	top:0px;
	left:0px;
	z-index:-1;
	/* filter:blur(1px); */
}


#top{
	overflow:hidden;
	position:relative;
}

/* 修改部分 */
#top > div.mashed{
	width:100%;
	height:100%;
	position:absolute;
	top:0px;
	left:0px;
  z-index: 0;
}

#top img.swiper-bg {
  width: 100%;
  height: 100%;
  /* filter:blur(1px); */
}

#top > div.mashed .swiper-slide {
  position: relative;
  z-index: 9;
}

.client-list-item li img {
  transition: all 0.4s ease;
}
.client-list-item li:hover img {
  animation: toTopFromBottom 0.8s forwards;
}

.swiper-pagination-bullets {
  width: 95%!important;
}

.swiper-pagination {
  /* position: absolute!important;
  z-index: 20!important;
  bottom: 20px!important;
  right: 100px!important; */
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 20px;
}

.swiper-pagination > .swiper-pagination-bullet {
  display: inline-block;
  width: 35px;
  height: 6px;
  border-radius: 8px;
  background: rgba(85, 85, 85, 0.9);
  margin: 0 5px;
  opacity: 0.8;
  /* border: 1px solid #fff; */
  cursor: pointer;
}

.swiper-pagination > .swiper-pagination-bullet-active {
  background: #ff794a;
}

@keyframes toTopFromBottom {
  49% {
    transform: translateY(-30%);
  }
  50% {
    opacity: 0;
    transform: translateY(30%);
  }
  51% {
    opacity: 1;
  }
}

