<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
    --text-title: #080808;
    --text-desc: #646874;
    --text-desc-02: #4e5969;
    --text-link: #3859fb;
    --common-padding: 120px;
    --background-01: #fff;
    --background-02: #fafbff;
    --placeholder-color: #595959;
    --cut: 20px;
    --btn-bg-color: #1d59ff;
    scroll-padding-top: 250px;
    --max-width:1440px;
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
    :root {
        --common-padding: 50px;
        --title-size-01: 42px;
        --text-size: 14px;
    }
}

@media screen and (max-width: 1024px) {
    :root {
        --common-padding: 20px;
        --title-size-01: 42px;
        --text-size: 14px;
    }
}

html{
    font-size: 16px;
}
body{
    font-size: 1rem;
    color:black;
	padding:0px;
	margin: 0px;
}

@media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: var(--max-width);
    }
}
.w-center{
    margin: 0 auto;
}
.common-layout {
    max-width: var(--max-width);
    padding-right: var(--common-padding) !important;
    padding-left: var(--common-padding) !important;
    margin: 0 auto;
}
.common-x-padding{
    padding-right: var(--common-padding);
    padding-left: var(--common-padding);
}
.w-full {
	width: 100%;
}

.h-full{
	height: 100%;
}

.w {
	max-width: 1200px;
	margin: 0 auto;
}

.bgf {
	background-color: #FFFFFF;
}

.bgp {
	/* background-color: #ededed; */
	background-color: #f7f7f7;
}

.bgr {
	background-color: var(--my-color-red);
}

.f-8 {
	font-size: 8px;
}

.f-9 {
	font-size: 9px;
}

.f-10 {
	font-size: 10px;
}

.f-12 {
	font-size: 12px;
}

.f-13 {
	font-size: 13px;
}

.f-14 {
	font-size: var(--font14);
}

.f-15 {
	font-size: 15px;
}

.f-16 {
	font-size: var(--font16);
}

.f-17 {
	font-size: var(--font18);
}

.f-18 {
	font-size: 18px;
}

.f-19 {
	font-size: 19px;
}

.f-20 {
	font-size: 20px;
}

.f-24{
	font-size: var(--font24);
}

.f-25 {
	font-size: 25px;
}

.f-30{
	font-size: var(--font30);
}

.f-main{
	color:var(--color-main);
}

.f-white {
	color: #ffffff;
}

.f-red {
	color: var(--my-color-red);
}

.f-gray {
	color: #999999;
}

.f-blue {
	color: #0A98D5;
}

.f-green {
	color: #1BB974;
}

.f-yellow {
	color: #ffce59;
}
.f-black{
	color: black;
}

.f-c72{
	color:#727272;
}

.f-c60 {
	color: #FF6600;
}

.f-c55 {
	color: #555555;
}

.bold {
	/* font-family: "å¹¼åœ†"; */
	font-weight: bold;
}

.f-number {
	font-family: "arial narrow";
}


.mg5 {
	margin: 5px;
}

.ml5 {
	margin-left: 5px;
}

.mt5 {
	margin-top: 5px;
}

.mr5 {
	margin-right: 5px;
}

.mb5 {
	margin-bottom: 5px;
}

.ml10 {
	margin-left: 10px;
}

.mr10 {
	margin-right: 10px;
}

.mt10 {
	margin-top: 10px;
}

.mb10 {
	margin-bottom: 10px;
}

.mt20 {
	margin-top: 20px;
}

.mb20 {
	margin-bottom: 20px;
}

.mr20 {
	margin-right: 20px;
}

.ml20 {
	margin-left: 20px;
}

.pl10 {
	padding-left: 10px;
}

.pr10 {
	padding-right: 10px;
}

.pb10 {
	padding-bottom: 10px;
}

.pt10 {
	padding-top: 10px;
}
.pt24{
	padding-top: 24px;
}

.pd10 {
	padding: 10px;
}

.pb20 {
	padding-bottom: 20px;
}
.pb24 {
	padding-bottom: 24px;
}

.pl20 {
	padding-left: 20px;
}

.pr20 {
	padding-right: 20px;
}

.pt20 {
	padding-top: 20px;
}
.pt80{
    padding-top: 80px;
}

.pd15 {
	padding: 15px;
}
.pd10{
	padding:10px;
}

.pt5 {
	padding-top: 5px;
}

.pb5 {
	padding-bottom: 5px;
}

.pl5 {
	padding-left: 5px;
}

.pr5 {
	padding-right: 5px;
}

.pd5 {
	padding: 5px;
}

.bt {
	border-top: 1px #F1F1F1 solid;
}

.bb {
	border-bottom: 1px #F1F1F1 solid;
}

.l-h17 {
	line-height: 17px;
}

.l-h20 {
	line-height: 20px;
}

.block {
	display: block;
}

.absolute {
	position: absolute;
}

.relative {
	position: relative;
}

.hidden {
	display: none;
}

.del {
	text-decoration: line-through;
	color: gray;
}

.center {
	text-align: center;
	justify-content: center;
}

.text-right {
	text-align: right;
}

.vertical-middle {
	display: flex;
	align-items: center;
}

.vertical-top {
	vertical-align: top;
}

.clearfix:after {
	content: '\20';
	display: block;
	overflow: hidden;
	height: 0;
	clear: both;
}

/**
 * åœ†å½¢è¾¹æ¡†
 */
.round-edge {
	border-radius: 5px;
}

.inline-block {
	display: inline-block;
}

/**
 * ä¸Šè¾¹é˜´å½±
 */
.box-shadow-top {
	box-shadow: 0px 0px 10px #f7f7f7;
}

.box-shadow-bottom {
	box-shadow: 0px 10px 0px #f7f7f7;
}

.price .radix,
.price .symbol {
	font-size: 10px;
	font-weight: normal;
}

.price .digits {
	font-size: 18px;
}

.color-0{
    color:#000;
}

/**
 * åž‚ç›´å±…ä¸­
 */
.flex-middle {
	-webkit-flex: 1;
	flex: 1;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
}

/**
 * æ¨ªå‘å±…ä¸­
 */
.flex-center {
	-webkit-flex: 1;
	flex: 1;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
}

/**
 * é&nbsp;å³
 */
.flex-end {
	justify-content: flex-end;
}

/**
 * æ¢è¡Œ
 */
.flex-wrap {
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}

/**
 * è‡ªåŠ¨å&nbsp;æ»¡ä½™é‡
 */
.width-surplus {
	-webkit-flex: 1;
	flex: 1;
}

/**
 * ä¸¤ç«¯å¯¹é½
 */
.width-between {
	-webkit-justify-content: space-between;
	justify-content: space-between;
}

/**
 * æˆªå–ä¸¤è¡Œæ–‡å­—
 */
.line-clamp-2 {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	justify-content: space-between;
	overflow: hidden;
	/* æŽ§åˆ¶è‹±æ–‡å­—ç¬¦ä¸æ¢è¡Œ*/
	word-break: break-word;
	white-space: normal;
}

/**
 * æˆªå–ä¸€è¡Œæ–‡å­—
 */
.line-clamp-1 {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	justify-content: space-between;
	overflow: hidden;
	/* æŽ§åˆ¶è‹±æ–‡å­—ç¬¦ä¸æ¢è¡Œ*/
	word-break: break-word;
	white-space: normal;
}

.word-break-all {
	word-break: break-all;
	white-space: nowrap;
}

.pointer {
	cursor: pointer;
}

.el-dialog__header {
	margin-left: 16px;
}

.el-dialog__body {
	padding-bottom: 0 !important;
}

/* æ”¯ä»˜å·¥å…·ç›¸å…³ */
.iconfont.alipay::after {
	content: '\e65f';
	color: #1677ff;
}

.iconfont.wxpay::after,
.iconfont.wxmppay::after,
.iconfont.wxapppay::after {
	content: '\e634';
	color: #04BE02;
}

.iconfont.ICBC::after {
	content: '\e697';
	color: #ca0e18;
}

.iconfont.CCB::after {
	content: '\e691';
	color: #0066b3;
}

.iconfont.ABC::after {
	content: '\e698';
	color: #319e8d;
}

.iconfont.BOC::after {
	content: '\e69b';
	color: #a71e32;
}

.iconfont.CMB::after {
	content: '\e68c';
	color: #b1120d;
}

.iconfont.COMM::after {
	content: '\e687';
	color: #00377a;
}

.flex-row {
	display       : flex;
	flex-direction: row;
  }
  
  .flex-column {
	display       : flex;
	flex-direction: column;
  }
  
  .flex-row-left-top {
	display        : flex;
	flex-direction : row;
	justify-content: flex-start;
	align-items    : flex-start;
  }
  
  .flex-row-left-center {
	display        : flex;
	flex-direction : row;
	justify-content: flex-start;
	align-items    : center;
  }
  
  .flex-row-left-bottom {
	display        : flex;
	flex-direction : row;
	justify-content: flex-start;
	align-items    : flex-end;
  }
  
  .flex-row-left-stretch {
	display        : flex;
	flex-direction : row;
	justify-content: flex-start;
	align-items    : stretch;
  }
  
  .flex-row-right-top {
	display        : flex;
	flex-direction : row;
	justify-content: flex-end;
	align-items    : flex-start;
  }
  
  .flex-row-right-center {
	display        : flex;
	flex-direction : row;
	justify-content: flex-end;
	align-items    : center;
  }
  
  .flex-row-right-bottom {
	display        : flex;
	flex-direction : row;
	justify-content: flex-end;
	align-items    : flex-end;
  }
  
  .flex-row-right-stretch {
	display        : flex;
	flex-direction : row;
	justify-content: flex-end;
	align-items    : stretch;
  }
  
  .flex-row-center {
	display        : flex;
	flex-direction : row;
	justify-content: center;
	align-items    : center;
  }
  
  .flex-row-center-top {
	display        : flex;
	flex-direction : row;
	justify-content: center;
	align-items    : flex-start;
  }
  
  .flex-row-center-bottom {
	display        : flex;
	flex-direction : row;
	justify-content: center;
	align-items    : flex-end;
  }
  
  .flex-row-center-stretch {
	display        : flex;
	flex-direction : row;
	justify-content: center;
	align-items    : stretch;
  }
  
  .flex-row-between-top {
	display        : flex;
	flex-direction : row;
	justify-content: space-between;
	align-items    : flex-start;
  }
  
  .flex-row-between-center {
	display        : flex;
	flex-direction : row;
	justify-content: space-between;
	align-items    : center;
  }
  
  .flex-row-between-bottom {
	display        : flex;
	flex-direction : row;
	justify-content: space-between;
	align-items    : flex-end;
  }
  
  .flex-row-between-stretch {
	display        : flex;
	flex-direction : row;
	justify-content: space-between;
	align-items    : stretch;
  }
  
  .flex-row-evenly-top {
	display        : flex;
	flex-direction : row;
	justify-content: space-evenly;
	align-items    : flex-start;
  }
  
  .flex-row-evenly-center {
	display        : flex;
	flex-direction : row;
	justify-content: space-evenly;
	align-items    : center;
  }
  
  .flex-row-evenly-bottom {
	display        : flex;
	flex-direction : row;
	justify-content: space-evenly;
	align-items    : flex-end;
  }
  
  .flex-row-evenly-stretch {
	display        : flex;
	flex-direction : row;
	justify-content: space-evenly;
	align-items    : stretch;
  }
  
  .flex-row-around-top {
	display        : flex;
	flex-direction : row;
	justify-content: space-around;
	align-items    : flex-start;
  }
  
  .flex-row-around-center {
	display        : flex;
	flex-direction : row;
	justify-content: space-around;
	align-items    : center;
  }
  
  .flex-row-around-bottom {
	display        : flex;
	flex-direction : row;
	justify-content: space-around;
	align-items    : flex-end;
  }
  
  .flex-row-around-stretch {
	display        : flex;
	flex-direction : row;
	justify-content: space-around;
	align-items    : stretch;
  }
  
  .flex-column-top-left {
	display        : flex;
	flex-direction : column;
	justify-content: flex-start;
	align-items    : flex-start;
  }
  
  .flex-column-top-center {
	display        : flex;
	flex-direction : column;
	justify-content: flex-start;
	align-items    : center;
  }
  
  .flex-column-top-right {
	display        : flex;
	flex-direction : column;
	justify-content: flex-start;
	align-items    : flex-end;
  }
  
  .flex-column-top-stretch {
	display        : flex;
	flex-direction : column;
	justify-content: flex-start;
	align-items    : stretch;
  }
  
  .flex-column-bottom-left {
	display        : flex;
	flex-direction : column;
	justify-content: flex-end;
	align-items    : flex-start;
  }
  
  .flex-column-bottom-center {
	display        : flex;
	flex-direction : column;
	justify-content: flex-end;
	align-items    : center;
  }
  
  .flex-column-bottom-right {
	display        : flex;
	flex-direction : column;
	justify-content: flex-end;
	align-items    : flex-end;
  }
  
  .flex-column-bottom-stretch {
	display        : flex;
	flex-direction : column;
	justify-content: flex-end;
	align-items    : stretch;
  }
  
  .flex-column-center {
	display        : flex;
	flex-direction : column;
	justify-content: center;
	align-items    : center;
  }
  
  .flex-column-center-left {
	display        : flex;
	flex-direction : column;
	justify-content: center;
	align-items    : flex-start;
  }
  
  .flex-column-center-right {
	display        : flex;
	flex-direction : column;
	justify-content: center;
	align-items    : flex-end;
  }
  
  .flex-column-center-stretch {
	display        : flex;
	flex-direction : column;
	justify-content: center;
	align-items    : stretch;
  }
  
  .flex-column-between-left {
	display        : flex;
	flex-direction : column;
	justify-content: space-between;
	align-items    : flex-start;
  }
  
  .flex-column-between-center {
	display        : flex;
	flex-direction : column;
	justify-content: space-between;
	align-items    : center;
  }
  
  .flex-column-between-right {
	display        : flex;
	flex-direction : column;
	justify-content: space-between;
	align-items    : flex-end;
  }
  
  .flex-column-between-stretch {
	display        : flex;
	flex-direction : column;
	justify-content: space-between;
	align-items    : stretch;
  }
  
  .flex-column-around-left {
	display        : flex;
	flex-direction : column;
	justify-content: space-around;
	align-items    : flex-start;
  }
  
  .flex-column-around-center {
	display        : flex;
	flex-direction : column;
	justify-content: space-around;
	align-items    : center;
  }
  
  .flex-column-around-right {
	display        : flex;
	flex-direction : column;
	justify-content: space-around;
	align-items    : flex-end;
  }
  
  .flex-column-around-stretch {
	display        : flex;
	flex-direction : column;
	justify-content: space-around;
	align-items    : stretch;
  }
  
  .flex-column-evenly-left {
	display        : flex;
	flex-direction : column;
	justify-content: space-evenly;
	align-items    : flex-start;
  }
  
  .flex-column-evenly-center {
	display        : flex;
	flex-direction : column;
	justify-content: space-evenly;
	align-items    : center;
  }
  
  .flex-column-evenly-right {
	display        : flex;
	flex-direction : column;
	justify-content: space-evenly;
	align-items    : flex-end;
  }
  
  .flex-column-evenly-stretch {
	display        : flex;
	flex-direction : column;
	justify-content: space-evenly;
	align-items    : stretch;
  }
  .flex-1{
	flex:1;
  }
  .rg24{
	row-gap: 24px;
  }
  .rg20{
	row-gap: 20px;
  }
  .rg10{
	row-gap: 10px;
  }
  .rg15{
	row-gap: 15px;
  }
  .rg5{
	row-gap: 5px;
  }
  .cg10{
	column-gap: 10px;
  }
  .cg20{
	column-gap: 20px;
  }
  .cg30{
	column-gap: 30px;
  }
  .cg50{
	column-gap: 50px;
  }
  
  .ellipsis-overflow {
	overflow     : hidden;
	text-overflow: ellipsis;
  }</pre></body></html>