@charset "UTF-8";
/*! Created by UICUT.com on 2022/01/01. Contact QQ: 215611388 */
/* ----------------------------------------------------------------- 样式重置 & 常用样式 --------------------------------------------------------------- */
@-webkit-keyframes rotate { 0% { -webkit-transform: rotate(0); transform: rotate(0); }
  100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); } }
@keyframes rotate { 0% { -webkit-transform: rotate(0); transform: rotate(0); }
  100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); } }

@-webkit-keyframes arrowAnimate { from { -webkit-transform: translateY(0px); transform: translateY(0px);
    opacity: 0; }
  to { -webkit-transform: translateY(-15px); transform: translateY(-15px);
    opacity: 1; } }

@keyframes arrowAnimate { from { -webkit-transform: translateY(0px); transform: translateY(0px);
    opacity: 0; }
  to { -webkit-transform: translateY(-15px); transform: translateY(-15px);
    opacity: 1; } }

@-webkit-keyframes bounce { 0%, 20%, 53%, 80%, 100% { -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  40%, 43% { -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0); }
  70% { -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0); }
  90% { -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0); } }

@keyframes bounce { 0%, 20%, 53%, 80%, 100% { -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -o-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  40%, 43% { -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -o-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0); }
  70% { -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -o-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0); }
  90% { -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0); } }

.uc-bounce { -webkit-animation: bounce 1.2s linear infinite; animation: bounce 1.2s linear infinite; }

@-webkit-keyframes flash { 0%, 50%, 100% { opacity: 1; }
  25%, 75% { opacity: 0; } }

@keyframes flash { 0%, 50%, 100% { opacity: 1; }
  25%, 75% { opacity: 0; } }

.uc-flash { -webkit-animation: flash 1.5s linear infinite; animation: flash 1.5s linear infinite; }

.uc-upDown { -webkit-animation: upDown 2s linear infinite; animation: upDown 2s linear infinite; }

@-webkit-keyframes upDown { from { -webkit-transform: translateY(0px); transform: translateY(0px); }
  50% { -webkit-transform: translateY(-5px); transform: translateY(-5px); }
  to { -webkit-transform: translateY(0px); transform: translateY(0px); } }

@keyframes upDown { from { -webkit-transform: translateY(0px); transform: translateY(0px); }
  50% { -webkit-transform: translateY(-5px); transform: translateY(-5px); }
  to { -webkit-transform: translateY(0px); transform: translateY(0px); } }

.uc-LR { -webkit-animation: LR 2s linear infinite; animation: LR 2s linear infinite; }

@-webkit-keyframes LR { from { -webkit-transform: translateX(0px); transform: translateX(0px); }
  to { -webkit-transform: translateX(400px); transform: translateX(400px); } }

@keyframes LR { from { -webkit-transform: translateX(0px); transform: translateX(0px); }
  to { -webkit-transform: translateX(400px); transform: translateX(400px); } }

.uc-swing { -webkit-transform-origin: 50% 0; -ms-transform-origin: 50% 0; transform-origin: 50% 0; }

.uc-swing { -webkit-animation: swing 2s linear infinite; animation: swing 2s linear infinite; }

@-webkit-keyframes swing { 0% { -webkit-transform: rotate(0); transform: rotate(0); }
  25% { -webkit-transform: rotate(-5deg); transform: rotate(-5deg); }
  50% { -webkit-transform: rotate(0); transform: rotate(0); }
  75% { -webkit-transform: rotate(5deg); transform: rotate(5deg); }
  100% { -webkit-transform: rotate(0); transform: rotate(0); } }

@keyframes swing { 0% { -webkit-transform: rotate(0); transform: rotate(0); }
  25% { -webkit-transform: rotate(-5deg); transform: rotate(-5deg); }
  50% { -webkit-transform: rotate(0); transform: rotate(0); }
  75% { -webkit-transform: rotate(5deg); transform: rotate(5deg); }
  100% { -webkit-transform: rotate(0); transform: rotate(0); } }

.uc-breath { -webkit-animation: breath 2s linear infinite; animation: breath 2s linear infinite; }

@-webkit-keyframes breath { from { opacity: 1; }
  50% { opacity: .11; }
  to { opacity: 1; } }

@keyframes breath { from { opacity: 1; }
  50% { opacity: .11; }
  to { opacity: 1; } }

html { line-height: 1.15; -webkit-text-size-adjust: 100%; }

body { margin: 0; }

main { display: block; }

h1 { font-size: 2em; margin: 0.67em 0; }

hr { -webkit-box-sizing: content-box; box-sizing: content-box; height: 0; overflow: visible; }

pre { font-family: monospace,monospace; font-size: 1em; }

a { background-color: transparent; }

abbr[title] { border-bottom: none; text-decoration: underline; -webkit-text-decoration: underline dotted; text-decoration: underline dotted; }

b, strong { font-weight: bolder; }

code, kbd, samp { font-family: monospace,monospace; font-size: 1em; }

small { font-size: 80%; }

sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; }

sub { bottom: -0.25em; }

sup { top: -0.5em; }

img { border-style: none; }

button, input, optgroup, select, textarea { font-family: inherit; font-size: 100%; line-height: 1.15; margin: 0; }

button, input { overflow: visible; }

button, select { text-transform: none; }

button, [type="button"], [type="reset"], [type="submit"] { -webkit-appearance: button; }

button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner { border-style: none; padding: 0; }

button:-moz-focusring, [type="button"]:-moz-focusring, [type="reset"]:-moz-focusring, [type="submit"]:-moz-focusring { outline: 1px dotted ButtonText; }

fieldset { padding: 0.35em 0.75em 0.625em; }

legend { -webkit-box-sizing: border-box; box-sizing: border-box; color: inherit; display: table; max-width: 100%; padding: 0; white-space: normal; }

progress { vertical-align: baseline; }

textarea { overflow: auto; }

[type="checkbox"], [type="radio"] { -webkit-box-sizing: border-box; box-sizing: border-box; padding: 0; }

[type="number"]::-webkit-inner-spin-button, [type="number"]::-webkit-outer-spin-button { height: auto; }

[type="search"] { -webkit-appearance: textfield; outline-offset: -2px; }

[type="search"]::-webkit-search-decoration { -webkit-appearance: none; }

::-webkit-file-upload-button { -webkit-appearance: button; font: inherit; }

details { display: block; }

summary { display: list-item; }

template { display: none; }

[hidden] { display: none; }

html { -webkit-box-sizing: border-box; box-sizing: border-box; font-family: Helvetica, Verdana, "微软雅黑", "Hiragino Sans GB", "Hiragino Sans GB W3", "宋体", Arial, sans-serif; -webkit-text-size-adjust: none; }

*, *::before, *::after { -webkit-box-sizing: inherit; box-sizing: inherit; }

body { font-size: 14px;/* color: #333333*/; background: #ffffff; min-width: 1200px; min-height: 100vh; }

body::-webkit-scrollbar { width: 10px; height: 10px; background-color: #ddd; border-radius: 10px; }

body::-webkit-scrollbar-track { border-radius: 5px; background-color: #ddd; }

body::-webkit-scrollbar-thumb { border-radius: 5px; background-color: rgba(30, 132, 255, 0.6); }

body::-webkit-scrollbar-thumb:hover { background: rgba(30, 132, 255, 0.6); -webkit-transition: 0.3s ease-in-out; transition: 0.3s ease-in-out; }

table { border-collapse: collapse; border-spacing: 0; empty-cells: show; font-size: inherit; }

article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary, audio, canvas, progress, video, body, div, address, blockquote, iframe, ul, ol, dl, dt, dd, li, dl, h1, h2, h3, h4, h5, h6, p, a, pre, table, caption, th, td, form, legend, fieldset, input, button, select, textarea { margin: 0; padding: 0; font-weight: normal; font-style: normal; font-family: inherit; -webkit-box-sizing: border-box; box-sizing: border-box; }

ul, li, ol { list-style: none; line-height: normal; }

i, address, cite, dfn, em, var { font-style: normal; }

input[type=date] { outline: none; border: none; }

a { text-decoration: none; color: #333333; background-color: transparent; -webkit-text-decoration-skip: objects; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }

a:active, a:hover, a:focus { color: #1e84ff; outline-width: 0; }

video { border: none; outline: none; display: block; width: 100%; }

img, input[type=text], input[type=submit], input[type=password], textarea, select, button, footer, header { -webkit-transition: all 0.3s linear; -o-transition: all 0.3s linear; transition: all 0.3s linear; }

input[type=file] { cursor: pointer; }

::-moz-selection { background: #1e84ff; color: #fff; }

::selection { background: #1e84ff; color: #fff; }

::-moz-selection { background: #1e84ff; color: #fff; }

img { width: auto; max-width: 100%; -ms-interpolation-mode: bicubic; }

.uc-content { width: 100%; max-width: 1200px; margin-left: auto; margin-right: auto; }

.uc-show { display: block !important; }

.uc-hide { display: none !important; }

.uc-h98 { width: 100%; height: 98px; }

.uc-bg { background-color: #f6f6f6; }

.uc-b { font-weight: bold; }

.uc-small { font-size: .875em; }

.uc-big { font-size: 1.25em; }

.uc-ma { margin-left: auto; margin-right: auto; }

.uc-lineCenter { text-decoration: line-through; }

.uc-del { text-decoration: line-through; color: #999999; margin-left: 20px; }

.uc-del:first-child { margin-left: 0; }

.animate, .uc-animate, .uc-revealOnScroll { opacity: 0; }

.uc-left { float: left; }

.uc-right { float: right; }

.uc-underline { text-decoration: underline !important; }

.uc-tLeft { text-align: left !important; }

.uc-tCenter { text-align: center !important; }

.uc-tRight { text-align: right !important; }

.uc-icon16 { width: 16px; height: 16px; }

.uc-icon20 { width: 20px; height: 20px; }

.uc-icon24 { width: 24px; height: 24px; }

.uc-icon28 { width: 28px; height: 28px; }

.uc-icon32 { width: 32px; height: 32px; }

.uc-icon36 { width: 36px; height: 36px; }

.uc-icon40 { width: 40px; height: 40px; }

.uc-icon44 { width: 44px; height: 44px; }

.uc-icon48 { width: 48px; height: 48px; }

.uc-icon50 { width: 50px; height: 50px; }

.uc-icon64 { width: 64px; height: 64px; }

.uc-icon70 { width: 70px; height: 70px; }

.uc-icon80 { width: 80px; height: 80px; }

.uc-icon90 { width: 90px; height: 90px; }

.uc-icon100 { width: 100px; height: 100px; }

.uc-icon120 { width: 120px; height: 120px; }

.uc-icon150 { width: 150px; height: 150px; }

.uc-icon200 { width: 200px; height: 200px; }

@font-face { font-family: "uc-font"; src: url("../fonts/uicut-font.eot?t=1645078740157"); src: url("../fonts/uicut-font.eot?t=1645078740157#iefix") format("embedded-opentype"), url("data:application/x-font-woff2;charset=utf-8;base64,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") format("woff2"), url("../fonts/uicut-font.woff?t=1645078740157") format("woff"), url("../fonts/uicut-font.ttf?t=1645078740157") format("truetype"), url("../fonts/uicut-font.svg?t=1645078740157#uc-font") format("svg"); }

.uc-font { font-family: "uc-font" !important; line-height: inherit; font-size: inherit; font-weight: inherit; font-style: inherit; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

.uc-checkbox-circle:before { content: "\e624"; }

.uc-checkbox-circle-on:before { content: "\e64f"; }

.uc-checkbox:before { content: "\e684"; }

.uc-checkbox-on:before { content: "\e67d"; }

.uc-checkbox-on-plain:before { content: "\e683"; }

.uc-radio-on:before { content: "\e7b3"; }

.uc-radio:before { content: "\e7b5"; }

.uc-arrow-left:before { content: "\e75b"; }

.uc-arrow-right:before { content: "\e75c"; }

.uc-arrow-down:before { content: "\e615"; }

.uc-arrow-top:before { content: "\e75d"; }

.uc-arrow-right2:before { content: "\e6ae"; }

.uc-arrow-left2:before { content: "\e6d6"; }

.uc-arrow-down2:before { content: "\e6a4"; }

.uc-arrow-top2:before { content: "\e6b2"; }

.uc-next:before { content: "\e600"; }

.uc-prev:before { content: "\e601"; }

.uc-add:before { content: "\e672"; }

.uc-reduce:before { content: "\e614"; }

.uc-menu:before { content: "\e6a9"; }

.uc-close:before { content: "\e67f"; }

.uc-search:before { content: "\e66f"; }

.uc-qq:before { content: "\e62d"; }

.uc-qq2:before { content: "\e657"; }

.uc-call2:before { content: "\e62c"; }

.uc-weixin2:before { content: "\e6b3"; }

.uc-weixin:before { content: "\e653"; }

.uc-call:before { content: "\e674"; }

.uc-arrow { position: relative; padding-right: 30px; }

.uc-arrow:after { content: '\e75c'; font-family: 'uc-font'; font-size: 1.4em; right: -10px; color: #999999; position: absolute; top: 50%; -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%); }

.uc-flex { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; -ms-flex-wrap: wrap; flex-wrap: wrap; }

.uc-flex.start { -webkit-box-pack: start; -ms-flex-pack: start; justify-content: flex-start; }

.uc-flex.end { -webkit-box-pack: end; -ms-flex-pack: end; justify-content: flex-end; }

.uc-flex.center { -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; }

.uc-flex-col { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-line-pack: center; align-content: center; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; }

.uc-flex-col.start { -ms-flex-line-pack: start; align-content: start; -webkit-box-pack: start; -ms-flex-pack: start; justify-content: flex-start; }

.uc-flex-col.end { -ms-flex-line-pack: end; align-content: end; -webkit-box-pack: end; -ms-flex-pack: end; justify-content: flex-end; }

.uc-flex-col.center { -ms-flex-line-pack: center; align-content: center; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; }

textarea { min-height: 120px; height: auto; -webkit-box-sizing: border-box !important; box-sizing: border-box !important; width: 100%; }

input:-moz-placeholder { color: #ddd; }

::-webkit-input-placeholder { color: #ddd; }

input[type=text], input[type=password] { -webkit-appearance: none; }

[type=submit] { outline: none; }

[type=submit]:hover { opacity: .8; }

button { margin: 0; padding: 0; background: none; line-height: inherit; font-size: inherit; border: none; color: inherit; appearance: none; -webkit-appearance: none; -moz-appearance: none; -ms-appearance: none; -o-appearance: none; }

button:after { display: none; }

.uc-input, .uc-select, .uc-button, .uc-textarea { width: 100%; border: #eeeeee 1px solid; outline: none; height: 30px; line-height: 28px; border-radius: 5px; padding: 0 10px; }

.uc-input:hover, .uc-input:focus, .uc-select:hover, .uc-select:focus, .uc-button:hover, .uc-button:focus, .uc-textarea:hover, .uc-textarea:focus { border-color: #1e84ff; }

.uc-btn { cursor: pointer; outline: none; -webkit-transition: all 0.3s linear; -o-transition: all 0.3s linear; transition: all 0.3s linear; display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -ms-flex-align: center; align-items: center; height: 30px; border-radius: 5px; padding: 0 10px; }

.uc-btn img { margin-right: 10px; }

.uc-btn:hover { opacity: .8; }

.uc-btn.blue { background-color: #1e84ff; border: #1e84ff 1px solid; color: #fff; }

.uc-btn.blue-linear { background: -webkit-gradient(linear, left top, right top, from(rgba(30, 132, 255, 0.7)), to(#1e84ff)); background: -webkit-linear-gradient(left, rgba(30, 132, 255, 0.7) 0%, #1e84ff 100%); background: -o-linear-gradient(left, rgba(30, 132, 255, 0.7) 0%, #1e84ff 100%); background: linear-gradient(to right, rgba(30, 132, 255, 0.7) 0%, #1e84ff 100%); color: #fff; }

.uc-btn.blue-plain { color: #1e84ff; border: #1e84ff 1px solid; }

.uc-btn.blue-plain:hover { opacity: 1; background-color: #1e84ff; color: #fff; }

.uc-btn.white { background-color: #fff; border: #fff 1px solid; color: #333333; }

.uc-btn.white-linear { background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0.7)), to(#fff)); background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0.7) 0%, #fff 100%); background: -o-linear-gradient(left, rgba(255, 255, 255, 0.7) 0%, #fff 100%); background: linear-gradient(to right, rgba(255, 255, 255, 0.7) 0%, #fff 100%); color: #333333; }

.uc-btn.white-plain { color: #fff; border: #fff 1px solid; }

.uc-btn.white-plain:hover { opacity: 1; background-color: #fff; color: #333333; }

.uc-btn.gray { background-color: #999999; border: #999999 1px solid; color: #fff; }

.uc-btn.gray-linear { background: -webkit-gradient(linear, left top, right top, from(rgba(153, 153, 153, 0.7)), to(#999999)); background: -webkit-linear-gradient(left, rgba(153, 153, 153, 0.7) 0%, #999999 100%); background: -o-linear-gradient(left, rgba(153, 153, 153, 0.7) 0%, #999999 100%); background: linear-gradient(to right, rgba(153, 153, 153, 0.7) 0%, #999999 100%); color: #fff; }

.uc-btn.gray-plain { color: #999999; border: #999999 1px solid; }

.uc-btn.gray-plain:hover { opacity: 1; background-color: #999999; color: #fff; }

.uc-btn img { margin-right: 10px; }

.uc-phColor { color: #ddd; }

.uc-blue { color: #1e84ff !important; }

.uc-white { color: #fff !important; }

.uc-gray { color: #999999 !important; }

.uc-tag { display: inline-block; border-radius: 3px; padding: 0 5px; }

.uc-tag:empty { display: none; }

.uc-tag.blue { background-color: #1e84ff; color: #fff; }

.uc-tag.white { background-color: #fff; color: #333333; }

.uc-tag.gray { background-color: rgba(153, 153, 153, 0.4); color: #fff; }

/* ---------------------------------------------------------------------- 通用样式  -------------------------------------------------------------------- */
header { background-color: rgba(0, 0, 0, 0.3); position: fixed; z-index: 888; left: 0; width: 100%; top: 0; }

header .uc-content { position: relative; height: 60px; }

header .logo { position: absolute; top: 50%; -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%); left: 0; }

header .btn-lang { position: absolute; top: 50%; -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%); right: 0; border-radius: 24px; min-width: 70px; }

header nav { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -ms-flex-align: center; align-items: center; height: 60px; }

header nav a { color: #fff; padding: 0 1em; }

header .menu { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -ms-flex-align: center; align-items: center; height: 60px; }

header .menu a { color: #fff; padding: 0 1em; }

header .menu li { position: relative; line-height: 60px; }

header .menu li:hover .sub-menu { display: block; }

header .menu .sub-menu { display: none; position: absolute; left: 50%; -webkit-transform: translateX(-50%); -ms-transform: translateX(-50%); transform: translateX(-50%); top: 60px; width: 12em; line-height: 40px; z-index: 99; background-color: rgba(0, 0, 0, 0.3); }

header .menu .sub-menu a { display: block; text-align: center; }

header .menu .sub-menu a:hover { background-color: #1e84ff; color: #fff; }

header.style-white { background-color: #fff; }

header.style-white .menu a { color: #333333; }

header.style-white .menu .sub-menu { background-color: #fff; }

header.style-white .menu .sub-menu a { color: #333333; }

header.style-white .menu .sub-menu a:hover { color: #fff; }

header.style-white .btn-lang { border-color: #333333; color: #333333; }

/*!
* -----------------------------------------------------------------------------------------------------------------------------------------------------
* ---------------------------------------------                            各页面样式                           ----------------------------------------
* -----------------------------------------------------------------------------------------------------------------------------------------------------
* --------------------------------------------- 						 可拆分到独立页面中， 					---------------------------------------
* --------------------------------------------- 		  如无必要，别拆。方便后期配合开发新页面或维护修改 			---------------------------------------
* -----------------------------------------------------------------------------------------------------------------------------------------------------
*/
/* |01|首页|home| */
.uc-home #mySwiper { overflow: hidden; width: 100%; height: 100vh; }

.uc-home #mySwiper > .swiper-wrapper { height: 50vh; }

.uc-home #mySwiper > .swiper-wrapper > .swiper-slide { width: 100%; height: 100vh; overflow: hidden; position: relative; background-color: #fff; }

.uc-home .title { color: #fff; text-align: center; }

.uc-home .title h3 { font-size: 40px; /*letter-spacing: 5px;*/ padding-left: 5px; }

.uc-home .title p { font-size: 20px; /*letter-spacing: 5px;*/ padding-left: 5px; margin-top: 20px; }

.uc-home .title.style4 { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: end; -ms-flex-align: end; align-items: flex-end; }

.uc-home-1 { text-align: center; color: #fff; }

.uc-home-1 h5 { font-size: 36px; /*letter-spacing: 5px;*/ padding-left: 5px; }

.uc-home-1 h2 { font-size: 60px; /*letter-spacing: 5px;*/ padding-left: 5px; margin-top: 2vh; margin-bottom: 2vh; }

.uc-home-1 .btn-more { color: #fff; font-size: 14px; }

.uc-home-1 .over { /*background-color: rgba(0, 0, 0, 0.4);*/ width: 100%; height: 100%; z-index: 9; position: absolute; left: 0; top: 0; display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; }

.uc-home-1 .over.style4 { text-align: left; padding: 12vh 5vw 10vh; -webkit-box-pack: end; -ms-flex-pack: end; justify-content: flex-end; }

.uc-home-1 .over.style4 h2 { font-size: 50px; }

.uc-home-1 .over.style4 h5 { font-size: 36px; }

.uc-home-1 .video-box { width: 100%; height: 100%; overflow: hidden; background-color: #000; position: relative; }

.uc-home-1 video { display: block; width: 135%; height: 135%; position: absolute; left: 50%; top: 50%; -webkit-transform: translate(-50%, -50%); -ms-transform: translate(-50%, -50%); transform: translate(-50%, -50%); }

.uc-home-1 .uc-content { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; padding: 12vh 0 5vh; height: 100vh; color: #fff; }

.uc-home-1 .btm { background-color: rgba(255, 255, 255, 0.2); border-radius: 60px; padding: 10px 30px 10px 32px; font-size: 18px; letter-spacing: 2px; line-height: 30px; }

.uc-home-2, .uc-home-3 { position: relative; }

.uc-home-2 .uc-content, .uc-home-3 .uc-content { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; padding: 12vh 0 5vh; height: 100vh; color: #fff; }

.uc-home-2 .bottom-box, .uc-home-2 .list, .uc-home-2 .name, .uc-home-3 .bottom-box, .uc-home-3 .list, .uc-home-3 .name { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; -webkit-box-align: start; -ms-flex-align: start; align-items: flex-start; }

.uc-home-2 .bottom-box, .uc-home-3 .bottom-box { -webkit-box-align: start; -ms-flex-align: start; align-items: flex-start; position: relative; z-index: 9; margin-top: 50px; }

.uc-home-2 .name, .uc-home-3 .name { -webkit-box-pack: start; -ms-flex-pack: start; justify-content: flex-start; -webkit-box-align: center; -ms-flex-align: center; align-items: center; font-size: 20px; margin-bottom: 5px; }

.uc-home-2 .name img, .uc-home-3 .name img { margin-right: 10px; }

.uc-home-2 .list li, .uc-home-3 .list li { -webkit-box-flex: 1; -ms-flex: 1; flex: 1; min-width: 0; margin-right: 60px; padding: 10px 0; border-top: #b2b4b6 2px solid; color: #b1b4b6; line-height: 32px; position: relative; }

.uc-home-2 .list li:hover, .uc-home-3 .list li:hover { border-top-color: #1e84ff; color: #fff; }

.uc-home-2 .list li:hover .name, .uc-home-3 .list li:hover .name { opacity: 1; }

.uc-home-2 .list .name, .uc-home-3 .list .name { position: absolute; left: 0; top: -55px; color: #fff; opacity: 0; }
.uc-home-2 .list .name, .uc-home-3 .list .name_other { position: absolute; left: 0; top: -50px; color: #fff;}

.uc-home-2 .list .txt1, .uc-home-3 .list .txt1 { font-size: 18px; }

.uc-home-2 .list .txt2, .uc-home-3 .list .txt2 { font-size: 14px; }

.uc-home-2 .list.style4 .txt1, .uc-home-3 .list.style4 .txt1 { font-size: 20px; font-weight: bold; color: #fff; }

.uc-home-2 .list.style4 .txt2, .uc-home-3 .list.style4 .txt2 { display: none; }

.uc-home-2 .list.style4 .txt3, .uc-home-3 .list.style4 .txt3 { font-size: 20px; color: #fff; }

.uc-home-2 .list.style4 li, .uc-home-3 .list.style4 li { border-color: #fff; cursor: pointer; }

.uc-home-2 .list.style4 li:hover .txt1, .uc-home-3 .list.style4 li:hover .txt1 { font-size: 24px; }

.uc-home-2 .uc-btn, .uc-home-3 .uc-btn { width: 152px; border-radius: 50px; height: 50px; font-size: 18px; margin-top: 37px; }

.uc-home-2 .flex1, .uc-home-3 .flex1 { -webkit-box-flex: 1; -ms-flex: 1; flex: 1; }

.uc-home-2 .flex2, .uc-home-3 .flex2 { -webkit-box-flex: 2; -ms-flex: 2; flex: 2; }

.uc-home-2 .flex3, .uc-home-3 .flex3 { -webkit-box-flex: 3; -ms-flex: 3; flex: 3; }

.uc-home-2 .flex4, .uc-home-3 .flex4 { -webkit-box-flex: 4; -ms-flex: 4; flex: 4; }

.uc-home-2 .flex5, .uc-home-3 .flex5 { -webkit-box-flex: 5; -ms-flex: 5; flex: 5; }

.uc-home-2 .hover-box, .uc-home-3 .hover-box { position: absolute; left: 50%; top: 50%; -webkit-transform: translate(-50%, -50%); -ms-transform: translate(-50%, -50%); transform: translate(-50%, -50%); width: 100%; height: 100%; z-index: 7; }

.uc-home-2 .hover-box .tab-con, .uc-home-3 .hover-box .tab-con { display: none; position: relative; width: 100%; height: 100%; }

.uc-home-2 .hover-box .tab-con img, .uc-home-3 .hover-box .tab-con img { width: 100%; height: 100%; display: block; -o-object-fit: cover; object-fit: cover; }

.uc-home-2 .hover-box img, .uc-home-3 .hover-box img { position: absolute; left: 50%; top: 50%; -webkit-transform: translate(-50%, -50%); -ms-transform: translate(-50%, -50%); transform: translate(-50%, -50%); }

.uc-home-2 { background: url("images/home-bg-2.jpg") center center no-repeat; background-size: cover; }

.uc-home-2 .part { -webkit-box-flex: 1; -ms-flex: 1; flex: 1; min-width: 0; }

.uc-home-3 { background: url("images/home-bg-3.jpg") center center no-repeat; background-size: cover; }

.swiper-other { display: none; position: fixed; left: 0; top: 0; width: 100%; height: 100vh; z-index: 99; }

.swiper-other .uc-content { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; padding: 12vh 0 5vh; height: 100vh; color: #fff; position: relative; }

.swiper-other .swiper-slide { background: url("images/home-bg-3-2.jpg") center center no-repeat; background-size: cover; height: 100vh; }

.swiper-other .img-box { width: 800px; height: 600px; margin: 0 auto; }

.uc-home-4 .uc-content, .uc-home-5 .uc-content { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; padding: 12vh 0 5vh; height: 100vh; color: #fff; position: relative; }

.uc-home-4 .filter-HD, .uc-home-4 .filter, .uc-home-5 .filter-HD, .uc-home-5 .filter { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-pack: start; -ms-flex-pack: start; justify-content: flex-start; -webkit-box-align: center; -ms-flex-align: center; align-items: center; }

.uc-home-4 .filter, .uc-home-5 .filter { border-radius: 50px; border: #1e84ff 1px solid; }

.uc-home-4 .filter .item, .uc-home-5 .filter .item { padding: 0 15px 0 17px; line-height: 50px; font-size: 16px; /*letter-spacing: 2px;*/ color: #1e84ff; position: relative; }

.uc-home-4 .filter .item:after, .uc-home-5 .filter .item:after { content: ''; width: 1px; height: 20px; background-color: #1e84ff; position: absolute; top: 50%; -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%); left: 0; }

.uc-home-4 .filter .item:first-child:after, .uc-home-4 .filter .item.on:after, .uc-home-4 .filter .item.on + .item:after, .uc-home-5 .filter .item:first-child:after, .uc-home-5 .filter .item.on:after, .uc-home-5 .filter .item.on + .item:after { display: none; }

.uc-home-4 .filter .item.on, .uc-home-5 .filter .item.on { background-color: #1e84ff; color: #fff; border-radius: 50px; padding: 0 30px 0 32px; }

.uc-home-4 .filterBD, .uc-home-5 .filterBD { margin-top: 2vh; }

.uc-home-4 .tab-con, .uc-home-5 .tab-con { display: none; }

.uc-home-4 .tab-con:first-child, .uc-home-5 .tab-con:first-child { display: block; }

.uc-home-4.style4 .title, .uc-home-5.style4 .title { color: #333333; }

.uc-home-4.style4 .filter, .uc-home-5.style4 .filter { background-color: #b6b6b7; border: none; }

.uc-home-4.style4 .filter .item, .uc-home-5.style4 .filter .item { line-height: 40px; color: #fff; }

.uc-home-4.style4 .filter .item:after, .uc-home-5.style4 .filter .item:after { background-color: #fff; }

.uc-home-4.style4 .filter .item:first-child:after, .uc-home-4.style4 .filter .item.on:after, .uc-home-4.style4 .filter .item.on + .item:after, .uc-home-5.style4 .filter .item:first-child:after, .uc-home-5.style4 .filter .item.on:after, .uc-home-5.style4 .filter .item.on + .item:after { display: none; }

.uc-home-4.style4 .filter .item.on, .uc-home-5.style4 .filter .item.on { background-color: #024683; }

.uc-home-4 { background: url("images/home-bg-4.jpg") center center no-repeat; background-size: cover; }

.uc-home-4 .list { background-color: rgba(255, 255, 255, 0.7); display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; -webkit-box-align: center; -ms-flex-align: center; align-items: center; }

.uc-home-4 .list li { width: 50%; position: relative; display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; -webkit-box-align: stretch; -ms-flex-align: stretch; align-items: stretch; }

.uc-home-4 .list li.style-left .img-box:after { content: '\e6d6'; right: auto; left: -12px; }

.uc-home-4 .list .img-box { width: 300px; height: 202px; background-color: #fff; padding: 12px; position: relative; }

.uc-home-4 .list .img-box img { width: 100%; height: 100%; display: block; -o-object-fit: cover; object-fit: cover; }

.uc-home-4 .list .img-box:after { content: '\e6ae'; font-family: 'uc-font'; font-size: 1.4em; right: -12px; color: #fff; position: absolute; top: 50%; -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%); }

.uc-home-4 .list .img { width: 100%; height: 100%; overflow: hidden; }

.uc-home-4 .list .img img { width: 100%; height: 100%; display: block; -o-object-fit: cover; object-fit: cover; }

.uc-home-4 .list .right { -webkit-box-flex: 1; -ms-flex: 1; flex: 1; min-width: 0; padding: 0 10px 0 30px; color: #000; display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -ms-flex-align: center; align-items: center; }

.uc-home-4 .list .year { font-family: impact; font-size: 56px; }

.uc-home-4 .list .con { -webkit-box-flex: 1; -ms-flex: 1; flex: 1; min-width: 0; font-size: 16px; line-height: 26px; border-left: #949494 1px solid; padding-left: 10px; margin-left: 10px; }

.uc-home-4 .swiper-box { width: 100%; overflow: hidden; }

.uc-home-4 .swiper-container4 { width: 1200px; overflow: hidden; }

.uc-home-4 .swiper-container4 .swiper-slide { padding-bottom: 40px; }

.uc-home-4 .swiper-container4 .swiper-pagination-bullet { background-color: #fff; opacity: .8; }

.uc-home-4 .swiper-container4 .swiper-pagination-bullet-active { background-color: #1e84ff; width: 2em; border-radius: 1.15em; }

.uc-home-4.style4 { background-image: url("images/home-bg-4-4.jpg"); }

.uc-home-4.style4 .title { color: #333333; }

.uc-home-4.style4 .list4 { width: 100%; display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-pack: start; -ms-flex-pack: start; justify-content: flex-start; -webkit-box-align: center; -ms-flex-align: center; align-items: center; }

.uc-home-4.style4 .list4 li { width: 274px; height: 182px; overflow: hidden; margin-right: 33px; margin-bottom: 5vh; position: relative; }

.uc-home-4.style4 .list4 li img { width: 100%; height: 100%; display: block; -o-object-fit: cover; object-fit: cover; }

.uc-home-4.style4 .list4 li:nth-child(4n) { margin-right: 0; }

.uc-home-4.style4 .list4 li:hover .over { display: block; }

.uc-home-4.style4 .list4 .over { display: none; position: absolute; left: 0; top: 0; width: 100%; height: 100%; overflow: hidden; padding: 20px; color: #fff; z-index: 99; -webkit-transition: all 0.3s linear; -o-transition: all 0.3s linear; transition: all 0.3s linear; background: -webkit-gradient(linear, right top, left bottom, from(#ffe63c), to(#fe0361)); background: -webkit-linear-gradient(right top, #ffe63c 0%, #fe0361 100%); background: -o-linear-gradient(right top, #ffe63c 0%, #fe0361 100%); background: linear-gradient(to left bottom, #ffe63c 0%, #fe0361 100%); }

.uc-home-4.style4 .list4 .over h4 { font-size: 16px; margin-bottom: 4px; }

.uc-home-4.style4 .list4 .over .con { font-size: 12px; line-height: 16px; height: 128px; overflow: hidden; }

.uc-home-5 { background: url("images/home-bg-5.jpg") center center no-repeat; background-size: cover; position: relative; }

.uc-home-5 .filter .item { color: #fff; }

.uc-home-5 .swiper-box { width: 100%; overflow: hidden; }

.uc-home-5 .swiper-container5 { width: 1200px; overflow: hidden; }

.uc-home-5 .swiper-container5 .swiper-slide { padding-bottom: 40px; }

.uc-home-5 .swiper-container5 .swiper-pagination-bullet { background-color: #dcd9d9; opacity: .8; }

.uc-home-5 .swiper-container5 .swiper-pagination-bullet-active { background-color: #1e84ff; width: 2em; border-radius: 1.15em; }

.uc-home-5 .list { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-pack: start; -ms-flex-pack: start; justify-content: flex-start; -webkit-box-align: center; -ms-flex-align: center; align-items: center; }

.uc-home-5 .list li { width: 271px; border-radius: 8px; height: 111px; background-color: rgba(255, 255, 255, 0.5); overflow: hidden; margin-right: 38px; margin-bottom: 20px; }

.uc-home-5 .list li:nth-child(4n) { margin-right: 0; }

.uc-home-5 .footer { position: absolute; left: 0; bottom: 0; width: 100%; background-color: #000000; margin: 0; z-index: 9; padding: 20px 0; font-size: 18px; color: #fff; }

.uc-home-5 .footer .content { width: 1200px; margin: 0 auto; }

.uc-home-5 .footer .content, .uc-home-5 .footer .share, .uc-home-5 .footer .right { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; -webkit-box-align: center; -ms-flex-align: center; align-items: center; }

.uc-home-5 .footer .share { -webkit-box-pack: start; -ms-flex-pack: start; justify-content: flex-start; margin-bottom: 10px; }

.uc-home-5 .footer .share .item { margin-right: 2em; }

.uc-home-5 .footer .share img { width: 36px; height: 36px; display: block; }

.uc-home-5 .footer a { color: #fff; }

.uc-home-5 .footer a:hover { color: #fff; opacity: .8; }

.uc-home-5 .footer .cpt span, .uc-home-5 .footer .cpt a { margin-right: 1em; }

.uc-home-5 .footer .right { -webkit-box-pack: end; -ms-flex-pack: end; justify-content: flex-end; }

.uc-home-5 .footer .right .item { text-align: right; margin-right: 2em; line-height: 32px; }

.uc-home-5 .footer .code { width: 60px; height: 60px; }

.uc-home-5.style4 { background-image: url("images/home-bg-5-4.jpg"); }

.uc-home-5.style4 .title { color: #333333; }

.uc-home-5.style4 .uc-content { padding-bottom: 12vh; }

.uc-home-5.style4 .list li { border-radius: 0px; margin-bottom: 40px; -webkit-box-shadow: 15px 15px 20px 0 rgba(200, 199, 199, 0.5); box-shadow: 15px 15px 20px 0 rgba(200, 199, 199, 0.5); }

.uc-home-6 { background-color: #272727 !important; color: #fff; line-height: 30px; }

.uc-home-6 .uc-content { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -ms-flex-pack: distribute; justify-content: space-around; padding: 12vh 0 1vh; height: 100vh; color: #fff; position: relative; }

.uc-home-6 img { display: block; }

.uc-home-6 a { color: #fff; -webkit-transition: all 0.3s linear; -o-transition: all 0.3s linear; transition: all 0.3s linear; }

.uc-home-6 a:hover { opacity: .8; color: #fff; }

.uc-home-6 .ft1 { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; -webkit-box-align: start; -ms-flex-align: start; align-items: flex-start; }

.uc-home-6 .ft1 .left .logo { margin-bottom: 20px; display: block; }

.uc-home-6 .ft1 .left .uc-btn { height: 40px; font-size: 16px; }

.uc-home-6 .menu { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-pack: start; -ms-flex-pack: start; justify-content: flex-start; -webkit-box-align: start; -ms-flex-align: start; align-items: flex-start; border-left: #454545 1px solid; -webkit-box-flex: 1; -ms-flex: 1; flex: 1; min-width: 0; margin-left: 70px; padding-left: 70px; }

.uc-home-6 .menu li { -webkit-box-flex: 1; -ms-flex: 1; flex: 1; min-width: 0; }

.uc-home-6 .menu li:first-child { margin-left: 0; }

.uc-home-6 .menu h3 { font-size: 18px; margin-bottom: 20px; font-weight: bold; }

.uc-home-6 .menu .con { line-height: 4vh; }

.uc-home-6 .menu .con a { display: block; font-size: 14px; }

.uc-home-6 .ft2 { height: 140px; position: relative; display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -ms-flex-align: center; align-items: center; }

.uc-home-6 .ft2 a { margin: 0 30px; }

.uc-home-6 .code { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-pack: end; -ms-flex-pack: end; justify-content: flex-end; -webkit-box-align: center; -ms-flex-align: center; align-items: center; position: absolute; top: 50%; -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%); right: 0; }

.uc-home-6 .code img { display: block; margin: 0 auto; width: 130px; height: 130px; }

.uc-home-6 .code .r { text-align: center; margin-left: 20px; }

.uc-home-6 .code .con { text-align: right; position: relative; top: -5px; line-height: 26px; }

.uc-home-6 .code .tel { font-size: 18px; }

.uc-home-6 .ft3 { padding: 20px 0; line-height: 50px; }

.uc-home-6 .ft3 .item { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-pack: start; -ms-flex-pack: start; justify-content: flex-start; -webkit-box-align: center; -ms-flex-align: center; align-items: center; }

.uc-home-6 .ft3.border { border-top: #454545 1px solid; }

.uc-home-6 .ft3 .txt { margin-right: 2em; min-width: 4em; display: inline-block; }

.uc-home-6 .ft3 a { padding: 0 5px; }

.uc-home-6 .ft3 .on { color: #1e84ff; }

.g-fixedSideOperate { position: fixed; top: 50%; -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%); right: 0; z-index: 99; }

.g-fixedSideOperate .btn-goTop { width: 50px; height: 50px; background-color: #fff; position: relative; display: block; }

.g-fixedSideOperate .btn-goTop img { position: absolute; left: 50%; top: 50%; -webkit-transform: translate(-50%, -50%); -ms-transform: translate(-50%, -50%); transform: translate(-50%, -50%); display: block; }

.g-fixedSideOperate .btn-contact { width: 50px; height: 170px; display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; text-align: center; margin-top: 5px; background-color: #fff; padding: 11px; font-size: 16px; color: #1b2736; line-height: 20px; }

.g-fixedSideOperate .btn-contact img { display: block; margin: 0 auto 10px; }
