/*common*/
@font-face {
    font-family: "Exo-Medium";
    src: url("../font/Exo-VariableFont_wght.ttf") format("truetype");
}

:root{
    --color:#1E73BD;
    --color-hover:#034e8f;
    --zoom:1;
    --contrast-zoom:1;
}
body {
    margin: 0;
    font-family: Exo-Medium;
    zoom: 1 !important;
}
#app{
    zoom:var(--zoom);
}
*{
    box-sizing: border-box;
}
/*去除标签的原始样式*/
ul {
    padding:0;
    margin:0;
    list-style:none;
}
a {
    text-decoration: none;
}
a:hover {
    text-decoration: none;
}
input {
    background: none;
    outline: none;
    border: none;
    font-family: Exo-Medium;
}
select {
    /*将默认的select选择框样式清除*/
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    border: none;
    font-family: Exo-Medium;
    padding-right: 15px;
    background: url('../img/arrow-down-black.png') 95% center no-repeat;
    background-size: 15px 15px;
}
textarea{
    border:none;
    outline: none;/*边线不显示*/
    font-family: Exo-Medium;
}
button {
    margin: 0;
    padding: 0;
    outline: none;
    border: none;
    background-color: #fff;
    cursor: pointer;
    font-family: Exo-Medium;
}
p {
    padding: 0;
    margin: 0;
}
input[type='checkbox'] {
    position: relative;
    width: 12px;
    height: 12px;
}
input[type=checkbox]::before{
    content:'';
    position: absolute;
    top: 0;
    left: 0;
    width: 12px;
    height: 12px;
    line-height:15px;
    text-align: center;
    color:white;
    font-size:12px;
    background-color:#fff;
    border-radius: 2px;
    border: 1px solid #1E73BD;
}
input[type=checkbox]:checked::before {
    color:#fff;
    background-color:#1E73BD;
    content: '√';
}

/*富文本编辑器的样式统一修改   为不影响全局，所有的rich-text中的样式都+.rich-text  start*/
.rich-text {
    font-family: Exo-Medium;
    max-width: 1200px;
}
.margin-auto-rich-text {
    margin: auto;
}
.rich-text p {
    margin-bottom: 20px;
}
.rich-text a {
    color: #1E73BD;
    text-decoration: underline;
}
.rich-text table {
    max-width: 100%;
    border-collapse:collapse;
    font-size: 16px;
}
.rich-text img ,iframe{
    max-width: 100%;
}
/*.rich-text tr {*/
/*    border: 1px solid #98C4EB!important;*/
/*}*/
.rich-text thead th {
    border: 1px solid #98C4EB!important;
    padding: 14px 20px;
    text-align: left;
    background-color: rgba(152,196,235, 0.4);
}
.rich-text tbody td {
    border: 1px solid #98C4EB!important;
    padding: 12px;
}
.rich-text tbody tr:nth-of-type(even) {
    background: rgba(30,115,189, 0.04);
}
.rich-text h2 {
    color: #1D1F21;
    font-weight: bold;
    font-size: 28px;
}
.rich-text ul,.rich-text ol{
    margin: revert;
    padding: revert;
    padding-left: 1.2rem;
    list-style:revert;
    font-size: inherit;
}
.rich-text li{
    list-style-type: inherit;
    color: #333;
}
.oc-rich-table-overflow{
    display: inline-block;
    vertical-align: top;
    overflow-y: auto;
    max-width: 100%;
    width: 100%;
}
/*  */
.centered-wrapper{
    width: 1200px;
    margin: auto;
    max-width: 100%;
}
/*pc*/
@media only screen and (min-width: 1025px){
    .rich-text p {}
    .rich-text a {}
    .rich-text th {}
    .rich-text td {}
    .rich-text tr {}
    .rich-text h2 {
        font-size: 28px;
        margin: 30px 0;
    }
}
/*mobile*/
@media only screen and (max-width: 1024px){
    .rich-text h1 ,h1{
        font-size: 0.48rem;
    }

    .rich-text h2,h2 {
        font-size: 0.36rem;
    }

    .rich-text h3,h3 {
        font-size: 0.28rem;
    }

    .rich-text h4,h4 {
        font-size: 0.18rem;
    }
    .rich-text table {
        font-size: 0.2rem;
        border-collapse:collapse;
    }
    .rich-text {
        width: 95%;
        margin: auto;
        font-size: 0.2rem;
    }
    .rich-text p {
        font-size: 0.2rem;
        line-height: 1.5;
    }
    .rich-text a {
        color: #1E73BD;
        font-size: 0.2rem;
        line-height: 1.5;
        text-decoration: underline;
    }
    .rich-text th {}
    .rich-text tbody td {
        padding: 7px 10px;
    }
    .centered-wrapper{
        width: 100%;
    }
}

/*富文本编辑器的样式统一修改   为不影响全局，所有的rich-text中的样式都+.rich-text  end*/

/* 1行显示省略号 */
.text-ellipsis-1 {
    white-space: nowrap; /* 不换行 */
    overflow: hidden; /* 控制内容不超出容器边界 */
    text-overflow: ellipsis; /* 显示省略号 */
}

/* 2行显示省略号 */
.text-ellipsis-2 {
    display: -webkit-box; /* 必须指定display属性 */
    overflow: hidden; /* 必须指定overflow属性 */
    text-overflow: ellipsis; /* 显示省略号 */
    -webkit-line-clamp: 2; /* 最多显示的行数 */
    -webkit-box-orient: vertical; /* 必须指定box-orient属性 */
}

/* 3行显示省略号 */
.text-ellipsis-3 {
    display: -webkit-box; /* 必须指定display属性 */
    overflow: hidden; /* 必须指定overflow属性 */
    text-overflow: ellipsis; /* 显示省略号 */
    -webkit-line-clamp: 3; /* 最多显示的行数 */
    -webkit-box-orient: vertical; /* 必须指定box-orient属性 */
}
/* 4行显示省略号 */
.text-ellipsis-4 {
    display: -webkit-box; /* 必须指定display属性 */
    overflow: hidden; /* 必须指定overflow属性 */
    text-overflow: ellipsis; /* 显示省略号 */
    -webkit-line-clamp: 4; /* 最多显示的行数 */
    -webkit-box-orient: vertical; /* 必须指定box-orient属性 */
}
.text-ellipsis-5 {
    display: -webkit-box; /* 必须指定display属性 */
    overflow: hidden; /* 必须指定overflow属性 */
    text-overflow: ellipsis; /* 显示省略号 */
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}
[v-cloak] {
    display: none;
}
.icon-svg{
    width: 1em;
    height: 1em;
}
.hover-scaling-dynamic{
    overflow: hidden;
    position: relative;
}
.hover-scaling-dynamic img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    vertical-align: top;
    transition: transform 0.4s ease-out;
}
.hover-scaling-dynamic:hover img{
    transform: scale(1.2);
}
.horizontal-flip{
    transform: rotateY(180deg);
}
/* loading图标动画 */
.icon-loading{
    width: 1em;
    height: 1em;
    animation: rotating 2s linear infinite;
    margin-right: 0.05rem;
}
/*  */
.drop-right-btn{
    width: 1.2em;
    height: 1.2em;
    border-radius: 50%;
    background-color: #EAEAEA;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.2em;
    padding-left: 0.3em;
    margin-left: 0.5em;
}
.drop-right-btn svg{
    transform: rotate(-90deg);
}
/* See All按钮 */
.cutting-advantage-all{
    margin: 60px auto;
    border-radius: 8px;
    width: 145px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color);
    cursor: pointer;
}
a.cutting-advantage-all:hover{
    background-color: var(--color);
    color: #fff;
}
a.cutting-advantage-all:hover .drop-right-btn{
    background-color: #fff;
}
a.cutting-advantage-all:hover .icon-svg{
    color: var(--color);
}
.cutting-advantage-all .icon-svg{
    color: #fff;
}
@keyframes rotating {
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(1turn);
    }
}
@media only screen and (min-width: 1025px){
    .mobile-show{
        display: none !important;
    }
}
@media only screen and (max-width: 1024px) {
    :root{
        font-size: 13.3333vw;
    }
    body{
        font-size: 0.16rem;
    }
    .pc-show{
        display: none !important;
    }
    .rich-text ul, .rich-text ol{
        padding-left: 0.4rem;
    }
}

.btn-main{
    background-color: var(--color);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4px 13px;
    border-radius: 8px;
}
.btn-main:hover{
    background-color: var(--color-hover);
    color: #fff;
}
[v-cloak] {
display: none;
}
/* 下拉框组件 */
.custom-select {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.custom-select span {
  cursor: pointer;
}

.custom-select .options {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  font-size: 14px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-top: none;
  z-index: 1;
}

.custom-select .options li {
  padding: 6px 10px;
  line-height: 1.5;
  cursor: pointer;
}


.custom-select .options li:hover ,
.custom-select .options li.active-li{
    color: #fff;
    background-color: var(--color);
}

.custom-select.active .options {
  display: block;
}
/* loading */
.loading-wrapper{
    display: block;
    position: absolute;
    inset: 0;
    background-color: #ffffff7d;
    display: flex;
    font-size: 40px;
    align-items: center;
    justify-content: center;
}