/* 字体 */
@import url(font/iconfont.css);
@font-face {
  font-family: Regular;
  src: url(font/SourceHanSansCN-Regular.otf);
}
@font-face {
  font-family: DIN-Medium;
  src: url(font/DIN-MediumAlternate.otf);
}
@font-face {
  font-family: D-DINExp;
  src: url(font/D-DINExp.otf);
}
@font-face {
  font-family: Regular;
  src: url(font/SourceHanSansCN-Regular.otf);
}
/* 阿里图标 */
:root {
  --themeColor: #c8a063;
  --themeColor2: #c8a063aa;
  --themeColor3: #ebcda0;
  --swiper-theme-color: transparent;
}
* {
  margin: 0;
  padding: 0;
}
html,
body {
  width: 100vw;
  overflow-x: hidden;
  font-family: Regular !important;
}
body {
  -webkit-font-smoothing: antialiased;
  font: 15px/1.5 D-DINExp, Microsoft YaHei, Heiti SC, tahoma, arial, Hiragino Sans GB, "\5B8B\4F53", sans-serif;
  color: #333;
}
*:focus {
  outline: none !important;
}
em,
i {
  font-style: normal;
}
li {
  list-style: none;
}
img {
  border: 0;
  vertical-align: middle;
}
a {
  color: #666;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
}
a:hover {
  color: var(--themeColor);
}
/* 表单元素 */
textarea,
select,
button,
input {
  /* "\5B8B\4F53" => 宋体 */
  font-family: D-DINExp, Microsoft YaHei, Heiti SC, tahoma, arial, Hiragino Sans GB, "\5B8B\4F53", sans-serif;
  border: none;
  background: none;
  resize: none;
  outline: none;
  border-radius: 10px;
  transition: all 0.3s;
  /* chrome */
  /* 火狐浏览器 */
}
textarea::-webkit-outer-spin-button,
select::-webkit-outer-spin-button,
button::-webkit-outer-spin-button,
input::-webkit-outer-spin-button,
textarea::-webkit-inner-spin-button,
select::-webkit-inner-spin-button,
button::-webkit-inner-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
textarea[type="number"],
select[type="number"],
button[type="number"],
input[type="number"] {
  -moz-appearance: textfield;
}
/* 按钮 */
button {
  text-align: center;
  cursor: pointer;
  font-size: 15px;
  padding: 10px 30px;
  border-radius: 30px;
  margin: 20px auto;
  background-color: transparent;
  font-family: D-DINExp;
  color: #666;
  border: 1px solid #898989;
  transition: all 0.3s;
  white-space: nowrap;
}
button:hover {
  color: #fff;
  background-color: var(--themeColor);
  border-color: var(--themeColor);
  transform: translateY(-3px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
button.f_button {
  font-size: 14px;
  border-radius: 3px;
  background: transparent;
  color: #999;
  border: 1px solid #999;
  padding: 10px 30px;
}
button.f_button a {
  color: #fff;
}
button.f_button:hover {
  transform: none;
  box-shadow: none;
  background: var(--themeColor);
  color: #fff;
  border: 1px solid var(--themeColor);
}
button.f_button:hover a {
  color: #fff;
}
/* 文字相关 */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
}
h1 {
  font-size: 30px;
  color: #333;
}
h1.en {
  font-size: 60px;
  color: var(--themeColor);
  font-family: DIN-Medium;
  opacity: 0.1;
  white-space: nowrap;
}
h2 {
  font-size: 32px;
}
h3 {
  font-size: 30px;
}
h4 {
  font-size: 26px;
}
h5 {
  font-size: 22px;
}
h6 {
  font-size: 18px;
}
p {
  font-size: 15px;
  font-family: Regular;
  color: #666;
  line-height: 2;
  text-align: left;
}
.Normal {
  font-size: 20px;
  font-family: Normal;
  color: #666;
}
/* 单行文本 */
.dh_text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* 3行文本 */
.dh_text3 {
  display: -webkit-box;
  display: -moz-box;
  word-wrap: break-word;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal !important;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
/* 背景图居中 */
.bg_center {
  background-position: center;
  background-size: cover;
}
/* 3d倾斜 */
.re_3d {
  transition: transform 0.1s;
  transform-style: pbooking-3d;
}
.re_3d h5,
.re_3d p {
  transform: translateZ(30px);
}
/* 滚动显示动画类 */
.scroll_left {
  transform: translateX(-10%);
}
.scroll_right {
  transform: translateX(10%);
}
.scroll_bottom,
.scroll_children > * {
  transform: translateY(20%);
}
.scroll_children > * {
  opacity: 0;
  transition: all 0.8s;
}
.scroll_children > *.show {
  transform: translate(0, 0);
  opacity: 1;
}
.scroll_bottom,
.scroll_left,
.scroll_right {
  opacity: 0;
  transition: all 0.8s;
}
.scroll_bottom.show,
.scroll_left.show,
.scroll_right.show {
  transform: translate(0, 0);
  opacity: 1;
}
/* 版芯 */
.content {
  width: 1400px;
  margin: 0 auto;
}
/* 顶部 */
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  width: 100%;
  text-align: center;
  line-height: 80px;
  background-color: #fff;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
}
.header .content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* 搜索 */
  /* 移动端 */
}
.header .content .logo {
  width: 40vmin;
  max-width: 200px;
}
.header .content .logo > img {
  width: 100%;
}
.header .content .header_nav {
  flex: 1;
  display: flex;
  justify-content: space-between;
  margin: 0 7%;
}
.header .content .header_nav li {
  position: relative;
}
.header .content .header_nav li > a {
  color: #333;
  display: block;
  position: relative;
}
.header .content .header_nav li > a::after {
  content: "";
  width: 0;
  height: 2px;
  border-radius: 1px;
  background-color: var(--themeColor);
  position: absolute;
  bottom: 10px;
  left: 0;
  transition: all 0.3s;
}
.header .content .header_nav li > a:hover {
  color: var(--themeColor);
}
.header .content .header_nav li > a:hover::after {
  width: 100%;
}
.header .content .header_nav li.act > a {
  color: var(--themeColor);
}
.header .content .header_nav li.act > a::after {
  width: 100%;
}
.header .content .header_nav li .menu_sxl {
  width: max-content;
  z-index: 99;
  display: none;
  position: absolute;
  left: 50%;
  top: 80px;
  transform: translateX(-50%);
  line-height: 1.7;
  padding: 6px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}
.header .content .header_nav li .menu_sxl a {
  display: block;
  padding: 5px 10px;
  font-family: Normal;
}
.header .content .header_nav li .menu_sxl a.act,
.header .content .header_nav li .menu_sxl a:hover {
  color: var(--themeColor);
}
.header .content .header_right {
  display: flex;
}
.header .content .header_right .phone i.iconfont {
  font-size: 15px;
  color: var(--themeColor);
}
.header .content .header_right .phone a {
  color: var(--themeColor);
  font-weight: bold;
}
.header .content .header_right .yuyan {
  margin: 0 10px;
}
.header .content .header_right .yuyan span {
  cursor: pointer;
}
.header .content .header_right .search i.iconfont {
  transition: all 0.3s;
  cursor: pointer;
}
.header .content .header_right .search i.iconfont:hover {
  color: var(--themeColor);
}
.header .content .search_box {
  display: none;
  width: 100%;
  position: fixed;
  top: 80px;
  left: 0;
  background-color: #fff;
  border-top: 2px solid #999;
  padding: 25px 0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  line-height: 2;
}
.header .content .search_box .content {
  display: block;
}
.header .content .search_box .content .search_warp {
  border-bottom: 1px solid #333;
  max-width: 800px;
  margin: auto;
  display: flex;
  align-items: center;
}
.header .content .search_box .content .search_warp input {
  flex: 1;
  line-height: 3;
}
.header .content .search_box .content .search_warp select {
  margin-right: 20px;
}
.header .content .search_box .content .search_warp a img {
  display: block;
}
.header .content .app_right {
  display: none;
  /* 移动端菜单按钮 */
}
.header .content .app_right .app_nav_btn {
  width: 50px;
  height: 50px;
  transform: scale(0.7) translateX(50%);
}
.header .content .app_right .app_nav_btn span,
.header .content .app_right .app_nav_btn::after,
.header .content .app_right .app_nav_btn::before {
  content: "";
  display: block;
  width: 70%;
  height: 3px;
  border-radius: 2px;
  background: #444;
  position: absolute;
  left: 0;
  transition: all 0.3s;
}
.header .content .app_right .app_nav_btn::after {
  transform-origin: right center;
  top: 25%;
}
.header .content .app_right .app_nav_btn::before {
  transform-origin: right center;
  top: 75%;
}
.header .content .app_right .app_nav_btn span {
  top: 50%;
}
.header .content .app_right .app_nav_btn.check span {
  opacity: 0;
}
.header .content .app_right .app_nav_btn.check::after {
  transform: rotate(-46deg);
}
.header .content .app_right .app_nav_btn.check::before {
  transform: rotate(46deg);
}
.header .content .app_right .app_nav_btn.check + .nav_warp .nav_list {
  left: 0;
}
/* 底部 */
.footer {
  padding: 70px 0 40px;
  background-image: url(../image/footer_bg.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.footer main {
  display: flex;
}
.footer main .dt {
  font-size: 22px;
  color: #444;
  font-weight: 500;
  padding-bottom: 30px;
  position: relative;
}
.footer main .dt::after {
  content: "";
  width: 1em;
  height: 2px;
  background: #444;
  position: absolute;
  left: 0;
  bottom: 15px;
}
.footer main .footer_left {
  flex: 2.5;
  display: flex;
  border-right: 1px solid #a3a3a3;
}
.footer main .footer_left .footer_item {
  flex: 1;
}
.footer main .footer_left .footer_item a {
  display: block;
}
.footer main .footer_left .footer_item a.dd {
  line-height: 1.8;
  color: #999;
}
.footer main .footer_left .footer_item a.dd:hover {
  transform: translateX(2px);
  color: var(--themeColor);
}
.footer main .footer_right {
  flex: 1;
  padding-left: 5%;
  display: flex;
  flex-direction: column;
}
.footer main .footer_right .callMe_list {
  display: flex;
  justify-content: flex-start;
}
.footer main .footer_right .callMe_list .callMe_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  -webkit-align-items: center;
  cursor: pointer;
  position: relative;
  margin-right: 25px;
}
.footer main .footer_right .callMe_list .callMe_item .rwm {
  opacity: 0;
  display: none;
  position: absolute;
  top: -135px;
  width: 130px;
  transition: all 0.5s;
}
.footer main .footer_right .callMe_list .callMe_item .rwm img {
  width: 100%;
}
.footer main .footer_right .callMe_list .callMe_item .rwm::after {
  content: "";
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-top-color: #fff;
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
}
.footer main .footer_right .callMe_list .callMe_item i.iconfont {
  font-size: 25px;
  transition: all 0.3s;
  color: #999;
}
.footer main .footer_right .callMe_list .callMe_item span {
  font-size: 12px;
  transition: all 0.3s;
  color: #999;
  white-space: nowrap;
}
.footer main .footer_right .callMe_list .callMe_item:hover i.iconfont,
.footer main .footer_right .callMe_list .callMe_item:hover span {
  color: var(--themeColor);
}
.footer main .footer_right .callMe_list .callMe_item:hover .rwm {
  display: block;
  opacity: 1;
}
.footer main .footer_right .callMe_tel {
  margin-top: 20px;
}
.footer main .footer_right .callMe_tel span {
  font-weight: 500;
}
.footer main .footer_right .callMe_tel span,
.footer main .footer_right .callMe_tel a {
  font-size: 18px;
  color: #999;
}
.footer main .footer_right .callMe_tel .tel {
  margin-bottom: 5px;
  display: flex;
}
.footer main .footer_right .callMe_tel .tel a {
  transition: all 0.3s;
  display: block;
}
.footer main .footer_right .callMe_tel .tel a:hover {
  color: var(--themeColor);
  transform: translateY(-2px);
  text-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
}
.footer main .footer_right .callMe_tel .f_button {
  width: 50%;
  margin: 0;
}
.footer .footer_logo {
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer .footer_logo img {
  margin: 0 20px;
}
.footer .footer_logo div {
  flex: 1;
  height: 1px;
  background: #999;
}
.footer .footer_bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
}

/*start*/
.footer .footer_bottom span:nth-child(1){
    display: none;
}
.footer .footer_bottom span:nth-child(3){
    display: none;
}
.footer .footer_bottom a:nth-child(4){
    display: none;
}
.page_black{
    width: 100%;
    position: fixed;
    height: 100vh;
    top: 0;
    z-index: 9999;
    /*opacity: 0.9;*/
    background: #333;
}
.page_black img{
    z-index: 99999;
    max-width:70%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.footer .footer_bottom span,
.footer .footer_bottom a {
  color: #999;
}
.footer .footer_bottom a:hover {
  color: var(--themeColor);
}
/* 主体 */
.main {
  margin-top: 80px;
  min-height: 150vh;
  /* 内页公用 */
  /* 当前位置 */
  /* 内容 */
}
.main .banner {
  position: relative;
}
.main .banner img {
  width: 100%;
}
.main .banner .banner_text {
  width: max-content;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
}
.main .banner .banner_text h1 {
  color: #fff;
  font-size: 30px;
  margin-bottom: 10px;
}
.main .banner .banner_text .q_suTitle {
  padding: 10px;
  border-radius: 50px;
  border: 1px solid var(--themeColor);
  font-family: Regular;
}
.main .location {
  background-color: #f5f5f5;
  line-height: 70px;
}
.main .location .iconfont {
  color: var(--themeColor);
}
.main .location span,
.main .location a {
  color: #999;
}
.main .location a:hover {
  color: var(--themeColor);
}
.main .pub_kuai {
  margin: 40px auto;
}
.main .pub_kuai .pub_title_box {
  margin-bottom: 30px;
}
.main .pub_kuai .pub_title_box.center {
  text-align: center;
}
.main .pub_kuai .pub_title_box.center .title .cn {
  left: 50%;
  transform: translateX(-50%);
}
.main .pub_kuai .pub_title_box.center .su_title {
  margin-left: 0;
}
.main .pub_kuai .pub_title_box.center .des {
  text-align: center;
}
.main .pub_kuai .pub_title_box .title {
  position: relative;
}
.main .pub_kuai .pub_title_box .title .cn {
  position: absolute;
  bottom: 5px;
  white-space: nowrap;
}
.main .pub_kuai .pub_title_box .su_title {
  color: var(--themeColor);
  font-size: 18px;
  font-weight: 500;
  margin-left: -0.5em;
}
.main .pub_kuai .pub_title_box .des {
  width: 90%;
  margin: 10px auto 0;
  line-height: 2;
  color: #666;
}
/* 空数据状态 */
.notData {
  line-height: 20vh;
  text-align: center;
  font-size: 25px;
  color: #999;
}
/* loading */
.loading {
  width: 150px;
  height: 15px;
  margin: 100px auto 50vh;
  text-align: center;
}
.loading span {
  display: inline-block;
  width: 15px;
  height: 100%;
  margin-right: 5px;
  background: var(--themeColor);
  -webkit-animation: load 1.04s ease infinite;
}
.loading span:last-child {
  margin-right: 0px;
}
.loading span:nth-child(1) {
  -webkit-animation-delay: 0.13s;
}
.loading span:nth-child(2) {
  -webkit-animation-delay: 0.26s;
}
.loading span:nth-child(3) {
  -webkit-animation-delay: 0.39s;
}
.loading span:nth-child(4) {
  -webkit-animation-delay: 0.52s;
}
.loading span:nth-child(5) {
  -webkit-animation-delay: 0.65s;
}
@-webkit-keyframes load {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* 表单 */
.form {
  margin: 30px;
  padding: 30px;
  background-color: #fff;
  color: var(--themeColor);
}
.form .form_item {
  margin-bottom: 10px;
}
.form .form_item .label {
  margin-bottom: 10px;
  padding-left: 15px;
}
.form .form_item input {
  width: calc(100% - 50px);
  border-radius: 25px;
  line-height: 50px;
  padding: 0 25px;
  background-color: #f9f7f3;
  color: var(--themeColor);
}
.form .form_item input[type="checkbox"] {
  width: auto;
  border-radius: 50%;
}
.form .form_item input::-webkit-input-placeholder {
  /* WebKit browsers */
  color: var(--themeColor2);
}
.form .form_item input:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: var(--themeColor2);
}
.form .form_item input::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: var(--themeColor2);
}
.form .form_item input:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: var(--themeColor2);
}
.form .form_item .error {
  font-size: 12px;
  margin: 5px 0 0 25px;
  color: red;
  transition: all 0.3s;
  transform: translateY(3px);
  opacity: 0;
}
.form .form_item.error_val .error {
  transform: translateY(0);
  opacity: 1;
}
.form .submit_item {
  display: flex;
  align-items: center;
}
.form .submit_item button {
  font-size: 16px;
  margin-right: 10px;
  padding: 10px 30px;
  border-color: var(--themeColor);
  color: var(--themeColor);
}
.form .submit_item button:hover {
  color: #fff;
}
.form .submit_item span {
  font-size: 14px;
}
/* 内页二级菜单 */
.su_menu_list {
  display: flex;
  margin-bottom: 30px;
  overflow-x: auto;
  padding: 5px 0;
}
.su_menu_list .su_menu_item {
  font-size: 16px;
  margin-right: 20px;
  border: 1px solid var(--themeColor);
  padding: 10px 30px;
  border-radius: 30px;
  color: var(--themeColor);
  transition: all 0.3s;
  white-space: nowrap;
  cursor: pointer;
}
.su_menu_list .su_menu_item:hover,
.su_menu_list .su_menu_item.act {
  color: #fff;
  background-color: var(--themeColor);
  border-color: var(--themeColor);
  transform: translateY(-3px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
/* 分页器 */
.pages {
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 60px;
  background-color: #dcdedd;
  padding: 0 30px;
  margin-bottom: 30px;
  color: #fff;
}
.pages .iconfont {
  font-size: 30px;
  font-weight: bold;
}
.pages .left {
  transition: all 0.3s;
  cursor: pointer;
  transform: rotateZ(180deg);
}
.pages .right {
  transition: all 0.3s;
  cursor: pointer;
  transform: translateY(5px);
}
.pages .left:hover,
.pages .right:hover {
  color: var(--themeColor);
}
.pages .num .now {
  font-size: 22px;
  font-weight: bold;
}
/* 右侧浮窗 */
.right_fiexd {
    display: flex;
    flex-direction: column;
  position: fixed;
  right: -100px;
  bottom: 50%;
  transform: translateY(50%);
  z-index: 9999;
  background-color: #dcddddee;
  color: var(--themeColor);
  border-radius: 5px;
  padding: 10px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
  transition: all 0.5s;
}
.right_fiexd.show {
  right: 10px;
}
.right_fiexd > a,
.right_fiexd > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  cursor: pointer;
  color: var(--themeColor);
}
.right_fiexd > a .iconfont,
.right_fiexd > div .iconfont {
  font-size: 26px;
}
.right_fiexd > a span,
.right_fiexd > div span {
  font-family: Normal;
  font-size: 12px;
  text-align: center;
}
.right_fiexd > a .right_fiexd_content,
.right_fiexd > div .right_fiexd_content {
  text-align: right;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: none;
}
.right_fiexd > a .right_fiexd_content.msg,
.right_fiexd > div .right_fiexd_content.msg,
.right_fiexd > a .right_fiexd_content.ttal,
.right_fiexd > div .right_fiexd_content.ttal {
  background: rgba(0, 0, 0, 0.3);
  padding: 0 5px;
  color: #fff;
  left: -130px;
  border-radius: 2px;
}
.right_fiexd > a .right_fiexd_content.msg::after,
.right_fiexd > div .right_fiexd_content.msg::after,
.right_fiexd > a .right_fiexd_content.ttal::after,
.right_fiexd > div .right_fiexd_content.ttal::after {
  border-left-color: rgba(0, 0, 0, 0.3);
}
.right_fiexd > a .right_fiexd_content.msg,
.right_fiexd > div .right_fiexd_content.msg {
  left: -220px;
}
.right_fiexd > a .right_fiexd_content.gzh,
.right_fiexd > div .right_fiexd_content.gzh {
  left: -150px;
}
.right_fiexd > a .right_fiexd_content.gzh img,
.right_fiexd > div .right_fiexd_content.gzh img {
  width: 120px;
}
.right_fiexd > a .right_fiexd_content.gzh::after,
.right_fiexd > div .right_fiexd_content.gzh::after {
  border-left-color: #fff;
}
.right_fiexd > a .right_fiexd_content::after,
.right_fiexd > div .right_fiexd_content::after {
  content: "";
  width: 0;
  height: 0;
  border: 6px solid transparent;
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
}
/* 成为唯漫设计师浮窗 */
.madel {
  display: none;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 9;
  width: 100vw;
  height: calc(100vh - 80px);
  background-color: rgba(0, 0, 0, 0.3);
}
.madel .madel_content {
  width: max-content;
  position: absolute;
  right: 60px;
  bottom: 140px;
  transform: translate(50%, 50%) scale(0);
  background-image: url(../image/index/medal_bg.png);
  background-position: center;
  background-size: cover;
  transition: all 1.3s;
}
.madel .madel_content.kai {
  right: 50%;
  bottom: 50%;
  transform: translate(50%, 50%) scale(1);
}
/* 提示框 */
.popconfirm {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.3);
  color: #fff;
  font-size: 14px;
  text-align: center;
  padding: 5px 10px;
  display: none;
}
/* 筛选 */
.filter {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}
.filter .filter_item {

  overflow-y: hidden;
  overflow-x: auto;
  display: flex;
  /*justify-content: space-between;*/
  margin-bottom: 10px;
}
.filter .filter_item .label {
  /*width: 4em;*/
  text-align: right;
  font-weight: bold;
  color: var(--themeColor);
  font-size: 16px;
  white-space: nowrap;
  margin-right: 10px;
}
.filter .filter_item ul {
  width: 75%;
  display: flex;
  margin-left: 10px;

    white-space: nowrap;
}
.filter .filter_item ul li {
     white-space: nowrap;
  color: #666;
  margin-right: 30px;
  padding: 0 5px;
  border: 1px solid transparent;
  cursor: pointer;
  border-radius: 3px;
}
.filter .filter_item ul li.active {
  border-color: var(--themeColor);
  color: white;
  background: var(--themeColor);
}
/* 呼吸动画 */
.huxi {
  animation: huxi 0.7s linear infinite alternate;
}
@keyframes huxi {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* 旋转动画 */
.xuanzhuan {
  animation: xuanzhuan 2s linear infinite;
}
@keyframes xuanzhuan {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* 响应式 */
@media (max-width: 1450px) {
      /* 右侧浮窗 */
.right_fiexd {
    display: flex;
    flex-direction: row;
  position: fixed;
  right: -100px;
  bottom: 50%;
  transform: translateY(50%);
  z-index: 9999;
  background-color: #dcddddee;
  color: var(--themeColor);
  border-radius: 5px;
  padding: 10px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
  transition: all 0.5s;
}
  p {
    font-size: 14px;
  }
  .header .content .search_box {
    top: 60px;
  }
  .content {
    width: 1200px;
  }
  /* 顶部导航高度 缩小 */
  .header {
    line-height: 60px;
  }
  .header .content .header_nav li .menu_sxl {
    top: 60px;
  }
  .main {
    margin-top: 60px;
  }
  .footer main .footer_left .footer_item:nth-child(-n + 3){
      display: none;
  }
  
  
  .filter .filter_item ul {
  width: 75%;
  display: flex;
  margin-left: 10px;

    white-space: nowrap;
    overflow-x: scroll;
}


  /* 定义滚动条样式 */
.filter .filter_item ul::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background-color: rgba(240, 240, 240, 1);
}
  
/*定义滚动条轨道 内阴影+圆角*/
.filter .filter_item ul::-webkit-scrollbar-track {
  box-shadow: inset 0 0 0px rgba(240, 240, 240, .5);
  border-radius: 10px;
  background-color: rgba(240, 240, 240, .5);
}
  
/*定义滑块 内阴影+圆角*/
.filter .filter_item ul::-webkit-scrollbar-thumb {
  border-radius: 10px;
  box-shadow: inset 0 0 0px rgba(240, 240, 240, .5);
  background-color: var(--themeColor);
}
    .filter .filter_item ul li{
margin-bottom: 10px;
}
  .right_fiexd {
      width: 97%;
    position: static;
    border-radius: 0;
    box-shadow: none;
    background: none;
    display: flex;
    justify-content: space-between;
     padding: 0 0 35px;
    transform: translate(0);
}
      .right_fiexd > a .right_fiexd_content.msg,
.right_fiexd > div .right_fiexd_content.msg,
.right_fiexd > a .right_fiexd_content.ttal,
.right_fiexd > div .right_fiexd_content.ttal {
  background: rgba(0, 0, 0, 0.3);
  width: fit-content;
  padding: 0 5px;
  color: #fff;
  left: auto;
  right: -110px !important;
  border-radius: 2px;
}
.right_fiexd > a .right_fiexd_content.msg,
.right_fiexd > div .right_fiexd_content.msg {
     left: auto;
  right: -192px !important;
}
.right_fiexd > a .right_fiexd_content.gzh,
.right_fiexd > div .right_fiexd_content.gzh {
     left: auto;
   right: -130px !important;
}
.right_fiexd > a .right_fiexd_content::after,
.right_fiexd > div .right_fiexd_content::after {
  content: "";
  width: 0;
  height: 0;
  border: 6px solid transparent;
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
}
.right_fiexd > a .right_fiexd_content, .right_fiexd > div .right_fiexd_content {
    z-index: 9999;
}

  
}
@media (max-width: 1250px) {
  .content {
    width: 92vw;
  }
  /* 顶部导航 */
  .header .content {
    /* 移动端顶部导航处理 */
  }
  .header .content .header_right {
    display: none;
  }
  .header .content .app_right {
    display: flex;
    align-items: center;
  }
  .header .content .app_right .search,
  .header .content .app_right a {
    transform: translateY(3px);
    margin-right: 5px;
  }
  .header .content .header_nav {
    position: fixed;
    top: 60px;
    left: 100%;
    z-index: 999;
    background: var(--themeColor);
    display: block;
    line-height: 50px;
    transition: all 0.3s;
    width: calc(100vw - 20px);
    height: calc(100vh - 60px);
    padding: 0 10px;
    margin: 0;
  }
  .header .content .header_nav.check {
    left: 0;
  }
  .header .content .header_nav > li {
    height: auto;
  }
  .header .content .header_nav > li > a {
    color: #fff !important;
    position: static;
    transform: translate(0);
    border-bottom: 1px solid #eee;
    position: relative;
  }
  .header .content .header_nav > li.menu > a::after,
  .header .content .header_nav > li.menu > a::before {
    position: absolute;
    top: 50%;
    left: auto;
    right: 10px;
    content: "";
    width: 15px;
    height: 2px;
    background-color: #ddd;
    transition: all 0.3s;
  }
  .header .content .header_nav > li.menu > a::after {
    transform: rotate(90deg);
  }
  .header .content .header_nav > li.menu > a.kai::before,
  .header .content .header_nav > li.menu > a.kai::after {
    transform: rotate(360deg);
  }
  .header .content .header_nav > li.menu a:hover {
    color: #fff !important;
  }
  .header .content .header_nav > li .menu_sxl {
    position: sticky;
    transform: none;
    width: auto;
    background: none;
    box-shadow: none;
  }
  .header .content .header_nav > li .menu_sxl a {
    color: #fff;
  }
  /* 底部 */
}
@media (max-width: 1000px) {
    .right_fiexd > a .right_fiexd_content, .right_fiexd > div .right_fiexd_content {
    top: 19%;
}
  .right_fiexd {
        width:100%;
    position: static;
    border-radius: 0;
    box-shadow: none;
    background: none;
    display: flex;
    justify-content: space-around;
    padding: 0 0 20px;
    transform: translate(0);
  }
  .right_fiexd:hover {
    transform: translate(0);
  }
  .right_fiexd > a,
  .right_fiexd > div:nth-child(2),
  .right_fiexd > div:nth-child(3) {
    display: none;
  }
  .right_fiexd > div:nth-child(6) i {
    /*flex-direction: row;*/
  }
  .right_fiexd .sjs_yp i{
       margin-left: 8px;
  }
  .right_fiexd > div:nth-child(6) span {
    margin-left: 5px;
  }
  /* 成为唯漫设计师弹窗 */
  .madel {
    width: 100%;
    height: auto;
    position: static;
    background: none;
  }
  .madel .madel_content {
    width: 100%;
    height: auto;
    position: static;
    transform: translate(0);
    background: none;
  }
  .madel .madel_content.kai {
    transform: translate(0);
  }
  .madel .madel_content .form {
    margin: 0 0 20px;
  }
  .madel .madel_content .form .submit_item {
    justify-content: space-between;
  }
  .madel .madel_content .form .submit_item button {
    margin: 0;
    margin-right: 10px;
  }
  .madel .madel_content .form .submit_item span {
    font-size: 12px;
  }
  .footer main .footer_left .footer_item:first-child,
  .footer main .footer_left .footer_item:nth-child(3),
  .footer main .footer_left .footer_item:nth-child(2) {
    display: none;
  }
  .footer main .footer_left {
    flex: 2;
  }
  .footer main .footer_right {
    flex: 3;
  }
  .footer main .footer_right .callMe_list .callMe_item .rwm {
    width: 100%;
    position: static;
    opacity: 1;
    display: block;
  }
  .footer main .footer_right .callMe_list .callMe_item .rwm::after {
    display: none;
  }
  .footer main .footer_right .callMe_tel .tel {
    margin-top: 20px;
    justify-content: center;
  }
  .footer main .footer_right .callMe_list {
    justify-content: space-between;
  }
  .footer main .footer_right .callMe_list .callMe_item {
    margin-right: 0;
  }
  .footer main .footer_right .callMe_list .callMe_item i.iconfont {
    display: none;
  }
  .footer main .footer_right .callMe_list .callMe_item span {
    margin-top: 5px;
  }
  .footer .footer_logo {
    margin-top: 20px;
  }
}
@media (max-width: 980px) {
  .main .banner .banner_text {
    width: 80%;
  }
  h1 {
    font-size: 25px;
  }
  h1.en {
    font-size: 50px;
  }
  .main .pub_kuai .pub_title_box .su_title {
    font-size: 16px;
  }
  .main .pub_kuai .pub_title_box {
    margin-bottom: 20px;
  }
  p {
    font-size: 13px;
  }
  .scroll_left,
  .scroll_right,
  .scroll_bottom,
  .scroll_children > * {
    transform: translate(0);
    opacity: 1;
  }
  /* 底部 */
  .footer {
    padding-top: 40px;
    position: relative;
    z-index: 100;
  }
  .footer main .dt {
    font-size: 18px;
    padding-bottom: 20px;
  }
  .footer main .dt::after {
    display: none;
  }
  .footer main .footer_left .footer_item a.dd {
    font-size: 12px;
  }
  .footer main .footer_right .callMe_tel .f_button {
    display: none;
  }
  .footer main .footer_right .callMe_tel span,
  .footer main .footer_right .callMe_tel a {
    font-size: 14px;
  }
  .footer .footer_logo {
    margin-top: 40px;
  }
  .main .banner .banner_text h1 {
    font-size: 5vw;
  }
  .main .banner .banner_text .q_suTitle {
    font-size: 3vw;
  }
  .su_menu_list .su_menu_item {
    font-size: 14px;
    padding: 7px 20px;
    margin-right: 10px;
  }
}
@media (max-width:800px){
    .main .banner .banner_text h1{
        font-size:3vw;
    }
    .main .banner .banner_text .q_suTitle{
        font-size: 2vw;
    }
    .main{
        min-height: auto;
    }
     .right_fiexd > a .right_fiexd_content.msg, .right_fiexd > div .right_fiexd_content.msg, .right_fiexd > a .right_fiexd_content.ttal, .right_fiexd > div .right_fiexd_content.ttal{
      right: -100px !important;
  }
  .right_fiexd > a .right_fiexd_content, .right_fiexd > div .right_fiexd_content{
      top: -8%;
  }
}
/*移动端*/
.su_menu_swiper {
    display: none;
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.su_menu_swiper .swiper-slide {
   width: auto; 
   border: 1px solid var(--themeColor);
   padding: 7px 20px;
   border-radius: 30px;
   color: var(--themeColor);
}
.su_menu_swiper .swiper-slide:hover,
.su_menu_swiper .swiper-slide.act {
    transform: translate(0);
    color: #fff;
    background: var(--themeColor);
}
.su_menu_swiper .swiper-scrollbar-drag {
    background: #c8a063;
}

@media (max-width: 1024px) {
    .pc_item {
        display: none !important;
    }
    
    .su_menu_list {
        margin-bottom: 15px;
    }
    
    .su_menu_swiper  {
        display: block;
        overflow: hidden;
        position: relative;
    }
}

@media (max-width: 768px) {
    /*.su_menu_list::-webkit-scrollbar {*/
        /*display: block;*/
    /*    margin-top: 15px;*/
    /*    background-color: #e3e3e3;*/
    /*    height: 3px;*/
    /*} */
    
    /*.su_menu_list::-webkit-scrollbar-track {*/
    /*    margin-top: 15px;*/
    /*    background-color: #e3e3e3;*/
    /*    height: 3px;*/
    /*}*/
    
    /*.su_menu_list::-webkit-scrollbar-thumb {*/
    /*  background: #c8a063;*/
    /*  border-radius: 0px;*/
    /*}*/
        
}

@media (max-width: 700px) {
  .main .banner img {
    height: 70vw;
    object-fit: cover;
    object-position: center;
  }
  .main .location {
    line-height: 40px;
  }
  .main .location .iconfont {
    font-size: 14px;
  }
  .main .location span,
  .main .location a {
    font-size: 12px;
  }
  .main .pub_kuai {
    margin: 30px auto;
  }
  .su_menu_list {
    /*display: block;*/
    /*padding-bottom: 15px;*/
    /*margin-bottom: 15px;*/
  }
  .su_menu_list .su_menu_item:hover,
  .su_menu_list .su_menu_item.act {
    transform: translate(0);
  }
  /*.su_menu_list .su_menu_item {*/
  /*  font-size: 12px;*/
  /*  padding: 5px 15px;*/
  /*  margin-right: 0;*/
  /*}*/
}
@media (max-width: 680px) {
  .pages {
    width: calc(92vw - 60px);
    line-height: 40px;
  }
}
@media (max-width: 540px) {
    /*start*/
.footer .footer_bottom span:nth-child(1){
    display: none;
}
.footer .footer_bottom span:nth-child(3){
    display: none;
}
.footer .footer_bottom a:nth-child(4){
    display: none;
}
  h1 {
    font-size: 20px;
  }
  h1.en {
    font-size: 30px;
    opacity: 0.2;
  }
  /* 手机隐藏酷家乐工具链接 */
  .header .content .header_nav li:nth-child(6) .menu_sxl a:nth-child(1),
  .header .content .header_nav li:nth-child(6) .menu_sxl a:nth-child(2) {
    display: none;
  }
  .main .pub_kuai .pub_title_box .su_title {
    font-size: 14px;
  }
  .main .pub_kuai .pub_title_box .des {
    width: 100%;
    font-size: 12px;
  }
  .main .pub_kuai .pub_title_box {
    margin-bottom: 10px;
  }
  /* 底部 */
  .footer {
    padding: 20px 0;
  }
  .footer main .footer_left {
    display: none;
  }
  .footer main .footer_right {
    padding: 0;
  }
  .footer main .footer_right .callMe_list .callMe_item {
    width: 19%;
  }
  .footer main .dt {
    display: none;
    text-align: center;
    padding-bottom: 10px;
  }
}

@media (max-width: 768px) {
    .filter .filter_item ul {
        display: flex;
        white-space: nowrap;
        overflow-x: scroll;
   }
   
   .filter .filter_item .label {
        padding-top: 6px;
        font-weight: 400;
   }
   
   .filter .filter_item ul li {
      border: 1px solid var(--themeColor);
      border-radius: 30px;
      color: var(--themeColor);
      padding: 7px 20px;
      margin-bottom: 10px;
   }
     
    .filter .filter_item ul::-webkit-scrollbar {
        margin-top: 15px;
        background-color: #e3e3e3;
        height: 3px;
    } 
    
    .filter .filter_item ul::-webkit-scrollbar-thumb {
      background: #c8a063;
      border-radius: 0px;
    }
       
       /*.filter .filter_item ul li {*/
       /*  margin-right: 15px;*/
       /*    margin-bottom: 4px;*/
       /*}*/
}

@media (max-width: 450px) {
  .main {
    min-height: 80vh;
  }
  .filter .filter_item ul li {
    margin-right: 5px;
  }
}
