@font-face {
    font-family: Inter-Regular;
    src: url('../font/Inter-Regular.ttf');
}

@font-face {
    font-family: Inter-Medium;
    src: url('../font/Inter-Medium.ttf');
}

@font-face {
    font-family: Inter-SemiBold;
    src: url('../font/Inter-SemiBold.ttf');
}

@font-face {
    font-family: Inter-Bold;
    src: url('../font/Inter-Bold.ttf');
}

:root{
    --theme-color-1: #6D432C;
    --theme-color-2: #C9A385;
    --theme-color-3: #668FBF;
    --theme-color-4: #4E67A2;
    --theme-color-5: #002856;
	/* --theme-color-5: #203864; */
	--theme-color-6: #668FBF;
	--theme-color-7: #EEEEEE;
    --body-bg: #ffffff;
    --footer-bg: #002856;
	/* --footer-bg: #203864; */
    --font-color: #000000;
    --heading-color: #05142B;
    --font-white: #ffffff;
    --box-shadow:  2px 10px 60px rgba(102, 143, 191, 0.4);
}

body{
    background-color: #ffffff;
    margin: 0;
    padding: 0;
    font-size: 14px;
    line-height: 25px;
    font-family: 'Inter-Regular';
    font-weight: normal;
    color: var(--font-color);
}

h1, h2, h3{
    color: var(--heading-color);
    margin-bottom: 0;
    font-family: 'Inter-Bold';
    font-weight: normal;
}

h4, h5{
    color: var(--heading-color);
    margin-bottom: 0;
    font-family: 'Inter-SemiBold';
    font-weight: normal;
}

p{
    margin-bottom: 0;
}

a, a:hover, a:active, a:focus{
    color: inherit;
    text-decoration: none;
}

ul{
    list-style: none;
    margin: 0;
    padding: 0;
}

.theme-btn{
    border-radius: 6px;
    height: 48px;
    text-align: center;
    border: none;
    max-width: max-content;
    width: auto;
    padding:10px 30px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter-Medium';
    font-weight: normal;
    transition: ease-in-out 0.3s;
    font-size: 14px;
}

.btn-main{
    color: #fff;
    background-color: var(--theme-color-4);
    transition: ease-in-out 0.3s;
    border: 1px solid var(--theme-color-4);
}

.btn-main:hover{
    background-position: left bottom;
    color: #fff;
    background-color: #4060ac;
    border: 1px solid #4060ac;
    transition: ease-in-out 0.3s;
}

.btn-secondary{
    color: #fff;
    background-color: var(--theme-color-2);
    transition: ease-in-out 0.3s;
    border: 1px solid var(--theme-color-2);
}

.btn-secondary:hover{
    color: #fff;
    background-color: #c07d49;
    transition: ease-in-out 0.3s;
    border: 1px solid #c07d49;
}

.btn-border{
    border: 1px solid var(--theme-color-1);
    background-color: transparent;
    color: var(--theme-color-1);
    transition: ease-in-out 0.3s;
}

.btn-border:hover{
    border-color: var(--theme-color-1);
    background-color: var(--theme-color-1);
    color: #fff;
    transition: ease-in-out 0.3s;
}

.btn-border-white{
    border: 1px solid var(--font-white);
    background-color: transparent;
    color: var(--font-white);
    transition: ease-in-out 0.3s;
}

.btn-border-white:hover{
    border-color: var(--theme-color-1);
    background-color: var(--theme-color-1);
    color: #fff;
    transition: ease-in-out 0.3s;
}

.policy-main-heading{
    font-size: 20px;
    margin-bottom: 20px;
}

.policy-description{
    margin-bottom: 20px;
}

.page-full-coming{
    width: 100%;
    height: 100vh;
    position: relative;
    display: inline-block;
    background-position: center;
    background-size: cover !important;
    background-repeat: no-repeat;
    /* background-image: url('../images/coming-soon-bg.jpg'); */
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../image/comingsoon-bg.jpg');
}
  
.page-coming-inner{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
}
  
.page-coming-inner h2{
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--font-white);
}
  
.page-coming-inner p{
    margin-bottom: 20px;
    color: var(--font-white);
}
  
.soon-subscribe{
    width: 100%;
}
  
.soon-form-wrapper{
    position: relative;
    width: 100%;
}
  
.soon-input{
    width: 100%;
    height: 55px;
    border-radius: 35px;
    padding: 10px 15px;
    display: inline-block;
    border: none;
}
  
.soon-submit{
    background-color: var(--theme-color-2);
    border-radius: 35px;
    text-align: center;
    color: #fff;
    padding: 10px 10px;
    position: absolute;
    top: 5px;
    right: 5px;
    border: none;
    width: 135px;
}
  
.soon-counter-list{
    display: flex;
}
  
.soon-counter-list > div{
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 30px 8px 0px 8px;
    background-color: rgb(255 255 255 / 20%);
    flex-direction: column;
    color: var(--theme-color-3);
    font-family: 'Inter-Bold';
    font-weight: normal;
    font-size: 32px;
}
  
.soon-counter-list > div span{
    font-family: 'Inter-Medium';
    font-weight: normal;
    /* margin: 10px 0px; */
    color: var(--font-white);
    font-size: 14px;
}
  
.coming-soon .footer-heading {
    font-size: 20px;
    line-height: 24px;
    color: #fff;
}
  
.coming-soon .footer-social-list {
    margin-top: 20px;
}
  
.coming-soon .footer-social-list li {
    display: inline-block;
    margin-right: 20px;
}
  
.coming-soon .footer-social-list li a {
    display: inline-block;
    color: #fff;
}

.error-page{
    height: calc(100vh - 1px);
    display: inline-block;
    width: 100%;
    background-image: url('../image/page-bg.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.error-page-image{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-page-content{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.error-page-content h1{
  font-size: 120px;
  color: var(--font-white);
  font-family: 'Inter-Medium';
}

.error-page-content h3{
  font-size: 32px;
  color: var(--font-white);
  text-transform: capitalize;
  font-family: 'Inter-Medium';
}

.error-page-content p{
  font-size: 16px;
  margin: 20px 0px;
  color: var(--font-white);
}

.faq .accordion-item{
    margin-bottom: 20px;
    border: transparent;
}

.faq .accordion-button{
    border: transparent;
}

.faq .accordion-button{
    border-radius: 0px !important;
    background-color: var(--font-white);
    font-family: 'Inter-Medium';
    font-size: 14px;
    height: 65px;
}

.faq .accordion-button:not(.collapsed){
    background-color: var(--theme-color-3);
    box-shadow: none;
    color: var(--font-white);
}

.faq .accordion-button span{
    margin-right: 10px;
}

.faq .accordion-body p span{
    margin-right: 10px;
}

.faq-container .accordion {
    width: 100%;
    float: left;
}

.faq-container .accordion .accordion-item {
    width: 100%;
    float: left;
    /* margin: 0px 9px; */
    margin-bottom: 20px;
    background-color: rgb(0 0 0 / 5%);
}

.faq .accordion-button::after {
    background-image: none;
    position: relative;
    content: '\f067';
    font-family: 'Fontawesome';
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    opacity: 0.8;
}

.faq .accordion-button:not(.collapsed)::after {
    content: '\f068';
}

.error-msg-contact{
    display: none;
    transition: ease-out 0.3s;
    opacity: 0;
}

.error-msg-contact-display{
    display: block;
    transition: ease-out 0.3s;
    opacity: 1;
    position: absolute;
    bottom: -8px;
    font-size: 10px;
    left:0;
    margin: 0;
    line-height: 0;
    color: red;
}

.success-msg-contact{
    display: none;
    transition: ease-out 0.3s;
}

.success-msg-contact-display{
    position: absolute;
    display: block;
    transition: ease-out 0.3s;
    padding: 13px;
    background: var(--theme-color-4);
    font-size: 14px;
    /* border-radius: 5px; */
    z-index: 10;
    bottom: 75px;
    left: 50%;
    padding-left: 3px;
    color: #fff;
    width: 265px;
    border-radius: 30px;
    top: 50%;
    transform: translate(-50%, -50%);
}

.success-msg-contact-display p{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    flex-direction: column;
}
  
.check-success-icon{
    padding: 10px 13px;
    color: #fff;
    background-color: var(--theme-color-2);
    border-radius: 50%;    min-width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    margin: 0;
    margin-bottom: 20px;
}

.success-msg p, .success-msg-display p{
    margin-bottom: 0;
}

.error-msg p, .error-msg-display p{
    margin-bottom: 0;
}

#backTop {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: var(--theme-color-3);
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    line-height: 18px;
    transition: ease-in 0.3s;
}
  
#backTop:hover {
    background-color: #006278;
    transition: ease-in 0.3s;
}

#loading {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	position: fixed;
	display: block;
	/* opacity: 0.7; */
	background-color: #fff;
	z-index: 1001;
	text-align: center;
}

#loading-image {
	position: absolute;
	top: 40%;
	z-index: 999;
	transform: translate(-50%);
	background-color: #fff;
	display: inline-block;
}


/* the slides */
.slick-slide {
    margin: 0 10px;
}

/* the parent */
.slick-list {
    margin: 0 -10px;
}

.section{
    width: 100%;
    position: relative;
    padding: 4rem 0;
}

.section2{
    width: 100%;
    position: relative;
    padding: 4rem 0 0 0;
}


.top-header {
    background-color: #ffffff;
    /* padding: 11px 0px; */
    text-align: center;
}
  
.header {
    padding: 20px 0px;
    background: var(--theme-color-5);
}

.navbar{
    padding: 0;
}

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
}
  
.sticky + .main-content-wrapper {
    padding-top: 123px;
}

.sticky.header:before{
    height: 83px;
}

.navbar-brand img{
    width: 240px;
}

.top-header{
    width: 100%;
    position: relative;
    display: flex;
    height: 45px;
    align-items: center;
    background-color: var(--font-white);
}

.top-header-wrapper{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    position: relative;
}

.top-header-left ul li{
    display: inline-block;
}

.top-header-left ul li a{
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--font-white);
    border-left: 1px solid #6B6B6B;
}

.top-header-left ul li:last-child a{
    border-right: 1px solid #6B6B6B;
}

.top-header-contact{
    /* color: var(--font-white); */
    margin-left: 10px;
    margin-right: 10px;
    height: 45px;
    display: flex;
    align-items: center;
}

.top-header-contact i{
    margin-right: 10px;
}

.top-header-btn{
    color: var(--font-white);
    height: 45px;
    display: flex;
    align-items: center;
    background-color: var(--theme-color-2);
    padding: 3px 15px;
}

.top-header-btn span{
    margin-right: 10px;
    font-size: 18px
}

.top-header-right{
    position: relative;
    display: flex;
    height: 45px;
    align-items: center;
}

.header-btn-group button{
    background-color: transparent;
    border: transparent;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-btn-group button span{
    font-size: 20px;
}

.header-btn-group{
    display: flex;
}

.btn-border.white{
    border-color: var(--font-white);
    color: var(--font-white);
}

.btn-border.white:hover{
    background-color: var(--theme-color-2);
    border-color: var(--theme-color-2);
}

.navbar-expand-lg .navbar-nav .nav-link{
    padding: 0.5rem 1rem;   
    display: flex;
    align-items: center;
    color: var(--font-white);
}

.nav-item .dropdown-toggle::after{
    border: none;
    content: '\f107';
    font-family: 'Fontawesome';
    position: relative;
    display: inline-block;
    font-size: 8px;
    margin-left: 8px;
}

.navbar .nav-item .dropdown-menu{
    background: #FFFFFF;
    box-shadow: 0px 1px 2px rgba(1, 29, 38, 0.07);
    border-radius: 10px;
    border-color: #f0f0f0;
}

.navbar .dropdown-item{
    padding: 10px 15px;
    font-size: 14px;
    color: var(--font-color);
}

.dropdown-item:focus, .dropdown-item:hover{
    background-color: var(--theme-color-7);
}

.dropdown-item.active, .dropdown-item:active{
    background-color: var(--theme-color-7);
}

footer{
    background-color: var(--theme-color-5);
}

.footer-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    padding-top: 3.5rem;
}

.footer-wrapper h3{
    font-size: 20px;
    margin-bottom: 25px;
    color: var(--font-white);
}

.footer-wrapper p{
    font-size: 12px !important;
    color: var(--font-white);
}

.footer-wrapper ul li{
    color: var(--font-white);
    margin-bottom: 15px;
}

.footer-wrapper ul li a{
    display: flex;
    align-items: center;
}

.footer-wrapper ul.contact li a i{
    margin-right: 10px;
}

.footer-wrapper ul li:last-child{
    margin-bottom: 0px;
}

.footer-wrapper ul li a p{
    font-size: 12px;
    margin-bottom: 2px;
}

.footer-bottom{
    width: 100%;
    position: relative;
    display: flex;
    justify-content: space-between;
    padding: 25px 0px;
    border-top: 1px solid #6E6E6E;
}

.footer-bottom p{
    color: var(--font-white);
}

.footer-bottom ul li{
    display: inline-block;
    color: var(--font-white);
}

.footer-social {
    margin-top: 20px;
}

.footer-social li{
    display: inline-block;
}

.footer-social li a{
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--font-white);
    background: rgba(217, 217, 217, 0.2);
}

.footer-social li.weixin-hover {
    position: relative;
    overflow: visible;
}

.weixin-qrcode {
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    margin-left: 10px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    max-width: calc(100vw - 20px);
    box-sizing: border-box;
    white-space: nowrap;
    /* 二维码显示在图标右侧，垂直居中 */
}

/* 当二维码可能超出屏幕右边界时，自动显示在左侧 */
.footer-social li.weixin-hover:last-child .weixin-qrcode {
    left: auto;
    right: 100%;
    margin-left: 0;
    margin-right: 10px;
    transform: translateY(-50%);
}

/* 在手机上，二维码也显示在右侧，但调整大小和位置避免超出 */
@media (max-width: 768px) {
    .footer-wrapper {
        overflow: visible;
    }
    
    .footer-social {
        overflow: visible;
        position: relative;
    }
    
    .footer-social li.weixin-hover {
        overflow: visible;
        position: relative;
    }
    
    .weixin-qrcode {
        left: 100% !important;
        right: auto !important;
        margin-left: 10px;
        margin-right: 0;
        transform: translateY(-50%);
        /* 确保二维码不会超出屏幕右边界 */
        max-width: min(150px, calc(100vw - 60px));
        position: absolute;
        z-index: 9999;
        top: 50%;
        bottom: auto;
    }
    
    .weixin-qrcode img {
        height: auto;
        width: 100%;
        max-width: 150px;
        max-height: 150px;
        display: block;
        object-fit: contain;
    }
    
    /* 确保hover效果在移动设备上也能工作 */
    .footer-social li.weixin-hover:hover .weixin-qrcode,
    .footer-social li.weixin-hover:active .weixin-qrcode {
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    /* 覆盖桌面端的最后一个图标规则，确保手机端所有二维码都在右侧 */
    .footer-social li.weixin-hover:last-child .weixin-qrcode {
        left: 100% !important;
        right: auto !important;
        margin-left: 10px;
        margin-right: 0;
    }
}

.weixin-qrcode img {
    width: auto;
    height: 120px;
    display: block;
}

.footer-social li.weixin-hover:hover .weixin-qrcode {
    opacity: 1;
    visibility: visible;
}

.footer-subscribe{
    width: 100%;
    position: relative;
    display: inline-block;
}

.footer-subscribe-input{
    width: 100%;
    padding: 10px 15px 10px 15px;
    border: transparent;
    background-color: var(--font-white);
    height: 48px;
}

.footer-subscribe button{
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--font-white);
    background-color: var(--theme-color-1);
    position: absolute;
    top: 0;
    right: 0;
    border: none;
}

.footer-bottom ul li{
    margin-left: 15px;
}

.footer-bottom ul li:first-child{
    margin-left: 0px;
}

/* home */
.banner-section{
    width: 100%;
    height: 500px;
    position: relative;
    background: linear-gradient(90deg, #002856 /* #203864 */ 33.26%, rgba(0, 0, 0, 0.4) 100.76%), url('../image/banner-bg.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    display: inline-block;
}

/* 
.banner-section-base{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 50%;
    background: url('../image/trans_banner3.png');
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
}
*/

.banner-content-wrapper{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    z-index: 2;
    text-align: center;
}

.banner-content-wrapper h2{
    font-size: 22px;
    line-height: 32px;
    color: var(--theme-color-2);
    margin-bottom: 30px;
}

.banner-content-wrapper h1{
    font-size: 72px;
    line-height: 96px;
    color: var(--font-white);
    margin-bottom: 30px;
    font-weight: bold;
}

.banner-content-wrapper h4{
    font-size: 15px;
    line-height: 1.5;
    color: var(--font-white);
    margin-bottom: 30px;
}

.banner-btns{
    display: flex;
    align-items: center;
}

.banner-btns a{
    margin-right: 15px;
}

.searchdomain-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
}

.searchdomain-wrapper h4{
    font-size: 24px;
    line-height: 29px;
    margin-bottom: 20px;
    color: var(--heading-color);
    text-align: center;
}

.searchdomain-input-group{
    width: 100%;
    position: relative;
    display: flex;
}

.searchdomain-input{
    width: 100%;
    padding: 10px 20px;
    height: 60px;
    display: flex;
    align-items: center;
    box-shadow: var(--box-shadow);
    border: none;
    padding-right: 24%;
}

.searchdomain-input-btns{
    position: absolute;
    right: 0;
    top: 0;
    z-index: 10;
}

.searchdomain-btn{
    padding: 10px 20px;
    height: 60px;
    background-color: var(--theme-color-2);
    color: var(--font-white);
    border: none;
}

.searchdomain-input-btns select{
    padding: 5px 15px;
    border: none;
    border-left: 1px solid #ddd;
}

.searchdomain-options{
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
}

.searchdomain-options ul {
    display: flex;
    align-items: center;
    justify-content: center;
}

.searchdomain-options ul li{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px 30px 0px 20px;
    border-right: 1px solid #ddd;
}

.searchdomain-options ul li:first-child{
    padding-left: 0;
}

.searchdomain-options ul li:last-child{
    padding-right: 0;
    border: none;
}

.searchdomain-options ul li h2{
    font-size: 24px;
    line-height: 32px;
    margin: 0px 10px;
}

.searchdomain-options ul li.isblack h2{
    color: rgba(0, 0, 0, 1);
}

.searchdomain-options ul li.isblue h2{
    color: rgba(44, 75, 185, 1);
}

.searchdomain-options ul li.isorange h2{
    color: rgba(210, 132, 15, 1);
}

.searchdomain-options ul li.isgreen h2{
    color: rgba(46, 174, 1, 1)
}

.searchdomain-options ul li.isvoilet h2{
    color: rgba(152, 71, 255, 1)
}

.section-heading-wrapper {
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.section-heading-wrapper.center{
    text-align: center;
}

.section-heading-wrapper.left{
    text-align: left;
}

.section-main-heading{
    font-size: 32px;
    line-height: 39px;
    margin-bottom: 10px;
    color: var(--heading-color);
}

.section-h4-heading{
    font-size: 18px;
    line-height: 25px;
    color: var(--theme-color-2);
    margin-bottom: 5px;
}

.section-heading-description{
    margin-bottom: 0;
}

.whychoose-card{
    width: 100%;
    height: 100%;
    padding: 20px 0px;
    position: relative;
    display: inline-block;
    box-shadow: var(--box-shadow);
}

.whychoose-icon img{
    width: 50px;
}

.whychoose-icon{
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 5px 20px;
    border-left: 3px solid var(--theme-color-4);
}

.whychoose-info{
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 5px 20px;
}

.whychoose-info h3{
    font-size: 18px;
    line-height: 22px;
    color: var(--heading-color);
    margin-top: 10px;
    margin-bottom: 10px;
}

.choosehost-content{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}

.choosehost-content h4{
    font-size: 18px;
    line-height: 25px;
    color: var(--theme-color-2);
    margin-bottom: 5px;
}

.choosehost-content h2{
    font-size: 32px;
    line-height: 39px;
    margin-bottom: 20px;
    color: var(--heading-color);
}

/*
.choosehost-content p{
    margin-bottom: 30px;
}*/

.choosehost-content ul li{
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.choosehost-content ul li::before{
    content: '\f058';
    position: relative;
    display: inline-block;
    font-family: Fontawesome;
    margin-right: 10px;
	color: var(--theme-color-4);
}

.choosehost-image-left{
    height: 400px;
    width: 100%;
    position: relative;
    display: inline-block;
    padding-bottom: 5rem;
}

.choosehost-image-left img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.choosehost-image-right{
    padding-top: 5rem;
    height: 400px;
    width: 100%;
    position: relative;
    display: inline-block;
}

.choosehost-image-right img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.choosehost-images{
    width: 100%;
    position: relative;
    display: inline-block;
}

.exp-circle{
    width: 125px;
    height: 125px;
    border-radius: 50%;
    background-color: var(--theme-color-2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px;
    border: 8px solid #fff;
    text-align: center;
    position: absolute;
    bottom: 0;
    left: -5rem;
}

.exp-circle h4{
    font-size: 24px;
    line-height: 29px;
    color: var(--font-white)
}

.exp-circle p{
    font-size: 10px;
    line-height: 12px;
    color: var(--font-white)
}

.choosehost-images-bg-dot{
    position: absolute;
    top: -35px;
    left: -35px;
    z-index: -1;
}

.nav-pills{
    justify-content: center;
    width: fit-content;
    margin: auto;
    margin-bottom: 3rem !important;
    box-shadow: var(--box-shadow);
}

.nav-pills .nav-link{
    border-radius: 0 !important;
    height: 50px;
    padding: 10px 25px;
    color: inherit;
}

.nav-pills .nav-link.active, .nav-pills .show>.nav-link{
    background-color: var(--theme-color-2);
}

.pricing-card{
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 30px 2rem;
    text-align: center;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.pricing-card-top h3{
    font-size: 28px;
    line-height: 34px;
    color: var(--heading-color);
    margin-bottom: 15px;
}

.pricing-card-top h2{
    font-size: 32px;
    line-height: 39px;
    color: var(--theme-color-1);
    margin-bottom: 10px;
}

.pricing-card-top span{
    font-size: 16px;
    line-height: 19px;
    margin-left: 5px;
    color: var(--font-color);
}

.pricing-card-top{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.pricing-card-middle ul li{
    margin-bottom: 15px;
}

.pricing-card-bottom{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-top: 10px;
}

.pricing-card-bottom a{
    margin: auto;
}

.pricing-card.center{
    background-color: var(--theme-color-5);
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.pricing-card.center .pricing-card-top h3{
    color: var(--font-white);
}

.pricing-card.center .pricing-card-top h2{
    color: var(--font-white);
}

.pricing-card.center .pricing-card-top span{
    color: var(--font-white);
}

.pricing-card.center .pricing-card-top p{
    color: var(--font-white);
}

.pricing-card.center .pricing-card-middle p{
    color: var(--font-white);
}

.get-start-content{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.get-start-content h3{
    font-size: 28px;
    line-height: 34px;
    margin-bottom: 15px;
    color: var(--heading-color);
}

.get-start-content ul{
    margin-bottom: 20px;
}

.get-start-content ul li{
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.get-start-content ul li::before{
    content: '\f058';
    position: relative;
    display: inline-block;
    font-family: Fontawesome;
    margin-right: 10px;
}

.get-start-content.left ul li::before{
    color: var(--theme-color-2);
}

.get-start-content.right ul li::before{
    color: var(--theme-color-4);
}

.get-start-img{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.get-start-img img{
    width: 80%;
}

.managed{
    background: #001226;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.managed-base{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 60%;
    background: url('../image/trans_proj.png');
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
}

.managed-content-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    text-align: center;
}

.managed-content-wrapper h4{
    font-size: 18px;
    line-height: 30px;
    color: var(--font-white);
    margin-bottom: 10px;
}

.managed-content-wrapper h2{
    font-size: 28px;
    line-height: 45px;
    color: var(--font-white);
    margin-bottom: 15px;
}

.managed-content-wrapper p{
    color: var(--font-white);
    margin-bottom: 15px;
}

.managed-content-wrapper a{
    margin: auto;
}

.install-grid-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
}

.install-grid-wrapper::after{
    width: 100%;
    height: 365px;
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    background-color: var(--theme-color-5);
    border-radius: 10px;
    z-index: -1;
}

.install-carosel-item{
    background: #FFFFFF;
    box-shadow: 0px 5px 10px rgba(102, 143, 191, 0.4);;
    border-radius: 10px;
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    text-align: center; 
    margin: 70px 0px 60px 0px;
}

.install-carosel-item img{
    margin: auto;
    margin-bottom: 20px;
}

.install-carosel-item h3{
    font-size: 18px;
    line-height: 22px;
    color: var(--heading-color);
    margin-bottom: 15px;
}

.read-more-link{
    font-family: 'Inter-Medium';
    color: var(--theme-color-4);
    margin-top: 15px;
    width: 100%;
    display: inline-block;
}

.install-grid-sliders{
    width: 95%;
}

.install-grid-content{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    padding: 30px;
    position: relative;
}

.install-grid-content h2{
    font-size: 24px;
    line-height: 30px;
    color: var(--font-white);
}

.carosel-nav-left-install{
    background: #668FBF;
    box-shadow: 2px 15px 80px rgba(102, 143, 191, 0.4);
    border-radius: 10px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: none;
    font-size: 24px;
    margin-right: 10px;
    color: var(--font-white);
}

.carosel-nav-right-install{
    background: #ffffff;
    box-shadow: 2px 15px 80px rgba(102, 143, 191, 0.4);
    border-radius: 10px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: none;
    font-size: 24px;
}

.install-arros{
    display: flex;
    margin-top: 8rem;
}

.section-small-heading{
    font-size: 18px;
    line-height: 25px;
    color: var(--theme-color-2);
    margin-bottom: 5px;
}

.section-heading-wrapper.right{
    text-align: right;
}

.carosel-nav-left-testi{
    background: #668FBF;
    box-shadow: 2px 15px 80px rgba(102, 143, 191, 0.4);
    border-radius: 10px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: none;
    font-size: 24px;
    margin-right: 10px;
    color: var(--font-white);
    position: absolute;
    top: 45%;
    left: -20px;
}

.carosel-nav-right-testi{
    background: #ffffff;
    box-shadow: 2px 15px 80px rgba(102, 143, 191, 0.4);
    border-radius: 10px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: none;
    font-size: 24px;
    position: absolute;
    top: 45%;
    right: -20px;
}


.testi-carosel-item{
    background: #FFFFFF;
    border: 1px solid #DDDDDD;
    border-radius: 10px;
    width: 100%;
    height: 100%;
    padding: 30px 3rem;
}

.testi-carosel-item-inner{
    width: 100%;
    height: 100%;
    display: flex;
}

.testi-carosel-item-inner img{
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    object-fit: cover;
    min-width: 90px;
}

.testi-author-info{
    margin-right: 30px;
    width: 40%;
    text-align: center;
}

.testi-carosel-item-inner h3{
    font-size: 16px;
    line-height: 24px;
    color: var(--heading-color);
    margin: 15px 0px 5px 0px;
    text-align: center;
}

.testi-author-info p{
    text-align: center;
}

.testi-content ul li{
    display: inline-block;
    color: #E2B515;
}

.testi-content ul{
    margin-bottom: 10px;
}

.testi-content p{  
    text-align: left;
}

.blog-img-big{
    width: 100%;
    height: 390px;
    position: relative;
    display: inline-block;
    object-fit: cover;
}

.blog-longcontent-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
}

.blog-longcontent-layer{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70%;
    background-color: var(--font-white);
    padding: 25px 20px 20px 20px;
}

.blog-longcontent-author{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.blog-longcontent-author-info{
    display: flex;
    align-items: center;
}

.bla-img{
    width: 40px;
    height: 40px;
    min-width: 40px;
    position: relative;
    display: inline-block;
    margin-right: 10px;
}

.blog-longcontent-layer a h3{
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 15px;
    color: var(--heading-color);
}

.bla-img img{
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.bla-details h4{
    font-size: 14px;
}

.bla-details p{
    font-size: 12px;
}

.blog-longcontent-author-likes{
    display: flex;
    align-items: center;
}

.blog-longcontent-author-likes i{
    margin-right: 5px;
}

.blog-longcontent-author-likes p{
    font-size: 12px;
}

.blog-badge{
    position: absolute;
    top: -20px;
    padding: 8px 20px;
    background-color: var(--theme-color-3);
    color: var(--font-white);
    left: 0;
    font-size: 12px;
    line-height: 18px;
}

.blog-shortcontent-wrapper{
    width: 100%;
    position: relative;
    display: flex;
    padding: 20px;
    background-color: var(--font-white);
    box-shadow: var(--box-shadow);
}

.blog-shortcontent-img{
    width: 110px;
    position: relative;
    height: 110px;
    display: inline-block;
    margin-right: 20px;
    min-width: 110px;
}

.blog-shortcontent-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-shortcontent-info a h3{
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 15px;
    color: var(--heading-color);
}

.blog-shortcontent-img .blog-badge{
    bottom: 0;
    top: auto;
}

.launch{
    width: 100%;
    position: relative;
    display: inline-block;
    background-image: url('../image/launch-divider-bg1.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.launch-content-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    text-align: center;
}

.launch-content-wrapper h2{
    font-size: 32px;
    line-height: 40px;
    text-align: center;
    margin-bottom: 15px;
    color: var(--font-white);
}

.launch-content-wrapper p{
    margin-bottom: 30px;
    color: var(--font-white);
}

.launch-content-wrapper a{
    margin: auto;
}

.page-banner{
    width: 100%;
    padding: 4rem 0;
    background: url('../image/page-bg.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    display: inline-block;
    height: 300px;
}

.page-banner-wrapper{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.page-banner-wrapper-center{
    margin: 0px 20px;
    padding: 0px 20px;
    border-left: 1px solid #fff;
    position: relative;
    display: inline-block;
}

.page-banner-wrapper-left{
    width: 50%;
    flex: 50%;
    text-align: right;
    padding: 20px;
}

.page-banner-wrapper-right{
    width: 50%;
    flex: 50%;
    padding: 20px;
}

.page-banner-wrapper-left h4{
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--theme-color-2);
}

.page-banner-wrapper-left h3{
    font-size: 32px;
    margin-bottom: 10px;
    color: var(--font-white);
}

.page-banner-wrapper-right p{
    color: var(--font-white);
}

.fun-factor-heading h3{
    text-align: center;
    font-size: 20px;
}

.fun-factor-wrapper{
    width: 100%;
    height: 100%;
    text-align: center;
    padding: 30px;
}

.fun-factor-wrapper h2{
    color: var(--theme-color-3);
    font-size: 28px;
    margin-bottom: 10px;
}

.fun-factor-wrapper p{
    color: var(--heading-color);
}

.otherservices-left-wrapper ul{
    width: 100%;
    float: left;
}

.otherservices{
    background: linear-gradient(0deg, rgba(7, 30, 64, 0.75), rgba(7, 30, 64, 0.75)), url('../image/managed-divider-bg.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    width: 100%;
    position: relative;
}

.otherservices-linner{
    text-align: center;
    width: 100%;
    height: 100%;
    display: inline-block;
    padding: 30px;
    background-color: rgb(255 255 255 / 10%);
    border-radius: 10px;
}

.otherservices-linner img{
    width: 50px;
}

.otherservices-linner h3{
    margin: 15px;
    color: var(--font-white);
    font-size: 18px;
}

.otherservices-linner p{
    color: var(--font-white);
}

.otherservices-right-wrapper{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.otherservices-right-wrapper h2{
    font-size: 32px;
    color: var(--font-white);
    margin-bottom: 20px;
}

.otherservices-right-wrapper p{
    color: var(--font-white);
}

.ourteam-card{
    width: 100%;
    height: 100%;
    position: relative;
    display: inline-block;
}

.ourteam-image{
    width: 100%;
    height: 200px;
    position: relative;
    display: inline-block;
}

.ourteam-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.ourteam-info{
    padding: 20px;
    width: 100%;
    position: relative;
    display: inline-block;
    text-align: center;
}

.ourteam-info h3{
    font-size: 16px;
    margin-bottom: 10px;
    text-align: center;
}

.ourteam-social{
    position: absolute;
    bottom: 0;
    left: 50%;
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    transition: ease-in-out 0.3s;
}

.ourteam-image:hover .ourteam-social{
    transition: ease-in-out 0.3s;
    opacity: 1;
    visibility: visible;
}

.ourteam-social li{
    display: inline-block;
    margin: 0px 5px;
}

.ourteam-social li a{
    background-color: var(--theme-color-3);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: var(--font-white);
}

.chooseinfo-icon{
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--font-white);
    margin: 0px 20px;
    font-size: 20px;
}

.chooseinfo-icon.blue{
    background-color: #2C4BB9;
}

.chooseinfo-icon.orange{
    background-color: #D2840F;
}

.chooseinfo-icon.green{
    background-color: #2EAE01;
}

.contact-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 30px;
    text-align: center;
}

.contact-wrapper h3{
    font-size: 20px;
    color: var(--heading-color);
    margin-bottom: 10px;
}

.contact-wrapper .chooseinfo-icon{
    margin: auto;
    margin-bottom: 20px;
}

.contact-form-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
}

.contact-form-input{
    width: 100%;
    border: 1px solid #DDDDDD;
    padding: 10px 15px;
    border-radius: 6px;
}

.blog-sidebar{
    width: 100%;
    position: relative;
    display: inline-block;
}

.blog-sidebar-search{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

.blog-sidebar-search-input{
    width: 100%;
    position: relative;
    display: inline-block;
    border: 1px solid #DDDDDD;
    border-radius: 6px;
    padding: 10px 52px 10px 10px;
    height: 52px;
}

.bs-btn{
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    right: 0;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    border: navajowhite;
    background-color: var(--theme-color-2);
    color: var(--font-white);
}

.blog-sidebar-categories{
    width: 100%;
    display: inline-block;
    position: relative;
    padding: 25px;
    border-radius: 10px;
    background-color: var(--theme-color-4);
    margin-bottom: 30px;
}

.blog-sidebar-heading{
    font-size: 20px;
    margin-bottom: 20px;
    /* color: var(--font-white); */
}

.blog-sidebar-categories ul li{
    margin: 10px 0px;
    color: var(--font-white);
}

.font-white{
    color: var(--font-white);   
}

.blog-sidebar-popularpost ul li{
    margin-bottom: 15px;
}

.bsp-inner-wrapper{
    display: flex;
}

.bsp-inner-image{
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 10px;
    margin-right: 15px;
}

.bsp-inner-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.bsp-inner-content a{
    font-size: 12px;
    font-family: 'Inter-Medium';
    height: 32px;
    display: inline-block;
    overflow: hidden;
    line-height: 15px;
}

.bsp-inner-content p{
    font-size: 10px;
    line-height: 15px;
}

.blog-sidebar-tag ul li{
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 10px;
}

.blog-sidebar-tag ul li a{
    padding: 5px 10px;
    background-color: #fff;
    border: 1px solid #DDDDDD;
    border-radius: 6px;
    display: inline-block;
}

.blogdetail-top-left h3{
    font-size: 28px;
    margin: 10px 0px;
}

.blogdetail-top-left ul li{
    display: inline-block;
    margin-right: 10px;
}

.blogdetail-top-left ul li:first-child{
    color: var(--theme-color-1);
}

.blogdetail-top-left h4{
    font-size: 14px;
}

.blogdetail-top-right h4{
    font-size: 14px;
    margin-top: 20px;
}

.blogdetail-top-right i{
    margin-right: 10px;
}

.blogdetail-top-right img{
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.blog-detail-innercontent p{
    margin-bottom: 15px;
}

.blog-detail-innercontent h3{
    font-size: 20px;
    margin-bottom: 20px;
}

.blog-detail-innercontent blockquote{
    padding: 30px;
    width: 100%;
    text-align: center;
    position: relative;
    display: inline-block;
    background-color: var(--theme-color-3);
    border-radius: 10px;
    font-family: 'Inter-Medium';
    color: var(--font-white);
}

.blogdetail-post-share{
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-top: 1px solid #ddd;
    margin-top: 2rem;
    padding-top: 1rem;
    border-bottom: 1px solid #ddd;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
}

.blogdetail-post-left ul li{
    display: inline-block;
    margin: 0px 5px;
}

.blogdetail-post-left ul li a{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--theme-color-4);
    color: var(--font-white);
}

.blogdetail-post-left{
    text-align: center;
    font-family: 'Inter-SemiBold';
}

.comments-heading{
    margin-bottom: 2rem !important;
}

.blogdetail-post-comment{
    display: flex;
    width: 100%;
    margin-bottom: 3rem;
}

.blogdetail-post-comment-avatar{
    width: 100px;
    height: 100px;
    min-width: 100px;
    margin-right: 15px;
}

.blogdetail-post-comment-avatar img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.blogdetail-post-comment-info h3{
    font-size: 16px;
    margin-bottom: 10px;
}

.posteddate-reply{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.posteddate-reply a{
    font-family: 'Inter-Medium';
    color: var(--theme-color-1);
}

/*分页*/
.page-num:not(:disabled) {
	cursor: pointer;
}
.page-num, .page-link {
	position: relative;
	display: block;
	padding: .5rem .75rem;
	margin-left: -1px;
	line-height: 1.25;
	color: var(--theme-color-2);
	background-color: #fff;
	border: 1px solid #dee2e6;
}
a.page-num:hover, .page-link:hover {
	text-decoration: none;
}
.page-num-current {
	z-index: 1;
	color: #fff;
	background-color: var(--theme-color-2);
	border-color: var(--theme-color-2);
}
.page-num-current:hover {
	color: #fff;
}
/*其他*/
.pages {
	min-height: 500px;
	padding-top: 10px;
	padding-bottom: 10px;
}
.code, .code img {
	height: 100px;
}
.position, .position a {
	color: #999;
}
.content {
	color: #666;
	line-height: 2;
}
.content img, .content iframe {
	max-width: 100% !important;
}
.content li {
	list-style: disc outside none;
	margin-left: 20px;
}
.container {
	width: 100%;
	padding-right: 15px;
	padding-left: 15px;
	margin-right: auto;
	margin-left: auto;
}

body iframe {
	vertical-align: top;
	display: block;
	border: none;
}

.domain_arrow {
    text-align: center;
    font-size: 24px;
    display: inline-block; /* 使箭头可以作为行内块级元素，更容易控制其位置 */
    transform: rotate(0deg); /* 默认不旋转 */
}  
  
@media (max-width: 768px) {
    .domain_arrow {
        transform: rotate(90deg); /* 旋转90度 */
        transform-origin: center center; /* 从底部中心旋转，使箭头指向下方 */
    }
}

.domain-icon img{
    width: 60px;
}

.value_plus {
    text-align: center;
    font-size: 48px;
    display: inline-block; /* 使箭头可以作为行内块级元素，更容易控制其位置 */
}

.value-icon img{
    width: 60px;
}

.section_top_title {
	font-size: 14pt;
	margin: 0px 20px 10px 20px;
	line-height: 1;
}


/* 滚动容器和子元素 */

.scroll-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.scroll-wrapper {
    display: flex;
    animation: scroll 40s linear infinite;
    gap: 30px;
    width: fit-content;
}

.scroll-item {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    margin: 10px;
    object-fit: contain;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.scroll-item:hover {
    opacity: 1;
    transform: scale(1.1);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50%));
    }
}

.scroll-container::before,
.scroll-container::after {
    content: "";
    position: absolute;
    top: 0;
    height: 100%;
    width: 150px;
    z-index: 2;
}

.scroll-container::before {
    left: 0;
    background: linear-gradient(to right, 
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 0.8) 20%,
        transparent 100%
    );
}

.scroll-container::after {
    right: 0;
    background: linear-gradient(to left,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 0.8) 20%,
        transparent 100%
    );
}

/* 鼠标悬停时暂停动画 */
.scroll-wrapper:hover {
    animation-play-state: paused;
}

.research-areas a,
.related-tools a,
.related-projects a {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: #f8f9fa;
    border-radius: 2rem;
    color: #666;
    text-decoration: none;
    margin: 0.25rem;
}

.research-areas a:hover,
.related-tools a:hover,
.related-projects a:hover {
    background-color: #e9ecef;
    color: #000;
}

/* 标题样式 */
.display-4 {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.2;
}

/* 响应式调整 */
@media (min-width: 992px) {
    .pages {
        padding: 3rem 2rem; /* 在大屏幕上增加内边距 */
    }
}

@media (max-width: 991px) {
    .pages {
        padding: 2rem 1rem; /* 在小屏幕上减少内边距 */
    }
    
    .display-4 {
        font-size: 2rem; /* 在小屏幕上减小标题字号 */
    }
    
    /* Banner区域h1在手机端字体调整 */
    .banner-content-wrapper h1 {
        font-size: 38px !important;
        line-height: 42px !important;
    }
    
    /* sitedesc在手机端字体调整 */
    .sitedesc {
        font-size: 16px !important;
    }
}

/* 博客缩略图样式 */
.blogico img {  /* 针对缩略图容器下的图片 */
    width: 100% !important; /* 强制图片宽度为100% */
    height: auto !important; /* 保持图片比例 */
    max-width: 100% !important; /* 确保图片不会超出容器 */
    object-fit: cover; /* 确保图片填充整个容器 */
    margin-bottom: 2rem; /* 增加底部间距 */
}

.sitedesc {
    font-size: 18px;
    line-height: 1.5;
    color: var(--font-white);
    margin-bottom: 20px;
}

/* 社交分享样式 */
.social-share {
    display: flex;
    align-items: center;
	gap: 10px;
    margin-bottom: 2rem; /* 增加底部间距 */
}

.share-item {
	display: inline-block;
	width: 30px;
	height: 30px;
	background-color: #f0f0f0;
	border-radius: 50%;
	text-align: center;
	line-height: 30px;
	color: #333;
	text-decoration: none;
	position: relative;
}

.share-item:hover {
	background-color: #ddd;
}

.share-item:hover .qrcode-container {
	display: block;
}

/* 特定平台的颜色 */
.share-item .fa-weixin:hover {
    color: #07C160;
}

.share-item .fa-weibo:hover {
    color: #E6162D;
}

.share-item .fa-zhihu:hover {
    color: #0084FF;
}
