This commit is contained in:
sa_10_0 2024-12-17 10:59:51 +08:00
parent 83b7f8264f
commit a0726463bc
4 changed files with 720 additions and 1302 deletions

View File

@ -196,6 +196,13 @@
{ {
"navigationBarTitleText" : "" "navigationBarTitleText" : ""
} }
},
{
"path" : "pages/syy",
"style" :
{
"navigationBarTitleText" : ""
}
} }
], ],
"globalStyle": { "globalStyle": {

View File

@ -1,235 +1,261 @@
<template> <template>
<view class="flex-col page"> <view class="flex-col page">
<view class="flex-row group"> <view class="flex-row group">
<view class=" "> <view class=" ">
<image <image class="flex-col justify-start items-end shrink-0 self-start image-wrapper"
class="flex-col justify-start items-end shrink-0 self-start image-wrapper" :src="productBrief.goodImg" />
:src="productBrief.goodImg" </view>
/> <view class="flex-row flex-1 ml-23">
</view> <view class="flex-col flex-1 self-start group_2">
<view class="flex-row flex-1 ml-23"> <view class="self-start group_3">
<view class="flex-col flex-1 self-start group_2"> <text class="text_2"></text>
<view class="self-start group_3"> <text class="text">{{ productBrief.price }}</text>
<text class="text_2"></text> </view>
<text class="text">{{ productBrief.price }}</text> <view class="mt-14 flex-col items-start self-stretch">
</view> <text class="text_3">{{productBrief.name}}</text>
<view class="mt-14 flex-col items-start self-stretch"> <!-- <text class="text_4 mt-9">{{已选蓝色发簪}}</text> -->
<text class="text_3">{{productBrief.name}}</text> </view>
<!-- <text class="text_4 mt-9">{{已选蓝色发簪}}</text> --> </view>
</view> <view class="flex-col shrink-0 ml-5">
</view> <image class="self-end image"
<view class="flex-col shrink-0 ml-5"> src="https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FxSHTnKhk-close.png"
<image @click="close()" />
class="self-end image" <view class="flex-row self-stretch mt-104">
src="https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FxSHTnKhk-close.png" <view class="flex-col justify-start items-center image-wrapper_2">
@click="close()" <image class="image_3"
/> src="https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FosWvYyNx-short1.png"
<view class="flex-row self-stretch mt-104"> @click="decrease" />
<view class="flex-col justify-start items-center image-wrapper_2"> </view>
<image <view class="ml-2 flex-col justify-start items-center text-wrapper"><text
class="image_3" class="text_5">{{ quantity }}</text></view>
src="https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FosWvYyNx-short1.png" <view class="ml-2 flex-col justify-start items-center image-wrapper_3">
@click="decrease" <image class="image_3"
/> src="https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FGbdSQDul-add1.png"
</view> @click="increase" />
<view class="ml-2 flex-col justify-start items-center text-wrapper"><text class="text_5">{{ quantity }}</text></view> </view>
<view class="ml-2 flex-col justify-start items-center image-wrapper_3"> </view>
<image </view>
class="image_3" </view>
src="https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FGbdSQDul-add1.png" </view>
@click="increase" <view class="flex-col justify-start items-center text-wrapper_2" @click="addCart"><text
/> class="text_6">加入购物车</text></view>
</view>
</view>
</view>
</view>
</view>
<view class="flex-col justify-start items-center text-wrapper_2" @click="addCart"><text class="text_6">加入购物车</text></view>
</view> </view>
</template> </template>
<script setup> <script setup>
import { onMounted , ref } from 'vue'; import {
import emitter from '../../../utils/emitter'; onMounted,
import { onLoad , onShow } from "@dcloudio/uni-app"; ref
import { baseUrl , testUrl ,suiUrl} from '../../../api/request'; } from 'vue';
const productBrief = ref({}) // import emitter from '../../../utils/emitter';
const quantity = ref(1) import {
const userInfo = ref({}) onLoad,
onMounted(()=>{ onShow
emitter.on('product',(val)=>{ } from "@dcloudio/uni-app";
// console.log(val); import {
productBrief.value = val baseUrl,
testUrl,
suiUrl
} from '../../../api/request';
const productBrief = ref({}) //
const quantity = ref(1)
const userInfo = ref({})
onMounted(() => {
emitter.on('product', (val) => {
// console.log(val);
productBrief.value = val
})
}) })
}) onShow(() => {
onShow(()=>{ userInfo.value = wx.getStorageSync('userInfo') //
userInfo.value = wx.getStorageSync('userInfo') // })
}) const close = () => {
const close =()=>{ emitter.emit('close')
emitter.emit('close') }
} const addCart = async () => {
const addCart = async()=>{ console.log('商品brief-->', productBrief.value);
console.log('商品brief-->',productBrief.value); console.log('用户信息-->', userInfo.value);
console.log('用户信息-->',userInfo.value); const res = await uni.request({
const res = await uni.request({ url: baseUrl + '/cart/add',
url: baseUrl + '/cart/add', method: 'POST',
method: 'POST', header: {
header: { cookie: wx.getStorageSync('cookie')
cookie: wx.getStorageSync('cookie') },
}, data: {
data: { userId: userInfo.value.id,
userId: userInfo.value.id, goodId: productBrief.value.id,
goodId: productBrief.value.id, quantity: quantity.value,
quantity: quantity.value, subtotal: productBrief.value.price * quantity.value,
subtotal: productBrief.value.price * quantity.value, isGoodType: productBrief.value.isGoodType
isGoodType: productBrief.value.isGoodType }
})
if (res.data.code === 1) {
uni.showToast({
icon: 'success',
title: "加入购物车成功"
})
close()
} else {
console.log('失败原因-->', res.data);
uni.showToast({
icon: 'error',
title: "请求失败"
})
return;
} }
})
if(res.data.code === 1) {
uni.showToast({
icon: 'success',
title: "加入购物车成功"
})
close()
}else{
console.log('失败原因-->',res.data);
uni.showToast({
icon: 'error',
title: "请求失败"
})
return;
} }
} //
// const decrease = () => {
const decrease =()=>{ // console.log('index-->',index);
// console.log('index-->',index); if (quantity.value > 0) {
if(quantity.value > 0) { quantity.value -= 1
quantity.value -= 1 }
} }
} // 11.8
// 11.8 const increase = () => {
const increase = () =>{ if (quantity.value <= productBrief.value.inventory) {
if(quantity.value <= productBrief.value.inventory) { quantity.value += 1
quantity.value += 1 }
} }
}
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
.ml-23 { .ml-23 {
margin-left: 43.13rpx; margin-left: 43.13rpx;
} }
.mt-9 {
margin-top: 16.88rpx; .mt-9 {
} margin-top: 16.88rpx;
.ml-5 { }
margin-left: 9.38rpx;
} .ml-5 {
.mt-104 { margin-left: 9.38rpx;
margin-top: 195rpx; }
}
.page { .mt-104 {
padding: 0 31.88rpx 31.88rpx 45rpx; margin-top: 195rpx;
background-color: #fffef8; }
border-radius: 37.5rpx 37.5rpx 0rpx 0rpx;
width: 100%; .page {
overflow-y: auto; padding: 0 31.88rpx 31.88rpx 45rpx;
overflow-x: hidden; background-color: #fffef8;
height: 100%; border-radius: 37.5rpx 37.5rpx 0rpx 0rpx;
} width: 100%;
.group { overflow-y: auto;
padding: 28.13rpx 0 37.5rpx 11.25rpx; overflow-x: hidden;
} height: 100%;
.image-wrapper { }
margin-top: 76.88rpx;
// padding-bottom: 151.88rpx; .group {
border-radius: 5.63rpx; padding: 28.13rpx 0 37.5rpx 11.25rpx;
background-size: 100% 100%; }
background-repeat: no-repeat;
width: 191.25rpx; .image-wrapper {
height: 189.38rpx; margin-top: 76.88rpx;
} // padding-bottom: 151.88rpx;
.image_2 { border-radius: 5.63rpx;
border-radius: 5.63rpx; background-size: 100% 100%;
width: 37.5rpx; background-repeat: no-repeat;
height: 37.5rpx; width: 191.25rpx;
} height: 189.38rpx;
.group_2 { }
margin-top: 112.5rpx;
} .image_2 {
.group_3 { border-radius: 5.63rpx;
margin-left: 3.75rpx; width: 37.5rpx;
} height: 37.5rpx;
.text_2 { }
color: #ff0000;
font-size: 26.25rpx; .group_2 {
font-family: STZhongsong; margin-top: 112.5rpx;
line-height: 18.13rpx; }
}
.text { .group_3 {
color: #ff0000; margin-left: 3.75rpx;
font-size: 37.5rpx; }
font-family: STZhongsong;
line-height: 26.92rpx; .text_2 {
} color: #ff0000;
.text_3 { font-size: 26.25rpx;
color: #000000; font-family: STZhongsong;
font-size: 28.13rpx; line-height: 18.13rpx;
font-family: Open Sans; }
line-height: 26.21rpx;
} .text {
.text_4 { color: #ff0000;
color: #000000; font-size: 37.5rpx;
font-size: 26.25rpx; font-family: STZhongsong;
font-family: Open Sans; line-height: 26.92rpx;
line-height: 24.34rpx; }
}
.image { .text_3 {
width: 52.5rpx; color: #000000;
height: 52.5rpx; font-size: 28.13rpx;
} font-family: Open Sans;
.image-wrapper_2 { line-height: 26.21rpx;
padding: 11.25rpx 0; }
background-color: #f5f5dc;
border-radius: 5.63rpx 0rpx 0rpx 5.63rpx; .text_4 {
width: 52.5rpx; color: #000000;
height: 52.5rpx; font-size: 26.25rpx;
} font-family: Open Sans;
.image_3 { line-height: 24.34rpx;
width: 33.75rpx; }
height: 33.75rpx;
} .image {
.text-wrapper { width: 52.5rpx;
padding: 15rpx 0 11.25rpx; height: 52.5rpx;
background-color: #f5f5dc; }
width: 52.5rpx;
height: 52.5rpx; .image-wrapper_2 {
} padding: 11.25rpx 0;
.text_5 { background-color: #f5f5dc;
color: #000000; border-radius: 5.63rpx 0rpx 0rpx 5.63rpx;
font-size: 30rpx; width: 52.5rpx;
font-family: Open Sans; height: 52.5rpx;
line-height: 21.41rpx; }
}
.image-wrapper_3 { .image_3 {
padding: 11.25rpx 0; width: 33.75rpx;
background-color: #f5f5dc; height: 33.75rpx;
border-radius: 0rpx 5.63rpx 5.63rpx 0rpx; }
width: 52.5rpx;
height: 52.5rpx; .text-wrapper {
} padding: 15rpx 0 11.25rpx;
.text-wrapper_2 { background-color: #f5f5dc;
margin-right: 15rpx; width: 52.5rpx;
padding: 22.5rpx 0; height: 52.5rpx;
background-color: #ffd45a; }
border-radius: 93.75rpx;
} .text_5 {
.text_6 { color: #000000;
color: #ffffff; font-size: 30rpx;
font-size: 30rpx; font-family: Open Sans;
font-family: Inter; line-height: 21.41rpx;
font-weight: 700; }
line-height: 28.2rpx;
} .image-wrapper_3 {
padding: 11.25rpx 0;
background-color: #f5f5dc;
border-radius: 0rpx 5.63rpx 5.63rpx 0rpx;
width: 52.5rpx;
height: 52.5rpx;
}
.text-wrapper_2 {
margin-right: 15rpx;
padding: 22.5rpx 0;
background-color: #ffd45a;
border-radius: 93.75rpx;
}
.text_6 {
color: #ffffff;
font-size: 30rpx;
font-family: Inter;
font-weight: 700;
line-height: 28.2rpx;
}
@import url(../../../common/css/global.css); @import url(../../../common/css/global.css);
</style> </style>

File diff suppressed because it is too large Load Diff

View File

@ -1,440 +1,67 @@
<template> <view class="flex-col justify-start relative page">
<uni-popup ref="popup" :mask-click="false" background-color="white" borderRadius="10px" class="pop" type="dialog"> <view class="section"></view>
<input placeholder="联系人姓名" v-model="newContacts.name" /> <text class="font text pos">选择预约类别</text>
<input placeholder="联系方式" v-model="newContacts.phone" /> <view class="flex-row equal-division group">
<checkbox @click="handleIsDefaultChanges()" :key="newContacts.id">设置为默认联系人</checkbox> <view class="flex-col equal-division-item section_2">
<button @click="addContact">添加</button> <image
<button @click="close">取消</button> class="self-start image"
</uni-popup> src="https://ide.code.fun/api/image?token=675fbf94797f850011f2bedf&name=e29908fd7c3623fbb6854b38b828c5b8.png"
<uni-popup ref="popup1" :mask-click="false" background-color="white" borderRadius="10px" class="pop"> />
<input placeholder="联系人姓名" v-model="newContact.name" /> <text class="self-center font mt-7">整套约拍</text>
<input placeholder="联系方式" v-model="newContact.phone" /> </view>
<checkbox @click="handleIsDefaultChange" :key="newContact.id">设置为默认联系人</checkbox> <view class="ml-48 flex-col equal-division-item section_3">
<button @click="saveModifiedContact">保存</button> <image
<button @click="close1">取消</button> class="self-start image"
</uni-popup> src="https://ide.code.fun/api/image?token=675fbf94797f850011f2bedf&name=ca4da1e3507e3276bd2cf0946c8322bd.png"
<view class="flex-col page"> />
<view class="flex-col"> <text class="mt-8 self-center font text_2">自带服装</text>
<view class="flex-row justify-center items-center relative group"> </view>
<text class="text">联系人信息</text> </view>
<image class="image pos" <text class="font text_3 pos_2">选择服装类别</text>
src="https://ide.code.fun/api/image?token=673329a3c471750012deb1ec&name=888e11f2c452b3d64f79a5136a779376.png" /> <view class="flex-col section_4 pos_3">
</view> <view class="flex-col list">
<view class="mt-16 flex-col"> <view class="flex-row justify-between section_5" v-for="(item, index) in items" :key="index">
<view class="flex-row justify-between items-center list-item mt-5" <view class="flex-row items-end self-center">
v-for="(item, index) in filteredContacts" :key="index"> <image
<view class="flex-row items-center"> class="image_2"
<text class="font ml-9">{{item.name}}</text> src="https://ide.code.fun/api/image?token=675fbf94797f850011f2bedf&name=72dc2b1fa62db33ed73692af7f65cb9b.png"
<text class="font_2 ml-9">{{item.phone}} -{{item.id}}</text> />
</view> <view class="ml-20 flex-col group_2">
<text v-if="item.isDefault === 1" class="font_3 ml-12">默认联系人</text> <text class="self-start font_2 text_4">简约风尚</text>
<view class="flex-row group_2"> <view class="flex-row items-center self-stretch group_3">
<image class="image_2" <view class="group_4">
src="https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FEclWfXMx-bj.png" <text class="font_2">价位</text>
@click="editContact(index)" /> <text class="font_4"></text>
<image class="ml-12 image_2" </view>
src="https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FzgFMedLP-sc.png" <text class="ml-6 font_3 text_5">100-200</text>
@click="deleteContact(index)" /> </view>
</view> <text class="self-stretch font_5 text_6">传承非遗之美简约演绎经典</text>
</view> </view>
</view> </view>
</view> <image
<view class="flex-col justify-start items-center section mt-431" @click="open"> class="self-start image_3 image_4"
<view class="flex-col justify-start items-center text-wrapper"><text class="text_2">添加新联系人</text></view> src="https://ide.code.fun/api/image?token=675fbf94797f850011f2bedf&name=eee721f36de3196113485ea7e5c6b5ad.png"
</view> />
</view> </view>
</template> </view>
<view class="mt-22 flex-row justify-between items-center section_9">
<script setup> <view class="flex-row">
import { <image
ref, class="shrink-0 self-center image_9"
onMounted, src="https://ide.code.fun/api/image?token=675fbf94797f850011f2bedf&name=0ed6323496056f793bd3c25b3dcd9eb6.png"
watch, />
set <text class="self-start text_15">88.</text>
} from 'vue' <text class="self-center font_2 text_14">定金</text>
import { <text class="self-center text_17">00</text>
baseUrl <view class="flex-row shrink-0 section_10">
} from '../../../api/request' <text class="text_18">费用说明</text>
<image
class="shrink-0 image_10 ml-3"
onMounted(() => { src="https://ide.code.fun/api/image?token=675fbf94797f850011f2bedf&name=0455b173571a47fdc438588e788f26c5.png"
getContacts() />
}) </view>
</view>
const newContact = ref({ <view class="flex-col justify-start items-center text-wrapper"><text class="font text_16">确定预约</text></view>
name: '', </view>
phone: '', </view>
isDefault: 0, </view>
id: 0
})
const newContacts = ref({
name: '',
phone: '',
isDefault: 0,
id: 0
})
const editContact = async (index) => {
popup1.value.open('center')
const contact = filteredContacts.value[index]
newContact.value = {
name: contact.name,
id: contact.id,
phone: contact.phone,
isDefault: contact.isDefault
}
}
const handleIsDefaultChanges = (e) => {
let currentValue = newContact.value.isDefault
let updatedValue = currentValue === 0 ? 1 : 0
newContact.value.isDefault = updatedValue
console.log(updatedValue)
}
const handleIsDefaultChange = (e) => {
//console.log(newContact.value.isDefault)
let currentValue = newContact.value.isDefault
let updatedValue = currentValue === 0 ? 1 : 0
newContact.value.isDefault = updatedValue
console.log(updatedValue)
}
//
const getContacts = async () => {
const res = await uni.request({
url: baseUrl + '/contacts/list',
method: 'POST',
header: {
cookie: wx.getStorageSync('cookie')
}
})
// console.log(res)
if (res.data.code === 1) {
const correctContacts = []
let defaultContact = null
res.data.data.forEach((contact) => {
if (contact.isDefault === 1) {
if (!defaultContact) {
defaultContact = contact
} else {
contact.isDefault = 0
}
}
correctContacts.push(contact)
})
filteredContacts.value = correctContacts
if (defaultContact) {
const index = filteredContacts.value.findIndex(
c => c.id === defaultContact.id
);
if (index!== -1) {
filteredContacts.value[index].isDefault = 1
}
}
} else {
uni.showToast({
icon: 'error',
title: '获取失败'
})
}
}
const searchText = ref('')
const filteredContacts = ref([])
watch(searchText, () => {
if (searchText.value === '') {
filteredContacts.value = contacts.value;
} else {
filteredContacts.value = contacts.value.filter(contact => {
return contact.name.includes(searchText.value) || contact.phone.includes(
searchText.value)
})
}
})
//
const addContact = async () => {
popup.value.close();
//
if (newContacts.value.isDefault) {
for (let i = 0; i < filteredContacts.value.length; i++) {
if (filteredContacts.value[i].isDefault === 1) {
filteredContacts.value[i].isDefault = 0
}
}
}
const res = await uni.request({
url: baseUrl + '/contacts/add',
method: 'POST',
header: {
cookie: wx.getStorageSync('cookie')
},
data: {
name: newContacts.value.name,
phone: newContacts.value.phone,
isDefault: newContacts.value.isDefault
}
});
if (res.data.code === 1) {
console.log('添加成功')
newContacts.value = {
name: '',
phone: '',
isDefault: 0,
id: 0
};
} else {
uni.showToast({
icon: 'error',
title: '添加失败'
});
}
getContacts()
}
//
const deleteContact = async (index) => {
const res = await uni.request({
url: baseUrl + '/contacts/delete',
method: 'POST',
header: {
cookie: wx.getStorageSync('cookie')
},
data: {
id: filteredContacts.value[index].id,
}
})
console.log(res, '1111111111111');
if (res.data.code === 1) {
console.log('删除成功')
} else {
uni.showToast({
icon: 'error',
title: '删除失败'
});
}
getContacts()
}
const contactToModify = ref({})
const indexToModify = ref(null)
//
const saveModifiedContact = async () => {
popup1.value.close();
if (!newContact.value.name ||!newContact.value.phone) {
uni.showToast({
icon: 'error',
title: '不能为空'
})
return
}
if (newContact.value.isDefault) {
for (let i = 0; i < filteredContacts.value.length; i++) {
if (filteredContacts.value[i].isDefault === 1) {
filteredContacts.value[i].isDefault = 0
}
}
}
const res = await uni.request({
url: baseUrl + '/contacts/update',
method: 'POST',
header: {
cookie: wx.getStorageSync('cookie')
},
data: {
name: newContact.value.name,
phone: newContact.value.phone,
id: newContact.value.id,
isDefault: newContact.value.isDefault
}
})
if (res.data.code === 1) {
console.log('更新成功')
console.log(newContact.value.isDefault,'000000000000000000000000 ')
} else {
uni.showToast({
icon: 'error',
title: '更新失败'
})
}
getContacts()
}
const popup = ref(null)
const popup1 = ref(null)
const open = () => {
popup.value.open('center')
}
const open1 = () => {
popup1.value.open('center')
}
const close = () => {
popup.value.close()
}
const close1 = () => {
popup1.value.close()
}
</script>
<style lang="scss" scoped>
.font_3 {
color: #007aff;
font-size: 14px;
}
.mt-5 {
margin-top: 9.38rpx;
}
.ml-9 {
margin-left: 16.88rpx;
}
.mt-431 {
margin-top: 808.13rpx;
}
.page {
padding-top: 18.75rpx;
background-color: #f5f5dc;
border-radius: 28.13rpx 28.13rpx 0rpx 0rpx;
width: 100%;
overflow-y: auto;
overflow-x: hidden;
height: 100%;
}
.group {
padding: 11.25rpx 24.38rpx 7.5rpx;
}
.text {
color: #323232;
font-size: 37.5rpx;
font-family: Open Sans;
line-height: 35.21rpx;
}
.image {
width: 52.5rpx;
height: 52.5rpx;
}
.pos {
position: absolute;
right: 24.38rpx;
top: 50%;
transform: translateY(-50%);
}
.list-item {
padding: 52.5rpx 15rpx;
background-color: #fffef8;
border-bottom: solid 1.88rpx #c8c8c8;
}
.list-item:first-child {
margin-top: 0;
}
.image_3 {
width: 33.75rpx;
height: 33.75rpx;
}
.font {
font-size: 30rpx;
font-family: Open Sans;
line-height: 27.19rpx;
color: #323232;
}
.font_2 {
font-size: 30rpx;
font-family: Open Sans;
line-height: 22.05rpx;
color: #323232;
}
.group_2 {
margin-right: 11.25rpx;
}
.image_2 {
width: 39.38rpx;
height: 39.38rpx;
}
.section {
margin-left: 16.88rpx;
padding: 22.5rpx 0 15rpx;
background-color: #fffef8;
}
.text-wrapper {
padding: 30rpx 0;
background-color: #fbb612;
border-radius: 75rpx;
width: 639.38rpx;
}
.text_2 {
color: #ffffff;
font-size: 33.75rpx;
font-family: Open Sans;
line-height: 31.22rpx;
}
.pop{
height: 300px;
width: 400px;
padding: 20px;
/* 输入框的通用样式 */
input {
margin-left: 10%;
width: 80%; //
margin-bottom: 15px;
padding: 10px;
border: 1px solid #ccc;
border-radius: 5px;
}
/* 复选框的通用样式 */
checkbox {
margin-bottom: 15px;
}
/* 按钮的通用样式 */
button {
width: 45%; //
padding: 8px 0;
border: none;
border-radius: 5px;
font-size: 14px;
cursor: pointer;
transition: background-color 0.3s ease;
}
}
/* 第一个弹窗添加联系人的特定按钮样式 */
.pop:first-child button:first-child {
background-color: #007aff;
color: white;
}
.pop:first-child button:last-child {
background-color: #ccc;
color: #333;
}
/* 第二个弹窗修改联系人的特定按钮样式 */
.pop:last-child button:first-child {
background-color: #4caf50;
color: white;
}
.pop:last-child button:last-child {
background-color: #ccc;
color: #333;
}
@import url(/common/css/global.css)
</style>