<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
.header_common {
  width: 100%;
  height: 809px;
  &lt;!--background: url(../images/banner.png) no-repeat;--&gt;
  background-repeat: no-repeat;
  background-size: cover;
}
.header_common .top {
  width: 100%;
  height: 122px;
}
.header_common .top .inner {
  width: 1200px;
  height: 122px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.header_common .top .sub_nav_lists {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
}
.header_common .top .sub_nav_lists .nav_sub_item {
  display: flex;
  cursor: pointer;
}
.header_common .top .sub_nav_lists .nav_sub_item .nav_sub_home,
.header_common .top .sub_nav_lists .nav_sub_item .nav_sub_fixed_home {
  margin: 0 56px 0 64px;
  padding-left: 14px;
  width: 169px;
  height: 34px;
  border-radius: 24px;
  line-height: 34px;
  border: solid 1px rgba(151, 151, 151, 0.5);
}
.header_common .top .sub_nav_lists .nav_sub_item .nav_sub_home:before,
.header_common .top .sub_nav_lists .nav_sub_item .nav_sub_fixed_home:before {
  content: '';
  position: absolute;
  left: 30px;
  top: 6px;
  width: 22px;
  height: 22px ;
  background: url(../images/left_arrow_active.png) no-repeat;
  background-size: 100% 100%;
  transition: all 0.3s;
}
.header_common .top .sub_nav_lists .nav_sub_item .nav_sub_home a,
.header_common .top .sub_nav_lists .nav_sub_item .nav_sub_fixed_home a {
  display: inline-block;
  width: 100%;
  margin-left: 46px;
}
.header_common .top .sub_nav_lists .nav_sub_item .nav_sub_home:hover a,
.header_common .top .sub_nav_lists .nav_sub_item .nav_sub_fixed_home:hover a {
  color: rgba(255, 255, 255, 0.8);
}
.header_common .top .sub_nav_lists .nav_sub_item .nav_sub_home:hover:before,
.header_common .top .sub_nav_lists .nav_sub_item .nav_sub_fixed_home:hover:before {
  content: '';
  background: url(../images/left_arrow_icon.png) no-repeat;
  background-size: 100% 100%;
}
.header_common .top .sub_nav_lists .nav_sub_item .nav_sub_fixed_home:before {
  content: '';
  position: absolute;
  left: 30px;
  top: 6px;
  width: 22px;
  height: 22px ;
  background: url(../images/fixed_left_arrow.png) no-repeat;
  background-size: 100% 100%;
  transition: all 0.3s;
}
.header_common .top .sub_nav_lists .nav_sub_item .nav_sub_fixed_home:hover:before {
  content: '';
  background: url(../images/fixed_left_arrow.png) no-repeat;
  background-size: 100% 100%;
}
.header_common .top .sub_nav_lists .nav_sub_item .sub_nav_list {
  display: none;
  position: absolute;
  top: 42px;
  left: -30px;
  min-width: 252px;
  background-color: rgba(32, 32, 32, 0.9);
  border-radius: 8px;
  transition: all 0.3s;
}
.header_common .top .sub_nav_lists .nav_sub_item .sub_nav_list:before {
  content: '';
  position: absolute;
  top: -14px;
  left: 113px;
  width: 0;
  height: 0;
  border-bottom: 7px solid rgba(32, 32, 32, 0.9);
  border-right: 8px solid transparent;
  border-top: 7px solid transparent;
  border-left: 8px solid transparent;
}
.header_common .top .sub_nav_lists .nav_sub_item .sub_nav_list:after {
  content: '';
  position: absolute;
  top: -30px;
  left: 0;
  width: 100%;
  height: 30px;
  opacity: 0;
}
.header_common .top .sub_nav_lists .nav_sub_item .sub_nav_list ul {
  padding: 10px 30px 15px 30px;
}
.header_common .top .sub_nav_lists .nav_sub_item .sub_nav_list li {
  line-height: 1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.header_common .top .sub_nav_lists .nav_sub_item .sub_nav_list li a {
  font-size: 16px;
  display: inline-block;
  height: 100%;
  width: 100%;
  line-height: 50px;
}
.header_common .top .sub_nav_lists .nav_sub_item .nav_sub_item {
  position: relative;
  height: 34px;
  line-height: 34px;
}
.header_common .top .sub_nav_lists .nav_sub_item .nav_sub_item:last-child {
  margin: 0 100px 0 76px;
}
.header_common .top .sub_nav_lists .nav_sub_item .nav_sub_item.nav_sub_drop {
  transition: all 0.3s;
}
.header_common .top .sub_nav_lists .nav_sub_item .nav_sub_item.nav_sub_drop::after {
  content: '';
  position: absolute;
  right: -20px;
  top: 14px;
  width: 0;
  height: 0;
  border-top: 6px solid rgba(255, 255, 255, 0.6);
  border-right: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 4px solid transparent;
  transform-origin: 50% 25%;
  transition: all 0.3s;
}
.header_common .top .sub_nav_lists .nav_sub_item .nav_sub_item.nav_sub_drop:hover &gt; a:first-child {
  color: #FF2A35;
}
.header_common .top .sub_nav_lists .nav_sub_item .nav_sub_item.nav_sub_drop:hover::after {
  content: '';
  transform: rotate(180deg);
  border-top-color: #FF2A35;
}
.header_common .top .sub_nav_lists .nav_sub_item .nav_sub_item.nav_sub_drop:hover .sub_nav_list {
  display: block;
}
.header_common .top .sub_nav_lists .nav_sub_item li {
  transition: all 0.3s;
}
.header_common .top .sub_nav_lists .nav_sub_item li a {
  display: inline-block;
  font-size: 18px;
  color: #ffffff;
  transition: all 0.3s;
}
.header_common .top .sub_nav_lists .nav_sub_item li a:hover {
  color: #FF2A35;
}
.header_common .top .sub_nav_lists .tel {
  color: #fff;
  font-size: 24px;
  float: right;
}
.header_common .top .sub_nav_lists .tel img {
  position: relative;
  top: -1px;
  width: 20px;
  height: 20px;
  background-size: 100% 100%;
}
.header_common .top .sub_nav_lists .tel span {
  font-weight: 700;
  display: inline-block;
  line-height: 1;
}
.header_common .top .sub_nav_lists .tel:after {
  content: '周一至周六 09:00 - 18:00';
  display: block;
  font-size: 12px;
  color: #fff;
  margin-left: 40px;
}
.header_common .top-fixed {
  width: 100%;
  height: 72px;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9;
  background: #fff;
  box-shadow: 0px 6px 10px 0px rgba(0, 0, 0, 0.1);
  display: none;
}
.header_common .top-fixed .inner {
  height: 72px;
}
.header_common .top-fixed .sub_nav_lists a {
  color: #333 !important;
}
.header_common .top-fixed .sub_nav_lists .nav_sub_drop {
  transition: all 0.3s;
}
.header_common .top-fixed .sub_nav_lists .nav_sub_drop::after {
  content: '';
  position: absolute;
  right: -20px;
  top: 14px;
  width: 0;
  height: 0;
  border-top: 6px solid rgba(51, 51, 51, 0.6) !important;
  border-right: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 4px solid transparent;
  transform-origin: 50% 25%;
  transition: all 0.3s;
}
.header_common .top-fixed .sub_nav_lists .nav_sub_drop .sub_nav_list a {
  color: #fff !important;
}
.header_common .top-fixed .sub_nav_lists .nav_sub_drop .sub_nav_list li:hover a {
  color: #FF2A35 !important;
}
.header_common .top-fixed .sub_nav_lists .nav_sub_drop:hover &gt; a:first-child {
  color: #FF2A35 !important;
}
.header_common .top-fixed .sub_nav_lists .nav_sub_drop:hover::after {
  content: '';
  transform: rotate(180deg) !important;
  border-top-color: #FF2A35 !important;
}
.header_common .top-fixed .sub_nav_lists .nav_sub_drop:hover .sub_nav_list {
  display: block;
}
.header_common .top-fixed .tel {
  color: #333 !important;
  font-size: 24px;
}
.header_common .top-fixed .tel img {
  position: relative;
  top: -1px;
  width: 20px;
  height: 20px;
  background-size: 100% 100%;
}
.header_common .top-fixed .tel span {
  font-weight: 700;
  display: inline-block;
  line-height: 1;
}
.header_common .top-fixed .tel:after {
  content: '周一至周六 09:00 - 18:00';
  display: block;
  font-size: 12px;
  color: #333 !important;
  margin-left: 40px;
}
.header_common .text {
  text-align: center;
  color: #fff;
  padding-top: 190px;
}
.header_common .text .title {
  font-size: 50px;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.header_common .text .desc {
  font-size: 26px;
  letter-spacing: 1px;
}
.header_common .mouse {
  text-align: center;
  color: #fff;
  padding-top: 286px;
}
/* 公用的营销 */
.comm_fixed_service {
  position: fixed;
  right: 0;
  top: 38%;
  box-sizing: border-box;
  width: 80px;
  height: 360px;
  background: #fff;
  border-radius: 8px 0 0 8px;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.07);
}
.comm_fixed_service .top_box {
  display: none;
  width: 65px;
  height: 65px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.07);
  margin: 0 auto;
  line-height: 65px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
}
.comm_fixed_service .top_box .icon {
  margin-top: 15px;
  width: 36px;
  height: 36px;
}
.comm_fixed_service .comm_right_fixed {
  padding: 10px 0 12px 0;
}
.comm_fixed_service .comm_right_fixed li {
  width: 100%;
  height: 80px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s;
  margin-bottom: 8px;
}
.comm_fixed_service .comm_right_fixed li.comm_wx_service:hover .active {
  display: block;
}
.comm_fixed_service .comm_right_fixed li.comm_phone:hover .active {
  display: block;
}
.comm_fixed_service .comm_right_fixed li.comm_wx_official:hover .active {
  display: block;
}
.comm_fixed_service .comm_right_fixed li:hover {
  background: linear-gradient(to bottom right, #FC3C3C, #FF6D1E);
}
.comm_fixed_service .comm_right_fixed li:hover.comm_qq:before {
  content: '';
  background: url(../images/qq_icon_active.png) no-repeat;
  background-size: 100% 100%;
}
.comm_fixed_service .comm_right_fixed li:hover.comm_wx_service:before {
  content: '';
  background: url(../images/qwx_icon_active.png) no-repeat;
  background-size: 100% 100%;
}
.comm_fixed_service .comm_right_fixed li:hover.comm_wx_official:before {
  content: '';
  background: url(../images/wx_icon_active.png) no-repeat;
  background-size: 100% 100%;
}
.comm_fixed_service .comm_right_fixed li:hover.comm_phone:before {
  content: '';
  background: url(../images/phone_icon_active.png) no-repeat;
  background-size: 100% 100%;
}
.comm_fixed_service .comm_right_fixed li:hover.comm_qq:after {
  content: 'QQ';
  color: #fff;
}
.comm_fixed_service .comm_right_fixed li:hover.comm_wx_service:after {
  content: '客服';
  color: #fff;
}
.comm_fixed_service .comm_right_fixed li:hover.comm_wx_official:after {
  content: '公众号';
  color: #fff;
}
.comm_fixed_service .comm_right_fixed li:hover.comm_phone:after {
  content: '电话';
  color: #fff;
}
.comm_fixed_service .comm_right_fixed li.comm_wx_service .active,
.comm_fixed_service .comm_right_fixed li.comm_wx_official .active {
  display: none;
  position: absolute;
  right: 91px;
  top: -46px;
  width: 148px;
  height: 192px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.07);
}
.comm_fixed_service .comm_right_fixed li.comm_wx_service .active img,
.comm_fixed_service .comm_right_fixed li.comm_wx_official .active img {
  width: 120px;
  height: 120px;
  margin: 13px 14px 6px 14px;
}
.comm_fixed_service .comm_right_fixed li.comm_wx_service .active p.qrcode_text,
.comm_fixed_service .comm_right_fixed li.comm_wx_official .active p.qrcode_text {
  margin-left: 25px;
  font-size: 14px;
  color: #333;
  width: 100px;
  line-height: 20px;
}
.comm_fixed_service .comm_right_fixed li.comm_wx_service .active:after,
.comm_fixed_service .comm_right_fixed li.comm_wx_official .active:after {
  content: '';
  position: absolute;
  right: -10px;
  top: 82px;
  width: 0;
  height: 0;
  border-left: 5px solid #ffffff;
  border-right: 5px solid transparent;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}
.comm_fixed_service .comm_right_fixed li.comm_qq {
  position: relative;
}
.comm_fixed_service .comm_right_fixed li.comm_qq a {
  position: absolute;
  top: 0px;
  left: 0;
  display: inline-block;
  width: 80px;
  height: 80px;
  z-index: 1;
}
.comm_fixed_service .comm_right_fixed li.comm_qq:before {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  background: url(../images/qq_icon.png) no-repeat;
  background-size: 100% 100%;
  margin: 0 auto;
  transition: all 0.1s;
}
.comm_fixed_service .comm_right_fixed li.comm_qq:after {
  content: 'QQ';
  display: block;
  margin-top: 6px;
  font-size: 16px;
  color: #333;
  text-align: center;
  line-height: 1;
  transition: all 0.1s;
}
.comm_fixed_service .comm_right_fixed li.comm_wx_service:before {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  background: url(../images/qwx_icon.png) no-repeat;
  background-size: 100% 100%;
  margin: 0 auto;
  transition: all 0.1s;
}
.comm_fixed_service .comm_right_fixed li.comm_wx_service:after {
  content: '客服';
  display: block;
  margin-top: 6px;
  font-size: 16px;
  color: #333;
  text-align: center;
  line-height: 1;
  transition: all 0.1s;
}
.comm_fixed_service .comm_right_fixed li.comm_wx_official:before {
  content: '';
  display: block;
  width: 30px;
  height: 30px;
  background: url(../images/wx_icon.png) no-repeat;
  background-size: 100% 100%;
  margin: 0 auto;
  transition: all 0.1s;
}
.comm_fixed_service .comm_right_fixed li.comm_wx_official:after {
  content: '公众号';
  display: block;
  margin-top: 6px;
  font-size: 16px;
  color: #333;
  text-align: center;
  line-height: 1;
  transition: all 0.1s;
}
.comm_fixed_service .comm_right_fixed li.comm_phone:before {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  background: url(../images/phone_icon.png) no-repeat;
  background-size: 100% 100%;
  margin: 0 auto;
  transition: all 0.1s;
}
.comm_fixed_service .comm_right_fixed li.comm_phone:after {
  content: '电话';
  display: block;
  margin-top: 6px;
  font-size: 16px;
  color: #333;
  text-align: center;
  line-height: 1;
  transition: all 0.1s;
}
.comm_fixed_service .comm_right_fixed li.comm_phone .active {
  display: none;
  position: absolute;
  right: 91px;
  top: 10px;
  padding: 16px 0 0 46px;
  min-width: 227px;
  height: 64px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.07);
  z-index: 1;
  transition: all 0.2s;
}
.comm_fixed_service .comm_right_fixed li.comm_phone .active:after {
  content: '';
  position: absolute;
  right: -10px;
  top: 27px;
  width: 0;
  height: 0;
  border-left: 5px solid #ffffff;
  border-right: 5px solid transparent;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.07);
}
.comm_fixed_service .comm_right_fixed li.comm_phone .active p {
  line-height: 1;
}
.comm_fixed_service .comm_right_fixed li.comm_phone .active .phone_text {
  position: relative;
  font-size: 24px;
  color: #333;
  font-weight: 700;
}
.comm_fixed_service .comm_right_fixed li.comm_phone .active .phone_text:before {
  content: '';
  position: absolute;
  left: -28px;
  top: 2px;
  width: 20px;
  height: 20px;
  background: url(../images/phone_icon.png) no-repeat;
  background-size: 100% 100%;
}
.comm_fixed_service .comm_right_fixed li.comm_phone .active .phone_time {
  margin-left: 18px;
  margin-top: 5px;
  font-size: 12px;
  color: #333;
}
</pre></body></html>