@font-face {
    font-family: 'PFR';
    src: url('OpenSans-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'PFR';
    font-size: 15px;
}

body {
    font-family: 'PFR';
    font-size: 15px;
}

body, ul, ol, p, h1, h2, h3 {
    margin: 0;
}

ul, ol {
    padding-left: 0;
}

li {
    list-style-type: none;
}

a {
    text-decoration: none;
}

/*联系我们*/
.open-button {
    display: flex !important;
    align-items: center;
    z-index: 100;
    cursor: pointer;
    opacity: 1;
    position: fixed;
    bottom: 64px;
    right: 16px;
    width: 48px;
    height: 152px;
    background: #FFF7EC;
    border-radius: 32px;
    border: 1px solid #FF6F0A;
    font-weight: 500;
    font-size: 16px;
    color: #FF5500;
    line-height: 24px;
    writing-mode: vertical-rl;
    text-orientation: upright;
    letter-spacing: 5px;
    font-family: auto;
}

.open-button .icon {
    position: absolute;
    width: 24px;
    height: 24px;
    background: url('../images/call.png') no-repeat center;
    background-size: 100% 100%;
    margin-top: 16px;
}

.open-button .open-button-text {
    margin-top: 48px;
}

.open-button:hover + .chat-popup {
    visibility: visible;
    opacity: 1;
}

/* 联系方式弹出框 */
.chat-popup {
    position: fixed;
    bottom: 20px;
    right: 90px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 12px;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.3s ease, opacity 0.3s ease;
    z-index: 99;
}

/* 鼠标悬浮时显示弹出框 */
.open-button:hover + .chat-popup,
.chat-popup:hover {
    visibility: visible;
    opacity: 1;
}

.chat-popup {
    display: none;
    width: 280px;
    height: 222px;
    right: 74px;
    border-radius: 12px 12px 12px 12px;
    border: 1px solid #E9EAEB;
    z-index: 9;
}

/* 添加三角形箭头 */
.chat-popup::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -6px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 8px solid white;
    z-index: 10;
}

/* 联系方式项样式 */
.contact-item {
    display: flex;
    height: 64px;
    align-items: center;
    margin-bottom: 15px;
    cursor: pointer;
    padding: 0 12px;
}

.contact-item:hover {
    background: #FFEDD3;
    border-radius: 12px 12px 12px 12px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-text {
    font-size: 14px;
    color: #333;
}

.contact-title {
    margin-bottom: 5px;
    font-weight: 500;
    font-size: 16px;
    color: #16181A;
}

.contact-description {
    font-weight: 400;
    font-size: 12px;
    color: rgba(22,24,26,0.7);
}

.contact-icon {
    width: 28px;
    height: 28px;
    margin-right: 15px;
    background: url('../images/message.png') no-repeat center;
    background-size: 100% 100%;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.email-icon {
    width: 28px;
    height: 28px;
    margin-right: 15px;
    background: url('../images/sms.png') no-repeat center;
    background-size: 100% 100%;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.phone-icon {
    width: 28px;
    height: 28px;
    margin-right: 15px;
    border: none;
    background: url('../images/call2.png') no-repeat center;
    background-size: 100% 100%;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.contact-item:hover .contact-icon {
    background: url('../images/message- activate.png') no-repeat center;
    background-size: 100% 100%;
    transform: scale(1.1);
}

.contact-item:hover .email-icon {
    background: url('../images/sms- activate.png') no-repeat center;
    background-size: 100% 100%;
    transform: scale(1.1);
}

.contact-item:hover .phone-icon {
    background: url('../images/call- activate.png') no-repeat center;
    background-size: 100% 100%;
    transform: scale(1.1);
}

.form-container {
    max-width: 200px;
    padding: 20px;
    background-color: white;
}

.form-container textarea {
    width: 100%;
    padding: 5px;
    margin: 5px 0 22px 0;
    border: none;
    background: #f1f1f1;
    resize: none;
    min-height: 200px;
}

.bg_blue {
    background: linear-gradient(90deg, #F80 0%, #F50 100%);
    border-radius: 4px;
    padding: 10px;
}

.form-container textarea:focus {
    background-color: #ddd;
    outline: none;
}

.form-container .btn {
    background-color: #2684FF;
    color: white;
    padding: 16px 30px;
    border: none;
    cursor: pointer;
    width: 100%;
    margin-bottom: 10px;
    opacity: 1;
}

.form-container .cancel {
    background-color: red;
}

.clear:after {
    clear: both;
    content: '';
    display: block;
}

.c1, a.c1 {
    color: #fff;
}

.c2 {
    color: rgba(0,0,0,0.6);
    font-size: 14px;
}

.c3 {
    color: rgba(0,0,0,0.6);
    font-size: 14px;
}

.c4, #header div a:hover {
    color: #f50;
}

.c5 {
    font-size: 12px !important;
    color: rgba(102,102,102,0.8);
}

.c6 {
    font-weight: 600;
    font-size: 16px;
    color: rgba(0,0,0,0.9);
}

.bg1 {
    background: #fff;
    margin: 0 20px;
}

.bg2 {
    background: #F9FAFB;;
}

.bg3 {
    background: #282e35;
}

.btb {
    background: linear-gradient(90deg, #F80 0%, #F50 100%);
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
    color: #A4A4A4;
}

input::placeholder, textarea::placeholder {
    color: #A4A4A4;
}

input::-ms-input-placeholder, textarea::-ms-input-placeholder {
    color: #A4A4A4;
}

.mobile-menu,
.mobile-menu-overlay {
    display: none;
}

/*.phone {*/
/*    display: none;*/
/*}*/

/*.pc {*/
/*    display: block;*/
/*}*/

/* -----------导航栏---------- */
#header {
    position: absolute;
    height: 62px;
    line-height: 62px;
    z-index: 2;
    left: 0;
    right: 0;
    background-color: #fff;
    border-bottom: 1px solid #E9EAEB;
}

#header .nav-log {
    width: 187px;
    height: 62px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

#header img {
    display: inline-block;
    height: 40px;
}

#navl, #navr {
    position: absolute;
    height: 62px;
    line-height: 62px;
}

#navl {
    padding-left: 227px;
    width: 100%;
    box-sizing: border-box;
}

#navr {
    right: 40px;
    top: 0;
}

#navl li {
    display: inline-block;
    padding-right: 12px;
}

#navr li {
    display: inline-block;
    padding: 0 8px;
}

.nav-hot-activity {
    display: inline-block;
    width: 29px;
    height: 15px;
    position: absolute;
    right: 2px;
    top: 6px;
    background: url('../images/hot(1).png') no-repeat center;
    background-size: auto;
    background-size: 100% 100%;
}

.nav-new-activity {
    display: inline-block;
    width: 29px;
    height: 15px;
    position: absolute;
    right: 2px;
    top: 6px;
    background: url('../images/new(1).png') no-repeat center;
    background-size: auto;
    background-size: 100% 100%;
}

.nav-new-icon {
    display: inline-block;
    width: 29px;
    height: 15px !important;
    /*position: absolute;*/
    /*!*right: -24px;*!*/
    /*top: -10px;*/
    /*right: -29px;*/
    /*top: -14px;*/
    margin-left: 6px;
    margin-top: -8px;
    background-size: auto;
    background-size: 100% 100%;
}

.nav-item {
    position: relative;
}

.nav-more-menu {
    display: none !important;
}

.nav-full-item {
    position: static !important;
}

#navl .nav-title, #navr .nav-title {
    color: #000000E5;
    font-size: 14px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

#navl .nav-title {
    font-weight: 500;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

#navl .nav-title:hover, #navr .nav-title:hover {
    color: #f50;
}

/*小箭头*/
#navl .nav-title::after {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    background: url('../images/down.png') no-repeat center;
    background-size: 24px 24px;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

#navl .nav-title:hover::after {
    background: url('../images/down-activate.png') no-repeat center;
    background-size: 24px 24px;
}

#navr .nav-language::after {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    background: url('../images/arrow-down.png') no-repeat center;
    background-size: 24px 24px;
}

#navr .nav-language:hover::after {
    background: url('../images/arrow-down-activate.png') no-repeat center;
    background-size: 24px 24px;
}

#navr .nav-login, #navr .nav-register {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 92px;
    height: 42px;
    border-radius: 12px;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.5s ease;
}

#navr .nav-login {
    background: #FFFFFF;
    border: 1px solid #D5D7DA;
    box-sizing: border-box;
}

#navr .nav-register {
    background-color: #FF8F32;
    color: #fff !important;
}

#navr .nav-login:hover {
    border-color: #FF8F32;
    color: #FF8F32 !important;
}

/*导航栏展开普通菜单*/
.nav-item .sub-menu {
    position: absolute;
    min-width: 148px;
    left: calc(50% - 16px);
    transform: translateX(-50%);
    margin-top: -1px;
    padding-bottom: 8px;
    background-color: #fff;
    border-radius: 0 0 5px 5px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.nav-item.active .sub-menu {
    opacity: 1;
    visibility: visible;
}
.has-dropdown:hover .sub-menu{
    display: block;
}
.sub-menu a {
    display: block;
    color: #333;
    font-size: 13px;
    line-height: 32px;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.sub-menu a:hover {
    color: #FF8F32;
}

/*导航栏展开全屏菜单*/
.full-menu {
    display: flex;
    position: absolute;
    left: 0;
    top: 62px;
    width: 100%;
    height: 626px;
    background-color: #fff;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0px 1px 2px 0px rgba(35, 11, 11, 0.05), 2px 3px 3px 0px rgba(35, 11, 11, 0.045), 3px 7px 4px 0px rgba(35, 11, 11, 0.025), 6px 12px 5px 0px rgba(35, 11, 11, 0.005), 10px 18px 6px 0px rgba(35, 11, 11, 0);
    z-index: 9999;
}

/*左侧宣传*/
.full-menu .full-menu-left {
    width: 224px;
    height: calc(100% - 64px);
    padding: 32px;
    background: linear-gradient(180deg, #6E87DC5B 0%, #AF5AB323 100%);
    flex-shrink: 0;
}

.nav-item.active .full-menu {
    opacity: 1;
    visibility: visible;
}
.has-dropdown:hover .sub-menu {
    opacity: 1;
    visibility: visible;
}
.full-menu {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.full-menu article {
    display: flex;
    flex-grow: 1;
    padding: 0 20px 20px 20px;
    overflow-y: auto;
    scrollbar-width: none;
    scrollbar-color: #fff #fff;
}

.full-menu-left-title {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 16px;
    color: #000000E5;
    line-height: 28px;
}

.full-menu-left-sub {
    color: #00000066;
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 134px;
}

.full-menu-left-suggest {
    height: 184px;
    overflow: hidden;
}

.full-menu-left-suggest p,  .full-menu-left-suggest a {
    color: #0052D9 !important;
    font-size: 14px !important;
    line-height: 22px;
    margin-bottom: 8px;
    cursor: pointer;
    text-decoration: underline;
}

#header #navl li .full-menu-item a {
    font-size: 14px;
    padding-top: 16px;
    text-align: left;
    color: rgba(0,0,0,0.9);
}

#header #navl li .full-menu-item a:hover {
    color: #FF8F32;
}

.menu-item-hide-1024 {
    display: none;
}

.full-menu a {
    display: block;
    text-decoration: none;
    color: #333;
    font-size: 14px;
}

.full-menu a:hover {
    color: #FF8F32;
}

.full-menu-item-desc {
    font-size: 12px;
    color: rgba(22,24,26,0.7);
}

.full-menu-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

/*导航栏展开更多二级菜单*/
.second-level {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    background-color: #fff;
    border-radius: 0 0 5px 5px;
    z-index: 10;
    min-width: 148px;
    padding-bottom: 8px;
}

.second-level a {
    display: block;
    color: #333;
}

.second-level a:hover {
    color: #FF8F32;
}

/* 当鼠标悬停在一级菜单项上时显示对应的二级菜单 */
.menu-item:hover > .second-level {
    display: block;
}

/* 一级菜单样式 */
.first-level {
    position: relative;
    display: flex;
    justify-content: center;
    align-content: center;
}

.first-level-icon {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-left: 6px;
    background: url('../images/arrow-down.png') no-repeat center;
    background-size: 24px 24px;
    transform: rotate(-90deg);
}

.first-level:hover .first-level-icon {
    background: url('../images/arrow-down-activate.png') no-repeat center;
    background-size: 24px 24px;
}

/* 搜索框 */
.search-box {
    position: relative;
    margin-left: 20px;
}

.search-icon {
    position: absolute;
    left: 9px;
    top: calc(50% - 9px);
    width: 20px;
    height: 20px;
    background: url('../images/search.png');
    background-size: auto;
    background-size: 100% 100%;
}

.search-box input {
    width: 225px;
    height: 32px;
    padding: 8px 12px;
    padding: 10px 10px 10px 34px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    outline: none;
    box-sizing: border-box;
}

.search-box input:focus {
    border-color: #1677ff;
}

.search-box input::before {

}

.menu-items-container {
    display: flex;
    flex-grow: 1;
    overflow-y: auto;
    padding: 0 20px 0px 20px;
    box-sizing: border-box;
}

.full-menu-item h1, .full-menu-item-title {
    color: #FF8F32 !important;
    font-weight: 500;
    font-size: 16px !important;
    line-height: 24px;
    text-align: left;
    padding: 16px 0 0 0;
}

/* footer */
.home-bottom-logo {
    width: 100%;
    height: 62px;
    margin-bottom: 24px;
}

.pc-footer-menu {
    display: block;
}

.phone-footer-menu {
    display: none;
}

#footer {
    padding: 40px 0;
}

#footer .c6 {
    display: flex;
    justify-content: center;
    gap: 18px;
}

#footer li {
    float: left;
}

#footer li {
    width: calc(100% / 6);
    white-space: nowrap;
}

#footer li a {
    display: block;
    margin: 24px 0;
    margin-top: 24px;
    font-weight: 400;
    font-size: 14px;
    color: rgba(0,0,0,0.6);
    white-space: wrap;
    transition: color 0.2s ease;
}

#footer li a:hover {
    color: #FF6F0A;
}

#footer li a img {
    width: 32px;
    height: 32px;
}

/*swiper1/topimg+slide-text+3(h1+p+a)*/
#swiper1 img, .topimg img {
    width: 100%;
}

#swiper1 .swiper-slide img {
    width: 100%;
    min-height: 100%;
    transform: scale(1.5, 1.5);
    transition: 1s linear 2s;
}

#swiper1 .swiper-slide-active img, #swiper1 .swiper-slide-duplicate-active img {
    transition: 6s linear;
    transform: scale(1, 1);
}

#swiper1 .line {
    opacity: 0.4;
    width: 90px;
    height: 4px;
    display: inline-block;
    margin: 0 3px;
    background: #fff;
    border-radius: 2px;
    cursor: pointer;
}

#swiper1 .AC {
    opacity: 1;
}

.slide-txt {
    position: absolute;
    text-align: center;
    top: 45%;
    margin-left: 15%;
    width: 75%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: flex-start;
    flex-wrap: nowrap;
}

.slide-txt .pc {
    height: 600px;
}

.slide-txt h1 {
    margin-bottom: 16px;
    font-weight: normal;
    text-align: left;
    padding: 0px;
    font-size: 36px;
}

.slide-txt p {
    font-size: 18px;
    text-align: left;
    word-wrap: break-word; /* 自动换行 */
    width: 40ch; /* 40字符宽度 */
}

.slide-txt a {
    width: 112px;
    height: 40px;
    line-height: 40px;
    border-radius: 20px;
    display: block;
    margin: 24px auto 0;
    float: left;
    margin-left: 0px;
}

.topimg {
    position: relative;
}

/*content*/
.content h2 {
    text-align: center;
}

/*container*/
.container {
    width: 1200px;
    margin-right: auto;
    margin-left: auto;
}

/*首页模块*/
#home1 h2, #home2 h2, #home3 h2, #home4 h2,#home5 h2,#sd1 h2, #about2 h2, #global h2, #global2 h2 {
    width: 100%;
    padding: 16px 0 32px;
    font-weight: 500;
    font-size: 32px;
    color: rgba(0,0,0,0.9);
    text-align: center;
}
#bare1 h2, #bare2 h2, #tg1 h2, #tg2 h2, #tg3 h2, #quote h2 {
    width: 100%;
    padding: 48px 0 32px;
    font-weight: 500;
    font-size: 26px;
    color: rgba(0,0,0,0.9);
    text-align: center;
}

#home1, #home2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 -12px;
    padding: 0;
}

#home1 div, #home3 div, #about2 div {
    width: 100%;
    height: 100%;
    text-align: center;
}

#home1 .sub-title {
    margin-top: 16px;
    font-size: 14px;
    font-weight: 400;
    color: rgba(0,0,0,0.6);
}

.index-tips {
    display: inline-block;
    height: 26px;
    margin-top: 48px;
    padding: 0px 12px;
    line-height: 26px;
    background: #FFF7EC;
    border-radius: 16px 16px 16px 16px;
    border: 1px solid #FFB96D;
    font-size: 12px;
    color: #f50;
}

#home1 ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, 292px);
    justify-content: center;
    gap: 20px;
    max-width: 100%;
    margin: 0 auto;
    /*padding: 20px 0;*/
    list-style: none;
}

#home1 li, #home2 li {
    width: 292px;
    height: 240px;
    background: #FFFFFF;
    border-radius: 12px;
    border: 1px solid rgba(225, 225, 225, 0.8);
    box-sizing: border-box;
    margin: 12px;
    transition: all 0.3s ease-in-out;
}

#home1 li:hover {
    border-radius: 12px 12px 12px 12px;
    border-color: #FFB96D;
    transition: all 0.3s ease-in-out;
    transform: scale(1.05);
}

#home1 li:hover .learn-more {
    display: flex;
    width: 100%;
    justify-content: center;
    align-content: center;
}

#home1 img {
    margin: 14px 0 10px 0;
    width: 64px;
    height: 64px;
    background-size: 100%;
}

#home1 li p, #home1 li span {
    padding: 0 12px;
}

#home1 p, #tg1 p, #solution3 p {
    margin-bottom: 4px;
    font-size: 16px;
    color: rgba(0,0,0,0.9);
}

#home1 .learn-more {
    display: none;
    margin-top: 30px;
    padding: 0;
    font-weight: 400;
    font-size: 14px;
    color: #FF6F0A;
    line-height: 16px;
    text-align: center;
    font-style: normal;
    text-transform: none;
}

#home1 .learn-more::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background: url('../images/arrow-right- activate.png') no-repeat center;
    background-size: 100% 100%;
    margin-left: 4px;
}

#home1, #home2, #bare2, #tg1, #solution3 li, #syy1, #syy2, #mix1, #ip1, #sd1, .sd2, #sd3, #re3, #gl1, #gl2, #affi1 {
    text-align: center;
}

#home1 li, #home2 li, #bare2 li, #tg1 li {
    float: left;
}

#home2 li {
    position: relative;
}

#home2 p {
    margin-bottom: 8px;
}

#home2 img {
    width: 100%;
    max-width: 200px;
}

#home2 span {
    opacity: 0.8;
}

#home4 {
    margin-bottom: 16px;
}

#home4 h2, #global h2, #global2 h2 {
    padding: 48px 0 32px 0;
}

#home4 div {
    box-sizing: border-box;
    box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    margin: 0;
}

#home4 .c3 {
    float: right;
}

#home4 span {
    font-size: 14px;
}

#home4 li {
    margin-top: 20px;
}

#home5 h2 {
    padding: 48px 0 32px 0;
}

#home5 {
    overflow: hidden;
    position: relative;
}

#home5 ul {
    position: absolute;
    white-space: nowrap;
    height: 80px;
}

#home5 li {
    display: inline-block;
    width: 200px;
    height: 120px;
}

#home5 li a {
    width: 100%;
    height: 100%;
}


#home5 img {
    width: 80px;
    height: 80px;
    background-size: 100% 100%;
    object-fit: contain;
}

/*首页地图start*/
#index-map {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 16px;
}

#index-map img {
    position: relative;
    width: 100%;
}

#index-map li {
    position: absolute;
    width: 16px;
    height: 16px;
    -webkit-transition: opacity 0.5s ease-out;
    -moz-transition: opacity 0.5s ease-out;
    -o-transition: opacity 0.5s ease-out;
    transition: opacity 0.5s ease-out;
}

#index-map li:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 50%;
    background: #FFD6A5;
    opacity: 0;
    -webkit-animation: ripple 2500ms ease-out 225ms infinite;
    -moz-animation: ripple 2500ms ease-out 225ms infinite;
    -o-animation: ripple 2500ms ease-out 225ms infinite;
    animation: ripple 2500ms ease-out 225ms infinite;
}

#index-map #flkf {
    top: 11%;
    left: 3%;
}
#index-map #yhnsb {
    top: 93%;
    left: 9%;
}
#index-map #dibai {
    top: 37%;
    left: 20%;
}
#index-map #ydnxy {
    top: 65%;
    left: 38%;
}
#index-map #mlxy {
    top: 54%;
    left: 32%;
}
#index-map #xjp {
    top: 61%;
    left: 32.5%;
}
#index-map #hanguo {
    top: 22%;
    left: 40%;
}
#index-map #adly {
    top: 85%;
    left: 44%;
}
#index-map #guigu {
    top: 16%;
    left: 72%;
}
#index-map #lsj {
    top: 24%;
    left: 73%;
}
#index-map #asb {
    top: 18%;
    left: 85%;
}
#index-map #niuyue {
    top: 13%;
    left: 88%;
}
#index-map #mam {
    top: 28%;
    left: 84%;
}
#index-map #baxi {
    top: 76%;
    left: 95%;
}
#index-map #hg {
    top: 36%;
    left: 37%;
}
#index-map #rb {
    top: 18%;
    left: 44%;
}
#index-map i {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    z-index: 1;
    background: #FF5500;
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

#index-map p {
    white-space: nowrap;
    padding-left: 18px;
    font-size: 12px;
    color: #FF8F32;
}
/*首页地图end*/

/*地图*/
#map {
    position: relative;
    margin-left: auto;
    margin-right: auto;
}

#map li {
    position: absolute;
    width: 16px;
    height: 16px;
    -webkit-transition: opacity 0.5s ease-out;
    -moz-transition: opacity 0.5s ease-out;
    -o-transition: opacity 0.5s ease-out;
    transition: opacity 0.5s ease-out;
}

#map li:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 50%;
    background: #2684FF;
    opacity: 0;
    -webkit-animation: ripple 2500ms ease-out 225ms infinite;
    -moz-animation: ripple 2500ms ease-out 225ms infinite;
    -o-animation: ripple 2500ms ease-out 225ms infinite;
    animation: ripple 2500ms ease-out 225ms infinite;
}

#map img {
    width: 960px;
}

#btl {
    top: 105px;
    left: 90px;
}

.home4-strong {
    font-weight: 600;
    font-size: 18px;
    color: rgba(0,0,0,0.9);
}

#home2 div {
    padding: 24px 15px;
}

#home2 img {
    margin-bottom: 24px;
}

#home4 div:last-child {
    float: right;
}

#home4 .c3 {
    padding-right: 10px;
    position: relative;
}

#home4 .c3:after {
    position: absolute;
    content: '';
    background: url('../images/arrow-down.png');
    width: 24px;
    height: 20px;
    background-size: 100% 100%;
    transform: rotate(-90deg);
}

#home4 div {
    width: 48%;
    padding: 24px;
    float: left;
}

#home5 {
    padding-bottom: 141px;
}

#ad-bottom-desc:after {
    /*position: absolute;*/
    /*right: 14px;*/
    content: '';
    background: url('../images/arrow-right.png');
    width: 20px;
    height: 20px;
    background-size: 100% 100%;
}

#shs {
    top: 144px;
    left: 70px;
}

#lsj {
    top: 157px;
    left: 74px;
}

#ld {
    top: 91px;
    left: 425px;
}

#flkf {
    top: 98px;
    left: 459px;
}

#map #flkf p {
    margin-top: 5px;
}

#amstd {
    top: 90px;
    left: 464px;
}

#yd {
    top: 207px;
    left: 670px;
}

#tg {
    top: 219px;
    left: 742px;
}

#yn {
    top: 230px;
    left: 770px;
}

#map #yn p {
    margin-top: 8px;
    padding-left: 0;
    margin-left: 15px;
}

#jpz {
    top: 232px;
    left: 754px;
}

#map #jpz p {
    margin-top: 8px;
    margin-left: -35px;
    padding-left: 0;
}

#xjp {
    top: 262px;
    left: 749px;
}

#flb {
    top: 222px;
    left: 808px;
}

#tw {
    top: 195px;
    left: 800px;
}

#hg {
    top: 146px;
    left: 808px;
}

#rb {
    top: 149px;
    left: 844px;
}

#map #rb p {
    margin-top: 8px;
    padding-left: 0;
}

#map i {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    z-index: 1;
    background: #2684FF;
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

li.bg7:after, i.bg7 {
    background: #FC9326 !important;
}

#map p {
    white-space: nowrap;
    margin-top: -12px;
    padding-left: 10px;
    font-size: 12px;
}

@-webkit-keyframes ripple {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.1, 0.1);
    }
    30% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(1);
    }
}

@-moz-keyframes ripple {
    0% {
        opacity: 0;
        -moz-transform: scale(0.1, 0.1);
    }
    30% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -moz-transform: scale(1);
    }
}

@keyframes ripple {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.1, 0.1);
        -moz-transform: scale(0.1, 0.1);
        -ms-transform: scale(0.1, 0.1);
        transform: scale(0.1, 0.1);
    }
    30% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
}

@-o-keyframes ripple {
    0% {
        opacity: 0;
        -o-transform: scale(0.1, 0.1);
    }
    30% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -o-transform: scale(1);
    }
}

/*bare*/
#bare1 .tab1 ul, #bare1 .tab ul, #bare1 .card ul {
    white-space: nowrap;
    overflow-x: scroll
}

#bare1 .tab1 li, #bare1 .tab li {
    display: inline-block;
    padding-bottom: 16px;
    margin-right: 20px;
}

#bare1 .tab1 .light, #bare1 .tab .light, #news1 .tab .light {
    color: #f50;
    position: relative;
}

#bare1 .tab1 .light:after, #bare1 .tab .light:after, #news1 .tab .light:after {
    content: '';
    position: absolute;
    background: #f50;
    width: 100%;
    height: 3px;
    border-radius: 1.5px;
    bottom: 0;
    left: 0;
}

#bare1 .card li, #bare1 .card2 > li {
    display: none;
    padding: 32px 0;
}

#bare1 .card li.show, #bare1 .card2 > li.show {
    display: block;
}

#bare1 .card table {
    width: 100%;
    text-align: center;
    border-radius: 8px;
}

#bare1 .card th {
    height: 60px;
    font-weight: normal;
}

#bare1 .card td {
    height: 56px;
}

#bare1 .card a, #bare1 .card2 a {
    width: 77px;
    height: 32px;
    border-radius: 16px;
    display: inline-block;
    line-height: 32px;
    font-size: 14px;
    padding: 0 10px;
}

#bare1 .card2 .swiper-container-horizontal > .swiper-pagination-bullets {
    bottom: 0;
}

#bare1 .card2 ul div {
    padding: 20px 16px;
    border-radius: 8px;
    text-align: center;
}

#bare1 .card2 ul div p {
    margin-bottom: 9px;
    text-align: left;
}

#bare1 .card2 ul div span {
    float: right;
}

#bare2 div {
    border-radius: 12px;
}

#bare2 span {
    font-size: 14px;
}

/*custom*/
#custom1 {
    padding: 56px 0;
}

#custom1 a {
    display: block;
    width: 112px;
    height: 40px;
    line-height: 40px;
    border-radius: 20px;
    margin: 8px auto 0;
    text-align: center;
}

#custom1 i:after {
    content: '*';
    color: #FA5151;
    position: absolute;
    line-height: 36px;
    font-style: normal;
    margin-left: 13px;
}

#custom1 form {
    padding: 24px;
    border-radius: 8px;
}

#custom1 li:first-child div {
    float: left;
    width: 14.28%;
    box-sizing: border-box;
    padding: 8px;
    position: relative;
}

#custom1 li:first-child div:after {
    content: '';
    background: url(../images/minico.png);
    background-position: 0 -12px;
    width: 10px;
    height: 7px;
    position: absolute;
    right: 18px;
    top: 23px;
}

#custom1 li:first-child input {
    padding-right: 32px;
}

#custom1 input, #custom1 textarea {
    width: 100%;
    height: 36px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    box-sizing: border-box;
    padding-left: 22px;
    display: block;
}

#custom1 li:first-child ol {
    display: none;
    position: absolute;
    left: 8px;
    top: 44px;
    right: 8px;
    max-height: 150px;
    overflow-y: auto;
    z-index: 1;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.2);
}

#custom1 li:first-child ol li {
    height: 30px;
    line-height: 30px;
    padding: 0 12px;
    cursor: pointer;
}

#custom1 li:nth-child(2) {
    padding: 8px;
}

#custom1 textarea {
    overflow: hidden;
    line-height: 32px;
}

#custom1 li:last-child span {
    width: 33.3%;
    float: left;
    box-sizing: border-box;
    padding: 8px;
}

.popup {
    display: none;
    width: 240px;
    height: 130px;
    background: rgba(0, 0, 0, 0.8);
    font-size: 16px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -120px;
    margin-top: -65px;
    border-radius: 8px;
    text-align: center;
}

.popup#no:before, .popup#yes:before {
    content: '';
    background: url(../images/minico.png);
    width: 32px;
    height: 32px;
    position: absolute;
    margin-left: -16px;
    margin-top: 30px;
}

.popup p {
    margin-top: 80px;
}

.popup#no:before {
    background-position: -40px -53px;
}

.popup#yes:before {
    background-position: -40px -22px;
}

.popup#no p:last-child {
    display: none;
}

.popup#yes p:first-child {
    display: none;
}

/*托管*/
#tg1 li {
    width: 33.33%;
    padding-bottom: 32px;
}

#tg1 div {
    padding: 0 40px;
    height: 160px;
}

#tg3 .tab span, #tg3 .tab1 li {
    display: inline-block;
    margin-right: 12px;
    width: 96px;
    height: 40px;
    box-shadow: inset 0 0 0 1px #efefef;
    border-radius: 20px;
    background: #fff;
    line-height: 40px;
    text-align: center;
    color: #565656;
}

#tg3 .tab span.light, #tg3 .tab1 li.light {
    background: #f50;
    color: #fff;
    box-shadow: inset 0 0 0 1px #f50;
}

#tg3 .card {
    margin-top: 16px;
    box-shadow: inset 0 0 0 1px #e8e8e8;
    padding: 20px;
}

#tg3 .card li {
    position: relative;
    height: 245px;
}

#tg3 .card img {
    position: absolute;
    right: 0;
    top: 0;
    height: 245px;
}

#tg3 .explain {
    position: absolute;
    top: 0;
    bottom: 40px;
    left: 0;
    right: 265px;
    overflow-y: auto;
    padding-bottom: 60px;
}

/* 滚动条宽度 */
#tg3 .explain::-webkit-scrollbar {
    width: 8px;
}

/* 滑块*/
#tg3 .explain::-webkit-scrollbar-thumb {
    background: #eee;
    -webkit-border-radius: 2em;
    -moz-border-radius: 2em;
    border-radius: 2em;
}

#tg3 .explain_mask {
    position: absolute;
    left: 0;
    bottom: 40px;
    height: 60px;
    right: 276px;
    background: linear-gradient(rgba(255, 255, 255, 0.5), #fff);
}

#tg3 .card h3 {
    padding-bottom: 14px;
}

#tg3 .card p {
    padding-bottom: 8px;
}

#tg3 .card a {
    width: 120px;
    height: 40px;
    border-radius: 20px;
    display: block;
    line-height: 40px;
    text-align: center;
    position: absolute;
    bottom: 0;
}

#tg3 .card li, #tg3 .card1 li {
    display: none;
}

#tg3 .card1 {
    margin-top: 16px;
    box-shadow: inset 0 0 0 1px #e8e8e8;
    padding: 15px;
    background: #fff;
}

#tg3 .card1 img {
    display: block;
    width: 100%;
    margin-bottom: 20px;
}

#tg3 .card1 p {
    padding-bottom: 8px;
}

#tg3 .card1 a {
    width: 120px;
    height: 40px;
    border-radius: 20px;
    margin: 0 auto;
    display: block;
    line-height: 40px;
    text-align: center;
}

/*报价*/
#quote div {
    width: 50%;
    float: left;
    position: relative;
}

#quote div, #quote ul > li:nth-child(3) {
    padding: 12px;
    box-sizing: border-box;
}

#quote span {
    position: absolute;
    top: 25px;
    left: 20px;
    font-size: 14px;
}

#quote input {
    height: 45px;
    box-sizing: border-box;
    padding-left: 80px;
    width: 100%;
}

#budget input {
    padding-right: 32px;
}

#budget {
    position: relative;
}

#budget:after {
    content: '';
    background: url(../images/minico.png);
    background-position: 0 -12px;
    width: 10px;
    height: 7px;
    position: absolute;
    right: 25px;
    top: 30px;
}

#quote ol {
    display: none;
    position: absolute;
    left: 12px;
    top: 60px;
    right: 12px;
    max-height: 150px;
    overflow-y: auto;
    z-index: 1;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.2);
}

#quote ol li {
    height: 35px;
    line-height: 35px;
    padding: 0 12px;
    cursor: pointer;
    text-align: left;
}

#quote textarea {
    line-height: 32px;
    width: 100%;
    box-sizing: border-box;
    padding: 0 22px;
}

#quote input, #quote textarea {
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    display: block;
}

#quote a {
    width: 50%;
    max-width: 320px;
    margin: 0 auto;
    height: 56px;
    font-size: 18px;
    display: block;
    text-align: center;
    line-height: 56px;
    border-radius: 28px;
}

/*一站式解决方案*/
#solution-slide-txt {
    margin-top: -59px;
}

#solution3 li {
    float: left;
}

#solution3 img {
    width: 100%;
    max-width: 156px;
}

/*私有云*/
#syy1 img {
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: 653px;
}

#syy2 img.pc {
    margin: 0 auto;
    width: 100%;
    max-width: 962px;
}

#syy2 img.phone {
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
}

#syy2 p img {
    width: 25%;
    max-width: 148px;
}

/*公有云*/
.OS {
    border: 0;
    box-shadow: 0 0 0 1px #d9d9d9;
    border-radius: 4px;
    height: 37px;
    padding: 0 15px 0 8px;
}

#gyy2 li {
    width: 33.33%;
    text-align: center;
    float: left;
}

#gyy2 img {
    width: 100%;
    max-width: 136px;
    margin: 0 auto;
    display: block;
}

#gyy3 img {
    width: 100%;
    max-width: 890px;
    margin: 0 auto;
    display: block;
}

/*混合云互联*/
#mix1 img.pc {
    margin: 0 auto;
    width: 100%;
    max-width: 992px;
}

#mix1 img.phone, #mix2 img {
    width: 100%;
}

#mix2 h2 {
    padding-bottom: 32px;
}

#mix2 li {
    position: relative;
}

#mix2 a {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(40, 46, 53, 0.8);
}

#mix2 a:hover {
    background: rgba(40, 46, 53, 0.55);
}

#mix2 span {
    width: 122px;
    height: 44px;
    background: url('../images/mix(6).png');
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -22px;
    margin-left: -61px;
    text-align: center;
    line-height: 44px;
}

/*详情*/
#details h2.c4 {
    text-align: left;
    border-bottom: 1px solid #f2f2f2;
    padding-bottom: 16px;
}

#details div.bg1 {
    padding: 20px;
    border-radius: 8px;
    line-height: 25px;
}

#details h3 {
    padding: 24px 0 12px;
}

#details div.bg1 p {
    padding-top: 32px;
}

#details h2.c4 span.c2 {
    font-size: 14px;
    font-weight: normal;
    line-height: 32px;
}

/*ip*/
#ip1 {
    padding: 64px 0;
}

#ip1 p {
    padding-top: 18px;
    padding-bottom: 24px;
}

#ip1 table, #re3 table, #gl2 table {
    border-collapse: collapse;
    line-height: 60px;
    width: 100%;
}

#ip1 td i, #ddos2 i {
    background: url(../images/minico.png);
    background-position: -40px -85px;
    width: 18px;
    height: 13px;
    display: inline-block;
}

#ip1 table, #ip1 th, #ip1 td, #re3 table, #re3 th, #re3 td, #gl2 table, #gl2 th, #gl2 td, #net1 table, #net1 td {
    border: 1px solid rgba(0, 0, 0, 0.05);
}

#ip1 a {
    display: inline-block;
    width: 83px;
    height: 32px;
    line-height: 32px;
    border-radius: 16px;
    text-align: center;
}

.ip2 {
    padding-bottom: 63px;
}

#ip3 {
    padding: 48px 0;
}

#ip3 h2 {
    padding-bottom: 32px;
}

#ip3 li {
    float: left;
    box-sizing: border-box;
    padding: 10px;
}

#ip3 li div {
    padding: 12px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}

/*sdwan*/
#sd3 img {
    width: 100%;
    max-width: 904px;
}

/*reseller*/
#re3, #reseller {
    padding: 48px 0;
    position: relative;
}

#re3 h2, #re3 p, #reseller h2 {
    padding-bottom: 16px;
    font-size: 32px;
    font-weight: 500;
    color: rgba(0,0,0,0.9);
}

.re1 {
    padding-bottom: 72px;
}

#re-slide-txt {
    margin-top: -47px;
}

#roll-x {
    overflow-x: auto;
    position: relative;
    height: 400px;
}

#re3 table {
    position: absolute;
}

#roll-x::-webkit-scrollbar {
    height: 8px;
}

#roll-x::-webkit-scrollbar-thumb {
    background: #b6b8be;
    -webkit-border-radius: 2em;
    -moz-border-radius: 2em;
    border-radius: 2em;
}

#roll-x::-webkit-scrollbar-track {
    background: #dadce2;
    -webkit-border-radius: 2em;
    -moz-border-radius: 2em;
    border-radius: 2em;
}

/*global*/
#gl2 a {
    width: 88px;
    height: 32px;
    line-height: 32px;
    border-radius: 16px;
    text-align: center;
    display: inline-block;
}

/*ddos*/
#ddos1 {
    background: url('../images/ddos-t2.png');
    height: 305px;
    background-size: 100%;
    text-align: center;
}

#ddos1 h2 {
    padding: 64px 0 18px;
}

#ddos1 p {
    padding-bottom: 32px;
}

#ddos1 a {
    width: 156px;
    height: 48px;
    line-height: 48px;
    border-radius: 24px;
    display: inline-block;
    text-align: center;
}

#ddos2 li {
    float: left;
    min-height: 56px;
}

#ddos2 li i {
    padding-right: 5px;
}

#ddosimg:last-child {
    width: 100%;
    max-width: 913px;
}

/*affiliates*/
#affi1 li, #affi3 li {
    float: left;
}

#affi1 li img {
    width: 100%;
    max-width: 220px;
}

#affi3 li {
    padding: 16px;
    box-sizing: border-box;
}

#affi3 div {
    width: 100%;
    box-shadow: 14px 14px 24px 0px #C1C7D3, -14px -14px 24px 0px #fff;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.49);
}

#affi3 div h3 {
    height: 48px;
    padding: 0 16px;
    line-height: 48px;
    border-radius: 8px 8px 0px 0px;
}

#affi3 div p {
    padding: 16px;
    height: 60px;
}

#affi3-li1 {
    background: linear-gradient(90deg, #F6A66D 0%, #EC7C2C 100%);
    color: #B44303;
    box-shadow: 0px 1px 0px 0px #CD5B0B;
}

#affi3-li2 {
    background: linear-gradient(90deg, #8DDD4F 0%, #59AA07 100%);
    color: #3B7400;
    box-shadow: 0px 1px 0px 0px #488B06;
}

#affi3-li3 {
    background: linear-gradient(90deg, #6ABCFF 0%, #2D75EB 100%);
    color: #0D59CE;
    box-shadow: 0px 1px 0px 0px #1E69E3;
}

#affi3-li4 {
    background: linear-gradient(90deg, #AD8DFF 0%, #7F52F2 100%);
    color: #5620DD;
    box-shadow: 0px 1px 0px 0px #6D3DE2;
}

/*network*/
#net-slide-txt {
    margin-top: -54px;
}

#net1 {
    background: #fff;
}

#net1 table {
    border-collapse: collapse;
}

#net1 td {
    padding: 0 15px;
}

#net1 ul {
    padding-left: 20px;
}

#net1 li {
    list-style-type: disc;
}

/*news*/
#news-slide-txt {
    margin-top: -29px;
}

#news1 .card > li {
    display: none;
}

#news1 .card > li li {
    margin: 0 24px;
    border-bottom: 1px solid #f0f0f0;
}

#news1 .card small {
    float: right;
}

#news1 .tab {
    margin: 0 24px;
    border-bottom: 1px solid #f0f0f0;
}

#news1 .tab li {
    display: inline-block;
    margin-right: 20px;
    line-height: 50px;
}

#page1, #page2, #page3 {
    text-align: right;
    padding: 0 24px;
}

/*about*/
#about3 img {
    height: 299px;
}

/*join*/
#join1 {
    padding-bottom: 72px;
    text-align: center;
}

#join1 img {
    padding-top: 44px;
}

#join1 p {
    padding-top: 18px;
}

#join2 {
    padding-bottom: 72px;
}

#join2 li {
    float: left;
    width: 33.33%;
    box-sizing: border-box;
    padding: 0 2%;
}

#join2 img {
    width: 100%;
}

#join2 h2 {
    padding-bottom: 40px;
}

#join2 h3 {
    padding: 24px 0 12px;
}

#join3 {
    padding-bottom: 56px;
}

#join3 h2 {
    padding: 72px 0 32px;
}

#join3 a {
    width: 112px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    display: inline-block;
    border-radius: 20px;
    float: right;
    font-weight: normal;
    font-size: 14px;
}

#join3 div {
    box-sizing: border-box;
    padding: 20px 32px;
    border-radius: 8px;
    box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

#join3 h3 {
    padding-bottom: 16px;
}

#join3 p {
    padding-top: 23px;
}

#join3 li:not(:last-child) {
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

/*contact*/
#con1 > ul > li {
    text-align: center;
}

#con1 div {
    display: inline-block;
    text-align: left;
    width: 240px;
}

.ico-sale {
    display: inline-block;
    position: relative;
    width: 50px;
    height: 44px;
}

.ico-sale:after {
    content: '';
    position: absolute;
    background: url(../images/minico.png);
    width: 40px;
    height: 44px;
    background-position: 0px -19px;
}

.ico-technology {
    display: inline-block;
    position: relative;
    width: 50px;
    height: 41px;
}

.ico-technology:after {
    content: '';
    position: absolute;
    background: url(../images/minico.png);
    width: 40px;
    height: 41px;
    background-position: 0px -63px;
}

.ico-tel {
    display: inline-block;
    position: relative;
    width: 20px;
    height: 12px;
}

.ico-tel:after {
    content: '';
    position: absolute;
    background: url(../images/minico.png);
    width: 12px;
    height: 12px;
    background-position: -52px -10px;
}

.ico-mail {
    display: inline-block;
    position: relative;
    width: 20px;
    height: 10px;
}

.ico-mail:after {
    content: '';
    position: absolute;
    background: url(../images/minico.png);
    width: 12px;
    height: 10px;
    background-position: -52px 0;
}

/*sla*/
@font-face {
    font-family: 'arrow';
    src: url('./iconfont/iconfont.eot');
    src: url('./iconfont/iconfont.eot?#iefix') format('embedded-opentype'), url('./iconfont/iconfont.woff2') format('woff2'), url('./iconfont/iconfont.woff') format('woff'), url('./iconfont/iconfont.ttf') format('truetype'), url('./iconfont/iconfont.svg#iconfont') format('svg');
}

.min-arrow {
    font-family: "arrow" !important;
    font-size: 30px;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: inline-block;
}

#sla h3 {
    line-height: 50px;
    border-bottom: 1px solid #eee;
    padding: 0 15px;
    position: relative;
}

#sla h3 + div {
    border-bottom: 1px solid #eee;
    display: none;
}

#sla h3 .min-arrow {
    position: absolute;
    right: 20px;
    font-weight: normal;
    color: #969696;
}

#sla .c4 {
    line-height: 44px;
    text-align: center;
    position: relative;
}

#sla .c4 i {
    position: absolute;
}

#sla p {
    text-indent: 2em;
    padding: 16px 24px 0;
    margin-bottom: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}


.font14 {
    font-size: 14px;
}

.font18 {
    font-size: 18px;
}

.font20 {
    font-size: 20px;
}

.font26 {
    font-size: 26px;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.bold {
    font-weight: bold;
}

.black {
    color: #121212;
}

.gary5 {
    color: #595959;
}

/* 隐藏核心数筛选功能 */
/* .core_num_container { display: none; } */

#cart {
    position: fixed;
    right: 5px;
    bottom: 40%;
    background: white;
    width: 40px;
    z-index: 2005;
    padding: 15px 6px 15px 6px;
    border: 1px solid #ccc;
}

#cart:hover {
    cursor: pointer;
}

#cart div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #F50;
    font-weight: bold;
}

#cart img {
    width: 30px;
    height: 30px;
    margin-bottom: 7px;
}

.logout:hover {
    cursor: pointer;
}


.btb1, .btb2, .btb3 {
    width: 112px;
    height: 40px;
    line-height: 40px;
    border-radius: 4px;
    display: block;
    margin: 24px auto 0 0;
    float: left;
    text-decoration: none;
    text-align: center;
}

.btb, .btb1 {
    background: linear-gradient(90deg, #F80 0%, #F50 100%);
    color: #fff;
}

.btb2 {
    border: #F80 0.1rem solid;
    color: #F80;
}

.btb3 {
    color: #F80;
    text-align: left;
}

.about-li-title {
    font-weight: 500;
    font-size: 18px;
    color: #16181A;
    margin-bottom: 6px;
}