.centerBox {
  width: 1200px;
  box-sizing: border-box;
  margin: auto;
}
/* 搜索下拉列表 */
.search-autocomplete {
  width: 310px !important;
}
.search-autocomplete .name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.search-autocomplete .award-name {
  font-size: 12px;
  color: #b4b4b4;
  line-height: 12px;
  padding-bottom: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#app {
  width: 100%;
  box-sizing: border-box;
}
#app .right_gg {
  position: fixed;
  right: -20px;
  top: 50%;
  transform: translateY(-50%) scale(0.8);
  box-sizing: border-box;
  width: 282px;
  height: 471px;
  padding-top: 202px;
  background: url(../images/nav/right-nav.png) no-repeat center;
  z-index: 999;
  color: #fff;
}
#app .right_gg .code {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#app .right_gg .code img {
  width: 70px;
  height: 70px;
}
#app .right_gg .code span {
  margin-top: 5px;
}
#app .right_gg .right_gg-item {
  position: relative;
  display: block;
  width: 128px;
  height: 33px;
  margin: 0 auto 7px;
  font-size: 16px;
  text-align: center;
  line-height: 33px;
  cursor: pointer;
  color: #fff;
}
#app .right_gg .right_gg-item.hover:hover {
  opacity: 0.8;
  cursor: pointer;
}
#app .right_gg .qr {
  margin-top: 14px;
  font-size: 0;
  text-align: center;
  margin-bottom: 15px;
}
#app .right_gg .qr img {
  width: 100px;
  margin-bottom: 6px;
}
#app .right_gg .qr p {
  display: inline-block;
  font-size: 16px;
  color: #f9e3be;
  line-height: 1.5em;
}
#app .right_gg .top {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 22px;
}
#app .right_gg .top a {
  display: block;
  width: 45px;
  height: 45px;
  margin-right: 10px;
  background: url(../images/nav/top.png) no-repeat center;
  cursor: pointer;
}
#app .right_gg .top p {
  font-size: 18px;
  line-height: 28px;
  color: #fff;
}
#app .right_gg .top p i {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 5px;
  background: url(../images/nav/phone.png) no-repeat center;
  vertical-align: middle;
}
#app .right_gg .close {
  position: absolute;
  left: 50%;
  bottom: -45px;
  transform: translateX(-50%);
  font-size: 40px;
  cursor: pointer;
}
#app .header {
  width: 100%;
  height: 82px;
  box-sizing: border-box;
  background: #020e4a;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 999;
}
#app .header .centerBox {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
#app .header ul {
  display: flex;
  align-items: center;
  height: 100%;
}
#app .header ul li {
  font-size: 22px;
  color: #ffffff;
  font-weight: 500;
  cursor: pointer;
  margin: 0 25px;
}
#app .header ul li .btn {
  width: 149px;
  height: 53px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  border-radius: 5px;
  position: relative;
  font-size: 22px;
  font-weight: 500;
}
#app .header ul li .btn:first-child {
  color: #061357;
  background: linear-gradient(0deg, #cb974b 0%, #fae69f 100%);
}
#app .header ul li .btn:last-child {
  color: #ffffff;
  background: linear-gradient(0deg, #015eea 0%, #00c0fa 100%);
}
#app .header ul .bar {
  display: flex;
  align-items: center;
  height: 100%;
  position: relative;
}
#app .header ul .bar::after {
  position: absolute;
  left: 50%;
  bottom: 0px;
  transform: translateX(-50%);
  width: 0px;
  height: 3px;
  background: #fff;
  transition: width 0.2s ease;
  content: '';
}
#app .header ul .bar::before {
  position: absolute;
  left: 50%;
  bottom: 15px;
  transform: translateX(-50%) scale(0);
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 7px solid #fff;
  opacity: 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
  content: '';
  z-index: 1;
}
#app .header ul .bar:hover::after {
  width: 100%;
}
#app .header ul .bar:hover::before {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}
#app .header ul .bar-tongqi {
  position: relative;
  transition: all 0.3s ease;
}
#app .header ul .bar-tongqi span {
  display: flex;
  align-items: center;
  height: 100%;
}
#app .header ul .bar-tongqi span img {
  padding-left: 5px;
  box-sizing: border-box;
}
#app .header ul .bar-tongqi:hover .tongqi-menus {
  display: flex;
}
#app .header ul .bar-tongqi .tongqi-menus {
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 247px;
  top: 100%;
  flex-direction: column;
}
#app .header ul .bar-tongqi .tongqi-menus .tongqi-menu-item {
  width: 247px;
  margin-top: 1px;
  padding-top: 19px;
  box-sizing: border-box;
  height: 69px;
  background: rgba(0, 20, 86, 0.85);
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  line-height: 18px;
  transition: all 0.3s;
}
#app .header ul .bar-tongqi .tongqi-menus .tongqi-menu-item:hover {
  color: #fae69f;
}
#app .header ul .bar-btns {
  display: flex;
  align-items: center;
}
#app .header ul .bar-btns .btn {
  transition: all 0.3s;
}
#app .header ul .bar-btns .btn:hover {
  transform: scale(1.05);
}
#app .header ul #search-item {
  display: flex;
}
#app .header ul #search-item .search-btn {
  width: 55px;
  height: 46px;
  font-size: 10px;
  color: #fff;
  text-align: center;
  line-height: 46px;
  border-radius: 0 8px 8px 0;
  background: linear-gradient(to bottom, #ff7200, #ff0000);
  cursor: pointer;
  user-select: none;
  text-transform: uppercase;
}
#app .header ul #search-item > div {
  font-size: 0;
}
#app .header ul #search-item .search-input {
  width: 155px;
}
#app .header ul #search-item .search-input .el-input__inner {
  height: 46px;
  padding-right: 10px;
  padding-left: 38px;
  border-radius: 8px 0 0 8px;
  background: url(../images/search.png) no-repeat 10px center, #fff;
}
#app .banner {
  height: 1033px;
  background: url('../images/banner.jpg') no-repeat center top;
}
#app .banner .centerBox {
  position: relative;
  padding: 551px 0 0 375px;
  color: #fff4be;
}
#app .banner .centerBox b {
  padding-left: 30px;
  display: block;
  height: 64px;
  line-height: 64px;
  font-size: 24px;
  font-weight: 400;
  text-align: left;
  color: #ffffff;
}
#app .banner .centerBox p {
  display: inline-block;
  padding: 5px 12px 7px;
  padding-left: 30px;
  margin-top: 15px;
  font-size: 24px;
  font-weight: 400;
  text-align: left;
  color: #ffffff;
}
#app .banner .centerBox .tongqi {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  width: 700px;
  height: 207px;
  margin-top: 20px;
  padding-left: 30px;
}
#app .banner .centerBox .tongqi li {
  margin-top: 5px;
  font-size: 18px;
  font-weight: 500;
  text-align: left;
  color: #ffffff;
}
#app .banner .centerBox .tongqi li span {
  font-size: 18px;
  margin: 0 5px;
}
#app .banner .centerBox .tongqi li:first-child {
  font-size: 20px;
  margin-top: 0;
}
#app .banner .centerBox .btn {
  position: absolute;
  left: 820px;
  top: 551px;
  width: 256px;
  height: 64px;
  background: url(../images/banner-btn.png) no-repeat center;
  cursor: pointer;
  transform: scale(1);
  transition: transform 0.15s;
}
#app .banner .centerBox .btn:hover {
  transform: scale(1.05);
}
#app .titleCC {
  font-size: 0;
  text-align: center;
}
#app .button-prev,
#app .button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 2;
}
#app .button-prev {
  left: -50px;
}
#app .button-next {
  right: -50px;
  transform: translateY(-50%) rotate(180deg);
}
#app .rule {
  position: relative;
  box-sizing: border-box;
  background: url(../images/rules_02.jpg) no-repeat center top;
  height: 644px;
}
#app .rule .content {
  box-sizing: border-box;
  width: 1204px;
  margin: 0 auto;
  margin-top: 23px;
  height: 475px;
  background: url("../images/rules-bg.png") no-repeat center top;
  position: relative;
  z-index: 2;
}
#app .rule .text {
  padding: 72px 80px 0 80px;
}
#app .rule .text p {
  margin-bottom: 14px;
  border-bottom: 1px dashed #ffffff;
  font-size: 20px;
  font-weight: 500;
  text-align: left;
  color: #ffffff;
  letter-spacing: 0.4px;
  line-height: 1.5;
}
#app .rule .text2 {
  padding: 35px 80px 0 80px;
}
#app .rule .text2 p {
  font-size: 15px;
  font-weight: 300;
  text-align: left;
  color: #efcf8b;
  line-height: 25px;
}
#app .toupiao-wrap {
  background: url('../images/prize-long-bg.jpg') no-repeat center top / cover;
  min-height: 1686px;
}
#app .toupiaoBox .tabBox .tab-title {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 81px;
  margin: 50px 0 30px;
  background: url(../images/tab-title.png) no-repeat center center;
}
#app .toupiaoBox .tabBox .tab-title span {
  font-size: 23px;
  font-weight: 700;
  text-align: center;
  color: #ffffff;
  letter-spacing: 0.6px;
}
#app .toupiaoBox .tabBox ul {
  margin-top: 66px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
#app .toupiaoBox .tabBox ul li {
  position: relative;
  display: flex;
  justify-content: center;
  width: 286px;
  height: 257px;
  padding-top: 25px;
  margin-right: 20px !important;
  margin-bottom: 47px;
  background: url(../images/prize-item.png) no-repeat center;
  cursor: pointer;
  box-sizing: border-box;
  transition: all 0.3s;
}
#app .toupiaoBox .tabBox ul li:hover {
  transform: translateY(-15px);
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
#app .toupiaoBox .tabBox ul li div {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  color: #ffffff;
  line-height: 28px;
  letter-spacing: 0.37px;
  padding-top: 100px;
  box-sizing: border-box;
}
#app .toupiaoBox .tabBox ul li div span {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  color: #ffffff;
  line-height: 28px;
  letter-spacing: 0.37px;
}
#app .toupiaoBox .tabBox ul li.active div {
  color: #f20000;
}
#app .toupiaoBox .tabBox ul li.active span {
  color: #f20000;
}
#app .toupiaoBox .tabBox ul li:nth-child(5n),
#app .toupiaoBox .tabBox ul li:last-child {
  margin-right: 0;
}
#app .toupiaoBox .industryBox {
  margin-top: 40px;
}
#app .toupiaoBox .industryBox ul {
  display: flex;
  flex-wrap: wrap;
}
#app .toupiaoBox .industryBox ul li {
  position: relative;
  width: 280px;
  margin-right: 20px;
  margin-bottom: 35px;
}
#app .toupiaoBox .industryBox ul li:nth-child(4n) {
  margin-right: 0;
}
#app .toupiaoBox .industryBox ul li .imgBox {
  display: block;
  width: 280px;
  height: 210px;
  border-radius: 15px;
  background: #fff;
}
#app .toupiaoBox .industryBox ul li .imgBox img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#app .toupiaoBox .industryBox ul li .companyName {
  min-height: 60px;
  font-size: 20px;
  color: #fff;
  text-align: center;
  margin: 6px 0 15px;
}
#app .toupiaoBox .industryBox ul li .numberBtn {
  width: 170px;
  height: 40px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
#app .toupiaoBox .industryBox ul li .numberBtn div {
  height: 100%;
  font-size: 22px;
  text-align: center;
  line-height: 40px;
}
#app .toupiaoBox .industryBox ul li .numberBtn .num {
  flex-grow: 1;
  box-sizing: border-box;
  border: 1px solid #ffd383;
  background: #ee3636;
  color: #fff;
  line-height: 38px;
}
#app .toupiaoBox .industryBox ul li .numberBtn .btn {
  width: 72px;
  color: #000;
  background: #ffd383;
  cursor: pointer;
}
#app .toupiaoBox .industryBox ul li.search-item::after {
  content: '';
  width: 100%;
  height: 100%;
  background-color: rgba(255, 203, 112, 0.4);
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(1.07);
  animation: btn31-eff 1s linear infinite;
}
#app .toupiaoBox .moreBox {
  display: flex;
  justify-content: center;
}
#app .toupiaoBox .moreBox .btn {
  display: block;
  width: 183px;
  height: 44px;
  background: url(../images/item_bg6.png) no-repeat center;
  font-size: 20px;
  color: #fff;
  text-align: center;
  line-height: 44px;
  cursor: pointer;
}
#app.conpany-list .toupiaoBox {
  background: url("../images/icon_bg2.png") no-repeat center bottom;
  padding-bottom: 120px;
}
#app .companyInfo {
  padding-bottom: 120px;
  background: url("../images/intro_bg.png") no-repeat center top;
}
#app .companyInfo .companyInfoBox {
  box-sizing: border-box;
  padding: 65px;
  border-radius: 10px;
  background: rgba(98, 1, 18, 0.56);
  box-shadow: 0 0 18px rgba(240, 187, 111, 0.34) inset;
}
#app .companyInfo .companyInfoBox .nameBox {
  text-align: center;
}
#app .companyInfo .companyInfoBox .nameBox .name {
  font-size: 34px;
  color: #fff;
  font-weight: bold;
}
#app .companyInfo .companyInfoBox .nameBox .name1 {
  font-size: 20px;
  margin-top: 25px;
  color: #fff;
}
#app .companyInfo .companyInfoBox .imgBox {
  display: block;
  width: 213px;
  height: 173px;
  border-radius: 5px;
  background: #fff;
  margin: 15px auto 18px;
}
#app .companyInfo .companyInfoBox .imgBox img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#app .companyInfo .companyInfoBox .voteNum {
  font-size: 20px;
  color: #fbd481;
  text-align: center;
}
#app .companyInfo .companyInfoBox .awards {
  font-size: 20px;
  color: #fff;
  text-align: center;
  margin-top: 6px;
  margin-bottom: 50px;
}
#app .companyInfo .companyInfoBox .description {
  font-size: 0;
  text-align: center;
  margin-top: 50px;
}
#app .companyInfo .companyInfoBox .description .title_ {
  display: inline-block;
  height: 38px;
  border-radius: 5px;
  padding: 0 20px;
  background: linear-gradient(to bottom, #f0be77, #fdecd2);
  font-size: 20px;
  color: #252025;
  line-height: 38px;
  font-weight: bold;
  margin-bottom: 18px;
}
#app .companyInfo .companyInfoBox .description .info {
  box-sizing: border-box;
  padding: 25px;
  border-radius: 5px;
  background: #fff;
  font-size: 20px;
  color: #0b0c16;
  text-align: left;
  line-height: 1.5em;
}
#app .companyInfo .companyInfoBox .toupiao-btn {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}
#app .companyInfo .companyInfoBox .toupiao-btn .btn {
  display: block;
  width: 238px;
  height: 67px;
  font-size: 28px;
  color: #fff;
  text-align: center;
  line-height: 60px;
  font-weight: bold;
  margin: 0 30px;
  cursor: pointer;
  background: url(../images/btn3.png) no-repeat right center;
}
#app .tongqihuodong {
  background: url('../images/tongqi-b-bg.jpg') no-repeat center top;
  height: 830px;
}
#app .tongqihuodong .content {
  width: 1020px;
  margin: 0 auto;
  margin-top: 64px;
  height: 557px;
  background: url('../images/tongqi/c-bg.png') no-repeat center 434px;
}
#app .tongqihuodong .content ul {
  display: flex;
  justify-content: space-between;
  padding-top: 10px;
}
#app .tongqihuodong .content ul li {
  width: 316px;
  height: 445px;
  transition: all 0.3s;
}
#app .tongqihuodong .content ul li:nth-child(1) {
  background: url('../images/tongqi/tongqi-32.png?v=1') no-repeat 0 0;
}
#app .tongqihuodong .content ul li:nth-child(2) {
  background: url('../images/tongqi/tongqi-33.png?v=1') no-repeat 0 20px;
}
#app .tongqihuodong .content ul li:nth-child(3) {
  background: url('../images/tongqi/tongqi-34.png?v=1') no-repeat 0 0;
}
#app .tongqihuodong .content ul li:hover {
  transform: scale(1.03);
}
#app .tongqihuodong .content ul li a {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
#app .tongqihuodong .content ul li a span {
  display: block;
  font-size: 18px;
  color: #f2c078;
  text-align: center;
  line-height: 32px;
  padding-top: 100px;
  transform: translateY(0);
  transition: transform 0.15s;
}
#app .tongqihuodong .content ul li a:hover span {
  transform: translateY(-15px);
}
#app .tongqihuodong .content .tips {
  margin-top: 0px;
  text-align: center;
  font-size: 30px;
  font-weight: 300;
  color: #ffffff;
  line-height: 1;
  letter-spacing: 0.6px;
}
#app .tongqihuodong .content .btn {
  display: block;
  width: 238px;
  height: 67px;
  margin: 15px auto 0;
  background: url('../images/tongqi-btn.png') no-repeat center;
  transition: all 0.3s;
}
#app .tongqihuodong .content .btn:hover {
  transform: scale(1.03);
}
#app .aboutUs {
  width: 100%;
  height: 438px;
  box-sizing: border-box;
  background: url('../images/aboutUs/about-bg.png') no-repeat center;
  padding-top: 40px;
}
#app .aboutUs .content {
  margin-top: 16px;
}
#app .aboutUs .content ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  box-sizing: border-box;
}
#app .aboutUs .content .card {
  box-sizing: border-box;
  width: 405px;
  height: 174px;
  padding: 12px 0 0 25px;
  font-size: 20px;
  color: #000;
}
#app .aboutUs .content .card h3 {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  font-size: 30px;
  font-weight: 400;
  color: #fff;
  padding-top: 50px;
}
#app .aboutUs .content .card h3 img {
  padding-right: 27px;
  box-sizing: border-box;
}
#app .aboutUs .content .card h4 {
  margin-bottom: 3px;
  font-size: 20px;
  font-weight: 400;
  color: #fff;
}
#app .aboutUs .content .card p {
  font-size: 20px;
  font-weight: 400;
  color: #fff;
}
#app .aboutUs .content .card-wx img {
  display: block;
  margin: 0 auto;
  height: 196px;
  width: 196px;
}
#app .aboutUs .content .card-wx img:first-child {
  margin-bottom: 12px;
  transform: translateX(-5px);
}
#app .aboutUs .content .card-wx p {
  margin-top: 5px;
  font-size: 21px;
  font-weight: 400;
  color: #fff;
}
#app #gohome {
  position: fixed;
  right: 53px;
  bottom: 100px;
  width: 80px;
  line-height: 80px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  text-align: center;
  font-size: 18px;
  box-shadow: 0 0 5px #eee;
}
