This commit is contained in:
2024-01-18 15:24:41 +08:00
parent d340cb56ba
commit f1d8da75b9
424 changed files with 10908 additions and 43 deletions

BIN
src/main/resources/.DS_Store vendored Normal file

Binary file not shown.

View File

@@ -1 +1,3 @@
server.address=0.0.0.0
server.port=8090
debug=true

Binary file not shown.

View File

@@ -0,0 +1,98 @@
CREATE TABLE IF NOT EXISTS user (
user_id INTEGER PRIMARY KEY,
user_name TEXT,
phone_number TEXT NOT NULL,
password TEXT NOT NULL
);
INSERT INTO user (user_name, phone_number, password) VALUES ('1', '1', '1');
INSERT INTO user (user_name, phone_number, password) VALUES ('admin', '13882787918', 'admin');
INSERT INTO user (user_name, phone_number, password) VALUES ('test', '010-18245', 'test');
CREATE TABLE IF NOT EXISTS ring (
id INTEGER PRIMARY KEY,
name TEXT NOT NULL,
series TEXT NOT NULL,
style TEXT NOT NULL,
weight INTEGER NOT NULL,
color TEXT,
price REAL NOT NULL,
sold_number INTEGER NOT NULL,
image_file TEXT NOT NULL
);
INSERT INTO ring (name, series, style, weight, color, price, sold_number, image_file) VALUES
('DR钻戒', 'Forever系列', '经典款', 50, 'H色', 25700, 5698, '201409011932585de1c2f2a9.jpg'),
('DR钻戒', 'True Love系列', '典雅', 40, 'F色', 19150, 2654, '20140901195507683ad84477.jpg'),
('DR钻戒', 'Forever系列', '简奢款', 30, 'F色', 12200, 2136, '201409031259093e45b5ecf0.jpg'),
('DR钻戒', 'Marry Me', '纯爱', 40, 'H色', 13900, 1986, '201409031759476e8527cccb.jpg'),
('DR钻戒', 'My heart系列', '奢华款', 70, 'H色', 38636, 2708, '2014091515351160b3d26880.jpg'),
('DR钻戒', 'Believe系列', '典雅', 30, 'H色', 10600, 1967, '201412031648134faa47945e.jpg'),
('DR钻戒', 'My heart系列', '简奢款', 30, 'H色', 14820, 975, '201412081512070b82d519cb.jpg'),
('DR钻戒', 'Just you系列', '经典款', 25, 'I-J色', 5228, 1263, '20141208151342d086aedadc.jpg'),
('DR钻戒', 'Forever系列', '经典款', 40, 'D色', 15800, 2413, '201412081516238b52b39cab.jpg'),
('DR钻戒', 'Just you系列', '经典款', 20, 'I-J色', 4699, 1320, '2015012911164499edc9d9cc.jpg'),
('DR钻戒', 'Forever系列', '经典款', 30, 'E色', 9800, 2034, '20150203145404c670aa80de.jpg'),
('DR钻戒', 'I Swear系列', '奢华款', 40, 'H色', 20600, 1064, '201502031541470f549eecb4.jpg'),
('DR钻戒', 'True Love系列', '简奢款', 30, 'E色', 11000, 1235, '201504221050541f11bc8e64.jpg'),
('DR钻戒', 'Princess系列', '花影', 2, 'H色', 4360, 460, '201504251408518eddbc7a98.jpg'),
('DR钻戒', 'Forever系列', '经典款', 100, 'J色', 64700, 1387, '20150707144116ede2ed910a.jpg'),
('DR钻戒', 'My heart系列', '简奢款', 20, 'H色', 8520, 1484, '20150707180015f927e652ee.jpg');
CREATE TABLE IF NOT EXISTS address (
addr_id INTEGER PRIMARY KEY,
user_id INTEGER NOT NULL,
user_name TEXT NOT NULL,
detailed_address TEXT NOT NULL,
contact_info TEXT NOT NULL,
postal_code TEXT NOT NULL,
FOREIGN KEY (user_id) REFERENCES user(user_id)
);
INSERT INTO address (user_id, user_name, detailed_address, contact_info, postal_code) VALUES
(1, '张合', '福建省龙岩市长汀县娃娃亲到青岛', '13851435593', '223311'),
(1, '李四', '北京市朝阳区朝外大街', '13912345678', '100020'),
(1, '王五', '上海市浦东新区陆家嘴', '13800000000', '200120'),
(1, '赵六', '广东省深圳市南山区科技园', '13712345678', '518057'),
(2, '钱七', '江苏省南京市鼓楼区', '13612345678', '210000'),
(2, '孙八', '浙江省杭州市西湖区', '13512345678', '310000'),
(2, '周九', '四川省成都市武侯区', '13412345678', '610000'),
(3, '吴十', '湖北省武汉市江汉区', '13312345678', '430000'),
(3, '郑十一', '陕西省西安市碑林区', '13212345678', '710000'),
(3, '王十二', '辽宁省沈阳市和平区', '13112345678', '110000');
CREATE TABLE IF NOT EXISTS user_info (
user_info_id INTEGER PRIMARY KEY,
user_id INTEGER NOT NULL,
nickname TEXT NOT NULL,
real_name TEXT NOT NULL,
gender TEXT,
birth_date DATE,
detailed_address TEXT NOT NULL,
phone_number TEXT NOT NULL,
FOREIGN KEY (user_id) REFERENCES user(user_id)
);
INSERT INTO user_info (user_id, nickname, real_name, gender, birth_date, detailed_address, phone_number) VALUES
(1, '小明', '张明', '', '1990-01-01', '北京市朝阳区某街道', '13800000000'),
(2, '小红', '李红', '', '1992-02-02', '上海市浦东新区另一街道', '13911111111'),
(3, '小刚', '王刚', '', '1994-03-03', '广东省深圳市再一街道', '13722222222');
CREATE TABLE IF NOT EXISTS shopping_cart (
cart_id INTEGER PRIMARY KEY,
ring_id INTEGER NOT NULL,
quantity INTEGER NOT NULL,
user_id INTEGER NOT NULL,
FOREIGN KEY (ring_id) REFERENCES ring(ring_id),
FOREIGN KEY (user_id) REFERENCES user(user_id)
);
CREATE TABLE IF NOT EXISTS orders (
order_id INTEGER PRIMARY KEY,
user_id INTEGER NOT NULL,
ring_id INTEGER NOT NULL,
total_amount REAL NOT NULL,
order_status TEXT NOT NULL,
order_date TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
FOREIGN KEY (user_id) REFERENCES user(user_id),
FOREIGN KEY (ring_id) REFERENCES ring(id)
);

BIN
src/main/resources/static/.DS_Store vendored Normal file

Binary file not shown.

View File

@@ -0,0 +1,10 @@
.Wdate{
border:#999 1px solid;
height:20px;
background:#fff url(../images/datePicker.gif) no-repeat right;
}
.WdateFmtErr{
font-weight:bold;
color:red;
}

View File

@@ -0,0 +1,78 @@
/*关于我们页面*/
.aboutUs{background:#fff}
.about_center{position:relative;overflow:hidden;padding:16px 20px}
.abc_left{width:146px;border:2px solid #efefef;border-bottom:none}
.abc_left li{text-align:center;line-height:36px;font-size:14px;background:#fafafa;cursor:pointer;}
.abc_left h3{color:#333;font-size:14px;border-bottom:2px solid #efefef}
.abc_left h3 a{color:#333}
.abc_left .abul_ul h4{border-bottom:1px solid #efefef;font-weight:100;background:#fff}
.abul_ul a{color:#333;background:url(../images/all-right.png) no-repeat left center;padding-left:10px}
.abc_left .abul_ul .specl_other{color:#c6a34d;background:url(../images/all-right_y.png) no-repeat left center}
.abul_ul a:hover{color:#c6a34d;background:url(../images/all-right_y.png) no-repeat left center}
/*右边*/
.abc_right{width:720px;border:1px solid #f1f1f1;padding:24px}
.abcr_center{color:#666;font-size:14px;line-height:30px}
.abcr_center h2{font-size:14px;color:#333;border-bottom:1px solid #efefef;height:30px}
.abcr_center h3{margin-top:20px;font-size:14px;color:#666;margin-bottom:14px}
.abcr_center p{color:#666;font-size:14px;line-height:30px}
.abcr_center a{color:#666}
.abcr_center a:hover{text-decoration:underline;color:#8e4f1b}
/*右边新加nav*/
.newesthing_cort-nav{border:1px solid #f4f4f4;background:#fafafa;height:33px}
.newesthing_cort-nav li{float:left;border:1px solid #f4f4f4;padding:0 22px;font-size:14px;color:#666;height:33px;line-height:33px;border-top:none;border-bottom:none;border-left:none;cursor:pointer}
.newesthing_cort-nav .newesthing_cort-check{border-top:2px solid #d6b870;background:#fff;margin-top:-1px}
/*网站地图*/
.center-map{border-bottom:1px dashed #f0f0f0;padding:15px 0 20px 0}
.center-map h4{font-family:Arial, Helvetica, sans-serif;font-size:14px;color:#666}
.center-map p{margin-left:-26px}
.center-map a{display:inline-block;margin-left:26px;font-size:14px;color:#666}
.center-map a:hover{color:#8e4f1b;text-decoration:underline}
/*定位*/
.abc_leftfix{position:fixed;top:0;margin-top:10px;z-index:2;}
/*常见问题 新加*/
.about_center-top{overflow:hidden;padding-top:12px}
.ttop_left{background:#f2f2f2;color:#888;font-size:14px;text-align:center;font-weight:bold;width:123px;height:38px;line-height:38px}
.ttop_right li{float:left;font-size:0}
.ttop_right li span,.ttop_right li a,.ttop_right li i{display:inline-block;vertical-align:middle}
.tdnav-left{background:url(../images/q1.jpg) no-repeat;width:16px;height:38px}
.tdnav-center{background:#f2f2f2;width:114px;height:38px;line-height:38px;color:#888;font-size:14px;text-align:center;cursor:pointer}
.tdnav-right{background:url(../images/q2.jpg) no-repeat;width:12px;height:38px}
.ttop_spli .tdnav-left{background:url(../images/q_left.jpg) no-repeat;}
.ttop_spli .tdnav-center{background:#d6b870;color:#fff;font-weight:bold}
.sptdnav-left{background:url(../images/q_right.jpg) no-repeat;}
.sptdnav-right{background:url(../images/q2_right.jpg) no-repeat;}
.about_center-cort{overflow:hidden;margin-top:24px}
/*左边*/
.ques_left{border:2px solid #efefef;width:150px}
.ques_left h3{color:#333;font-size:14px;background:#fafafa;border-bottom:2px solid #efefef;text-align:center;line-height:36px}
.ques_left h3 span{background:url(../images/jt.png) no-repeat left center;padding-left:16px}
.ques_ul li{height:38px;line-height:38px;padding:0 13px;width:auto;text-align:center}
.ques_ul a{background:url(../images/right_b.png) no-repeat left center;padding-left:14px;color:#666;font-size:12px}
.ques_ul h4{font-weight:100;border-bottom:1px solid #efefef}
.ques_ul .spclick{background:#d6b870;}
.ques_ul .spclick h4{border:none}
.ques_ul .spclick a{color:#fff;background:url(../images/right_w.png) no-repeat left center}
/*右边*/
.ques_right{width:730px;margin-left:38px;padding-bottom:70px}
.buy_question{font-size:13px;color:#666;line-height:28px;display:none}
.buy_question strong{font-size:14px}
.have-margin{margin:30px 0}
.common_question h3{font-size:16px;margin-bottom:8px;color:#333}
.com-question li{margin-bottom:30px}
.com-question h4{font-size:14px;color:#4a4a4a;font-weight:bold;line-height:22px;margin-bottom:6px;cursor:pointer}
.com-question div{font-size:12px;color:#666;line-height:22px;display:none}
/*新导航*/
.question_allnav{width:743px;margin:10px 0 0 178px}
.question_allnav-top{overflow:hidden;border:1px solid #dbdbdb;width:720px;font-family:"微软雅黑";margin:0 auto}
.question_allnav-top li{float:left;width:120px;height:30px;line-height:30px;background:url(../images/wline.jpg) no-repeat right center;text-align:center;font-size:14px;color:#666;cursor:pointer}
.question_allnav-top .wbs_nobk{background:none}
.question_allnav-top .questionnav-click{background:#d6aa70;color:#fff}
.question_allnav-bottom{width:720px;overflow:hidden;margin:0 auto;margin-top:4px}
.question_allnav-bottom li{float:left;width:120px;text-align:center;height:7px}
.question_allnav-bottom span{display:block;width:16px;height:7px;margin:0 auto;display:none}
.question_bottom{border-bottom:1px solid #dbdbdb;width:743px}
.question_allnav-bottom .bs_show span{display:block;background:url(../images/sjx.png) no-repeat center center}

View File

@@ -0,0 +1,456 @@
/*求婚钻戒页面*/
/*求婚钻戒中间*/
.zj_bk{background:url(../images/zj_Bk.jpg) no-repeat center;width:980px}
/*banner中间内容*/
.zbk_center{overflow:hidden}
.zbkc-left{float:left;text-align:center;width:400px;color:#8e4f1b;cursor:default;margin-left:44px;margin-top:36px}
.zbkc-left h5{font-size:28px;color:#8e4f1b;margin-bottom:20px}
.zbkc-left h2{font-size:34px;margin-bottom:16px}
.zbkc-left h3{font-size:20px;font-weight:100;margin-bottom:14px}
.zbkc-left h4{font-size:16px;font-weight:100;margin-bottom:26px}
.zbkc-left p{font-size:14px;color:#8e4f1b;margin-bottom:18px}
.zbkc-right{float:right;}
/*高级选项*/
.dr_choose{overflow:hidden;margin-top:1px;width:960px;margin:0 auto}
.drcho_top{height:48px;color:#8e4f1b;line-height:48px;cursor:default}
.drchoose_ul{overflow:hidden;margin:0 auto;width:960px}
.drchoose_ul li{float:left;cursor:pointer;background:url(../images/rp_right.jpg) no-repeat right center #f0f0f0;width:160px;text-align:center;color:#666}
.drchoose_ul span{font-family:"微软雅黑";font-size:16px}
.drchoose_ul .choose_hover{background:#d6aa70;color:#fff}
.drcho_bto{background:url(../images/bt_bottom.png) no-repeat center;width:960px;height:14px;margin:0 auto}
.search_other{width:226px;height:24px;background:url(../images/search_other.png) no-repeat center;border:none;margin-top:0}
/*参数选项*/
.select_choose{overflow:hidden;background:#fff;padding:16px 10px 16px 0;font-family:"微软雅黑"}
.select_choose select{vertical-align:middle}
.select_choose span{padding-left:12px;color:#666;vertical-align:middle;font-size:14px;font-family:"微软雅黑"}
.choose_cz,.choose_serach{padding:0 16px 0 12px;height:25px;line-height:25px;cursor:pointer}
.choose_cz{margin-left:34px;background:#ececec}
.choose_cz span{background:url(../images/serch.png) no-repeat 0 -1px;padding-left:22px}
.choose_serach{background:#fff;margin-left:10px;border:1px solid #c9a548;height:23px;line-height:23px}
.choose_serach span{background:url(../images/serch.png) no-repeat 0 -26px;padding-left:22px;color:#c6a34d;font-weight:bold}
/*鼠标经过*/
.choose_serach-hover{background:#caa752}
.choose_serach-hover span{background:url(../images/search_hover.png) no-repeat 0 -26px;color:#fff}
.choose_cz-hover{background:#b2b2b2}
.choose_cz-hover span{background:url(../images/search_hover.png) no-repeat 0 -1px;color:#fff}
.choose-ks{height:45px;line-height:45px;padding-right:10px;cursor:pointer}
.choose-ks i{vertical-align:middle}
.choose-ks em{background:url(../images/icon.png) -87px -12px no-repeat;width:7px;height:7px;display:inline-block;vertical-align:middle;padding-right:6px}
.choose-ks span{padding:0}
/*分页*/
.paging_all{position:relative;left:50%;float:left;-moz-user-select: none; /*火狐*/-webkit-user-select: none; /*webkit浏览器*/-ms-user-select: none; /*IE10*/-khtml-user-select: none; /*早期浏览器*/user-select: none;}
.paging{height:40px}
.paging li{float:left;border:1px solid #ccc;border-right-width:0px; width:36px;height:38px;line-height:38px;text-align:center;font-family:"Arial";font-size:14px;color:#cd505a;background:#fff;cursor:pointer}
.paging .pli{float:left;border:1px solid #ccc;padding:0 13px;border-right-width:0px;width:auto}
.paging .pli2{float:left;border:1px solid #ccc;padding:0 13px;width:auto}
.paging .pag_gray{background:#efefef;color:#666}
.paging .mouseover{background:#efefef;text-decoration:underline;}
.pag_p{line-height:40px;font-size:14px;color:#666;padding-left:8px}
.pag_txt{width:34px;margin-right:6px}
.pag_bt{width:48px;background:#efefef;border:1px solid #ccc;height:18px;cursor:pointer}
.paging_all-cort{position:relative;right:50%}
/*钻戒购买页面*/
.tobuy{background:#fff;padding-bottom:30px;margin-bottom:20px}
.buy_cort{overflow:hidden;margin-top:15px}
/*左边小图片*/
.buycort_left{position:relative;overflow:hidden;padding-left:20px;width:70px;height:340px}
.bc_left{padding-bottom:20px}
.bc_left li{width:58px;height:58px;text-align:center;border:1px solid #dadada;line-height:58px;margin-top:20px;cursor:pointer}
.top,.bottom{background:url(../images/toporb.png) no-repeat;width:13px;height:7px;position:absolute;left:42px;cursor:pointer}
.bc_left img{vertical-align:top;width:56px;height:56px}
.top{top:0}
.bottom{background-position:0 -7px;top:332px}
.bc_left .li_border{background:url(../images/small_right.png) no-repeat center;border:none;width:66px;height:60px}
.bc_left .li_border img{width:56px;height:56px;margin-top:2px;margin-left:-6px}
/*中间大图片*/
.buycort_center{position:relative;width:400px;z-index:99;margin-left:8px}
.ul_center{position:relative;height:400px}
.ul_center img{width:400px;height:400px}
.ul_center li{position:absolute;display:none}
.big_next{position:absolute;background:url(../images/leftorr.png) no-repeat -11px;width:11px;height:21px;right:0;top:175px;cursor:pointer}
/*刻字预览*/
.kzyl{background:url(../images/kzyl.jpg) no-repeat;width:96px;height:55px;line-height:55px;text-align:center;position:absolute;right:0;top:345px;font-size:12px;color:#fff;font-family:"微软雅黑";display:none}
/*右边选项*/
.buycort_right{margin-right:22px;width:412px}
/*钻石名字价钱*/
.byright_top{cursor:default}
.byright_top p{line-height:27px;font-size:16px;color:#666;}
.byright_top span{font-family:"微软雅黑";color:#ff4c4c;font-size:24px;vertical-align:middle}
/*钻石重量*/
.byright_sec{overflow:hidden;margin:8px 0;cursor:default}
.byright_sec li{width:180px;height:30px;line-height:30px;float:left;font-size:12px;color:#888}
/*材质刻字选择*/
.byright_thr{background:#fef3f1;padding:14px 12px;cursor:default}
.thr_first{margin-bottom:12px}
.thr_first span,.thr_first em,.thr_first a,.thr_secound span,.thr_secound a{font-size:14px;color:#666;vertical-align:middle}
.thr_first select,.thr_secound input,.thr_secound select{vertical-align:middle}
.thr_first i{display:inline-block;padding:0 12px;height:26px;line-height:26px;border:1px solid #ccc;text-align:center;font-family:"Arial";font-size:13px;color:#4c4c4c;cursor:pointer;background:#fff;vertical-align:middle}/*更新日期2014年9月13日*/
.thr_first em{padding-left:20px}
.thr_first a{font-size:12px;color:#888;text-decoration:underline;padding-left:6px}
.thr_first a:hover,.thr_secound a:hover{color:#8e4f1b}
.thr_secound a{font-size:12px;color:#888;text-decoration:underline}
.thr_secound{position:relative;margin-bottom:10px;overflow:hidden}
.thr_secound input{width:136px;height:26px;border:1px solid #ccc;line-height:26px}
.write_choose{display:inline-block;width:30px;height:26px;line-height:26px;text-align:center;background:#fff;vertical-align:middle;color:#888;cursor:pointer;margin-right:4px;border:1px solid #ccc}
.mwrite_choose{display:inline-block;width:30px;height:26px;line-height:26px;text-align:center;background:#fff;vertical-align:middle;color:#888;cursor:pointer;margin-right:4px;border:1px solid #ccc}
.wwrite_choose{display:inline-block;width:30px;height:26px;line-height:26px;text-align:center;background:#fff;vertical-align:middle;color:#888;cursor:pointer;margin-right:4px;border:1px solid #ccc}
.ylxg{display:inline-block;width:78px;height:26px;border:1px solid #ccc;background:url(../images/ylxg.jpg) repeat-x;text-align:center;line-height:26px;font-size:14px;color:#666;vertical-align:middle;cursor:pointer}
.more_dp{height:45px;line-height:45px;color:#666;font-size:12px;cursor:default}
.more_ul{margin-left:-10px;overflow:hidden}
.more_ul li{float:left;border:1px solid #ccc;width:63px;height:26px;line-height:26px;text-align:center;cursor:pointer;font-size:12px;color:#666;margin:0 0 10px 10px}
.more_ul li a{color:#666;display:block}
.more_ul .moreul_sp,.thr_first .iborder{background:#fff url(../images/br_right.png) no-repeat right bottom;width:61px;height:24px;line-height:24px;border:2px solid #feabab}/*更新日期2014年9月13日*/
.thr_first .iborder{width:auto}/*更新日期2014年9月13日*/
.choose_more{background:url(../images/ylxg.jpg) repeat-x}
.shopping{margin:0}
.buy_button{margin-left:0}
.buy_button .bt1{margin-left:0}
/*分享*/
.share{padding-top:16px;overflow:hidden}
.share span{font-size:12px}
.share_sc{background:url(../images/love-it.jpg) no-repeat left center;display:inline-block;padding:0 18px;margin-top:2px;cursor:pointer;color:#8e4f1b}
/*收藏过的样式*/
.share_scclick{background:url(../images/love.jpg) no-repeat left center;color:#888}
.special_share{padding-top:20px}
/*推荐款式*/
.buy_ks{background:#fff;margin-top:26px;margin-bottom:28px}
.ks_tj{width:900px;margin:0 auto;padding:20px 0 40px 0}
.kstj_top{height:38px;color:#666;border-bottom:1px solid #dbdbdb;margin-bottom:10px}
.kstj_top span{font-size:14px;font-weight:bold}
.kstj_top i{font-size:12px}
.kstj_center{position:relative;overflow:hidden}
.tjks_ul{overflow:hidden;margin:8px 0;cursor:pointer}
.tjks_ul li{float:left;text-align:center;margin:0 5px}
.pho_top{height:140px;margin-bottom:6px}
.pho_top img{width:138px;height:138px}
.pho_top a{display:block;text-align:center;border:1px solid transparent}
.pho_top a:hover{border:1px solid #ffcbcb;}
.pho_bottom{margin-top:8px}
.pho_bottom p{font-size:12px;font-family:"微软雅黑";color:#666}
.pre,.next{background:url(../images/leftorr.png);width:11px;height:21px;position:absolute;top:136px;cursor:pointer}
.pre{left:20px}
.next{right:20px;background-position:0 -11px}
/*详情导航*/
.allthenav{width:980px;margin:0 auto}
.gd_nav{height:35px;cursor:pointer;position:relative;z-index:100;width:980px;margin:0 auto}
.gdnav_ul{overflow:hidden;margin-left:68px;font-size:14px}
.gdnav_ul li{float:left;line-height:33px;border:1px solid #e4e4e4;padding:0 32px;background:#fff;margin-right:5px;border-bottom:none}
.gdnav_ul span{color:#666}
.gdnav_ul em{color:#cd505a;font-size:12px}
.gdnav_ul .gdnav_sp{border:1px solid #d6b870;border-bottom:1px solid #fff;height:34px}
.gdnav_ul .gdnav_sp span{color:#8e4f1b;font-weight:bold}
/*导航下的线条*/
.gd_nav-line{border-top:1px solid #d6b870}
.sy_xx{overflow:hidden}
#wrap{display:none}
/*详细参数*/
.xq_it{background:#fff;padding-bottom:80px;margin-bottom:18px;padding-top:24px}
.border_cs{width:885px;padding:15px 0 18px 22px;background:#fef9f8;margin:0 auto;font-size:14px;color:#666;cursor:default}
.border_cs p{line-height:30px}
.border_cs i{display:inline-block;width:92px;font-weight:bold}
.border_cs span{padding-right:34px}
/*table*/
.border_cs-table td{padding:6px 0;}
.border_cs-table td span{padding:0;color:#888}
.border_cs-table td span,.border_cs-table td em{vertical-align:middle}
.border_cs-table td em{color:#333}
.border_cs-td0{width:50px;color:#666;font-weight:bold}
.border_cs-td1{width:96px;font-weight:bold;color:#333}
.border_cs-td2{width:154px}
.border_cs-td3{width:176px}
.border_cs-td4{width:130px}
.border_cs-td5{width:162px}
.border_cs-td6{width:80px}
.border_cs-tdfirst td{padding-top:20px}
/*产品图片*/
.allphoto{width:980px;margin:0 auto;text-align:center;margin-top:46px}
/*评论*/
.ask{background:#fff;padding-bottom:38px;overflow:hidden}
.talk_it{padding:0 38px 24px 38px}
.talkit_top{border-bottom:1px solid #dbdbdb;cursor:default;padding:15px 0;overflow:hidden}
.talkit_bottom{overflow:hidden;padding-top:15px}
.talkit_top-lx{line-height:36px}
.talkit_top-lx span{color:#666;font-size:12px}
.talktop_left{font-size:14px;color:#666;font-weight:bold;margin-top:8px}
.talktop_left span,.talktop_left em{font-weight:100}
.talktop_left i{color:#8e4f1b;font-weight:bold;padding:0 8px}
.talktop_left .next_page{display:inline-block;width:58px;height:23px;text-align:center;line-height:23px;border:1px solid #dbdbdb;font-size:12px;cursor:pointer}
/*客服按钮*/
.talkit_top-lx .bt2 span{font-size:14px;color:#c6a34d}
.talkit_top-lx .hover_bt2 span{color:#fff}
/*每一条评论*/
.every_talk{padding:18px 0;border-bottom:1px solid #dbdbdb;overflow:hidden}
.evertalk_left{margin-top:6px;margin-right:14px}
.evertalk_left .star span{display:inline-block;background:#ffeeef;height:20px;line-height:20px;padding:0 10px;font-size:12px;color:#666;cursor:default}
/*右边的名字*/
.name_date{margin-top:24px;cursor:default}
.name_date p{color:#888;font-size:12px;text-align:center;line-height:18px}
.evertalk_right{font-size:12px}
.evertalk_right p{color:#666;width:624px;line-height:22px;padding-top:2px;margin-bottom:10px;cursor:default}
.evertalk_right span{color:#888}
/*其他功能*/
.other_do{background:#fff;margin-top:20px;margin-bottom:20px}
.ot_all{overflow:hidden;padding:24px 0}
.ot_left{padding-top:10px;border-right:1px solid #dbdbdb;height:200px;text-align:center;width:325px}
.ot_left p{font-size:14px;color:#666;margin-top:12px}
.thephone,.thetaxi{background:url(../images/phone.png) no-repeat;width:50px;height:41px;margin:0 auto;margin-bottom:8px}
.ot_left h3{font-size:24px;font-family:"Arial";color:#666;font-weight:100}
.otherot_p p{color:#999}
.otherot_p a{color:#8e4f1b;margin-left:-10px}
.otherot_p a:hover{text-decoration:underline}
.no-border{border:none}
.thetaxi{background-position:-50px 0}
.no-border h3{color:#666;font-family:"微软雅黑";font-size:18px}
.no-border select{width:228px;height:24px;margin-top:5px}
.all_txt{margin:10px 0}
.name_txt,.phone_txt{border:1px solid #ccc;padding:4px;padding-right:0}
.name_txt{width:72px}
.phone_txt{width:136px}
.to_yy{padding:0 25px;height:36px;line-height:36px;float:left;margin-left:96px;cursor:pointer;font-weight:bold;background:#c9a548;color:#fff}
.ot_left .bt1{margin-left:106px}
/*常见问答页*/
.question_left p{margin-bottom:16px;overflow:hidden}
.question_left i{background:url(../images/question.jpg) no-repeat;display:inline-block;height:35px;width:35px;float:left}
.question_left span{font-size:14px;font-weight:bold;color:#333;padding-left:14px;float:left;width:540px}
.question_left .answer i{background:url(../images/answer.jpg) no-repeat}
.question_left .answer span{font-size:12px;color:#666;font-weight:100;display:inline-block;width:466px;line-height:16px}
.question_right p{font-size:12px;color:#666}
.question_right p span{color:#8e4f1b;cursor:pointer}
/*看过的产品*/
.kgd_cp{background:#fff;margin-top:20px;overflow:hidden}
.read_it{width:904px;margin:0 auto;margin-top:20px;margin-bottom:20px;padding:6px 0;overflow:hidden}
.read_jl{font-size:14px;color:#666;border-bottom:1px solid #e4e4e4;padding-bottom:20px}
.read_ul{overflow:hidden;margin-top:20px}
.read_ul li{float:left;text-align:center;margin:0 5px}
.read_ul p{font-family:"微软雅黑";font-size:12px;color:#666;width:140px}
.read_ul a{color:#888888;font-family:"Arial";display:block;border:1px solid transparent}
.read_ul a:hover{border:1px solid #ffcbcb}
.read_top{height:140px;margin-bottom:6px}
.read_pre,.read_next{position:absolute;background:url(../images/leftorr.png);width:11px;height:21px;top:140px;cursor:pointer}
.read_top img{width:138px;height:138px}
.read_pre{left:20px}
.read_next{right:20px;background-position:-11px 0}
/*珠宝饰品页面*/
.pho_cs{font-size:14px;padding:12px 0 30px 0}
.pho_cs p{line-height:24px}
.pho_cs span{color:#888}
.pho_cs i{color:#666;padding-right:10px}
.pho_cs .text_indet{padding-left:49px}
/*对戒页面*/
.spe_sel{height:24px;margin-right:10px;border:1px solid #ccc}
.thr_secound i{text-align:center;color:#666;vertical-align:middle;font-size:14px}
.special_border{width:880px;padding:18px 30px;overflow:hidden}
/*高级搜索*/
.gj_search{clear:both;background:#fff;width:980px;margin:0 auto;position:relative}
.all_search{padding:20px 35px}
/*价格拉动*/
.thepirce{overflow:hidden;margin-bottom:16px;font-size:0}
.theline{position:relative;overflow:hidden}
.all_search span{color:#666;display:inline-block;background:url(../images/word_right.png) no-repeat center right;font-size:14px;padding-right:14px}
.tz_line{position:relative;margin-left:10px;width:380px;height:15px}
.tz_line i{cursor:pointer}
.all_pirce{position:absolute;bottom:4px;left:82px;cursor:default}
.all_pirce span{padding-right:13px;font-size:12px;color:#ccc;font-family:Arial;background:none}
.cz_zz span{padding-right:16px}
.tz_line i{display:inline-block;background:url(../images/fj.png) no-repeat;width:15px;height:15px;position:absolute;top:0}
.tz_line .back_gray{display:inline-block;background:#999;width:360px;height:5px;margin-left:10px;padding:0;margin-top:5px}
.fh_dian{left:0px;z-index:3}
.fl_dian{left:360px;z-index:3}
.back_red{height:5px;background-color:#fc9292;position:absolute;left:0;width:360px;left:5px;top:5px;z-index:1}
#leftMoney,#rightMoney,#leftZZ,#rightZZ{position:absolute;top:0;font-size:12px;color:#666;font-family:Arial;cursor:default}
#leftMoney,#leftZZ{left:50px}
#rightMoney,#rightZZ{right:6px}
/*颜色净度*/
.color_jd{margin-bottom:18px;font-size:0}
.the_color{-moz-user-select: none; /*火狐*/-webkit-user-select: none; /*webkit浏览器*/-ms-user-select: none; /*IE10*/-khtml-user-select: none; /*早期浏览器*/user-select: none;}
.the_color span{vertical-align:middle;cursor:default;margin-top:6px}
.the_color i,.theline i,.spline i{display:inline-block;vertical-align:middle;height:26px;line-height:26px;width:38px;text-align:center;border:1px solid #ccc;color:#666;font-size:12px;font-family:Arial;cursor:pointer;margin:0 4px;}
/*切工*/
.toserach{margin-left:78px}
.the_cz,.the_ljss{padding:0 20px;height:30px;line-height:30px;cursor:pointer}
.the_ljss{background:#d6b870}
.the_cz span,.the_ljss span{background:none;padding-left:18px;cursor:pointer;padding-right:4px}
.the_ljss span{color:#fff;background:url(../images/search_hover.png) no-repeat 0 -18px}
.the_cz{margin-left:20px;background:#ececec}
.the_cz span{color:#666;background:url(../images/serch.png) no-repeat 0 7px;}
/*鼠标移过改变颜色*/
.the_ljss-hover{background:#caa752}
.the_ljss-hover span{color:#fff;background:url(../images/search_hover.png) no-repeat 0 -18px}
.the_cz-hover{background:#b2b2b2}
.the_cz-hover span{color:#fff;background:url(../images/search_hover.png) no-repeat 0 7px;}
/*搜索结果页面*/
.thbk_w{background:#fff;margin-bottom:1px;z-index:9}
.thb_top{height:34px;line-height:34px;border-bottom:1px solid #fef3f1}
.thb_top p,.thb_bottom p{padding-left:20px;font-size:0;color:#666;cursor:default}
.sp_sp{margin:0;padding-right:20px}
.thb_bottom{height:40px;line-height:40px;font-size:14px;clear:both}
.thb_bottom p i{color:#8e4f1b;font-weight:bold;font-size:14px}
.thesearch{height:40px;line-height:40px;padding-left:20px}
.thb_top span,.thb_bottom span,.thb_top i,.thb_bottom i{font-size:14px}
.thesearch span{font-size:14px}
.botomm-left span{margin-right:12px}
.botomm-left i{padding:0 8px}
.abtop-left em{font-size:12px;color:#666;vertical-align:middle}
.abtop-left span{display:inline-block;font-size:14px;color:#848484;padding:0 6px;height:21px;line-height:21px;border:1px solid #ccc;margin-right:10px;vertical-align:middle;cursor:pointer}
.abtop-left i{background:url(../images/close.png) no-repeat right center;padding-right:16px}
/*购买页的搜索结果*/
.thesearch_jg{margin-top:2px}
.ser_top{overflow:hidden;border-bottom:1px solid #ededed;padding:20px 0;margin:0 35px;cursor:default}
.ser_top img{cursor:pointer}
.gj_search h3{font-size:14px;color:#666}
.serach_bottom{margin:0 35px;padding-bottom:40px;overflow:hidden;margin-bottom:20px}
.result_top{background:url(../images/thelite.png) no-repeat -2px bottom;padding-bottom:14px}
.serach_bottom h4{font-size:14px;color:#666;font-weight:100}
.result{overflow:hidden;padding:6px 0 40px 0;width:910px}
.result li{background:#fef3f1;line-height:60px;overflow:hidden;margin-bottom:10px;height:60px}
.result_left{padding-left:18px;font-size:0;color:#666;cursor:default}
.result_left span{font-size:12px;vertical-align:middle;}
.result_left em{padding:0 7px;font-size:12px;vertical-align:middle;}
.result_left i{font-size:12px;padding-left:5px;vertical-align:middle;}
.result_left .red_i{color:#ff4c4c;font-weight:bold;font-size:14px}
.result_right{padding:0 10px;font-size:12px;background:#ffe7e7;color:#8e4f1b;font-weight:bold;cursor:pointer}
.result_right a{display:block;color:#8e4f1b;}
.toclose{cursor:pointer}
/*新加*/
.drcp_thing{margin-top:20px}
.allchose_nav{width:980px}
.Detail-dw,.buyxq-dw{position:fixed;top:0;margin-top:4px;z-index:30}
.Detail-dw{left:50%;margin-left:-480px}
.buyxq-dw{background:url(../images/nav_rp.png) repeat-x;width:100%}
.zbk_sptop a{background:url(../images/all-right.png) no-repeat left center;padding-left:10px}
.byright_top-xq{border-bottom:1px solid #f1f1f1;padding:4px 0 10px 0}
.byright_top-xq i{font-size:12px;color:#888;display:inline-block;width:120px}
/*新搜索框*/
.tz_border{height:38px;background:url(../images/tzborder_rp.jpg) repeat-x;width:369px;border:1px solid #ccc;padding-left:14px;line-height:38px;font-size:0}
.word_right{margin-top:12px}
.tz_border i{display:inline-block;background:url(../images/zpice.jpg) no-repeat;vertical-align:middle;margin-right:12px}
.tz_border input{width:78px;padding:2px 0;border:1px solid #ccc;vertical-align:middle;padding-left:4px}
.tz_border em{font-size:12px;color:#666;vertical-align:middle;padding:0 10px}
.tz_border .the_pirce{background-position:0 0;width:7px;height:13px;border:none}
.tz_border .the_zzhong{background-position:-13px 0;width:13px;height:13px;border:none}
.color_cs,.clear_cs,.the_qg,.the_dc,.the_yg,.the_pg{border-left:1px solid #ccc;margin-left:10px}
.clear_cs i,.color_cs i,.the_qg i,.the_dc i,.the_yg i,.the_pg i{height:26px;line-height:26px;border-left:none;margin:0;background:url(../images/rpit.jpg) repeat-x}
.color_cs i{width:47px;background:url(../images/zs_rp.jpg) repeat-x}
.color_cs .zs2{background:url(../images/zs2.jpg) no-repeat}
.color_cs .zs3{background:url(../images/zs3.jpg) no-repeat}
.color_cs .zs4{background:url(../images/zs4.jpg) no-repeat}
.color_cs .zs5{background:url(../images/zs5.jpg) no-repeat}
.color_cs .zs6{background:url(../images/zs6.jpg) no-repeat}
.clear_cs i{width:54px}
.the_qg i{width:76px}
.color_cs b,.clear_cs b,.the_qg b,.the_dc b,.the_yg b,.the_pg b{position:relative;font-style:normal;font-weight:100;display:inline-block}
.color_cs em,.clear_cs em,.the_qg em,.the_dc em,.the_yg em,.the_pg em{display:block;background:url(../images/news.png) no-repeat;width:158px;height:40px;position:absolute;font-size:12px;color:#333;padding:16px 10px 0 14px;bottom:-48px;z-index:20}
.clear_cs em{left:-64px}
.the_qg em{left:-56px}
.color_cs em{left:-69px}
.color_cs b{z-index:20}
.clear_cs b,.the_qg b{z-index:15}
.the_dc b{z-index:10}
.the_dc i,.the_yg i,.the_pg i{width:95px}
.the_dc em,.the_yg em,.the_pg em{left:-44px}
.the_color em{display:none}
.sp_toserach{margin-left:524px}
.tz_border{margin-left:10px}
.the_color .hover_border,.theline .hover_border{background:#e5e5e5}
.the_color .pp_border,.theline .pp_border{background:#FCC}
.thb_bottom p span{font-size:14px}
/*新加搜索结果*/
.result .result_hover{background:#ffe7e7}
.result_hover .result_right{background:#ffcfcf}
/*新的搜索页面*/
.spword_right{margin-top:5px}
.spthe_color,.hide_jd{display:none}
.spthe_more{width:445px}
.more_xq{background:url(../images/xq.jpg) no-repeat;width:110px;height:28px;border:none;margin-left:10px;display:inline-block;cursor:pointer}
.abtop-left .to_czit{background:url(../images/cz_button.jpg) no-repeat;width:40px;text-align:center;color:#666;font-size:12px}
.search_text{font-size:0;margin-left:20px}
.search_text input{border:1px solid #ccc;padding:1px 0;vertical-align:middle;width:60px;padding-left:2px}
.search_text span{vertical-align:middle;font-size:12px;color:#888;padding:0 6px}
.lp_mgtxt{margin-left:6px}
.spthbk_w{z-index:8}
/*确认框*/
.sea_post,.seakl_post{position:relative}
.sea_post{z-index:12}
.seakl_post{z-index:11}
.sea_post p{padding:0 5px;position:relative;z-index:10}
.sea_qr{position:absolute;width:100%;height:40px;border:1px solid #ccc;top:0;left:0;padding-right:46px;display:none;background:#fff}
.sea_button{width:41px;height:21px;line-height:21px;border:1px solid #b9994c;background:#d6b870;color:#fff;font-size:12px;text-align:center;position:absolute;top:7px;right:10px;z-index:10;cursor:pointer}
/*定位*/
.spthbk_wfix{position:fixed;top:0;margin-top:6px;left:50%;margin-left:-490px;z-index:20}
.big_next-hover{background:url(../images/right-hover.png) no-repeat;width:15px;height:29px}
/*增加a标签*/
.all_search a{font-size:12px;color:#666;display:block}
/*钻石搜索*/
.zs_search{height:26px;line-height:26px;width:162px;border:1px solid #ccc;position:relative;margin-left:10px}
.zs_txt{height:18px;border:none;width:156px;margin-top:4px}
.pmsearch{width:444px}
.sq_it{height:28px;line-height:28px}
.all_search .search_sq{background:url(../images/sq.png) no-repeat right 1px;font-size:12px;color:#666;padding-right:10px;cursor:pointer;display:inline}
.all_search .search_sq:hover{background:url(../images/sq.png) no-repeat right -11px;color:#8e4f1b;text-decoration:underline}
/*列表页*/
.sp_search{margin-right:20px}
.sp_search .zs_search{margin-top:8px;margin-left:0;width:150px}
.sp_search .zs_txt{width:144px}
.the_lct{text-align:center;padding:18px 0 6px 0;margin-bottom:10px}
.thered_word{color:#888;font-size:11px;display:inline-block;}
.thefirst_it,.thesec_it{overflow:hidden}
.thesec_it{margin-top:6px}
.thesec_word-left b{font-weight:100;border:1px solid #cfcfcf;border-right:none;display:inline-block;height:22px;line-height:22px;vertical-align:middle}
.thesec_word-left i{color:#666;font-size:14px;padding-right:12px;border-right:1px solid #cfcfcf;display:inline-block;width:70px;text-align:center;cursor:pointer}
.thesec_word-left .kspx_click{color:#d6aa70}/*降序*/
.thesec_word-left .sxpx_click{color:#d6aa70}/*升序*/
.thesec_word i{font-size:14px;color:#8e4f1b}
.thesec_word .thered_color{color:#ff2400}
.thesec_word em{display:inline-block;border:1px solid #cfcfcf;font-size:14px;width:60px;height:22px;line-height:22px;text-align:center;background:url(../images/right3.png) no-repeat 54px center;padding-right:4px;color:#d6aa70;cursor:pointer}
.thesec_word .no_paget{background:url(../images/right1.png) no-repeat 4px center;color:#cfcfcf;padding-left:4px;padding-right:0}/*当在第一页时*/
.thesec_word .have_paget{background:url(../images/right2.png) no-repeat 4px center;color:#999;padding-left:4px;padding-right:0}/*当不在第一页时*/
.thesec_word .last_paget{background:url(../images/right4.png) no-repeat 54px center;color:#cfcfcf}/*当在最后一页时*/

View File

@@ -0,0 +1,302 @@
/*品牌文化*/
/*首页*/
.culture_same{background:#fff}
.culture_same h4{font-family:"Times New Roman", Times, serif;font-size:16px;font-weight:100;font-style:italic}
/*标题*/
.culture_top{text-align:center;padding:16px 0}
.culture_top-tittle{font-size:0;margin-bottom:6px}
.culture_top-tittle i{display:inline-block;vertical-align:middle;background:url(../images/line.jpg) no-repeat;width:83px;height:1px}
.culture_top-tittle span{font-size:30px;color:#8e4f1b;vertical-align:middle;padding:0 22px}
.culture_top-tittle .tittle_span{font-size:35px}
.culture_top-tittle h3{font-size:30px;color:#8e4f1b;vertical-align:middle;padding:0 22px;font-weight:100}/*2014年9月4日*/
.culture_top h4{color:#555}
/*导航*/
.culture_nav{text-align:center;font-size:0;padding-bottom:40px}
.culture_nav a,.culture_nav i{font-size:12px;color:#666}
.culture_nav i{padding:0 8px}
.culture_nav a:hover{color:#8e4f1b;text-decoration:underline}
.culture_nav .culture_click{color:#8e4f1b}
/*文章*/
.culture_wz{text-align:center;padding-bottom:30px}
.culture_wz p{font-size:12px;color:#333;line-height:24px}
/*品牌理念*/
.culture_pp{margin:10px 20px;overflow:hidden}
.culture_first{background:#fff8f7}
.culture_pp-word{width:470px;text-align:center;margin-top:60px}
.culture_pp-word p{font-size:12px;color:#333;line-height:24px}
.culture_pp-word h3{color:#8e4f1b;font-size:24px}
.culture_pp-word h4{color:#8e4f1b;margin-bottom:12px}
.to_more{display:inline-block;width:112px;height:28px;text-align:center;line-height:28px;color:#c6a34d;font-size:14px;border:1px solid #e4cf9f;margin-top:30px;font-weight:bold;background:url(../images/all-right_y.png) no-repeat 26px center;padding-left:10px}
.to_more:hover{background:url(../images/all-right_w.png) no-repeat 26px center #caa752;color:#fff;border:1px solid #caa752}
/*社会名人推荐*/
.culture_sec{background:#f0dddb}
.culture_sec-right{padding:25px 0;margin-right:48px}
/*最烂漫珠宝店*/
.culture_thrid{background:#e8e8e8}
.culture_thrid-left{padding:35px 0;margin-left:48px}
/*品质工艺与dr族文化*/
.culture_four-left,.culture_four-right{position:relative}
.bk_opacity{background:#453b3c;opacity:0.8;filter:alpha(opacity=80);width:220px;height:170px;position:absolute;left:19px;top:57px}
.professional_gy{position:absolute;left:52px;top:94px;width:154px;text-align:center}
.professional_gy h3,.brand_drz h3{font-size:24px;color:#fff}
.professional_gy h4,.brand_drz h4{font-size:16px;color:#fff}
.professional_gy .to_more{margin-top:20px}
.brand_drz{position:absolute;top:84px;right:32px;width:160px;text-align:center}
.brand_drz p{color:#fff;font-size:12px;line-height:22px}
.brand_drz h4{margin-bottom:10px}
.brand_drz .to_more{border:1px solid #fff;color:#fff;background:url(../images/all-right_w.png) no-repeat 26px center}
.brand_drz .to_more:hover{background:url(../images/all-right_w.png) no-repeat 26px center #caa752;border:1px solid #caa752}
/*DR社区与加入我们*/
.culture_last a{display:block}
/*分享*/
.culture_share{padding-bottom:48px;margin-top:38px}
.culture_share-tittle{font-size:0;text-align:center;padding-bottom:18px}
.culture_share-tittle i{display:inline-block;width:49px;height:1px;background:url(../images/line.jpg) no-repeat;vertical-align:middle}
.culture_share-tittle span{vertical-align:middle;color:#8e4f1b;font-size:14px;padding:0 8px;font-weight:bold}
.culture_share-it{text-align:center;font-size:0}
.culture_share-it a{display:inline-block;width:33px;height:34px;background:url(../images/share.png) no-repeat;margin-right:10px}
.culture_share-it a:hover{background:url(../images/share_hover.png) no-repeat}
.culture_share-it .cshare_1,.culture_share-it .cshare_1:hover{background-position:0 0}
.culture_share-it .cshare_2,.culture_share-it .cshare_2:hover{background-position:-33px 0}
.culture_share-it .cshare_3,.culture_share-it .cshare_3:hover{background-position:-66px 0}
.culture_share-it .cshare_4,.culture_share-it .cshare_4:hover{background-position:-99px 0}
.culture_share-it .cshare_5,.culture_share-it .cshare_5:hover{background-position:-132px 0}
/*品牌理念页面*/
.culture_brand-text{text-align:center;margin-bottom:34px}
.culture_brand-text p{font-size:14px;color:#666;line-height:24px}
.culture_brand-ul{overflow:hidden;margin-left:105px;padding:36px 0}
.culture_brand-ul li{float:left;text-align:center;margin-left:20px}
.culture_brand-ul a{display:block}
.culture_brand-ul p{font-size:14px;color:#666;margin-top:16px}
.culture_brand-ul .curluthover a{opacity:0.5;filter:alpha(opacity=50)}
.culture_brand-ul .curluthover p{text-decoration:underline}
/*真爱验证页面*/
.culture_truelove{width:730px;margin:0 auto}
.culture_truelove-cort{overflow:hidden;padding-bottom:28px}
.truelove_cort-img{padding-top:6px}
.truelove_cort-img p{margin-top:16px;text-align:center}
.truelove_cort-img a{color:#c6a34d;font-size:12px;font-weight:bold}
.truelove_cort-img a:hover{text-decoration:underline}
.truelove_cort-word{width:350px}
.truelove_cort-word h5,.atricle_cort-word h5{font-size:14px;color:#666}
.truelove_cort-word p,.atricle_cort-word p{font-size:14px;color:#666;line-height:23px}
.truelove_word-text{margin-top:20px}
.culture_truelove-ul{overflow:hidden;margin-left:-56px;padding:28px 0}
.culture_truelove-ul li{float:left;height:50px;line-height:50px;margin-left:56px}
.culture_truelove-ul a{display:block}
.culture_truelove-ul span{display:inline-block;background:url(../images/yz_ul.jpg) no-repeat;height:50px;width:50px;vertical-align:middle;margin-right:10px}
.culture_truelove-ul i{background:url(../images/right.png) no-repeat left center;padding-left:13px;font-size:13px;color:#666;font-weight:bold;display:inline-block;vertical-align:middle}
.culture_truelove-ul .truelove_ul-2{background-position:0 -50px}
.culture_truelove-ul .truelove_ul-3{background-position:0 -100px}
.culture_truelove-ul .truelove_ul-4{background-position:0 -150px}
/*真爱协议页面*/
.culture_protocols-cort{overflow:hidden;margin-bottom:64px}
/*国际认证页面*/
.culture_zs{padding:20px 0 50px 0}
.culture_zs h5{font-size:13px;color:#666}
.culture_zs-ul{overflow:hidden;margin-left:-14px;margin-top:20px}
.culture_zs-ul li{float:left;background:url(../images/allzs.jpg) no-repeat;width:110px;height:41px;margin-left:14px}
.culture_zs-ul li a{display:block;height:41px}
.culture_zs-ul .culture_zsul-2{background-position:0 -41px}
.culture_zs-ul .culture_zsul-3{background-position:0 -82px}
.culture_zs-ul .culture_zsul-4{background-position:0 -123px}
.culture_zs-ul .culture_zsul-5{background-position:0 -164px}
.culture_zs-ul .culture_zsul-6{background-position:0 -205px}
.culture_certification-ul{overflow:hidden;padding:28px 0;margin-left:-56px}
.culture_certification-ul li{float:left;height:50px;line-height:50px;margin-left:56px}
.culture_certification-ul span{display:inline-block;background:url(../images/zs_ul.jpg) no-repeat;height:50px;width:50px;vertical-align:middle;margin-right:10px}
.culture_certification-ul a{display:block}
.culture_certification-ul i{background:url(../images/right.png) no-repeat left center;padding-left:13px;font-size:13px;color:#666;font-weight:bold;vertical-align:middle}
.culture_certification-ul .truelove_ul-2{background-position:0 -50px}
.culture_certification-ul .truelove_ul-3{background-position:0 -100px}
.culture_certification-ul .truelove_ul-4{background-position:0 -150px}
/*超4C标准页面*/
.culture_standard{width:730px;margin:0 auto;overflow:hidden}
.culture_standard-word h5{font-size:14px;color:#666;margin-bottom:6px}
.culture_standard-word p{font-size:14px;color:#666;line-height:24px;margin-bottom:30px}
.culture_standard-img{margin-bottom:60px}
/*名人推荐页面*/
.culture_mr{width:940px;margin:0 auto}
.culture_mr-first{overflow:hidden}
/*左边*/
.culture_mrf-left{position:relative;width:466px;height:415px;margin-top:8px}
.culture_mr-banner{position:relative}
.culture_mr-banner li{position:absolute;left:0;top:0;float:left;display:none}
.culture_mr-banner a{display:block}
.gray_back{background:#262724;opacity:0.4;filter:alpha(opacity=40);width:384px;height:95px;position:absolute;bottom:27px;left:50%;margin-left:-192px}
.culture_banner-word{position:absolute;bottom:27px;text-align:center;width:384px;height:95px;left:50%;margin-left:-192px}
.culture_banner-word h3,.culture_banner-word p{color:#fff}
.culture_banner-word h3{font-size:18px;font-weight:100;margin-top:32px}
.culture_banner-word p{font-size:12px;margin:7px 0 10px 0}
.checkmore{display:inline-block;color:#f3dda8;border:1px solid #f3dda8;width:87px;height:25px;line-height:25px;text-align:center;font-size:12px;font-weight:bold;background:url(../images/all-right_y.png) no-repeat 14px center;padding-left:8px}
.checkmore:hover{background:#caa752 url(../images/all-right_w.png) no-repeat 14px center;color:#fff;border:1px solid #caa752}
.culture_banner-smalld{position:absolute;bottom:12px;left:50%;width:140px;margin-left:-70px}
.culture_banner-smalld li{background:url(../images/diand.png) no-repeat;width:8px;height:8px;float:left;margin-right:15px;cursor:pointer}
.culture_banner-smalld .hover_on{background-position:0 -8px}
/*右边*/
.culture_mrf-cort{overflow:hidden;margin-top:8px}
.culture_mrf-text{width:233px;height:203px;text-align:center}
.culture_mrf-text h3{color:#666;font-size:16px;margin:38px 0 12px 0}
.culture_mrf-text p{color:#666;font-size:12px;width:190px;text-align:justify;margin:0 auto;overflow:hidden;line-height:20px}
.culture_mrf-text .checkmore{border:1px solid #c9a548;color:#c9a548;margin-top:16px}
.culture_mrtext-color1{background:#ffebeb}
.culture_mrtext-color2{background:#ecfaf9}
.culture_mrtext-color3{background:#fff3df}
.culture_mrtext-color4{background:#fef2fe}
.culture_mrf-img{position:relative}
.culture_mrf-img a{display:block}
.culture_mrf-img span{display:inline-block;background:url(../images/left.png) no-repeat;width:7px;height:13px;position:absolute;top:50%;margin-top:-6px}
.culture_mrf-img .smallk_first{background-position:0 0;right:0}
.culture_mrf-img .smallk_sec{background-position:0 -13px;left:0}
.culture_mrf-img .smallk_third{background-position:0 -26px;right:0}
.culture_mrf-img .smallk_forth{background-position:0 -39px;right:0}
.culture_mr-sec{overflow:hidden;border-bottom:1px solid #d3d3d3;padding-bottom:26px;margin-bottom:16px}
/*第三块*/
.culture_mr-third{overflow:hidden;padding-top:11px}
.culture_mr-third a{display:block}
.culture_mr-third-word{background:#f1f1f1;width:678px;height:206px;padding:0 28px}
.culture_mr-third-word h3{font-size:15px;color:#333;margin:24px 0 10px 0}
.culture_mr-third-word a{color:#333}
.culture_mr-third-word a:hover{text-decoration:underline}
.culture_mr-third-word p{font-size:14px;color:#666;line-height:24px;height:80px;overflow:hidden}
.culture_mr-third-more{overflow:hidden;margin-top:18px}
.culture_mr-third-more a{color:#c6a34d;font-size:14px}
.culture_mr-third-more a:hover{font-weight:bold;text-decoration:underline}
/*分页*/
.paging_all{margin:24px 0;position:relative;left:50%;float:left;-moz-user-select: none; /*火狐*/-webkit-user-select: none; /*webkit浏览器*/-ms-user-select: none; /*IE10*/-khtml-user-select: none; /*早期浏览器*/user-select: none;}
.paging{height:40px}
.paging li{float:left;border:1px solid #ccc;border-right-width:0px; width:36px;height:38px;line-height:38px;text-align:center;font-family:"Arial";font-size:14px;color:#cd505a;background:#fff;cursor:pointer}
.paging .pli{float:left;border:1px solid #ccc;padding:0 13px;border-right-width:0px;width:auto}
.paging .pli2{float:left;border:1px solid #ccc;padding:0 13px;width:auto}
.paging .pag_gray{background:#efefef;color:#666}
.paging .mouseover{background:#efefef;text-decoration:underline;}
.pag_p{line-height:40px;font-size:14px;color:#666;padding-left:8px}
.pag_txt{width:34px;margin-right:6px}
.pag_bt{width:48px;background:#efefef;border:1px solid #ccc;height:18px;cursor:pointer}
.paging_all-cort{position:relative;right:50%}
/*名人推荐文章页面*/
.culture_atricle{width:780px;margin:0 auto;border-top:1px solid #c5c5c5;padding-top:48px;padding-bottom:40px;font-family:;}
.culture_atricle-cort{overflow:hidden;margin-bottom:46px}
.atricle_cort-word{width:380px}
.atricle_cort-word p{text-indent:2em;line-height:28px}
.atricle_cort-text{margin-bottom:20px}
.culture_atricleort-left{position:relative;width:382px;height:318px}
.culture_atricleort-ul{position:relative;width:382px}
.culture_atricleort-ul li{float:left;position:absolute;left:0;top:0;text-align:center;display:none}
.culture_atricleort-ul p{margin-top:16px}
.culture_atricleort-ul a{color:#c9a548;font-size:18px}
.culture_atricle-cort .culture_banner-smalld{bottom:74px;width:92px;left:50%;margin-left:-32px}
.culture_atricleort-right{width:310px;margin:28px 30px 0 0}
.culture_atricleort-right p{color:#000;font-size:14px;line-height:28px}
.culture_atricleort-tittle{overflow:hidden;margin-top:16px}
/*同系列产品*/
.culture_atricleort-border{border:1px solid #e5e5e5;width:778px;margin:0 auto;background:#f3f3f3}
.atricleort-border{padding:24px 20px 10px 20px}
.atricleort-border-top{padding-bottom:10px}
.atricleort-border-top span{font-size:16px;color:#666;font-weight:bold;vertical-align:middle}
.atricleort-border-top em{display:inline-block;width:7px;height:7px;background:url(../images/icon.png) no-repeat -87px -12px;vertical-align:middle}
.atricleort-border-ul{overflow:hidden;margin-left:-12px}
.atricleort-border-ul li{float:left;text-align:center;margin-left:12px}
.atricleort-border-ultop{border:1px solid #eee}
.atricleort-border-ultop a{display:block}
.atricleort-border-ulbottom{margin-top:8px}
.atricleort-border-ulbottom p{color:#888;font-size:12px;line-height:18px}
.atricleort-border-ulbottom span{color:#ff0101;}
/*加入我们的页面*/
.culture_joinus{width:730px;margin:0 auto}
.culture_joinus-word{padding-top:10px}
.culture_joinus-word h5{font-size:14px;color:#666;margin-bottom:16px}
.culture_joinus-word p{font-size:14px;color:#666;text-indent:2em;line-height:26px;margin-bottom:10px}
.culture_joinus h3{border-bottom:1px solid #e6e6e6;padding-bottom:10px;font-size:14px;color:#666;margin:0 3px}
/*工作职位*/
.culture_joinus-work{padding-bottom:30px}
.culture_joinus-work td{text-align:center}
.joinus_work-first td{font-weight:bold;color:#333;font-size:14px;height:42px}
.joinus_work-tr1{width:198px}
.joinus_work-tr2{width:168px}
.joinus_work-tr3{width:156px}
.joinus_work-tr4{width:128px}
.joinus_work-tr5{width:82px}
.joinus_work-sec td{height:40px;color:#666;font-size:14px;background:#fafafa;border-bottom:2px solid #fff}
.joinus_work-sec td a{color:#666;font-size:14px;text-decoration:underline}
.joinus_work-spcolor td{background:#fef3f1}
/*职位详情页面*/
.culture_joinus-cort{padding:14px 0;color:#666;font-size:14px;line-height:26px}
.culture_joinus-cort h2{color:#333;font-size:16px;margin-bottom:16px}
.culture_joinus-cort p{font-size:14px;color:#666}
.culture_joinus-cort a{color:#666}
.culture_joinus-cort h4{margin-top:30px;font-size:14px;color:#666;font-style:normal;font-weight:bold;margin-bottom:12px}
.culture_joinus-spsj{text-indent:5em}
.culture_mrf-text .checkmore:hover{color:#fff}
/*深圳店北京店*/
.culture_store-cort{margin-bottom:82px;overflow:hidden}
.culture_store-cort h5{line-height:22px}
.store_cort-img{position:relative;width:345px;height:451px}
.store_cortul{position:relative}
.store_cortul li{float:left;position:absolute;top:0;left:0}
.store_cortuldian{position:absolute;text-align:center;width:345px;font-size:0;bottom:18px;left:0}
.store_cortuldian span{display:inline-block;background:url(../images/diand.png) no-repeat;width:8px;height:8px;margin-left:15px;cursor:pointer}
.store_cortuldian .sp_cortyldian{background-position:0 -8px;}
.store_word-text{margin-top:30px}
.culture_store-seccort{margin-bottom:68px}
.truelove_cort-word h3{font-size:16px;color:#666;margin-bottom:30px}
.store_word-dz{width:342px}
.store_word-dz p{line-height:26px;color:#7d7d7d}
.store_word-dz span{font-weight:bold;}
.store_word-dz i{color:#fff;display:block;width:100px;height:30px;line-height:30px;text-align:center;font-size:14px;background:#caa648;margin:0 auto;margin-top:10px;cursor:pointer}
.store_word-dz a:hover{background:#caa752}
.word_ident{text-indent:3em;}
.culture_store-thircort h3{font-size:16px;color:#666;margin-bottom:12px}
.map_adress{text-align:center;font-size:0;margin-top:18px}
.map_adress span,.map_adress em{vertical-align:middle;color:#666}
.map_adress span{font-size:14px}
.map_adress input{padding:4px 0;vertical-align:middle;width:165px;border:1px solid #e5e5e5;text-align:center;margin:0 12px}
.map_adress em{display:inline-block;width:70px;height:26px;line-height:26px;text-align:center;background:#dcdcdc;font-size:12px;cursor:pointer}
.culture_store-thircort{margin-bottom:52px}
/*填写信息*/
.culture_store-tx{padding-bottom:50px}
.culture_store-tx h3{color:#8d4e1b;font-size:24px;margin-bottom:20px}
.online_left{width:350px}
.ol_first{margin-bottom:22px}
.ol_first label{font-size:14px;color:#666;vertical-align:middle}
.ol_first select,.ol_first input{vertical-align:middle;border:1px solid #dcdcdc;font-size:12px;padding-left:6px}
.ol_first select{height:26px;width:274px}
.ol_first input{width:266px;height:30px;line-height:30px}
.ol_first .small_left{width:134px}
.ol_first .small_right{width:132px}
.onlie_tj{width:100px;height:30px;line-height:30px;text-align:center;background:#caa648;margin:0 auto}
.onlie_tj a{color:#fff;font-size:14px;display:block;font-weight:bold}
.onlie_tj button{color:#ffffff;font-size:14px;display:block;font-weight:bold;background-color:transparent; border:0;}
.online_right{width:350px}
.online_right-word{margin-bottom:8px}
.online_right h5{color:#7d7d7d;font-size:16px;margin-bottom:16px}
.online_right p{color:#666;font-size:14px;line-height:24px}
.online_right span{font-size:12px;padding-left:8px}
.spword_margin{padding-left:62px}
.spword_ml{margin-left:13px}
.three_yz a{margin-left:20px;display:inline-block}
.three_yz{margin-bottom:10px;font-size:0}

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,172 @@
/*首页*/
/*banner*/
.cb_main{height:400px}
.banner{background:url(../images/banner.jpg) no-repeat center;height:400px;}
.banner-word{text-align:center;color:#8e4f1b;position:absolute;right:20px;top:68px;cursor:default;z-index:99}
.banner-word h2{font-size:34px;margin-bottom:10px}
.banner-word h3{font-size:20px;font-weight:100;margin-bottom:10px}
.banner-word h4{font-size:16px;font-weight:100;margin-bottom:20px}
.banner-word p{font-size:12px;line-height:22px}
.sp_width{width:350px}
/*中间内容*/
.news-ul{overflow:hidden;padding:20px 0 23px 0;margin-left:-13px}
.news-ul li{float:left;margin-left:13px}
.ul-center{height:40px;line-height:40px;text-align:center;background:#fff;width:235px}
.ul-center a{color:#8e4f1b;font-size:14px;font-family:"微软雅黑"}
/*2015年1月31日月秀需求
.ul-bottom{background:url(../images/the-bottom.jpg) no-repeat;width:235px;height:6px}
*/
.ul-top a{display:block}
.ul_opacity{background:#fff;opacity:0.8;filter:alpha(opacity=80);width:100%;height:100%}
.ul-center .opacity_word{text-decoration:underline}
/*tab选项卡(修改)*/
.ultab_all{position:relative;z-index:4}
.ul-tab{height:40px;position:absolute;z-index:4}
.ul-tab li{float:left;cursor:pointer;line-height:40px;width:195px;text-align:center;border-right:1px solid #fff;color:#8e4f1b;font-size:14px;}
.ul-tab span{display:block;height:40px;font-family:arial;}
.ul-tab .click_tab{background:url(../images/sjx.png) no-repeat bottom center;height:50px}
.ul-tab .hover_tab span{background:#ffeded}
.ul-tab .click_tab span{background:#ffe9e9}
.ul_jdt{background:#ffe9e9;width:980px;height:40px;margin:0 auto;position:relative;}
.ul_jdrun{background:#ffd7d4;position:absolute;left:0;bottom:0;height:40px}
.ul_bkjt{background:url(../images/sjx.png) no-repeat;width:195px;height:11px;position:absolute;left:0px;z-index:4}
.ul_bkjt-hover{background:url(../images/sjx_hover.png) no-repeat;height:11px;position:absolute;left:0px;z-index:4}
/*选项卡下内容*/
.all_tab{height:314px;position:relative}
.all_tab li{background:#fff;overflow:hidden;width:980px;float:left;position:absolute;display:none}
.tab_left a{display:block}
.tab_right{width:460px;cursor:default;margin-top:50px;text-align:center}
.tab_right h3{color:#8e4f1b;font-size:30px;margin-bottom:16px;text-align:center;font-style:italic;font-family:"times new roman";font-weight:100}
.tab_right p{color:#8e4f1b;font-size:14px;line-height:30px;text-align:center;}
.to_more{margin:20px 0 26px 156px;overflow:hidden}
.more-ul{clear:both;}
.more-ul a{color:#888;font-size:12px;padding-left:10px;background:url(../images/all-right.png) no-repeat left center;margin-right:22px}
.more-ul a:hover{color:#8e4f1b;text-decoration:underline}
/*百科新加*/
.all-thing .bkbook_all{background:#fff;margin-bottom:44px;overflow:hidden}
/*左边*/
.bkbook_left{padding:32px 0 0 18px;width:600px}
/*第一块左边*/
.bkbook_left-first{overflow:hidden}
.bkleft_img{position:relative;height:180px}
.bkleft_banner{position:relative;width:280px;height:180px}
.bkleft_banner li{position:absolute;float:left;display:none;top:0;left:0}
.bkleft_banner li a{display:block}
.bkleft_banner .to_opacity{opacity:0.8;filter:alpha(opacity=80)}
.banner_opa{background:#000;opacity:0.5;filter:alpha(opacity=50);height:30px;width:100%;position:absolute;bottom:0;left:0}
.ban_word{height:30px;line-height:30px;padding-left:13px;position:absolute;bottom:0;left:0;font-size:12px;color:#fff}
.bnhide{position:absolute;bottom:0;left:0;width:100%;height:30px}
.small-xd{position:absolute;bottom:10px;font-size:0;right:12px;z-index:8;cursor:pointer}
.small-xd span{display:inline-block;background:url(../images/xd.png) no-repeat;width:7px;height:7px;margin-left:8px}
.small-xd .bs_dian{background:url(../images/xd.png) no-repeat 0 -7px;}
/*第一块右边*/
.bkfirst_ul{width:304px;float:right;}
.bkfirst_ul li{border-bottom:1px dashed #e5e5e5;padding-bottom:6px}
.bkfirst_ul h3{font-family:"微软雅黑";font-size:16px;color:#666;font-weight:100;margin-bottom:8px;margin-top:7px;}
.bkfirst_ul h3 a{color:#666}
.bkfirst_ul p{font-family:"宋体";font-size:12px;color:#888;line-height:22px;margin-bottom:8px;display:none;width:288px}
.bkfirst_ul p a{color:#888}
.bkfirst_ul .ts_list h3{color:#8e4f1b}
.bkfirst_ul .ts_list h3 a{color:#8e4f1b}
.bkfirst_ul .ts_list p{display:block}
/*左边第二块*/
.bkbook_left-sec{overflow:hidden;font-family:"宋体";padding:24px 0 20px 0}
.bkbook_left-secul{width:276px;float:left}
.bkbook_left-secul li{background:url(../images/xiaod.jpg) no-repeat left center;color:#888;font-size:0;height:24px;line-height:24px;overflow:hidden;padding-left:14px}
.bkbook_left-secul a{color:#666;font-size:14px}
.bkbook_left-secul span{font-size:12px}
.bkbook_left-secul a:hover{text-decoration:underline}
.bkbook_left-spcul{width:304px;float:right}
/*右边*/
.bkbook_right{padding:30px 20px 0 0;width:300px}
.bkbook_right-allul{overflow:hidden;margin-bottom:19px;}
.bkbook_right-fimg a{display:block}
.bkbook_right-fimg a:hover img{opacity:0.8;filter:alpha(opacity=80)}
.bkbook_right-fimg img{width:120px;height:72px}
.bkbook_right-spcul{width:160px;float:left;margin-left:18px;}
/*验证身份*/
.love_doit{position:relative;padding-top:11px}
.loverit_center{background:url(../images/yzsf.jpg) no-repeat;height:40px}
/*2015年1月31日月秀需求
.loverit_bottom{background:url(../images/yzsf_bt.png) no-repeat;width:964px;height:8px;margin:0 auto}
*/
.loverit_word{background:url(../images/yz_ts.png) no-repeat;width:690px;height:33px;position:absolute;top:510px;left:50%;margin-left:-345px;z-index:5;font-size:12px;color:#666;text-align:center;line-height:24px;display:none}
.loverit_write{line-height:40px;height:40px;font-size:0;padding-left:30px;}
.loverit_write label,.loverit_write input{vertical-align:middle;}
.loverit_write label{font-size:14px;color:#8e6039;margin:0 15px 0 36px}
.loverit_write .lit_txt{width:173px;border:1px solid #cec9c5;padding:3px 0}
.loverit_write span{display:inline-block;width:68px;height:25px;background:url(../images/cxit.jpg) no-repeat;vertical-align:middle;margin-left:30px;cursor:pointer}
.loverit_write .cxit_click{background:url(../images/cxit_click.jpg) no-repeat}
.loverit_write .lit_wrong{border:2px solid #ff7272}
/*广告*/
.ts_gao{background:url(../images/new_gg.png) no-repeat;width:626px;height:376px;position:fixed;top:20%;left:50%;margin-left:-313px;z-index:420}
.ts_gao-center{position:relative;width:620px;height:370px}
.ts_gao-close{position:absolute;width:34px;height:34px;right:27px;top:38px;cursor:pointer}
.ts_gao-help{position:absolute;width:74px;height:20px;bottom:70px;left:232px;cursor:pointer}
/*报错信息*/
.loverit_wrong{background:url(../images/wrong.png) no-repeat;width:210px;height:33px;position:absolute;top:510px;left:50%;margin-left:135px;z-index:5;text-align:center;line-height:24px;display:none}
.loverit_wrong p{color:#ff4040;background:url(../images/wr_left.png) no-repeat left center;font-size:12px;margin-left:10px;padding-left:10px}
/*首页end*/
/*首页轮播*/
.cb_main{height:400px;z-index:4}
.indexbanner-all{position:relative;height:400px}
.indexbanner{height:400px}
.indexbanner .button{margin:0;padding-top:10px;font-family:"宋体"}
.indexbanner li{height:400px;position:absolute;width:100%;display:none}
.indexbanner .tb_first{background:url(../images/banner1.jpg) no-repeat center center}
.indexbanner .tb_first{display:block}
.tb_sec{background:url(../images/banner3.jpg) no-repeat center center}
.tb_sec a{display:block;width:100%;height:100%;}
.tb_third{background:url(../images/banner2.jpg) no-repeat center center}
.tb_four{background:url(../images/banner4.jpg) no-repeat center center}
.indexbanner .banner-word{font-family:"微软雅黑";right:112px}
.indexbanner .banner-word h2{font-family:"宋体";color:#604e40;font-size:28px;padding-bottom:6px;font-weight:100}
.indexbanner .banner-word span{font-family:"宋体"}
.indexbanner .banner-word p{font-family:"宋体"}
.baner_longline,.baner_shortline{font-size:0;margin:16px 0}
.baner_longline em{display:inline-block;background:url(../images/shline.png) no-repeat center center;width:51px;height:1px;vertical-align:middle}
.baner_longline span,.baner_shortline span{font-size:14px;color:#604e40;vertical-align:middle;margin:0 6px}
.baner_shortline em{display:inline-block;background:url(../images/whline.png) no-repeat center center;width:30px;height:1px;vertical-align:middle}
.baner_shortline p{font-size:14px;color:#a88553}
.indexbanner .bnsec_word{top:100px;right:70px}
.bnsec_word h2{font-size:24px}
.bnsec_word p{color:#604e40;font-size:18px}
.DRstar_more{position:absolute;right:48px;top:226px}
.hax_margin{margin:20px 0}
.baner_longline p{font-size:18px;color:#604e40}
.sp_button .bt2{background:none;margin:0 auto;float:none;width:140px;padding:0;text-align:center}
.sp_button .hover_bt2{background:#caa752}
.cb_jdt{position:absolute;height:100%;width:574px;left:0;top:0}
.bn_left,.bn_right{position:absolute;top:-238px;z-index:6;background:url(../images/ben_pn.png) no-repeat;width:29px;height:57px;cursor:pointer}
.bn_left{background-position:0 0;left:0}
.bn_right{background-position:0 -57px;right:0}
.sp_pnxt{z-index:6}
.indexbanner_bottom{position:absolute;bottom:20px;z-index:6;left:50%;margin-left:-27px}
.indexbanner_bottom li{background:url(../images/lin.png) no-repeat 0 -12px;width:12px;height:12px;float:left;margin:0 5px;cursor:pointer}
.indexbanner_bottom .click_inbanner{background-position:0 0}
/*温馨提示 0127*/
.ts_warm{background:url(../images/special_tx.png) no-repeat;width:509px;height:480px;position:fixed;top:20%;left:50%;margin-left:-240px;z-index:420; display:none;}
.ts_warm-center{position:relative;width:509px;height:480px}
.ts_warm-close{position:absolute;width:38px;height:38px;right:27px;top:59px;cursor:pointer}
.ts_warm-help{position:absolute;width:210px;height:20px;bottom:36px;left:164px;cursor:pointer}
/*去掉产品下阴影*/
.by_center{display:none}
.buyit .by_bottom{margin:12px 0 9px 0}
/*首页end*/

View File

@@ -0,0 +1,214 @@
/*新闻资讯等页面的CSS*/
h4{font-size:16px;color:#905120}
.newindex a:hover{text-decoration:underline}
/*资讯首页*/
.newindex{background:#fff}
.newindex_all{padding:0 20px 40px 20px;overflow:hidden}
.newindex_all-tittle{height:38px;line-height:30px}
.newindex_all-tittle h4{margin-left:2px}
.newindex_all-tittle a{font-size:12px;color:#666}
/*左边*/
.newindex_all-left{width:680px;padding-bottom:30px}
/*戴瑞动态*/
.newindex_all-first{overflow:hidden;margin-bottom:32px}
/*戴瑞动态左边*/
.newindex_all-first-left{position:relative}
.newindex_all-first-banner{width:330px;height:220px;position:relative}
.newindex_all-first-banner li{float:left;position:absolute}
.newindex_all-first-page{position:absolute;bottom:20px;right:10px;z-index:8}
.newindex_all-first-page li{width:16px;height:16px;line-height:16px;text-align:center;background:#a0a0a0;font-size:12px;color:#fff;cursor:pointer;float:left;margin-left:4px;border:1px solid #a0a0a0}
.newindex_all-first-page .page_click{background:#fff;color:#d6b870;border:1px solid #d6b870}
/*戴瑞动态右边*/
.newindex_all-first-right{width:330px;font-family:"宋体"}
.newindex_all-first-word{padding:18px 0;border-bottom:1px dashed #d2d2d2}
.newindex_all-first-word h5{font-size:16px;color:#333;margin-bottom:10px;text-align:center;height:18px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;-o-text-overflow:ellipsis;width:310px}
.newindex_all-first-word h5 a{color:#333;font-size:16px}
.newindex_all-first-word p{font-size:12px;color:#666;line-height:24px;height:50px;width:320px;margin:0 auto;overflow:hidden}
.newindex_all-first-more{overflow:hidden;}
.newindex_all-first-word a{color:#666;font-size:12px}
/*相同的列表ul*/
.newindex_all-newlist{font-family:"宋体"}
.newindex_all-newlist li{height:26px;line-height:26px;background:url(../images/small_d.jpg) no-repeat left center;);padding-left:8px}
.newindex_all-newlist a,.newindex_all-newlist span{font-size:12px;color:#666}
.newindex_all-newlist a{display:inline-block;width:256px;white-space:nowrap;text-overflow:ellipsis;-o-text-overflow:ellipsis;overflow:hidden;}
.newindex_line-newlist li{border-bottom:1px dashed #d2d2d2;height:30px;line-height:30px;background:none;padding:0}
.newindex_line-newlist a{padding-left:4px}
/*品牌动态与求婚指南*/
.newindex_all-sec{overflow:hidden;margin-bottom:30px}
/*相同的*/
.newindex_all-import{overflow:hidden;margin-bottom:8px}
.newindex_all-sec-cort{width:330px}
.newindex_all-import-right{width:180px}
.newindex_all-import-right h5{font-size:14px;color:#666;margin-bottom:10px;margin-top:6px;overflow:hidden}
.newindex_all-import-right p{font-size:12px;color:#666;line-height:24px;height:50px;width:180px;overflow:hidden}
.newindex_all-import-right p a,.newindex_all-import-right h5 a{color:#333}
.all-import-a{float:left;width:120px}
.newindex_all-import-spright{margin-left:18px;width:190px}
.newindex_all-import-spright p{width:190px}
/*钻石百科*/
.newindex_all-third{margin-bottom:32px}
.newindex_all-third h3{margin-left:2px}
.newindex_all-third-top{height:35px}
.newindex_all-nav{position:relative;z-index:3}
.newindex_all-nav li{float:left;height:35px;line-height:35px;width:88px;text-align:center;background:#ffd9dc;color:#905120;font-size:12px;cursor:pointer}
.newindex_all-nav .newindex_all-nav-click{background:#fff;border:1px solid #ffd9dc;border-bottom:1px solid #fff;height:34px;line-height:34px}
.newindex_all-third-border{border:1px solid #ffd9dc;padding:15px 14px}
.newindex_all-third-left{width:316px}
/*广告*/
.newindex_all-advert{margin-bottom:30px}
.newindex_all-advert a{display:block}
/*行业动态*/
.newindex_all-four{overflow:hidden}
.newindex_all-four h4{margin-left:2px}
.newindex_all-four-new{overflow:hidden;margin:14px 0 20px -15px}
.newindex_all-four-new li{float:left;text-align:center;margin-left:15px}
.newindex_all-four-new a{display:block;color:#666}
.newindex_all-four-new p{font-size:12px;color:#666;height:34px;line-height:34px}
/*热门标签*/
.newindex_all-hottittle{border:1px solid #ffd9dc}
.newindex_all-hottittle h4{padding-left:20px;background:#ffd9dc;height:34px;line-height:34px}
.newindex_all-hotword{padding:18px 16px 10px 16px;font-size:0;text-align:justify;line-height:20px}
.newindex_all-hotword a{font-size:12px;color:#666;margin-right:18px;line-height:20px;display:inline-block}
.newindex_all-hotword a:hover{color:#666}
.newindex_all-hotword .hotword_tocolor{color:#666}
/*友情链接*/
.newindex_all-friendlj{overflow:hidden;margin-top:30px}
.newindex_all-friendlj h4{margin-left:2px;margin-right:8px;color:#333}
.newindex_all-href{font-size:0;line-height:20px;width:528px;text-align:justify}
.newindex_all-href a,.newindex_all-href i{font-size:12px;color:#888;display:inline-block}
.newindex_all-href i{margin:0 4px}
/*右边*/
.newindex_all-right{width:240px}
.newindex_all-right-banner{position:relative}
.newindex_all-right-first{width:240px;height:228px;position:relative}
.newindex_all-right-first li{position:absolute;float:left}
.newindex_all-right-smalldian{position:absolute;bottom:10px;right:12px;z-index:10}
.newindex_all-right-smalldian li{background:url(../images/diand.png) no-repeat;width:8px;height:8px;float:left;margin-right:4px}
.newindex_all-right-smalldian .newindex_all-right-small-hover{background-position:0 -8px}
.newindex_all-right .newindex_all-hottittle{border:1px solid #ffd9dc;margin-top:20px}
/*热销款式*/
.newindex_all-right-hot{margin-top:20px;border:1px solid #ffd9dc;padding-bottom:6px}
.newindex_all-right-hot h4{padding-left:20px;background:#ffd9dc;height:34px;line-height:34px}
.newindex_all-right-hotks-choose{overflow:hidden}
.newindex_all-right-hotks-choose li{float:left;width:119px;text-align:center;margin-top:26px}
.newindex_all-right-hotks-choose a{display:block;background:url(../images/line.jpg) no-repeat right center}
.newindex_all-right-hotks-choose p{font-size:12px;color:#575757;line-height:20px;width:98px;margin:0 auto}
.newindex_all-right-hotks-choose i{color:#ff4c4c;font-family:;}
.newindex_all-right-hotks-choose p a{background:none;color:#666}
/*热门文章与最新发布*/
.newindex_all-right-hotnav{overflow:hidden}
.newindex_all-right-hotnav li{cursor:pointer;float:left;width:119px;height:35px;line-height:35px;text-align:center;font-size:14px;color:#905120;background:#ffd9dc}
.newindex_all-right-hotnav .newindex_all-right-hotnav-click{background:#fff;height:34px}
.newindex_all-right-atitle{padding:10px 0 10px 19px}
.newindex_all-right-atitle li{font-size:1px;height:28px;line-height:28px}
.newindex_all-right-atitle i{display:inline-block;width:14px;height:14px;color:#fff;font-size:12px;background:#999;text-align:center;line-height:14px;vertical-align:middle}
.newindex_all-right-atitle a{color:#666;font-size:13px;vertical-align:middle;display:inline-block;width:170px;white-space:nowrap;text-overflow:ellipsis;-o-text-overflow:ellipsis;overflow:hidden;margin-left:2px}
.newindex_all-right-atitle .atitle-color{background:#ffa0a8}
.newindex_all-right-hot ul li .sred{width:15px;text-align:center;line-height:15px;height:15px;background-color:#ffa0a8;color:#ffffff;display:inline-block;font-size:12px}
/*珠宝百科*/
.newindex_all-right-jewellery{overflow:hidden}
.newindex_all-right-jewellery li{float:left;text-align:center;width:78px;margin-top:12px}
.newindex_all-right-jewellery-img a{display:block;background:url(../images/all_bk.png) no-repeat;width:58px;height:58px;margin:0 auto}
.newindex_all-right-jewellery li p{font-size:14px;color:#905120;height:36px;line-height:36px}
.newindex_all-right-jewellery li a{color:#905120}
.newindex_all-right-jewellery-img .jewellery-two{background-position:-58px 0}
.newindex_all-right-jewellery-img .jewellery-three{background-position:-116px 0}
.newindex_all-right-jewellery-img .jewellery-four{background-position:-174px 0}
.newindex_all-right-jewellery-img .jewellery-five{background-position:-232px 0}
.newindex_all-right-jewellery-img .jewellery-six{background-position:-290px 0}
.newindex_all-right-jewellery-img .jewellery-seven{background-position:-348px 0}
.newindex_all-right-jewellery-img .jewellery-eight{background-position:-406px 0}
/*列表的页面*/
/*左边第一块*/
.newslist_first{border:1px solid #f5f5f5;background:#fcfcfc;padding:14px 0 8px 26px}
.newslist_first-ul{overflow:hidden;margin-top:10px}
.newslist_first-ul li{text-align:center;margin-right:26px;float:left;width:190px}
.newslist_first-ul a{display:block}
.newslist_first-ul p,.newslist_first-ul p a{line-height:22px;font-size:12px;color:#666}
.newslist_first-ul span,.newslist_first-ul span a{color:#333}
.newslist_first-ul a{color:#666}
/*左边第二块*/
.newslist_sec{margin-top:30px}
.newslist_sec h4{margin-bottom:10px}
.newslist_sec-border{border:1px solid #ffd9dc;padding:0 23px}
.newslist_sec-border-cort{overflow:hidden;padding:26px 0;border-bottom:1px dashed #d2d2d2}
.sec-border-cort-right{margin-left:20px;width:474px}
.sec-border-cort-right h5{font-size:14px;color:#333;margin-bottom: 4px;height: 16px;}
.sec-border-cort-right h5 a{color:#333}
.sec-border-cort-tb{font-size:0;height:26px;line-height:26px}
.sec-border-cort-right i{display:inline-block;background:url(../images/icon3.png) no-repeat;vertical-align:middle;margin-right:4px}
.sec-border-cort-right span{vertical-align:middle;margin-right:8px;font-size:12px;color:#666}
.sec-border-cort-right p{font-size:12px;color:#666;line-height:26px;height:52px;overflow:hidden}
.sec-border-cort-right p a{color:#666}
.sec-border-cort-right .cort-tb-time{background-position:0 0;width:11px;height:11px}
.sec-border-cort-right .cort-tb-search{background-position:0 -14px;width:12px;height:12px}
.sec-border-cort-right .cort-tb-news{background-position:0 -29px;width:10px;height:12px}
.sec-border-cort-tb a{vertical-align:middle;margin-right:8px;font-size:12px;color:#888}
.newslist_sec-border-cort .sec-border-cort-img{display:block;width:136px}
/*没有虚线的边框*/
.border-cort-noborder{border-bottom:none}
/*页码数*/
.newslist_page{font-size:0;text-align:center;margin:30px 0}
.newslist_page input,.newslist_page i,.newslist_page span{vertical-align:middle}
.newslist_page i{display:inline-block;width:23px;height:23px;line-height:23px;text-align:center;background:#efefef;color:#999;font-size:12px;margin:0 3px;cursor:pointer}
.newslist_page span{color:#999;font-size:12px;margin:0 2px}
.newslist_page input{padding:3px 0;border:1px solid #efefef;width:34px;margin-right:2px}
.newslist_page .newslist_page-click{background:#c9a548;color:#fff}
/*文章的页面*/
.newindex_all-left h1{font-size:20px;color:#333;text-align:center;margin:18px 0}
.newarticle_border{border:1px solid #f3e3e3;padding:6px 26px 0 26px;margin-bottom:30px;position:relative}
.newarticle_border-read{position:absolute;top:0;left:0}
.newarticle_border-top{font-size:0;height:30px;line-height:30px;text-align:center;padding-left:80px;margin-bottom:4px}
.newarticle_border-top span,.newarticle_border-bottom span,.newarticle_border-bottom a{font-size:12px;color:#333;vertical-align:middle;margin-right:16px}
.newarticle_border-top i{font-size:12px;color:#000;vertical-align:middle}
.newarticle_border p{font-size:12px;color:#000;text-align:justify;line-height:20px}
.newarticle_border-bottom{font-size:0;border-top:1px dashed #f3e3e3;margin-top:10px;padding:8px 0}
.newarticle_border-bottom i{display:inline-block;background:url(../images/icon3.png) no-repeat 0 -44px;width:13px;height:13px;vertical-align:middle;margin-right:6px}
.newarticle_border-bottom span{margin-right:10px;color:#888}
.newarticle_readit{margin:0 15px 30px 15px;color:#333;font-size:14px;line-height:28px}
.newarticle_readit div img{max-width:600px;}
.newarticle_readit p{color:#333;font-size:14px;line-height:28px;}
.newarticle_readit a{color:#f00000}
.newarticle_readit div{color:#333;font-size:14px;line-height:28px;text-align:justify}
.newarticle_border-bottom a{color:#888}
/*推荐分类*/
.newarticle_recommend{margin:54px 10px 0 10px;overflow:hidden}
.newarticle_recommend h5{font-size:14px;color:#333}
.newarticle_recommend-right{font-size:0;width:524px;line-height:20px}
.newarticle_recommend a,.newarticle_recommend i{font-size:12px;color:#666;margin:0 4px;display:inline-block}
.newarticle_recommend i{margin:0 8px}
.newarticle_about{overflow:hidden;padding:16px 10px}
.newarticle_about-left{font-size:0;width:300px;white-space:nowrap;text-overflow:ellipsis;-o-text-overflow:ellipsis;overflow:hidden;}
.newarticle_about-right{text-align:right}
.newarticle_about-left span{font-size:12px;color:#8e4f1b}
.newarticle_about-left a{font-size:12px;color:#666}
.newslist_first h5{font-size:14px;color:#333}
.newarticle_first-ul p{width:180px;margin:0 auto;text-align:justify;line-height:20px;margin-top:6px}
#uyan_frame{margin-top:30px}
.jiathis_style{padding-top:7px}
/*修改的需求2014年9月25日*/
/*资讯首页banner部分*/
.banner_wordtxt,.banner_txtit{position:absolute;left:0;bottom:0;width:100%;height:44px;line-height:44px;}
.banner_wordtxt{background:#666;opacity:0.5;filter:alpha(opacity=50)}
.banner_txtit{color:#fff;font-size:16px;text-align:center}
.newindex_all-first-banner a{display:block}
/*列表页*/
.sec-border-cort-tb em{font-size:12px;vertical-align:middle;margin-right:8px;color:#888}

View File

@@ -0,0 +1,150 @@
#ckepop a:hover{text-decoration:none;}
#ckepop .jiathis_counter.jiathis_bubble_style {
display: block;
margin: 0 0 0 -2px;
text-align: center;
font-weight: bold;
background: url(../images/counter.gif) no-repeat 0 -64px;
padding: 0 0 0 4px;
height:16px;
font-family:arial,helvetica,sans-serif;
width: 32px !important;
}
#ckepop .jiathis_counter.jiathis_bubble_style:hover {
color:#000000;background-position: -36px -64px !important;
}
#ckepop .jiathis_counter.jiathis_bubble_style .atc_s {
display: none !important;
}
#ckepop * html .jiathis_counter.jiathis_bubble_style {
width: 36px !important;
display:inline;
}
#ckepop * html .jiathis_counter.jiathis_bubble_style.compatmode0 {
width: 32px !important;
display:block;
}
#ckepop .jiathis_button_expanded{
float:left;
font-size:11px;
font-weight:bold;
color:#565656;
cursor:pointer;
text-decoration:none;
line-height:16px!important;
}
#jiathis_style_32x32 a:hover{text-decoration:none;}
#jiathis_style_32x32 .jiathis_counter.jiathis_bubble_style {
background: url(../images/counter.gif) no-repeat 0 0;
height: 32px;
width: 54px !important;
line-height: 32px;
padding: 0 5px 0 6px;
font-family:arial,helvetica,sans-serif;
text-align: center;
}
#jiathis_style_32x32 .jiathis_counter.jiathis_bubble_style:hover {
color:#000000;background-position: 0 -32px !important;
}
#jiathis_style_32x32 * html .jiathis_counter.jiathis_bubble_style {
width: 60px !important;
}
#jiathis_style_32x32 .jiathis_button_expanded{
float:left;
font-size:16px;
font-weight:bold;
color:#565656;
cursor:pointer;
text-decoration:none;
line-height:32px!important;
}
.jiathis_style a:hover{text-decoration:none;}
.jiathis_style .jiathis_counter.jiathis_bubble_style {
display: block;
margin: 0 0 0 -2px;
text-align: center;
font-weight: bold;
background: url(../images/counter.gif) no-repeat 0 -64px;
padding: 0 0 0 4px;
height:16px;
font-family:arial,helvetica,sans-serif;
width: 32px !important;
}
.jiathis_style .jiathis_counter.jiathis_bubble_style:hover {
color:#000000;background-position: -36px -64px !important;
}
.jiathis_style .jiathis_counter.jiathis_bubble_style .atc_s {
display: none !important;
}
.jiathis_style * html .jiathis_counter.jiathis_bubble_style {
width: 36px !important;
display:inline;
}
.jiathis_style * html .jiathis_counter.jiathis_bubble_style.compatmode0 {
width: 32px !important;
display:block;
}
.jiathis_style .jiathis_button_expanded{
float:left;
font-size:11px;
font-weight:bold;
color:#565656;
cursor:pointer;
text-decoration:none;
line-height:16px!important;
}
.jiathis_style_32x32 a:hover{text-decoration:none;}
.jiathis_style_32x32 .jiathis_counter.jiathis_bubble_style {
background: url(../images/counter.gif) no-repeat 0 0;
height: 32px;
width: 54px !important;
line-height: 32px;
padding: 0 5px 0 6px;
font-family:arial,helvetica,sans-serif;
text-align: center;
}
.jiathis_style_32x32 .jiathis_counter.jiathis_bubble_style:hover {
color:#000000;background-position: 0 -32px !important;
}
.jiathis_style_32x32 * html .jiathis_counter.jiathis_bubble_style {
width: 60px !important;
}
.jiathis_style_32x32 .jiathis_button_expanded{
float:left;
font-size:16px;
font-weight:bold;
color:#565656;
cursor:pointer;
text-decoration:none;
line-height:32px!important;
}
.jiathis_style_24x24 a:hover{text-decoration:none;}
.jiathis_style_24x24 .jiathis_counter.jiathis_bubble_style {
background: url(../images/counter.gif) no-repeat 0 -80px;
height: 24px;
width: 54px !important;
line-height: 24px;
padding: 0 5px 0 6px;
font-family:arial,helvetica,sans-serif;
text-align: center;
}
.jiathis_style_24x24 .jiathis_counter.jiathis_bubble_style:hover {
color:#000000;background-position: 0 -104px !important;
}
.jiathis_style_24x24 * html .jiathis_counter.jiathis_bubble_style {
width: 60px !important;
}
.jiathis_style_24x24 .jiathis_button_expanded{
float:left;
font-size:14px;
font-weight:bold;
color:#565656;
cursor:pointer;
text-decoration:none;
line-height:24px!important;
}

View File

@@ -0,0 +1,714 @@
#ckepop dl, #ckepop dt, #ckepop dd, #ckepop ol, #ckepop ul, #ckepop li, #ckepop fieldset, #ckepop form, #ckepop label, #ckepop legend, #ckepop table, #ckepop caption, #ckepop tbody, #ckepop tfoot, #ckepop thead, #ckepop tr, #ckepop th, #ckepop td, #ckepop span {vertical-align:middle;margin:0;padding:0;font-family:'Microsoft YaHei',arial,tahoma,\5b8b\4f53,sans-serif;}
#ckepop .jiadiv_01{border:#CCCCCC solid 1px; width:240px;background:#ffffff;text-align:left;overflow:hidden;}
#ckepop .jiadiv_02{padding:1px!important; font-size:14px!important; text-align:left!important;}
#ckepop .jiadiv_02 .jiatitle{margin:1px 0;height:20px;padding-left:5px;padding-top:4px;width:107px;float:left;display:block;border:1px solid #ffffff;background:#ffffff;text-decoration:none;color:#000000;font-size:12px!important;}
#ckepop .jiadiv_02 .jiatitle:hover{background:#F2F2F2;border:1px solid #E5E5E5;text-decoration:none;}
#ckepop .jiadiv_02 .jiatitle img{margin:3px 0 -3px 0;border:0;}
#ckepop .jiadiv_01 .link_01{text-decoration:none; font-size:12px}
#ckepop .jiadiv_01 .link_01:hover{text-decoration:underline; font-size:12px}
#ckepop .jtico{text-align:left;overflow:hidden;display:block!important;height:16px!important;line-height:16px!important;padding-left:20px!important;background:url(../images/jiathis_ico.png) no-repeat left;cursor:pointer}
#ckepop .jtico:hover{opacity:0.8;}
#ckepop .jtico_copy{background-position:0px 0px}
#ckepop .jtico_email{background-position:0px -32px}
#ckepop .jtico_fav{background-position:0px -16px}
#ckepop .jtico_buzz{background-position:0px -48px}
#ckepop .jtico_qzone{background-position:0px -64px}
#ckepop .jtico_baidu{background-position:0px -80px}
#ckepop .jtico_tsina{background-position:0px -96px}
#ckepop .jtico_tsohu{background-position:0px -112px}
#ckepop .jtico_t163{background-position:0px -128px}
#ckepop .jtico_tqq{background-position:0px -144px}
#ckepop .jtico_renren{background-position:0px -160px}
#ckepop .jtico_kaixin001{background-position:0px -176px}
#ckepop .jtico_qingbiji{background-position:0px -192px}
#ckepop .jtico_taobao{background-position:0px -208px}
#ckepop .jtico_hi{background-position:0px -224px}
#ckepop .jtico_xiaoyou{background-position:0px -240px}
#ckepop .jtico_youshi{background-position:0px -256px}
#ckepop .jtico_gmail{background-position:0px -272px}
#ckepop .jtico_hotmail{background-position:0px -288px}
#ckepop .jtico_xqw{background-position:0px -304px}
#ckepop .jtico_feixin{background-position:0px -320px}
#ckepop .jtico_51{background-position:0px -336px}
#ckepop .jtico_google{background-position:0px -352px}
#ckepop .jtico_youdao{background-position:0px -368px}
#ckepop .jtico_qq{background-position:0px -384px}
#ckepop .jtico_sina{background-position:0px -400px}
#ckepop .jtico_tuita{background-position:0px -416px}
#ckepop .jtico_huaban{background-position:0px -432px}
#ckepop .jtico_115{background-position:0px -448px}
#ckepop .jtico_hexun{background-position:0px -464px}
#ckepop .jtico_myspace{background-position:0px -480px}
#ckepop .jtico_139{background-position:0px -496px}
#ckepop .jtico_tieba{background-position:0px -512px}
#ckepop .jtico_sdonote{background-position:0px -528px}
#ckepop .jtico_digu{background-position:0px -544px}
#ckepop .jtico_douban{background-position:0px -560px}
#ckepop .jtico_ifengkb{background-position:0px -576px}
#ckepop .jtico_xianguo{background-position:0px -592px}
#ckepop .jtico_mingdao{background-position:0px -608px}
#ckepop .jtico_renjian{background-position:0px -624px}
#ckepop .jtico_gmw{background-position:0px -640px}
#ckepop .jtico_delicious{background-position:0px -656px}
#ckepop .jtico_digg{background-position:0px -672px}
#ckepop .jtico_fb{background-position:0px -688px}
#ckepop .jtico_twitter{background-position:0px -704px}
#ckepop .jtico_ujian{background-position:0px -720px}
#ckepop .jtico_poco{background-position:0px -736px}
#ckepop .jtico_wealink{background-position:0px -752px}
#ckepop .jtico_cnfol{background-position:0px -768px}
#ckepop .jtico_qileke{background-position:0px -800px}
#ckepop .jtico_tongxue{background-position:0px -816px}
#ckepop .jtico_waakee{background-position:0px -832px}
#ckepop .jtico_ydnote{background-position:0px -848px}
#ckepop .jtico_cyzone{background-position:0px -864px}
#ckepop .jtico_diandian{background-position:0px -880px}
#ckepop .jtico_jcrb{background-position:0px -896px}
#ckepop .jtico_99earth{background-position:0px -912px}
#ckepop .jtico_chouti{background-position:0px -928px}
#ckepop .jtico_dig24{background-position:0px -944px}
#ckepop .jtico_douban9dian{background-position:0px -960px}
#ckepop .jtico_i139{background-position:0px -976px}
#ckepop .jtico_caimi{background-position:0px -992px}
#ckepop .jtico_yixin{background-position:0px -1008px}
#ckepop .jtico_yijee{background-position:0px -1024px}
#ckepop .jtico_pdfonline{background-position:0px -1040px}
#ckepop .jtico_printfriendly{background-position:0px -1056px}
#ckepop .jtico_translate{background-position:0px -1072px}
#ckepop .jtico_duitang{background-position:0px -1088px}
#ckepop .jtico_diigo{background-position:0px -1104px}
#ckepop .jtico_evernote{background-position:0px -1120px}
#ckepop .jtico_friendfeed{background-position:0px -1136px}
#ckepop .jtico_linkedin{background-position:0px -1152px}
#ckepop .jtico_mixx{background-position:0px -1168px}
#ckepop .jtico_netlog{background-position:0px -1184px}
#ckepop .jtico_netvibes{background-position:0px -1200px}
#ckepop .jtico_phonefavs{background-position:0px -1216px}
#ckepop .jtico_pingfm{background-position:0px -1232px}
#ckepop .jtico_plaxo{background-position:0px -1248px}
#ckepop .jtico_tpeople{background-position:0px -1264px}
#ckepop .jtico_reddit{background-position:0px -1280px}
#ckepop .jtico_wong{background-position:0px -1296px}
#ckepop .jtico_stumbleupon{background-position:0px -1312px}
#ckepop .jtico_plurk{background-position:0px -1328px}
#ckepop .jtico_funp{background-position:0px -1344px}
#ckepop .jtico_miliao{background-position:0px -1360px}
#ckepop .jtico_myshare{background-position:0px -1376px}
#ckepop .jtico_fwisp{background-position:0px -1392px}
#ckepop .jtico_more,#ckepop .jtico_jiathis{background-position:0px -1408px}
#ckepop .jtico_msn{background-position:0px -1424px}
#ckepop .jtico_fanfou{background-position:0px -1440px}
#ckepop .jtico_189mail{background-position:0px -1456px}
#ckepop .jtico_dream163{background-position:0px -1472px}
#ckepop .jtico_thexun{background-position:0px -1488px}
#ckepop .jtico_tianya{background-position:0px -1505px}
#ckepop .jtico_w3c{background-position:0px -1521px}
#ckepop .jtico_tifeng{background-position:0px -1537px}
#ckepop .jtico_bitly{background-position:0px -1553px}
#ckepop .jtico_kansohu{background-position:0px -1569px}
#ckepop .jtico_ganniu{background-position:0px -1585px}
#ckepop .jtico_189cn{background-position:0px -1601px}
#ckepop .jtico_masar{background-position:0px -1617px}
#ckepop .jtico_binzhi{background-position:0px -1633px}
#ckepop .jtico_mop{background-position:0px -1649px}
#ckepop .jtico_alibaba{background-position:0px -1665px}
#ckepop .jtico_leihou{background-position:0px -1681px}
#ckepop .jtico_mailru{background-position:0px -1697px}
#ckepop .jtico_pocket{background-position:0px -1713px}
#ckepop .jtico_instapaper{background-position:0px -1729px}
#ckepop .jtico_print{background-position:0px -1745px}
#ckepop .jtico_139mail{background-position:0px -1760px}
#ckepop .jtico_meilishuo{background-position:0px -1777px}
#ckepop .jtico_mogujie{background-position:0px -1793px}
#ckepop .jtico_weixin{background-position:0px -1809px}
#ckepop .jtico_tianji{background-position:0px -1825px}
#ckepop .jtico_tumblr{background-position:0px -1841px}
#ckepop .jtico_ishare{background-position:0px -1857px}
#ckepop .jtico_zsvs{background-position:0px -1873px}
#ckepop .jtico_pinterest{background-position:0px -1889px}
#ckepop .jtico_toeeee{background-position:0px -1905px}
#ckepop .jtico_tyaolan{background-position:0px -1921px}
#ckepop .jtico_189share{background-position:0px -1937px}
#ckepop .jtico_txinhua{background-position:0px -1953px}
#ckepop .jtico_googleplus{background-position:0px -1969px}
#ckepop .jtico_faxianla{background-position:0px -1985px}
#ckepop .jtico_iwo{background-position:0px -2001px}
#ckepop .jtico_cqq{background-position:0px -2017px}
#ckepop .jtico_mwsq{background-position:0px -800px}
#ckepop .button,#ckepop .jiathis_txt{float:left;font-size:12px;text-decoration:none;line-height:18px!important;}
#ckepop .separator,#ckepop .jiathis_separator{display:block;float:left;margin:0 5px;line-height:16px!important;}
#ckepop .searchTxt{text-align:left;margin:7px 0 0 28px;background:#FFFFFF;border:none;width:240px;font-size:12px;color:#999;}
#ckepop .searchTxtCont{width:300px;background:#F2F2F2;border-bottom:1px solid #E5E5E5;padding:0 0 0 5px}
#ckepop .centerBottom{width:300px;background:#F2F2F2;border-top:1px solid #E5E5E5;padding-left:5px;}
#ckepop .centerTitle{float:right;*padding:3px 0 0;}
#ckepop .ckepopBottom{background:#F2F2F2;border-top:1px solid #E5E5E5;padding-left:5px;}
#ckepop .jt_sharetitle{font-weight:bold;font-size:12px;}
#ckepop .jialike{position:relative;border:none;overflow:hidden;margin:-3px 5px;}
#ckepop img{display:inline;vertical-align:middle;}
#jiathis_style_32x32 .jtico{text-align:left;overflow:hidden;display:block!important;height:32px!important;line-height:32px!important;padding-left:36px!important;background:url(../images/jiathis_ico_32x32.png) no-repeat left;cursor:pointer}
#jiathis_style_32x32 .jtico:hover{opacity:0.8;}
#jiathis_style_32x32 .jiathis_txt{float:left;font-size:22px;text-decoration:none;line-height:32px!important;}
#jiathis_style_32x32 .jiathis_separator{display:block;float:left;margin:0 5px;line-height:32px!important;}
#jiathis_style_32x32 .jialike{position:relative;border:none;overflow:hidden;margin:-3px 5px;}
#jiathis_style_32x32 .jtico_tsina{background-position:0px 0px}
#jiathis_style_32x32 .jtico_qzone{background-position:0px -32px}
#jiathis_style_32x32 .jtico_renren{background-position:0px -64px}
#jiathis_style_32x32 .jtico_gmail{background-position:0px -96px}
#jiathis_style_32x32 .jtico_fav{background-position:0px -128px}
#jiathis_style_32x32 .jtico_tieba{background-position:0px -160px}
#jiathis_style_32x32 .jtico_kaixin001{background-position:0px -192px}
#jiathis_style_32x32 .jtico_douban{background-position:0px -224px}
#jiathis_style_32x32 .jtico_hi{background-position:0px -256px}
#jiathis_style_32x32 .jtico_qingbiji{background-position:0px -288px}
#jiathis_style_32x32 .jtico_t163{background-position:0px -320px}
#jiathis_style_32x32 .jtico_baidu{background-position:0px -352px}
#jiathis_style_32x32 .jtico_translate{background-position:0px -384px}
#jiathis_style_32x32 .jtico_sina{background-position:0px -416px}
#jiathis_style_32x32 .jtico_huaban{background-position:0px -448px}
#jiathis_style_32x32 .jtico_hotmail{background-position:0px -480px}
#jiathis_style_32x32 .jtico_hexun{background-position:0px -512px}
#jiathis_style_32x32 .jtico_fanfou{background-position:0px -544px}
#jiathis_style_32x32 .jtico_poco{background-position:0px -576px}
#jiathis_style_32x32 .jtico_waakee{background-position:0px -608px}
#jiathis_style_32x32 .jtico_xianguo{background-position:0px -640px}
#jiathis_style_32x32 .jtico_mingdao{background-position:0px -672px}
#jiathis_style_32x32 .jtico_qileke{background-position:0px -704px}
#jiathis_style_32x32 .jtico_diandian{background-position:0px -736px}
#jiathis_style_32x32 .jtico_leshou{background-position:0px -768px}
#jiathis_style_32x32 .jtico_gmw{background-position:0px -800px}
#jiathis_style_32x32 .jtico_115{background-position:0px -832px}
#jiathis_style_32x32 .jtico_msn{background-position:0px -864px}
#jiathis_style_32x32 .jtico_caimi{background-position:0px -896px}
#jiathis_style_32x32 .jtico_renjian{background-position:0px -928px}
#jiathis_style_32x32 .jtico_fb{background-position:0px -960px}
#jiathis_style_32x32 .jtico_ujian{background-position:0px -992px}
#jiathis_style_32x32 .jtico_twitter{background-position:0px -1024px}
#jiathis_style_32x32 .jtico_delicious{background-position:0px -1056px}
#jiathis_style_32x32 .jtico_digg{background-position:0px -1088px}
#jiathis_style_32x32 .jtico_diglog{background-position:0px -1120px}
#jiathis_style_32x32 .jtico_wong{background-position:0px -1152px}
#jiathis_style_32x32 .jtico_zsvs{background-position:0px -1184px}
#jiathis_style_32x32 .jtico_stumbleupon{background-position:0px -1216px}
#jiathis_style_32x32 .jtico_tsohu{background-position:0px -1248px}
#jiathis_style_32x32 .jtico_chouti{background-position:0px -1280px}
#jiathis_style_32x32 .jtico_cnfol{background-position:0px -1312px}
#jiathis_style_32x32 .jtico_dig24{background-position:0px -1344px}
#jiathis_style_32x32 .jtico_yijee{background-position:0px -1376px}
#jiathis_style_32x32 .jtico_sdonote{background-position:0px -1408px}
#jiathis_style_32x32 .jtico_buzz{background-position:0px -1440px}
#jiathis_style_32x32 .jtico_wealink{background-position:0px -1472px}
#jiathis_style_32x32 .jtico_evernote{background-position:0px -1504px}
#jiathis_style_32x32 .jtico_linkedin{background-position:0px -1536px}
#jiathis_style_32x32 .jtico_reddit{background-position:0px -1568px}
#jiathis_style_32x32 .jtico_fwisp{background-position:0px -1600px}
#jiathis_style_32x32 .jtico_cyzone{background-position:0px -1632px}
#jiathis_style_32x32 .jtico_youdao{background-position:0px -1664px}
#jiathis_style_32x32 .jtico_netvibes{background-position:0px -1696px}
#jiathis_style_32x32 .jtico_myspace{background-position:0px -1728px}
#jiathis_style_32x32 .jtico_tqq{background-position:0px -1760px}
#jiathis_style_32x32 .jtico_feixin{background-position:0px -1792px}
#jiathis_style_32x32 .jtico_youshi{background-position:0px -1824px}
#jiathis_style_32x32 .jtico_xiaoyou{background-position:0px -1856px}
#jiathis_style_32x32 .jtico_tifeng{background-position:0px -1888px}
#jiathis_style_32x32 .jtico_dream163{background-position:0px -1920px}
#jiathis_style_32x32 .jtico_ifengkb{background-position:0px -1952px}
#jiathis_style_32x32 .jtico_email{background-position:0px -1984px}
#jiathis_style_32x32 .jtico_taobao{background-position:0px -2016px}
#jiathis_style_32x32 .jtico_jiathis{background-position:0px -2048px}
#jiathis_style_32x32 .jtico_tyaolan{background-position:0px -2080px}
#jiathis_style_32x32 .jtico_masar{background-position:0px -2112px}
#jiathis_style_32x32 .jtico_binzhi{background-position:0px -2144px}
#jiathis_style_32x32 .jtico_51{background-position:0px -2176px}
#jiathis_style_32x32 .jtico_qq{background-position:0px -2208px}
#jiathis_style_32x32 .jtico_digu{background-position:0px -2240px}
#jiathis_style_32x32 .jtico_douban9dian{background-position:0px -2272px}
#jiathis_style_32x32 .jtico_yixin{background-position:0px -2304px}
#jiathis_style_32x32 .jtico_pdfonline{background-position:0px -2336px}
#jiathis_style_32x32 .jtico_printfriendly{background-position:0px -2368px}
#jiathis_style_32x32 .jtico_duitang{background-position:0px -2400px}
#jiathis_style_32x32 .jtico_diigo{background-position:0px -2432px}
#jiathis_style_32x32 .jtico_friendfeed{background-position:0px -2464px}
#jiathis_style_32x32 .jtico_mixx{background-position:0px -2496px}
#jiathis_style_32x32 .jtico_plaxo{background-position:0px -2528px}
#jiathis_style_32x32 .jtico_tpeople{background-position:0px -2560px}
#jiathis_style_32x32 .jtico_print{background-position:0px -2592px}
#jiathis_style_32x32 .jtico_plurk{background-position:0px -2624px}
#jiathis_style_32x32 .jtico_189mail{background-position:0px -2656px}
#jiathis_style_32x32 .jtico_i139{background-position:0px -2688px}
#jiathis_style_32x32 .jtico_thexun{background-position:0px -2720px}
#jiathis_style_32x32 .jtico_tianya{background-position:0px -2752px}
#jiathis_style_32x32 .jtico_kansohu{background-position:0px -2784px}
#jiathis_style_32x32 .jtico_ganniu{background-position:0px -2816px}
#jiathis_style_32x32 .jtico_189cn{background-position:0px -2848px}
#jiathis_style_32x32 .jtico_mop{background-position:0px -2880px}
#jiathis_style_32x32 .jtico_alibaba{background-position:0px -2912px}
#jiathis_style_32x32 .jtico_mailru{background-position:0px -2944px}
#jiathis_style_32x32 .jtico_leihou{background-position:0px -2976px}
#jiathis_style_32x32 .jtico_139{background-position:0px -3008px}
#jiathis_style_32x32 .jtico_139mail{background-position:0px -3040px}
#jiathis_style_32x32 .jtico_w3c{background-position:0px -3072px}
#jiathis_style_32x32 .jtico_99earth{background-position:0px -3104px}
#jiathis_style_32x32 .jtico_xqw{background-position:0px -3136px}
#jiathis_style_32x32 .jtico_google{background-position:0px -3168px}
#jiathis_style_32x32 .jtico_jcrb{background-position:0px -3200px}
#jiathis_style_32x32 .jtico_miliao{background-position:0px -3232px}
#jiathis_style_32x32 .jtico_tuita{background-position:0px -3264px}
#jiathis_style_32x32 .jtico_copy{background-position:0px -3296px}
#jiathis_style_32x32 .jtico_pingfm{background-position:0px -3328px}
#jiathis_style_32x32 .jtico_pocket{background-position:0px -3360px}
#jiathis_style_32x32 .jtico_funp{background-position:0px -3392px}
#jiathis_style_32x32 .jtico_phonefavs{background-position:0px -3424px}
#jiathis_style_32x32 .jtico_instapaper{background-position:0px -3456px}
#jiathis_style_32x32 .jtico_myshare{background-position:0px -3488px}
#jiathis_style_32x32 .jtico_bitly{background-position:0px -3520px}
#jiathis_style_32x32 .jtico_netlog{background-position:0px -3552px}
#jiathis_style_32x32 .jtico_ydnote{background-position:0px -3584px}
#jiathis_style_32x32 .jtico_meilishuo{background-position:0px -3616px}
#jiathis_style_32x32 .jtico_mogujie{background-position:0px -3648px}
#jiathis_style_32x32 .jtico_weixin{background-position:0px -3680px}
#jiathis_style_32x32 .jtico_tianji{background-position:0px -3712px}
#jiathis_style_32x32 .jtico_tumblr{background-position:0px -3744px}
#jiathis_style_32x32 .jtico_ishare{background-position:0px -3776px}
#jiathis_style_32x32 .jtico_pinterest{background-position:0px -3808px}
#jiathis_style_32x32 .jtico_toeeee{background-position:0px -3840px}
#jiathis_style_32x32 .jtico_189share{background-position:0px -3872px}
#jiathis_style_32x32 .jtico_txinhua{background-position:0px -3904px}
#jiathis_style_32x32 .jtico_googleplus{background-position:0px -3936px}
#jiathis_style_32x32 .jtico_faxianla{background-position:0px -3968px}
#jiathis_style_32x32 .jtico_iwo{background-position:0px -4000px}
#jiathis_style_32x32 .jtico_cqq{background-position:0px -4032px}
#jiathis_style_32x32 .jtico_mwsq{background-position:0px -704px}
.jiathis_style dl, .jiathis_style dt, .jiathis_style dd, .jiathis_style ol, .jiathis_style ul, .jiathis_style li, .jiathis_style fieldset, .jiathis_style form, .jiathis_style label, .jiathis_style legend, .jiathis_style table, .jiathis_style caption, .jiathis_style tbody, .jiathis_style tfoot, .jiathis_style thead, .jiathis_style tr, .jiathis_style th, .jiathis_style td, .jiathis_style span {vertical-align:middle;margin:0;padding:0;font-family:'Microsoft YaHei',arial,tahoma,\5b8b\4f53,sans-serif;}
.jiathis_style .jiadiv_01{border:#CCCCCC solid 1px; width:240px;background:#ffffff;text-align:left;overflow:hidden;}
.jiathis_style .jiadiv_02{padding:1px!important; font-size:14px!important; text-align:left!important;}
.jiathis_style .jiadiv_02 .jiatitle{margin:1px 0;height:20px;padding-left:5px;padding-top:4px;width:107px;float:left;display:block;border:1px solid #ffffff;background:#ffffff;text-decoration:none;color:#000000;font-size:12px!important;}
.jiathis_style .jiadiv_02 .jiatitle:hover{background:#F2F2F2;border:1px solid #E5E5E5;text-decoration:none;}
.jiathis_style .jiadiv_02 .jiatitle img{margin:3px 0 -3px 0;border:0;}
.jiathis_style .jiadiv_01 .link_01{text-decoration:none; font-size:12px}
.jiathis_style .jiadiv_01 .link_01:hover{text-decoration:underline; font-size:12px}
.jiathis_style .jtico{text-align:left;overflow:hidden;display:block!important;height:16px!important;line-height:16px!important;padding-left:20px!important;background:url(../images/jiathis_ico.png) no-repeat left;cursor:pointer}
.jiathis_style .jtico:hover{opacity:0.8;}
.jiathis_style .jtico_copy{background-position:0px 0px}
.jiathis_style .jtico_email{background-position:0px -32px}
.jiathis_style .jtico_fav{background-position:0px -16px}
.jiathis_style .jtico_buzz{background-position:0px -48px}
.jiathis_style .jtico_qzone{background-position:0px -64px}
.jiathis_style .jtico_baidu{background-position:0px -80px}
.jiathis_style .jtico_tsina{background-position:0px -96px}
.jiathis_style .jtico_tsohu{background-position:0px -112px}
.jiathis_style .jtico_t163{background-position:0px -128px}
.jiathis_style .jtico_tqq{background-position:0px -144px}
.jiathis_style .jtico_renren{background-position:0px -160px}
.jiathis_style .jtico_kaixin001{background-position:0px -176px}
.jiathis_style .jtico_qingbiji{background-position:0px -192px}
.jiathis_style .jtico_taobao{background-position:0px -208px}
.jiathis_style .jtico_hi{background-position:0px -224px}
.jiathis_style .jtico_xiaoyou{background-position:0px -240px}
.jiathis_style .jtico_youshi{background-position:0px -256px}
.jiathis_style .jtico_gmail{background-position:0px -272px}
.jiathis_style .jtico_hotmail{background-position:0px -288px}
.jiathis_style .jtico_xqw{background-position:0px -304px}
.jiathis_style .jtico_feixin{background-position:0px -320px}
.jiathis_style .jtico_51{background-position:0px -336px}
.jiathis_style .jtico_google{background-position:0px -352px}
.jiathis_style .jtico_youdao{background-position:0px -368px}
.jiathis_style .jtico_qq{background-position:0px -384px}
.jiathis_style .jtico_sina{background-position:0px -400px}
.jiathis_style .jtico_tuita{background-position:0px -416px}
.jiathis_style .jtico_huaban{background-position:0px -432px}
.jiathis_style .jtico_115{background-position:0px -448px}
.jiathis_style .jtico_hexun{background-position:0px -464px}
.jiathis_style .jtico_myspace{background-position:0px -480px}
.jiathis_style .jtico_139{background-position:0px -496px}
.jiathis_style .jtico_tieba{background-position:0px -512px}
.jiathis_style .jtico_sdonote{background-position:0px -528px}
.jiathis_style .jtico_digu{background-position:0px -544px}
.jiathis_style .jtico_douban{background-position:0px -560px}
.jiathis_style .jtico_ifengkb{background-position:0px -576px}
.jiathis_style .jtico_xianguo{background-position:0px -592px}
.jiathis_style .jtico_mingdao{background-position:0px -608px}
.jiathis_style .jtico_renjian{background-position:0px -624px}
.jiathis_style .jtico_gmw{background-position:0px -640px}
.jiathis_style .jtico_delicious{background-position:0px -656px}
.jiathis_style .jtico_digg{background-position:0px -672px}
.jiathis_style .jtico_fb{background-position:0px -688px}
.jiathis_style .jtico_twitter{background-position:0px -704px}
.jiathis_style .jtico_ujian{background-position:0px -720px}
.jiathis_style .jtico_poco{background-position:0px -736px}
.jiathis_style .jtico_wealink{background-position:0px -752px}
.jiathis_style .jtico_cnfol{background-position:0px -768px}
.jiathis_style .jtico_qileke{background-position:0px -800px}
.jiathis_style .jtico_tongxue{background-position:0px -816px}
.jiathis_style .jtico_waakee{background-position:0px -832px}
.jiathis_style .jtico_ydnote{background-position:0px -848px}
.jiathis_style .jtico_cyzone{background-position:0px -864px}
.jiathis_style .jtico_diandian{background-position:0px -880px}
.jiathis_style .jtico_jcrb{background-position:0px -896px}
.jiathis_style .jtico_99earth{background-position:0px -912px}
.jiathis_style .jtico_chouti{background-position:0px -928px}
.jiathis_style .jtico_dig24{background-position:0px -944px}
.jiathis_style .jtico_douban9dian{background-position:0px -960px}
.jiathis_style .jtico_i139{background-position:0px -976px}
.jiathis_style .jtico_caimi{background-position:0px -992px}
.jiathis_style .jtico_yixin{background-position:0px -1008px}
.jiathis_style .jtico_yijee{background-position:0px -1024px}
.jiathis_style .jtico_pdfonline{background-position:0px -1040px}
.jiathis_style .jtico_printfriendly{background-position:0px -1056px}
.jiathis_style .jtico_translate{background-position:0px -1072px}
.jiathis_style .jtico_duitang{background-position:0px -1088px}
.jiathis_style .jtico_diigo{background-position:0px -1104px}
.jiathis_style .jtico_evernote{background-position:0px -1120px}
.jiathis_style .jtico_friendfeed{background-position:0px -1136px}
.jiathis_style .jtico_linkedin{background-position:0px -1152px}
.jiathis_style .jtico_mixx{background-position:0px -1168px}
.jiathis_style .jtico_netlog{background-position:0px -1184px}
.jiathis_style .jtico_netvibes{background-position:0px -1200px}
.jiathis_style .jtico_phonefavs{background-position:0px -1216px}
.jiathis_style .jtico_pingfm{background-position:0px -1232px}
.jiathis_style .jtico_plaxo{background-position:0px -1248px}
.jiathis_style .jtico_tpeople{background-position:0px -1264px}
.jiathis_style .jtico_reddit{background-position:0px -1280px}
.jiathis_style .jtico_wong{background-position:0px -1296px}
.jiathis_style .jtico_stumbleupon{background-position:0px -1312px}
.jiathis_style .jtico_plurk{background-position:0px -1328px}
.jiathis_style .jtico_funp{background-position:0px -1344px}
.jiathis_style .jtico_miliao{background-position:0px -1360px}
.jiathis_style .jtico_myshare{background-position:0px -1376px}
.jiathis_style .jtico_fwisp{background-position:0px -1392px}
.jiathis_style .jtico_more,.jiathis_style .jtico_jiathis{background-position:0px -1408px}
.jiathis_style .jtico_msn{background-position:0px -1424px}
.jiathis_style .jtico_fanfou{background-position:0px -1440px}
.jiathis_style .jtico_189mail{background-position:0px -1456px}
.jiathis_style .jtico_dream163{background-position:0px -1472px}
.jiathis_style .jtico_thexun{background-position:0px -1488px}
.jiathis_style .jtico_tianya{background-position:0px -1505px}
.jiathis_style .jtico_w3c{background-position:0px -1521px}
.jiathis_style .jtico_tifeng{background-position:0px -1537px}
.jiathis_style .jtico_bitly{background-position:0px -1553px}
.jiathis_style .jtico_kansohu{background-position:0px -1569px}
.jiathis_style .jtico_ganniu{background-position:0px -1585px}
.jiathis_style .jtico_189cn{background-position:0px -1601px}
.jiathis_style .jtico_masar{background-position:0px -1617px}
.jiathis_style .jtico_binzhi{background-position:0px -1633px}
.jiathis_style .jtico_mop{background-position:0px -1649px}
.jiathis_style .jtico_alibaba{background-position:0px -1665px}
.jiathis_style .jtico_leihou{background-position:0px -1681px}
.jiathis_style .jtico_mailru{background-position:0px -1697px}
.jiathis_style .jtico_pocket{background-position:0px -1713px}
.jiathis_style .jtico_instapaper{background-position:0px -1729px}
.jiathis_style .jtico_print{background-position:0px -1745px}
.jiathis_style .jtico_139mail{background-position:0px -1760px}
.jiathis_style .jtico_meilishuo{background-position:0px -1777px}
.jiathis_style .jtico_mogujie{background-position:0px -1793px}
.jiathis_style .jtico_weixin{background-position:0px -1809px}
.jiathis_style .jtico_tianji{background-position:0px -1825px}
.jiathis_style .jtico_tumblr{background-position:0px -1841px}
.jiathis_style .jtico_ishare{background-position:0px -1857px}
.jiathis_style .jtico_zsvs{background-position:0px -1873px}
.jiathis_style .jtico_pinterest{background-position:0px -1889px}
.jiathis_style .jtico_toeeee{background-position:0px -1905px}
.jiathis_style .jtico_tyaolan{background-position:0px -1921px}
.jiathis_style .jtico_189share{background-position:0px -1937px}
.jiathis_style .jtico_txinhua{background-position:0px -1953px}
.jiathis_style .jtico_googleplus{background-position:0px -1969px}
.jiathis_style .jtico_faxianla{background-position:0px -1985px}
.jiathis_style .jtico_iwo{background-position:0px -2001px}
.jiathis_style .jtico_cqq{background-position:0px -2017px}
.jiathis_style .jtico_mwsq{background-position:0px -800px}
.jiathis_style .button,.jiathis_style .jiathis_txt{float:left;font-size:12px;text-decoration:none;line-height:18px!important;}
.jiathis_style .separator,.jiathis_style .jiathis_separator{display:block;float:left;margin:0 5px;line-height:16px!important;}
.jiathis_style .searchTxt{text-align:left;margin:7px 0 0 28px;background:#FFFFFF;border:none;width:240px;font-size:12px;color:#999;}
.jiathis_style .searchTxtCont{width:300px;background:#F2F2F2;border-bottom:1px solid #E5E5E5;padding:0 0 0 5px}
.jiathis_style .centerBottom{width:300px;background:#F2F2F2;border-top:1px solid #E5E5E5;padding-left:5px;}
.jiathis_style .centerTitle{float:right;*padding:3px 0 0;}
.jiathis_style .ckepopBottom{background:#F2F2F2;border-top:1px solid #E5E5E5;padding-left:5px;}
.jiathis_style .jt_sharetitle{font-weight:bold;font-size:12px;}
.jiathis_style .jialike{position:relative;border:none;overflow:hidden;margin:-3px 5px;}
.jiathis_style img{display:inline;vertical-align:middle;}
.jiathis_style_32x32 .jtico{text-align:left;overflow:hidden;display:block!important;height:32px!important;line-height:32px!important;padding-left:36px!important;background:url(../images/jiathis_ico_32x32.png) no-repeat left;cursor:pointer}
.jiathis_style_32x32 .jtico:hover{opacity:0.8;}
.jiathis_style_32x32 .jiathis_txt{float:left;font-size:22px;text-decoration:none;line-height:32px!important;}
.jiathis_style_32x32 .jiathis_separator{display:block;float:left;margin:0 5px;line-height:32px!important;}
.jiathis_style_32x32 .jialike{position:relative;border:none;overflow:hidden;margin:-3px 5px;}
.jiathis_style_32x32 .jtico_tsina{background-position:0px 0px}
.jiathis_style_32x32 .jtico_qzone{background-position:0px -32px}
.jiathis_style_32x32 .jtico_renren{background-position:0px -64px}
.jiathis_style_32x32 .jtico_gmail{background-position:0px -96px}
.jiathis_style_32x32 .jtico_fav{background-position:0px -128px}
.jiathis_style_32x32 .jtico_tieba{background-position:0px -160px}
.jiathis_style_32x32 .jtico_kaixin001{background-position:0px -192px}
.jiathis_style_32x32 .jtico_douban{background-position:0px -224px}
.jiathis_style_32x32 .jtico_hi{background-position:0px -256px}
.jiathis_style_32x32 .jtico_qingbiji{background-position:0px -288px}
.jiathis_style_32x32 .jtico_t163{background-position:0px -320px}
.jiathis_style_32x32 .jtico_baidu{background-position:0px -352px}
.jiathis_style_32x32 .jtico_translate{background-position:0px -384px}
.jiathis_style_32x32 .jtico_sina{background-position:0px -416px}
.jiathis_style_32x32 .jtico_huaban{background-position:0px -448px}
.jiathis_style_32x32 .jtico_hotmail{background-position:0px -480px}
.jiathis_style_32x32 .jtico_hexun{background-position:0px -512px}
.jiathis_style_32x32 .jtico_fanfou{background-position:0px -544px}
.jiathis_style_32x32 .jtico_poco{background-position:0px -576px}
.jiathis_style_32x32 .jtico_waakee{background-position:0px -608px}
.jiathis_style_32x32 .jtico_xianguo{background-position:0px -640px}
.jiathis_style_32x32 .jtico_mingdao{background-position:0px -672px}
.jiathis_style_32x32 .jtico_qileke{background-position:0px -704px}
.jiathis_style_32x32 .jtico_diandian{background-position:0px -736px}
.jiathis_style_32x32 .jtico_leshou{background-position:0px -768px}
.jiathis_style_32x32 .jtico_gmw{background-position:0px -800px}
.jiathis_style_32x32 .jtico_115{background-position:0px -832px}
.jiathis_style_32x32 .jtico_msn{background-position:0px -864px}
.jiathis_style_32x32 .jtico_caimi{background-position:0px -896px}
.jiathis_style_32x32 .jtico_renjian{background-position:0px -928px}
.jiathis_style_32x32 .jtico_fb{background-position:0px -960px}
.jiathis_style_32x32 .jtico_ujian{background-position:0px -992px}
.jiathis_style_32x32 .jtico_twitter{background-position:0px -1024px}
.jiathis_style_32x32 .jtico_delicious{background-position:0px -1056px}
.jiathis_style_32x32 .jtico_digg{background-position:0px -1088px}
.jiathis_style_32x32 .jtico_diglog{background-position:0px -1120px}
.jiathis_style_32x32 .jtico_wong{background-position:0px -1152px}
.jiathis_style_32x32 .jtico_zsvs{background-position:0px -1184px}
.jiathis_style_32x32 .jtico_stumbleupon{background-position:0px -1216px}
.jiathis_style_32x32 .jtico_tsohu{background-position:0px -1248px}
.jiathis_style_32x32 .jtico_chouti{background-position:0px -1280px}
.jiathis_style_32x32 .jtico_cnfol{background-position:0px -1312px}
.jiathis_style_32x32 .jtico_dig24{background-position:0px -1344px}
.jiathis_style_32x32 .jtico_yijee{background-position:0px -1376px}
.jiathis_style_32x32 .jtico_sdonote{background-position:0px -1408px}
.jiathis_style_32x32 .jtico_buzz{background-position:0px -1440px}
.jiathis_style_32x32 .jtico_wealink{background-position:0px -1472px}
.jiathis_style_32x32 .jtico_evernote{background-position:0px -1504px}
.jiathis_style_32x32 .jtico_linkedin{background-position:0px -1536px}
.jiathis_style_32x32 .jtico_reddit{background-position:0px -1568px}
.jiathis_style_32x32 .jtico_fwisp{background-position:0px -1600px}
.jiathis_style_32x32 .jtico_cyzone{background-position:0px -1632px}
.jiathis_style_32x32 .jtico_youdao{background-position:0px -1664px}
.jiathis_style_32x32 .jtico_netvibes{background-position:0px -1696px}
.jiathis_style_32x32 .jtico_myspace{background-position:0px -1728px}
.jiathis_style_32x32 .jtico_tqq{background-position:0px -1760px}
.jiathis_style_32x32 .jtico_feixin{background-position:0px -1792px}
.jiathis_style_32x32 .jtico_youshi{background-position:0px -1824px}
.jiathis_style_32x32 .jtico_xiaoyou{background-position:0px -1856px}
.jiathis_style_32x32 .jtico_tifeng{background-position:0px -1888px}
.jiathis_style_32x32 .jtico_dream163{background-position:0px -1920px}
.jiathis_style_32x32 .jtico_ifengkb{background-position:0px -1952px}
.jiathis_style_32x32 .jtico_email{background-position:0px -1984px}
.jiathis_style_32x32 .jtico_taobao{background-position:0px -2016px}
.jiathis_style_32x32 .jtico_jiathis{background-position:0px -2048px}
.jiathis_style_32x32 .jtico_tyaolan{background-position:0px -2080px}
.jiathis_style_32x32 .jtico_masar{background-position:0px -2112px}
.jiathis_style_32x32 .jtico_binzhi{background-position:0px -2144px}
.jiathis_style_32x32 .jtico_51{background-position:0px -2176px}
.jiathis_style_32x32 .jtico_qq{background-position:0px -2208px}
.jiathis_style_32x32 .jtico_digu{background-position:0px -2240px}
.jiathis_style_32x32 .jtico_douban9dian{background-position:0px -2272px}
.jiathis_style_32x32 .jtico_yixin{background-position:0px -2304px}
.jiathis_style_32x32 .jtico_pdfonline{background-position:0px -2336px}
.jiathis_style_32x32 .jtico_printfriendly{background-position:0px -2368px}
.jiathis_style_32x32 .jtico_duitang{background-position:0px -2400px}
.jiathis_style_32x32 .jtico_diigo{background-position:0px -2432px}
.jiathis_style_32x32 .jtico_friendfeed{background-position:0px -2464px}
.jiathis_style_32x32 .jtico_mixx{background-position:0px -2496px}
.jiathis_style_32x32 .jtico_plaxo{background-position:0px -2528px}
.jiathis_style_32x32 .jtico_tpeople{background-position:0px -2560px}
.jiathis_style_32x32 .jtico_print{background-position:0px -2592px}
.jiathis_style_32x32 .jtico_plurk{background-position:0px -2624px}
.jiathis_style_32x32 .jtico_189mail{background-position:0px -2656px}
.jiathis_style_32x32 .jtico_i139{background-position:0px -2688px}
.jiathis_style_32x32 .jtico_thexun{background-position:0px -2720px}
.jiathis_style_32x32 .jtico_tianya{background-position:0px -2752px}
.jiathis_style_32x32 .jtico_kansohu{background-position:0px -2784px}
.jiathis_style_32x32 .jtico_ganniu{background-position:0px -2816px}
.jiathis_style_32x32 .jtico_189cn{background-position:0px -2848px}
.jiathis_style_32x32 .jtico_mop{background-position:0px -2880px}
.jiathis_style_32x32 .jtico_alibaba{background-position:0px -2912px}
.jiathis_style_32x32 .jtico_mailru{background-position:0px -2944px}
.jiathis_style_32x32 .jtico_leihou{background-position:0px -2976px}
.jiathis_style_32x32 .jtico_139{background-position:0px -3008px}
.jiathis_style_32x32 .jtico_139mail{background-position:0px -3040px}
.jiathis_style_32x32 .jtico_w3c{background-position:0px -3072px}
.jiathis_style_32x32 .jtico_99earth{background-position:0px -3104px}
.jiathis_style_32x32 .jtico_xqw{background-position:0px -3136px}
.jiathis_style_32x32 .jtico_google{background-position:0px -3168px}
.jiathis_style_32x32 .jtico_jcrb{background-position:0px -3200px}
.jiathis_style_32x32 .jtico_miliao{background-position:0px -3232px}
.jiathis_style_32x32 .jtico_tuita{background-position:0px -3264px}
.jiathis_style_32x32 .jtico_copy{background-position:0px -3296px}
.jiathis_style_32x32 .jtico_pingfm{background-position:0px -3328px}
.jiathis_style_32x32 .jtico_pocket{background-position:0px -3360px}
.jiathis_style_32x32 .jtico_funp{background-position:0px -3392px}
.jiathis_style_32x32 .jtico_phonefavs{background-position:0px -3424px}
.jiathis_style_32x32 .jtico_instapaper{background-position:0px -3456px}
.jiathis_style_32x32 .jtico_myshare{background-position:0px -3488px}
.jiathis_style_32x32 .jtico_bitly{background-position:0px -3520px}
.jiathis_style_32x32 .jtico_netlog{background-position:0px -3552px}
.jiathis_style_32x32 .jtico_ydnote{background-position:0px -3584px}
.jiathis_style_32x32 .jtico_meilishuo{background-position:0px -3616px}
.jiathis_style_32x32 .jtico_mogujie{background-position:0px -3648px}
.jiathis_style_32x32 .jtico_weixin{background-position:0px -3680px}
.jiathis_style_32x32 .jtico_tianji{background-position:0px -3712px}
.jiathis_style_32x32 .jtico_tumblr{background-position:0px -3744px}
.jiathis_style_32x32 .jtico_ishare{background-position:0px -3776px}
.jiathis_style_32x32 .jtico_pinterest{background-position:0px -3808px}
.jiathis_style_32x32 .jtico_toeeee{background-position:0px -3840px}
.jiathis_style_32x32 .jtico_189share{background-position:0px -3872px}
.jiathis_style_32x32 .jtico_txinhua{background-position:0px -3904px}
.jiathis_style_32x32 .jtico_googleplus{background-position:0px -3936px}
.jiathis_style_32x32 .jtico_faxianla{background-position:0px -3968px}
.jiathis_style_32x32 .jtico_iwo{background-position:0px -4000px}
.jiathis_style_32x32 .jtico_cqq{background-position:0px -4032px}
.jiathis_style_32x32 .jtico_mwsq{background-position:0px -704px}
.jiathis_style_24x24 .jtico{text-align:left;overflow:hidden;display:block!important;height:24px!important;line-height:24px!important;padding-left:28px!important;background:url(../images/jiathis_ico_24x24.png) no-repeat left;cursor:pointer}
.jiathis_style_24x24 .jtico:hover{opacity:0.8;}
.jiathis_style_24x24 .jiathis_txt{float:left;font-size:22px;text-decoration:none;line-height:24px!important;}
.jiathis_style_24x24 .jiathis_separator{display:block;float:left;margin:0 5px;line-height:24px!important;}
.jiathis_style_24x24 .jialike{position:relative;border:none;overflow:hidden;margin:-3px 5px;}
.jiathis_style_24x24 .jtico_copy{background-position:0px 0px}
.jiathis_style_24x24 .jtico_fav{background-position:0px -24px}
.jiathis_style_24x24 .jtico_email{background-position:0px -48px}
.jiathis_style_24x24 .jtico_buzz{background-position:0px -72px}
.jiathis_style_24x24 .jtico_qzone{background-position:0px -96px}
.jiathis_style_24x24 .jtico_baidu{background-position:0px -120px}
.jiathis_style_24x24 .jtico_tsina{background-position:0px -144px}
.jiathis_style_24x24 .jtico_tsohu{background-position:0px -168px}
.jiathis_style_24x24 .jtico_t163{background-position:0px -192px}
.jiathis_style_24x24 .jtico_tqq{background-position:0px -216px}
.jiathis_style_24x24 .jtico_renren{background-position:0px -240px}
.jiathis_style_24x24 .jtico_kaixin001{background-position:0px -264px}
.jiathis_style_24x24 .jtico_qingbiji{background-position:0px -288px}
.jiathis_style_24x24 .jtico_taobao{background-position:0px -312px}
.jiathis_style_24x24 .jtico_hi{background-position:0px -336px}
.jiathis_style_24x24 .jtico_xiaoyou{background-position:0px -360px}
.jiathis_style_24x24 .jtico_youshi{background-position:0px -384px}
.jiathis_style_24x24 .jtico_gmail{background-position:0px -408px}
.jiathis_style_24x24 .jtico_hotmail{background-position:0px -432px}
.jiathis_style_24x24 .jtico_xqw{background-position:0px -456px}
.jiathis_style_24x24 .jtico_feixin{background-position:0px -480px}
.jiathis_style_24x24 .jtico_51{background-position:0px -504px}
.jiathis_style_24x24 .jtico_google{background-position:0px -528px}
.jiathis_style_24x24 .jtico_youdao{background-position:0px -552px}
.jiathis_style_24x24 .jtico_qq{background-position:0px -576px}
.jiathis_style_24x24 .jtico_sina{background-position:0px -600px}
.jiathis_style_24x24 .jtico_tuita{background-position:0px -624px}
.jiathis_style_24x24 .jtico_huaban{background-position:0px -648px}
.jiathis_style_24x24 .jtico_115{background-position:0px -672px}
.jiathis_style_24x24 .jtico_hexun{background-position:0px -696px}
.jiathis_style_24x24 .jtico_myspace{background-position:0px -720px}
.jiathis_style_24x24 .jtico_139{background-position:0px -744px}
.jiathis_style_24x24 .jtico_tieba{background-position:0px -768px}
.jiathis_style_24x24 .jtico_sdonote{background-position:0px -792px}
.jiathis_style_24x24 .jtico_digu{background-position:0px -816px}
.jiathis_style_24x24 .jtico_douban{background-position:0px -840px}
.jiathis_style_24x24 .jtico_ifengkb{background-position:0px -864px}
.jiathis_style_24x24 .jtico_xianguo{background-position:0px -888px}
.jiathis_style_24x24 .jtico_mingdao{background-position:0px -912px}
.jiathis_style_24x24 .jtico_renjian{background-position:0px -936px}
.jiathis_style_24x24 .jtico_gmw{background-position:0px -960px}
.jiathis_style_24x24 .jtico_delicious{background-position:0px -984px}
.jiathis_style_24x24 .jtico_digg{background-position:0px -1008px}
.jiathis_style_24x24 .jtico_fb{background-position:0px -1032px}
.jiathis_style_24x24 .jtico_twitter{background-position:0px -1056px}
.jiathis_style_24x24 .jtico_ujian{background-position:0px -1080px}
.jiathis_style_24x24 .jtico_poco{background-position:0px -1104px}
.jiathis_style_24x24 .jtico_wealink{background-position:0px -1128px}
.jiathis_style_24x24 .jtico_cnfol{background-position:0px -1152px}
.jiathis_style_24x24 .jtico_qileke{background-position:0px -1200px}
.jiathis_style_24x24 .jtico_tongxue{background-position:0px -1224px}
.jiathis_style_24x24 .jtico_waakee{background-position:0px -1248px}
.jiathis_style_24x24 .jtico_ydnote{background-position:0px -1272px}
.jiathis_style_24x24 .jtico_cyzone{background-position:0px -1296px}
.jiathis_style_24x24 .jtico_diandian{background-position:0px -1320px}
.jiathis_style_24x24 .jtico_jcrb{background-position:0px -1344px}
.jiathis_style_24x24 .jtico_99earth{background-position:0px -1368px}
.jiathis_style_24x24 .jtico_chouti{background-position:0px -1392px}
.jiathis_style_24x24 .jtico_dig24{background-position:0px -1416px}
.jiathis_style_24x24 .jtico_douban9dian{background-position:0px -1440px}
.jiathis_style_24x24 .jtico_i139{background-position:0px -1464px}
.jiathis_style_24x24 .jtico_caimi{background-position:0px -1488px}
.jiathis_style_24x24 .jtico_yixin{background-position:0px -1512px}
.jiathis_style_24x24 .jtico_yijee{background-position:0px -1536px}
.jiathis_style_24x24 .jtico_pdfonline{background-position:0px -1560px}
.jiathis_style_24x24 .jtico_printfriendly{background-position:0px -1584px}
.jiathis_style_24x24 .jtico_translate{background-position:0px -1608px}
.jiathis_style_24x24 .jtico_duitang{background-position:0px -1632px}
.jiathis_style_24x24 .jtico_diigo{background-position:0px -1656px}
.jiathis_style_24x24 .jtico_evernote{background-position:0px -1680px}
.jiathis_style_24x24 .jtico_friendfeed{background-position:0px -1704px}
.jiathis_style_24x24 .jtico_linkedin{background-position:0px -1728px}
.jiathis_style_24x24 .jtico_mixx{background-position:0px -1752px}
.jiathis_style_24x24 .jtico_netlog{background-position:0px -1776px}
.jiathis_style_24x24 .jtico_netvibes{background-position:0px -1800px}
.jiathis_style_24x24 .jtico_phonefavs{background-position:0px -1824px}
.jiathis_style_24x24 .jtico_pingfm{background-position:0px -1848px}
.jiathis_style_24x24 .jtico_plaxo{background-position:0px -1872px}
.jiathis_style_24x24 .jtico_tpeople{background-position:0px -1896px}
.jiathis_style_24x24 .jtico_reddit{background-position:0px -1920px}
.jiathis_style_24x24 .jtico_wong{background-position:0px -1944px}
.jiathis_style_24x24 .jtico_stumbleupon{background-position:0px -1968px}
.jiathis_style_24x24 .jtico_plurk{background-position:0px -1992px}
.jiathis_style_24x24 .jtico_funp{background-position:0px -2016px}
.jiathis_style_24x24 .jtico_miliao{background-position:0px -2040px}
.jiathis_style_24x24 .jtico_myshare{background-position:0px -2064px}
.jiathis_style_24x24 .jtico_fwisp{background-position:0px -2088px}
.jiathis_style_24x24 .jtico_more,.jiathis_style_24x24 .jtico_jiathis{background-position:0px -2112px}
.jiathis_style_24x24 .jtico_msn{background-position:0px -2136px}
.jiathis_style_24x24 .jtico_fanfou{background-position:0px -2160px}
.jiathis_style_24x24 .jtico_189mail{background-position:0px -2184px}
.jiathis_style_24x24 .jtico_dream163{background-position:0px -2208px}
.jiathis_style_24x24 .jtico_thexun{background-position:0px -2232px}
.jiathis_style_24x24 .jtico_tianya{background-position:0px -2256px}
.jiathis_style_24x24 .jtico_w3c{background-position:0px -2280px}
.jiathis_style_24x24 .jtico_tifeng{background-position:0px -2304px}
.jiathis_style_24x24 .jtico_bitly{background-position:0px -2328px}
.jiathis_style_24x24 .jtico_kansohu{background-position:0px -2352px}
.jiathis_style_24x24 .jtico_ganniu{background-position:0px -2376px}
.jiathis_style_24x24 .jtico_189cn{background-position:0px -2400px}
.jiathis_style_24x24 .jtico_masar{background-position:0px -2424px}
.jiathis_style_24x24 .jtico_binzhi{background-position:0px -2448px}
.jiathis_style_24x24 .jtico_mop{background-position:0px -2472px}
.jiathis_style_24x24 .jtico_alibaba{background-position:0px -2496px}
.jiathis_style_24x24 .jtico_leihou{background-position:0px -2520px}
.jiathis_style_24x24 .jtico_mailru{background-position:0px -2544px}
.jiathis_style_24x24 .jtico_pocket{background-position:0px -2568px}
.jiathis_style_24x24 .jtico_instapaper{background-position:0px -2592px}
.jiathis_style_24x24 .jtico_print{background-position:0px -2616px}
.jiathis_style_24x24 .jtico_139mail{background-position:0px -2640px}
.jiathis_style_24x24 .jtico_meilishuo{background-position:0px -2664px}
.jiathis_style_24x24 .jtico_mogujie{background-position:0px -2688px}
.jiathis_style_24x24 .jtico_weixin{background-position:0px -2712px}
.jiathis_style_24x24 .jtico_tianji{background-position:0px -2736px}
.jiathis_style_24x24 .jtico_tumblr{background-position:0px -2760px}
.jiathis_style_24x24 .jtico_ishare{background-position:0px -2784px}
.jiathis_style_24x24 .jtico_zsvs{background-position:0px -2808px}
.jiathis_style_24x24 .jtico_pinterest{background-position:0px -2832px}
.jiathis_style_24x24 .jtico_toeeee{background-position:0px -2856px}
.jiathis_style_24x24 .jtico_tyaolan{background-position:0px -2880px}
.jiathis_style_24x24 .jtico_189share{background-position:0px -2904px}
.jiathis_style_24x24 .jtico_txinhua{background-position:0px -2928px}
.jiathis_style_24x24 .jtico_googleplus{background-position:0px -2952px}
.jiathis_style_24x24 .jtico_faxianla{background-position:0px -2976px}
.jiathis_style_24x24 .jtico_iwo{background-position:0px -3000px}
.jiathis_style_24x24 .jtico_cqq{background-position:0px -3024px}
.jiathis_style_24x24 .jtico_mwsq{background-position:0px -1200px}

View File

@@ -0,0 +1,693 @@
/*会员中心的样式*/
/*我的dr首页 页面*/
table{border-collapse:collapse;empty-cells:show}
.mb_back{background:#fff;overflow:hidden;clear:both}
.member_cort{width:940px;margin:0 auto;overflow:hidden;padding-top:8px;padding-bottom:20px}
.member_cortleft-tittle{width:147px;height:36px;line-height:36px;text-align:center;border:2px solid #efefef;background:#fafafa;font-size:0;margin-bottom:9px}
.member_cortleft-tittle i{display:inline-block;background:url(../images/icon02.png) no-repeat;width:11px;height:14px;vertical-align:middle}
.member_cortleft-tittle a{font-size:14px;color:#333;font-weight:bold;vertical-align:middle;padding-left:6px}
.member_cortleft-tittle .mb_home{background-position:-3px -80px}
.member_cortleft-sptittle a{color:#c6a34d}
.member_cortleft-sptittle .mb_home{background-position:-3px -63px}
/*树形*/
.member_cort-ul{border:2px solid #efefef;border-top:none}
.member_cort-ul li{width:147px;text-align:center;background:#fff;}
.member_cort-ul h3{font-size:14px;color:#333;height:36px;line-height:36px;border:2px solid #efefef;border-left:none;border-right:none;background:#fafafa}
.member_cort-ul .member_ul-dr{width:120px;margin:0 auto}
.member_cort-ul .member_ul-dr li{width:96px;height:38px;line-height:38px;border-bottom:1px solid #efefef;text-align:left;padding-left:24px}
.member_cort-ul .member_ul-dr li a{color:#666;font-size:12px;background:url(../images/all-right.png) no-repeat left center;padding-left:10px}
.member_cort-ul .member_ul-dr li a:hover{color:#c6a34d;background:url(../images/all-right_y.png) no-repeat left center;font-weight:bold}
.member_cort-ul .member_ul-dr .no_border{border:none}
.member_cort-ul .member_ul-dr .speacil_color a{color:#c6a34d;font-weight:bold;background:url(../images/all-right_y.png) no-repeat left center}
/*右边*/
.member_cort-right{width:770px;padding-bottom:50px}
.member_cort-right h3{color:#666;font-size:14px;border-bottom:1px solid #dbdbdb;padding-bottom:10px;padding-top:4px}
/*首页右边的样式*/
/*第一小块*/
.member_cortr-first{overflow:hidden;margin-bottom:22px}
.mb_theleft span{font-size:14px;color:#333;font-weight:bold}
.member_first-left-top{overflow:hidden;margin-bottom:30px}
.member_cortr-first a:hover{text-decoration:underline;color:#8e4f1b}
/*第一块左边*/
.member_cortr-first-left a{font-size:12px;color:#8e4f1b}
.member_cortr-first-left i{background:url(../images/icon02.png) no-repeat;display:inline-block;vertical-align:middle}
.member_cortr-first .mb_email{width:14px;height:10px;background-position:-22px -65px}
.mb_theleft,.mb_theright-sec{width:246px;overflow:hidden}
.mb_theright{font-size:0;margin:4px 0 0 20px}
.mb_theright span{font-size:12px;color:#333;vertical-align:middle;margin:0 6px}
.member_first-left-sec{overflow:hidden}
.mb_theright a,.mb_theright-sec a{vertical-align:middle}
.mb_theright-sec{font-size:0;background:url(../images/line.jpg) no-repeat right center}
.mb_theright-sec span{font-size:12px;color:#333;vertical-align:middle;}
.mb_theright-sec .vtop,.mb_theright .vtop{vertical-align:top}
/*未验证*/
.member_cortr-first .mb_phone{width:18px;height:20px;background-position:0 0}
.member_cortr-first .mb_em{width:20px;height:18px;background-position:0 -42px;margin-left:8px}
/*验证完毕*/
.member_cortr-first .mb_em-right{width:20px;height:18px;background-position:-22px -42px;margin-left:8px}
.member_cortr-first .mb_phone-right{width:18px;height:20px;background-position:-23px 0}
.mb_theright-sec p{margin-bottom:10px}
.mb_theright-sec a{margin:0 4px}
.member_first-left-sec .mb_theright span{font-weight:bold}
.member_first-left-sec .mb_theright em{display:inline-block;width:44px;height:11px;line-height:11px;text-align:center;border:1px solid #f2f2f2;padding:1px;background:#ccc;vertical-align:middle;color:#fff;font-size:12px}
.member_first-left-sec .mb_theright .mb_red-color{background:#ff4c4c}
.member_first-left-sec .mb_theright .oth_span span{color:#888;font-weight:100}
.member_first-left-sec .mb_theright p{margin-bottom:10px}
/*第一块右边*/
.member_cortr-first-right{margin-right:58px}
.member_cortr-first-right p{text-align:center;margin-top:8px}
.member_cortr-first-right a{font-size:12px;color:#333}
/*第二小块*/
.member_cortr-sec{overflow:hidden;margin:13px 0 30px 0}
.member_cortr-sec li{float:left;padding:9px 18px;border:1px solid transparent}
.member_cortr-sec-left{background:url(../images/tb.jpg) no-repeat;height:70px;width:75px}
.member_cortr-sec-right{margin-left:10px}
.member_cortr-sec h4{margin:4px 0 12px 0}
.member_cortr-sec h4,.member_cortr-sec a{color:#333;font-size:14px}
.member_cortr-sec p{font-size:12px;color:#888;line-height:18px}
.member_cortr-sec .mb_border{border:1px solid #ffcbcb}
.member_cortr-sec .mb_border h4,.member_cortr-sec .mb_border a{color:#c6a34d}
.member_cortr-sec .mb_border p{color:#c6a34d}
.member_cortr-sec .member_secimg_2{background-position:0 -70px}
.member_cortr-sec .member_secimg_3{background-position:0 -140px}
.member_cortr-sec .member_secimg_4{background-position:0 -210px}
/*第三小块*/
.member_cortr-third{overflow:hidden;margin:20px 0 26px 8px}
.member_cortr-third li{float:left;text-align:center;width:142px;margin-right:10px}
.member_cortr-third a{display:block;border:1px solid transparent}
.member_cortr-third img{width:140px;height:140px}
.member_cortr-third a:hover{border:1px solid #ffcbcb}
.member_cortr-third-word{margin-top:8px}
.member_cortr-third-word p{font-size:12px;color:#666;line-height:18px}
.member_cortr-third-word span{font-family:Arial, Helvetica, sans-serif;color:#ff4c4c}
/*我的订单页面*/
/*切换导航*/
.member_all-nav-top{height:30px}
.member_all-nav-ul li{float:left;height:29px;line-height:29px;color:#666;font-size:14px;border:1px solid #e4e4e4;border-bottom:none;padding:0 12px;margin-left:8px;cursor:pointer}
.member_all-nav-line{border-top:1px solid #d6b870}
/*选中*/
.member_all-nav-ul .member_all-nav-click{border:1px solid #d6b870;border-bottom:1px solid #fff;height:29px;font-weight:bold;color:#8e4f1b;line-height:29px}
.member_all-nav-right{font-size:0;height:30px;line-height:30px}
.member_all-nav-right i{background:url(../images/icon02.png) no-repeat;display:inline-block;vertical-align:middle}
.member_all-nav-right span{color:#888;font-size:12px;vertical-align:middle}
.member_all-nav-right a{color:#8e4f1b;font-size:12px;vertical-align:middle;margin-left:6px}
.member_all-nav-right a:hover{text-decoration:underline}
.member_all-nav-right .member_tz{width:22px;height:14px;background-position:-20px -81px}
/*订单的table*/
.member_myorder-table-first td{font-weight:bold;color:#333;font-size:12px;padding:15px 0;text-align:center}
.myorder-table_td1{width:228px}
.myorder-table_td2{width:123px;font-family:Arial;}
.myorder-table_td3{width:123px}
.myorder-table_td4{width:93px}
.myorder-table_td5{width:93px}
.myorder-table_td6{width:103px}
.member_myorder-table-sec td{background:#fef3f1;font-size:12px;color:#666;padding:8px 0;border-bottom:1px solid #e6e6e6}
.member_myorder-table-sec .myorder-table-sec_td1{padding-left:14px}
.member_myorder-table{border:1px solid #e6e6e6;border-bottom:none}
.member_myorder-table-third td{color:#666;font-size:12px;padding:15px 0;text-align:center;border-bottom:1px solid #e6e6e6}
.member_myorder-table-third p{color:#666;font-size:12px}
.member_myorder-table-third .myorder-table_td1{border-right:1px solid #e6e6e6;width:228px}
.member_myorder-table-third .myorder-table_td2{border-right:1px solid #e6e6e6}
.member_myorder-table-third .myorder-table_td3{border-right:1px solid #e6e6e6}
.member_myorder-table-third .myorder-table_td4{border-right:1px solid #e6e6e6}
.member_myorder-table-third .myorder-table_td5{border-right:1px solid #e6e6e6}
.myorder-table-third-cp{overflow:hidden}
.myorder-table-third-spcp{margin-top:10px;border-top:1px solid #e6e6e6;padding-top:10px}
.member_myorder-table-third .img_right{width:114px;text-align:justify;margin-top:12px;padding-right:14px}
.member_myorder-table-third .img_left{padding-left:16px}
.member_myorder-table-third .myorder-table_td2{color:#ff4c4c;font-size:14px;font-weight:bold}
.member_myorder-table-third .myorder-table_td3{color:#ff4c4c;font-size:14px}
.member_myorder-table-third .myorder-table_td5{color:#333;font-size:12px}
.myorder-table_td6 .myorder-table_pay{display:inline-block;color:#ff4c4c;border:1px solid #ff4c4c;width:73px;height:22px;line-height:22px;text-align:center}
.myorder-table_td6 p{margin-top:6px;font-size:0}
.myorder-table_td6 a{color:#8e4f1b;font-size:12px}
.myorder-table_td6 p a:hover{text-decoration:underline}
.myorder-table_td6 i{color:#8e4f1b;font-size:12px;padding:0 4px}
/*我的订单详情页面*/
.member_myorder-xq{border:1px solid #e6e6e6}
.member_myorder-xq-tittle{border-bottom:1px solid #e6e6e6;background:#fef3f1;overflow:hidden}
.member_myorder-xq-tittle li{float:left;margin:0 20px;height:38px;line-height:38px}
.member_myorder-xq-tittle i{font-size:14px;color:#666;font-weight:bold;vertical-align:middle}
.member_myorder-xq-tittle span{font-size:14px;color:#666;font-family:Arial, Helvetica, sans-serif;vertical-align:middle}
.member_myorder-xq-tittle a{font-weight:bold;color:#c6a34d;font-size:12px;text-align:center;line-height:21px;vertical-align:middle}
.member_myorder-xq-tittle a:hover{background:#caa752;color:#fff}
.member_myorder-xq-ul{overflow:hidden;padding:26px}
.member_myorder-xq-ul li{float:left;text-align:center;margin-left:1px}
.myorder-xq-ul-top{font-size:14px;color:#333}
.myorder-xq-ul-cort{background:url(../images/about_xq.png) no-repeat;height:65px}
.myorder-xq-ul-bottom{margin-top:6px}
.myorder-xq-ul-bottom p{color:#888;font-size:12px;margin-top:4px}
.myorder-xq-ul-line{background:url(../images/to_right.png) no-repeat;width:44px;height:9px;margin:52px 6px 0 6px}
.xqul-cort1{background-position:-5px 12px;width:52px}
.xqul-cort2{background-position:-65px 5px;width:78px}
.xqul-cort3{background-position:-149px 9px;width:74px}
.xqul-cort4{background-position:-238px 8px;width:56px}
.xqul-cort5{background-position:-316px 7px;width:80px}
.xqul-cort6{background-position:-411px 8px;width:62px}
/*选中*/
.myorder-xq-ul-line-click{background-position:0 -9px}
.xqul-cort1-cilck{background-position:-5px -55px}
.xqul-cort2-cilck{background-position:-65px -62px}
.xqul-cort3-cilck{background-position:-149px -58px}
.xqul-cort4-cilck{background-position:-238px -59px}
.xqul-cort5-cilck{background-position:-316px -60px}
.xqul-cort6-cilck{background-position:-411px -59px}
/*订单信息*/
.member_myorder-xq-news{padding:0 9px}
.myorder-xq-news_top{overflow:hidden;margin-bottom:10px}
.myorder-xq-news_top p{font-size:14px;color:#666;font-weight:bold;height:30px;line-height:30px;margin-left:4px}
.myorder-xq-news_table{border:1px solid #e6e6e6;border-bottom:none;margin-bottom:20px}
.myorder-xq-news_table td{color:#333;font-size:12px;padding:6px 0;border-bottom:1px solid #e6e6e6}
.myorder-xq-news_table .news_table-td1{width:104px;padding-right:12px;background:#fafafa;text-align:right;border-right:1px solid #e6e6e6}
.myorder-xq-news_table .news_table-td2{width:155px;padding-left:12px;background:#fff;text-align:left;border-right:1px solid #e6e6e6}
.myorder-xq-news_table .news_table-td3{width:334px;padding-left:12px;background:#fff;text-align:left;table-layout:fixed; word-break: break-all; overflow:hidden;}
.myorder-xq-news_table .news_table-td4{width:697px;padding-left:12px;background:#fff;text-align:left;table-layout:fixed; word-break: break-all; overflow:hidden;}
/*商品明细*/
.myorder-xq-shop_table{border:1px solid #e6e6e6;border-bottom:none;margin-bottom:26px}
.myorder-xq-shop_table td{text-align:center;font-size:12px;color:#333}
.xq-shop_table-trfirst td{background:#fafafa;padding:7px 0;border-bottom:1px solid #e6e6e6}
.xq-shop_table-td1{width:194px}
.xq-shop_table-td2{width:113px}
.xq-shop_table-td3{width:90px}
.xq-shop_table-td4{width:87px}
.xq-shop_table-td5{width:130px}
.xq-shop_table-td6{width:129px}
.xq-shop_table-trsec td{border-bottom:1px solid #e6e6e6}
.xq-shop_table-trsec a{color:#333333;}
.xq-shop_table-trsec .xq-shop_table-td1,.xq-shop_table-trsec .xq-shop_table-td2,.xq-shop_table-trsec .xq-shop_table-td3,.xq-shop_table-trsec .xq-shop_table-td4,.xq-shop_table-trsec .xq-shop_table-td5{border-right:1px solid #e6e6e6}
.xq-shop_table-trsec .xq-shop_table-td1{padding:15px 0}
.xq-shop_table-trsec .xq-shop_table-td1 img{margin-left:20px}
.xq-shop_table-trsec .xq-shop_table-td1 span{width:92px;text-align:justify;margin:16px 0 0 20px;font-family:Arial, Helvetica, sans-serif}
.xq-shop_table-trsec .xq-shop_table-td6{font-weight:bold;font-size:14px;color:#666}
/*返回订单*/
.member_myorder-xq-retrun{background:#fafafa;border-top:1px solid #e6e6e6;height:38px;line-height:38px}
.member_myorder-xq-retrun a{color:#666;font-size:12px;margin-right:14px}
.member_myorder-xq-retrun a:hover{text-decoration:underline}
/*取消订单页面*/
.myorder_del-top{border:1px solid #e6e6e6;width:396px;padding:20px;margin-bottom:10px}
.myorder_del-top p{clear:both;font-size:16px;color:#666}
.myorder_del-top-button{font-size:0;margin-top:10px}
.myorder_del-top-button a{font-size:12px;color:#666;padding:0 22px 0 30px;border:1px solid #888;height:28px;line-height:28px;display:inline-block;margin-right:12px;background:url(../images/all-right.png) no-repeat 16px center}
.myorder_del-top-button a:hover{background:url(../images/all-right_w.png) no-repeat 16px center #b2b2b2;color:#fff;border:1px solid #b2b2b2}
.myorder_del-cort p{font-size:12px;color:#8e4f1b;line-height:22px}
.myorder_del-cort i{color:#ff4c4c;font-size:12px;vertical-align:middle}
.myorder_del-cort span{color:#666;font-size:12px;vertical-align:middle}
.myorder_del-cort select{vertical-align:middle;height:26px}
.myorder_del-cort .myorder_del-top-button{padding-top:10px}
.myorder_del-cort .myorder_del-top-button a{font-weight:bold;font-size:14px}
.myorder_del-top-button .del_bt{background:url(../images/all-right_w.png) no-repeat 16px center #d6b870;color:#fff;border:1px solid #d6b870}
.myorder_del-top-button .del_bt:hover{background:url(../images/all-right_w.png) no-repeat 16px center #caa752;border:1px solid #caa752}
/*我要评论页面*/
.member_all-nav-right em{color:#e94d4d}
.member_ask-table{border:1px solid #e6e6e6;margin-top:20px;border-bottom:none}
.member_ask-table td{text-align:center;padding:10px 0}
.ask-table-trfirst td{background:#fafafa;color:#333;font-size:12px;border-bottom:1px solid #e6e6e6}
.ask-table-td1{width:358px}
.ask-table-td2{width:148px}
.member_ask-table .ask-table-td3{width:184px;padding:10px 38px}
.ask-table-trsec td{border-bottom:1px solid #e6e6e6}
.ask-table-trsec .ask-table-td1{border-right:1px solid #e6e6e6;text-align:justify}
.ask-table-trsec .ask-table-td2{color:#666;border-right:1px solid #e6e6e6;font-size:12px}
.ask-table-trsec .ask-table-td3{color:#666;font-size:12px}
.ask-table-word{width:230px;margin-left:20px;margin-top:4px}
.ask-table-word p{font-size:12px;color:#333}
.ask-table-trsec .ask-table-td1 img{margin-left:38px}
.ask-table-bt{display:inline-block;padding:0 22px 0 30px;height:23px;line-height:23px;border:1px solid #c9a548;color:#c9a548;font-weight:bold;font-size:12px;background:url(../images/all-right_y.png) no-repeat 16px center}
.ask-table-bt:hover{background:url(../images/all-right_w.png) no-repeat 16px center #caa752;color:#fff}
/*已发表的评论*/
.ask-table-trsec .ask-table-sptd3{text-align:justify;line-height:16px}
.ask-table-trthird td{text-align:justify;padding:10px 12px;border-bottom:1px solid #e6e6e6;font-size:0}
.ask-table-trthird span{font-size:12px;color:#333}
.ask-table-trthird a{font-size:12px;color:#666;font-weight:bold}
/*商品评论页面*/
.member_ask-tittle{overflow:hidden;border-bottom:1px solid #e5e5e5;padding-bottom:10px}
.member_ask-tittle h4{font-size:14px;color:#666;float:left}
.member_ask-tittle p{font-size:12px;color:#666;float:right}
.member_ask-cort{overflow:hidden;margin-top:10px}
.member_ask-cort p{font-size:12px;color:#888;margin-top:5px}
.member_ask-cort span{font-size:12px;color:#333;font-family:Arial, Helvetica, sans-serif}
.member_ask-cort i{font-size:14px;color:#e64848}
.member_ask-totalk{margin:16px 0 0 26px}
.member_ask-totalk span{font-size:12px;color:#666;vertical-align:middle}
.member_ask-choose{font-size:0;margin-bottom:20px}
.member_ask-choose input{vertical-align:middle;margin:0 4px}
.member_ask-choose label{vertical-align:middle;font-size:12px;color:#333;margin-right:8px}
.member_ask-choose i{cursor:pointer;vertical-align:middle;display:inline-block;width:70px;height:23px;line-height:23px;text-align:center;color:#4c4c4c;font-size:12px;border:1px solid #e5e5e5;margin:0 4px}
.member_ask-choose .ask-choose-click{background:url(../images/border.png) no-repeat;width:72px;height:25px;line-height:25px;border:none}
.member_ask-choose .ol_span{vertical-align:top}
.member_ask-choose textarea{margin-left:4px;width:370px;height:110px;outline:none;overflow:auto;resize:none;padding:10px;line-height:20px;border:1px solid #ccc}
.member_ask-button{color:#fff;background:#d6b870;width:114px;height:30px;line-height:30px;text-align:center;font-size:14px;font-weight:bold;margin-left:64px;cursor:pointer}
.forask-button{margin-left:56px}
.forask-button .bt1{height:30px;line-height:30px}
.forask-button span{color:#fff;font-size:14px}
/*我的收藏的页面*/
.member_ollection-table{border:1px solid #e6e6e6;border-bottom:none}
.member_ollection-table td{padding:10px 0;text-align:center}
.ollection-table-trfirst td{background:#fef3f1;font-size:12px;color:#333;border-bottom:1px solid #e6e6e6}
.ollection-table-td1{width:325px;border-right:1px solid #e6e6e6}
.ollection-table-td2{width:163px;border-right:1px solid #e6e6e6}
.ollection-table-td3{width:163px;border-right:1px solid #e6e6e6}
.ollection-table-td4{width:114px}
.ollection-table-trsec td{border-bottom:1px solid #e6e6e6}
.ollection-table-trsec .ollection-table-td1{text-align:justify}
.ollection-table-td1 img{margin-left:14px}
.ollection-table-word{margin-left:20px;width:186px}
.ollection-table-word p{font-size:12px;color:#333;line-height:17px}
.ollection-table-trsec .ollection-table-td2{color:#ff4c4c;font-size:14px;font-weight:bold;font-family:;}
.ollection-table-td3 p{color:#333;font-size:12px;line-height:18px}
.ollection-table-td3 a{color:#888}
.ollection-table-td3 a:hover{text-decoration:underline}
.show_hover a:hover{text-decoration:underline;color:#8e4f1b}
.ollection-table-td4 p{margin-top:8px}
.ollection-table-td4 a{font-size:12px;color:#888}
.ollection-join,.ollection-xq{display:inline-block;height:21px;line-height:21px;width:78px;text-align:center}
.ollection-table-td4 .ollection-join{border:1px solid #c9a548;color:#c6a34d}
.ollection-xq{border:1px solid #ccc}
/*我的售后的页面*/
/*办理售后*/
.member_service-custre{margin-top:16px}
.member_service-top{margin-bottom:24px;padding-left:14px}
.member_service-top p{font-size:12px;color:#333;line-height:24px}
.member_service-table{border:1px solid #e6e6e6;border-bottom:none}
.member_service-table td{padding:10px 0}
.service-table-trfirst td{background:#fafafa;font-size:12px;color:#333;border-bottom:1px solid #e6e6e6}
.service-table-td1{width:531px;}
.service-table-td2{width:236px;text-align:center}
.service-table-td1 span{font-size:12px;color:#333;margin-left:18px}
.service-table-td1 em{font-size:12px;color:#ff4c4c}
.service-table-trsec td{border-bottom:1px solid #e6e6e6}
.service-table-trsec .service-table-td1{border-right:1px solid #e6e6e6}
.service-table-td1 img{margin-left:20px}
.service-table-word{margin:6px 0 0 20px}
.service-table-word p{font-size:12px;color:#333;line-height:18px}
.service-table-word i{font-size:14px;color:#ff4c4c;font-family:, Helvetica, sans-serif}
.service-table-td2 p{line-height:36px}
.service-table-td2 a{font-size:12px;color:#888}
.service-table-td2 .service-sqsh{display:inline-block;border:1px solid #e4d2a3;color:#c6a34d;width:108px;height:23px;line-height:23px;text-align:center;font-weight:bold;background:url(../images/all-right_y.png) no-repeat 22px center;padding-left:6px}
.service-table-td2 .service-sqsh:hover{background:url(../images/all-right_w.png) no-repeat 22px center #caa752;color:#fff;border:1px solid #caa752}
/*售后记录*/
.member_service-tablejl{border:1px solid #e6e6e6;border-bottom:none}
.member_service-tablejl td{padding:10px 0;text-align:center}
.service-tablejl-trfirst td{background:#fafafa;border-bottom:1px solid #e6e6e6;font-size:12px;color:#333}
.service-tablejl-td1,.service-tablejl-td2,.service-tablejl-td3,.service-tablejl-td4,.service-tablejl-td5,.service-tablejl-td6{border-right:1px solid #e6e6e6}
.service-tablejl-td1{width:58px}
.service-tablejl-td2{width:142px}
.service-tablejl-td3{width:142px}
.service-tablejl-td4{width:128px}
.service-tablejl-td5{width:118px}
.service-tablejl-td6{width:86px}
.service-tablejl-td7{width:88px}
.service-tablejl-trsec td{font-size:12px;color:#666;border-bottom:1px solid #e6e6e6}
.service-tablejl-trsec i{color:#ff4c4c;font-size:14px;font-family:"微软雅黑";text-decoration:underline}
.service-tablejl-trsec a{color:#ff4c4c;font-size:12px;text-decoration:underline}
/*售后详情的页面*/
.service-handle-top{height:30px;line-height:30px}
.service-handle-top p{font-size:0;color:#333}
.service-handle-top em{font-size:14px;color:#ff4c4c}
.service-handle-top span{font-size:12px}
.member_service-handle{border:1px solid #e6e6e6;border-bottom:none;clear:both;margin-bottom:24px}
.member_service-handle td{padding:10px 0;text-align:center}
.service-handle-trfirst td{background:#fafafa;color:#333;font-size:12px;border-bottom:1px solid #e6e6e6}
.service-handle-td1,.service-handle-td2{border-right:1px solid #e6e6e6}
.service-handle-td1{width:298px}
.service-handle-td2{width:198px}
.service-handle-td3{width:270px}
.service-handle-trsec td{border-bottom:1px solid #e6e6e6}
.service-handle-trsec .service-handle-td1{text-align:justify}
.service-handle-td1 img{margin-left:10px}
.service-handle-word{margin:14px 0 0 25px;width:160px}
.service-handle-word p{font-size:12px;color:#333;line-height:18px}
.service-handle-trsec .service-handle-td3{position:relative}
.service-handle-td3 textarea{border:none;outline:none;overflow:auto;resize:none;width:260px;height:94px;line-height:18px}
.word_ps{position:absolute;color:#666;font-size:12px;top:50px;left:100px}
/*填写地址*/
.shop_cort-adress{margin-top:8px;overflow:hidden}
.shop_adress-top{font-size:0;padding-left:10px;height:30px;line-height:30px}
.shop_adress-top input{vertical-align:middle;margin-right:8px;}
.shop_adress-top label{font-size:12px;color:#333;vertical-align:middle;display:inline-block}
/*2014814去掉的
.shop_adress-top span{font-size:12px;color:#888;vertical-align:middle;padding-left:20px;padding-right:40px}
.shop_adress-top i{font-size:12px;color:#e5e5e5;vertical-align:middle;padding:0 5px}
.shop_adress-top a{font-size:12px;color:#8e4f1b;vertical-align:middle}
.check_bk{background:#fef3f1}
*/
.shop_adress-top .adress_color{color:#888}
.newadress_add{height:30px;line-height:30px;background:#fafafa;margin-top:20px}
.newadress_add a{color:#8e4f1b;font-size:12px;padding-left:24px}
.newadress_add a:hover{text-decoration:underline}
/*新加地址*/
.shop_adress-add{margin-left:40px;margin-top:16px;font-size:0;display:none}
.shop_adress-add h4{font-size:14px;color:#666}
.shop_adress-Toadd{margin-top:16px}
.shop_adress-Toadd label,.shop_adress-Toadd input,.shop_adress-Toadd select,.shop_adress-Toadd span,.shop_adress-Toadd i{vertical-align:middle}
.shop_adress-Toadd label{width:70px;text-align:right;display:inline-block;font-size:12px;color:#333}
.shop_adress-Toadd input{padding:4px 0;border:1px solid #ccc;font-size:12px;color:#888;padding-left:10px}
.shop_adress-Toadd select{height:24px;width:100px}
.shop_adress-Toadd span{font-size:12px;color:#333;padding:0 6px}
.shop_adress-Toadd .adt_1{width:360px;}
.shop_adress-Toadd .oth_color{font-size:12px;color:#888}
.shop_adress-sp{margin:22px 0 22px 68px}
.shop_adress-sp label,.shop_adress-sp input{font-size:12px;color:#666;vertical-align:middle}
.shop_adress-sp label{padding-left:4px}
.shop_adress-save{overflow:hidden}
.shop_adress-save .bt1{background:#d6b870;height:30px;line-height:30px;text-align:center;color:#fff;font-size:14px;font-weight:bold;cursor:pointer}
.member_service .myorder_del-top-button{margin-top:30px}
.member_service .myorder_del-top-button a{font-weight:bold;font-size:14px}
.member_service-help{font-size:0;margin-top:35px}
.member_service-help span{font-size:12px;color:#666;margin-right:10px}
.member_service-help a{font-size:12px;color:#666;margin-right:10px}
.member_service-help a:hover{color:#c6a34d;text-decoration:underline}
.member_service-help .service-help-check{color:#c6a34d;text-decoration:underline}
/*售后服务单的页面*/
.member_service .member_ask-tittle a{color:#8e4f1b;margin-left:6px}
.member_service .member_ask-tittle a:hover{text-decoration:underline}
.member_service .member_ask-tittle p{font-size:0}
.member_service .member_ask-tittle{margin-bottom:10px}
.member_service .member_ask-tittle span,.member_service .member_ask-tittle a{font-size:12px}
.member_service-bill{margin-bottom:32px}
.member_service-bill p{font-size:14px;color:#333;font-weight:bold;line-height:24px}
.member_service-bill span{font-size:12px;color:#666;font-weight:100}
.member_service-bill em{color:#e94d4d}
.member_service-bill i{color:#333;font-weight:100;font-size:12px}
.member_service-bill-tittle{height:30px;line-height:30px}
.member_service-bill-tittle p{font-size:12px;color:#333}
.member_service-bill-tittle span{font-size:12px;color:#888}
.member_service-bill-first{border:1px solid #e6e6e6;border-bottom:none;margin-bottom:20px}
.member_service-bill-first td{padding:10px 0;border-bottom:1px solid #e6e6e6;font-size:12px;color:#333}
.member_service-bill-first .service-bill-first_td1{width:138px;border-right:1px solid #e6e6e6;background:#fafafa;text-align:right;padding-right:12px}
.member_service-bill-first .service-bill-first_td2{width:192px;border-right:1px solid #e6e6e6;text-align:left;padding-left:12px}
.member_service-bill-first .service-bill-first_td3{width:297px;text-align:left;padding-left:12px}
.member_service-bill-first .service-bill-first_td4{text-align:left;padding-left:12px}
.member_service-bill-sec{border:1px solid #e6e6e6;border-bottom:none;margin-bottom:40px}
.member_service-bill-sec td{padding:10px 0;border-bottom:1px solid #e6e6e6;text-align:center;font-size:12px}
.service-bill-sec_trfisrst td{background:#fafafa;color:#333}
.service-bill-sec_td1,.service-bill-sec_td2,.service-bill-sec_td3,.service-bill-sec_td4,.service-bill-sec_td5{border-right:1px solid #e6e6e6}
.service-bill-sec_td1{width:100px}
.service-bill-sec_td2{width:159px}
.service-bill-sec_td3{width:240px}
.service-bill-sec_td4{width:98px}
.service-bill-sec_td5{width:98px}
.service-bill-sec_td6{width:68px}
.service-bill-sec_trsec td{color:#666}
.service-bill-sec_trsec .service-bill-sec_td1{font-family:Arial, Helvetica, sans-serif}
/*退货办理的页面*/
.member_return-custre{margin-top:10px}
.member_return-all .service-table-td1{width:265px;font-size:0}
.member_return-all .service-table-td1 i{font-size:14px;color:#ff4c4c}
/*退货办理详情的页面*/
.service-handle-right{margin-left:76px}
.member_return-table{border:1px solid #e6e6e6;border-bottom:none;clear:both}
.member_return-table td{border-bottom:1px solid #e6e6e6;padding:10px 0;text-align:center;font-size:12px;color:#333}
.return-handle-td2{width:101px}
.return-handle-td3{width:130px}
.return-handle-td4{width:236px}
.return-handle-td2,.return-handle-td3{border-right:1px solid #e6e6e6}
.member_return-choose{font-size:0;margin:18px 0}
.member_return-choose label,.member_return-choose span{color:#333;font-size:12px;}
.member_return-choose select{height:24px}
.member_return-choose input,.member_return-choose select,.member_return-choose label,.member_return-choose span{vertical-align:middle}
.member_return-choose label{margin:0 14px 0 4px}
.member_return .member_service-help{margin-top:0;margin-bottom:35px}
.member_return .member_service-help span{color:#333}
.member_return .myorder_del-top-button a{font-size:14px;font-weight:bold}
/*个人信息的页面*/
.member_person-cort{overflow:hidden;padding:30px 0 0 30px;position:relative}
.member_person-cort_left span,.member_person-cort_left label{font-size:12px;color:#666;vertical-align:middle}
.member_person-cort_left select{vertical-align:middle;margin-right:10px}
.person-cort_left-write input{vertical-align:middle;}
.person-cort_left-word{font-size:0;height:26px;line-height:26px;margin-left:10px}
.person-cort_left-spword{margin-bottom:10px;margin-left:10px}
.member_person-cort a{font-size:12px;color:#8e4f1b;vertical-align:middle}
.member_person-cort a:hover{text-decoration:underline}
.person-cort_left-write{font-size:0;line-height:24px;margin-bottom:12px;overflow:hidden}
.person-cort_left-write span{display:inline-block;width:auto;text-align:right}
.write_text{padding:3px 0;border:1px solid #ccc;margin-right:8px}
.person-cort_left-write i{display:inline-block;background:url(../images/right_no.png) no-repeat;width:12px;color:#ff4c4c;vertical-align:middle;margin-left:6px}
.person-cort_left-write .writer_wrong{height:12px}
.person-cort_left-write em{font-size:12px;color:#ff4c4c;vertical-align:middle;margin-left:6px}
.person-cort_left-write .writer_right{background-position:1px -14px;height:12px}
.person-cort_left-write label{margin:0 6px}
.person-cort_left-write .write_vtop{vertical-align:top}
.member_person-cort_left textarea{width:366px;height:60px;border:1px solid #ccc;outline:none;overflow:auto;resize:none}
.small-text{width:50px}
.person-cort_left-button{font-weight:bold;color:#fff;font-size:14px;text-align:center;margin-left:72px;cursor:pointer}
.person-cort_left-button .bt1{height:30px;line-height:30px;margin:0}
.person-cort_left-button span{background:url(../images/all-right_w.png) no-repeat left center;padding-left:14px;font-size:14px;color:#fff}
.member_person-cort_right{margin:26px 60px 0 0;position:absolute;top:10px;right:0}
.member_person-cort_right p{text-align:center;line-height:26px;width:90px}
.member_person-cort_right a{display:block}
.member_person-cort_left input{padding-left:4px}
/*上传头像的页面*/
.member_person-upload{margin-top:24px;overflow:hidden;line-height:20px}
.member_person-upload span{font-size:12px;color:#666;margin-left:10px}
.person-upload-right{margin-left:68px}
.person-upload-button{width:91px;height:30px;background:#d6b870;color:#fff;font-size:14px;line-height:30px;text-align:center;font-weight:bold;margin:10px 0;cursor:pointer}
.person-upload-rightbt p{color:#666;font-size:12px;text-align:center;width:91px}
.person-upload-rightbt{position:absolute;top:100px;left:378px}
/*上传头像CSS*/
.member_person-upload{position:relative;}
.jcrop-handle{font-size:1px;width:7px !important;height:7px !important;border:1px #eee solid;background-color:#333;*width:9px;*height:9px;}
.jcrop-tracker{width:100%;height:100%;}
.jcrop-handle{border-color:#737373;background-color:#f2f2f2;}
.person-upload-right{position:absolute;left:310px;top:0;width:90px;height:90px;overflow:hidden;}
/*邮箱手机验证的页面*/
.member_person-all{margin-top:34px}
.member_person-custre span{font-size:12px;color:#666;vertical-align:middle}
.person-sp-button{margin-top:10px;margin-left:72px;cursor:pointer;height:30px;line-height:30px}
.member_password-find .person-sp-button span{font-size:14px;color:#fff;background:url(../images/all-right_w.png) no-repeat left center;padding-left:10px}
.member_person-yz{margin-left:110px;margin-bottom:64px}
.member_person-custre p{font-size:12px;color:#666;margin-top:10px}
.member_person-yz a{font-size:12px;vertical-align:middle;color:#8e4f1b;text-decoration:underline;padding-left:8px}
/*找回密码的页面*/
.member_password-find{margin:36px 0 0 90px}
.member_password-find span{font-size:12px;color:#666;vertical-align:middle}
.member_password-find a{font-size:12px;vertical-align:middle;color:#8e4f1b;text-decoration:underline;padding-left:8px}
.person-cort_left-password em{display:inline-block;width:44px;height:11px;border:1px solid #f2f2f2;padding:1px;font-size:12px;color:#fff;margin:0;background:#ccc;line-height:11px;text-align:center}
.person-cort_left-password .mb_red-color{background:#ff4c4c}
/*收货地址页面*/
.member_adress-top{margin-bottom:30px}
.member_adress-top td{padding:10px 0;color:#333;font-size:12px;text-align:center}
.member_adress-top label,.member_adress-top input,.member_adress-top a,.member_adress-top i{vertical-align:middle;font-size:12px}
.member_adress-top a:hover{text-decoration:underline}
.member_adress-top a{font-size:12px;color:#8e4f1b}
.member_adress-top i{color:#ccc}
.member_adress-trfirst td{background:#fafafa;border:1px solid #e6e6e6;border-left:none;border-right:none}
.member_adress-trfirst .member_adress-td1{border-left:1px solid #e6e6e6}
.member_adress-trfirst .member_adress-td5{border-right:1px solid #e6e6e6}
.member_adress-trsec td{border-bottom:1px dashed #dbdbdb}
.member_adress-td1{width:112px}
.member_adress-td2{width:288px}
.member_adress-td3{width:116px}
.member_adress-td4{width:86px}
.member_adress-td5{width:170px}
.member_adress-td1 label{color:#333}
.member_adress-addtop{background:#fef3f1;height:36px;line-height:30px;cursor:pointer}
.member_adress-addtop span{font-size:14px;color:#8e4f1b;font-weight:bold;margin-left:36px;vertical-align:middle}
.member_adress-addtop i{background:url(../images/icon02.png) no-repeat -31px -120px;vertical-align:middle;display:inline-block;width:9px;height:9px}
.member_adress-clicktop{background:#ffe7e3}
.member_adress-clicktop i{background:url(../images/icon02.png) no-repeat -5px -104px}
.shop_adress-Toadd .adress-Toadd_label{ vertical-align:top}
.shop_adress-Toadd textarea{width:370px;height:64px;outline:none;overflow:auto;resize:none;border:1px solid #ccc}
.shop_adress-Toadd em{color:#e60012;padding-right:4px}
.shop_adress-Toadd i{display:inline-block;background:url(../images/right_no.png) no-repeat;width:12px;vertical-align:middle;margin:0 4px 0 10px}
.shop_adress-Toadd .writer_wrong{height:12px}
.shop_adress-Toadd .writer_right{height:12px;background-position:1px -14px}
.writer_word{font-size:12px;vertical-align:middle}
.add_adress-save{margin-left:62px}
.add_adress-save .bt1{height:30px;line-height:30px;width:112px;text-align:center}
.add_adress-save span{background:url(../images/all-right_w.png) no-repeat left center;padding-left:10px}
.shop_adress-sp .add_adress-splabel{color:#8e4f1b}
/*系统消息的页面*/
.member_news-all{margin-top:22px}
.member_news-custre{border:1px solid #e6e6e6;border-bottom:none}
.member_news-custre td{padding:10px 0;text-align:center;border-bottom:1px solid #e6e6e6;font-size:12px;color:#333}
.news-custre-trfirst td{background:#fafafa}
.news-custre-td1{width:78px}
.news-custre-td2{width:78px}
.news-custre-td3{width:427px}
.news-custre-td4{width:182px}
.news-custre-trsec .news-custre-td4{color:#666}
.member_news-custre label{font-size:12px;color:#333;vertical-align:middle}
.member_news-custre input{vertical-align:middle}
.news-custre-trsec .news-custre-td1,.news-custre-trsec .news-custre-td2,.news-custre-trsec .news-custre-td3{border-right:1px solid #e6e6e6}
.news-custre-trsec .news-custre-td3{text-align:left;padding-left:10px}
.news-custre-trsec i{display:inline-block;background:url(../images/icon02.png) no-repeat -24px -101px;width:14px;height:13px}
/*看过的信息*/
.news-custre-trsec .reademail{background:url(../images/icon02.png) no-repeat -4px -137px;}
.member_news-custre a{color:#333;text-decoration:underline}
.news-custre-del{margin-top:30px;overflow:hidden}
.news-custre-del span{background:url(../images/all-right_y.png) no-repeat left center;padding-left:10px}
.news-custre-del .bt2{height:23px;line-height:23px;text-align:center;margin-left:0;padding:0 16px}
.news-custre-del .bt1{height:23px;line-height:23px;text-align:center;margin-left:0;padding:0 16px}
.news-custre-del .bt1 span{background:url(../images/all-right_w.png) no-repeat left center;padding-left:10px}
/*系统消息内文的页面*/
.member_news_top{overflow:hidden;font-size:0}
.member_news_top a{font-size:12px;color:#333;padding-left:8px;text-decoration:underline}
.member_news_cort{border:1px solid #e6e6e6;margin-top:6px}
.member_news_cort-top{background:#fafafa;border-bottom:1px solid #e6e6e6;padding:8px 0 8px 22px}
.member_news_cort-top h4{color:#333;font-size:14px;margin-bottom:10px}
.member_news_cort-top p{color:#666;font-size:12px}
.member_news_cort .sp_color{color:#333;font-size:14px;font-weight:bold}
.member_news_cort-center{padding:14px 0 10px 20px}
.member_news_cort-center p{line-height:24px;color:#333;font-size:12px}
.news_cort-center-word{padding-bottom:42px}
.member_news_cort .newsother_color{color:#666}
/*补开发票*/
.member_invoice-top{background:#fef3f1;border:1px solid #e6e6e6;padding:13px 33px 30px 33px;margin-top:15px}
.member_invoice-top i{background:url(../images/icon02.png) no-repeat -4px -116px;display:inline-block;width:12px;height:16px;}
.member_invoice-top p{font-size:12px;color:#666;line-height:28px}
.member_invoice-top a{color:#8e4f1b}
.member_invoice-top a:hover{text-decoration:underline}
.member_invoice-check{font-size:0;height:58px;line-height:58px;padding-left:24px}
.member_invoice-check label,.member_invoice-check input,.member_invoice-check i,.member_invoice-check span{vertical-align:middle}
.member_invoice-check label{font-size:12px;color:#333;margin-left:2px}
.member_invoice-check span{font-size:12px;color:#888}
.member_invoice-check i{cursor:pointer;display:inline-block;border:1px solid #ccc;width:148px;height:28px;text-align:center;line-height:28px;background:url(../images/button_rp.png) repeat-x;font-size:14px;color:#333;margin:0 24px}
.member_invoice-table{border:1px solid #e6e6e6;border-bottom:none}
.member_invoice-table td{padding:10px 0;border-bottom:1px solid #e6e6e6;text-align:center;font-size:12px;color:#333}
.invoice-table_trfirst td{background:#fafafa}
.invoice-table_td1{width:70px}
.invoice-table_td2{width:140px}
.invoice-table_td3{width:126px}
.invoice-table_td4{width:118px}
.invoice-table_td5{width:112px}
.invoice-table_td6{width:208px}
.invoice-table_trsec .invoice-table_td2{color:#ff4c4c;font-size:14px}
.member_invoice-table a{color:#8e4f1b;font-size:12px;text-decoration:underline}
.member_invoice-cort{margin-top:16px}
.invoice-cort-top{height:35px;line-height:35px;background:#fef3f1;padding-left:20px}
.invoice-cort-top span{font-size:14px;color:#666;vertical-align:middle;font-weight:bold}
.invoice-cort-top a{font-size:12px;color:#8e4f1b;vertical-align:middle}
.invoice-cort-word{padding:12px 0 10px 12px}
/*2014814去掉
.invoice-cort-new{margin-bottom:24px;font-size:0}
*/
.invoice-cort-new p{font-size:12px;color:#333;line-height:24px}
.invoice-cort-new label,.invoice-cort-new i,.invoice-cort-new select,.invoice-cort-new input{vertical-align:middle}
.invoice-cort-new i{font-size:12px;color:#e60012}
.invoice-cort-new label{font-size:12px;color:#333;margin:0 2px}
.invoice_write{margin-top:14px;overflow:hidden;font-size:0}
.invoice_write input{padding:3px 0;border:1px solid #ccc}
.invoice_write p{padding-left:8px}
.invoice_write .bt1{height:30px;line-height:30px}
.invoice-cort-new span{font-size:12px;color:#333;padding-right:10px}
.member_invoice-cort .shop_adress-add{margin:0}
.invoice-cort-qr{font-size:0;margin-top:24px;overflow:hidden}
.invoice-cort-qr label,.invoice-cort-qr input,.invoice-cort-qr a{vertical-align:middle;font-size:12px}
.invoice-cort-qr label{color:#333;margin-left:6px}
.invoice-cort-qr a{color:#8e4f1b}
.invoice-cort-qr a:hover{text-decoration:underline}
.invoice-cort-qr .bt1{margin-left:0;height:30px;line-height:30px;margin-top:18px}
.invoice-cort-qr span{background:url(../images/all-right_w.png) no-repeat left center;padding-left:10px}
/*发票记录*/
.member_invoice-record{margin-top:17px;border:1px solid #e6e6e6;border-bottom:none}
.member_invoice-record td{padding:10px 0;border-bottom:1px solid #e6e6e6;font-size:12px;color:#333;text-align:center}
.invoice-record-trfirst td{background:#fafafa}
.invoice-record-td1{width:118px}
.invoice-record-td2{width:124px}
.invoice-record-td3{width:94px}
.invoice-record-td4{width:114px}
.invoice-record-td5{width:124px}
.invoice-record-td6{width:94px}
.invoice-record-td7{width:102px}
.invoice-record-trsec .invoice-record-td1{color:#ff4c4c;font-size:14px}
.member_invoice-record a{font-size:12px;color:#8e4f1b;text-decoration:underline}
/*发票详情的页面*/
.member_invoice-detail{border:1px solid #e6e6e6}
.member_invoice-detail_top{border-bottom:1px solid #e6e6e6;height:38px;line-height:38px;background:#fef3f1;padding-left:16px;font-size:14px;color:#666;font-weight:bold}
.member_invoice-detail_cort{padding:0 19px}
/*详情展示图*/
.invoice-detail_cort-xq{margin-bottom:28px}
.member_invoice-detail_ul{overflow:hidden;margin:28px 0 0 92px}
.member_invoice-detail_ul li{float:left;background:url(../images/small_d.png) no-repeat 0 21px;padding-left:4px}
.invoice-detail_zt{height:24px;font-size:12px;width:160px;text-align:center;color:#666}
.invoice-detail_img{font-size:0;height:20px}
.invoice-detail_img i{display:inline-block;width:22px;height:5px;background:#e5e5e5;margin-left:6px}
.member_invoice-detail_ul .invoice-detail_ztli{width:10px;height:44px}
.invoice-detail_img .detail_img-spcolor{background:#ffb7bd}
.member_invoice-detail_ulword{overflow:hidden;margin-left:10px}
.member_invoice-detail_ulword li{float:left;text-align:center;width:173px}
.member_invoice-detail_ulword p{font-size:12px;color:#333;line-height:18px}
.member_invoice-detail_ulword span{font-size:12px;color:#888}
.member_invoice-detail h3{margin-bottom:10px}
.member_invoice-detail .invoice-cort-new{margin:0 0 20px 24px}
.member_invoice-price{border:1px solid #e6e6e6;border-bottom:none;margin:10px 0 80px 0}
.member_invoice-price td{border-bottom:1px solid #e6e6e6;font-size:12px;color:#333;text-align:center;padding:10px 0}
.invoice-price_trfirst td{background:#fafafa}
.invoice-price_td1{width:234px}
.invoice-price_td2{width:132px}
.invoice-price_td3{width:94px}
.invoice-price_td4{width:270px}
/*点击填写框改变颜色*/
.checkinput_color{background:#faffbd}
/*新加 打印*/
.member_all-nav-right .member_dy{background:url(../images/mb_dy.png) no-repeat;width:14px;height:14px;margin-right:4px}
/*新加 相关系列切换*/
.themb_cp{border-bottom:1px solid #dbdbdb;height:30px}
.themb_cp li{float:left;color:#666;font-size:14px;margin-right:30px;height:29px;cursor:pointer;font-weight:bold}
.themb_cp .themb_cp-click{border-bottom:2px solid #d6aa70}
/*纪念日*/
.member_jnrcor{margin-top:10px;overflow:hidden}
.member_jnrcor-show,.member_telshow{font-size:0;height:36px;line-height:36px}
.member_jnrcor-show span,.member_telshow span{font-size:12px;color:#333;margin-right:10px}
.member_jnrcor-show i,.member_telshow i{font-size:12px;color:#c6a34d;font-weight:bold;text-decoration:underline;margin-left:10px;cursor:pointer}
.member_jnrcor-bj,.member_telbj{font-size:0;height:36px;line-height:36px;display:none}
.member_jnrcor-bj span,.member_telbj span{font-size:12px}
.member_jnrcor-bj i,.member_telbj i{font-size:12px;color:#c6a34d;font-weight:bold;text-decoration:underline;margin-left:20px;cursor:pointer}
.member_jnr .bt1{height:30px;line-height:30px;margin-top:10px;margin-left:0}
.member_jnrtel{margin-top:20px}
.member_telbj input{padding:2px 0}
.allitmb-tel p{font-size:12px;color:#333}
/*我的预约页面20150420*/
.ollection-table-td2 p{font-family:"微软雅黑"}
.ollection-table-word span{display:inline-block;width:88px}
.ollection-table-td4 p{margin-top:8px;font-size:12px;color:#333}
/*弹窗*/
.pinkyy_tc{background:url(../images/whrite_bk.png) no-repeat;z-index:401;width:410px;height:190px;position:fixed;top:25%;left:50%;margin-left:-205px;font-family:"微软雅黑"}
.pinkyy_tc-top{text-align:center;font-size:18px;color:#c9a548;margin-top:14px}
.pinkyy_tc-top span{margin-left:24px}
.pinktc_close{margin-right:10px;cursor:pointer}
.pinkyy_tc-center{font-family:"宋体";font-size:14px;color:#888;text-align:center;margin:42px 0}
.pinkyy_tc-button{text-align:center;font-size:0}
.pinkyy_tc-button a{display:inline-block;font-size:16px;color:#d6b870;border:1px solid #d6b870;width:94px;height:34px;line-height:34px;text-align:center;margin:0 6px;cursor:pointer}
.pinkyy_tc-button .pink_sure{background:#d6b870;color:#fff}
/*专属空间 20150603*/
.member_kjcort{text-align:center;font-size:0;margin-top:30px}
.member_kjcort p{font-size:16px;color:#333;margin-bottom:20px}
.member_kjcort a,.member_kjcort span{display:inline-block;width:130px;height:30px;line-height:30px;text-align:center;font-size:14px;margin:0 6px;border:1px solid #c6a34d;color:#c6a34d}
.member_kjcort a:hover,.member_kjcort span:hover{background:#c6a34d;color:#fff}

View File

@@ -0,0 +1,46 @@
/*最新动态样式*/
.newesthing{background:#fff}
/*中间内容*/
.newesthing_cort{padding:0 40px 40px 40px}
/*切换的导航*/
.newesthing_cort-nav{border:1px solid #f4f4f4;background:#fafafa;height:33px}
.newesthing_cort-nav li{float:left;border:1px solid #f4f4f4;padding:0 42px;font-size:14px;color:#666;height:33px;line-height:33px;border-top:none;border-bottom:none;border-left:none;cursor:pointer}
.newesthing_cort-nav .newesthing_cort-check{border-top:2px solid #d6b870;background:#fff;margin-top:-1px}
/*页数*/
.newesthing_cort-parge{height:40px;line-height:40px;border-bottom:1px solid #f4f4f4;margin-top:20px}
.newesthing_cort-parge p span{color:#888;font-size:12px}
.newesthing_cort-parge p i{color:#ff3b4b}
.talktop_left{font-size:14px;color:#666;font-weight:bold}
.talktop_left span,.talktop_left em{font-weight:100}
.talktop_left i{color:#8e4f1b;font-weight:bold;padding:0 8px}
.talktop_left .next_page{display:inline-block;width:58px;height:23px;text-align:center;line-height:23px;border:1px solid #dbdbdb;font-size:12px;cursor:pointer}
/*各种活动*/
.newesthing_cort-activities{overflow:hidden;margin-bottom:24px}
/*标题*/
.newesthing_cort-activities-top{overflow:hidden;margin-bottom:6px}
.newesthing_cort-activities-tittle{font-size:0;margin-top:18px}
.newesthing_cort-activities-tittle p{line-height:16px}
.newesthing_cort-activities-tittle strong,.newesthing_cort-activities-tittle em{font-size:16px;color:#666}
.newesthing_cort-activities-tittle span{font-size:12px;color:#888}
.newesthing_cort-activities-tittle i{font-size:12px;color:#ff3b4b}
.line-padd{padding:0 6px}
.atittle-right{margin-top:38px}
/*图片*/
.newesthing_cort-activities-img a{display:block}
/*文字*/
.newesthing_cort-activities-word{margin-top:8px}
.newesthing_cort-activities-word p{font-size:12px;color:#888;line-height:24px;text-align:justify}
/*分页*/
.newesthing_cort{overflow:hidden}
.paging_all{position:relative;left:50%;float:left;-moz-user-select: none; /*火狐*/-webkit-user-select: none; /*webkit浏览器*/-ms-user-select: none; /*IE10*/-khtml-user-select: none; /*早期浏览器*/user-select: none;}
.paging{height:40px}
.paging li{float:left;border:1px solid #ccc;border-right-width:0px; width:36px;height:38px;line-height:38px;text-align:center;font-family:"Arial";font-size:14px;color:#cd505a;background:#fff;cursor:pointer}
.paging .pli{float:left;border:1px solid #ccc;padding:0 13px;border-right-width:0px;width:auto;height:38px;line-height:38px;text-align:center;font-family:"Arial";font-size:14px;color:#cd505a;background:#fff;cursor:pointer}
.paging .pli2{float:left;border:1px solid #ccc;padding:0 13px;width:auto;height:38px;line-height:38px;text-align:center;font-family:"Arial";font-size:14px;color:#cd505a;background:#fff;cursor:pointer}
.paging .pag_gray{background:#efefef;color:#666}
.paging .mouseover{background:#efefef;text-decoration:underline;}
.pag_p{line-height:40px;font-size:14px;color:#666;padding-left:8px}
.pag_txt{width:34px;margin-right:6px}
.pag_bt{width:48px;background:#efefef;border:1px solid #ccc;height:18px;cursor:pointer}
.paging_all-cort{position:relative;right:50%}

View File

@@ -0,0 +1,450 @@
/*相同公用的*/
*{margin:0;padding:0}
li,ul{list-style:none;}
a{text-decoration:none}
input{outline:none;padding-left:4px;}
input::-ms-clear{display:none;}
img{border:0 none;vertical-align:middle;}
em,i{font-style:normal}
.fl{float:left;display:inline;}
.fr{float:right;display:inline}
/*清除浮动*/
.fix:after{content:" ";display:block;visibility:hidden;clear:both;height:0;line-height:0;}
.fix{*zoom:1;}
/*980宽度*/
.cmain{width:980px;margin:0 auto;position:relative}
/*定位背景*/
.icon{background:url(../images/icon.png) no-repeat}
/*宽度自适应*/
.nav,.banner,.all-thing,.footer,.friend-href,.ulnav_tab,.right_tabul,.cort,.navbt_bk,.loveit_center{width:100%;min-width:980px}
.all-thing{background:#fef3f1;overflow:hidden}
/*头部*/
.headtop{height:92px;font-family:"宋体"}
/*头部左边*/
.top-left{font-size:14px;color:#888;margin-top:24px;cursor:default}
.top-left a{display:inline-block}
.top-left span{vertical-align:middle;margin-left:20px}
/*头部右边*/
.top-right{margin-top:10px}
.tright-ul li,.langruge-ul li{float:left}
.tright-ul{height:30px;margin-bottom:4px}
.tright-ul a,.tright-ul em{font-size:12px;color:#888;margin-left:8px;vertical-align:middle}
.tright-ul a:hover{color:#8e4f1b;text-decoration:underline}
.tright-ul i{font-size:12px;color:#8e4f1b}
.shooping{background-position:0 0;display:inline-block;width:15px;height:14px;vertical-align:middle}
.langruge-ul a,.langruge-ul em{font-size:12px;color:#888;margin-left:2px;vertical-align:middle}
/*搜索条*/
.search{width:248px;height:30px;border:1px solid #ccc;clear:both;position:relative;float:right}
.txt1{width:236px;height:18px;border:0;line-height:18px;font-size:12px;color:#666;padding-left:12px;outline:none;margin-top:6px}
.toser{position:absolute;width:16px;height:16px;background-position:-54px 0px;top:6px;right:10px;cursor:pointer}
.search2{width:150px;height:24px;border:1px solid #ccc;clear:both;position:relative;margin-top:13px}
.txt2{width:110px;height:14px;border:0;line-height:14px;font-size:12px;color:#666;padding-left:12px;outline:none;position:absolute;top:5px;left:4px}
.toser2{position:absolute;width:16px;height:16px;background-position:-54px 0px;top:3px;right:10px;cursor:pointer}
/*导航条*/
.nav{background:#ffdede;height:34px;z-index:361;position:relative;}
/*导航条左边*/
.nav-ul li{float:left;height:33px;line-height:34px;padding:0 28px;position:relative;border:1px solid transparent;border-top:none}
.nav-ul a{font-size:14px;color:#8e4f1b;display:block}
.nav-ul .hover_li,.nav-right .hover_li{background:url(../images/A_hover.jpg) repeat-x;border:1px solid #f2e5e5;border-top:none}
/*导航条右边*/
.nav-right li{float:left;height:33px;line-height:34px;padding:0 30px;border:1px solid transparent;border-top:none;font-size:0}
.nav-right a,.nav-right em{font-size:14px;color:#8e4f1b;vertical-align:middle}
.nav-right em{background:url(../images/all-right.png) no-repeat left center;width:5px;height:9px;display:inline-block;margin-right:8px}
.lipos{position:relative}
.lipos i{position:absolute;display:block;width:25px;height:15px;background-position:-17px 0px;top:-6px;right:20px}
/*鼠标移动出现的下拉*/
.nav-div,.theright_div{width:391px;margin:0 auto;position:absolute;top:33px;display:none;}
.navdiv_top{background:url(../images/bk_all.png) repeat-y;overflow:hidden;padding:16px 0 22px 0;}
.navdiv_bottom{background:url(../images/bk_border.png) no-repeat;height:6px;}
/*.nav-div,.theright_div{padding:16px 0 16px 0;width:400px;margin:0 auto;overflow:hidden;position:absolute;background-color:#FFFFFF;top:33px;z-index:361;border:1px solid #f2e5e5;border-top:none;display:none}*/
.nav-div{left:-4px;}
.nav-ul .nav-div{line-height:14px}
.navdiv-left{float:left;width:170px;padding-left:40px;padding-top:7px}
.left-border{border-right:1px solid #efefef;}
.navdiv-left h3{font-size:12px;color:#c9a548;font-weight:100}
.navdiv-left img{margin:12px 0}
.navdiv-left p{font-size:12px;width:156px;text-align:justify;color:#666;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}
.more_cp{margin-top:20px}
.more_cp a{font-size:12px;color:#888;font-weight:bold}
.navdiv-right{float:left;border-right:1px solid #efefef;padding:0 56px 10px 30px;}
.navdiv-right_jew{float:left;padding:0 66px 10px 30px;}
.navdiv-right_jew p{line-height:30px;font-size:12px;color:#888;font-weight:bold}
.navdiv-right_jew a{color:#666;font-weight:100}
.navdiv-right_jew a:hover{color:#8e4f1b;text-decoration:underline}
.navdiv-right p{line-height:30px;font-size:12px;color:#888;font-weight:bold}
.navdiv-right a{color:#666;font-weight:100;font-family:arial}
.navdiv-right a:hover{color:#8e4f1b;text-decoration:underline}
.special_right{padding:2px 0 30px 30px;}
.theright_div{right:-4px}
.nav-right .theright_div{line-height:30px}
.navright_div{color:#666;margin-left:18px}
.navright_div h3{font-size:14px;font-weight:100;margin-top:30px;}
.navright_div p{font-size:12px;width:178px;line-height:22px}
.navdiv-left_ph{float:left;width:170px;border-left:1px solid #efefef;padding-left:40px;padding-top:7px}
.navdiv-left_ph h3{font-size:12px;color:#c9a548;font-weight:100}
.navdiv-left_ph img{margin:12px 0}
.navdiv-left_ph p{font-size:12px;width:156px;text-align:justify;color:#666;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}
.navdiv-right_ph{float:left;padding:0 66px 10px 30px;}
.navdiv-right_ph p{line-height:30px;font-size:12px;color:#888;font-weight:bold}
.navdiv-right_ph a{color:#666;font-weight:100}
.navdiv-right_ph a:hover{color:#8e4f1b;text-decoration:underline}
/*导航下的阴影*/
.navbt_bk{background:url(../images/nav_rp.png) repeat-x;height:5px;position:absolute;z-index:10}
/*底部*/
.footer{background:#fff;position:relative}
.Service_ul{overflow:hidden;cursor:default;clear:both;padding:16px 0 10px 0}
.Service_ul li{float:left;margin:0 39px}
.Service_ul-img{background:url(../images/foot-servise.png) no-repeat;width:60px;height:60px}
.Service_ul-img_hover{background:url(../images/foot-servise_hover.png) no-repeat}
.Service_ul-img a{display:block;height:100%}
.Service_ul p{font-family:"微软雅黑";text-align:center;font-size:14px;color:#888;line-height:28px}
.Service_ulp_hover{text-decoration:underline}
.Service_ul .bk_2{background-position:-60px 0}
.Service_ul .bk_3{background-position:-120px 0}
.Service_ul .bk_4{background-position:-180px 0}
.Service_ul .bk_5{background-position:-240px 0}
.Service_ul .bk_6{background-position:-300px 0}
.Service_ul .bk_7{background-position:-360px 0}
/*服务条款*/
.service{border-top:1px solid #ccc;border-bottom:1px solid #ccc;padding:20px 0 30px 0;overflow:hidden;font-size:12px}
.Service_know{overflow:hidden;font-family:"宋体";margin-right:30px}
.Service_know li{float:left;margin-left:48px}
.Service_know h3{color:#333;font-size:12px;margin-bottom:8px;cursor:default}
.Service_know p{line-height:24px}
.Service_know a{color:#888;font-size:12px}
.Service_know a:hover{color:#8e4f1b;text-decoration:underline}
/*中间联系方式*/
.know_right p{color:#666;cursor:default;font-size:15px;font-family:"微软雅黑"}
.theshare{margin-top:10px}
.theshare span{font-size:12px;vertical-align:middle}
.theshare a{display:inline-block;background:url(../images/share.png) no-repeat;height:22px;vertical-align:middle;margin-left:10px}
.theshare .wb{width:26px}
.theshare .wb:hover{background-position:0 -22px}
.theshare .rr{width:24px;background-position:-28px 0}
.theshare .rr:hover{background-position:-28px -22px}
.theshare .qzone{width:26px;background-position:-55px 0}
.theshare .qzone:hover{background-position:-55px -22px}
/*二维码*/
.erwei{margin:0 42px 0 30px}
/*条文*/
.tw-foot{text-align:center;padding:20px 0;cursor:default}
.tw-foot p{font-size:12px;font-family:"微软雅黑";color:#888;line-height:22px}
/*友情链接*/
.friend-href{background:#fef3f1}
.the_href{text-align:center;padding:30px 0;width:834px;margin:0 auto;font-family:"微软雅黑";color:#ccc;font-size:12px;cursor:default}
.the_href a{color:#ccc;padding-right:12px}
/*中间内容*/
.cort{background:#fef3f1;padding-bottom:58px}
/*面包屑*/
.zbk_top{height:40px;line-height:40px;font-size:12px;color:#888;cursor:default;padding-left:20px;clear:both}
.zbk_top em{font-size:16px;color:#8e4f1b;font-weight:bold}
.spalid em{font-size:12px;color:#888;font-weight:100}
.zbk_top i{font-size:16px;color:#666}
.zbk_top a{color:#888}
/*按钮*/
.button{overflow:hidden;margin:0 auto;width:350px;margin-top:20px}
.to_more a{color:#c6a34d}
.bt1,.bt2{padding:0 22px;float:left;cursor:pointer;font-weight:bold;margin-left:8px;font-size:14px}
.bt3{height:30px;line-height:30px;padding:0 22px;float:left;cursor:default;font-weight:bold;border:1px solid #737373;border-radius:5px;margin: 2px 0 0 43px;font-size:14px;color:#8b8b8b;}
.bt1 span,.bt2 span,.bt2 a,.bt1 a{padding-left:14px}
.bt2{background:#fff;color:#c6a34d;border:1px solid #c9a548;height:34px;line-height:34px}
.bt1{background:#d6b870;color:#fff;height:36px;line-height:36px;}
.bt1 span{background:url(../images/all-right_w.png) no-repeat left center}
.bt1 a{color:#ffffff;background:url(../images/all-right_w.png) no-repeat left center}
.bt2 span,.bt2 a{background:url(../images/all-right_y.png) no-repeat left center;color:#c6a34d}
/*首页按钮*/
.sp_width .button{margin-left:10px}
/*购买的款式ul*/
.buyit{overflow:hidden;margin-left:-12px;padding-bottom:26px;margin-top:12px}
.buyit li{float:left;width:236px;margin-left:12px}
.by_top{background:#fff;width:236px;height:236px;text-align:center;position:relative}
.by_top a{display:block;position:absolute;top:0;left:0;width:236px;height:236px;z-index:12;background:transparent;cursor:pointer;background:#fff;opacity:0.01;filter:alpha(opacity=0.01)}
/*两个角度的照片*/
.bything-one{z-index:10}
.bything-one,.bything-two{position:absolute;top:0;left:0}
.bything-two{opacity:0;filter:alpha(opacity=0)}
.the_newlogo{background:url(../images/new.jpg) no-repeat;width:37px;height:11px;position:absolute;top:34px;left:12px;z-index:14}
.by_center{background:url(../images/ring_bottom.png) no-repeat;width:236px;height:12px}
.by_bottom{text-align:center;margin:2px 0 16px 0 ;cursor:default}
.by_bottom p{color:#666;font-size:12px;line-height:22px;font-family:"微软雅黑"}
.by_bottom span{color:#bd5a5a;font-size:14px;font-weight:bold}
.by_bottom i{color:#666;font-size:12px;padding-left:8px}
/*推荐款式*/
.hot-ks{height:44px;line-height:53px;cursor:pointer;color:#666}
.hot-ks a,.hot-ks span{font-size:16px}
.hot-ks a{color:#666;padding-right:8px;background:url(../images/all-right.png) no-repeat left center;padding-left:12px}
.choose-ks .other_color{color:#8e4f1b}
.choose-ks .other_color em{background-position:-87px 0px}
.other_color{color:#8e4f1b}
.ota_color{color:#8e4f1b}
.hot-ks .other_color em{background-position:-87px 0;}
.hot-ks .ota_color em{background-position:-45px -27px;}
.choose-ks .ota_color{color:#8e4f1b}
.choose-ks .ota_color em{background-position:-45px -27px;}
.hot-ks i{vertical-align:middle}
.hot-ks em{background:url(../images/icon.png) no-repeat;width:7px;height:7px;display:inline-block;vertical-align:middle;margin:0 6px}
.hot-ks,.choose-ks .choose_color{background-position:-87px 0}
.hot-ks em{background-position:-87px -12px}
/*遮罩*/
.backall{background:#000;opacity:0.5;filter:alpha(opacity=50);position:absolute;height:4000px;width:100%;z-index:400;display:none;top:0;left:0}
/*验证身份框*/
.yz_password{position:fixed;top:150px;left:50%;background:#fff;width:550px;margin-left:-275px;z-index:410;display:none}
.yzp_border{overflow:hidden;width:500px;margin:0 auto;padding:26px 0}
.yzpb_top,.yzpb_bottom{background:url(../images/sm_boreder.png) no-repeat;width:500px;height:50px}
.yzpb_bottom{background-position:0 -50px}
.yzpb_cort{background:url(../images/sm_repeat.png) repeat-y;width:500px;text-align:center;overflow:hidden}
.yzpb_cort h3{font-size:30px;color:#fe929b}
.yzpb_cort h4{font-size:18px;color:#666;font-family:"微软雅黑";font-weight:100;margin:14px 0}
.yz_tittle{text-align:center;font-size:0}
.yz_tittle i{display:inline-block;background:url(../images/line1.jpg) no-repeat left center;width:50px;height:1px}
.yz_tittle span{font-size:14px;color:#888;padding:0 16px;display:inline-block;vertical-align:middle}
.yz_begin p{margin-top:16px;font-size:0}
.bzy_3{padding:7px 0;border:1px solid #ccc;margin-right:6px;width:170px;padding-left:4px;font-size:14px;color:#888}
.secl{height:32px;border:1px solid #ccc}
.bzy_4{padding:7px 0;border:1px solid #ccc;width:265px;padding-left:4px;font-size:14px;color:#888}
.ts_wrong{border:1px solid #dbc89e;background:#fff7d2;height:21px;line-height:21px;width:269px;margin:0 auto;margin-top:2px}
.ts_wrong span{background:url(../images/bc.png) no-repeat left center;display:inline-block;color:#ff4040;font-size:14px;padding-left:24px;margin-left:10px}
.ts_button{width:269px;margin:0 auto;margin-top:8px;overflow:hidden}
.ts_button .bt2{width:266px;padding:0;margin:0}
/*关闭按钮*/
.yz_close{background:url(../images/close.png) no-repeat;width:16px;height:16px;position:absolute;right:16px;top:16px;cursor:pointer}
.toyz_nobuy p,.toyz_buyit p{line-height:24px;color:#888;font-size:14px}
.toyz_nobuy,.toyz_buyit{display:none}
.other_buy{overflow:hidden;margin:0 auto;width:320px;margin-top:30px}
.other_buy .bt2{width:148px;padding:0}
/*注册登录弹出框*/
.tck_zcdl{position:fixed;width:430px;margin-left:-215px;left:50%;background:#fff;top:150px;z-index:410}
.tck_zcdl-all{padding:32px 0;width:320px;margin:0 auto}
.tck_dl{display:none}
/*选项*/
.tck_zcdl-top{overflow:hidden;margin-bottom:18px}
.tck_zcdl-ul{height:30px}
.tck_zcdl-ul li{float:left;width:99px;text-align:center;height:30px;line-height:30px;font-size:14px;color:#888;cursor:pointer}
.tck_zcdl-ul .zcdl_sp{border:1px solid #ccc;border-bottom:1px solid #fff;height:29px;font-weight:bold;color:#666}
.zcdl_line{border-bottom:1px solid #ccc}
/*登录*/
.the_input{border:1px solid #ccc;height:38px;width:298px;margin-top:10px;position:relative}
.al_Input{color:#a6a6a6;font-size:14px;padding:10px 0;border:none;padding-left:44px;width:248px}
.the_input span{display:inline-block;background:url(../images/mb.png) no-repeat;width:17px;height:16px;position:absolute;left:11px}
.member{top:12px}
.the_input .password{top:11px;background-position:0 -16px}
.the_input i{position:absolute;color:#a6a6a6;font-size:14px;left:44px;top:12px}
/*验证码*/
.yz_input{margin-top:10px;font-size:0}
.yzm_input{padding:11px 0;padding-left:14px;font-size:14px;color:#a6a6a6;width:140px;border:1px solid #ccc;vertical-align:middle;margin-right:10px}
.yz_input a{color:#0057a1;font-size:12px;vertical-align:middle;margin-left:10px}
/*其他选项*/
.other_input{margin-top:10px;font-size:0;overflow:hidden;width:300px}
.other_input input{vertical-align:middle}
.other_input label{vertical-align:middle;font-size:12px;color:#888;margin-left:8px}
.other_input a{font-size:12px;color:#888}
.tother_input{margin-top:10px}
.tother_input .btton{background:#d6b870;color:#fff;height:36px;line-height:36px;width:300px;cursor:pointer;font-weight:bold;font-size:14px;text-align:center}
.tother_input span{background:url(../images/all-right_w.png) no-repeat left center;padding-left:14px}
.tother_input .tother_hover{background:#caa752}
/*其他合作*/
.other_hz{background:url(../images/line.jpg) no-repeat top;width:300px;margin-top:20px;font-size:0}
.other_hz p{font-size:12px;color:#b2b2b2;padding-top:10px;line-height:34px}
.other_hz span{vertical-align:middle}
.other_hz a{display:inline-block;width:25px;height:24px;vertical-align:middle;margin-left:16px}
.oth_qq{background:url(../images/QQ.jpg) no-repeat}
.oth_wb{background:url(../images/wb.jpg) no-repeat}
/*注册*/
.zc_input{border:1px solid #ccc;height:38px;width:298px;margin-top:10px;position:relative}
.z_Input{color:#a6a6a6;font-size:14px;padding:10px 0;border:none;padding-left:82px;width:210px}
.zc_input span,.zc_input i{font-size:14px;position:absolute;top:11px}
.zc_input span{left:12px;color:#666}
.zc_input i{left:70px;color:#a6a6a6}
.zc_input .sp_pss{left:86px}
.other_input span{font-size:12px;vertical-align:middle;color:#888;padding-left:2px}
.other_input .to_zc{vertical-align:middle;color:#8e4f1b}
/*报错*/
.tc_wrong{border:1px solid #dbc89e;background:#fff7d2;height:21px;line-height:21px;width:298px;margin-top:5px}
.tc_wrong span{background:url(../images/bc.png) no-repeat left center;display:inline-block;color:#ff4040;font-size:12px;padding-left:24px;margin-left:10px}
.yzabout_wrong{border:2px solid #ffaeb4}
/*选中变颜色*/
.clickit_bk{background:#faffbd}
.clickit_bk .z_Input{background:#faffbd}
.clickit_bk .al_Input{background:#faffbd}
/*按钮1颜色*/
.hover_button{background:#caa752}
/*按钮2颜色*/
.hover_bt2 span,.hover_bt2 a{background:url(../images/all-right_w.png) no-repeat left center;color:#fff}
.hover_bt2{background:#caa752;color:#fff}
/*底部*/
.Ffloat_kf{position:fixed;right:0;top: 30%;z-index:9999;}
.Ffloat_kf a{cursor:pointer;display:block}
.Ffloat_kf .fkf_top{width:77px;padding-left:15px;margin-bottom:4px}
.fkf_bottom img{display:block}
.Ffloat_kf .fksp_a{position:relative}
#bridgehead{position:absolute;top:0}
.qq_hover{background:url(../images/3.gif) no-repeat;width:75px;height:75px}
.qq_hover:hover{background:url(../images/hover.jpg) no-repeat}
.link{width:980px;overflow:hidden;font-family:"微软雅黑";margin:0 auto;line-height:35px;padding:20px 0}
.link span{float:left; color:#888888;font-size:12px}
.news_tc{background:url(../images/invitebg.jpg) no-repeat;width:310px;height:144px;position:fixed;left:50%;margin-left:-155px;top:320px;z-index:99999;display:none}
.newtc_left{background:url(../images/invitehead.jpg) no-repeat;width:98px;height:128px;float:left}
.newtc_right{float:left;margin-top:108px;padding-left:40px;position:relative}
.sszs,.xzzx{display:inline-block;width:80px;height:24px;text-align:center; font-size:12px; line-height:24px;border-radius:5px}
.sszs{background:#dedede;cursor:default;border:1px solid #bbbbbb;color:#6a6a6a}
.xzzx{background:#a06c44;height:26px;line-height:26px}
.xzzx a{color:#000;font-weight:200}
.tocclose{position:absolute;right:8px;top:-96px;background:url(../images/ttcloese.png) no-repeat;width:10px;height:10px}
.atc_cort p{font-size: 14px;line-height: 28px;margin-bottom: 14px;}
.linkorther_know{width:920px;overflow:hidden;height:35px}
.orther_know{overflow:hidden;font-family:"微软雅黑";margin:0 auto;height:auto;float:left}
.orther_know li{float:left;padding-left:6px;margin-right:10px;margin-bottom:0}
.orther_know li p{line-height:35px;height:35px}
.orther_know li a{color:#888;font-size:12px}
.LeftTitle{font-size:14px;font-weight:bold;color:#fff;text-decoration:none;background-image:url(../images/Propose_leftbg.jpg);height:35px;width:230px;line-height:35px;text-align:center}
.mask{position:absolute;top:0;background-color:#777;z-index:9999;left:0;opacity:0.5;-moz-opacity:0.5;filter:alpha(opacity=50)}
.model{position:absolute;z-index:1003;display:none}.model a{color:#666}
.Prompt{padding:2px;border:1px solid #c18086;background-color:#FFF}
.Prompt #Prompt_tit{line-height:30px;height:30px;width:510px;font-size:15px;font-weight:bold;color:#fff;text-decoration:none;background-color:#c18086;padding-left:10px}
.Prompt #Prompt_tit span{float:right;padding:10px}
.Prompt #Prompt_cc{padding:20px 0;font-size:14px;color:#b25e6e;font-weight:bold;text-align:center}
.Prompt .Con_err{color:#666;font-size:13px;line-height:22px}
.Prompt .Con_err span{color:#b35f6f}
.Prompt .Con_err input{padding:3px;border:1px solid #8d8d8d}
.Prompt .Con_err a{color:#666}
.Prompt .Con_err a:hover{color:#666}
.Cart_line a{color:#666}
.Cart_line td{padding:5px}
.modelsever{z-index:9999;display:block;position:fixed;background-color:#fff;width:745px;top:80px;margin-left:-372.5px;left:50%}
.cs_top{height:40px;width:745px;margin:0 auto}
.cs_top .cs_topcenter{width:700px;font-size:12px;color:#7d7d7d;height:40px;line-height:normal;border-bottom:1px solid #c2967e;margin:0 auto}.cs_content{height:auto;width:700px;margin:0 auto;min-height:150px;padding-bottom:10px}
.cs_bottom{height:50px;width:745px;border-top:3px solid #ffe1d0;line-height:50px;text-align:center;margin:0 auto;font-size:14px}
.cs_bottom a{color:#c4865d;text-decoration:underline;font-family:"宋体"}
.cs_content ul{width:700px;margin:0 auto;height:50px;font-size:16px}
.cs_content ul li{font-size:14px;float:left;display:block;width:80px;line-height:50px;height:50px;text-align:center;border:0;color:#7d7d7d;cursor:pointer}
.cs_content .line{width:10px;font-size:14px;font-weight:bold;text-align:center}
.clear{clear:both}
.content_txt{display:none;line-height:30px;font-size:14px;color:#999;font-family:"宋体";padding-bottom:5px}
.content_title{font-family:"宋体";color:#000;font-size:14px;line-height:30px;cursor:pointer}
.cs_content .box1{display:block}
.cs_content .box2{display:none}
.cs_content .box3{display:none}
.cs_content .box4{display:none}
.cs_content .box5{display:none}
.cs_content .box6{display:none}
.cs_content .box7{display:none}
/*首页产品超链接*/
.by_bottom a{color:#666;font-size:12px}
.n_box{ padding:0px; width:auto; height:auto;}
.box_content{ margin:0 auto; width:980px;}
.n_box .left_box{ width:720px; height:auto; float:left;background-color: white}
.left_line{width:720px; height:auto;border:solid #e7e7e7 1px; background-color:#fff; }
.right_box1{ width:250px; height:auto; float:left; margin-left:10px; }
.left_top{ margin-left:25px;margin-right:25px; margin-bottom:20px; text-align:center; height:auto; clear:both;}
.left_top .left_li{height:50px; line-height:50px; }
.left_li ul li{ margin-left:10px; width:auto; float:left; color:#999999; font-size:12px; list-style-type:none;}
.content{margin-left:25px;margin-right:25px;width:auto; height:auto; background-color:#fff; overflow:hidden; clear:both; font-size:14px; line-height:28px; padding-bottom:20px; }
.left_top .left_1{ border:solid #e7e7e7 1px; height:100px;
background:url(../images/03.jpg) no-repeat top left;
text-align:left; padding:20px;}
.left_nav{ margin-left:20px; line-height:30px; height:30px; }
.left_1 .left_text{font-size:12px; line-height:24px; margin-bottom:20px;}
.left_1 ul{ height:35px; font-size:12px; color:#999999; list-style-type:none; display:inline;}
.left_1 ul li{ width: auto; margin-left:10px; float:left;}
.left_1.li1{width: auto;float:left; display:inline;}
/*验证身份*/
.love_doit2{position:relative;width:980px;margin:0 auto}
.loverit_word2{background:url(../images/yz_ts.png) no-repeat;width:690px;height:33px;position:absolute;top:-20px;left:50%;margin-left:-345px;z-index:5;font-size:12px;color:#666;text-align:center;line-height:24px;display:none}
.loverit_write2{line-height:50px;height:50px;font-size:0;padding-left:30px;}
.loverit_write2 label,.loverit_write input{vertical-align:middle;}
.loverit_write2 label{font-size:14px;color:#8e6039;margin:0 15px 0 36px}
.loverit_write2 .lit_txt{width:173px;height:15px;border:1px solid #cec9c5;padding:3px 0;vertical-align:middle}
.loverit_write2 span{display:inline-block;width:68px;height:25px;background:url(../images/cxit.jpg) no-repeat;vertical-align:middle;margin-left:30px;cursor:pointer}
.loverit_write2 .cxit_click{background:url(../images/cxit_click.jpg) no-repeat}
.loverit_write2 .lit_wrong{border:2px solid #ff7272}
/*报错信息*/
.loverit_wrong2{background:url(../images/wrong.png) no-repeat;width:210px;height:33px;position:absolute;top:-20px;left:50%;margin-left:135px;z-index:5;text-align:center;line-height:24px;display:none;}
.loverit_wrong2 p{color:#ff4040;background:url(../images/wr_left.png) no-repeat left center;font-size:12px;margin-left:10px;padding-left:10px}
.loveit_center{background:url(../images/bt-repeat.jpg) repeat-x;height:50px}
/*悬挂客服*/
.float_big{position:fixed;bottom:250px;right:2px;width:77px;z-index:100}
.floatbig_hide{background:url(../images/sx.jpg) no-repeat right;width:15px;height:15px;margin-bottom:1px;cursor:pointer}
.floatbig_hide-hover{background:url(../images/sx_hover.jpg) no-repeat right}
.floatbig_center{clear:both}
.floatbig_center-kf{background:url(../images/kfu.gif) no-repeat;width:77px;height:80px;margin-bottom:1px;cursor:pointer}
.floatbig_center-kfhover{background:url(../images/kfu_hover.jpg) no-repeat}
.floatbig_center-zx{margin-bottom:9px}
.floatbig_center-zx a{display:block;background:url(../images/dzzx.jpg) no-repeat;width:77px;height:37px}
.floatbig_center-zx a:hover{background:url(../images/dzzx_hover.jpg) no-repeat}
.float_small{position:fixed;bottom:250px;right:-77px;width:77px}
.floatbig_show{background:url(../images/fd.jpg) no-repeat right;width:15px;height:15px;margin-bottom:1px;cursor:pointer}
.floatbig_show-hover{background:url(../images/fd_hover.jpg) no-repeat right}
.floatsmall_center-kf{background:url(../images/sxkf.jpg) no-repeat;width:29px;height:55px;margin-bottom:1px;cursor:pointer}
.floatsmall_center-kfhover{background:url(../images/sxkf_hover.jpg) no-repeat}
.floatsmall_center-zx{margin-bottom:7px;clear:both}
.floatsmall_center-zx a{display:block;background:url(../images/sxzx.jpg) no-repeat;width:29px;height:55px}
.floatsmall_center-zx a:hover{background:url(../images/sxzx_hover.jpg) no-repeat}
.floatsmall_erwei{clear:both}
.floatsmall_erwei a{display:block;background:url(../images/ew_sx.jpg) no-repeat;width:29px;height:29px}
.floatsmall_erwei a:hover{background:url(../images/ew.jpg) no-repeat;width:77px;height:77px}
/*返回顶部*/
.comeback{position:fixed;bottom:50px;background:url(../images/fhdb.jpg) no-repeat;width:45px;height:45px;cursor:pointer;display:none;left:50%;margin-left:530px}
.comeback_hover{background:url(../images/fhdb_hover.jpg) no-repeat;}
/*导航下拉的线条*/
.noborder{border:none}
.haveborder{border-left:1px solid #efefef}

View File

@@ -0,0 +1,429 @@
/*相同公用的*/
*{margin:0;padding:0}
li,ul{list-style:none;}
a{text-decoration:none}
input{outline:none;padding-left:4px}
input::-ms-clear{display:none;}
img{border:0 none;vertical-align:middle;}
em,i{font-style:normal}
.fl{float:left;display:inline;}
.fr{float:right;display:inline}
/*清除浮动*/
.fix:after{content:" ";display:block;visibility:hidden;clear:both;height:0;line-height:0;}
.fix{*zoom:1;}
/*980宽度*/
.cmain{width:980px;margin:0 auto;position:relative;clear:both}
/*定位背景*/
.icon{background:url(../images/icon.png) no-repeat}
/*宽度自适应*/
.nav,.banner,.all-thing,.footer,.friend-href,.ulnav_tab,.right_tabul,.cort,.navbt_bk{width:100%;min-width:980px}
.all-thing{background:#fef3f1;overflow:hidden}
/*头部*/
.headtop{height:92px;font-family:"宋体"}
/*头部左边*/
.top-left{font-size:14px;color:#888;margin-top:24px;cursor:default}
.top-left a{display:inline-block}
.top-left span{vertical-align:middle;margin-left:20px}
/*头部右边*/
.top-right{margin-top:10px}
.tright-ul li,.langruge-ul li{float:left}
.tright-ul{height:30px;margin-bottom:4px}
.tright-ul a,.tright-ul em{font-size:12px;color:#888;margin-left:8px;vertical-align:middle}
.tright-ul a:hover{color:#8e4f1b;text-decoration:underline}
.tright-ul i{font-size:12px;color:#8e4f1b}
.shooping{background-position:0 0;display:inline-block;width:15px;height:14px;vertical-align:middle}
.langruge-ul a,.langruge-ul em{font-size:12px;color:#888;margin-left:2px;vertical-align:middle}
/*搜索条*/
.search{width:248px;height:30px;border:1px solid #ccc;clear:both;position:relative;float:right}
.txt1{width:236px;height:18px;border:0;line-height:18px;font-size:12px;color:#666;padding-left:12px;outline:none;margin-top:6px}
.toser{position:absolute;width:16px;height:16px;background-position:-54px 0px;top:6px;right:10px;cursor:pointer}
/*导航条*/
.nav{background:#ffdede;height:34px;z-index:361;position:relative;}
/*导航条左边*/
.nav-ul li{float:left;height:33px;line-height:34px;padding:0 28px;position:relative;border:1px solid transparent;border-top:none}
.nav-ul a{font-size:14px;color:#8e4f1b;display:block}
.nav-ul .hover_li,.nav-right .hover_li{background:url(../images/A_hover.jpg) repeat-x;border:1px solid #f2e5e5;border-top:none}
/*导航条右边*/
.nav-right li{float:left;height:33px;line-height:34px;padding:0 30px;border:1px solid transparent;border-top:none;font-size:0}
.nav-right a,.nav-right em{font-size:14px;color:#8e4f1b;vertical-align:middle}
.nav-right em{background:url(../images/all-right.png) no-repeat left center;width:5px;height:9px;display:inline-block;margin-right:8px}
.lipos{position:relative}
.lipos i{position:absolute;display:block;width:25px;height:15px;background-position:-17px 0px;top:-6px;right:20px}
/*鼠标移动出现的下拉*/
.nav-div,.theright_div{width:391px;margin:0 auto;position:absolute;top:33px;display:none;}
.navdiv_top{background:url(../images/bk_all.png) repeat-y;overflow:hidden;padding:16px 0 22px 0;}
.navdiv_bottom{background:url(../images/bk_border.png) no-repeat;height:6px;}
/*.nav-div,.theright_div{padding:16px 0 16px 0;width:400px;margin:0 auto;overflow:hidden;position:absolute;background-color:#FFFFFF;top:33px;z-index:361;border:1px solid #f2e5e5;border-top:none;display:none}*/
.nav-div{left:-4px;}
.nav-ul .nav-div{line-height:14px}
.navdiv-left{float:left;width:170px;padding-left:40px;padding-top:7px}
.left-border{border-right:1px solid #efefef;}
.navdiv-left h3{font-size:12px;color:#c9a548;font-weight:100}
.navdiv-left img{margin:12px 0}
.navdiv-left p{font-size:12px;width:156px;text-align:justify;color:#666;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}
.more_cp{margin-top:20px}
.more_cp a{font-size:12px;color:#888;font-weight:bold}
.navdiv-right{float:left;border-right:1px solid #efefef;padding:0 56px 10px 30px;}
.navdiv-right_jew{float:left;padding:0 66px 10px 30px;}
.navdiv-right_jew p{line-height:30px;font-size:12px;color:#888;font-weight:bold}
.navdiv-right_jew a{color:#666;font-weight:100}
.navdiv-right_jew a:hover{color:#8e4f1b;text-decoration:underline}
.navdiv-right p{line-height:30px;font-size:12px;color:#888;font-weight:bold}
.navdiv-right a{color:#666;font-weight:100;font-family:arial}
.navdiv-right a:hover{color:#8e4f1b;text-decoration:underline}
.special_right{padding:2px 0 30px 30px;}
.theright_div{right:-4px}
.nav-right .theright_div{line-height:30px}
.navright_div{margin-left:18px;color:#666}
.navright_div h3{font-size:14px;font-weight:100}
.navright_div p{font-size:12px;width:178px;line-height:22px}
.navdiv-left_ph{float:left;width:170px;border-left:1px solid #efefef;padding-left:40px;padding-top:7px}
.navdiv-left_ph h3{font-size:12px;color:#c9a548;font-weight:100}
.navdiv-left_ph img{margin:12px 0}
.navdiv-left_ph p{font-size:12px;width:156px;text-align:justify;color:#666;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}
.navdiv-right_ph{float:left;padding:0 66px 10px 30px;}
.navdiv-right_ph p{line-height:30px;font-size:12px;color:#888;font-weight:bold}
.navdiv-right_ph a{color:#666;font-weight:100}
.navdiv-right_ph a:hover{color:#8e4f1b;text-decoration:underline}
/*导航下的阴影*/
.navbt_bk{background:url(../images/nav_rp.png) repeat-x;height:5px;position:absolute;z-index:10}
/*底部*/
.footer{background:#fff}
.Service_ul{overflow:hidden;cursor:default;clear:both;padding:16px 0 10px 0}
.Service_ul li{float:left;margin:0 39px}
.Service_ul-img{background:url(../images/foot-servise.png) no-repeat;width:60px;height:60px}
.Service_ul-img_hover{background:url(../images/foot-servise_hover.png) no-repeat}
.Service_ul-img a{display:block;height:100%}
.Service_ul p{font-family:"微软雅黑";text-align:center;font-size:14px;color:#888;line-height:28px}
.Service_ulp_hover{text-decoration:underline}
.Service_ul .bk_2{background-position:-60px 0}
.Service_ul .bk_3{background-position:-120px 0}
.Service_ul .bk_4{background-position:-180px 0}
.Service_ul .bk_5{background-position:-240px 0}
.Service_ul .bk_6{background-position:-300px 0}
.Service_ul .bk_7{background-position:-360px 0}
/*服务条款*/
.service{border-bottom:1px solid #ccc;padding:20px 0 30px 0;overflow:hidden;font-size:12px}
.Service_know{overflow:hidden;font-family:"宋体";margin-right:30px}
.Service_know li{float:left;margin-left:48px}
.Service_know h3{color:#333;font-size:12px;margin-bottom:8px;cursor:default}
.Service_know p{line-height:24px}
.Service_know a{color:#888;font-size:12px}
.Service_know a:hover{color:#8e4f1b;text-decoration:underline}
/*中间联系方式*/
.know_right p{color:#666;cursor:default;font-size:15px;font-family:"微软雅黑"}
.theshare{margin-top:10px}
.theshare span{font-size:12px;vertical-align:middle}
.theshare a{display:inline-block;background:url(../images/share.png) no-repeat;height:22px;vertical-align:middle;margin-left:10px}
.theshare .wb{width:26px}
.theshare .wb:hover{background-position:0 -22px}
.theshare .rr{width:24px;background-position:-28px 0}
.theshare .rr:hover{background-position:-28px -22px}
.theshare .qzone{width:26px;background-position:-55px 0}
.theshare .qzone:hover{background-position:-55px -22px}
/*二维码*/
.erwei{margin:0 46px 0 30px}
/*条文*/
.tw-foot{text-align:center;padding:20px 0;cursor:default}
.tw-foot p{font-size:12px;font-family:"微软雅黑";color:#888;line-height:22px}
/*友情链接*/
.friend-href{background:#fef3f1}
.the_href{text-align:center;padding:30px 0;width:834px;margin:0 auto;font-family:"微软雅黑";color:#ccc;font-size:12px;cursor:default}
.the_href a{color:#ccc;padding-right:12px}
/*中间内容*/
.cort{background:#fef3f1;padding-bottom:58px}
/*面包屑*/
.zbk_top{height:40px;line-height:40px;font-size:12px;color:#888;cursor:default;padding-left:20px;clear:both}
.zbk_top em{font-size:16px;color:#8e4f1b;font-weight:bold}
.spalid em{font-size:12px;color:#888;font-weight:100}
.zbk_top i{font-size:16px;color:#666}
.zbk_top a{color:#888}
/*按钮*/
.button{overflow:hidden;margin:0 auto;width:350px;margin-top:20px}
.to_more a{color:#c6a34d}
.bt1,.bt2{padding:0 22px;float:left;cursor:pointer;font-weight:bold;margin-left:8px;font-size:14px}
.bt1 span,.bt2 span,.bt2 a,.bt1 a{padding-left:14px}
.bt2{background:#fff;color:#c6a34d;border:1px solid #c9a548;height:34px;line-height:34px}
.bt1{background:#d6b870;color:#fff;height:36px;line-height:36px;}
.bt1 span{background:url(../images/all-right_w.png) no-repeat left center}
.bt1 a{color:#ffffff;background:url(../images/all-right_w.png) no-repeat left center}
.bt2 span,.bt2 a{background:url(../images/all-right_y.png) no-repeat left center;color:#c6a34d}
/*首页按钮*/
.sp_width .button{margin-left:10px}
/*购买的款式ul*/
.buyit{overflow:hidden;margin-left:-12px;padding-bottom:26px;margin-top:12px}
.buyit li{float:left;width:236px;margin-left:12px;font-family:;}
.by_top{background:#fff;width:236px;height:236px;text-align:center;position:relative}
.by_top a{display:block;position:absolute;top:0;left:0;width:236px;height:236px;z-index:12;background:transparent;cursor:pointer;background:#fff;opacity:0.01;filter:alpha(opacity=0.01)}
/*两个角度的照片*/
.bything-one{z-index:10}
.bything-one,.bything-two{position:absolute;top:0;left:0}
.bything-two{opacity:0;filter:alpha(opacity=0)}
.the_newlogo{background:url(../images/new.jpg) no-repeat;width:37px;height:11px;position:absolute;top:18px;left:12px;z-index:14}
.by_center{background:url(../images/ring_bottom.png) no-repeat;width:236px;height:12px}
.by_bottom{text-align:center;margin:2px 0 16px 0 ;cursor:default}
.by_bottom p{color:#666;font-size:12px;line-height:22px}
.by_bottom span{color: #bd5a5a;font-size: 14px;font-weight: bold;}
.by_bottom i{color:#666;font-size:12px;padding-left:8px}
/*推荐款式*/
.hot-ks{height:44px;line-height:53px;cursor:pointer;color:#666}
.hot-ks a,.hot-ks span{font-size:14px}
.hot-ks a{color:#666;padding-right:8px;background:url(../images/all-right.png) no-repeat left center;padding-left:12px}
.choose-ks .other_color{color:#8e4f1b}
.choose-ks .other_color em{background-position:-87px 0px}
.other_color{color:#8e4f1b}
.ota_color{color:#8e4f1b}
.hot-ks .other_color em{background-position:-87px 0;}
.hot-ks .ota_color em{background-position:-45px -27px;}
.choose-ks .ota_color{color:#8e4f1b}
.choose-ks .ota_color em{background-position:-45px -27px;}
.hot-ks i{vertical-align:middle}
.hot-ks em{width:7px;height:7px;display:inline-block;vertical-align:middle;margin:0 6px}
.hot-ks,.choose-ks .choose_color{background-position:-87px 0}
.hot-ks em{background-position:-87px -12px}
/*遮罩*/
.backall{background:#000;opacity:0.5;filter:alpha(opacity=50);position:absolute;height:4000px;width:100%;z-index:400;display:none;top:0;left:0}
/*验证身份框*/
.yz_password{position:fixed;top:150px;left:50%;background:#fff;width:550px;margin-left:-275px;z-index:410;display:none}
.yzp_border{overflow:hidden;width:500px;margin:0 auto;padding:26px 0}
.yzpb_top,.yzpb_bottom{background:url(../images/sm_boreder.png) no-repeat;width:500px;height:50px}
.yzpb_bottom{background-position:0 -50px}
.yzpb_cort{background:url(../images/sm_repeat.png) repeat-y;width:500px;text-align:center;overflow:hidden}
.yzpb_cort h3{font-size:30px;color:#fe929b}
.yzpb_cort h4{font-size:18px;color:#666;font-family:"微软雅黑";font-weight:100;margin:14px 0}
.yz_tittle{text-align:center;font-size:0}
.yz_tittle i{display:inline-block;background:url(../images/line1.jpg) no-repeat left center;width:50px;height:1px}
.yz_tittle span{font-size:14px;color:#888;padding:0 16px;display:inline-block;vertical-align:middle}
.yz_begin p{margin-top:16px;font-size:0}
.bzy_3{padding:7px 0;border:1px solid #ccc;margin-right:6px;width:170px;padding-left:4px;font-size:14px;color:#888}
.secl{height:32px;border:1px solid #ccc}
.bzy_4{padding:7px 0;border:1px solid #ccc;width:265px;padding-left:4px;font-size:14px;color:#888}
.ts_wrong{border:1px solid #dbc89e;background:#fff7d2;height:21px;line-height:21px;width:269px;margin:0 auto;margin-top:2px}
.ts_wrong span{background:url(../images/bc.png) no-repeat left center;display:inline-block;color:#ff4040;font-size:14px;padding-left:24px;margin-left:10px}
.ts_button{width:269px;margin:0 auto;margin-top:8px;overflow:hidden}
.ts_button .bt2{width:266px;padding:0;margin:0}
/*关闭按钮*/
.yz_close{background:url(../images/close.png) no-repeat;width:16px;height:16px;position:absolute;right:16px;top:16px;cursor:pointer}
.toyz_nobuy p,.toyz_buyit p{line-height:24px;color:#888;font-size:14px}
.toyz_nobuy,.toyz_buyit{display:none}
.other_buy{overflow:hidden;margin:0 auto;width:320px;margin-top:30px}
.other_buy .bt2{width:148px;padding:0}
/*注册登录弹出框*/
.tck_zcdl{position:fixed;width:430px;margin-left:-215px;left:50%;background:#fff;top:150px;z-index:410}
.tck_zcdl-all{padding:32px 0;width:320px;margin:0 auto}
.tck_dl{display:none}
/*选项*/
.tck_zcdl-top{overflow:hidden;margin-bottom:18px}
.tck_zcdl-ul{height:30px}
.tck_zcdl-ul li{float:left;width:99px;text-align:center;height:30px;line-height:30px;font-size:14px;color:#888;cursor:pointer}
.tck_zcdl-ul .zcdl_sp{border:1px solid #ccc;border-bottom:1px solid #fff;height:29px;font-weight:bold;color:#666}
.zcdl_line{border-bottom:1px solid #ccc}
/*登录*/
.the_input{border:1px solid #ccc;height:38px;width:298px;margin-top:10px;position:relative}
.al_Input{color:#a6a6a6;font-size:14px;padding:10px 0;border:none;padding-left:44px;width:248px}
.the_input span{display:inline-block;background:url(../images/mb.png) no-repeat;width:17px;height:16px;position:absolute;left:11px}
.member{top:12px}
.the_input .password{top:11px;background-position:0 -16px}
.the_input i{position:absolute;color:#a6a6a6;font-size:14px;left:44px;top:12px}
/*验证码*/
.yz_input{margin-top:10px;font-size:0}
.yzm_input{padding:11px 0;padding-left:14px;font-size:14px;color:#a6a6a6;width:140px;border:1px solid #ccc;vertical-align:middle;margin-right:10px}
.yz_input a{color:#0057a1;font-size:12px;vertical-align:middle;margin-left:10px}
/*其他选项*/
.other_input{margin-top:10px;font-size:0;overflow:hidden;width:300px}
.other_input input{vertical-align:middle}
.other_input label{vertical-align:middle;font-size:12px;color:#888;margin-left:8px}
.other_input a{font-size:12px;color:#888}
.tother_input{margin-top:10px}
.tother_input .btton{background:#d6b870;color:#fff;height:36px;line-height:36px;width:300px;cursor:pointer;font-weight:bold;font-size:14px;text-align:center}
.tother_input span{background:url(../images/all-right_w.png) no-repeat left center;padding-left:14px}
.tother_input .tother_hover{background:#caa752}
/*其他合作*/
.other_hz{background:url(../images/line.jpg) no-repeat top;width:300px;margin-top:20px;font-size:0}
.other_hz p{font-size:12px;color:#b2b2b2;padding-top:10px;line-height:34px}
.other_hz span{vertical-align:middle}
.other_hz a{display:inline-block;width:25px;height:24px;vertical-align:middle;margin-left:16px}
.oth_qq{background:url(../images/QQ.jpg) no-repeat}
.oth_wb{background:url(../images/wb.jpg) no-repeat}
/*注册*/
.zc_input{border:1px solid #ccc;height:38px;width:298px;margin-top:10px;position:relative}
.z_Input{color:#a6a6a6;font-size:14px;padding:10px 0;border:none;padding-left:82px;width:210px}
.zc_input span,.zc_input i{font-size:14px;position:absolute;top:11px}
.zc_input span{left:12px;color:#666}
.zc_input i{left:70px;color:#a6a6a6}
.zc_input .sp_pss{left:86px}
.other_input span{font-size:12px;vertical-align:middle;color:#888;padding-left:2px}
.other_input .to_zc{vertical-align:middle;color:#8e4f1b}
/*报错*/
.tc_wrong{border:1px solid #dbc89e;background:#fff7d2;height:21px;line-height:21px;width:298px;margin-top:5px}
.tc_wrong span{background:url(../images/bc.png) no-repeat left center;display:inline-block;color:#ff4040;font-size:12px;padding-left:24px;margin-left:10px}
.yzabout_wrong{border:2px solid #ffaeb4}
/*选中变颜色*/
.clickit_bk{background:#faffbd}
.clickit_bk .z_Input{background:#faffbd}
.clickit_bk .al_Input{background:#faffbd}
/*按钮1颜色*/
.hover_button{background:#caa752}
/*按钮2颜色*/
.hover_bt2 span,.hover_bt2 a{background:url(../images/all-right_w.png) no-repeat left center;color:#fff}
.hover_bt2{background:#caa752;color:#fff}
/*底部*/
.Ffloat_kf{position:fixed;right:0;top: 30%;z-index:9999;}
.Ffloat_kf a{cursor:pointer;display:block}
.Ffloat_kf .fkf_top{width:77px;padding-left:15px;margin-bottom:4px}
.fkf_bottom img{display:block}
.Ffloat_kf .fksp_a{position:relative}
#bridgehead{position:absolute;top:0}
.qq_hover{background:url(../images/3.gif) no-repeat;width:75px;height:75px}
.qq_hover:hover{background:url(../images/hover.jpg) no-repeat}
.link{width:980px;overflow:hidden;font-family:"微软雅黑";margin:0 auto;line-height:35px;padding:20px 0}
.link span{float:left; color:#888888;font-size:12px}
.news_tc{background:url(../images/invitebg.jpg) no-repeat;width:310px;height:144px;position:fixed;left:50%;margin-left:-155px;top:320px;z-index:99999;display:none}
.newtc_left{background:url(../images/invitehead.jpg) no-repeat;width:98px;height:128px;float:left}
.newtc_right{float:left;margin-top:108px;padding-left:40px;position:relative}
.sszs,.xzzx{display:inline-block;width:80px;height:24px;text-align:center; font-size:12px; line-height:24px;border-radius:5px}
.sszs{background:#dedede;cursor:default;border:1px solid #bbbbbb;color:#6a6a6a}
.xzzx{background:#a06c44;height:26px;line-height:26px}
.xzzx a{color:#000;font-weight:200}
.tocclose{position:absolute;right:8px;top:-96px;background:url(../images/ttcloese.png) no-repeat;width:10px;height:10px}
.atc_cort p{font-size: 14px;line-height: 28px;margin-bottom: 14px;}
.linkorther_know{width:920px;overflow:hidden;height:35px}
.orther_know{overflow:hidden;font-family:"微软雅黑";margin:0 auto;height:25px;float:left}
.orther_know li{float:left;padding-left:6px;margin-right:10px;margin-bottom:0}
.orther_know li p{line-height:35px;height:35px}
.orther_know li a{color:#888;font-size:12px}
.LeftTitle{font-size:14px;font-weight:bold;color:#fff;text-decoration:none;background-image:url(../images/Propose_leftbg.jpg);height:35px;width:230px;line-height:35px;text-align:center}
.mask{position:absolute;top:0;background-color:#777;z-index:9999;left:0;opacity:0.5;-moz-opacity:0.5;filter:alpha(opacity=50)}
.model{position:absolute;z-index:1003;display:none}.model a{color:#666}
.Prompt{padding:2px;border:1px solid #c18086;background-color:#FFF}
.Prompt #Prompt_tit{line-height:30px;height:30px;width:510px;font-size:15px;font-weight:bold;color:#fff;text-decoration:none;background-color:#c18086;padding-left:10px}.
.Prompt #Prompt_tit span{float:right;padding:10px}
.Prompt #Prompt_cc{padding:20px 0;font-size:14px;color:#b25e6e;font-weight:bold;text-align:center}
.Prompt .Con_err{color:#666;font-size:13px;line-height:22px}
.Prompt .Con_err span{color:#b35f6f}
.Prompt .Con_err input{padding:3px;border:1px solid #8d8d8d}
.Prompt .Con_err a{color:#666}
.Prompt .Con_err a:hover{color:#666}
.Cart_line a{color:#666}
.Cart_line td{padding:5px}
.modelsever{z-index:9999;display:block;position:fixed;background-color:#fff;width:745px;top:80px;margin-left:-372.5px;left:50%}
.cs_top{height:40px;width:745px;margin:0 auto}
.cs_top .cs_topcenter{width:700px;font-size:12px;color:#7d7d7d;height:40px;line-height:normal;border-bottom:1px solid #c2967e;margin:0 auto}.cs_content{height:auto;width:700px;margin:0 auto;min-height:150px;padding-bottom:10px}
.cs_bottom{height:50px;width:745px;border-top:3px solid #ffe1d0;line-height:50px;text-align:center;margin:0 auto;font-size:14px}
.cs_bottom a{color:#c4865d;text-decoration:underline;font-family:"宋体"}
.cs_content ul{width:700px;margin:0 auto;height:50px;font-size:16px}
.cs_content ul li{font-size:14px;float:left;display:block;width:80px;line-height:50px;height:50px;text-align:center;border:0;color:#7d7d7d;cursor:pointer}
.cs_content .line{width:10px;font-size:14px;font-weight:bold;text-align:center}
.clear{clear:both}
.content_txt{display:none;line-height:30px;font-size:14px;color:#999;font-family:"宋体";padding-bottom:5px}
.content_title{font-family:"宋体";color:#000;font-size:14px;line-height:30px;cursor:pointer}
.cs_content .box1{display:block}
.cs_content .box2{display:none}
.cs_content .box3{display:none}
.cs_content .box4{display:none}
.cs_content .box5{display:none}
.cs_content .box6{display:none}
.cs_content .box7{display:none}
/*首页产品超链接*/
.by_bottom a{color:#666;font-size:12px}
.n_box{ padding:0px; width:auto; height:auto;}
.box_content{ margin:0 auto; width:980px;}
.n_box .left_box{ width:720px; height:auto; float:left;background-color: white}
.left_line{width:720px; height:auto;border:solid #e7e7e7 1px; background-color:#fff; }
.right_box1{ width:250px; height:auto; float:left; margin-left:10px; }
.left_top{ margin-left:25px;margin-right:25px; margin-bottom:20px; text-align:center; height:auto; clear:both;}
.left_top .left_li{height:50px; line-height:50px; }
.left_li ul li{ margin-left:10px; width:auto; float:left; color:#999999; font-size:12px; list-style-type:none;}
.content{margin-left:25px;margin-right:25px;width:auto; height:auto; background-color:#fff; overflow:hidden; clear:both; font-size:14px; line-height:28px; padding-bottom:20px; }
.left_top .left_1{ border:solid #e7e7e7 1px; height:100px;
background:url(../images/03.jpg) no-repeat top left;
text-align:left; padding:20px;}
.left_nav{ margin-left:20px; line-height:30px; height:30px; }
.left_1 .left_text{font-size:12px; line-height:24px; margin-bottom:20px;}
.left_1 ul{ height:35px; font-size:12px; color:#999999; list-style-type:none; display:inline;}
.left_1 ul li{ width: auto; margin-left:10px; float:left;}
.left_1.li1{width: auto;float:left; display:inline;}
/*悬挂客服*/
.float_big{position:fixed;top:30%;right:2px;width:77px;z-index:100}
.floatbig_hide{background:url(../images/sx.jpg) no-repeat right;width:15px;height:15px;margin-bottom:1px;cursor:pointer}
.floatbig_hide-hover{background:url(../images/sx_hover.jpg) no-repeat right}
.floatbig_center{clear:both}
.floatbig_center-kf{background:url(../images/kfu.gif) no-repeat;width:77px;height:80px;margin-bottom:1px;cursor:pointer}
.floatbig_center-kfhover{background:url(../images/kfu_hover.jpg) no-repeat}
.floatbig_center-zx{margin-bottom:9px}
.floatbig_center-zx a{display:block;background:url(../images/dzzx.jpg) no-repeat;width:77px;height:37px}
.floatbig_center-zx a:hover{background:url(../images/dzzx_hover.jpg) no-repeat}
.float_small{position:fixed;top:30%;right:-77px;width:77px}
.floatbig_show{background:url(../images/fd.jpg) no-repeat right;width:15px;height:15px;margin-bottom:1px;cursor:pointer}
.floatbig_show-hover{background:url(../images/fd_hover.jpg) no-repeat right}
.floatsmall_center-kf{background:url(../images/sxkf.jpg) no-repeat;width:29px;height:55px;margin-bottom:1px;cursor:pointer}
.floatsmall_center-kfhover{background:url(../images/sxkf_hover.jpg) no-repeat}
.floatsmall_center-zx{margin-bottom:7px;clear:both}
.floatsmall_center-zx a{display:block;background:url(../images/sxzx.jpg) no-repeat;width:29px;height:55px}
.floatsmall_center-zx a:hover{background:url(../images/sxzx_hover.jpg) no-repeat}
.floatsmall_erwei{clear:both}
.floatsmall_erwei a{display:block;background:url(../images/ew_sx.jpg) no-repeat;width:29px;height:29px}
.floatsmall_erwei a:hover{background:url(../images/ew.jpg) no-repeat;width:77px;height:77px}
/*返回顶部*/
.comeback{position:fixed;bottom:50px;background:url(../images/fhdb.jpg) no-repeat;width:45px;height:45px;cursor:pointer;display:none;left:50%;margin-left:530px}
.comeback_hover{background:url(../images/fhdb_hover.jpg) no-repeat;}
/*导航下拉的线条*/
.noborder{border:none}
.haveborder{border-left:1px solid #efefef}

View File

@@ -0,0 +1,296 @@
/*购物车页面*/
*{margin:0;padding:0}
li,ul{list-style:none;}
a{text-decoration:none}
input{outline:none;}
img{border:0 none;vertical-align:middle;}
em,i{font-style:normal}
.fl{float:left;display:inline;}
.fr{float:right;display:inline;}
/*清除浮动*/
.fix:after{content:" ";display:block;visibility:hidden;clear:both;height:0;line-height:0;}
.fix{*zoom:1;}
/*980宽度*/
.cmain{width:980px;margin:0 auto;position:relative}
/*宽度自适应*/
.cort{width:100%;min-width:980px}
.all-thing{background:#fef3f1;overflow:hidden}
.tcmain{width:940px;margin:0 auto;position:relative;background:#fff;padding:0 20px}
/*头部*/
.shop_top{height:83px;}
.shopt_left{padding-top:26px}
.shopt_left a{display:inline-block}
.shopt_left span{vertical-align:middle;font-size:14px;color:#888;padding-left:16px}
.shopt_right{font-size:0;padding-top:50px}
.shopt_right span{font-size:12px;color:#666}
.shopt_right a{font-size:12px;padding-left:12px}
.shopt_right .my_dr{color:#666}
.shopt_right .tc_dr{color:#888}
.shopt_right .help_dr{color:#333}
/*导航条*/
.shop_nav{background:url(../images/shoop_nav.jpg) no-repeat;width:940px;height:38px;}
/*特殊导航条*/
.shop_spnav{background:url(../images/shoop_othernav.jpg) no-repeat;width:940px;height:38px;}
/*购物车页面*/
/*内容*/
.shop_cort{padding-top:46px;overflow:hidden;padding-bottom:40px}
.shop_cort-left{width:722px}
.shop_cort h3{font-size:14px;color:#666;border-bottom:1px solid #dbdbdb;padding-bottom:12px}
.shop_tabble td{font-size:14px;text-align:center}
.nav_tr td{height:40px;line-height:40px;color:#333;font-weight:bold}
.shop_tabble .sp_td{text-align:left}
.nav_tr .sp_td{padding-left:42px}
.cz_td{width:126px}
.sc_td{width:76px}
.kz_td{width:110px}
.gm_td{width:160px;font-family:"Arial";}
.cp_tr td{background:#fff9f8;padding:8px 0;color:#666;margin-bottom:10px}
.cp_tr .sp_td{padding-left:8px;width:206px}
.cp_tr .gm_td{color:#ff4c4c;font-weight:bold}
.close_td{width:36px;position:relative}
.sicon{background:url(../images/small_tb.png) no-repeat;}
.s_close{display:inline-block;position:absolute;width:20px;height:22px;background-position:0 -87px;right:12px;top:12px;cursor:pointer}
.kb_tr td{background:#fff;height:16px}
/*结算*/
.shop_js{border:4px solid #fef3f1;margin-top:25px;height:82px;line-height:82px;color:#666;font-size:12px;width:714px}
.shop_js a{padding-left:20px}
.shop_js a:hover{text-decoration:underline}
.jx_shop{color:#666}
.qk_shop{color:#888;padding-right:102px}
.shop_js span{padding-right:26px}
.shop_js i{color:#ff4c4c;padding:0 8px}
.fw_bold{font-weight:bold;font-family:"Arial";}
.shop_js .end_bt{display:inline-block;width:150px;height:36px;background:#d6b870;line-height:36px;text-align:center;color:#fff;font-size:14px;padding:0;cursor:pointer}
.end_bt em{background:url(../images/all-right_w.png) no-repeat left center;padding-left:14px}
.shop_js .end_bt:hover{background:#caa752}
/*同步推荐*/
.shop_tj{margin-top:62px}
.shop_tj-top{border-bottom:1px solid #dbdbdb;padding-bottom:12px;font-size:0;color:#666}
.shop_tj-top span{font-size:14px;font-weight:bold}
.shop_tj-top i{font-size:12px;padding-left:16px}
.shop_tj-ul{overflow:hidden;margin-top:10px;margin-left:-44px;margin-bottom:40px}
.shop_tj-ul a{display:block}
.shop_tj-ul li{float:left;text-align:center;width:108px;overflow:hidden;margin-left:44px}
.shop_ul-bot{margin-top:16px;font-size:12px}
.shop_ul-bot p{font-family:"微软雅黑";color:#666;height:20px}
.shop_ul-bot span{color:#888}
.join_cart{width:103px;height:23px;line-height:24px;text-align:center;border:1px solid #d6b870;background:#fff;font-size:14px;color:#c6a34d;font-weight:bold;margin-top:8px;cursor:pointer}
.join_cart span{background:url(../images/all-right_y.png) no-repeat left center;color:#c6a34d;padding-left:14px}
.join_carthover{background:#caa752;border:1px solid #caa752}
.join_carthover span{background:url(../images/all-right_w.png) no-repeat left center;color:#fff;padding-left:14px}
/*same右边*/
.shop_cort-right{border:1px solid #e6e6e6;width:198px;margin-top:26px}
.shop_right-nr{padding:25px 14px}
.shop_right-nr h3{font-size:20px;font-family:"微软雅黑";color:#333;font-weight:500;padding-bottom:8px}
.line_bottom{border-bottom:1px solid #dbdbdb;padding:20px 0}
.shop_right-zx p{background:url(../images/small_tb.png) no-repeat;color:#333;font-size:14px;padding-left:36px}
.shop_right-zx .shop_lx{background-position:0 -1px;height:22px;margin-bottom:8px;line-height:22px}
.shop_right-zx .shop_tel{background-position:0 -24px;height:18px;line-height:18px}
.shop_right-zf h4{font-size:14px;color:#666}
.shop_right-zf p{font-size:12px;color:#888;margin:12px 0}
.shop_right-ul{overflow:hidden}
.shop_right-ul li{float:left;background:url(../images/zfgn.jpg) no-repeat;width:54px;height:32px}
.shop_right-ul .shop_cor-yl{margin-right:4px}
.shop_right-ul .shop_cor-cft{background-position:-54px 0;margin-right:4px}
.shop_right-ul .shop_cor-zf{background-position:-108px 0}
.shop_right-ps{padding-top:20px}
.shop_right-ps h4{font-size:14px;color:#666;margin-bottom:8px}
.shop_right-ps p{background:url(../images/small_tb.png) no-repeat;color:#888;font-size:12px;padding-left:36px}
.shop_right-ps .shop_kd{height:22px;background-position:0 -44px;margin-bottom:6px;line-height:22px}
.shop_right-ps .shop_bj{height:20px;background-position:0 -67px;line-height:20px}
/*底部*/
.shop_foot{text-align:center;margin-top:36px}
.shop_foot p{font-size:12px;font-family:"微软雅黑";color:#888;line-height:24px}
.shop_foot-img{margin-top:16px;padding-bottom:30px}
/*真爱协议页面*/
.shop_nav-love{background-position:0 -38px}
.shop_agree{width:882px;margin:0 auto;margin-top:35px;padding-bottom:50px}
.shop_agree-top,.shop_agree-bottom{background:url(../images/zs_border.png) no-repeat;height:50px}
.shop_agree-cort{background:url(../images/zs_repeat.png) repeat-y;width:882px}
.shop_agree-bottom{background-position:0 -50px}
.shopagree_cort-top{font-size:0;text-align:center}
.shopagree_cort-top i{background:url(../images/line1.jpg) no-repeat;width:50px;vertical-align:middle;height:1px;display:inline-block}
.shopagree_cort-top span{font-size:30px;color:#fe929b;vertical-align:middle;padding:0 20px}
.shop_agree-cort p{font-size:14px;color:#666;line-height:30px;text-align:center}
.shopagree_cort-center{margin:24px 0}
.shopagree_cort-input{margin-left:52px}
.it_1,.it_2,.it_3{padding:7px 0;border:1px solid #e5e5e5;vertical-align:middle}
.it_1{width:118px}
.it_2{width:198px}
.it_3{width:138px}
.shopagree_cort-input label{color:#333;font-size:14px;vertical-align:middle;margin-left:16px}
.shopagree_cort-input i{color:#ff0116}
.shopagree_cort-spcenter{margin-top:24px}
.shopagree_cort-spcenter p{font-size:14px;color:#888}
.shopagree_cort-spinput{margin-left:74px;margin-bottom:32px}
.shopagree_cort-check{text-align:center;font-size:0;padding-bottom:32px}
.shopagree_cort-check label{padding-left:4px}
.shopagree_cort-check a{vertical-align:middle;color:#8e4f1b;font-size:12px}
.shopagree_cort-check input{vertical-align:middle}
.shopagree_button{width:210px;margin:0 auto}
.shopagree_button .bt1{background:#d6b870;width:210px;height:36px;line-height:36px;text-align:center;font-size:14px;color:#fff;cursor:pointer;font-weight:bold}
.shopagree_button .bt1 span{background:url(../images/all-right_w.png) no-repeat left center;padding-left:14px}
/*填写订单页面*/
.shop_nav-dd{background-position: 0 -76px}
/*特殊*/
.shop_nav-spdd{background-position: 0 -38px}
.shop_cort-adress{margin-top:8px}
.shop_adress-top{font-size:0;padding-left:26px;height:auto;line-height:30px}
.shop_adress-top input{vertical-align:middle;margin-right:8px;}
.shop_adress-top label{font-size:12px;color:#333;vertical-align:middle}
.shop_adress-top span{font-size:12px;color:#888;vertical-align:middle;padding-left:20px;padding-right:40px}
.shop_adress-top i{font-size:12px;color:#e5e5e5;vertical-align:middle;padding:0 5px}
.shop_adress-top a{font-size:12px;color:#8e4f1b;vertical-align:middle}
.check_bk{background:#fef3f1}
.shop_adress-top .adress_color{color:#888}
/*新加地址*/
.shop_adress-add{margin-left:40px;margin-top:16px;font-size:0}
.shop_adress-add h4{font-size:14px;color:#666}
.shop_adress-Toadd{margin-top:16px}
.shop_adress-Toadd i{color:#e60012;padding-right:4px}
.shop_adress-Toadd label,.shop_adress-Toadd input,.shop_adress-Toadd select,.shop_adress-Toadd span,.shop_adress-Toadd i{vertical-align:middle}
.shop_adress-Toadd label{width:70px;text-align:right;display:inline-block;font-size:12px;color:#333}
.shop_adress-Toadd input{padding:4px 0;border:1px solid #ccc;font-size:12px;color:#888;padding-left:10px}
.shop_adress-Toadd select{height:24px;width:100px}
.shop_adress-Toadd span{font-size:12px;color:#333;padding:0 6px}
.shop_adress-Toadd .adt_1{width:360px;}
.shop_adress-Toadd .oth_color{font-size:12px;color:#888}
.shop_adress-sp{margin:22px 0 22px 68px}
.shop_adress-sp label,.shop_adress-sp input{font-size:12px;color:#666;vertical-align:middle}
.shop_adress-save .bt1{background:#d6b870;width:180px;height:30px;line-height:30px;text-align:center;color:#fff;font-size:14px;font-weight:bold;cursor:pointer}
/*确认订单信息*/
.shop_adress-qr{margin-top:56px}
.shop_adressqr-top{border-bottom:1px solid #dbdbdb;padding-bottom:12px;font-size:12px;color:#666}
.shop_adressqr-top span{font-size:14px;font-weight:bold}
.shop_adressqr-top a{color:#8e4f1b}
/*订单*/
.shop_adressqr-of{margin-top:20px;border:1px solid #e6e6e6;}
.shop_adressqr-of td{text-align:center;font-size:14px}
.shop_adress-shoop{width:188px}
.shop_adress-cz{width:140px}
.shop_adress-sc{width:132px}
.shop_adress-kz{width:136px}
.shop_adress-pirce{width:124px}
.shop_adressqr-first td{height:28px;border-bottom:1px solid #e6e6e6;color:#333;background:#fafafa}
.shop_adressqr-sec td{padding:20px 0;color:#666}
.shop_adressqr-sec span{font-weight:bold}
.shop_adressqr-of .shop_adress-back{text-align:left;height:29px;background:#fafafa;border-bottom:1px solid #e6e6e6}
.shop_adress-back span{color:#666;font-size:12px;padding-left:36px}
/*总计*/
.shop_adress-zj{margin:12px 0;background:#fef3f1;height:40px;line-height:40px;padding-left:22px;font-size:0}
.shop_adress-zj span{font-size:14px;color:#666;padding-right:10px}
.shop_adress-zj i{font-size:14px;color:#ff4c4c;padding:0 4px}
.shop_adress-zj .fw_bold{margin-right:22px;padding:0}
/*提交订单等*/
.shop_adress-last{overflow:hidden}
.shop_adress-ddbz{width:336px}
.shop_adress-details{margin-bottom:12px}
.shop_adress-ddbz p{background:url(../images/small_tb.png) no-repeat -6px -130px;padding-left:22px;font-size:14px;color:#666;font-weight:bold;margin-bottom:10px;cursor:pointer}
.shop_adress-ddbz .clickshow{background-position:-6px -109px}
.shop_adress-text{width:322px;outline:none;overflow:auto;resize:none;color:#888;font-size:12px;height:80px;padding-top:6px;line-height:18px;border:1px solid #ccc;}
.shop_adress-tickets{border:1px solid #ccc;width:312px;padding:9px 0 20px 10px;background:#fef3f1;display:none}
.shop_adress-tickets-choose{font-size:0;margin-bottom:20px}
.shop_adress-tickets-choose label,.shop_adress-tickets-choose input{vertical-align:middle}
.shop_adress-tickets-choose input{margin-right:6px}
.shop_adress-tickets-choose label{font-weight:bold;color:#333;font-size:14px;margin-right:6px}
.shop_adress-tickets-write{font-size:0}
.tickets-write{margin-bottom:10px}
.shop_adress-tickets-write i,.shop_adress-tickets-write select,.shop_adress-tickets-write input,.shop_adress-tickets-write span{vertical-align:middle;font-size:12px}
.shop_adress-tickets-write i{color:#e60012}
.shop_adress-tickets-write span{color:#333;margin:0 4px}
.shop_adress-tickets-write select{height:24px;width:60px}
.shop_adress-tickets-write input{padding:3px 0;width:180px}
.tickets-write-save{height:28px;line-height:28px;width:103px;text-align:center;font-size:12px;color:#333;background:url(../images/line_rp.jpg) repeat-x;border:1px solid #ccc;cursor:pointer;margin-left:74px}
.shop_adress-tjdd{margin-top:10px}
.shop_adress-tjdd .bt1{width:160px;height:36px;line-height:36px;text-align:center;background:#ff5858;color:#fff;font-weight:bold;cursor:pointer}
.shop_adress-tjdd p{color:#666;font-size:14px;line-height:36px;margin-right:10px}
.shop_adress-tjdd i{color:#ff4c4c;font-size:16px}
/*提交订单完页面*/
.shop_nav-end{background-position:0 -114px}
/*特殊*/
.shop_nav-spend{background-position: 0 -76px}
.shop_of-for{padding:30px 20px 60px 20px}
.shop_ofor-top{text-align:center;margin-bottom:32px}
.shop_ofor-top h3{font-family:"微软雅黑";font-size:18px;color:#666;font-weight:100;margin-top:20px}
.shop_ofor-top h4{font-size:14px;color:#333;font-weight:100;margin:12px 0 18px 0}
.shop_ofor-font{font-size:0}
.shop_ofor-font span,.shop_ofor-font i,.shop_ofor-font a{font-size:12px}
.shop_ofor-font span{color:#666}
.shop_ofor-font i{color:#e60012}
.shop_ofor-font a{color:#8e4f1b;padding-left:20px}
.shop_ofor-font a:hover{text-decoration:underline}
.shop_ofor-line{border-bottom:1px solid #dbdbdb}
/*支付方式的导航*/
.shop_ofor-nav{height:55px;width:450px;margin:0 auto}
.shop_ofor-nav li{float:left;cursor:pointer;font-weight:bold;font-size:14px;color:#666;width:150px;text-align:center;height:56px;line-height:56px}
.shop_ofor-nav .shop_ofor-nav-click{background:url(../images/line_hx.png) no-repeat center bottom;color:#c6a34d}
.shop_ofor-allpay{background:#fef3f1;padding-bottom:30px}
/*提示*/
.shop_ofor-ts{text-align:center;font-size:14px;color:#666;height:60px;line-height:60px}
/*银行*/
.shop_ofor-bank{overflow:hidden;font-size:0;margin-bottom:50px}
.shop_ofor-bank li{float:left;margin-top:20px;margin-left:30px}
.shop_ofor-bank input{vertical-align:middle;margin-right:10px}
.shop_ofor-bank img{vertical-align:middle}
.shop_ofor-button{width:160px;margin:0 auto;margin-bottom:10px}
.shop_ofor-button .bt3{background:#ff5858;width:160px;height:36px;line-height:36px;text-align:center;color:#fff;font-size:14px;cursor:pointer;font-weight:bold}
.shop_ofor-button .bt3 span{background:url(../images/all-right_w.png) no-repeat left center;padding-left:14px}
.shop_ofor-button .bt1_hover{background:#eb3535}
/*分期付款*/
.shop_ofor-pirce{font-size:0;padding:46px 0 30px 30px}
.shop_ofor-pirce span,.shop_ofor-pirce input{vertical-align:middle}
.shop_ofor-pirce span{font-size:14px;color:#666}
.shop_ofor-pirce input{padding:8px 0;border:1px solid #ccc;width:196px;margin:0 6px}
.shop_ofor-post{display:none}
.shop_ofor-post h4{color:#666;font-size:14px;padding-left:28px}
/*线下支付*/
.shop_ofor-xxzf{padding:32px 27px}
.shop_ofor-xxzf-tittle p{font-size:12px;color:#666;line-height:24px}
.shop_ofor-xxzf-tittle{margin-bottom:30px}
.shop_ofor-xxzf_all{overflow:hidden}
.shop_ofor-xxzf_all h3{font-size:14px;color:#666;margin-bottom:10px}
.shop_ofor-xxzf_cort{margin-bottom:26px}
.shop_ofor-xxzf-table{border:1px solid #d9d9d9;border-bottom:none}
.shop_ofor-xxzf-table td{border-bottom:1px solid #d9d9d9;padding:10px 0;font-size:12px;color:#333;text-align:center}
.ofor-xxzf-tdfirst{background:#f2f2f2;width:109px;border-right:1px solid #d9d9d9}
.shop_ofor-xxzf-table .ofor-xxzf-tdsec{background:#fff;width:268px;text-align:left;padding-left:20px}
.shop_ofor-xxzf_border{border:1px solid #d9d9d9;width:376px;background:#fff;padding:7px 0 7px 22px}
.shop_ofor-xxzf_border p{font-size:12px;color:#666;font-family:Arial, Helvetica, sans-serif;line-height:18px}
.ofor-xxzf-intent{text-indent:5.2em}
/*支付方式底部的帮助*/
.shop_ofor-help{border-top:1px solid #dbdbdb;margin-top:30px}
.shop_ofor-help h3{color:#666;font-size:14px;margin-top:30px;margin-bottom:6px}
.shop_ofor-help p{color:#666;font-size:12px;line-height:20px}
/*支付完成页面*/
.thebk_white{background:#fff;margin-bottom:30px}
.shop_pay-end{text-align:center;padding:48px 0 100px 0}
.shop_pay-end h2{font-family:"微软雅黑";color:#fe929b;font-size:30px;font-weight:100;margin-top:10px;padding-bottom:20px}
.shop_pay-cort{padding-bottom:20px}
.shop_pay-cort p{font-size:14px;color:#666;line-height:22px}
.shop_pay-cort a{color:#8e4f1b;text-decoration:underline;padding:0 6px}
/*新加*/
.shopagree_button .bt1 span,.shop_adress-save .bt1 span{background:url(../images/all-right_w.png) no-repeat left center;padding-left:14px}
.shopagree_button .bt1_hover,.shop_adress-save .bt1_hover{background:#caa752}
.shop_adress-tjdd .bt1 span{background:url(../images/all-right_w.png) no-repeat left center;padding-left:14px}
.shop_adress-tjdd .bt1_hover{background:#eb3535}
/*选中变颜色*/
.clickit_bk{background:#faffbd}

View File

@@ -0,0 +1,305 @@
@charset "utf-8";
html,body{width:100%;height:100%;}
body{margin:0;font-family:CustomFont,Microsoft YaHei,WenQuanYi Micro Hei,sans-serif;background:#fff;color:#333}
.clearfix:after{display:block; clear:both; content:""; visibility:hidden; height:0;}
.clearfix{zoom:1;}
i{font-style:normal;}
p{ padding: 0; margin: 0}
a{ text-decoration:none;}
*{margin:0;padding:0;}
img, fieldset, textarea{border:0;}
input, label, select, option, textarea, button, fieldset, legend{font:12px/18px Verdana, Simsun, Helvetica, Arial, sans-serif;}
table{border-collapse:collapse; border-spacing:0; font:12px/18px Verdana, Simsun, Helvetica, Arial, sans-serif;}
table td,table th { wrap-word:break-word;word-break:break-all;}
ul, ol{list-style:none; padding: 0; margin: 0}
em, q{font-style:normal;}
section{position:absolute;width:100%;height:100%;}
/*loading*/
.wrap{width:100%;height:100%;background:#fff;z-index:99999;}
/*head_top 头部*/
.head_top{height: 90px; min-width: 980px;width: 100%; background: #fff;}
.head_top .head {margin: 0 auto;position: relative;width: 980px;}
.topLeft {color: #888;cursor: default;font-size: 14px;margin-top: 25px;}
.topLeft a{ display: inline-block;}
.topLeft span {vertical-align: middle; font-family: "宋体"; font-size: 14px; color: #9b9b9b; height: 50px; padding-left: 20px; display: inline-block;}
.left {display: inline;float: left;}
.right { display: inline;float: right;}
.topRight { margin-top: 30px;overflow: hidden;}
.topRight li {
background: url("../images/tips.png") no-repeat scroll 0 0 rgba(0, 0, 0, 0);
color: #666;
float: left;
font-family: "微软雅黑";
font-size: 14px;
height: 27px;
line-height: 27px;
margin-left: 30px;
padding-left: 36px;
}
.topRight .tr_2 {
background-position: 0 -29px;
}
.topRight .tr_3 {
background-position: 0 -58px;
}
.head_bottom {
background: url("../images/tips_01.png") repeat-x scroll 0 0 rgba(0, 0, 0, 0);
height: 6px;
z-index: 1;
min-width: 980px;
width: 100%;
}
.container {
background: url("../images/bg_02.jpg") no-repeat top center;
min-height: 561px;
}
.cmain {
margin: 0 auto;
position: relative;
width: 980px;
}
.ddd {
left: 0;
overflow: hidden;
padding-bottom: 50px;
top: 0;
}
.cort-right {
position: relative;
margin-right: 3px;
margin-top: 80px;
width: 376px;
border-radius: 5px;
box-shadow:0 1px 10px #e3e3e4;
}
.r_bg{background: none repeat scroll 0 0 #fff; width: 376px; position: absolute; left: 0; top: 0; height: 100%; opacity: 0.6; border-radius: 8px;}
.cr_border {
padding: 26px 0 44px 38px;
position: relative;
z-index: 3;
border-radius:8px;
overflow: hidden;
}
.cr_border h3 {
background:url("../images/h3.jpg") no-repeat;
color: #666;
font-size: 16px;
text-align: center;
width: 288px;
height: 35px;
}
.the_input {
border: 1px solid #ccc;
border-radius: 5px;
height: 40px;
margin-top: 28px;
position: relative;
width: 298px;
}
.al_Input {
border: 0 none;
border-radius:5px;
color: #a6a6a6;
font-size: 14px;
height: 40px;
padding-left: 44px;
width: 254px;
}
.the_input span {
background: url("../images/mb.png") no-repeat scroll 0 0 rgba(0, 0, 0, 0);
display: inline-block;
height: 16px;
left: 11px;
position: absolute;
width: 17px;
}
.member {
top: 12px;
}
.the_input .password {
background-position: 0 -16px;
top: 11px;
}
.the_input i {
color: #a6a6a6;
font-size: 14px;
left: 44px;
position: absolute;
top: 12px;
}
.yz_input {
font-size: 0;
margin-top: 17px;
}
.yzm_input {
border: 1px solid #ccc;
color: #a6a6a6;
font-size: 14px;
margin-right: 10px;
padding: 11px 0 11px 14px;
vertical-align: middle;
width: 140px;
}
.yz_input a {
color: #0057a1;
font-size: 12px;
margin-left: 10px;
vertical-align: middle;
}
.other_input {
font-size: 0;
margin-top: 17px;
overflow: hidden;
width: 300px;
}
.other_input input {
vertical-align: middle;
}
.other_input label {
color: #888;
font-size: 12px;
margin-left: 8px;
vertical-align: middle;
}
.other_input span {
color: #888;
font-size: 12px;
vertical-align: middle;
}
.other_input a, .other_input i {
font-size: 12px;
color: #8e4f1b;
}
.other_input i {
color: #888;
padding: 0 8px;
}
.other_input .to_zc {
color: #8e4f1b;
vertical-align: middle;
}
.cr_border .other_input .to_zc {
color: #8e4f1b;
vertical-align: top;
}
.other_input .forget {
color: #888;
}
#login span{ cursor: pointer; width: 134px; height: 34px; border: 1px solid #d6b870; line-height: 34px; font-size:14px; color: #d6b870; text-align: center; display: inline-block; }
#login .focus{ background: #d6b870; color: #fff}
.other_hz {
font-size: 0;
margin-top: 44px;
width: 300px;
}
.other_hz p {
color: #d6b870;
font-size: 14px;
line-height: 34px;
padding-top: 10px;
border-top:1px solid #dbdbdd
}
.other_hz a {
display: inline-block;
height: 24px;
margin-left: 16px;
vertical-align: middle;
width: 25px;
}
.oth_qq {
background: url("../images/QQ.jpg") no-repeat scroll 0 0 rgba(0, 0, 0, 0);
}
.oth_wb {
background: url("../images/wb.jpg") no-repeat scroll 0 0 rgba(0, 0, 0, 0);
}
.oth_wx {
background: url("../images/wx.jpg") no-repeat scroll 0 0 rgba(0, 0, 0, 0);
}
.bc_yz {
margin-top: 50px;
overflow: hidden;
}
.db_cort {
padding-bottom: 60px;
}
.db_cort p {
color: #888;
font-family: "宋体";
font-size: 14px;
line-height: 32px;
text-align: center;
}
/*注册页*/
.photo_show .the_input span { background: url("../images/tips_02.png") no-repeat scroll 0 0 rgba(0, 0, 0, 0); display: inline-block; height: 16px; left: 11px; position: absolute; width: 17px;}
.photo_show .the_input .password {background-position: 0 -19px;top: 14px;}
.action{ width: 159px; height: 40px; line-height: 40px; text-align: center; color: #d6b870; font-size: 12px; border:1px solid #d6b870; border-radius: 5px; float: right;cursor: pointer;background-color: #fff}
.ls{ border-radius: 5px; border:1px solid #ccc;}
.photo_show .the_input .pw{background-position: 0 -40px;top: 14px;}
.photo_show .the_input{ margin-top: 15px;}
.photo_show .up{ width: 294px; height: 40px; line-height: 40px; background: #d6b870; border:0; color: #fff; font-size: 16px; font-weight: bold;cursor: pointer}
.photo_show .other_hz{ margin-top: 25px;}
.tits{ position: absolute; left: 0; top: 0}
.tits span{ position: relative; width: 185px; height: 40px; line-height: 40px; cursor: pointer; text-align: center; background: #cacac9; display: inline-block; color: #fff}
.tits span em{ background:url("../images/tips_05.png") no-repeat; width: 14px; left:40px; height: 22px; display: inline-block; position: absolute;top: 10px; }
.tits .em{ width: 186px}
.tits .em em{ background-position: 0 -22px; width: 22px; left: 30px; top: 12px;}
.tits .focus{ background: #d6b870;color: #fff}
.photo_show, .meail_show{ margin-top: 35px;}
.error{ border:1px solid #fd9696}
.ts_wrong{ border: 1px solid #dbc89e;background: #fff7d2;height: 24px;line-height: 21px;width: 298px;margin-top: 5px;}
.ts_wrong span { background: url(../images/bc.png) no-repeat left center;display: inline-block;color: #ff4040;font-size: 12px;padding-left: 24px;margin-left: 10px;}
.ts_right{ border: 1px solid #dbc89e;background: #fff7d2;height: 24px;line-height: 21px;width: 298px;margin-top: 5px;}
.ts_right span { background: url(../images/right.png) no-repeat left center;display: inline-block;color: #4BE053;font-size: 12px;padding-left: 24px;margin-left: 10px;}
.action_code{width: 152px; height: 40px; line-height: 40px; text-align: center; color: #d6b870; font-size: 12px; border:1px solid #d6b870; border-radius: 5px; float: right;cursor: pointer;background-color: #fff }
.f_special { color: #fd9696}
.email_send{ font-size: 13px;padding-top: 10px;width:296px;display: none}
.email_send img{ width: 24px;height: 24px;position: relative; top: 7px;}
.cr_border h4 {
background:url("../images/h4.jpg") no-repeat;
color: #666;
font-size: 16px;
text-align: center;
width: 288px;
height: 35px;
}
#login .remove{ width:299px; height:45px; line-height:45px; margin:20px 0 80px 0}
.the_input {
border: 1px solid #ccc;
border-radius: 5px;
height: 40px;
margin-top: 28px;
position: relative;
width: 298px;
}
/*何胜 2015-6-17*/
.validata {background: #fef3f1; }
.cmain ul { height:560px; text-align:center;}
.cmain ul li { padding-top: 50px;}
.cmain ul li p { line-height: 36px;font-size: 14px;font-family: "宋体";color: #888888}
.cmain ul li h3{color: #9b9b9b;font-weight: normal;font-size: 30px;font-family: "微软雅黑"; margin-bottom: 30px;}
.cmain ul li a{color: #c9a548;display: inline-block;margin-left: 8px;margin-right: 8px;}
.cmain ul li a:hover{text-decoration: underline;}
.bc_yz1{position: relative;z-index: 1;box-shadow: 0 -1px 4px #d9d9d9;height: 180px; }
.db_cort1 p:first-child {margin-top: 58px;}
.pic{margin-top: 76px;margin-bottom: 10px;}
.id_prove{margin-top:-70px;}
.mail_check{margin-top:37px}
.second_li{margin-top:-38px;}
.click_here{margin-top:30px;}
.accnum{margin-top:-72px;}
.accnum span{color:#666; font-family:Arial;}
.act_mail{margin-top:44px;}
.white{background-color: white;}

View File

@@ -0,0 +1,93 @@
/*
Uploadify
Copyright (c) 2012 Reactive Apps, Ronnie Garcia
Released under the MIT License <http://www.opensource.org/licenses/mit-license.php>
*/
.uploadify {
position: relative;
margin-bottom: 1em;
}
.uploadify-button {
background-color: #505050;
background-image: linear-gradient(bottom, #505050 0%, #707070 100%);
background-image: -o-linear-gradient(bottom, #505050 0%, #707070 100%);
background-image: -moz-linear-gradient(bottom, #505050 0%, #707070 100%);
background-image: -webkit-linear-gradient(bottom, #505050 0%, #707070 100%);
background-image: -ms-linear-gradient(bottom, #505050 0%, #707070 100%);
background-image: -webkit-gradient(
linear,
left bottom,
left top,
color-stop(0, #505050),
color-stop(1, #707070)
);
background-position: center top;
background-repeat: no-repeat;
-webkit-border-radius: 30px;
-moz-border-radius: 30px;
border-radius: 30px;
border: 2px solid #808080;
color: #FFF;
font: bold 12px Arial, Helvetica, sans-serif;
text-align: center;
text-shadow: 0 -1px 0 rgba(0,0,0,0.25);
width: 100%;
}
.uploadify:hover .uploadify-button {
background-color: #606060;
background-image: linear-gradient(top, #606060 0%, #808080 100%);
background-image: -o-linear-gradient(top, #606060 0%, #808080 100%);
background-image: -moz-linear-gradient(top, #606060 0%, #808080 100%);
background-image: -webkit-linear-gradient(top, #606060 0%, #808080 100%);
background-image: -ms-linear-gradient(top, #606060 0%, #808080 100%);
background-image: -webkit-gradient(
linear,
left bottom,
left top,
color-stop(0, #606060),
color-stop(1, #808080)
);
background-position: center bottom;
}
.member_person-upload .uploadify-button-text{color:#fff}
.uploadify-button.disabled {
background-color: #fff;
color: #808080;
}
.uploadify-queue {
margin-bottom: 1em;
}
.uploadify-queue-item {
background-color: #F5F5F5;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
font: 11px Verdana, Geneva, sans-serif;
margin-top: 5px;
max-width: 350px;
padding: 10px;
}
.uploadify-error {
background-color: #FDE5DD !important;
}
.uploadify-queue-item .cancel a {
background: url('../images/uploadify-cancel.png') 0 0 no-repeat;
float: right;
height: 16px;
text-indent: -9999px;
width: 16px;
}
.uploadify-queue-item.completed {
background-color: #E5E5E5;
}
.uploadify-progress {
background-color: #E5E5E5;
margin-top: 10px;
width: 100%;
}
.uploadify-progress-bar {
background-color: #0099FF;
height: 3px;
width: 1px;
}

View File

@@ -0,0 +1,41 @@
/*相同公用的*/
*{margin:0;padding:0}
li,ul{list-style:none;}
a{text-decoration:none}
input{outline:none;padding-left:4px}
img{border:0 none;vertical-align:middle;}
em,i{font-style:normal}
.fl{float:left;display:inline;}
.fr{float:right;display:inline}
/*清除浮动*/
.fix:after{content:" ";display:block;visibility:hidden;clear:both;height:0;line-height:0;}
.fix{*zoom:1;}
.all-thing{background:#fef3f1;overflow:hidden}
.wrong_wc{background:url(../images/bk_trp.jpg) repeat-x;width:100%;min-width:980px;height:584px}
/*980宽度*/
.cmain{width:980px;margin:0 auto;position:relative;clear:both}
/*500报错*/
.wrong_lm{background:url(../images/wrong_500.jpg) no-repeat;height:584px}
.wrong_word{font-size:0;padding-top:212px;margin-left:106px}
.wrong_word h3{font-size:50px;color:#444;font-family:arial;font-weight:100}
.wrong_word h4{font-size:32px;color:#ee7c72;font-family:"微软雅黑";font-weight:100;margin-bottom:32px;}
.wrong_word p{margin-bottom:12px}
.wrong_word i,.wrong_word span,.wrong_word a,.wrong_word em{font-size:12px;vertical-align:middle;}
.wrong_word i{color:#d90000}
.wrong_word a{color:#ee7c72}
.wrong_word a:hover{text-decoration:underline}
.wrong_word em{color:#c8c8c8;padding:0 4px}
/*404报错*/
.wrong_two{background:url(../images/wrong_404.jpg) no-repeat;height:584px}
/*商品下架*/
.wrong_bk{background:#fff;padding:114px 0 144px 0;margin-bottom:50px}
.wrong_bk .wrong_word{padding-top:70px;margin-left:10px}
.wrong_img{margin-left:112px}

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 56 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 46 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 47 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 46 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 46 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 47 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 46 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 47 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 53 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 46 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 47 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 53 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 52 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 83 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 81 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 71 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 60 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 78 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 75 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 64 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 85 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 70 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 85 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 70 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 52 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 53 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 111 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 102 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 55 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 76 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 47 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 38 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 69 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 69 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 81 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 93 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 28 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 94 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 71 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 106 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 94 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 50 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 52 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 49 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 70 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 100 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 55 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 65 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 65 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 55 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 74 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 80 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 55 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 61 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 61 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 58 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 44 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 53 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 44 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 108 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 98 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 54 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 55 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 49 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 61 KiB

Some files were not shown because too many files have changed in this diff Show More