:root {
  --content-width: 1200px;
  --primary-color: #C40C12;
  --color-gray: #E1E1E1;
  --font-color-gray: #9a9a9a;
  --border-color: var(--color-gray);
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

a {
    all: unset;
    color: inherit;
    text-decoration: none;
}
input {
    outline: none;
    &::placeholder {
        color: #D3D3D3;
    }
}
select{
    width: 100%;
    outline: none;
    background: #fff;
    border: none;
    height: 45px;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 16px;
}
#app {
  min-width: var(--content-width);
}
.cur {
    cursor: pointer;
}

.textEllipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 164px;
}

.textEllipsis-2 {
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-all;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2; /* 这里是超出几行省略 */
}

/* 隐藏滚动条 */
.hide-scrollbar {
    /* Webkit (Chrome, Safari, Opera) */
    -webkit-overflow-scrolling: touch;
    overflow: -moz-scrollbars-none;
    scrollbar-width: none;

    /* IE 10+ */
    -ms-overflow-style: none;
}

.tab-action {
    display: block;
}

.tab-hide {
    display: none !important;
}

.column-tabs {
    display: flex;
    position: relative;
    margin-bottom: 6px;
}

.column-tabs div {
    padding: 0 18px;
    font-weight: 500;
    font-size: 20px;
    transition: all 0.3s;
    cursor: pointer;
}

.column-tabs div:first-child {
    padding-left: 0;
}

.column-tabs div:hover {
    color: #C40C12;
}

.column-tabs .more-tips {
    font-size: 14px;
    color: #C40C12;
    position: absolute;
    right: 0;
    top: 50%;
    display: flex;
    align-items: center;
}

.column-tabs .column-tabs-action {
    color: #C40C12;
}

.division-line {
    border-bottom: 1px #E1E1E1 dashed;
    padding-left: 10px;
}

.nav-bar {
    background: #fff;
    font-size: 14px;
    color: #9A9A9A;
    display: flex;
    padding: 10px 35px;
    margin-bottom: 10px;
}

.nav-bar .nav-bar-text {
    margin-right: 10px;
    cursor: pointer;
    transition: all 0.3s;
}

.nav-bar .nav-bar-text:hover {
    color: #C40C12;
}

.nav-bar .nav-bar-text:last-child {
    color: #000000;
}

.nav-bar .nav-bar-icon {
    margin-right: 10px;
}

.nav-bar .nav-bar-icon .iconfont {
    font-size: 12px;
}

/* 弹球 */
#moving-element {
    position: absolute;
    width: 300px;
    height: 260px;
    overflow: hidden;
    z-index: 999;
}
#moving-element .ball-img {
    width: 100%;
    height: 100%;
}
#moving-element .iconfont {
   color: #fff;
    position: absolute;
    top:10px;
    right: 10px;
    font-size: 16px;
    cursor: pointer;
}
.ad-box {
    width: 300px;
    height: 260px;
    background: #fff;
    cursor: pointer;

}
.ad-box img {
    width: 100%;
    height: 220px;
}
.ad-text {
    height: 40px;
    background: #fff;
    padding: 5px 5px;
}



.head-out .head-box .head-right-box {
    color: #C40C12;
    display: flex;
    align-items: center;
}

.head-out .head-box .head-right-box .head-right-box-item {
    padding: 0 10px;
    position: relative;
    cursor: pointer;
}

.head-out .head-box .head-right-box .head-right-box-item:before {
    content: '';
    width: 2px;
    height: 60%;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #C40C12;
}

.head-out .head-box .head-right-box .head-right-box-item:last-child {
    padding-right: 0;
}

.head-out .head-box .head-right-box .head-right-box-item:last-child:before {
    display: none;
}

.side-quick-action-container {
  position: fixed;
  right: 0;
  top: 20vh;
  width: 100px;
  z-index: 10009;
  filter: drop-shadow(1px 2px 6px #dfe5ee);
}
.side-quick-action-container .action-list {
  max-height: 80vh;
  transition: all 0.3s;
}
.side-quick-action-container a .action-item {
  width: 100%;
}
.side-quick-action-container .action-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 90px;
  cursor: pointer;
  background-color: #fff;
  padding: 16px 10px;
}
.side-quick-action-container .action-list .action-item:last-child {
  border-radius: 0 0 0 8px;
}
.side-quick-action-container .action-list .action-item:first-child {
  border-radius: 8px 0 0 0;
}
.side-quick-action-container .action-list .action-item:not(:last-child)::after {
  content: '';
  width: calc(100% - 8px);
  border-bottom: 1px solid #d3d3d3;
  position: absolute;
  bottom: 0;
  left: 4px;
}
.side-quick-action-container .action-list .action-item:hover:not(:last-child)::after {
  border-color: #C40C12;
}
.side-quick-action-container .action-item div {
  font-size: 14px;
  text-align: center;
  color: inherit;
}
.side-quick-action-container .action-item .iconfont {
  font-size: 38px;
  color: #d3d3d3;
}
.side-quick-action-container .action-item:hover {
  background-color: #C40C12;
  color: #fff;
}
.side-quick-action-container .action-item:hover .iconfont {
  color: #fff;
}
.side-quick-action-container .popover-content {
  display: none;
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  width: 120px;
  height: 120px;
  transition: all 0.5s;
}

.side-quick-action-container .action-item:hover .popover-content {
  display: block;
}
.side-quick-action-container .popover-content img {
  height: 100%;
  width: 100%;
}
.side-quick-action-container .retract-btn {
  border-radius: 8px 0 0 8px;
  min-height: 90px;
  margin-top: 20px;
}
.side-quick-action-container .retract-btn .iconfont {
  transition: all 0.5s;
}
.side-quick-action-container .retract-btn .close,
.side-quick-action-container .retract-btn .open {
  font-size: inherit;
}
.side-quick-action-container .retract-btn .close {
  display: none;
}
.side-quick-action-container.is-closed .action-list {
  max-height: 0;
  overflow: hidden;
}
.side-quick-action-container.is-closed .retract-btn .iconfont {
  transform: rotate(180deg);
}
.side-quick-action-container.is-closed .close {
  display: initial;
}
.side-quick-action-container.is-closed .open {
  display: none;
}

.flex {
  display: flex;
}

.flex-static {
  flex-shrink: 0;
}

.flex-grow {
  flex: 1;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-column {
  display: flex;
  flex-direction: column;
}

.flex-justify-between {
  display: flex;
  justify-content: space-between;
}

.flex-justify-evenly {
  display: flex;
  justify-content: space-evenly;
}

.flex-align-center {
  display: flex;
  align-items: center;
}

.page-content-box {
  width: var(--content-width);
  margin: auto;
}

/* 页面头部样式 */
.page-head {
  background-image: linear-gradient(to bottom, #FFECEC, #F5F5F5);
  padding: 15px 0 35px 0;
}

.page-head .page-content-box {
  margin: 0 auto;
}

/* 顶部登录栏样式 Start */
.page-head .head-action-line {
  font-size: 14px;
  color: #000;
}

.page-head .head-action-line .head-left-box span {
  margin-right: 10px;
}

.page-head .head-action-line .head-right-box {
  color: var(--primary-color);
}

.page-head .head-action-line .head-right-box a {
  padding: 0 10px;
  position: relative;
  cursor: pointer;
}

.page-head .head-action-line .head-right-box a:hover {
  color: color-mix(in srgb, var(--primary-color) 50%, rgb(255, 0, 0) 50%);
}

.page-head .head-action-line .head-right-box a:active {
  color: color-mix(in srgb, var(--primary-color) 95%, rgb(0, 0, 0) 5%);
}

.page-head .head-action-line .head-right-box a:not(:last-child):before {
  content: '';
  width: 2px;
  height: 60%;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary-color);
}

.page-head .head-action-line .head-right-box a:last-child {
  padding-right: 0;
}

/* 顶部登录栏样式 Start */
.page-head .web-service-objective {
  margin-top: 26px;
  text-align: right;
}

.page-head .web-service-objective img {
  height: 25px;
}

.page-head .web-title-icon {
  margin-right: 89px;
  width: 589px;
}

.page-head .page-search-content {
  height: 40px;
  border-radius: 6px;
  padding: 5px 0;
  padding-left: 16px;
  overflow: hidden;
  background-color: #fff;
}

.page-head .page-search-content select {
  padding: 0;
  line-height: 32px;
  height: 32px;
}

.page-head .page-search-content input {
  border: none;
  outline: none;
}

.page-head .page-search-content .search-input {
  position: relative;
  margin-left: 19px;
  padding-left: 24.5px;
  width: 300px;
  line-height: 0;
}

.page-head .page-search-content .search-input::before {
  content: " ";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 40px;
  width: 1px;
  background-color: #f1f1f1;
}

.page-head .page-search-content input::placeholder {
  color: color-mix(in srgb, var(--primary-color) 30%, #fff 80%);
}

.page-head .page-search-content .search-btn {
  white-space: nowrap;
  padding: 0 16px;
  line-height: 40px;
  text-align: center;
  background-color: var(--primary-color);
  color: #fff;
  cursor: pointer;
  font-size: 16px;
}

.page-head .page-search-content .search-btn .iconfont {
  margin-right: 10px;
}

.tabs-box {
  font-size: 20px;
  height: 60px;
  background-color: var(--primary-color);
}

.tabs-box .content-box {
  margin: 0 auto;
  height: 100%;
}

.tabs-box .tabs-text-item {
  width: 140px;
  text-align: center;
  cursor: pointer;
  line-height: 60px;
  color: #fff;
}

.tabs-box .tabs-text-item:hover,
.tabs-box .tabs-text-item.tabs-action {
  background-color: #FF531D;
}
/* 页面头部样式 End */

/* 页面尾部样式 Start */
.footer {
  color: #666;
  font-size: 16px;
  background-color: #dcdcdc;
  padding: 20px 0 16px 0;
}
.footer .site-logo {
  height: 103px;
  margin-right: 108px;
}
.footer .app-qr-code {
  height: 95px;
  width: 95px;
  margin-right: 15px;
}
.footer .web-surf-toast {
  margin: 15px 0;
  text-align: center;
}
.footer .web-info-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 52px;
  margin: 30px auto;
  color: #999;
}
.footer .web-info-list .iconfont {
  margin-right: 18.5px;
}
.footer .copyright-info {
  text-align: center;
}
/* 页面尾部样式 End */