:root{--rgb-color-primary:42,171,238}
html{line-height:1.7;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;box-sizing:border-box;font-size:16px;font-family:-apple-system,BlinkMacSystemFont,'Segoe UI','PingFang SC','Hiragino Sans GB','Microsoft YaHei',sans-serif;color:#000;-webkit-font-smoothing:subpixel-antialiased;-moz-osx-font-smoothing:grayscale;font-weight:400;-webkit-tap-highlight-color:transparent;scroll-behavior:smooth}
body,dd,dl,figure,form,h1,h2,h3,h4,h5,h6,input,menu,p{margin:0}
button,input,ol,textarea,ul{margin:0;padding:0}
:after,:before,a,abbr,address,article,aside,body,button,dd,details,div,dl,dt,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,img,input,label,li,main,menu,nav,ol,p,picture,section,select,span,strong,summary,table,td,textarea,th,tr,ul{box-sizing:border-box}
ol li,ul li{list-style:none}
picture{font-size:0;display:block}
a{background-color:transparent;text-decoration:none;-webkit-text-decoration-skip:objects;transition:all ease .15s;color:inherit}
a:hover{outline:0;text-decoration:none;color:rgb(var(--rgb-color-primary))}
a,button,input[type=button],input[type=reset],input[type=submit],summary{cursor:pointer}
audio,video{display:inline-block}
img{border-style:none;max-width:100%}
textarea{resize:vertical}
button,input,select,textarea{font-family:inherit;font-size:100%;line-height:1.15}
a,a:focus,button,button:focus,input,input:focus,optgroup,optgroup:focus,select,select:focus,summary,summary:focus,textarea,textarea:focus{outline:0}
/*return top*/
.return-top{width:70px;height:70px;background:rgba(var(--rgb-color-primary),.5);position:fixed;bottom:1%;right:10px;cursor:pointer;display:none;z-index:1;color:#fff;font-size:12px}
.return-top:hover{background:rgba(var(--rgb-color-primary),1);color:#fff}
.return-top svg{margin-bottom:5px}
.return-top.actived{display:inline-flex;flex-direction:column;justify-content:center;align-items:center}
/*flex*/
.flex{display:flex}
.inline-flex{display:inline-flex}
.flex-direction-row{flex-direction:row}
.flex-direction-column{flex-direction:column}
.flex-wrap-nowrap{flex-wrap:nowrap}
.flex-wrap-wrap{flex-wrap:wrap}
.flex-wrap-reverse{flex-wrap:wrap-reverse}
.flex-justify-start{justify-content:flex-start}
.flex-justify-end{justify-content:flex-end}
.flex-justify-center{justify-content:center}
.flex-justify-around{justify-content:space-around}
.flex-justify-between{justify-content:space-between}
.flex-align-start{align-items:flex-start}
.flex-align-end{align-items:flex-end}
.flex-align-center{align-items:center}

.default-btn{display:inline-flex;justify-content:center;align-items:center;gap:10px;position:relative;padding:15px 30px;border-radius:12px;font-size:15px;line-height:1;font-weight:600;text-decoration:none;white-space:nowrap;cursor:pointer;overflow:hidden;background:#fff;color:#334155}
.default-btn::before{content:"";display:block;position:absolute;left:0;right:0;top:0;bottom:0;width:100%;height:100%;border:1.5px solid #e2e8f0;border-radius:12px}
.default-btn:hover{background:rgba(var(--rgb-color-primary),.03);color:rgb(var(--rgb-color-primary))}
.default-btn:hover::before{border-color:rgb(var(--rgb-color-primary))}
.default-btn.primary-btn{background:rgb(var(--rgb-color-primary));color:#fff;box-shadow:0 4px 14px rgba(var(--rgb-color-primary),.35)}
.default-btn.primary-btn::before{display:none}
.default-btn.primary-btn:hover{background:#229ed9;transform:translateY(-2px);box-shadow:0 8px 24px rgba(var(--rgb-color-primary),.4)}

.container{max-width:1140px;margin:0 auto;padding:0 24px;position:relative;z-index:0}
.module-title{font-size:36px;font-weight:800;text-align:center;margin:0 0 12px}
.module-title:not(:has(+ .module-desc)){margin-bottom:56px}
.module-desc{font-size:16px;color:#64748b;text-align:center;margin-bottom:56px}
body.header-sticky header{position:sticky;left:0;top:0}
header{position:relative;width:100%;height:75px;background:#fff;z-index:999}
header .container{display:flex;justify-content:space-between;align-items:center;gap:10px;height:75px}
header .default-btn{line-height:1}
header .nav-logo{flex-shrink:0;font-size:0}
header .nav-logo .logo-link{display:flex;align-items:center;gap:10px;font-size:22px;font-weight:800;color:#0F172A}
header .nav-logo .logo-link:hover{color:inherit}
header .nav-logo .logo-icon{width:36px;height:36px;border-radius:10px;background:rgb(var(--rgb-color-primary));display:flex;justify-content:center;align-items:center}
header .nav-logo .logo-icon svg{color:#fff}
header .nav-main{display:flex;justify-content:center;align-items:center;transition:all ease .3s;padding: 0 10px}
header .nav-main ul{display:flex;align-items:center;justify-content:center;flex-wrap: wrap;gap:8px;list-style:none;margin:0;padding:0}
header .nav-main ul li{position:relative;}
header .nav-main ul li .nav-link{text-decoration:none;font-size:14px;color:#64748B;padding:8px 16px;border-radius:8px;display:inline-block;white-space:nowrap}
header .nav-main ul li .nav-link:hover{color:rgb(var(--rgb-color-primary));background:rgba(var(--rgb-color-primary),.06)}
header .nav-main ul li.has-submenu:focus-within>.submenu,header .nav-main ul li.has-submenu:hover>.submenu{display:block}
header .nav-main ul .submenu{display:none;position:absolute;left:50%;top:100%;transform:translateX(-50%);min-width:auto;background:#fff;box-shadow:0 4px 16px rgba(0,0,0,.15);border-radius:6px;padding:8px 0;z-index:10}
header .nav-main ul .submenu li{margin:0;text-align:left}
header .nav-main ul .submenu li .nav-link{display:block;padding:8px 24px;font-size:15px;border-bottom:none;transition:all ease .2s}
header .nav-main ul .submenu li .nav-link:hover{background:#f2f8ff;color:rgb(var(--rgb-color-primary))}
footer{padding:64px 0 32px;background:#0F172A;color:#fff;font-size:13px}
footer .container{display:flex;flex-wrap:wrap;justify-content:space-between;align-items:flex-start;gap:48px}
footer .footer-brand{width:340px;max-width:100%}
footer .footer-logo{margin-bottom:16px;display:flex;align-items:center;gap:10px;font-size:18px;font-weight:800;color:#fff}
footer .footer-logo:hover{color:inherit}
footer .footer-logo .logo-icon{width:36px;height:36px;border-radius:10px;background:rgb(var(--rgb-color-primary));display:flex;justify-content:center;align-items:center}
footer .footer-logo .logo-icon svg{color:#fff}
footer .footer-desc{color:rgba(255,255,255,.45)}
footer .footer-cols{width:700px;max-width:100%;display:flex;align-items:flex-start;justify-content:space-between;flex-wrap:wrap;gap:48px}
footer .footer-col{width:200px}
footer .footer-col-title{font-weight:600;margin-bottom:18px}
footer .footer-col-list{list-style:none;padding:0;margin:0}
footer .footer-col-list li{color:rgba(255,255,255,.45)}
footer .footer-col-list li:not(:first-child){margin:10px 0 0}
footer .footer-bottom{margin:48px 0 0;font-size:12px;color:rgba(255,255,255,.3)}
footer .footer-bottom .container{padding-top:24px;border-top:1px solid rgba(255,255,255,.08);justify-content:center}
@media (max-width:769px){
	.module-title{font-size:32px;line-height:40px;margin:0 0 16px}
	.module-desc{font-size:16px;line-height:22px}
	header{height:64px}
	header .container{height:64px;padding-right:60px}
	header .hamburger{position:absolute;display:block;top:50%;right:20px;transform: translateY(-50%);cursor:pointer;caret-color:transparent}
	header .hamburger span{display:block;width:25px;height:3px;background:#222;margin:5px 0;transition:all .3s}
	header .hamburger.actived span:nth-child(1){transform:rotate(-45deg) translate(-5px,6px)}
	header .hamburger.actived span:nth-child(2){opacity:0}
	header .hamburger.actived span:nth-child(3){transform:rotate(45deg) translate(-5px,-6px)}
	header .nav-main{position:fixed;left:0;top:0;bottom:0;width:80%;height:100vh;transform:translateX(-100%);padding:30px 20px 20px 40px;background:#fff;box-shadow:2px 0 5px rgba(0,0,0,.1);overflow-y:scroll;align-items:start;justify-content:start}
	header .nav-main.actived{transform:translateX(0)}
	header .nav-main ul{flex-direction:column;align-items:flex-start}
	header .nav-main ul .submenu{position:static;transform:none;box-shadow:none;display:none}
	header .nav-main ul li.has-submenu:focus-within>.submenu,header .nav-main ul li.has-submenu:hover>.submenu{display:block}
	footer .container{justify-content:center;gap:32px}
	footer .footer-logo{margin-bottom:18px}
	footer .footer-brand{width:510px}
	footer .footer-cols{width:100%;justify-content:center}
	footer .footer-col{width:510px;max-width:100%}
}
@media (min-width:601px){
	body.customize-support.header-sticky header{top:var(--wp-admin--admin-bar--height);}
}


.sidebar{border:1px solid #e5e7eb;border-radius:8px;padding:16px}
.xl-sidebar{margin: 0 auto 16px}
.xl-sidebar .wp-block-heading{font-size: 18px}
.xl-sidebar .xl-recent-posts .item{display:flex;align-items:flex-start;justify-content:space-between;gap:20px;margin:0 0 15px}
.xl-sidebar .xl-recent-posts .item-cont{width:calc(100% - 100px)}
.xl-sidebar .xl-recent-posts .item-cont .item-title{display:block;font-size:14px;font-weight:400;margin:0 0 5px;transition:all ease .2s}
.xl-sidebar .xl-recent-posts .item:hover .item-title{color:rgb(var(--rgb-color-primary))}
.xl-sidebar .xl-recent-posts .item-cont .item-datetime{font-size:14px;color:#6b7280}
.xl-sidebar .xl-recent-posts .item-img{width:80px;height:80px;overflow:hidden;border-radius:8px}
.xl-sidebar .xl-recent-posts .item-img img{width:100%;height:100%;object-fit:cover}
.xl-sidebar .wp-block-tag-cloud{display: flex;align-items: center;justify-content: start;flex-wrap: wrap;row-gap: 10px;column-gap: 5px}
.xl-sidebar .wp-block-tag-cloud a {background: #f0f0f0;color: #2a2e4a;font-size: 14px !important;padding: 5px 10px;border-radius: 4px;transition: all ease .3s}
.xl-sidebar .wp-block-tag-cloud a:hover {background-color: rgb(var(--rgb-color-primary));color: #fff;}

#xl-paginator{display: flex;align-items: center;justify-content: center;flex-wrap: wrap;gap: 10px;margin: 32px auto 16px}
#xl-paginator .pre,
#xl-paginator .aft{width: 66px;height: 32px;border-radius: 6px;color: #2a2e4a;background-color: rgba(42,46,74,.1);text-align: center;font-size: 14px;transition: all ease .3s;line-height: 32px;padding: 0 10px;margin: 0;display: block;text-transform: uppercase}
#xl-paginator .page{height: 32px;width: 32px;border-radius: 6px;text-align: center;line-height: 32px;margin: 0;font-size: 16px;font-weight: 400;border: 1px solid #e9eaec; }
#xl-paginator .page.actived,
#xl-paginator .page:hover{background: rgb(var(--rgb-color-primary));color: #fff;border-color: rgb(var(--rgb-color-primary))}
#xl-paginator .jump-group{margin: 0 10px}
#xl-paginator .jump{width: 40px;padding: 0 5px;border-radius: 6px;border: 1px solid #e9eaec;background: #fff;line-height: 30px}

#bott-banner{background: url("images/bott-banner.jpg") top center;background-size: cover;padding: 40px 0;}
#bott-banner .title{font-size: 20px;line-height: 26px;margin-bottom: 20px;}
#bott-banner .btn{padding: 12px 30px;font-size: 24px;}