diff --git a/.DS_Store b/.DS_Store
new file mode 100644
index 0000000..4e10745
Binary files /dev/null and b/.DS_Store differ
diff --git a/pom.xml b/pom.xml
index 75435d6..392a345 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1,41 +1,44 @@
- 4.0.0
-
- org.springframework.boot
- spring-boot-starter-parent
- 3.2.1
-
-
- com.gao
- final
- 0.0.1-SNAPSHOT
- final
- final
-
- 17
-
-
-
- org.springframework.boot
- spring-boot-starter-web
-
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
+ 4.0.0
+
+ org.springframework.boot
+ spring-boot-starter-parent
+ 3.2.1
+
+
+ com.gao
+ final
+ 0.0.1-SNAPSHOT
+ final
+ final
+
+ 17
+
+
+
+ org.springframework.boot
+ spring-boot-starter-web
+
+
+ org.springframework.boot
+ spring-boot-starter-thymeleaf
+
+
+ org.springframework.boot
+ spring-boot-starter-test
+ test
+
+
-
- org.springframework.boot
- spring-boot-starter-test
- test
-
-
-
-
-
-
- org.springframework.boot
- spring-boot-maven-plugin
-
-
-
+
+
+
+ org.springframework.boot
+ spring-boot-maven-plugin
+
+
+
diff --git a/src/.DS_Store b/src/.DS_Store
new file mode 100644
index 0000000..f033cc3
Binary files /dev/null and b/src/.DS_Store differ
diff --git a/src/main/.DS_Store b/src/main/.DS_Store
new file mode 100644
index 0000000..3cbffee
Binary files /dev/null and b/src/main/.DS_Store differ
diff --git a/src/main/java/com/gao/finalhw/FinalApplication.java b/src/main/java/com/gao/finalhw/FinalApplication.java
index eedbac2..633f4e5 100644
--- a/src/main/java/com/gao/finalhw/FinalApplication.java
+++ b/src/main/java/com/gao/finalhw/FinalApplication.java
@@ -1,4 +1,4 @@
-package com.gao.finalh;
+package com.gao.finalhw;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
diff --git a/src/main/java/com/gao/finalhw/controller/CartPageController.java b/src/main/java/com/gao/finalhw/controller/CartPageController.java
index 4e6ca1f..9120c5b 100644
--- a/src/main/java/com/gao/finalhw/controller/CartPageController.java
+++ b/src/main/java/com/gao/finalhw/controller/CartPageController.java
@@ -1,2 +1,29 @@
-package com.gao.finalhw.controller;public class CartPageController {
+package com.gao.finalhw.controller;
+
+import org.springframework.stereotype.Controller;
+import org.springframework.web.bind.annotation.GetMapping;
+
+@Controller
+public class CartPageController {
+
+ @GetMapping("/cart")
+ public String cartPage() {
+ return "cart";
+ }
+
+ @GetMapping("/cart_agreement")
+ public String cartAgreementPage() {
+ return "cart_agreement";
+ }
+
+ @GetMapping("/cart_order")
+ public String cartOrderPage() {
+ return "cart_order";
+ }
+
+
+ @GetMapping("/cart_oder_success")
+ public String cartOrderSuccessPage() {
+ return "cart_order_success";
+ }
}
diff --git a/src/main/java/com/gao/finalhw/controller/MemberPageController.java b/src/main/java/com/gao/finalhw/controller/MemberPageController.java
index c85c701..8194976 100644
--- a/src/main/java/com/gao/finalhw/controller/MemberPageController.java
+++ b/src/main/java/com/gao/finalhw/controller/MemberPageController.java
@@ -1,2 +1,42 @@
-package com.gao.finalhw.controller;public class MemberPageController {
+package com.gao.finalhw.controller;
+
+import org.springframework.stereotype.Controller;
+import org.springframework.web.bind.annotation.GetMapping;
+
+@Controller
+public class MemberPageController {
+
+ @GetMapping("/member_addr")
+ public String MemberAddrPage() {
+ return "member_addr";
+ }
+
+ @GetMapping("/member_avatar")
+ public String MemberAvatarPage() {
+ return "member_avatar";
+ }
+
+ @GetMapping("/member_index")
+ public String MemberIndexPage() {
+ return "member_index";
+ }
+
+ @GetMapping("/member_info")
+ public String MemberInfoPage() {
+ return "member_info";
+ }
+
+ @GetMapping("/member_order")
+ public String MemberOrderPage() {
+ return "member_order";
+ }
+
+ @GetMapping("/member_order_detail")
+ public String MemberOrderDetailPage() {
+ return "member_order_detail";
+ }
+ @GetMapping("/member_pwd")
+ public String MemberPwdPage() {
+ return "member_pwd";
+ }
}
diff --git a/src/main/java/com/gao/finalhw/controller/PageController.java b/src/main/java/com/gao/finalhw/controller/PageController.java
index 4b0a1f1..95124d1 100644
--- a/src/main/java/com/gao/finalhw/controller/PageController.java
+++ b/src/main/java/com/gao/finalhw/controller/PageController.java
@@ -1,2 +1,66 @@
-package com.gao.finalhw.controller;public class PageController {
+package com.gao.finalhw.controller;
+
+
+import org.springframework.stereotype.Controller;
+import org.springframework.web.bind.annotation.GetMapping;
+
+
+@Controller
+public class PageController {
+ @GetMapping("/")
+ public String rootPage() {
+ return "index";
+ }
+
+ @GetMapping("/index")
+ public String indexPage() {
+ return "index";
+ }
+
+ @GetMapping("/brand")
+ public String brandPage() {
+ return "brand";
+ }
+
+ @GetMapping("/lists")
+ public String listsPage() {
+ return "lists";
+ }
+
+ @GetMapping("/question")
+ public String questionPage() {
+ return "question";
+ }
+
+
+ @GetMapping("/login")
+ public String loginPage() {
+ return "login";
+ }
+
+ @GetMapping("/reg")
+ public String regPage() {
+ return "reg";
+ }
+
+ @GetMapping("/error")
+ public String errorPage() {
+ return "404";
+ }
+
+ @GetMapping("/detail")
+ public String detailPage() {
+ return "detail";
+ }
+
+ @GetMapping("/forget")
+ public String forgetPage() {
+ return "forget";
+ }
+
+ @GetMapping("/help")
+ public String helpPage() {
+ return "help";
+ }
+
}
diff --git a/src/main/java/com/gao/finalhw/controller/UserController.java b/src/main/java/com/gao/finalhw/controller/UserController.java
index cc104cf..e85f920 100644
--- a/src/main/java/com/gao/finalhw/controller/UserController.java
+++ b/src/main/java/com/gao/finalhw/controller/UserController.java
@@ -1,2 +1,8 @@
-package com.gao.finalhw.controller;public class UserController {
+package com.gao.finalhw.controller;
+
+import org.springframework.web.bind.annotation.RestController;
+
+@RestController
+public class UserController {
+
}
diff --git a/src/main/java/com/gao/finalhw/mapper/AddressMapper.java b/src/main/java/com/gao/finalhw/mapper/AddressMapper.java
new file mode 100644
index 0000000..8994fa6
--- /dev/null
+++ b/src/main/java/com/gao/finalhw/mapper/AddressMapper.java
@@ -0,0 +1,18 @@
+package com.gao.finalhw.mapper;
+
+import com.gao.finalhw.model.Address;
+import com.baomidou.mybatisplus.core.mapper.BaseMapper;
+
+/**
+* @author wangsiyuan
+* @description 针对表【address】的数据库操作Mapper
+* @createDate 2024-01-18 15:21:27
+* @Entity com.gao.finalhw.model.Address
+*/
+public interface AddressMapper extends BaseMapper
{
+
+}
+
+
+
+
diff --git a/src/main/java/com/gao/finalhw/mapper/OrdersMapper.java b/src/main/java/com/gao/finalhw/mapper/OrdersMapper.java
new file mode 100644
index 0000000..65fe110
--- /dev/null
+++ b/src/main/java/com/gao/finalhw/mapper/OrdersMapper.java
@@ -0,0 +1,18 @@
+package com.gao.finalhw.mapper;
+
+import com.gao.finalhw.model.Orders;
+import com.baomidou.mybatisplus.core.mapper.BaseMapper;
+
+/**
+* @author wangsiyuan
+* @description 针对表【orders】的数据库操作Mapper
+* @createDate 2024-01-18 15:21:27
+* @Entity com.gao.finalhw.model.Orders
+*/
+public interface OrdersMapper extends BaseMapper {
+
+}
+
+
+
+
diff --git a/src/main/java/com/gao/finalhw/mapper/RingMapper.java b/src/main/java/com/gao/finalhw/mapper/RingMapper.java
new file mode 100644
index 0000000..147adf0
--- /dev/null
+++ b/src/main/java/com/gao/finalhw/mapper/RingMapper.java
@@ -0,0 +1,18 @@
+package com.gao.finalhw.mapper;
+
+import com.gao.finalhw.model.Ring;
+import com.baomidou.mybatisplus.core.mapper.BaseMapper;
+
+/**
+* @author wangsiyuan
+* @description 针对表【ring】的数据库操作Mapper
+* @createDate 2024-01-18 15:21:27
+* @Entity com.gao.finalhw.model.Ring
+*/
+public interface RingMapper extends BaseMapper {
+
+}
+
+
+
+
diff --git a/src/main/java/com/gao/finalhw/mapper/ShoppingCartMapper.java b/src/main/java/com/gao/finalhw/mapper/ShoppingCartMapper.java
new file mode 100644
index 0000000..5b2af56
--- /dev/null
+++ b/src/main/java/com/gao/finalhw/mapper/ShoppingCartMapper.java
@@ -0,0 +1,18 @@
+package com.gao.finalhw.mapper;
+
+import com.gao.finalhw.model.ShoppingCart;
+import com.baomidou.mybatisplus.core.mapper.BaseMapper;
+
+/**
+* @author wangsiyuan
+* @description 针对表【shopping_cart】的数据库操作Mapper
+* @createDate 2024-01-18 15:21:27
+* @Entity com.gao.finalhw.model.ShoppingCart
+*/
+public interface ShoppingCartMapper extends BaseMapper {
+
+}
+
+
+
+
diff --git a/src/main/java/com/gao/finalhw/mapper/UserInfoMapper.java b/src/main/java/com/gao/finalhw/mapper/UserInfoMapper.java
new file mode 100644
index 0000000..c3cd2d0
--- /dev/null
+++ b/src/main/java/com/gao/finalhw/mapper/UserInfoMapper.java
@@ -0,0 +1,18 @@
+package com.gao.finalhw.mapper;
+
+import com.gao.finalhw.model.UserInfo;
+import com.baomidou.mybatisplus.core.mapper.BaseMapper;
+
+/**
+* @author wangsiyuan
+* @description 针对表【user_info】的数据库操作Mapper
+* @createDate 2024-01-18 15:21:27
+* @Entity com.gao.finalhw.model.UserInfo
+*/
+public interface UserInfoMapper extends BaseMapper {
+
+}
+
+
+
+
diff --git a/src/main/java/com/gao/finalhw/mapper/UserMapper.java b/src/main/java/com/gao/finalhw/mapper/UserMapper.java
new file mode 100644
index 0000000..c5de3df
--- /dev/null
+++ b/src/main/java/com/gao/finalhw/mapper/UserMapper.java
@@ -0,0 +1,18 @@
+package com.gao.finalhw.mapper;
+
+import com.gao.finalhw.model.User;
+import com.baomidou.mybatisplus.core.mapper.BaseMapper;
+
+/**
+* @author wangsiyuan
+* @description 针对表【user】的数据库操作Mapper
+* @createDate 2024-01-18 15:21:27
+* @Entity com.gao.finalhw.model.User
+*/
+public interface UserMapper extends BaseMapper {
+
+}
+
+
+
+
diff --git a/src/main/java/com/gao/finalhw/model/Address.java b/src/main/java/com/gao/finalhw/model/Address.java
new file mode 100644
index 0000000..b3e3d10
--- /dev/null
+++ b/src/main/java/com/gao/finalhw/model/Address.java
@@ -0,0 +1,175 @@
+package com.gao.finalhw.model;
+
+import java.io.Serializable;
+
+/**
+ *
+ * @TableName address
+ */
+public class Address implements Serializable {
+ /**
+ *
+ */
+ private Integer addrId;
+
+ /**
+ *
+ */
+ private Integer userId;
+
+ /**
+ *
+ */
+ private String userName;
+
+ /**
+ *
+ */
+ private String detailedAddress;
+
+ /**
+ *
+ */
+ private String contactInfo;
+
+ /**
+ *
+ */
+ private String postalCode;
+
+ private static final long serialVersionUID = 1L;
+
+ /**
+ *
+ */
+ public Integer getAddrId() {
+ return addrId;
+ }
+
+ /**
+ *
+ */
+ public void setAddrId(Integer addrId) {
+ this.addrId = addrId;
+ }
+
+ /**
+ *
+ */
+ public Integer getUserId() {
+ return userId;
+ }
+
+ /**
+ *
+ */
+ public void setUserId(Integer userId) {
+ this.userId = userId;
+ }
+
+ /**
+ *
+ */
+ public String getUserName() {
+ return userName;
+ }
+
+ /**
+ *
+ */
+ public void setUserName(String userName) {
+ this.userName = userName;
+ }
+
+ /**
+ *
+ */
+ public String getDetailedAddress() {
+ return detailedAddress;
+ }
+
+ /**
+ *
+ */
+ public void setDetailedAddress(String detailedAddress) {
+ this.detailedAddress = detailedAddress;
+ }
+
+ /**
+ *
+ */
+ public String getContactInfo() {
+ return contactInfo;
+ }
+
+ /**
+ *
+ */
+ public void setContactInfo(String contactInfo) {
+ this.contactInfo = contactInfo;
+ }
+
+ /**
+ *
+ */
+ public String getPostalCode() {
+ return postalCode;
+ }
+
+ /**
+ *
+ */
+ public void setPostalCode(String postalCode) {
+ this.postalCode = postalCode;
+ }
+
+ @Override
+ public boolean equals(Object that) {
+ if (this == that) {
+ return true;
+ }
+ if (that == null) {
+ return false;
+ }
+ if (getClass() != that.getClass()) {
+ return false;
+ }
+ Address other = (Address) that;
+ return (this.getAddrId() == null ? other.getAddrId() == null : this.getAddrId().equals(other.getAddrId()))
+ && (this.getUserId() == null ? other.getUserId() == null : this.getUserId().equals(other.getUserId()))
+ && (this.getUserName() == null ? other.getUserName() == null : this.getUserName().equals(other.getUserName()))
+ && (this.getDetailedAddress() == null ? other.getDetailedAddress() == null : this.getDetailedAddress().equals(other.getDetailedAddress()))
+ && (this.getContactInfo() == null ? other.getContactInfo() == null : this.getContactInfo().equals(other.getContactInfo()))
+ && (this.getPostalCode() == null ? other.getPostalCode() == null : this.getPostalCode().equals(other.getPostalCode()));
+ }
+
+ @Override
+ public int hashCode() {
+ final int prime = 31;
+ int result = 1;
+ result = prime * result + ((getAddrId() == null) ? 0 : getAddrId().hashCode());
+ result = prime * result + ((getUserId() == null) ? 0 : getUserId().hashCode());
+ result = prime * result + ((getUserName() == null) ? 0 : getUserName().hashCode());
+ result = prime * result + ((getDetailedAddress() == null) ? 0 : getDetailedAddress().hashCode());
+ result = prime * result + ((getContactInfo() == null) ? 0 : getContactInfo().hashCode());
+ result = prime * result + ((getPostalCode() == null) ? 0 : getPostalCode().hashCode());
+ return result;
+ }
+
+ @Override
+ public String toString() {
+ StringBuilder sb = new StringBuilder();
+ sb.append(getClass().getSimpleName());
+ sb.append(" [");
+ sb.append("Hash = ").append(hashCode());
+ sb.append(", addrId=").append(addrId);
+ sb.append(", userId=").append(userId);
+ sb.append(", userName=").append(userName);
+ sb.append(", detailedAddress=").append(detailedAddress);
+ sb.append(", contactInfo=").append(contactInfo);
+ sb.append(", postalCode=").append(postalCode);
+ sb.append(", serialVersionUID=").append(serialVersionUID);
+ sb.append("]");
+ return sb.toString();
+ }
+}
\ No newline at end of file
diff --git a/src/main/java/com/gao/finalhw/model/Orders.java b/src/main/java/com/gao/finalhw/model/Orders.java
new file mode 100644
index 0000000..638bd5f
--- /dev/null
+++ b/src/main/java/com/gao/finalhw/model/Orders.java
@@ -0,0 +1,176 @@
+package com.gao.finalhw.model;
+
+import java.io.Serializable;
+import java.util.Date;
+
+/**
+ *
+ * @TableName orders
+ */
+public class Orders implements Serializable {
+ /**
+ *
+ */
+ private Integer orderId;
+
+ /**
+ *
+ */
+ private Integer userId;
+
+ /**
+ *
+ */
+ private Integer ringId;
+
+ /**
+ *
+ */
+ private Float totalAmount;
+
+ /**
+ *
+ */
+ private String orderStatus;
+
+ /**
+ *
+ */
+ private Date orderDate;
+
+ private static final long serialVersionUID = 1L;
+
+ /**
+ *
+ */
+ public Integer getOrderId() {
+ return orderId;
+ }
+
+ /**
+ *
+ */
+ public void setOrderId(Integer orderId) {
+ this.orderId = orderId;
+ }
+
+ /**
+ *
+ */
+ public Integer getUserId() {
+ return userId;
+ }
+
+ /**
+ *
+ */
+ public void setUserId(Integer userId) {
+ this.userId = userId;
+ }
+
+ /**
+ *
+ */
+ public Integer getRingId() {
+ return ringId;
+ }
+
+ /**
+ *
+ */
+ public void setRingId(Integer ringId) {
+ this.ringId = ringId;
+ }
+
+ /**
+ *
+ */
+ public Float getTotalAmount() {
+ return totalAmount;
+ }
+
+ /**
+ *
+ */
+ public void setTotalAmount(Float totalAmount) {
+ this.totalAmount = totalAmount;
+ }
+
+ /**
+ *
+ */
+ public String getOrderStatus() {
+ return orderStatus;
+ }
+
+ /**
+ *
+ */
+ public void setOrderStatus(String orderStatus) {
+ this.orderStatus = orderStatus;
+ }
+
+ /**
+ *
+ */
+ public Date getOrderDate() {
+ return orderDate;
+ }
+
+ /**
+ *
+ */
+ public void setOrderDate(Date orderDate) {
+ this.orderDate = orderDate;
+ }
+
+ @Override
+ public boolean equals(Object that) {
+ if (this == that) {
+ return true;
+ }
+ if (that == null) {
+ return false;
+ }
+ if (getClass() != that.getClass()) {
+ return false;
+ }
+ Orders other = (Orders) that;
+ return (this.getOrderId() == null ? other.getOrderId() == null : this.getOrderId().equals(other.getOrderId()))
+ && (this.getUserId() == null ? other.getUserId() == null : this.getUserId().equals(other.getUserId()))
+ && (this.getRingId() == null ? other.getRingId() == null : this.getRingId().equals(other.getRingId()))
+ && (this.getTotalAmount() == null ? other.getTotalAmount() == null : this.getTotalAmount().equals(other.getTotalAmount()))
+ && (this.getOrderStatus() == null ? other.getOrderStatus() == null : this.getOrderStatus().equals(other.getOrderStatus()))
+ && (this.getOrderDate() == null ? other.getOrderDate() == null : this.getOrderDate().equals(other.getOrderDate()));
+ }
+
+ @Override
+ public int hashCode() {
+ final int prime = 31;
+ int result = 1;
+ result = prime * result + ((getOrderId() == null) ? 0 : getOrderId().hashCode());
+ result = prime * result + ((getUserId() == null) ? 0 : getUserId().hashCode());
+ result = prime * result + ((getRingId() == null) ? 0 : getRingId().hashCode());
+ result = prime * result + ((getTotalAmount() == null) ? 0 : getTotalAmount().hashCode());
+ result = prime * result + ((getOrderStatus() == null) ? 0 : getOrderStatus().hashCode());
+ result = prime * result + ((getOrderDate() == null) ? 0 : getOrderDate().hashCode());
+ return result;
+ }
+
+ @Override
+ public String toString() {
+ StringBuilder sb = new StringBuilder();
+ sb.append(getClass().getSimpleName());
+ sb.append(" [");
+ sb.append("Hash = ").append(hashCode());
+ sb.append(", orderId=").append(orderId);
+ sb.append(", userId=").append(userId);
+ sb.append(", ringId=").append(ringId);
+ sb.append(", totalAmount=").append(totalAmount);
+ sb.append(", orderStatus=").append(orderStatus);
+ sb.append(", orderDate=").append(orderDate);
+ sb.append(", serialVersionUID=").append(serialVersionUID);
+ sb.append("]");
+ return sb.toString();
+ }
+}
\ No newline at end of file
diff --git a/src/main/java/com/gao/finalhw/model/Ring.java b/src/main/java/com/gao/finalhw/model/Ring.java
new file mode 100644
index 0000000..5700e36
--- /dev/null
+++ b/src/main/java/com/gao/finalhw/model/Ring.java
@@ -0,0 +1,241 @@
+package com.gao.finalhw.model;
+
+import java.io.Serializable;
+
+/**
+ *
+ * @TableName ring
+ */
+public class Ring implements Serializable {
+ /**
+ *
+ */
+ private Integer id;
+
+ /**
+ *
+ */
+ private String name;
+
+ /**
+ *
+ */
+ private String series;
+
+ /**
+ *
+ */
+ private String style;
+
+ /**
+ *
+ */
+ private Integer weight;
+
+ /**
+ *
+ */
+ private String color;
+
+ /**
+ *
+ */
+ private Float price;
+
+ /**
+ *
+ */
+ private Integer soldNumber;
+
+ /**
+ *
+ */
+ private String imageFile;
+
+ private static final long serialVersionUID = 1L;
+
+ /**
+ *
+ */
+ public Integer getId() {
+ return id;
+ }
+
+ /**
+ *
+ */
+ public void setId(Integer id) {
+ this.id = id;
+ }
+
+ /**
+ *
+ */
+ public String getName() {
+ return name;
+ }
+
+ /**
+ *
+ */
+ public void setName(String name) {
+ this.name = name;
+ }
+
+ /**
+ *
+ */
+ public String getSeries() {
+ return series;
+ }
+
+ /**
+ *
+ */
+ public void setSeries(String series) {
+ this.series = series;
+ }
+
+ /**
+ *
+ */
+ public String getStyle() {
+ return style;
+ }
+
+ /**
+ *
+ */
+ public void setStyle(String style) {
+ this.style = style;
+ }
+
+ /**
+ *
+ */
+ public Integer getWeight() {
+ return weight;
+ }
+
+ /**
+ *
+ */
+ public void setWeight(Integer weight) {
+ this.weight = weight;
+ }
+
+ /**
+ *
+ */
+ public String getColor() {
+ return color;
+ }
+
+ /**
+ *
+ */
+ public void setColor(String color) {
+ this.color = color;
+ }
+
+ /**
+ *
+ */
+ public Float getPrice() {
+ return price;
+ }
+
+ /**
+ *
+ */
+ public void setPrice(Float price) {
+ this.price = price;
+ }
+
+ /**
+ *
+ */
+ public Integer getSoldNumber() {
+ return soldNumber;
+ }
+
+ /**
+ *
+ */
+ public void setSoldNumber(Integer soldNumber) {
+ this.soldNumber = soldNumber;
+ }
+
+ /**
+ *
+ */
+ public String getImageFile() {
+ return imageFile;
+ }
+
+ /**
+ *
+ */
+ public void setImageFile(String imageFile) {
+ this.imageFile = imageFile;
+ }
+
+ @Override
+ public boolean equals(Object that) {
+ if (this == that) {
+ return true;
+ }
+ if (that == null) {
+ return false;
+ }
+ if (getClass() != that.getClass()) {
+ return false;
+ }
+ Ring other = (Ring) that;
+ return (this.getId() == null ? other.getId() == null : this.getId().equals(other.getId()))
+ && (this.getName() == null ? other.getName() == null : this.getName().equals(other.getName()))
+ && (this.getSeries() == null ? other.getSeries() == null : this.getSeries().equals(other.getSeries()))
+ && (this.getStyle() == null ? other.getStyle() == null : this.getStyle().equals(other.getStyle()))
+ && (this.getWeight() == null ? other.getWeight() == null : this.getWeight().equals(other.getWeight()))
+ && (this.getColor() == null ? other.getColor() == null : this.getColor().equals(other.getColor()))
+ && (this.getPrice() == null ? other.getPrice() == null : this.getPrice().equals(other.getPrice()))
+ && (this.getSoldNumber() == null ? other.getSoldNumber() == null : this.getSoldNumber().equals(other.getSoldNumber()))
+ && (this.getImageFile() == null ? other.getImageFile() == null : this.getImageFile().equals(other.getImageFile()));
+ }
+
+ @Override
+ public int hashCode() {
+ final int prime = 31;
+ int result = 1;
+ result = prime * result + ((getId() == null) ? 0 : getId().hashCode());
+ result = prime * result + ((getName() == null) ? 0 : getName().hashCode());
+ result = prime * result + ((getSeries() == null) ? 0 : getSeries().hashCode());
+ result = prime * result + ((getStyle() == null) ? 0 : getStyle().hashCode());
+ result = prime * result + ((getWeight() == null) ? 0 : getWeight().hashCode());
+ result = prime * result + ((getColor() == null) ? 0 : getColor().hashCode());
+ result = prime * result + ((getPrice() == null) ? 0 : getPrice().hashCode());
+ result = prime * result + ((getSoldNumber() == null) ? 0 : getSoldNumber().hashCode());
+ result = prime * result + ((getImageFile() == null) ? 0 : getImageFile().hashCode());
+ return result;
+ }
+
+ @Override
+ public String toString() {
+ StringBuilder sb = new StringBuilder();
+ sb.append(getClass().getSimpleName());
+ sb.append(" [");
+ sb.append("Hash = ").append(hashCode());
+ sb.append(", id=").append(id);
+ sb.append(", name=").append(name);
+ sb.append(", series=").append(series);
+ sb.append(", style=").append(style);
+ sb.append(", weight=").append(weight);
+ sb.append(", color=").append(color);
+ sb.append(", price=").append(price);
+ sb.append(", soldNumber=").append(soldNumber);
+ sb.append(", imageFile=").append(imageFile);
+ sb.append(", serialVersionUID=").append(serialVersionUID);
+ sb.append("]");
+ return sb.toString();
+ }
+}
\ No newline at end of file
diff --git a/src/main/java/com/gao/finalhw/model/ShoppingCart.java b/src/main/java/com/gao/finalhw/model/ShoppingCart.java
new file mode 100644
index 0000000..22a65e1
--- /dev/null
+++ b/src/main/java/com/gao/finalhw/model/ShoppingCart.java
@@ -0,0 +1,131 @@
+package com.gao.finalhw.model;
+
+import java.io.Serializable;
+
+/**
+ *
+ * @TableName shopping_cart
+ */
+public class ShoppingCart implements Serializable {
+ /**
+ *
+ */
+ private Integer cartId;
+
+ /**
+ *
+ */
+ private Integer ringId;
+
+ /**
+ *
+ */
+ private Integer quantity;
+
+ /**
+ *
+ */
+ private Integer userId;
+
+ private static final long serialVersionUID = 1L;
+
+ /**
+ *
+ */
+ public Integer getCartId() {
+ return cartId;
+ }
+
+ /**
+ *
+ */
+ public void setCartId(Integer cartId) {
+ this.cartId = cartId;
+ }
+
+ /**
+ *
+ */
+ public Integer getRingId() {
+ return ringId;
+ }
+
+ /**
+ *
+ */
+ public void setRingId(Integer ringId) {
+ this.ringId = ringId;
+ }
+
+ /**
+ *
+ */
+ public Integer getQuantity() {
+ return quantity;
+ }
+
+ /**
+ *
+ */
+ public void setQuantity(Integer quantity) {
+ this.quantity = quantity;
+ }
+
+ /**
+ *
+ */
+ public Integer getUserId() {
+ return userId;
+ }
+
+ /**
+ *
+ */
+ public void setUserId(Integer userId) {
+ this.userId = userId;
+ }
+
+ @Override
+ public boolean equals(Object that) {
+ if (this == that) {
+ return true;
+ }
+ if (that == null) {
+ return false;
+ }
+ if (getClass() != that.getClass()) {
+ return false;
+ }
+ ShoppingCart other = (ShoppingCart) that;
+ return (this.getCartId() == null ? other.getCartId() == null : this.getCartId().equals(other.getCartId()))
+ && (this.getRingId() == null ? other.getRingId() == null : this.getRingId().equals(other.getRingId()))
+ && (this.getQuantity() == null ? other.getQuantity() == null : this.getQuantity().equals(other.getQuantity()))
+ && (this.getUserId() == null ? other.getUserId() == null : this.getUserId().equals(other.getUserId()));
+ }
+
+ @Override
+ public int hashCode() {
+ final int prime = 31;
+ int result = 1;
+ result = prime * result + ((getCartId() == null) ? 0 : getCartId().hashCode());
+ result = prime * result + ((getRingId() == null) ? 0 : getRingId().hashCode());
+ result = prime * result + ((getQuantity() == null) ? 0 : getQuantity().hashCode());
+ result = prime * result + ((getUserId() == null) ? 0 : getUserId().hashCode());
+ return result;
+ }
+
+ @Override
+ public String toString() {
+ StringBuilder sb = new StringBuilder();
+ sb.append(getClass().getSimpleName());
+ sb.append(" [");
+ sb.append("Hash = ").append(hashCode());
+ sb.append(", cartId=").append(cartId);
+ sb.append(", ringId=").append(ringId);
+ sb.append(", quantity=").append(quantity);
+ sb.append(", userId=").append(userId);
+ sb.append(", serialVersionUID=").append(serialVersionUID);
+ sb.append("]");
+ return sb.toString();
+ }
+}
\ No newline at end of file
diff --git a/src/main/java/com/gao/finalhw/model/User.java b/src/main/java/com/gao/finalhw/model/User.java
new file mode 100644
index 0000000..1567505
--- /dev/null
+++ b/src/main/java/com/gao/finalhw/model/User.java
@@ -0,0 +1,131 @@
+package com.gao.finalhw.model;
+
+import java.io.Serializable;
+
+/**
+ *
+ * @TableName user
+ */
+public class User implements Serializable {
+ /**
+ *
+ */
+ private Integer userId;
+
+ /**
+ *
+ */
+ private String userName;
+
+ /**
+ *
+ */
+ private String phoneNumber;
+
+ /**
+ *
+ */
+ private String password;
+
+ private static final long serialVersionUID = 1L;
+
+ /**
+ *
+ */
+ public Integer getUserId() {
+ return userId;
+ }
+
+ /**
+ *
+ */
+ public void setUserId(Integer userId) {
+ this.userId = userId;
+ }
+
+ /**
+ *
+ */
+ public String getUserName() {
+ return userName;
+ }
+
+ /**
+ *
+ */
+ public void setUserName(String userName) {
+ this.userName = userName;
+ }
+
+ /**
+ *
+ */
+ public String getPhoneNumber() {
+ return phoneNumber;
+ }
+
+ /**
+ *
+ */
+ public void setPhoneNumber(String phoneNumber) {
+ this.phoneNumber = phoneNumber;
+ }
+
+ /**
+ *
+ */
+ public String getPassword() {
+ return password;
+ }
+
+ /**
+ *
+ */
+ public void setPassword(String password) {
+ this.password = password;
+ }
+
+ @Override
+ public boolean equals(Object that) {
+ if (this == that) {
+ return true;
+ }
+ if (that == null) {
+ return false;
+ }
+ if (getClass() != that.getClass()) {
+ return false;
+ }
+ User other = (User) that;
+ return (this.getUserId() == null ? other.getUserId() == null : this.getUserId().equals(other.getUserId()))
+ && (this.getUserName() == null ? other.getUserName() == null : this.getUserName().equals(other.getUserName()))
+ && (this.getPhoneNumber() == null ? other.getPhoneNumber() == null : this.getPhoneNumber().equals(other.getPhoneNumber()))
+ && (this.getPassword() == null ? other.getPassword() == null : this.getPassword().equals(other.getPassword()));
+ }
+
+ @Override
+ public int hashCode() {
+ final int prime = 31;
+ int result = 1;
+ result = prime * result + ((getUserId() == null) ? 0 : getUserId().hashCode());
+ result = prime * result + ((getUserName() == null) ? 0 : getUserName().hashCode());
+ result = prime * result + ((getPhoneNumber() == null) ? 0 : getPhoneNumber().hashCode());
+ result = prime * result + ((getPassword() == null) ? 0 : getPassword().hashCode());
+ return result;
+ }
+
+ @Override
+ public String toString() {
+ StringBuilder sb = new StringBuilder();
+ sb.append(getClass().getSimpleName());
+ sb.append(" [");
+ sb.append("Hash = ").append(hashCode());
+ sb.append(", userId=").append(userId);
+ sb.append(", userName=").append(userName);
+ sb.append(", phoneNumber=").append(phoneNumber);
+ sb.append(", password=").append(password);
+ sb.append(", serialVersionUID=").append(serialVersionUID);
+ sb.append("]");
+ return sb.toString();
+ }
+}
\ No newline at end of file
diff --git a/src/main/java/com/gao/finalhw/model/UserInfo.java b/src/main/java/com/gao/finalhw/model/UserInfo.java
new file mode 100644
index 0000000..4eef212
--- /dev/null
+++ b/src/main/java/com/gao/finalhw/model/UserInfo.java
@@ -0,0 +1,220 @@
+package com.gao.finalhw.model;
+
+import java.io.Serializable;
+import java.util.Date;
+
+/**
+ *
+ * @TableName user_info
+ */
+public class UserInfo implements Serializable {
+ /**
+ *
+ */
+ private Integer userInfoId;
+
+ /**
+ *
+ */
+ private Integer userId;
+
+ /**
+ *
+ */
+ private String nickname;
+
+ /**
+ *
+ */
+ private String realName;
+
+ /**
+ *
+ */
+ private String gender;
+
+ /**
+ *
+ */
+ private Date birthDate;
+
+ /**
+ *
+ */
+ private String detailedAddress;
+
+ /**
+ *
+ */
+ private String phoneNumber;
+
+ private static final long serialVersionUID = 1L;
+
+ /**
+ *
+ */
+ public Integer getUserInfoId() {
+ return userInfoId;
+ }
+
+ /**
+ *
+ */
+ public void setUserInfoId(Integer userInfoId) {
+ this.userInfoId = userInfoId;
+ }
+
+ /**
+ *
+ */
+ public Integer getUserId() {
+ return userId;
+ }
+
+ /**
+ *
+ */
+ public void setUserId(Integer userId) {
+ this.userId = userId;
+ }
+
+ /**
+ *
+ */
+ public String getNickname() {
+ return nickname;
+ }
+
+ /**
+ *
+ */
+ public void setNickname(String nickname) {
+ this.nickname = nickname;
+ }
+
+ /**
+ *
+ */
+ public String getRealName() {
+ return realName;
+ }
+
+ /**
+ *
+ */
+ public void setRealName(String realName) {
+ this.realName = realName;
+ }
+
+ /**
+ *
+ */
+ public String getGender() {
+ return gender;
+ }
+
+ /**
+ *
+ */
+ public void setGender(String gender) {
+ this.gender = gender;
+ }
+
+ /**
+ *
+ */
+ public Date getBirthDate() {
+ return birthDate;
+ }
+
+ /**
+ *
+ */
+ public void setBirthDate(Date birthDate) {
+ this.birthDate = birthDate;
+ }
+
+ /**
+ *
+ */
+ public String getDetailedAddress() {
+ return detailedAddress;
+ }
+
+ /**
+ *
+ */
+ public void setDetailedAddress(String detailedAddress) {
+ this.detailedAddress = detailedAddress;
+ }
+
+ /**
+ *
+ */
+ public String getPhoneNumber() {
+ return phoneNumber;
+ }
+
+ /**
+ *
+ */
+ public void setPhoneNumber(String phoneNumber) {
+ this.phoneNumber = phoneNumber;
+ }
+
+ @Override
+ public boolean equals(Object that) {
+ if (this == that) {
+ return true;
+ }
+ if (that == null) {
+ return false;
+ }
+ if (getClass() != that.getClass()) {
+ return false;
+ }
+ UserInfo other = (UserInfo) that;
+ return (this.getUserInfoId() == null ? other.getUserInfoId() == null : this.getUserInfoId().equals(other.getUserInfoId()))
+ && (this.getUserId() == null ? other.getUserId() == null : this.getUserId().equals(other.getUserId()))
+ && (this.getNickname() == null ? other.getNickname() == null : this.getNickname().equals(other.getNickname()))
+ && (this.getRealName() == null ? other.getRealName() == null : this.getRealName().equals(other.getRealName()))
+ && (this.getGender() == null ? other.getGender() == null : this.getGender().equals(other.getGender()))
+ && (this.getBirthDate() == null ? other.getBirthDate() == null : this.getBirthDate().equals(other.getBirthDate()))
+ && (this.getDetailedAddress() == null ? other.getDetailedAddress() == null : this.getDetailedAddress().equals(other.getDetailedAddress()))
+ && (this.getPhoneNumber() == null ? other.getPhoneNumber() == null : this.getPhoneNumber().equals(other.getPhoneNumber()));
+ }
+
+ @Override
+ public int hashCode() {
+ final int prime = 31;
+ int result = 1;
+ result = prime * result + ((getUserInfoId() == null) ? 0 : getUserInfoId().hashCode());
+ result = prime * result + ((getUserId() == null) ? 0 : getUserId().hashCode());
+ result = prime * result + ((getNickname() == null) ? 0 : getNickname().hashCode());
+ result = prime * result + ((getRealName() == null) ? 0 : getRealName().hashCode());
+ result = prime * result + ((getGender() == null) ? 0 : getGender().hashCode());
+ result = prime * result + ((getBirthDate() == null) ? 0 : getBirthDate().hashCode());
+ result = prime * result + ((getDetailedAddress() == null) ? 0 : getDetailedAddress().hashCode());
+ result = prime * result + ((getPhoneNumber() == null) ? 0 : getPhoneNumber().hashCode());
+ return result;
+ }
+
+ @Override
+ public String toString() {
+ StringBuilder sb = new StringBuilder();
+ sb.append(getClass().getSimpleName());
+ sb.append(" [");
+ sb.append("Hash = ").append(hashCode());
+ sb.append(", userInfoId=").append(userInfoId);
+ sb.append(", userId=").append(userId);
+ sb.append(", nickname=").append(nickname);
+ sb.append(", realName=").append(realName);
+ sb.append(", gender=").append(gender);
+ sb.append(", birthDate=").append(birthDate);
+ sb.append(", detailedAddress=").append(detailedAddress);
+ sb.append(", phoneNumber=").append(phoneNumber);
+ sb.append(", serialVersionUID=").append(serialVersionUID);
+ sb.append("]");
+ return sb.toString();
+ }
+}
\ No newline at end of file
diff --git a/src/main/resources/.DS_Store b/src/main/resources/.DS_Store
new file mode 100644
index 0000000..32250fd
Binary files /dev/null and b/src/main/resources/.DS_Store differ
diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties
index 8b13789..bd800a5 100644
--- a/src/main/resources/application.properties
+++ b/src/main/resources/application.properties
@@ -1 +1,3 @@
-
+server.address=0.0.0.0
+server.port=8090
+debug=true
\ No newline at end of file
diff --git a/src/main/resources/db/darry_ring.db b/src/main/resources/db/darry_ring.db
new file mode 100644
index 0000000..7309164
Binary files /dev/null and b/src/main/resources/db/darry_ring.db differ
diff --git a/src/main/resources/db/db.sql b/src/main/resources/db/db.sql
index e69de29..3348126 100644
--- a/src/main/resources/db/db.sql
+++ b/src/main/resources/db/db.sql
@@ -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)
+ );
+
diff --git a/src/main/resources/static/.DS_Store b/src/main/resources/static/.DS_Store
new file mode 100644
index 0000000..859ed15
Binary files /dev/null and b/src/main/resources/static/.DS_Store differ
diff --git a/src/main/resources/static/css/WdatePicker.css b/src/main/resources/static/css/WdatePicker.css
new file mode 100644
index 0000000..80fffea
--- /dev/null
+++ b/src/main/resources/static/css/WdatePicker.css
@@ -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;
+}
\ No newline at end of file
diff --git a/src/main/resources/static/css/aboutUs.css b/src/main/resources/static/css/aboutUs.css
new file mode 100644
index 0000000..99ac9c0
--- /dev/null
+++ b/src/main/resources/static/css/aboutUs.css
@@ -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}
\ No newline at end of file
diff --git a/src/main/resources/static/css/dr.css b/src/main/resources/static/css/dr.css
new file mode 100644
index 0000000..88cdf4f
--- /dev/null
+++ b/src/main/resources/static/css/dr.css
@@ -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}/*当在最后一页时*/
\ No newline at end of file
diff --git a/src/main/resources/static/css/dr_culture.css b/src/main/resources/static/css/dr_culture.css
new file mode 100644
index 0000000..9ed5127
--- /dev/null
+++ b/src/main/resources/static/css/dr_culture.css
@@ -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}
\ No newline at end of file
diff --git a/src/main/resources/static/css/embed.default.css b/src/main/resources/static/css/embed.default.css
new file mode 100644
index 0000000..98660b8
--- /dev/null
+++ b/src/main/resources/static/css/embed.default.css
@@ -0,0 +1 @@
+#ds-ssr{display:none !important}#ds-reset{font-weight:normal;font-size:13px;font-size-adjust:none;color:#333;line-height:1;text-align:left}#ds-reset *{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}#ds-reset input[type=button],#ds-reset input[type=submit],#ds-reset input[type=reset],#ds-reset button{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}#ds-reset div,#ds-reset ul,#ds-reset ol,#ds-reset li,#ds-reset ul li,#ds-reset ol li,#ds-reset iframe,#ds-reset h1,#ds-reset h2,#ds-reset h3,#ds-reset h4,#ds-reset h5,#ds-reset h6,#ds-reset p,#ds-reset img,#ds-reset blockquote,#ds-reset a,#ds-reset span,#ds-reset pre,#ds-reset code,#ds-reset strong,#ds-reset sub,#ds-reset sup,#ds-reset fieldset,#ds-reset form,#ds-reset label,#ds-reset input,#ds-reset textarea,#ds-reset select{border:0;padding:0;margin:0;vertical-align:baseline;font:inherit;line-height:inherit;background:none;width:auto;float:none;overflow:visible;transition:none}#ds-reset strong{font-weight:bold}#ds-reset p{text-indent:0;clear:none}#ds-reset span,#ds-reset strong,#ds-reset label,#ds-reset input{display:inline;margin:0}#ds-reset textarea:focus,#ds-reset input:focus{outline:none}#ds-reset ul,#ds-reset ol,#ds-reset ul li,#ds-reset ol li{list-style:none;display:block}#ds-reset input,#ds-reset button{-webkit-border-radius:3px;border-radius:3px}#ds-indicator{display:none;position:fixed;z-index:99999;top:150px;left:0;padding:8px;border-bottom-right-radius:3px;border-top-right-radius:3px;width:16px;height:16px;background:#666 url("data:image/gif;base64,R0lGODlhEAAQAPQAAGZmZv///2lpadzc3K+vr/r6+ufn5319fZmZmfDw8Le3t8DAwHV1daOjo4eHh9LS0srKygAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh/hpDcmVhdGVkIHdpdGggYWpheGxvYWQuaW5mbwAh+QQJCgAAACwAAAAAEAAQAAAFUCAgjmRpnqUwFGwhKoRgqq2YFMaRGjWA8AbZiIBbjQQ8AmmFUJEQhQGJhaKOrCksgEla+KIkYvC6SJKQOISoNSYdeIk1ayA8ExTyeR3F749CACH5BAkKAAAALAAAAAAQABAAAAVoICCKR9KMaCoaxeCoqEAkRX3AwMHWxQIIjJSAZWgUEgzBwCBAEQpMwIDwY1FHgwJCtOW2UDWYIDyqNVVkUbYr6CK+o2eUMKgWrqKhj0FrEM8jQQALPFA3MAc8CQSAMA5ZBjgqDQmHIyEAIfkECQoAAAAsAAAAABAAEAAABWAgII4j85Ao2hRIKgrEUBQJLaSHMe8zgQo6Q8sxS7RIhILhBkgumCTZsXkACBC+0cwF2GoLLoFXREDcDlkAojBICRaFLDCOQtQKjmsQSubtDFU/NXcDBHwkaw1cKQ8MiyEAIfkECQoAAAAsAAAAABAAEAAABVIgII5kaZ6AIJQCMRTFQKiDQx4GrBfGa4uCnAEhQuRgPwCBtwK+kCNFgjh6QlFYgGO7baJ2CxIioSDpwqNggWCGDVVGphly3BkOpXDrKfNm/4AhACH5BAkKAAAALAAAAAAQABAAAAVgICCOZGmeqEAMRTEQwskYbV0Yx7kYSIzQhtgoBxCKBDQCIOcoLBimRiFhSABYU5gIgW01pLUBYkRItAYAqrlhYiwKjiWAcDMWY8QjsCf4DewiBzQ2N1AmKlgvgCiMjSQhACH5BAkKAAAALAAAAAAQABAAAAVfICCOZGmeqEgUxUAIpkA0AMKyxkEiSZEIsJqhYAg+boUFSTAkiBiNHks3sg1ILAfBiS10gyqCg0UaFBCkwy3RYKiIYMAC+RAxiQgYsJdAjw5DN2gILzEEZgVcKYuMJiEAOwAAAAAAAAAAAA==") 8px 8px no-repeat;*background-image:url("../images/loading.gif");*position:absolute;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box} #ds-waiting{cursor:wait;display:block;width:16px;height:11px;padding:0 0 3px 5px;margin:0;background:url("data:image/gif;base64,R0lGODlhEAALAPQAAP///z2LqeLt8dvp7u7090GNqz2LqV+fuJ/F1IW2ycrf51aatHWswaXJ14i4ys3h6FmctUCMqniuw+vz9eHs8fb5+meku+Tu8vT4+cfd5bbT3tbm7PH2+AAAAAAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh/hpDcmVhdGVkIHdpdGggYWpheGxvYWQuaW5mbwAh+QQJCwAAACwAAAAAEAALAAAFLSAgjmRpnqSgCuLKAq5AEIM4zDVw03ve27ifDgfkEYe04kDIDC5zrtYKRa2WQgAh+QQJCwAAACwAAAAAEAALAAAFJGBhGAVgnqhpHIeRvsDawqns0qeN5+y967tYLyicBYE7EYkYAgAh+QQJCwAAACwAAAAAEAALAAAFNiAgjothLOOIJAkiGgxjpGKiKMkbz7SN6zIawJcDwIK9W/HISxGBzdHTuBNOmcJVCyoUlk7CEAAh+QQJCwAAACwAAAAAEAALAAAFNSAgjqQIRRFUAo3jNGIkSdHqPI8Tz3V55zuaDacDyIQ+YrBH+hWPzJFzOQQaeavWi7oqnVIhACH5BAkLAAAALAAAAAAQAAsAAAUyICCOZGme1rJY5kRRk7hI0mJSVUXJtF3iOl7tltsBZsNfUegjAY3I5sgFY55KqdX1GgIAIfkECQsAAAAsAAAAABAACwAABTcgII5kaZ4kcV2EqLJipmnZhWGXaOOitm2aXQ4g7P2Ct2ER4AMul00kj5g0Al8tADY2y6C+4FIIACH5BAkLAAAALAAAAAAQAAsAAAUvICCOZGme5ERRk6iy7qpyHCVStA3gNa/7txxwlwv2isSacYUc+l4tADQGQ1mvpBAAIfkECQsAAAAsAAAAABAACwAABS8gII5kaZ7kRFGTqLLuqnIcJVK0DeA1r/u3HHCXC/aKxJpxhRz6Xi0ANAZDWa+kEAA7AAAAAAAAAAAA") 0 0 no-repeat;*background-image:url("../images/waiting.gif")} #ds-reset .ds-highlight{color:#d32 !important} #ds-reset .ds-rounded{-webkit-border-radius:3px;border-radius:3px} #ds-reset .ds-rounded-top{-webkit-border-top-right-radius:3px;-webkit-border-top-left-radius:3px;border-top-right-radius:3px;border-top-left-radius:3px} #ds-reset .ds-rounded-bottom{border-bottom-left-radius:3px;border-bottom-right-radius:3px;-webkit-border-bottom-left-radius:3px;-webkit-border-bottom-right-radius:3px} #ds-reset .ds-gradient-bg{background:url("../images/bg_sprites.png") 0 -60px repeat-x} #ds-reset .ds-avatar{box-shadow:0 1px 1px rgba(255,255,255,0.75);position:relative;-webkit-border-radius:3px;border-radius:3px;background-color:#fff;float:left} #ds-reset .ds-avatar img{display:block;width:50px;height:50px;max-width:none;box-shadow:0 1px 3px rgba(0,0,0,0.22);-webkit-border-radius:3px;border-radius:3px} #ds-reset .ds-avatar .ds-service-icon{display:block;position:absolute;bottom:-4px;right:-4px} #ds-reset img.ds-smiley{margin:0;padding:0;display:inline;border:none} #ds-reset .ds-icon{vertical-align:middle;display:inline-block;overflow:hidden;background:transparent url("../images/sprites.png") no-repeat;_background-image:url("../images/sprites.gif")} #ds-reset a .ds-icon{opacity:.6;-webkit-transition:opacity .15s linear;-moz-transition:opacity .15s linear;transition:opacity .15s linear} #ds-reset a:hover .ds-icon{opacity:1} #ds-reset .ds-service-list a{vertical-align:middle;padding-right:3px} #ds-reset .ds-service-list li:hover a{color:#333} #ds-reset .ds-service-icon,#ds-reset .ds-service-icon-grey{width:16px !important;height:16px !important;line-height:100px;display:inline-block;background:url("../images/service-icons-color.png") no-repeat;_background-image:url("../images/service-icons-color.gif");overflow:hidden} #ds-reset .ds-service-icon-grey{background-image:url("../images/service-icons-grey.png");_background-image:url("../images/service-icons-grey.gif")} #ds-reset .ds-service-link{height:16px !important;line-height:16px;padding-left:20px;display:block;background:url("../images/service-icons-color.png") no-repeat;_background-image:url("../images/service-icons-color.gif");overflow:hidden} #ds-reset .ds-weibo{background-position:0 0} #ds-reset .ds-sohu{background-position:0 -16px} #ds-reset .ds-renren{background-position:0 -32px} #ds-reset .ds-netease{background-position:0 -48px} #ds-reset .ds-qqt{background-position:0 -64px} #ds-reset .ds-kaixin{background-position:0 -80px} #ds-reset .ds-douban{background-position:0 -96px} #ds-reset .ds-msn{background-position:0 -112px} #ds-reset .ds-qzone{background-position:0 -128px} #ds-reset .ds-duoshuo{background-position:0 -144px} #ds-reset .ds-qq{background-position:0 -192px} #ds-reset .ds-baidu{background-position:0 -208px} #ds-reset .ds-taobao{background-position:0 -224px} #ds-reset .ds-google{background-position:0 -240px} .ds-icons-32 a{display:block;cursor:pointer;width:32px !important;height:32px !important;background:url("../images/icons_large.png") no-repeat !important;overflow:hidden;text-indent:-9999px} .ds-icons-32 a.ds-weibo{background-position:-37px 0 !important} .ds-icons-32 a.ds-qzone{background-position:0 0 !important} .ds-icons-32 a.ds-qqt{background-position:-74px 0 !important} .ds-icons-32 a.ds-renren{background-position:-148px 0 !important} .ds-icons-32 a.ds-kaixin{background-position:-111px 0 !important} .ds-icons-32 a.ds-netease{background-position:-300px 0 !important} .ds-icons-32 a.ds-sohu{background-position:-224px 0 !important} .ds-icons-32 a.ds-qq{background-position:-488px 0 !important} .ds-icons-32 a.ds-douban{background-position:-186px 0 !important} .ds-icons-32 a.ds-baidu{background-position:-262px 0 !important} .ds-icons-32 a.ds-taobao{background-position:-416px 0 !important} .ds-icons-32 a.ds-msn{background-position:-377px 0 !important} .ds-icons-32 a.ds-taobao{background-position:-339px 0 !important} #ds-reset #ds-ctx{padding:0;margin:8px 0;max-width:640px} #ds-reset #ds-ctx .ds-ctx-entry{padding:6px;margin:0;border-bottom:1px solid #e6e6e6} #ds-reset #ds-ctx .ds-ctx-entry .ds-ctx-head a{color:#e77064} #ds-reset #ds-ctx .ds-ctx-entry .ds-ctx-head a:hover{color:#d32} #ds-reset #ds-ctx .ds-ctx-entry .ds-avatar{margin:0;width:30px;height:30px} #ds-reset #ds-ctx .ds-ctx-entry .ds-avatar img{width:30px;height:30px;box-shadow:none} #ds-reset #ds-ctx .ds-ctx-entry .ds-ctx-body{margin-left:38px} #ds-reset #ds-ctx .ds-ctx-entry .ds-ctx-head{position:relative;_zoom:1;line-height:1em;padding:1px 0 0;margin:0 0 .25em} #ds-reset #ds-ctx .ds-ctx-entry .ds-ctx-nth{color:#999;font-size:12px;position:absolute;top:2px;right:0} #ds-reset #ds-ctx .ds-ctx-entry .ds-time{font-size:12px;*font-size:12px;margin-left:8px;color:#999;_zoom:1} #ds-reset #ds-ctx .ds-ctx-entry .ds-ctx-content{position:relative;_zoom:1;padding:0;margin:0;overflow:hidden;line-height:1.5em} #ds-reset #ds-ctx .ds-ctx-entry:hover .ds-comment-actions{display:block} #ds-reset #ds-ctx .ds-comment-actions{bottom:0;right:0;line-height:18px;position:absolute;display:none;*display:block} #ds-reset #ds-ctx .ds-comment-actions a{margin:0 0 0 6px} #ds-reset.ds-touch #ds-ctx .ds-ctx-entry .ds-comment-actions{display:block} #ds-reset .ds-comment-body #ds-ctx{border-left:3px solid #ccc;background-color:rgba(0,0,0,0.03)} #ds-reset.ds-no-opacity .ds-comment-body #ds-ctx{background:#f8f8f8} #ds-reset .ds-dialog-body #ds-ctx .ds-ctx-entry:hover .ds-comment-actions{display:none} #ds-thread{clear:both;position:relative;overflow:visible;_zoom:1} #ds-thread #ds-reset a{cursor:pointer;text-decoration:none;color:#777;background-color:transparent;-webkit-transition:color .15s linear;-moz-transition:color .15s linear;transition:color .15s linear} #ds-thread #ds-reset a:hover{color:#333} #ds-thread #ds-reset ul,#ds-thread #ds-reset ul li{background:none;margin:0;padding:0} #ds-thread #ds-reset .ds-arrow{position:absolute;width:0;height:0;font-size:0 !important;line-height:0 !important;_border-right-color:#ffc0cb !important;_border-left-color:#ffc0cb !important;_filter:chroma(color=#ffc0cb) !important} #ds-thread #ds-reset .ds-arrow-down{border-left:5px solid transparent;border-right:5px solid transparent;border-top:5px solid #fff} #ds-thread #ds-reset button{cursor:pointer;margin:0;padding:0;border-radius:0} #ds-thread #ds-reset .ds-meta{position:relative;padding:8px 0;line-height:24px;border-bottom:1px solid rgba(0,0,0,0.13)} #ds-thread #ds-reset .ds-like-tooltip{position:absolute;z-index:9999;background-color:#fcfcfc;background-repeat:repeat-x;background-image:-khtml-gradient(linear, left top, left bottom, from(#fcfcfc), to(#f9f9f9));background:-moz-linear-gradient(top, #fcfcfc 0, #f9f9f9 100%);background:-webkit-gradient(linear, left top, left bottom, color-stop(0, #fcfcfc), color-stop(100%, #f9f9f9));background:-webkit-linear-gradient(top, #fcfcfc 0, #f9f9f9 100%);background:-ms-linear-gradient(top, #fcfcfc 0, #f9f9f9 100%);background:linear-gradient(top, #fcfcfc 0, #f9f9f9 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fcfcfc',endColorstr='#f9f9f9',GradientType=0);border:1px solid #aaa;box-shadow:0 0 2px rgba(0,0,0,0.2);text-shadow:0 1px 0 #fff;font-size:12px;padding:8px 14px} #ds-thread #ds-reset .ds-like-tooltip ul{width:84px;float:left} #ds-thread #ds-reset .ds-like-tooltip li{line-height:16px;margin:6px 0} #ds-thread #ds-reset .ds-like-tooltip p{clear:both;margin:6px 0} #ds-thread #ds-reset .ds-like-tooltip .ds-like-tooltip-footer{text-align:right} #ds-thread #ds-reset a.ds-like-thread-button{color:#555;padding:4px 8px;border:1px solid #ccc;border-bottom-color:#aaa;box-shadow:inset 0 0 1px #fff;margin-right:15px;text-shadow:0 1px 0 #fff;background-color:#e0e0e0;background-repeat:no-repeat;background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#fff), color-stop(25%, #fff), to(#e0e0e0));background-image:-webkit-linear-gradient(#fff, #fff 25%, #e0e0e0);background-image:-moz-linear-gradient(top, #fff, #fff 25%, #e0e0e0);background-image:-ms-linear-gradient(#fff, #fff 25%, #e0e0e0);background-image:linear-gradient(#fff, #fff 25%, #e0e0e0)} #ds-thread #ds-reset a.ds-like-thread-button .ds-icon-heart{position:relative;top:-2px;opacity:1} #ds-thread #ds-reset a.ds-like-thread-button span{color:#555} #ds-thread #ds-reset .ds-thread-cancel-like{display:none} #ds-thread #ds-reset a.ds-thread-liked{background:#e9e9e9} #ds-thread #ds-reset a.ds-thread-liked:hover .ds-thread-cancel-like{display:inline} #ds-thread #ds-reset a.ds-thread-liked:hover .ds-thread-like-text{display:none} #ds-thread #ds-reset #ds-hot-posts{border:1px solid #ccc;overflow:hidden;margin:8px 0;padding:0;_height:100%} #ds-thread #ds-reset .ds-header{font-weight:bold;font-size:14px;color:#555;line-height:30px;padding:0 12px} #ds-thread #ds-reset .ds-toolbar{position:relative;z-index:5;font-size:12px;padding:8px 0;width:100%;clear:both} #ds-thread #ds-reset .ds-toolbar:after{content:".";display:block;height:0;clear:both;visibility:hidden} #ds-thread #ds-reset .ds-visitor{float:right;line-height:1.5em;margin-right:6px} #ds-thread #ds-reset .ds-account-control{float:right;position:relative;font-size:12px;cursor:pointer;text-align:right;line-height:18px;padding-bottom:3px;width:75px} #ds-thread #ds-reset .ds-account-control span{display:block;float:left;color:#999} #ds-thread #ds-reset .ds-account-control ul{display:none;position:absolute;top:19px;left:0;border:1px solid #aaa;background:#f8f8f8;box-shadow:inset 0 1px 1px #fff,0 1px 1px rgba(0,0,0,0.3);border-radius:3px;text-align:center} #ds-thread #ds-reset .ds-account-control ul li a{border-top:1px solid #fff;border-bottom:1px solid #ddd;display:block;padding:3px 10px;text-shadow:0 1px 0 #fff} #ds-thread #ds-reset .ds-account-control ul li a:hover{color:#555} #ds-thread #ds-reset .ds-account-control.ds-active span{color:#555} #ds-thread #ds-reset .ds-account-control.ds-active ul{display:block} #ds-thread #ds-reset .ds-alert{margin:.5em 0;border:1px solid #fbeed5;border-radius:3px;padding:6px 6px;color:#c09853;background-color:#fcf8e3;line-height:1.5em} #ds-thread #ds-reset .ds-login-buttons{width:100%;position:relative;padding:10px 0 6px} #ds-thread #ds-reset .ds-login-buttons p{float:left;line-height:24px;margin:0} #ds-thread #ds-reset .ds-login-buttons .ds-service-list li{float:left;height:16px;width:54px;padding:4px 0;margin:0 0 0 6px} #ds-thread #ds-reset .ds-login-buttons .ds-more-services{color:#d32 !important;line-height:16px;display:block} #ds-thread #ds-reset .ds-login-buttons .ds-more-services:hover{color:#e77064 !important} #ds-thread #ds-reset .ds-login-buttons .ds-additional-services{display:none} #ds-thread #ds-reset .ds-login-buttons .ds-social-links{float:left;width:306px} #ds-thread #ds-reset .ds-login-buttons:after{content:".";display:block;height:0;clear:both;visibility:hidden} #ds-thread #ds-reset a.ds-unread-comments-count{display:none;background-color:#d32;color:#fff !important;margin-right:6px;padding:1px 5px;font-weight:bold;-webkit-border-radius:5px;border-radius:5px;box-shadow:inset 0 1px 1px rgba(255,255,255,0.4),0 1px 1px rgba(0,0,0,0.3);text-shadow:0 1px 1px rgba(0,0,0,0.3)} #ds-thread #ds-reset a.ds-unread-comments-count:hover{background:#f00} #ds-thread #ds-reset .ds-replybox{width:auto;font-size:12px;z-index:3;margin:8px 0;padding:0 0 0 60px;position:relative;_zoom:1} #ds-thread #ds-reset .ds-replybox:after{content:".";display:block;height:0;clear:both;visibility:hidden} #ds-thread #ds-reset .ds-replybox .ds-avatar{position:absolute;top:0;left:0} #ds-thread #ds-reset .ds-replybox .ds-avatar img{width:50px;height:50px;visibility:visible;margin:0} #ds-thread #ds-reset .ds-inline-replybox{margin:8px 0 2px 0;padding-left:38px} #ds-thread #ds-reset .ds-inline-replybox .ds-avatar img{width:30px;height:30px;box-shadow:0 1px 2px rgba(0,0,0,0.22)} #ds-thread #ds-reset .ds-textarea-wrapper{position:relative;border:1px solid #ccc;border-bottom:none;padding-right:20px;background:#fff url("../images/bg_sprites.png") 0 -90px repeat-x;overflow:hidden} #ds-thread #ds-reset .ds-textarea-wrapper textarea{box-shadow:none;-webkit-appearance:none;overflow:auto;padding:10px;height:54px;margin:0;resize:none;color:#999;width:100%} #ds-thread #ds-reset .ds-textarea-wrapper textarea:focus{color:#333} #ds-thread #ds-reset .ds-textarea-wrapper .ds-hidden-text{word-wrap:break-word;visibility:hidden;position:absolute;top:0;left:10px;right:10px} #ds-thread #ds-reset .ds-textarea-wrapper textarea,#ds-thread #ds-reset .ds-textarea-wrapper .ds-hidden-text{display:block;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:13px;line-height:20px;border:none} #ds-thread #ds-reset .ds-post-toolbar{position:relative;width:100%;box-shadow:0 1px 0 rgba(255,255,255,0.6)} #ds-thread #ds-reset .ds-post-toolbar span,#ds-thread #ds-reset .ds-post-toolbar input,#ds-thread #ds-reset .ds-post-toolbar label,#ds-thread #ds-reset .ds-post-toolbar a{vertical-align:middle;width:auto} #ds-thread #ds-reset .ds-post-options{position:relative;margin-right:100px;height:30px;border:1px solid #ccc;border-right:none;border-bottom-color:#aaa;border-bottom-left-radius:3px;-webkit-border-bottom-left-radius:3px} #ds-thread #ds-reset .ds-toolbar-buttons{position:absolute;top:5px;left:6px} #ds-thread #ds-reset .ds-toolbar-button{display:block;width:19px !important;height:19px;float:left;margin-right:4px;background:transparent url("../images/sprites.png") no-repeat;_background-image:url("../images/sprites.gif");vertical-align:middle;opacity:.6;-webkit-transition:opacity .15s linear;-moz-transition:opacity .15s linear;transition:opacity .15s linear} #ds-thread #ds-reset .ds-toolbar-button:hover{opacity:1} #ds-thread #ds-reset .ds-add-image{background-position:0 -48px} #ds-thread #ds-reset .ds-add-image:hover{background-position:0 -66px} #ds-thread #ds-reset .ds-add-emote{background-position:0 -12px} #ds-thread #ds-reset .ds-add-emote:hover{background-position:0 -30px} #ds-thread #ds-reset .ds-sync{font-size:12px;color:#999;line-height:30px;position:absolute;right:5px} #ds-thread #ds-reset .ds-sync label{color:#777;cursor:pointer;-webkit-transition:color .15s linear;-moz-transition:color .15s linear;transition:color .15s linear} #ds-thread #ds-reset .ds-sync label:hover{color:#555} #ds-thread #ds-reset .ds-sync a.ds-service-icon,#ds-thread #ds-reset .ds-sync a.ds-service-icon-grey{margin:7px 2px 7px 3px} #ds-thread #ds-reset .ds-post-button{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;position:absolute;right:0;top:0;height:32px;width:100px;text-align:center;text-shadow:0 1px 0 #fff;color:#555;font-size:14px;font-weight:bold;border:1px solid #ccc;border-bottom-color:#aaa;border-bottom-right-radius:3px;-webkit-border-bottom-right-radius:3px;background-color:#e6e6e6;background-repeat:no-repeat;background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#fcfcfc), color-stop(25%, #fcfcfc), to(#e6e6e6));background-image:-webkit-linear-gradient(#fcfcfc, #fcfcfc 25%, #e6e6e6);background-image:-moz-linear-gradient(top, #fcfcfc, #fcfcfc 25%, #e6e6e6);background-image:-ms-linear-gradient(#fcfcfc, #fcfcfc 25%, #e6e6e6);background-image:linear-gradient(#fcfcfc, #fcfcfc 25%, #e6e6e6);-webkit-transition:all .15s linear;-moz-transition:all .15s linear;transition:all .15s linear;box-shadow:inset 0 0 1px #fff} #ds-thread #ds-reset .ds-post-button:hover{background-position:0 -15px;color:#333} #ds-thread #ds-reset .ds-post-button:active{-webkit-box-shadow:inset 0 2px 4px rgba(0,0,0,0.15),0 1px 2px rgba(0,0,0,0.05);box-shadow:inset 0 2px 4px rgba(0,0,0,0.15),0 1px 2px rgba(0,0,0,0.05)} #ds-thread #ds-reset .ds-comments-info{width:100%;font-size:13px;margin-top:10px;padding:8px 0;line-height:25px;position:relative} #ds-thread #ds-reset .ds-sort{position:absolute;right:0;top:8px} #ds-thread #ds-reset .ds-sort a{color:#999;padding:0 4px;margin:0 2px} #ds-thread #ds-reset .ds-sort a:hover{color:#333} #ds-thread #ds-reset .ds-sort a.ds-current,#ds-thread #ds-reset .ds-sort a:active{color:#d32} #ds-thread #ds-reset ul.ds-comments-tabs .ds-highlight{margin:0 2px 0 0} #ds-thread #ds-reset ul.ds-comments-tabs .ds-service-icon{vertical-align:middle;margin:0 2px 1px 0} #ds-thread #ds-reset li.ds-tab{display:inline;font-size:13px;margin:0 5px 0 0;padding:0} #ds-thread #ds-reset li.ds-tab a{text-shadow:0 1px 0 #fff;padding:3px 5px;display:inline;-webkit-border-radius:5px;border-radius:5px} #ds-thread #ds-reset li.ds-tab a.ds-current{border:1px solid #ccc;background-color:rgba(0,0,0,0.04)} #ds-thread #ds-reset li.ds-tab a:hover{background-color:rgba(0,0,0,0.04)} #ds-thread #ds-reset .ds-comments{width:100%;border-bottom:1px solid rgba(0,0,0,0.13)} #ds-thread #ds-reset .ds-comments:after{content:".";display:block;height:0;clear:both;visibility:hidden} #ds-thread #ds-reset li.ds-post{width:100%;overflow:hidden;clear:both;border-top:1px solid rgba(0,0,0,0.13);margin:0;padding:0;list-style:none} #ds-thread #ds-reset li.ds-post-placeholder{text-align:center;color:#999;padding:1em 0} #ds-thread #ds-reset .ds-post-self{position:relative;padding:10px;border-top:1px solid rgba(255,255,255,0.7)} #ds-thread #ds-reset .ds-post-self:after{content:".";display:block;height:0;clear:both;visibility:hidden} #ds-thread #ds-reset .ds-post-self:hover .ds-post-delete,#ds-thread #ds-reset .ds-post-self:hover .ds-post-report{display:inline-block} #ds-thread #ds-reset.ds-touch .ds-post-self .ds-post-delete,#ds-thread #ds-reset.ds-touch .ds-post-self .ds-post-report{display:inline-block} #ds-thread #ds-reset .ds-comment-body{padding-left:60px} #ds-thread #ds-reset .ds-comment-body p{font-size:13px;line-height:1.5em;margin:.5em 0;word-wrap:break-word} #ds-thread #ds-reset .ds-comment-body img{max-width:100%;vertical-align:text-bottom} #ds-thread #ds-reset .ds-comment-body embed{max-width:100%} #ds-thread #ds-reset .ds-comment-body code{display:block;font-size:12px;font-family:Monaco,Menlo,Consolas,"Courier New",monospace;padding:8px 12px;background-color:#f0f0f0;margin:8px 0;border-radius:3px;border:1px solid #ddd;color:#666} #ds-thread #ds-reset .ds-comment-body a{color:#777} #ds-thread #ds-reset .ds-comment-body a:hover{color:#555} #ds-thread #ds-reset a.ds-comment-context{position:relative;margin:.5em 0;color:#e77064} #ds-thread #ds-reset a.ds-comment-context:hover{color:#d32} #ds-thread #ds-reset #ds-bubble{position:absolute;background-color:#fff;-webkit-border-radius:5px;border-radius:5px;padding:10px;color:#333;border:1px solid #aaa;box-shadow:0 0 2px rgba(0,0,0,0.2);z-index:9999;font-size:13px} #ds-thread #ds-reset #ds-bubble a{color:#e77064} #ds-thread #ds-reset #ds-bubble a:hover{color:#d32} #ds-thread #ds-reset #ds-bubble p{line-height:18px} #ds-thread #ds-reset #ds-bubble .ds-arrow-border{border-top-color:#aaa;bottom:-6px} #ds-thread #ds-reset #ds-bubble .ds-arrow{left:32px;bottom:-5px} #ds-thread #ds-reset #ds-ctx-bubble{width:300px} #ds-thread #ds-reset #ds-ctx-bubble .ds-bubble-footer{padding:6px 0 0 0;line-height:18px} #ds-thread #ds-reset #ds-user-card{width:276px;min-height:50px} #ds-thread #ds-reset #ds-user-card .ds-avatar{margin-right:10px} #ds-thread #ds-reset #ds-user-card .ds-avatar img{width:50px;height:50px} #ds-thread #ds-reset #ds-user-card .ds-user-name{vertical-align:top;display:inline-block;max-width:8em;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;font-size:14px} #ds-thread #ds-reset #ds-user-card .ds-user-card-meta{margin:14px 0 0 62px} #ds-thread #ds-reset #ds-user-card .ds-user-description{border-top:1px dotted #ddd;margin-top:.5em;color:#aaa} #ds-thread #ds-reset #ds-user-card .ds-service-icon{margin-right:3px} #ds-thread #ds-reset .ds-comment-header{padding-top:1px} #ds-thread #ds-reset .ds-comment-footer{line-height:1.5em} #ds-thread #ds-reset .ds-comment-footer a{margin:0 6px 0 0;padding:0 6px 0 0} #ds-thread #ds-reset .ds-comment-actions a{font-size:12px;color:#999} #ds-thread #ds-reset .ds-comment-actions a .ds-icon{position:relative;top:-1px} #ds-thread #ds-reset .ds-user-name{color:#777;font-size:13px;margin-right:8px} #ds-thread #ds-reset .ds-post-liked .ds-icon-like{background-position:0 -130px} #ds-thread #ds-reset .ds-post-liked a.ds-post-likes{color:#d32} #ds-thread #ds-reset .ds-reply-active{display:block} #ds-thread #ds-reset .ds-reply-active .ds-post-reply{color:#333} #ds-thread #ds-reset .ds-reply-active .ds-post-reply .ds-icon{opacity:1} #ds-thread #ds-reset .ds-post-delete,#ds-thread #ds-reset .ds-post-report{display:none} #ds-thread #ds-reset .ds-icon-heart{width:14px;height:13px;background-position:0 -130px} #ds-thread #ds-reset .ds-icon-settings{width:12px;height:12px;margin:3px 4px 0;opacity:1} #ds-thread #ds-reset .ds-icon-like{width:14px;height:13px;background-position:0 -117px} #ds-thread #ds-reset .ds-icon-share{width:18px;height:13px;background-position:0 -234px} #ds-thread #ds-reset .ds-icon-reply{width:18px;height:13px;background-position:0 -105px} #ds-thread #ds-reset .ds-icon-delete{width:13px;height:13px;background-position:0 -176px} #ds-thread #ds-reset .ds-icon-report{width:12px;height:12px;background-position:0 -189px} #ds-thread #ds-reset .ds-time{font-size:12px;*font-size:12px;margin-right:8px;color:#999;_zoom:1} #ds-thread #ds-reset ul.ds-children{margin-left:38px} #ds-thread #ds-reset ul.ds-children .ds-avatar{width:30px;height:30px} #ds-thread #ds-reset ul.ds-children .ds-avatar img{width:30px;height:30px} #ds-thread #ds-reset ul.ds-children .ds-post-self{padding-left:0} #ds-thread #ds-reset ul.ds-children .ds-comment-body{padding-left:38px} #ds-thread #ds-reset .ds-paginator{border-bottom:1px solid rgba(0,0,0,0.13);text-align:right;padding-bottom:15px;clear:both;line-height:1em} #ds-thread #ds-reset .ds-paginator div.ds-border{border-top:1px solid rgba(255,255,255,0.7);margin-bottom:15px} #ds-thread #ds-reset .ds-paginator a{font-size:12px;margin:0 3px;padding:2px 5px;border:1px solid transparent} #ds-thread #ds-reset .ds-paginator a:hover,#ds-thread #ds-reset .ds-paginator a.ds-current{-webkit-border-radius:3px;border-radius:3px;background-color:rgba(0,0,0,0.03)} #ds-thread #ds-reset .ds-paginator a.ds-current{color:#d32;border:1px solid #ccc} #ds-thread #ds-reset .ds-powered-by{font-size:12px;text-align:right;padding:10px 0} #ds-thread #ds-reset .ds-powered-by a{color:#999;text-decoration:none} #ds-thread #ds-reset .ds-powered-by a:hover{color:#555} #ds-thread #ds-reset.ds-no-transition .ds-post-button,#ds-thread #ds-reset.ds-no-transition .ds-more a{background:url("../images/bg_sprites.png") repeat-x !important} #ds-thread #ds-reset.ds-no-transition .ds-post-button:hover,#ds-thread #ds-reset.ds-no-transition .ds-more a:hover{background-position:0 -30px !important} #ds-thread #ds-reset.ds-no-transition .ds-like-thread-button{background:url("../images/bg_sprites.png") repeat-x} #ds-thread #ds-reset.ds-no-opacity li.ds-post{border-top:1px solid #ddd} #ds-thread #ds-reset.ds-no-opacity .ds-comments,#ds-thread #ds-reset.ds-no-opacity .ds-paginator{border-bottom:1px solid #ddd} #ds-thread #ds-reset.ds-no-opacity .ds-post-self{border-top:none} #ds-thread #ds-reset.ds-no-opacity .ds-tab a.ds-current{background:#f8f8f8} #ds-thread #ds-reset.ds-ie6 .ds-post-report,#ds-thread #ds-reset.ds-ie6 .ds-post-delete{display:inline !important} #ds-thread #ds-reset.ds-ie6 .ds-textarea-wrapper{padding:10px 10px} #ds-thread #ds-reset.ds-ie6 .ds-textarea-wrapper textarea{width:95%;color:#333;padding:0} #ds-thread #ds-reset.ds-ie6 .ds-post{width:100%;float:left} #ds-thread #ds-reset.ds-ie6 .ds-tab a.ds-current{padding-bottom:5px} #ds-thread #ds-reset.ds-ie6 #ds-ctx-bubble .ds-arrow{bottom:-8px} #ds-thread #ds-reset.ds-ie6 #ds-ctx-bubble .ds-arrow-border{bottom:-9px} #ds-thread.ds-narrow #ds-reset .ds-post-self{padding:8px} #ds-thread.ds-narrow #ds-reset .ds-comment-body,#ds-thread.ds-narrow #ds-reset .ds-replybox{padding-left:38px} #ds-thread.ds-narrow #ds-reset .ds-avatar img{width:30px;height:30px} #ds-thread.ds-narrow #ds-reset .ds-post-button{width:70px} #ds-thread.ds-narrow #ds-reset .ds-post-options{margin-right:70px} #ds-smilies-tooltip{border:1px solid #aaa;position:absolute;width:400px;background-color:#fff;z-index:9999;box-shadow:0 0 2px rgba(0,0,0,0.2);text-shadow:0 1px 0 #fff;-webkit-border-radius:3px;border-radius:3px} #ds-smilies-tooltip a{cursor:pointer} #ds-smilies-tooltip ul{list-style-type:none;padding:0;margin:0} #ds-smilies-tooltip ul.ds-smilies-tabs{width:119px;position:absolute;top:0;left:0;height:159px;overflow-y:auto;background:#f8f8f8;border-right:1px solid #ccc;border-top-left-radius:3px;border-bottom-left-radius:3px} #ds-smilies-tooltip ul.ds-smilies-tabs li a{color:#999;padding:6px 10px;display:block;border-bottom:1px solid #ccc;background-color:#fff;background-repeat:repeat-x;background-image:-khtml-gradient(linear, left top, left bottom, from(#fff), to(#e9e9e9));background:-moz-linear-gradient(top, #fff 0, #e9e9e9 100%);background:-webkit-gradient(linear, left top, left bottom, color-stop(0, #fff), color-stop(100%, #e9e9e9));background:-webkit-linear-gradient(top, #fff 0, #e9e9e9 100%);background:-ms-linear-gradient(top, #fff 0, #e9e9e9 100%);background:linear-gradient(top, #fff 0, #e9e9e9 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff',endColorstr='#e9e9e9',GradientType=0);font-size:12px;line-height:1.3em} #ds-smilies-tooltip ul.ds-smilies-tabs li:first-child a{border-top-left-radius:3px} #ds-smilies-tooltip ul.ds-smilies-tabs li a.ds-current{color:#666;background:#e3e3e3;filter:none;box-shadow:inset 0 0 4px rgba(0,0,0,0.1)} #ds-smilies-tooltip .ds-smilies-container{padding:10px 5px;height:140px;margin-left:125px;overflow-y:auto} #ds-smilies-tooltip .ds-smilies-container li{list-style:none;float:left;width:26px;height:26px;text-align:center;cursor:pointer} #ds-smilies-tooltip .ds-smilies-container li img{visibility:visible} #ds-smilies-tooltip .ds-smilies-container li:hover{position:relative;top:-1px} #ds-wrapper{left:0;right:0;top:20%;bottom:0;width:100%;margin:auto;z-index:9999;position:fixed;_position:absolute;text-align:center;color:#777} #ds-wrapper .ds-dialog,#ds-wrapper #ds-reset.ds-dialog{margin:0 auto;text-align:left;_zoom:1;width:480px;max-width:100%} #ds-wrapper #ds-reset.ds-dialog-bind-more .ds-service-list{width:50%} #ds-wrapper #ds-reset a{cursor:pointer;text-decoration:none;color:#777} #ds-wrapper #ds-reset .ds-dialog-inner{width:100%;position:relative;border:1px solid #aaa;background:#fff url("../images/bg_sprites.png") 0 -90px repeat-x;text-shadow:0 1px 0 #fff;box-shadow:inset 0 1px 1px #fff,0 2px 6px rgba(0,0,0,0.4)} #ds-wrapper #ds-reset .ds-dialog-inner .ds-unread-list{max-height:300px;overflow-y:auto} #ds-wrapper #ds-reset .ds-control-group{margin:18px 0;position:relative;padding-right:80px;max-width:166px} #ds-wrapper #ds-reset .ds-control-group input{color:#777;width:100%;font-size:13px;border:1px solid #ccc;padding:4px 80px 6px 6px;box-shadow:inset 0 1px 3px rgba(0,0,0,0.1)} #ds-wrapper #ds-reset .ds-control-group input:focus{border-color:#08b5fb} #ds-wrapper #ds-reset .ds-control-group label{font-size:13px;color:#ccc;letter-spacing:1px;position:absolute;right:0;top:8px} #ds-wrapper #ds-reset tr{height:45px} #ds-wrapper #ds-reset button{cursor:pointer;color:#555;background-color:#e6e6e6;background-repeat:no-repeat;background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#fff), color-stop(25%, #fff), to(#e6e6e6));background-image:-webkit-linear-gradient(#fff, #fff 25%, #e6e6e6);background-image:-moz-linear-gradient(top, #fff, #fff 25%, #e6e6e6);background-image:-ms-linear-gradient(#fff, #fff 25%, #e6e6e6);background-image:linear-gradient(#fff, #fff 25%, #e6e6e6);-webkit-transition:all .15s linear;-moz-transition:all .15s linear;transition:all .15s linear;border:1px solid #aaa;display:inline-block;font-size:15px;height:30px;width:100px;padding:0} #ds-wrapper #ds-reset button:hover{background-position:0 -15px;color:#333} #ds-wrapper #ds-reset button:active{top:0;-webkit-box-shadow:inset 0 2px 4px rgba(0,0,0,0.15),0 1px 2px rgba(0,0,0,0.05);box-shadow:inset 0 2px 4px rgba(0,0,0,0.15),0 1px 2px rgba(0,0,0,0.05)} #ds-wrapper #ds-reset h2{display:block;font-weight:normal;font-size:16px;margin:0 0 15px 0;color:#555} #ds-wrapper #ds-reset .ds-dialog-body{padding:30px 30px 25px;position:relative;overflow:hidden} #ds-wrapper #ds-reset .ds-icons-32{height:32px;margin-bottom:20px;overflow:hidden} #ds-wrapper #ds-reset .ds-icons-32 a{float:left;margin:0 5px 0 0} #ds-wrapper #ds-reset ul li{margin:10px 0} #ds-wrapper #ds-reset .ds-service-list{width:45%;float:left} #ds-wrapper #ds-reset .ds-service-list .ds-more-services{display:none} #ds-wrapper #ds-reset .ds-icon-ok{background-position:0 -203px;width:12px;height:12px} #ds-wrapper #ds-reset .ds-quote{margin:10px 0;padding:6px 10px;background:#f8f8f8;line-height:1.5em;font-size:12px;overflow-y:auto;max-height:180px} #ds-wrapper #ds-reset .ds-textarea-wrapper{border:1px solid #ccc;padding:0 20px 0 0;position:relative;margin:12px 0} #ds-wrapper #ds-reset .ds-textarea-wrapper textarea{width:100%;height:54px;margin:0;resize:none;padding:6px 10px;overflow:auto} #ds-wrapper #ds-reset .ds-textarea-wrapper .ds-hidden-text{top:0;left:10px;right:10px;position:absolute;visibility:hidden;word-wrap:break-word} #ds-wrapper #ds-reset .ds-textarea-wrapper textarea,#ds-wrapper #ds-reset .ds-textarea-wrapper .ds-hidden-text{font-size:13px;line-height:1.5em} #ds-wrapper #ds-reset .ds-actions{position:relative;height:30px} #ds-wrapper #ds-reset .ds-actions button{display:block;position:absolute;top:0;right:0} #ds-wrapper #ds-reset .ds-dialog-close{position:absolute;bottom:13px;right:11px;display:block;width:13px;height:13px;overflow:hidden;background:transparent url("../images/sprites.png") 0 -163px no-repeat;_background-image:url("../images/sprites.gif")} #ds-wrapper #ds-reset .ds-dialog-close:hover{background-position:0 -176px} #ds-wrapper #ds-reset .ds-logo{display:inline-block;width:64px;height:21px;margin-right:10px;background:url("../images/logo.png") 0 0 no-repeat} #ds-wrapper #ds-reset .ds-dialog-footer{clear:both;border-top:1px dotted #ccc;padding:10px 15px 6px} #ds-wrapper #ds-reset .ds-dialog-footer span{color:#999;position:relative;top:-6px} #ds-wrapper #ds-reset .ds-connect{display:none} #ds-wrapper #ds-reset .ds-unread-list li{position:relative;margin:0;padding:8px 0;border-top:1px solid #eee;line-height:1.5em;color:#777} #ds-wrapper #ds-reset .ds-unread-list li a{color:#d32} #ds-wrapper #ds-reset .ds-unread-list li a:hover{color:#e45c4e} #ds-wrapper #ds-reset .ds-unread-list li a[rel~="author"]{color:#777} #ds-wrapper #ds-reset .ds-unread-list li .ds-delete{display:none;position:absolute;right:0;bottom:10px;text-indent:-9999px;width:14px;height:14px;overflow:hidden;background:transparent url("../images/delete.gif") no-repeat scroll 0 -14px} #ds-wrapper #ds-reset .ds-unread-list li:hover .ds-delete{display:block} #ds-wrapper #ds-reset.ds-touch .ds-unread-list li .ds-delete{display:block} #ds-wrapper.ds-no-transition #ds-reset button{background:url("../images/bg_sprites.png") repeat-x !important} #ds-wrapper.ds-no-transition #ds-reset button:hover{background-position:0 -30px !important} #ds-wrapper.ds-no-transition #ds-reset.ds-dialog{background-image:url("../images/black.png")} #ds-wrapper.ds-ie6 #ds-reset{margin-top:0} #ds-wrapper.ds-ie6 #ds-reset .ds-dialog-footer span{top:-3px} #ds-notify{position:fixed;*position:absolute;z-index:9999;max-width:144px;_width:130px;display:block;float:none;padding:8px 12px;background-color:#fff;-webkit-border-radius:5px;border-radius:5px;box-shadow:0 1px 1px rgba(0,0,0,0.25);border:1px solid #aaa} #ds-notify #ds-reset{line-height:14px} #ds-notify #ds-reset a.ds-logo{width:18px;height:14px;background:transparent url("../images/sprites.png") 0 -220px no-repeat;_background-image:url("../images/sprites.gif");position:absolute;display:block;top:8px;left:12px} #ds-notify #ds-reset span.ds-unread-count{font-weight:bold;color:#e32} #ds-notify #ds-reset ul.ds-notify-unread{line-height:150%;display:inline-block;margin:0 0 0 22px;padding:0} #ds-notify #ds-reset ul.ds-notify-unread li a{color:#d32;text-decoration:none} #ds-recent-comments li.ds-comment{list-style-type:none;position:relative !important;margin:0 !important;padding:6px 0 !important;_zoom:1;border-top:1px solid #dcdcdc;word-wrap:break-word;font-size:13px} #ds-recent-comments li.ds-comment a{display:inline} #ds-recent-comments li.ds-comment div{padding:0;margin:0} #ds-recent-comments li.ds-comment .ds-avatar{position:absolute !important;top:6px !important;left:0 !important} #ds-recent-comments li.ds-comment .ds-avatar a{display:block} #ds-recent-comments li.ds-comment .ds-meta{*margin-left:-15px;_margin-left:0} #ds-recent-comments li.ds-comment .ds-time{font-size:10px;color:#999;margin-left:5px} #ds-recent-comments li.ds-comment .ds-thread-title{margin:0 0 4px 0;line-height:13px;font-size:12px;color:#777} #ds-recent-comments li.ds-comment .ds-thread-title a{font-size:12px} #ds-recent-comments li.ds-comment .ds-excerpt{line-height:18px} #ds-recent-comments li.ds-comment.ds-show-avatars{padding-left:38px !important} #ds-recent-visitors .ds-avatar{display:inline;padding:0 !important;margin:4px !important} #ds-login .ds-icons-32 a{float:left;margin:0 5px 0 0} #ds-share #ds-reset.ds-share-aside-left ul,#ds-share #ds-reset.ds-share-aside-right ul,#ds-share #ds-reset.ds-share-inline ul{list-style:none;margin:0;padding:0;*zoom:1} #ds-share #ds-reset.ds-share-aside-left ul:after,#ds-share #ds-reset.ds-share-aside-right ul:after,#ds-share #ds-reset.ds-share-inline ul:after{content:".";display:block;height:0;clear:both;visibility:hidden} #ds-share #ds-reset.ds-share-aside-left ul li,#ds-share #ds-reset.ds-share-aside-right ul li,#ds-share #ds-reset.ds-share-inline ul li{list-style:none;float:left;font-size:14px;padding:7px 0} #ds-share #ds-reset.ds-share-inline{position:relative} #ds-share #ds-reset.ds-share-inline ul li{margin-left:8px} #ds-share #ds-reset.ds-share-inline ul li:first-child{margin-left:0} #ds-share #ds-reset.ds-share-aside-left,#ds-share #ds-reset.ds-share-aside-right{position:fixed;top:50%;z-index:1000;-webkit-transition:all .2s linear;-moz-transition:all .2s linear;transition:all .2s linear} #ds-share #ds-reset.ds-share-aside-left{left:0;-webkit-transform:translate(-100%, -50%);-ms-transform:translate(-100%, -50%);-o-transform:translate(-100%, -50%);transform:translate(-100%, -50%)} #ds-share #ds-reset.ds-share-aside-right{right:0;-webkit-transform:translate(100%, -50%);-ms-transform:translate(100%, -50%);-o-transform:translate(100%, -50%);transform:translate(100%, -50%)} #ds-share #ds-reset .ds-share-aside-toggle{width:28px;padding:23px 2px;background:#e94c4c;color:#fff;position:absolute;top:0;text-align:center;font-size:16px;font-weight:bolder;cursor:pointer} #ds-share #ds-reset.ds-share-aside-left .ds-share-aside-toggle{right:-32px;border-top-right-radius:3px;border-bottom-right-radius:3px} #ds-share #ds-reset.ds-share-aside-left .ds-share-icons{border-top-right-radius:0;border-top-left-radius:0;border-bottom-left-radius:0;border-left:none} #ds-share #ds-reset.ds-share-aside-right .ds-share-aside-toggle{left:-32px;border-top-left-radius:3px;border-bottom-left-radius:3px} #ds-share #ds-reset.ds-share-aside-right .ds-share-icons{border-top-left-radius:0;border-top-right-radius:0;border-bottom-right-radius:0;border-right:none} #ds-share #ds-reset.slide-to-left{-webkit-transform:translate(0, -50%);-ms-transform:translate(0, -50%);-o-transform:translate(0, -50%);transform:translate(0, -50%)} #ds-share #ds-reset.slide-to-right{-webkit-transform:translate(0, -50%);-ms-transform:translate(0, -50%);-o-transform:translate(0, -50%);transform:translate(0, -50%)} #ds-share #ds-reset .ds-share-icons-32 .ds-weibo,#ds-share #ds-reset .ds-share-icons-32 .ds-sohu,#ds-share #ds-reset .ds-share-icons-32 .ds-renren,#ds-share #ds-reset .ds-share-icons-32 .ds-netease,#ds-share #ds-reset .ds-share-icons-32 .ds-qqt,#ds-share #ds-reset .ds-share-icons-32 .ds-kaixin,#ds-share #ds-reset .ds-share-icons-32 .ds-douban,#ds-share #ds-reset .ds-share-icons-32 .ds-msn,#ds-share #ds-reset .ds-share-icons-32 .ds-qzone,#ds-share #ds-reset .ds-share-icons-32 .ds-duoshuo,#ds-share #ds-reset .ds-share-icons-32 .ds-360,#ds-share #ds-reset .ds-share-icons-32 .ds-alipay,#ds-share #ds-reset .ds-share-icons-32 .ds-qq,#ds-share #ds-reset .ds-share-icons-32 .ds-baidu,#ds-share #ds-reset .ds-share-icons-32 .ds-taobao,#ds-share #ds-reset .ds-share-icons-32 .ds-google,#ds-share #ds-reset .ds-share-icons-32 .ds-more,#ds-share #ds-reset .ds-share-icons-32 .ds-wechat,#ds-share #ds-reset .ds-share-icons-32 .ds-diandian,#ds-share #ds-reset .ds-share-icons-32 .ds-huaban,#ds-share #ds-reset .ds-share-icons-32 .ds-duitang,#ds-share #ds-reset .ds-share-icons-32 .ds-youdao,#ds-share #ds-reset .ds-share-icons-32 .ds-pengyou,#ds-share #ds-reset .ds-share-icons-32 .ds-facebook,#ds-share #ds-reset .ds-share-icons-32 .ds-twitter,#ds-share #ds-reset .ds-share-icons-32 .ds-linkedin,#ds-share #ds-reset .ds-share-icons-32 .ds-meilishuo,#ds-share #ds-reset .ds-share-icons-32 .ds-mogujie{height:32px;width:32px;text-decoration:none;color:#999;display:block;overflow:hidden;background-image:url("../images/service-icons-color-32.png");background-repeat:no-repeat;_background-image:url("../images/service-icons-color-32.gif")} #ds-share #ds-reset .ds-share-icons-32 .ds-weibo{background-position:0 0} #ds-share #ds-reset .ds-share-icons-32 .ds-sohu{background-position:0 -32px} #ds-share #ds-reset .ds-share-icons-32 .ds-renren{background-position:0 -64px} #ds-share #ds-reset .ds-share-icons-32 .ds-netease{background-position:0 -96px} #ds-share #ds-reset .ds-share-icons-32 .ds-qqt{background-position:0 -128px} #ds-share #ds-reset .ds-share-icons-32 .ds-kaixin{background-position:0 -160px} #ds-share #ds-reset .ds-share-icons-32 .ds-douban{background-position:0 -192px} #ds-share #ds-reset .ds-share-icons-32 .ds-msn{background-position:0 -224px} #ds-share #ds-reset .ds-share-icons-32 .ds-qzone{background-position:0 -256px} #ds-share #ds-reset .ds-share-icons-32 .ds-duoshuo{background-position:0 -288px} #ds-share #ds-reset .ds-share-icons-32 .ds-360{background-position:0 -320px} #ds-share #ds-reset .ds-share-icons-32 .ds-alipay{background-position:0 -352px} #ds-share #ds-reset .ds-share-icons-32 .ds-qq{background-position:0 -384px} #ds-share #ds-reset .ds-share-icons-32 .ds-baidu{background-position:0 -416px} #ds-share #ds-reset .ds-share-icons-32 .ds-taobao{background-position:0 -448px} #ds-share #ds-reset .ds-share-icons-32 .ds-google{background-position:0 -480px} #ds-share #ds-reset .ds-share-icons-32 .ds-more{background-position:0 -512px} #ds-share #ds-reset .ds-share-icons-32 .ds-wechat{background-position:0 -544px} #ds-share #ds-reset .ds-share-icons-32 .ds-diandian{background-position:0 -576px} #ds-share #ds-reset .ds-share-icons-32 .ds-huaban{background-position:0 -608px} #ds-share #ds-reset .ds-share-icons-32 .ds-duitang{background-position:0 -640px} #ds-share #ds-reset .ds-share-icons-32 .ds-youdao{background-position:0 -672px} #ds-share #ds-reset .ds-share-icons-32 .ds-pengyou{background-position:0 -704px} #ds-share #ds-reset .ds-share-icons-32 .ds-facebook{background-position:0 -736px} #ds-share #ds-reset .ds-share-icons-32 .ds-twitter{background-position:0 -768px} #ds-share #ds-reset .ds-share-icons-32 .ds-linkedin{background-position:0 -800px} #ds-share #ds-reset .ds-share-icons-32 .ds-meilishuo{background-position:0 -832px} #ds-share #ds-reset .ds-share-icons-32 .ds-mogujie{background-position:0 -864px} #ds-share #ds-reset .ds-share-icons-32 .flat{background-image:url("../images/service-icons-color-flat-32.png");_background-image:url("../images/service-icons-color-flat-32.gif")} #ds-share #ds-reset .ds-share-icons-16 .ds-weibo,#ds-share #ds-reset .ds-share-icons-16 .ds-sohu,#ds-share #ds-reset .ds-share-icons-16 .ds-renren,#ds-share #ds-reset .ds-share-icons-16 .ds-netease,#ds-share #ds-reset .ds-share-icons-16 .ds-qqt,#ds-share #ds-reset .ds-share-icons-16 .ds-kaixin,#ds-share #ds-reset .ds-share-icons-16 .ds-douban,#ds-share #ds-reset .ds-share-icons-16 .ds-msn,#ds-share #ds-reset .ds-share-icons-16 .ds-qzone,#ds-share #ds-reset .ds-share-icons-16 .ds-duoshuo,#ds-share #ds-reset .ds-share-icons-16 .ds-360,#ds-share #ds-reset .ds-share-icons-16 .ds-alipay,#ds-share #ds-reset .ds-share-icons-16 .ds-qq,#ds-share #ds-reset .ds-share-icons-16 .ds-baidu,#ds-share #ds-reset .ds-share-icons-16 .ds-taobao,#ds-share #ds-reset .ds-share-icons-16 .ds-google,#ds-share #ds-reset .ds-share-icons-16 .ds-more,#ds-share #ds-reset .ds-share-icons-16 .ds-wechat,#ds-share #ds-reset .ds-share-icons-16 .ds-diandian,#ds-share #ds-reset .ds-share-icons-16 .ds-huaban,#ds-share #ds-reset .ds-share-icons-16 .ds-duitang,#ds-share #ds-reset .ds-share-icons-16 .ds-youdao,#ds-share #ds-reset .ds-share-icons-16 .ds-pengyou,#ds-share #ds-reset .ds-share-icons-16 .ds-facebook,#ds-share #ds-reset .ds-share-icons-16 .ds-twitter,#ds-share #ds-reset .ds-share-icons-16 .ds-linkedin,#ds-share #ds-reset .ds-share-icons-16 .ds-meilishuo,#ds-share #ds-reset .ds-share-icons-16 .ds-mogujie{line-height:16px;padding-left:20px;text-decoration:none;color:#999;display:block;overflow:hidden;background-image:url("../images/service-icons-color.png");background-repeat:no-repeat;_background-image:url("../images/service-icons-color.gif")} #ds-share #ds-reset .ds-share-icons-16 .ds-weibo{background-position:0 0} #ds-share #ds-reset .ds-share-icons-16 .ds-sohu{background-position:0 -16px} #ds-share #ds-reset .ds-share-icons-16 .ds-renren{background-position:0 -32px} #ds-share #ds-reset .ds-share-icons-16 .ds-netease{background-position:0 -48px} #ds-share #ds-reset .ds-share-icons-16 .ds-qqt{background-position:0 -64px} #ds-share #ds-reset .ds-share-icons-16 .ds-kaixin{background-position:0 -80px} #ds-share #ds-reset .ds-share-icons-16 .ds-douban{background-position:0 -96px} #ds-share #ds-reset .ds-share-icons-16 .ds-msn{background-position:0 -112px} #ds-share #ds-reset .ds-share-icons-16 .ds-qzone{background-position:0 -128px} #ds-share #ds-reset .ds-share-icons-16 .ds-duoshuo{background-position:0 -144px} #ds-share #ds-reset .ds-share-icons-16 .ds-360{background-position:0 -160px} #ds-share #ds-reset .ds-share-icons-16 .ds-alipay{background-position:0 -176px} #ds-share #ds-reset .ds-share-icons-16 .ds-qq{background-position:0 -192px} #ds-share #ds-reset .ds-share-icons-16 .ds-baidu{background-position:0 -208px} #ds-share #ds-reset .ds-share-icons-16 .ds-taobao{background-position:0 -224px} #ds-share #ds-reset .ds-share-icons-16 .ds-google{background-position:0 -240px} #ds-share #ds-reset .ds-share-icons-16 .ds-more{background-position:0 -256px} #ds-share #ds-reset .ds-share-icons-16 .ds-wechat{background-position:0 -272px} #ds-share #ds-reset .ds-share-icons-16 .ds-diandian{background-position:0 -288px} #ds-share #ds-reset .ds-share-icons-16 .ds-huaban{background-position:0 -304px} #ds-share #ds-reset .ds-share-icons-16 .ds-duitang{background-position:0 -320px} #ds-share #ds-reset .ds-share-icons-16 .ds-youdao{background-position:0 -336px} #ds-share #ds-reset .ds-share-icons-16 .ds-pengyou{background-position:0 -352px} #ds-share #ds-reset .ds-share-icons-16 .ds-facebook{background-position:0 -368px} #ds-share #ds-reset .ds-share-icons-16 .ds-twitter{background-position:0 -384px} #ds-share #ds-reset .ds-share-icons-16 .ds-linkedin{background-position:0 -400px} #ds-share #ds-reset .ds-share-icons-16 .ds-meilishuo{background-position:0 -416px} #ds-share #ds-reset .ds-share-icons-16 .ds-mogujie{background-position:0 -432px} #ds-share #ds-reset .ds-share-icons-16 .flat{background-image:url("../images/service-icons-color-flat.png");_background-image:url("../images/service-icons-color-flat.gif")} #ds-share #ds-reset .ds-share-icons{border:1px solid #ccc;background:#fff;border-radius:3px} #ds-share #ds-reset .ds-share-icons .ds-share-icons-inner{width:208px;padding:10px} #ds-share #ds-reset .ds-share-icons .ds-share-icons-inner ul{margin:0;padding:0} #ds-share #ds-reset .ds-share-icons .ds-share-icons-inner ul li{padding-left:8px;margin-left:0;width:92px;font-size:12px} #ds-share #ds-reset .ds-share-icons .ds-share-icons-inner ul li:hover{border-radius:3px;background:#eee} #ds-share #ds-reset .ds-share-icons .ds-share-icons-inner ul li:nth-child(even){margin-left:8px} #ds-share #ds-reset .ds-share-icons .ds-share-icons-footer{text-align:right;line-height:30px;font-size:12px;color:#ccc;background-color:#eee;padding-right:10px} #ds-share #ds-reset .ds-share-icons-more{top:30px;left:0;position:absolute;z-index:1000} #ds-share.ds-no-transition #ds-reset.ds-share-aside-left{left:-229px;transform:none} #ds-share.ds-no-transition #ds-reset.ds-share-aside-right{right:-229px;transform:none} #ds-share .ds-share-aside-left,#ds-share .ds-share-aside-right{width:230px;_position:absolute;_bottom:auto;_top:expression(eval(document.documentElement.scrollTop+200))} #ds-share .ds-share-aside-left{_left:expression(eval(document.documentElement.scrollLeft-230))} #ds-share .ds-share-aside-right{_right:auto;_left:expression(eval(document.documentElement.scrollLeft+document.documentElement.clientWidth-this.offsetWidth)-(parseInt(this.currentStyle.marginLeft,10)||0)-(parseInt(this.currentStyle.marginRight,10)||0 - 230))}
\ No newline at end of file
diff --git a/src/main/resources/static/css/index_A.css b/src/main/resources/static/css/index_A.css
new file mode 100644
index 0000000..fa891b1
--- /dev/null
+++ b/src/main/resources/static/css/index_A.css
@@ -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*/
+
diff --git a/src/main/resources/static/css/information.css b/src/main/resources/static/css/information.css
new file mode 100644
index 0000000..2fa558f
--- /dev/null
+++ b/src/main/resources/static/css/information.css
@@ -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}
\ No newline at end of file
diff --git a/src/main/resources/static/css/jiathis_counter.css b/src/main/resources/static/css/jiathis_counter.css
new file mode 100644
index 0000000..5c602a3
--- /dev/null
+++ b/src/main/resources/static/css/jiathis_counter.css
@@ -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;
+}
\ No newline at end of file
diff --git a/src/main/resources/static/css/jiathis_share.css b/src/main/resources/static/css/jiathis_share.css
new file mode 100644
index 0000000..c31ba22
--- /dev/null
+++ b/src/main/resources/static/css/jiathis_share.css
@@ -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}
diff --git a/src/main/resources/static/css/member.css b/src/main/resources/static/css/member.css
new file mode 100644
index 0000000..c0371ed
--- /dev/null
+++ b/src/main/resources/static/css/member.css
@@ -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}
diff --git a/src/main/resources/static/css/newesthing.css b/src/main/resources/static/css/newesthing.css
new file mode 100644
index 0000000..2094a97
--- /dev/null
+++ b/src/main/resources/static/css/newesthing.css
@@ -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%}
diff --git a/src/main/resources/static/css/same.css b/src/main/resources/static/css/same.css
new file mode 100644
index 0000000..cc28de2
--- /dev/null
+++ b/src/main/resources/static/css/same.css
@@ -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}
+
+
diff --git a/src/main/resources/static/css/same_A.css b/src/main/resources/static/css/same_A.css
new file mode 100644
index 0000000..6b5e106
--- /dev/null
+++ b/src/main/resources/static/css/same_A.css
@@ -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}
+
+
+
+
+
+
diff --git a/src/main/resources/static/css/shopping.css b/src/main/resources/static/css/shopping.css
new file mode 100644
index 0000000..848ec18
--- /dev/null
+++ b/src/main/resources/static/css/shopping.css
@@ -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}
diff --git a/src/main/resources/static/css/style.css b/src/main/resources/static/css/style.css
new file mode 100644
index 0000000..3fb3c66
--- /dev/null
+++ b/src/main/resources/static/css/style.css
@@ -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;}
diff --git a/src/main/resources/static/css/uploadify.css b/src/main/resources/static/css/uploadify.css
new file mode 100644
index 0000000..2eb2407
--- /dev/null
+++ b/src/main/resources/static/css/uploadify.css
@@ -0,0 +1,93 @@
+/*
+Uploadify
+Copyright (c) 2012 Reactive Apps, Ronnie Garcia
+Released under the MIT License
+*/
+
+.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;
+}
\ No newline at end of file
diff --git a/src/main/resources/static/css/wrong.css b/src/main/resources/static/css/wrong.css
new file mode 100644
index 0000000..92af3c4
--- /dev/null
+++ b/src/main/resources/static/css/wrong.css
@@ -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}
diff --git a/src/main/resources/static/images/02wj.jpg b/src/main/resources/static/images/02wj.jpg
new file mode 100644
index 0000000..fbb1954
Binary files /dev/null and b/src/main/resources/static/images/02wj.jpg differ
diff --git a/src/main/resources/static/images/03wj.jpg b/src/main/resources/static/images/03wj.jpg
new file mode 100644
index 0000000..790b733
Binary files /dev/null and b/src/main/resources/static/images/03wj.jpg differ
diff --git a/src/main/resources/static/images/20140901162336bad2605031.jpg b/src/main/resources/static/images/20140901162336bad2605031.jpg
new file mode 100644
index 0000000..69cccb6
Binary files /dev/null and b/src/main/resources/static/images/20140901162336bad2605031.jpg differ
diff --git a/src/main/resources/static/images/2014090119253914614d2d7b.jpg b/src/main/resources/static/images/2014090119253914614d2d7b.jpg
new file mode 100644
index 0000000..9e31bb5
Binary files /dev/null and b/src/main/resources/static/images/2014090119253914614d2d7b.jpg differ
diff --git a/src/main/resources/static/images/2014090119253961c1aa6a86.jpg b/src/main/resources/static/images/2014090119253961c1aa6a86.jpg
new file mode 100644
index 0000000..0eedde0
Binary files /dev/null and b/src/main/resources/static/images/2014090119253961c1aa6a86.jpg differ
diff --git a/src/main/resources/static/images/20140901192917179d1ae386.jpg b/src/main/resources/static/images/20140901192917179d1ae386.jpg
new file mode 100644
index 0000000..9e31bb5
Binary files /dev/null and b/src/main/resources/static/images/20140901192917179d1ae386.jpg differ
diff --git a/src/main/resources/static/images/201409011932585de1c2f2a9.jpg b/src/main/resources/static/images/201409011932585de1c2f2a9.jpg
new file mode 100644
index 0000000..9e31bb5
Binary files /dev/null and b/src/main/resources/static/images/201409011932585de1c2f2a9.jpg differ
diff --git a/src/main/resources/static/images/20140901193258beafcb5eb7.jpg b/src/main/resources/static/images/20140901193258beafcb5eb7.jpg
new file mode 100644
index 0000000..0eedde0
Binary files /dev/null and b/src/main/resources/static/images/20140901193258beafcb5eb7.jpg differ
diff --git a/src/main/resources/static/images/2014090119350717386d7a1e.jpg b/src/main/resources/static/images/2014090119350717386d7a1e.jpg
new file mode 100644
index 0000000..9e31bb5
Binary files /dev/null and b/src/main/resources/static/images/2014090119350717386d7a1e.jpg differ
diff --git a/src/main/resources/static/images/201409011935072849fe802f.jpg b/src/main/resources/static/images/201409011935072849fe802f.jpg
new file mode 100644
index 0000000..0eedde0
Binary files /dev/null and b/src/main/resources/static/images/201409011935072849fe802f.jpg differ
diff --git a/src/main/resources/static/images/20140901195507683ad84477.jpg b/src/main/resources/static/images/20140901195507683ad84477.jpg
new file mode 100644
index 0000000..f952575
Binary files /dev/null and b/src/main/resources/static/images/20140901195507683ad84477.jpg differ
diff --git a/src/main/resources/static/images/201409031259093e45b5ecf0.jpg b/src/main/resources/static/images/201409031259093e45b5ecf0.jpg
new file mode 100644
index 0000000..9e31bb5
Binary files /dev/null and b/src/main/resources/static/images/201409031259093e45b5ecf0.jpg differ
diff --git a/src/main/resources/static/images/2014090312590972b221c6ce.jpg b/src/main/resources/static/images/2014090312590972b221c6ce.jpg
new file mode 100644
index 0000000..0eedde0
Binary files /dev/null and b/src/main/resources/static/images/2014090312590972b221c6ce.jpg differ
diff --git a/src/main/resources/static/images/201409031759476e8527cccb.jpg b/src/main/resources/static/images/201409031759476e8527cccb.jpg
new file mode 100644
index 0000000..f952575
Binary files /dev/null and b/src/main/resources/static/images/201409031759476e8527cccb.jpg differ
diff --git a/src/main/resources/static/images/20140903175947fa15145af3.jpg b/src/main/resources/static/images/20140903175947fa15145af3.jpg
new file mode 100644
index 0000000..ce2c300
Binary files /dev/null and b/src/main/resources/static/images/20140903175947fa15145af3.jpg differ
diff --git a/src/main/resources/static/images/2014091515351160b3d26880.jpg b/src/main/resources/static/images/2014091515351160b3d26880.jpg
new file mode 100644
index 0000000..ee06227
Binary files /dev/null and b/src/main/resources/static/images/2014091515351160b3d26880.jpg differ
diff --git a/src/main/resources/static/images/20141110150509719b7d664c.jpg b/src/main/resources/static/images/20141110150509719b7d664c.jpg
new file mode 100644
index 0000000..ed7aaa4
Binary files /dev/null and b/src/main/resources/static/images/20141110150509719b7d664c.jpg differ
diff --git a/src/main/resources/static/images/201411140408514e81071ba7.jpg b/src/main/resources/static/images/201411140408514e81071ba7.jpg
new file mode 100644
index 0000000..45922a6
Binary files /dev/null and b/src/main/resources/static/images/201411140408514e81071ba7.jpg differ
diff --git a/src/main/resources/static/images/2014111404094563e11107a1.jpg b/src/main/resources/static/images/2014111404094563e11107a1.jpg
new file mode 100644
index 0000000..b384603
Binary files /dev/null and b/src/main/resources/static/images/2014111404094563e11107a1.jpg differ
diff --git a/src/main/resources/static/images/2014111917282523fd66b45e.jpg b/src/main/resources/static/images/2014111917282523fd66b45e.jpg
new file mode 100644
index 0000000..8e860a6
Binary files /dev/null and b/src/main/resources/static/images/2014111917282523fd66b45e.jpg differ
diff --git a/src/main/resources/static/images/201411201721019341ac25d6.jpg b/src/main/resources/static/images/201411201721019341ac25d6.jpg
new file mode 100644
index 0000000..35de216
Binary files /dev/null and b/src/main/resources/static/images/201411201721019341ac25d6.jpg differ
diff --git a/src/main/resources/static/images/20141202171728236d1a271c.jpg b/src/main/resources/static/images/20141202171728236d1a271c.jpg
new file mode 100644
index 0000000..dd9aef7
Binary files /dev/null and b/src/main/resources/static/images/20141202171728236d1a271c.jpg differ
diff --git a/src/main/resources/static/images/20141202172437db3348c056.jpg b/src/main/resources/static/images/20141202172437db3348c056.jpg
new file mode 100644
index 0000000..0786e9c
Binary files /dev/null and b/src/main/resources/static/images/20141202172437db3348c056.jpg differ
diff --git a/src/main/resources/static/images/201412031648134faa47945e.jpg b/src/main/resources/static/images/201412031648134faa47945e.jpg
new file mode 100644
index 0000000..ca37db2
Binary files /dev/null and b/src/main/resources/static/images/201412031648134faa47945e.jpg differ
diff --git a/src/main/resources/static/images/20141203164814cbaa761ecb.jpg b/src/main/resources/static/images/20141203164814cbaa761ecb.jpg
new file mode 100644
index 0000000..7445853
Binary files /dev/null and b/src/main/resources/static/images/20141203164814cbaa761ecb.jpg differ
diff --git a/src/main/resources/static/images/201412081512070b82d519cb.jpg b/src/main/resources/static/images/201412081512070b82d519cb.jpg
new file mode 100644
index 0000000..cfa14e3
Binary files /dev/null and b/src/main/resources/static/images/201412081512070b82d519cb.jpg differ
diff --git a/src/main/resources/static/images/20141208151207e3fa9cdc9e.jpg b/src/main/resources/static/images/20141208151207e3fa9cdc9e.jpg
new file mode 100644
index 0000000..5b366c0
Binary files /dev/null and b/src/main/resources/static/images/20141208151207e3fa9cdc9e.jpg differ
diff --git a/src/main/resources/static/images/20141208151342d086aedadc.jpg b/src/main/resources/static/images/20141208151342d086aedadc.jpg
new file mode 100644
index 0000000..1a45721
Binary files /dev/null and b/src/main/resources/static/images/20141208151342d086aedadc.jpg differ
diff --git a/src/main/resources/static/images/20141208151343c33b1c06ce.jpg b/src/main/resources/static/images/20141208151343c33b1c06ce.jpg
new file mode 100644
index 0000000..0ab3268
Binary files /dev/null and b/src/main/resources/static/images/20141208151343c33b1c06ce.jpg differ
diff --git a/src/main/resources/static/images/20141208151356816302d93c.jpg b/src/main/resources/static/images/20141208151356816302d93c.jpg
new file mode 100644
index 0000000..1a45721
Binary files /dev/null and b/src/main/resources/static/images/20141208151356816302d93c.jpg differ
diff --git a/src/main/resources/static/images/20141208151356af0991c81c.jpg b/src/main/resources/static/images/20141208151356af0991c81c.jpg
new file mode 100644
index 0000000..0ab3268
Binary files /dev/null and b/src/main/resources/static/images/20141208151356af0991c81c.jpg differ
diff --git a/src/main/resources/static/images/20141208151441a7c5365eda.jpg b/src/main/resources/static/images/20141208151441a7c5365eda.jpg
new file mode 100644
index 0000000..ce2c300
Binary files /dev/null and b/src/main/resources/static/images/20141208151441a7c5365eda.jpg differ
diff --git a/src/main/resources/static/images/20141208151441cc5ac80d54.jpg b/src/main/resources/static/images/20141208151441cc5ac80d54.jpg
new file mode 100644
index 0000000..f952575
Binary files /dev/null and b/src/main/resources/static/images/20141208151441cc5ac80d54.jpg differ
diff --git a/src/main/resources/static/images/201412081516238b52b39cab.jpg b/src/main/resources/static/images/201412081516238b52b39cab.jpg
new file mode 100644
index 0000000..dbf1952
Binary files /dev/null and b/src/main/resources/static/images/201412081516238b52b39cab.jpg differ
diff --git a/src/main/resources/static/images/20141208151624bd02fe9e65.jpg b/src/main/resources/static/images/20141208151624bd02fe9e65.jpg
new file mode 100644
index 0000000..72c3be1
Binary files /dev/null and b/src/main/resources/static/images/20141208151624bd02fe9e65.jpg differ
diff --git a/src/main/resources/static/images/201412161821271e4468041c.jpg b/src/main/resources/static/images/201412161821271e4468041c.jpg
new file mode 100644
index 0000000..168a6fe
Binary files /dev/null and b/src/main/resources/static/images/201412161821271e4468041c.jpg differ
diff --git a/src/main/resources/static/images/201501060941408c8e6fe04b.jpg b/src/main/resources/static/images/201501060941408c8e6fe04b.jpg
new file mode 100644
index 0000000..989a984
Binary files /dev/null and b/src/main/resources/static/images/201501060941408c8e6fe04b.jpg differ
diff --git a/src/main/resources/static/images/201501060941410721183d16.jpg b/src/main/resources/static/images/201501060941410721183d16.jpg
new file mode 100644
index 0000000..557424c
Binary files /dev/null and b/src/main/resources/static/images/201501060941410721183d16.jpg differ
diff --git a/src/main/resources/static/images/2015010609414149c8e7644b.jpg b/src/main/resources/static/images/2015010609414149c8e7644b.jpg
new file mode 100644
index 0000000..91395cc
Binary files /dev/null and b/src/main/resources/static/images/2015010609414149c8e7644b.jpg differ
diff --git a/src/main/resources/static/images/2015012018452690c00b5480.jpg b/src/main/resources/static/images/2015012018452690c00b5480.jpg
new file mode 100644
index 0000000..db0fb5c
Binary files /dev/null and b/src/main/resources/static/images/2015012018452690c00b5480.jpg differ
diff --git a/src/main/resources/static/images/201501201845439d43fc7870.jpg b/src/main/resources/static/images/201501201845439d43fc7870.jpg
new file mode 100644
index 0000000..d372d5c
Binary files /dev/null and b/src/main/resources/static/images/201501201845439d43fc7870.jpg differ
diff --git a/src/main/resources/static/images/2015012018455253c9e31d8e.jpg b/src/main/resources/static/images/2015012018455253c9e31d8e.jpg
new file mode 100644
index 0000000..61db556
Binary files /dev/null and b/src/main/resources/static/images/2015012018455253c9e31d8e.jpg differ
diff --git a/src/main/resources/static/images/201501201846053c8eb0add7.jpg b/src/main/resources/static/images/201501201846053c8eb0add7.jpg
new file mode 100644
index 0000000..cd9704e
Binary files /dev/null and b/src/main/resources/static/images/201501201846053c8eb0add7.jpg differ
diff --git a/src/main/resources/static/images/201501201846305e6e09653c.jpg b/src/main/resources/static/images/201501201846305e6e09653c.jpg
new file mode 100644
index 0000000..9931cb3
Binary files /dev/null and b/src/main/resources/static/images/201501201846305e6e09653c.jpg differ
diff --git a/src/main/resources/static/images/201501201846382e6ceb30c5.jpg b/src/main/resources/static/images/201501201846382e6ceb30c5.jpg
new file mode 100644
index 0000000..b87de16
Binary files /dev/null and b/src/main/resources/static/images/201501201846382e6ceb30c5.jpg differ
diff --git a/src/main/resources/static/images/20150120184722a46183360f.jpg b/src/main/resources/static/images/20150120184722a46183360f.jpg
new file mode 100644
index 0000000..066fbc1
Binary files /dev/null and b/src/main/resources/static/images/20150120184722a46183360f.jpg differ
diff --git a/src/main/resources/static/images/201501201847376210e9b59b.jpg b/src/main/resources/static/images/201501201847376210e9b59b.jpg
new file mode 100644
index 0000000..defe5f4
Binary files /dev/null and b/src/main/resources/static/images/201501201847376210e9b59b.jpg differ
diff --git a/src/main/resources/static/images/20150120184745d54c001d5c.jpg b/src/main/resources/static/images/20150120184745d54c001d5c.jpg
new file mode 100644
index 0000000..056d0c8
Binary files /dev/null and b/src/main/resources/static/images/20150120184745d54c001d5c.jpg differ
diff --git a/src/main/resources/static/images/2015012018475746eefc0aca.jpg b/src/main/resources/static/images/2015012018475746eefc0aca.jpg
new file mode 100644
index 0000000..d38ec84
Binary files /dev/null and b/src/main/resources/static/images/2015012018475746eefc0aca.jpg differ
diff --git a/src/main/resources/static/images/2015012018480576fed37584.jpg b/src/main/resources/static/images/2015012018480576fed37584.jpg
new file mode 100644
index 0000000..6b664e9
Binary files /dev/null and b/src/main/resources/static/images/2015012018480576fed37584.jpg differ
diff --git a/src/main/resources/static/images/201501201848124708fa4359.jpg b/src/main/resources/static/images/201501201848124708fa4359.jpg
new file mode 100644
index 0000000..4235ee2
Binary files /dev/null and b/src/main/resources/static/images/201501201848124708fa4359.jpg differ
diff --git a/src/main/resources/static/images/20150120184913353df5c1de.jpg b/src/main/resources/static/images/20150120184913353df5c1de.jpg
new file mode 100644
index 0000000..f9daa0b
Binary files /dev/null and b/src/main/resources/static/images/20150120184913353df5c1de.jpg differ
diff --git a/src/main/resources/static/images/20150120184922187f1ab334.jpg b/src/main/resources/static/images/20150120184922187f1ab334.jpg
new file mode 100644
index 0000000..486a5bf
Binary files /dev/null and b/src/main/resources/static/images/20150120184922187f1ab334.jpg differ
diff --git a/src/main/resources/static/images/20150120184930130cbc3935.jpg b/src/main/resources/static/images/20150120184930130cbc3935.jpg
new file mode 100644
index 0000000..3490c37
Binary files /dev/null and b/src/main/resources/static/images/20150120184930130cbc3935.jpg differ
diff --git a/src/main/resources/static/images/20150120184941a685f99b28.jpg b/src/main/resources/static/images/20150120184941a685f99b28.jpg
new file mode 100644
index 0000000..d34411f
Binary files /dev/null and b/src/main/resources/static/images/20150120184941a685f99b28.jpg differ
diff --git a/src/main/resources/static/images/201501201849490a77d2f900.jpg b/src/main/resources/static/images/201501201849490a77d2f900.jpg
new file mode 100644
index 0000000..de745bf
Binary files /dev/null and b/src/main/resources/static/images/201501201849490a77d2f900.jpg differ
diff --git a/src/main/resources/static/images/20150120184957b2e66540f5.jpg b/src/main/resources/static/images/20150120184957b2e66540f5.jpg
new file mode 100644
index 0000000..7d0142e
Binary files /dev/null and b/src/main/resources/static/images/20150120184957b2e66540f5.jpg differ
diff --git a/src/main/resources/static/images/201501201850057d164a24a8.jpg b/src/main/resources/static/images/201501201850057d164a24a8.jpg
new file mode 100644
index 0000000..69b1b87
Binary files /dev/null and b/src/main/resources/static/images/201501201850057d164a24a8.jpg differ
diff --git a/src/main/resources/static/images/201501201850148218920af1.jpg b/src/main/resources/static/images/201501201850148218920af1.jpg
new file mode 100644
index 0000000..423144c
Binary files /dev/null and b/src/main/resources/static/images/201501201850148218920af1.jpg differ
diff --git a/src/main/resources/static/images/2015012018513031daa9bed7.jpg b/src/main/resources/static/images/2015012018513031daa9bed7.jpg
new file mode 100644
index 0000000..8405007
Binary files /dev/null and b/src/main/resources/static/images/2015012018513031daa9bed7.jpg differ
diff --git a/src/main/resources/static/images/2015012018513052f4cdec56.jpg b/src/main/resources/static/images/2015012018513052f4cdec56.jpg
new file mode 100644
index 0000000..0e9a55d
Binary files /dev/null and b/src/main/resources/static/images/2015012018513052f4cdec56.jpg differ
diff --git a/src/main/resources/static/images/201501211054216133fcca94.jpg b/src/main/resources/static/images/201501211054216133fcca94.jpg
new file mode 100644
index 0000000..6e97d26
Binary files /dev/null and b/src/main/resources/static/images/201501211054216133fcca94.jpg differ
diff --git a/src/main/resources/static/images/2015012110590914b2fee4b2.jpg b/src/main/resources/static/images/2015012110590914b2fee4b2.jpg
new file mode 100644
index 0000000..7888c40
Binary files /dev/null and b/src/main/resources/static/images/2015012110590914b2fee4b2.jpg differ
diff --git a/src/main/resources/static/images/20150121105910277b929564.jpg b/src/main/resources/static/images/20150121105910277b929564.jpg
new file mode 100644
index 0000000..3dde4f2
Binary files /dev/null and b/src/main/resources/static/images/20150121105910277b929564.jpg differ
diff --git a/src/main/resources/static/images/2015012911164499edc9d9cc.jpg b/src/main/resources/static/images/2015012911164499edc9d9cc.jpg
new file mode 100644
index 0000000..e730b6e
Binary files /dev/null and b/src/main/resources/static/images/2015012911164499edc9d9cc.jpg differ
diff --git a/src/main/resources/static/images/20150129111645f4a722d817.jpg b/src/main/resources/static/images/20150129111645f4a722d817.jpg
new file mode 100644
index 0000000..a55a43a
Binary files /dev/null and b/src/main/resources/static/images/20150129111645f4a722d817.jpg differ
diff --git a/src/main/resources/static/images/20150203145404c670aa80de.jpg b/src/main/resources/static/images/20150203145404c670aa80de.jpg
new file mode 100644
index 0000000..039f4a0
Binary files /dev/null and b/src/main/resources/static/images/20150203145404c670aa80de.jpg differ
diff --git a/src/main/resources/static/images/201502031454050d165b3124.jpg b/src/main/resources/static/images/201502031454050d165b3124.jpg
new file mode 100644
index 0000000..eb6e698
Binary files /dev/null and b/src/main/resources/static/images/201502031454050d165b3124.jpg differ
diff --git a/src/main/resources/static/images/201502031541470f549eecb4.jpg b/src/main/resources/static/images/201502031541470f549eecb4.jpg
new file mode 100644
index 0000000..ad041a7
Binary files /dev/null and b/src/main/resources/static/images/201502031541470f549eecb4.jpg differ
diff --git a/src/main/resources/static/images/2015020315414939f8806bca.jpg b/src/main/resources/static/images/2015020315414939f8806bca.jpg
new file mode 100644
index 0000000..cf8fae4
Binary files /dev/null and b/src/main/resources/static/images/2015020315414939f8806bca.jpg differ
diff --git a/src/main/resources/static/images/201504221050541f11bc8e64.jpg b/src/main/resources/static/images/201504221050541f11bc8e64.jpg
new file mode 100644
index 0000000..7106cb3
Binary files /dev/null and b/src/main/resources/static/images/201504221050541f11bc8e64.jpg differ
diff --git a/src/main/resources/static/images/20150422114249c8b953947f.jpg b/src/main/resources/static/images/20150422114249c8b953947f.jpg
new file mode 100644
index 0000000..8cfd63b
Binary files /dev/null and b/src/main/resources/static/images/20150422114249c8b953947f.jpg differ
diff --git a/src/main/resources/static/images/20150422115158705aee2cbe.jpg b/src/main/resources/static/images/20150422115158705aee2cbe.jpg
new file mode 100644
index 0000000..b2f2725
Binary files /dev/null and b/src/main/resources/static/images/20150422115158705aee2cbe.jpg differ
diff --git a/src/main/resources/static/images/201504251408518eddbc7a98.jpg b/src/main/resources/static/images/201504251408518eddbc7a98.jpg
new file mode 100644
index 0000000..2dc66f1
Binary files /dev/null and b/src/main/resources/static/images/201504251408518eddbc7a98.jpg differ
diff --git a/src/main/resources/static/images/20150425140852a0a0f1e3e2.jpg b/src/main/resources/static/images/20150425140852a0a0f1e3e2.jpg
new file mode 100644
index 0000000..6ee61e5
Binary files /dev/null and b/src/main/resources/static/images/20150425140852a0a0f1e3e2.jpg differ
diff --git a/src/main/resources/static/images/2015042918212650e2902a39.jpg b/src/main/resources/static/images/2015042918212650e2902a39.jpg
new file mode 100644
index 0000000..a0bf650
Binary files /dev/null and b/src/main/resources/static/images/2015042918212650e2902a39.jpg differ
diff --git a/src/main/resources/static/images/20150513103218ff0c3e5616.jpg b/src/main/resources/static/images/20150513103218ff0c3e5616.jpg
new file mode 100644
index 0000000..e924449
Binary files /dev/null and b/src/main/resources/static/images/20150513103218ff0c3e5616.jpg differ
diff --git a/src/main/resources/static/images/20150513103613f1bbb67d84.jpg b/src/main/resources/static/images/20150513103613f1bbb67d84.jpg
new file mode 100644
index 0000000..c80b8cd
Binary files /dev/null and b/src/main/resources/static/images/20150513103613f1bbb67d84.jpg differ
diff --git a/src/main/resources/static/images/20150513124231a10e2c5f1c.jpg b/src/main/resources/static/images/20150513124231a10e2c5f1c.jpg
new file mode 100644
index 0000000..e0f6e20
Binary files /dev/null and b/src/main/resources/static/images/20150513124231a10e2c5f1c.jpg differ
diff --git a/src/main/resources/static/images/20150515151308d1c34c620f.jpg b/src/main/resources/static/images/20150515151308d1c34c620f.jpg
new file mode 100644
index 0000000..0e46e82
Binary files /dev/null and b/src/main/resources/static/images/20150515151308d1c34c620f.jpg differ
diff --git a/src/main/resources/static/images/2015052115224001b3d91235.jpg b/src/main/resources/static/images/2015052115224001b3d91235.jpg
new file mode 100644
index 0000000..e4d48eb
Binary files /dev/null and b/src/main/resources/static/images/2015052115224001b3d91235.jpg differ
diff --git a/src/main/resources/static/images/20150527154522510535113e.jpg b/src/main/resources/static/images/20150527154522510535113e.jpg
new file mode 100644
index 0000000..ff8ba47
Binary files /dev/null and b/src/main/resources/static/images/20150527154522510535113e.jpg differ
diff --git a/src/main/resources/static/images/20150528143230053145c1a7.jpg b/src/main/resources/static/images/20150528143230053145c1a7.jpg
new file mode 100644
index 0000000..07b1374
Binary files /dev/null and b/src/main/resources/static/images/20150528143230053145c1a7.jpg differ
diff --git a/src/main/resources/static/images/201505291745509c39dad33b.jpg b/src/main/resources/static/images/201505291745509c39dad33b.jpg
new file mode 100644
index 0000000..48a21f5
Binary files /dev/null and b/src/main/resources/static/images/201505291745509c39dad33b.jpg differ
diff --git a/src/main/resources/static/images/2015061114302742b5f2b237.jpg b/src/main/resources/static/images/2015061114302742b5f2b237.jpg
new file mode 100644
index 0000000..77446ae
Binary files /dev/null and b/src/main/resources/static/images/2015061114302742b5f2b237.jpg differ
diff --git a/src/main/resources/static/images/2015061813430589cb642ca7.jpg b/src/main/resources/static/images/2015061813430589cb642ca7.jpg
new file mode 100644
index 0000000..c5d2274
Binary files /dev/null and b/src/main/resources/static/images/2015061813430589cb642ca7.jpg differ
diff --git a/src/main/resources/static/images/20150707101641f9d958efff.jpg b/src/main/resources/static/images/20150707101641f9d958efff.jpg
new file mode 100644
index 0000000..a5ee537
Binary files /dev/null and b/src/main/resources/static/images/20150707101641f9d958efff.jpg differ
diff --git a/src/main/resources/static/images/2015070710170180545692fd.jpg b/src/main/resources/static/images/2015070710170180545692fd.jpg
new file mode 100644
index 0000000..fe5c83c
Binary files /dev/null and b/src/main/resources/static/images/2015070710170180545692fd.jpg differ
diff --git a/src/main/resources/static/images/20150707101711e7690bde7f.jpg b/src/main/resources/static/images/20150707101711e7690bde7f.jpg
new file mode 100644
index 0000000..259d3b1
Binary files /dev/null and b/src/main/resources/static/images/20150707101711e7690bde7f.jpg differ
diff --git a/src/main/resources/static/images/20150707101722a3e63ffc72.jpg b/src/main/resources/static/images/20150707101722a3e63ffc72.jpg
new file mode 100644
index 0000000..fe3c822
Binary files /dev/null and b/src/main/resources/static/images/20150707101722a3e63ffc72.jpg differ
diff --git a/src/main/resources/static/images/20150707144116ede2ed910a.jpg b/src/main/resources/static/images/20150707144116ede2ed910a.jpg
new file mode 100644
index 0000000..376a145
Binary files /dev/null and b/src/main/resources/static/images/20150707144116ede2ed910a.jpg differ
diff --git a/src/main/resources/static/images/2015070716091640cbbfb67e.jpg b/src/main/resources/static/images/2015070716091640cbbfb67e.jpg
new file mode 100644
index 0000000..672af60
Binary files /dev/null and b/src/main/resources/static/images/2015070716091640cbbfb67e.jpg differ
diff --git a/src/main/resources/static/images/20150707172530e89cb9586c.jpg b/src/main/resources/static/images/20150707172530e89cb9586c.jpg
new file mode 100644
index 0000000..94f6817
Binary files /dev/null and b/src/main/resources/static/images/20150707172530e89cb9586c.jpg differ
diff --git a/src/main/resources/static/images/2015070717323621182cf8e5.jpg b/src/main/resources/static/images/2015070717323621182cf8e5.jpg
new file mode 100644
index 0000000..9218529
Binary files /dev/null and b/src/main/resources/static/images/2015070717323621182cf8e5.jpg differ
diff --git a/src/main/resources/static/images/201507071733518fa1b76589.jpg b/src/main/resources/static/images/201507071733518fa1b76589.jpg
new file mode 100644
index 0000000..e5439ed
Binary files /dev/null and b/src/main/resources/static/images/201507071733518fa1b76589.jpg differ
diff --git a/src/main/resources/static/images/20150707173406b619752d29.jpg b/src/main/resources/static/images/20150707173406b619752d29.jpg
new file mode 100644
index 0000000..9c54ca4
Binary files /dev/null and b/src/main/resources/static/images/20150707173406b619752d29.jpg differ
diff --git a/src/main/resources/static/images/20150707173447a150b5e9a0.jpg b/src/main/resources/static/images/20150707173447a150b5e9a0.jpg
new file mode 100644
index 0000000..7c6ff1e
Binary files /dev/null and b/src/main/resources/static/images/20150707173447a150b5e9a0.jpg differ
diff --git a/src/main/resources/static/images/20150707180015f927e652ee.jpg b/src/main/resources/static/images/20150707180015f927e652ee.jpg
new file mode 100644
index 0000000..672af60
Binary files /dev/null and b/src/main/resources/static/images/20150707180015f927e652ee.jpg differ
diff --git a/src/main/resources/static/images/201507071827441eab53dc33.jpg b/src/main/resources/static/images/201507071827441eab53dc33.jpg
new file mode 100644
index 0000000..b4326c2
Binary files /dev/null and b/src/main/resources/static/images/201507071827441eab53dc33.jpg differ
diff --git a/src/main/resources/static/images/20150707184746fa95671549.jpg b/src/main/resources/static/images/20150707184746fa95671549.jpg
new file mode 100644
index 0000000..eedf1d5
Binary files /dev/null and b/src/main/resources/static/images/20150707184746fa95671549.jpg differ
diff --git a/src/main/resources/static/images/20150707184853bf1307dd75.jpg b/src/main/resources/static/images/20150707184853bf1307dd75.jpg
new file mode 100644
index 0000000..4f4bcdc
Binary files /dev/null and b/src/main/resources/static/images/20150707184853bf1307dd75.jpg differ
diff --git a/src/main/resources/static/images/20150707185244af94e583ea.jpg b/src/main/resources/static/images/20150707185244af94e583ea.jpg
new file mode 100644
index 0000000..5d74e14
Binary files /dev/null and b/src/main/resources/static/images/20150707185244af94e583ea.jpg differ
diff --git a/src/main/resources/static/images/3.gif b/src/main/resources/static/images/3.gif
new file mode 100644
index 0000000..0aa08c0
Binary files /dev/null and b/src/main/resources/static/images/3.gif differ
diff --git a/src/main/resources/static/images/A_hover.jpg b/src/main/resources/static/images/A_hover.jpg
new file mode 100644
index 0000000..302211c
Binary files /dev/null and b/src/main/resources/static/images/A_hover.jpg differ
diff --git a/src/main/resources/static/images/Propose_leftbg.jpg b/src/main/resources/static/images/Propose_leftbg.jpg
new file mode 100644
index 0000000..2dc9cac
Binary files /dev/null and b/src/main/resources/static/images/Propose_leftbg.jpg differ
diff --git a/src/main/resources/static/images/QQ.jpg b/src/main/resources/static/images/QQ.jpg
new file mode 100644
index 0000000..35585e1
Binary files /dev/null and b/src/main/resources/static/images/QQ.jpg differ
diff --git a/src/main/resources/static/images/True-Love-_ring.jpg b/src/main/resources/static/images/True-Love-_ring.jpg
new file mode 100644
index 0000000..596317a
Binary files /dev/null and b/src/main/resources/static/images/True-Love-_ring.jpg differ
diff --git a/src/main/resources/static/images/about_xq.png b/src/main/resources/static/images/about_xq.png
new file mode 100644
index 0000000..a8a8549
Binary files /dev/null and b/src/main/resources/static/images/about_xq.png differ
diff --git a/src/main/resources/static/images/all-right.png b/src/main/resources/static/images/all-right.png
new file mode 100644
index 0000000..a66a155
Binary files /dev/null and b/src/main/resources/static/images/all-right.png differ
diff --git a/src/main/resources/static/images/all-right_w.png b/src/main/resources/static/images/all-right_w.png
new file mode 100644
index 0000000..0e3bfb4
Binary files /dev/null and b/src/main/resources/static/images/all-right_w.png differ
diff --git a/src/main/resources/static/images/all-right_y.png b/src/main/resources/static/images/all-right_y.png
new file mode 100644
index 0000000..aed20c7
Binary files /dev/null and b/src/main/resources/static/images/all-right_y.png differ
diff --git a/src/main/resources/static/images/all_bk.png b/src/main/resources/static/images/all_bk.png
new file mode 100644
index 0000000..43914b5
Binary files /dev/null and b/src/main/resources/static/images/all_bk.png differ
diff --git a/src/main/resources/static/images/allzs.jpg b/src/main/resources/static/images/allzs.jpg
new file mode 100644
index 0000000..f9a6b1b
Binary files /dev/null and b/src/main/resources/static/images/allzs.jpg differ
diff --git a/src/main/resources/static/images/answer.jpg b/src/main/resources/static/images/answer.jpg
new file mode 100644
index 0000000..86c6f39
Binary files /dev/null and b/src/main/resources/static/images/answer.jpg differ
diff --git a/src/main/resources/static/images/bank1.jpg b/src/main/resources/static/images/bank1.jpg
new file mode 100644
index 0000000..ce2c3ff
Binary files /dev/null and b/src/main/resources/static/images/bank1.jpg differ
diff --git a/src/main/resources/static/images/bank10.jpg b/src/main/resources/static/images/bank10.jpg
new file mode 100644
index 0000000..52f01b3
Binary files /dev/null and b/src/main/resources/static/images/bank10.jpg differ
diff --git a/src/main/resources/static/images/bank11.jpg b/src/main/resources/static/images/bank11.jpg
new file mode 100644
index 0000000..86019f8
Binary files /dev/null and b/src/main/resources/static/images/bank11.jpg differ
diff --git a/src/main/resources/static/images/bank12.jpg b/src/main/resources/static/images/bank12.jpg
new file mode 100644
index 0000000..c8b3a38
Binary files /dev/null and b/src/main/resources/static/images/bank12.jpg differ
diff --git a/src/main/resources/static/images/bank13.jpg b/src/main/resources/static/images/bank13.jpg
new file mode 100644
index 0000000..0d61e23
Binary files /dev/null and b/src/main/resources/static/images/bank13.jpg differ
diff --git a/src/main/resources/static/images/bank14.jpg b/src/main/resources/static/images/bank14.jpg
new file mode 100644
index 0000000..1e856c1
Binary files /dev/null and b/src/main/resources/static/images/bank14.jpg differ
diff --git a/src/main/resources/static/images/bank15.jpg b/src/main/resources/static/images/bank15.jpg
new file mode 100644
index 0000000..9cdf991
Binary files /dev/null and b/src/main/resources/static/images/bank15.jpg differ
diff --git a/src/main/resources/static/images/bank16.jpg b/src/main/resources/static/images/bank16.jpg
new file mode 100644
index 0000000..7318b69
Binary files /dev/null and b/src/main/resources/static/images/bank16.jpg differ
diff --git a/src/main/resources/static/images/bank17.jpg b/src/main/resources/static/images/bank17.jpg
new file mode 100644
index 0000000..8d006a6
Binary files /dev/null and b/src/main/resources/static/images/bank17.jpg differ
diff --git a/src/main/resources/static/images/bank18.jpg b/src/main/resources/static/images/bank18.jpg
new file mode 100644
index 0000000..8cfb0b1
Binary files /dev/null and b/src/main/resources/static/images/bank18.jpg differ
diff --git a/src/main/resources/static/images/bank2.jpg b/src/main/resources/static/images/bank2.jpg
new file mode 100644
index 0000000..44a5067
Binary files /dev/null and b/src/main/resources/static/images/bank2.jpg differ
diff --git a/src/main/resources/static/images/bank3.jpg b/src/main/resources/static/images/bank3.jpg
new file mode 100644
index 0000000..2f25228
Binary files /dev/null and b/src/main/resources/static/images/bank3.jpg differ
diff --git a/src/main/resources/static/images/bank4.jpg b/src/main/resources/static/images/bank4.jpg
new file mode 100644
index 0000000..133579e
Binary files /dev/null and b/src/main/resources/static/images/bank4.jpg differ
diff --git a/src/main/resources/static/images/bank5.jpg b/src/main/resources/static/images/bank5.jpg
new file mode 100644
index 0000000..25b84bd
Binary files /dev/null and b/src/main/resources/static/images/bank5.jpg differ
diff --git a/src/main/resources/static/images/bank6.jpg b/src/main/resources/static/images/bank6.jpg
new file mode 100644
index 0000000..7504a22
Binary files /dev/null and b/src/main/resources/static/images/bank6.jpg differ
diff --git a/src/main/resources/static/images/bank7.jpg b/src/main/resources/static/images/bank7.jpg
new file mode 100644
index 0000000..b4e94fa
Binary files /dev/null and b/src/main/resources/static/images/bank7.jpg differ
diff --git a/src/main/resources/static/images/bank8.jpg b/src/main/resources/static/images/bank8.jpg
new file mode 100644
index 0000000..d965933
Binary files /dev/null and b/src/main/resources/static/images/bank8.jpg differ
diff --git a/src/main/resources/static/images/bank9.jpg b/src/main/resources/static/images/bank9.jpg
new file mode 100644
index 0000000..d820619
Binary files /dev/null and b/src/main/resources/static/images/bank9.jpg differ
diff --git a/src/main/resources/static/images/banner1.jpg b/src/main/resources/static/images/banner1.jpg
new file mode 100644
index 0000000..6a7efcf
Binary files /dev/null and b/src/main/resources/static/images/banner1.jpg differ
diff --git a/src/main/resources/static/images/banner2.jpg b/src/main/resources/static/images/banner2.jpg
new file mode 100644
index 0000000..7c010f4
Binary files /dev/null and b/src/main/resources/static/images/banner2.jpg differ
diff --git a/src/main/resources/static/images/banner3.jpg b/src/main/resources/static/images/banner3.jpg
new file mode 100644
index 0000000..88501e7
Binary files /dev/null and b/src/main/resources/static/images/banner3.jpg differ
diff --git a/src/main/resources/static/images/banner4.jpg b/src/main/resources/static/images/banner4.jpg
new file mode 100644
index 0000000..b559e57
Binary files /dev/null and b/src/main/resources/static/images/banner4.jpg differ
diff --git a/src/main/resources/static/images/bc.png b/src/main/resources/static/images/bc.png
new file mode 100644
index 0000000..a7f8ceb
Binary files /dev/null and b/src/main/resources/static/images/bc.png differ
diff --git a/src/main/resources/static/images/ben_pn.png b/src/main/resources/static/images/ben_pn.png
new file mode 100644
index 0000000..b670f27
Binary files /dev/null and b/src/main/resources/static/images/ben_pn.png differ
diff --git a/src/main/resources/static/images/bg_02.jpg b/src/main/resources/static/images/bg_02.jpg
new file mode 100644
index 0000000..f74d68b
Binary files /dev/null and b/src/main/resources/static/images/bg_02.jpg differ
diff --git a/src/main/resources/static/images/bk_all.png b/src/main/resources/static/images/bk_all.png
new file mode 100644
index 0000000..559a392
Binary files /dev/null and b/src/main/resources/static/images/bk_all.png differ
diff --git a/src/main/resources/static/images/bk_border.png b/src/main/resources/static/images/bk_border.png
new file mode 100644
index 0000000..dfed215
Binary files /dev/null and b/src/main/resources/static/images/bk_border.png differ
diff --git a/src/main/resources/static/images/bk_trp.jpg b/src/main/resources/static/images/bk_trp.jpg
new file mode 100644
index 0000000..352cdcd
Binary files /dev/null and b/src/main/resources/static/images/bk_trp.jpg differ
diff --git a/src/main/resources/static/images/border.png b/src/main/resources/static/images/border.png
new file mode 100644
index 0000000..01fcdf9
Binary files /dev/null and b/src/main/resources/static/images/border.png differ
diff --git a/src/main/resources/static/images/br_right.png b/src/main/resources/static/images/br_right.png
new file mode 100644
index 0000000..53f3f14
Binary files /dev/null and b/src/main/resources/static/images/br_right.png differ
diff --git a/src/main/resources/static/images/bt-repeat.jpg b/src/main/resources/static/images/bt-repeat.jpg
new file mode 100644
index 0000000..81d5e7c
Binary files /dev/null and b/src/main/resources/static/images/bt-repeat.jpg differ
diff --git a/src/main/resources/static/images/bt_bottom.png b/src/main/resources/static/images/bt_bottom.png
new file mode 100644
index 0000000..bb15e28
Binary files /dev/null and b/src/main/resources/static/images/bt_bottom.png differ
diff --git a/src/main/resources/static/images/button_rp.png b/src/main/resources/static/images/button_rp.png
new file mode 100644
index 0000000..1603e06
Binary files /dev/null and b/src/main/resources/static/images/button_rp.png differ
diff --git a/src/main/resources/static/images/close.png b/src/main/resources/static/images/close.png
new file mode 100644
index 0000000..97a8496
Binary files /dev/null and b/src/main/resources/static/images/close.png differ
diff --git a/src/main/resources/static/images/code b/src/main/resources/static/images/code
new file mode 100644
index 0000000..2260eac
Binary files /dev/null and b/src/main/resources/static/images/code differ
diff --git a/src/main/resources/static/images/counter.gif b/src/main/resources/static/images/counter.gif
new file mode 100644
index 0000000..eb660fd
Binary files /dev/null and b/src/main/resources/static/images/counter.gif differ
diff --git a/src/main/resources/static/images/cxit.jpg b/src/main/resources/static/images/cxit.jpg
new file mode 100644
index 0000000..da59839
Binary files /dev/null and b/src/main/resources/static/images/cxit.jpg differ
diff --git a/src/main/resources/static/images/cxit_click.jpg b/src/main/resources/static/images/cxit_click.jpg
new file mode 100644
index 0000000..551417d
Binary files /dev/null and b/src/main/resources/static/images/cxit_click.jpg differ
diff --git a/src/main/resources/static/images/cz_button.jpg b/src/main/resources/static/images/cz_button.jpg
new file mode 100644
index 0000000..ca3f325
Binary files /dev/null and b/src/main/resources/static/images/cz_button.jpg differ
diff --git a/src/main/resources/static/images/datePicker.gif b/src/main/resources/static/images/datePicker.gif
new file mode 100644
index 0000000..d6bf40c
Binary files /dev/null and b/src/main/resources/static/images/datePicker.gif differ
diff --git a/src/main/resources/static/images/db.jpg b/src/main/resources/static/images/db.jpg
new file mode 100644
index 0000000..941bcb9
Binary files /dev/null and b/src/main/resources/static/images/db.jpg differ
diff --git a/src/main/resources/static/images/dd.jpg b/src/main/resources/static/images/dd.jpg
new file mode 100644
index 0000000..1037517
Binary files /dev/null and b/src/main/resources/static/images/dd.jpg differ
diff --git a/src/main/resources/static/images/diand.png b/src/main/resources/static/images/diand.png
new file mode 100644
index 0000000..c3016f5
Binary files /dev/null and b/src/main/resources/static/images/diand.png differ
diff --git a/src/main/resources/static/images/dr.png b/src/main/resources/static/images/dr.png
new file mode 100644
index 0000000..aecf367
Binary files /dev/null and b/src/main/resources/static/images/dr.png differ
diff --git a/src/main/resources/static/images/dr_logo.png b/src/main/resources/static/images/dr_logo.png
new file mode 100644
index 0000000..c5fc710
Binary files /dev/null and b/src/main/resources/static/images/dr_logo.png differ
diff --git a/src/main/resources/static/images/dzzx.jpg b/src/main/resources/static/images/dzzx.jpg
new file mode 100644
index 0000000..9dfa8a2
Binary files /dev/null and b/src/main/resources/static/images/dzzx.jpg differ
diff --git a/src/main/resources/static/images/dzzx_hover.jpg b/src/main/resources/static/images/dzzx_hover.jpg
new file mode 100644
index 0000000..e1f3132
Binary files /dev/null and b/src/main/resources/static/images/dzzx_hover.jpg differ
diff --git a/src/main/resources/static/images/erwei.jpg b/src/main/resources/static/images/erwei.jpg
new file mode 100644
index 0000000..a41def0
Binary files /dev/null and b/src/main/resources/static/images/erwei.jpg differ
diff --git a/src/main/resources/static/images/erwei.png b/src/main/resources/static/images/erwei.png
new file mode 100644
index 0000000..57347a6
Binary files /dev/null and b/src/main/resources/static/images/erwei.png differ
diff --git a/src/main/resources/static/images/ew.jpg b/src/main/resources/static/images/ew.jpg
new file mode 100644
index 0000000..74e05b8
Binary files /dev/null and b/src/main/resources/static/images/ew.jpg differ
diff --git a/src/main/resources/static/images/ew_sx.jpg b/src/main/resources/static/images/ew_sx.jpg
new file mode 100644
index 0000000..f6346fa
Binary files /dev/null and b/src/main/resources/static/images/ew_sx.jpg differ
diff --git a/src/main/resources/static/images/famous.jpg b/src/main/resources/static/images/famous.jpg
new file mode 100644
index 0000000..e2f8ce0
Binary files /dev/null and b/src/main/resources/static/images/famous.jpg differ
diff --git a/src/main/resources/static/images/fd.jpg b/src/main/resources/static/images/fd.jpg
new file mode 100644
index 0000000..01dd423
Binary files /dev/null and b/src/main/resources/static/images/fd.jpg differ
diff --git a/src/main/resources/static/images/fd_hover.jpg b/src/main/resources/static/images/fd_hover.jpg
new file mode 100644
index 0000000..470260c
Binary files /dev/null and b/src/main/resources/static/images/fd_hover.jpg differ
diff --git a/src/main/resources/static/images/fhdb.jpg b/src/main/resources/static/images/fhdb.jpg
new file mode 100644
index 0000000..182701a
Binary files /dev/null and b/src/main/resources/static/images/fhdb.jpg differ
diff --git a/src/main/resources/static/images/fhdb_hover.jpg b/src/main/resources/static/images/fhdb_hover.jpg
new file mode 100644
index 0000000..7007a53
Binary files /dev/null and b/src/main/resources/static/images/fhdb_hover.jpg differ
diff --git a/src/main/resources/static/images/fimg1.jpg b/src/main/resources/static/images/fimg1.jpg
new file mode 100644
index 0000000..52d80dd
Binary files /dev/null and b/src/main/resources/static/images/fimg1.jpg differ
diff --git a/src/main/resources/static/images/fimg2.jpg b/src/main/resources/static/images/fimg2.jpg
new file mode 100644
index 0000000..aa49a27
Binary files /dev/null and b/src/main/resources/static/images/fimg2.jpg differ
diff --git a/src/main/resources/static/images/fimg3.jpg b/src/main/resources/static/images/fimg3.jpg
new file mode 100644
index 0000000..9b99cf6
Binary files /dev/null and b/src/main/resources/static/images/fimg3.jpg differ
diff --git a/src/main/resources/static/images/fimg4.jpg b/src/main/resources/static/images/fimg4.jpg
new file mode 100644
index 0000000..814b506
Binary files /dev/null and b/src/main/resources/static/images/fimg4.jpg differ
diff --git a/src/main/resources/static/images/fimg6.jpg b/src/main/resources/static/images/fimg6.jpg
new file mode 100644
index 0000000..b7808da
Binary files /dev/null and b/src/main/resources/static/images/fimg6.jpg differ
diff --git a/src/main/resources/static/images/fj.png b/src/main/resources/static/images/fj.png
new file mode 100644
index 0000000..7b3d12e
Binary files /dev/null and b/src/main/resources/static/images/fj.png differ
diff --git a/src/main/resources/static/images/foot-servise.png b/src/main/resources/static/images/foot-servise.png
new file mode 100644
index 0000000..1ef2159
Binary files /dev/null and b/src/main/resources/static/images/foot-servise.png differ
diff --git a/src/main/resources/static/images/foot-servise_hover.png b/src/main/resources/static/images/foot-servise_hover.png
new file mode 100644
index 0000000..ca37216
Binary files /dev/null and b/src/main/resources/static/images/foot-servise_hover.png differ
diff --git a/src/main/resources/static/images/h3.jpg b/src/main/resources/static/images/h3.jpg
new file mode 100644
index 0000000..53350df
Binary files /dev/null and b/src/main/resources/static/images/h3.jpg differ
diff --git a/src/main/resources/static/images/hover.jpg b/src/main/resources/static/images/hover.jpg
new file mode 100644
index 0000000..62ae882
Binary files /dev/null and b/src/main/resources/static/images/hover.jpg differ
diff --git a/src/main/resources/static/images/icon.png b/src/main/resources/static/images/icon.png
new file mode 100644
index 0000000..ce89ab9
Binary files /dev/null and b/src/main/resources/static/images/icon.png differ
diff --git a/src/main/resources/static/images/icon02.png b/src/main/resources/static/images/icon02.png
new file mode 100644
index 0000000..da70e9d
Binary files /dev/null and b/src/main/resources/static/images/icon02.png differ
diff --git a/src/main/resources/static/images/icon3.png b/src/main/resources/static/images/icon3.png
new file mode 100644
index 0000000..a06ee73
Binary files /dev/null and b/src/main/resources/static/images/icon3.png differ
diff --git a/src/main/resources/static/images/img_012.gif b/src/main/resources/static/images/img_012.gif
new file mode 100644
index 0000000..2e8d44b
Binary files /dev/null and b/src/main/resources/static/images/img_012.gif differ
diff --git a/src/main/resources/static/images/invitebg.jpg b/src/main/resources/static/images/invitebg.jpg
new file mode 100644
index 0000000..8ad2ed8
Binary files /dev/null and b/src/main/resources/static/images/invitebg.jpg differ
diff --git a/src/main/resources/static/images/invitehead.jpg b/src/main/resources/static/images/invitehead.jpg
new file mode 100644
index 0000000..9e3bfd3
Binary files /dev/null and b/src/main/resources/static/images/invitehead.jpg differ
diff --git a/src/main/resources/static/images/jiathis_ico.png b/src/main/resources/static/images/jiathis_ico.png
new file mode 100644
index 0000000..aa8018c
Binary files /dev/null and b/src/main/resources/static/images/jiathis_ico.png differ
diff --git a/src/main/resources/static/images/jiathis_ico_24x24.png b/src/main/resources/static/images/jiathis_ico_24x24.png
new file mode 100644
index 0000000..bce33a0
Binary files /dev/null and b/src/main/resources/static/images/jiathis_ico_24x24.png differ
diff --git a/src/main/resources/static/images/jiathis_ico_32x32.png b/src/main/resources/static/images/jiathis_ico_32x32.png
new file mode 100644
index 0000000..7ec4afc
Binary files /dev/null and b/src/main/resources/static/images/jiathis_ico_32x32.png differ
diff --git a/src/main/resources/static/images/jt.png b/src/main/resources/static/images/jt.png
new file mode 100644
index 0000000..3957be0
Binary files /dev/null and b/src/main/resources/static/images/jt.png differ
diff --git a/src/main/resources/static/images/kfu.gif b/src/main/resources/static/images/kfu.gif
new file mode 100644
index 0000000..6779d42
Binary files /dev/null and b/src/main/resources/static/images/kfu.gif differ
diff --git a/src/main/resources/static/images/kfu_hover.jpg b/src/main/resources/static/images/kfu_hover.jpg
new file mode 100644
index 0000000..b616ac4
Binary files /dev/null and b/src/main/resources/static/images/kfu_hover.jpg differ
diff --git a/src/main/resources/static/images/kzyl.jpg b/src/main/resources/static/images/kzyl.jpg
new file mode 100644
index 0000000..475b63a
Binary files /dev/null and b/src/main/resources/static/images/kzyl.jpg differ
diff --git a/src/main/resources/static/images/lct.png b/src/main/resources/static/images/lct.png
new file mode 100644
index 0000000..62bb772
Binary files /dev/null and b/src/main/resources/static/images/lct.png differ
diff --git a/src/main/resources/static/images/left.png b/src/main/resources/static/images/left.png
new file mode 100644
index 0000000..4f2a0b1
Binary files /dev/null and b/src/main/resources/static/images/left.png differ
diff --git a/src/main/resources/static/images/leftorr.png b/src/main/resources/static/images/leftorr.png
new file mode 100644
index 0000000..ba9796b
Binary files /dev/null and b/src/main/resources/static/images/leftorr.png differ
diff --git a/src/main/resources/static/images/lin.png b/src/main/resources/static/images/lin.png
new file mode 100644
index 0000000..fa13584
Binary files /dev/null and b/src/main/resources/static/images/lin.png differ
diff --git a/src/main/resources/static/images/line.jpg b/src/main/resources/static/images/line.jpg
new file mode 100644
index 0000000..873b4e6
Binary files /dev/null and b/src/main/resources/static/images/line.jpg differ
diff --git a/src/main/resources/static/images/line1.jpg b/src/main/resources/static/images/line1.jpg
new file mode 100644
index 0000000..b3d3a21
Binary files /dev/null and b/src/main/resources/static/images/line1.jpg differ
diff --git a/src/main/resources/static/images/line_hx.png b/src/main/resources/static/images/line_hx.png
new file mode 100644
index 0000000..04d6276
Binary files /dev/null and b/src/main/resources/static/images/line_hx.png differ
diff --git a/src/main/resources/static/images/line_rp.jpg b/src/main/resources/static/images/line_rp.jpg
new file mode 100644
index 0000000..5829fa0
Binary files /dev/null and b/src/main/resources/static/images/line_rp.jpg differ
diff --git a/src/main/resources/static/images/logo.png b/src/main/resources/static/images/logo.png
new file mode 100644
index 0000000..b10061e
Binary files /dev/null and b/src/main/resources/static/images/logo.png differ
diff --git a/src/main/resources/static/images/logo_01.png b/src/main/resources/static/images/logo_01.png
new file mode 100644
index 0000000..cad1403
Binary files /dev/null and b/src/main/resources/static/images/logo_01.png differ
diff --git a/src/main/resources/static/images/love-it.jpg b/src/main/resources/static/images/love-it.jpg
new file mode 100644
index 0000000..3277d49
Binary files /dev/null and b/src/main/resources/static/images/love-it.jpg differ
diff --git a/src/main/resources/static/images/love.jpg b/src/main/resources/static/images/love.jpg
new file mode 100644
index 0000000..479aec8
Binary files /dev/null and b/src/main/resources/static/images/love.jpg differ
diff --git a/src/main/resources/static/images/mb.png b/src/main/resources/static/images/mb.png
new file mode 100644
index 0000000..f8c3912
Binary files /dev/null and b/src/main/resources/static/images/mb.png differ
diff --git a/src/main/resources/static/images/mb_dy.png b/src/main/resources/static/images/mb_dy.png
new file mode 100644
index 0000000..98ddaee
Binary files /dev/null and b/src/main/resources/static/images/mb_dy.png differ
diff --git a/src/main/resources/static/images/mem-big.jpg b/src/main/resources/static/images/mem-big.jpg
new file mode 100644
index 0000000..c49799b
Binary files /dev/null and b/src/main/resources/static/images/mem-big.jpg differ
diff --git a/src/main/resources/static/images/mem.jpg b/src/main/resources/static/images/mem.jpg
new file mode 100644
index 0000000..d59789e
Binary files /dev/null and b/src/main/resources/static/images/mem.jpg differ
diff --git a/src/main/resources/static/images/nav_rp.png b/src/main/resources/static/images/nav_rp.png
new file mode 100644
index 0000000..db6a5af
Binary files /dev/null and b/src/main/resources/static/images/nav_rp.png differ
diff --git a/src/main/resources/static/images/new.jpg b/src/main/resources/static/images/new.jpg
new file mode 100644
index 0000000..463b2ea
Binary files /dev/null and b/src/main/resources/static/images/new.jpg differ
diff --git a/src/main/resources/static/images/new_gg.png b/src/main/resources/static/images/new_gg.png
new file mode 100644
index 0000000..f37ddf1
Binary files /dev/null and b/src/main/resources/static/images/new_gg.png differ
diff --git a/src/main/resources/static/images/news.png b/src/main/resources/static/images/news.png
new file mode 100644
index 0000000..4abc8b1
Binary files /dev/null and b/src/main/resources/static/images/news.png differ
diff --git a/src/main/resources/static/images/noavatar_default.png b/src/main/resources/static/images/noavatar_default.png
new file mode 100644
index 0000000..f931c69
Binary files /dev/null and b/src/main/resources/static/images/noavatar_default.png differ
diff --git a/src/main/resources/static/images/ok.png b/src/main/resources/static/images/ok.png
new file mode 100644
index 0000000..bdb5692
Binary files /dev/null and b/src/main/resources/static/images/ok.png differ
diff --git a/src/main/resources/static/images/phone.png b/src/main/resources/static/images/phone.png
new file mode 100644
index 0000000..d93d204
Binary files /dev/null and b/src/main/resources/static/images/phone.png differ
diff --git a/src/main/resources/static/images/popup_window_btn_close.gif b/src/main/resources/static/images/popup_window_btn_close.gif
new file mode 100644
index 0000000..026eb87
Binary files /dev/null and b/src/main/resources/static/images/popup_window_btn_close.gif differ
diff --git a/src/main/resources/static/images/q1.jpg b/src/main/resources/static/images/q1.jpg
new file mode 100644
index 0000000..34a5297
Binary files /dev/null and b/src/main/resources/static/images/q1.jpg differ
diff --git a/src/main/resources/static/images/q2.jpg b/src/main/resources/static/images/q2.jpg
new file mode 100644
index 0000000..d2d9fcd
Binary files /dev/null and b/src/main/resources/static/images/q2.jpg differ
diff --git a/src/main/resources/static/images/q2_right.jpg b/src/main/resources/static/images/q2_right.jpg
new file mode 100644
index 0000000..652f031
Binary files /dev/null and b/src/main/resources/static/images/q2_right.jpg differ
diff --git a/src/main/resources/static/images/q_left.jpg b/src/main/resources/static/images/q_left.jpg
new file mode 100644
index 0000000..f9d460f
Binary files /dev/null and b/src/main/resources/static/images/q_left.jpg differ
diff --git a/src/main/resources/static/images/q_right.jpg b/src/main/resources/static/images/q_right.jpg
new file mode 100644
index 0000000..ca4f1c3
Binary files /dev/null and b/src/main/resources/static/images/q_right.jpg differ
diff --git a/src/main/resources/static/images/question.jpg b/src/main/resources/static/images/question.jpg
new file mode 100644
index 0000000..9bfd727
Binary files /dev/null and b/src/main/resources/static/images/question.jpg differ
diff --git a/src/main/resources/static/images/re1.jpg b/src/main/resources/static/images/re1.jpg
new file mode 100644
index 0000000..1a6c851
Binary files /dev/null and b/src/main/resources/static/images/re1.jpg differ
diff --git a/src/main/resources/static/images/re2.jpg b/src/main/resources/static/images/re2.jpg
new file mode 100644
index 0000000..d635969
Binary files /dev/null and b/src/main/resources/static/images/re2.jpg differ
diff --git a/src/main/resources/static/images/re3.jpg b/src/main/resources/static/images/re3.jpg
new file mode 100644
index 0000000..c2b6add
Binary files /dev/null and b/src/main/resources/static/images/re3.jpg differ
diff --git a/src/main/resources/static/images/right-hover.png b/src/main/resources/static/images/right-hover.png
new file mode 100644
index 0000000..da42663
Binary files /dev/null and b/src/main/resources/static/images/right-hover.png differ
diff --git a/src/main/resources/static/images/right.gif b/src/main/resources/static/images/right.gif
new file mode 100644
index 0000000..e69de29
diff --git a/src/main/resources/static/images/right.png b/src/main/resources/static/images/right.png
new file mode 100644
index 0000000..1b49acd
Binary files /dev/null and b/src/main/resources/static/images/right.png differ
diff --git a/src/main/resources/static/images/right1.png b/src/main/resources/static/images/right1.png
new file mode 100644
index 0000000..ee6c9c1
Binary files /dev/null and b/src/main/resources/static/images/right1.png differ
diff --git a/src/main/resources/static/images/right2.png b/src/main/resources/static/images/right2.png
new file mode 100644
index 0000000..aac40cc
Binary files /dev/null and b/src/main/resources/static/images/right2.png differ
diff --git a/src/main/resources/static/images/right3.png b/src/main/resources/static/images/right3.png
new file mode 100644
index 0000000..41b2ecf
Binary files /dev/null and b/src/main/resources/static/images/right3.png differ
diff --git a/src/main/resources/static/images/right4.png b/src/main/resources/static/images/right4.png
new file mode 100644
index 0000000..dee60d1
Binary files /dev/null and b/src/main/resources/static/images/right4.png differ
diff --git a/src/main/resources/static/images/right_b.png b/src/main/resources/static/images/right_b.png
new file mode 100644
index 0000000..4720f9e
Binary files /dev/null and b/src/main/resources/static/images/right_b.png differ
diff --git a/src/main/resources/static/images/right_no.png b/src/main/resources/static/images/right_no.png
new file mode 100644
index 0000000..e6665ed
Binary files /dev/null and b/src/main/resources/static/images/right_no.png differ
diff --git a/src/main/resources/static/images/right_w.png b/src/main/resources/static/images/right_w.png
new file mode 100644
index 0000000..3443c92
Binary files /dev/null and b/src/main/resources/static/images/right_w.png differ
diff --git a/src/main/resources/static/images/ring_bottom.png b/src/main/resources/static/images/ring_bottom.png
new file mode 100644
index 0000000..8b20ddf
Binary files /dev/null and b/src/main/resources/static/images/ring_bottom.png differ
diff --git a/src/main/resources/static/images/rp_right.jpg b/src/main/resources/static/images/rp_right.jpg
new file mode 100644
index 0000000..8e25d37
Binary files /dev/null and b/src/main/resources/static/images/rp_right.jpg differ
diff --git a/src/main/resources/static/images/rpit.jpg b/src/main/resources/static/images/rpit.jpg
new file mode 100644
index 0000000..493cc8e
Binary files /dev/null and b/src/main/resources/static/images/rpit.jpg differ
diff --git a/src/main/resources/static/images/search_hover.png b/src/main/resources/static/images/search_hover.png
new file mode 100644
index 0000000..bbb2183
Binary files /dev/null and b/src/main/resources/static/images/search_hover.png differ
diff --git a/src/main/resources/static/images/search_other.png b/src/main/resources/static/images/search_other.png
new file mode 100644
index 0000000..4f71a31
Binary files /dev/null and b/src/main/resources/static/images/search_other.png differ
diff --git a/src/main/resources/static/images/serch.png b/src/main/resources/static/images/serch.png
new file mode 100644
index 0000000..e1066ef
Binary files /dev/null and b/src/main/resources/static/images/serch.png differ
diff --git a/src/main/resources/static/images/server_03.jpg b/src/main/resources/static/images/server_03.jpg
new file mode 100644
index 0000000..7256ee0
Binary files /dev/null and b/src/main/resources/static/images/server_03.jpg differ
diff --git a/src/main/resources/static/images/share.png b/src/main/resources/static/images/share.png
new file mode 100644
index 0000000..f80f5e9
Binary files /dev/null and b/src/main/resources/static/images/share.png differ
diff --git a/src/main/resources/static/images/share_hover.png b/src/main/resources/static/images/share_hover.png
new file mode 100644
index 0000000..5ea1246
Binary files /dev/null and b/src/main/resources/static/images/share_hover.png differ
diff --git a/src/main/resources/static/images/shline.png b/src/main/resources/static/images/shline.png
new file mode 100644
index 0000000..021fd86
Binary files /dev/null and b/src/main/resources/static/images/shline.png differ
diff --git a/src/main/resources/static/images/shoop_nav.jpg b/src/main/resources/static/images/shoop_nav.jpg
new file mode 100644
index 0000000..4e81c22
Binary files /dev/null and b/src/main/resources/static/images/shoop_nav.jpg differ
diff --git a/src/main/resources/static/images/shoop_othernav.jpg b/src/main/resources/static/images/shoop_othernav.jpg
new file mode 100644
index 0000000..0f4a1a1
Binary files /dev/null and b/src/main/resources/static/images/shoop_othernav.jpg differ
diff --git a/src/main/resources/static/images/sjx.png b/src/main/resources/static/images/sjx.png
new file mode 100644
index 0000000..8b46706
Binary files /dev/null and b/src/main/resources/static/images/sjx.png differ
diff --git a/src/main/resources/static/images/sjx_hover.png b/src/main/resources/static/images/sjx_hover.png
new file mode 100644
index 0000000..94e9ddc
Binary files /dev/null and b/src/main/resources/static/images/sjx_hover.png differ
diff --git a/src/main/resources/static/images/sm_boreder.png b/src/main/resources/static/images/sm_boreder.png
new file mode 100644
index 0000000..ecba5f3
Binary files /dev/null and b/src/main/resources/static/images/sm_boreder.png differ
diff --git a/src/main/resources/static/images/sm_repeat.png b/src/main/resources/static/images/sm_repeat.png
new file mode 100644
index 0000000..597108b
Binary files /dev/null and b/src/main/resources/static/images/sm_repeat.png differ
diff --git a/src/main/resources/static/images/small_d.jpg b/src/main/resources/static/images/small_d.jpg
new file mode 100644
index 0000000..75ae92e
Binary files /dev/null and b/src/main/resources/static/images/small_d.jpg differ
diff --git a/src/main/resources/static/images/small_d.png b/src/main/resources/static/images/small_d.png
new file mode 100644
index 0000000..198fcbe
Binary files /dev/null and b/src/main/resources/static/images/small_d.png differ
diff --git a/src/main/resources/static/images/small_right.png b/src/main/resources/static/images/small_right.png
new file mode 100644
index 0000000..e86eb2d
Binary files /dev/null and b/src/main/resources/static/images/small_right.png differ
diff --git a/src/main/resources/static/images/small_tb.png b/src/main/resources/static/images/small_tb.png
new file mode 100644
index 0000000..6c979dc
Binary files /dev/null and b/src/main/resources/static/images/small_tb.png differ
diff --git a/src/main/resources/static/images/spdr_logo.png b/src/main/resources/static/images/spdr_logo.png
new file mode 100644
index 0000000..4b2beaf
Binary files /dev/null and b/src/main/resources/static/images/spdr_logo.png differ
diff --git a/src/main/resources/static/images/special_tx.png b/src/main/resources/static/images/special_tx.png
new file mode 100644
index 0000000..9dd2567
Binary files /dev/null and b/src/main/resources/static/images/special_tx.png differ
diff --git a/src/main/resources/static/images/sq.png b/src/main/resources/static/images/sq.png
new file mode 100644
index 0000000..5584675
Binary files /dev/null and b/src/main/resources/static/images/sq.png differ
diff --git a/src/main/resources/static/images/sx.jpg b/src/main/resources/static/images/sx.jpg
new file mode 100644
index 0000000..30fd631
Binary files /dev/null and b/src/main/resources/static/images/sx.jpg differ
diff --git a/src/main/resources/static/images/sx_hover.jpg b/src/main/resources/static/images/sx_hover.jpg
new file mode 100644
index 0000000..32a5750
Binary files /dev/null and b/src/main/resources/static/images/sx_hover.jpg differ
diff --git a/src/main/resources/static/images/sxkf.jpg b/src/main/resources/static/images/sxkf.jpg
new file mode 100644
index 0000000..894099d
Binary files /dev/null and b/src/main/resources/static/images/sxkf.jpg differ
diff --git a/src/main/resources/static/images/sxkf_hover.jpg b/src/main/resources/static/images/sxkf_hover.jpg
new file mode 100644
index 0000000..c7eb8e9
Binary files /dev/null and b/src/main/resources/static/images/sxkf_hover.jpg differ
diff --git a/src/main/resources/static/images/sxzx.jpg b/src/main/resources/static/images/sxzx.jpg
new file mode 100644
index 0000000..6750a2b
Binary files /dev/null and b/src/main/resources/static/images/sxzx.jpg differ
diff --git a/src/main/resources/static/images/sxzx_hover.jpg b/src/main/resources/static/images/sxzx_hover.jpg
new file mode 100644
index 0000000..1d7bbd1
Binary files /dev/null and b/src/main/resources/static/images/sxzx_hover.jpg differ
diff --git a/src/main/resources/static/images/tb.jpg b/src/main/resources/static/images/tb.jpg
new file mode 100644
index 0000000..af51418
Binary files /dev/null and b/src/main/resources/static/images/tb.jpg differ
diff --git a/src/main/resources/static/images/tel.jpg b/src/main/resources/static/images/tel.jpg
new file mode 100644
index 0000000..e397a14
Binary files /dev/null and b/src/main/resources/static/images/tel.jpg differ
diff --git a/src/main/resources/static/images/the-bottom.jpg b/src/main/resources/static/images/the-bottom.jpg
new file mode 100644
index 0000000..3cefc3c
Binary files /dev/null and b/src/main/resources/static/images/the-bottom.jpg differ
diff --git a/src/main/resources/static/images/thelite.png b/src/main/resources/static/images/thelite.png
new file mode 100644
index 0000000..8151efb
Binary files /dev/null and b/src/main/resources/static/images/thelite.png differ
diff --git a/src/main/resources/static/images/tips.png b/src/main/resources/static/images/tips.png
new file mode 100644
index 0000000..cf806d1
Binary files /dev/null and b/src/main/resources/static/images/tips.png differ
diff --git a/src/main/resources/static/images/tips_02.png b/src/main/resources/static/images/tips_02.png
new file mode 100644
index 0000000..0846e81
Binary files /dev/null and b/src/main/resources/static/images/tips_02.png differ
diff --git a/src/main/resources/static/images/tips_05.png b/src/main/resources/static/images/tips_05.png
new file mode 100644
index 0000000..0a815f4
Binary files /dev/null and b/src/main/resources/static/images/tips_05.png differ
diff --git a/src/main/resources/static/images/to_erwei.jpg b/src/main/resources/static/images/to_erwei.jpg
new file mode 100644
index 0000000..6218ffe
Binary files /dev/null and b/src/main/resources/static/images/to_erwei.jpg differ
diff --git a/src/main/resources/static/images/to_right.png b/src/main/resources/static/images/to_right.png
new file mode 100644
index 0000000..112882e
Binary files /dev/null and b/src/main/resources/static/images/to_right.png differ
diff --git a/src/main/resources/static/images/toporb.png b/src/main/resources/static/images/toporb.png
new file mode 100644
index 0000000..34a0988
Binary files /dev/null and b/src/main/resources/static/images/toporb.png differ
diff --git a/src/main/resources/static/images/ttcloese.png b/src/main/resources/static/images/ttcloese.png
new file mode 100644
index 0000000..109712c
Binary files /dev/null and b/src/main/resources/static/images/ttcloese.png differ
diff --git a/src/main/resources/static/images/tyzx.jpg b/src/main/resources/static/images/tyzx.jpg
new file mode 100644
index 0000000..971bfb0
Binary files /dev/null and b/src/main/resources/static/images/tyzx.jpg differ
diff --git a/src/main/resources/static/images/tzborder_rp.jpg b/src/main/resources/static/images/tzborder_rp.jpg
new file mode 100644
index 0000000..9c8c984
Binary files /dev/null and b/src/main/resources/static/images/tzborder_rp.jpg differ
diff --git a/src/main/resources/static/images/wb.jpg b/src/main/resources/static/images/wb.jpg
new file mode 100644
index 0000000..0794b17
Binary files /dev/null and b/src/main/resources/static/images/wb.jpg differ
diff --git a/src/main/resources/static/images/wh1.jpg b/src/main/resources/static/images/wh1.jpg
new file mode 100644
index 0000000..20ab311
Binary files /dev/null and b/src/main/resources/static/images/wh1.jpg differ
diff --git a/src/main/resources/static/images/wh2.jpg b/src/main/resources/static/images/wh2.jpg
new file mode 100644
index 0000000..03e0391
Binary files /dev/null and b/src/main/resources/static/images/wh2.jpg differ
diff --git a/src/main/resources/static/images/wh3.jpg b/src/main/resources/static/images/wh3.jpg
new file mode 100644
index 0000000..b1504a3
Binary files /dev/null and b/src/main/resources/static/images/wh3.jpg differ
diff --git a/src/main/resources/static/images/wh4.jpg b/src/main/resources/static/images/wh4.jpg
new file mode 100644
index 0000000..8d213ca
Binary files /dev/null and b/src/main/resources/static/images/wh4.jpg differ
diff --git a/src/main/resources/static/images/wh5.jpg b/src/main/resources/static/images/wh5.jpg
new file mode 100644
index 0000000..a34526c
Binary files /dev/null and b/src/main/resources/static/images/wh5.jpg differ
diff --git a/src/main/resources/static/images/wh6.jpg b/src/main/resources/static/images/wh6.jpg
new file mode 100644
index 0000000..a50e636
Binary files /dev/null and b/src/main/resources/static/images/wh6.jpg differ
diff --git a/src/main/resources/static/images/wh7.jpg b/src/main/resources/static/images/wh7.jpg
new file mode 100644
index 0000000..283626c
Binary files /dev/null and b/src/main/resources/static/images/wh7.jpg differ
diff --git a/src/main/resources/static/images/whline.png b/src/main/resources/static/images/whline.png
new file mode 100644
index 0000000..0c66391
Binary files /dev/null and b/src/main/resources/static/images/whline.png differ
diff --git a/src/main/resources/static/images/whrite_bk.png b/src/main/resources/static/images/whrite_bk.png
new file mode 100644
index 0000000..b212a36
Binary files /dev/null and b/src/main/resources/static/images/whrite_bk.png differ
diff --git a/src/main/resources/static/images/wline.jpg b/src/main/resources/static/images/wline.jpg
new file mode 100644
index 0000000..936029c
Binary files /dev/null and b/src/main/resources/static/images/wline.jpg differ
diff --git a/src/main/resources/static/images/wlzj.jpg b/src/main/resources/static/images/wlzj.jpg
new file mode 100644
index 0000000..ad74821
Binary files /dev/null and b/src/main/resources/static/images/wlzj.jpg differ
diff --git a/src/main/resources/static/images/word_right.png b/src/main/resources/static/images/word_right.png
new file mode 100644
index 0000000..7ca3e0b
Binary files /dev/null and b/src/main/resources/static/images/word_right.png differ
diff --git a/src/main/resources/static/images/wr_left.png b/src/main/resources/static/images/wr_left.png
new file mode 100644
index 0000000..0f377e1
Binary files /dev/null and b/src/main/resources/static/images/wr_left.png differ
diff --git a/src/main/resources/static/images/wrong.png b/src/main/resources/static/images/wrong.png
new file mode 100644
index 0000000..50951f0
Binary files /dev/null and b/src/main/resources/static/images/wrong.png differ
diff --git a/src/main/resources/static/images/wrong_404.jpg b/src/main/resources/static/images/wrong_404.jpg
new file mode 100644
index 0000000..7bc619f
Binary files /dev/null and b/src/main/resources/static/images/wrong_404.jpg differ
diff --git a/src/main/resources/static/images/wrong_500.jpg b/src/main/resources/static/images/wrong_500.jpg
new file mode 100644
index 0000000..5f853e1
Binary files /dev/null and b/src/main/resources/static/images/wrong_500.jpg differ
diff --git a/src/main/resources/static/images/wx.jpg b/src/main/resources/static/images/wx.jpg
new file mode 100644
index 0000000..dc7a14c
Binary files /dev/null and b/src/main/resources/static/images/wx.jpg differ
diff --git a/src/main/resources/static/images/xd.png b/src/main/resources/static/images/xd.png
new file mode 100644
index 0000000..5764c8c
Binary files /dev/null and b/src/main/resources/static/images/xd.png differ
diff --git a/src/main/resources/static/images/xiaod.jpg b/src/main/resources/static/images/xiaod.jpg
new file mode 100644
index 0000000..24d1877
Binary files /dev/null and b/src/main/resources/static/images/xiaod.jpg differ
diff --git a/src/main/resources/static/images/xq.jpg b/src/main/resources/static/images/xq.jpg
new file mode 100644
index 0000000..eb1b244
Binary files /dev/null and b/src/main/resources/static/images/xq.jpg differ
diff --git a/src/main/resources/static/images/xsdcat.jpg b/src/main/resources/static/images/xsdcat.jpg
new file mode 100644
index 0000000..75d41a6
Binary files /dev/null and b/src/main/resources/static/images/xsdcat.jpg differ
diff --git a/src/main/resources/static/images/ylxg.jpg b/src/main/resources/static/images/ylxg.jpg
new file mode 100644
index 0000000..3bfe800
Binary files /dev/null and b/src/main/resources/static/images/ylxg.jpg differ
diff --git a/src/main/resources/static/images/yz_ts.png b/src/main/resources/static/images/yz_ts.png
new file mode 100644
index 0000000..3155b7a
Binary files /dev/null and b/src/main/resources/static/images/yz_ts.png differ
diff --git a/src/main/resources/static/images/yz_ul.jpg b/src/main/resources/static/images/yz_ul.jpg
new file mode 100644
index 0000000..36399ec
Binary files /dev/null and b/src/main/resources/static/images/yz_ul.jpg differ
diff --git a/src/main/resources/static/images/yzsf.jpg b/src/main/resources/static/images/yzsf.jpg
new file mode 100644
index 0000000..1686289
Binary files /dev/null and b/src/main/resources/static/images/yzsf.jpg differ
diff --git a/src/main/resources/static/images/yzsf_bt.png b/src/main/resources/static/images/yzsf_bt.png
new file mode 100644
index 0000000..2026703
Binary files /dev/null and b/src/main/resources/static/images/yzsf_bt.png differ
diff --git a/src/main/resources/static/images/zajz.jpg b/src/main/resources/static/images/zajz.jpg
new file mode 100644
index 0000000..ea0fbbd
Binary files /dev/null and b/src/main/resources/static/images/zajz.jpg differ
diff --git a/src/main/resources/static/images/zfgn.jpg b/src/main/resources/static/images/zfgn.jpg
new file mode 100644
index 0000000..3c0cc5b
Binary files /dev/null and b/src/main/resources/static/images/zfgn.jpg differ
diff --git a/src/main/resources/static/images/zj_Bk.jpg b/src/main/resources/static/images/zj_Bk.jpg
new file mode 100644
index 0000000..47ce6e5
Binary files /dev/null and b/src/main/resources/static/images/zj_Bk.jpg differ
diff --git a/src/main/resources/static/images/zpice.jpg b/src/main/resources/static/images/zpice.jpg
new file mode 100644
index 0000000..f09eadc
Binary files /dev/null and b/src/main/resources/static/images/zpice.jpg differ
diff --git a/src/main/resources/static/images/zs2.jpg b/src/main/resources/static/images/zs2.jpg
new file mode 100644
index 0000000..ed9e22f
Binary files /dev/null and b/src/main/resources/static/images/zs2.jpg differ
diff --git a/src/main/resources/static/images/zs3.jpg b/src/main/resources/static/images/zs3.jpg
new file mode 100644
index 0000000..9a759af
Binary files /dev/null and b/src/main/resources/static/images/zs3.jpg differ
diff --git a/src/main/resources/static/images/zs4.jpg b/src/main/resources/static/images/zs4.jpg
new file mode 100644
index 0000000..e1520cd
Binary files /dev/null and b/src/main/resources/static/images/zs4.jpg differ
diff --git a/src/main/resources/static/images/zs5.jpg b/src/main/resources/static/images/zs5.jpg
new file mode 100644
index 0000000..6d33928
Binary files /dev/null and b/src/main/resources/static/images/zs5.jpg differ
diff --git a/src/main/resources/static/images/zs6.jpg b/src/main/resources/static/images/zs6.jpg
new file mode 100644
index 0000000..6e1d392
Binary files /dev/null and b/src/main/resources/static/images/zs6.jpg differ
diff --git a/src/main/resources/static/images/zs_border.png b/src/main/resources/static/images/zs_border.png
new file mode 100644
index 0000000..6a16e65
Binary files /dev/null and b/src/main/resources/static/images/zs_border.png differ
diff --git a/src/main/resources/static/images/zs_repeat.png b/src/main/resources/static/images/zs_repeat.png
new file mode 100644
index 0000000..bc3b7c4
Binary files /dev/null and b/src/main/resources/static/images/zs_repeat.png differ
diff --git a/src/main/resources/static/images/zs_rp.jpg b/src/main/resources/static/images/zs_rp.jpg
new file mode 100644
index 0000000..bae51b2
Binary files /dev/null and b/src/main/resources/static/images/zs_rp.jpg differ
diff --git a/src/main/resources/static/images/zs_ul.jpg b/src/main/resources/static/images/zs_ul.jpg
new file mode 100644
index 0000000..42635b8
Binary files /dev/null and b/src/main/resources/static/images/zs_ul.jpg differ
diff --git a/src/main/resources/static/images/zx.jpg b/src/main/resources/static/images/zx.jpg
new file mode 100644
index 0000000..d73498d
Binary files /dev/null and b/src/main/resources/static/images/zx.jpg differ
diff --git a/src/main/resources/static/js/201409011932585de1c2f2a9.jpg b/src/main/resources/static/js/201409011932585de1c2f2a9.jpg
new file mode 100644
index 0000000..9e31bb5
Binary files /dev/null and b/src/main/resources/static/js/201409011932585de1c2f2a9.jpg differ
diff --git a/src/main/resources/static/js/2014090119350717386d7a1e.jpg b/src/main/resources/static/js/2014090119350717386d7a1e.jpg
new file mode 100644
index 0000000..9e31bb5
Binary files /dev/null and b/src/main/resources/static/js/2014090119350717386d7a1e.jpg differ
diff --git a/src/main/resources/static/js/201411140408514e81071ba7.jpg b/src/main/resources/static/js/201411140408514e81071ba7.jpg
new file mode 100644
index 0000000..45922a6
Binary files /dev/null and b/src/main/resources/static/js/201411140408514e81071ba7.jpg differ
diff --git a/src/main/resources/static/js/2014111404094563e11107a1.jpg b/src/main/resources/static/js/2014111404094563e11107a1.jpg
new file mode 100644
index 0000000..b384603
Binary files /dev/null and b/src/main/resources/static/js/2014111404094563e11107a1.jpg differ
diff --git a/src/main/resources/static/js/201501060941408c8e6fe04b.jpg b/src/main/resources/static/js/201501060941408c8e6fe04b.jpg
new file mode 100644
index 0000000..989a984
Binary files /dev/null and b/src/main/resources/static/js/201501060941408c8e6fe04b.jpg differ
diff --git a/src/main/resources/static/js/2015012018452690c00b5480.jpg b/src/main/resources/static/js/2015012018452690c00b5480.jpg
new file mode 100644
index 0000000..db0fb5c
Binary files /dev/null and b/src/main/resources/static/js/2015012018452690c00b5480.jpg differ
diff --git a/src/main/resources/static/js/2015012110590914b2fee4b2.jpg b/src/main/resources/static/js/2015012110590914b2fee4b2.jpg
new file mode 100644
index 0000000..7888c40
Binary files /dev/null and b/src/main/resources/static/js/2015012110590914b2fee4b2.jpg differ
diff --git a/src/main/resources/static/js/201504221050541f11bc8e64.jpg b/src/main/resources/static/js/201504221050541f11bc8e64.jpg
new file mode 100644
index 0000000..7106cb3
Binary files /dev/null and b/src/main/resources/static/js/201504221050541f11bc8e64.jpg differ
diff --git a/src/main/resources/static/js/20150707101641f9d958efff.jpg b/src/main/resources/static/js/20150707101641f9d958efff.jpg
new file mode 100644
index 0000000..a5ee537
Binary files /dev/null and b/src/main/resources/static/js/20150707101641f9d958efff.jpg differ
diff --git a/src/main/resources/static/js/Jcrop_photo.js b/src/main/resources/static/js/Jcrop_photo.js
new file mode 100644
index 0000000..e69de29
diff --git a/src/main/resources/static/js/Magnifier.js b/src/main/resources/static/js/Magnifier.js
new file mode 100644
index 0000000..0fc9bf0
--- /dev/null
+++ b/src/main/resources/static/js/Magnifier.js
@@ -0,0 +1,141 @@
+/*
+
+
+
+
+ new Magnifier("Magnifier",{
+ pPath:'', //大图路径
+ sWidth:100,//小框宽度
+ sHeight:100,//小框高度
+ sOpacity:0.4,//小框透明度
+ pWidth:500, //大图宽
+ pHeight:500,//大图高
+ mLeft:85, //大图距离小图左边的距离
+ mTop:0 //大图距离小图上边的距离
+ });
+
+*/
+
+function Magnifier(id,opt){
+ this.defaults = {
+ pPath:'', //大图路径
+ sWidth:100,//小框宽度
+ sHeight:100,//小框高度
+ sOpacity:0.4,//小框透明度
+ pWidth:500, //大图宽
+ pHeight:500,//大图高
+ mLeft:25, //大图距离小图左边的距离
+ mTop:0 //大图距离小图上边的距离
+ }
+ var _this = this;
+ this.obj = document.getElementById(id);
+ if(opt){
+ for(var o in opt){
+ this.defaults[o] = opt[o];
+ }
+ }
+ this.defaults.pPath = this.defaults.pPath == '' ? this.obj.getElementsByTagName('img')[0].src : this.defaults.pPath;//默认大图路径
+ this.posX = 0;
+ this.posY = 0;
+ this.oSmall = null;
+ this.bigElement = null;
+ this.bigImage = null;
+ this.obj.onmouseover = function(e){
+ _this.enter(e);
+ };
+}
+Magnifier.prototype.enter = function(e){
+ var _this = this;
+ var e = e || event;
+ if(this.oSmall == null){
+ //添加小框框
+ this.oSmall = document.createElement('span');
+ this.oSmall.style.position = 'absolute';
+ this.oSmall.style.left = 0;
+ this.oSmall.style.top = 0;
+ this.oSmall.style.display = 'block';
+ this.oSmall.style.width = this.defaults.sWidth +'px';
+ this.oSmall.style.height = this.defaults.sHeight +'px';
+ this.oSmall.style.background = '#999';
+ this.oSmall.style.border = '1px solid #000';
+ this.oSmall.style.cursor = 'move';
+ this.oSmall.style.opacity = this.defaults.sOpacity;
+ this.oSmall.style.filter = 'alpha(opacity='+(this.defaults.sOpacity*100)+')';
+ this.oSmall.style.zoom = 1;
+ this.obj.appendChild(this.oSmall);
+ }else{
+ this.oSmall.style.display = 'block';
+ }
+
+
+ if(this.bigElement == null){
+ //添加大图
+ this.bigElement = document.createElement('div');
+ this.bigImage = document.createElement('img');
+ var img = new Image();
+ var _this = this;
+ img.src = this.defaults.pPath;
+ this.bigImage.src = this.defaults.pPath;
+ this.bigElement.appendChild(this.bigImage);
+ this.obj.appendChild(this.bigElement);
+ this.bigImage.style.position = 'absolute';
+ img.onload = function(){
+ _this.bigImage.style.width = img.width+'px';
+ _this.bigImage.style.height = img.height+'px';
+ }
+ this.bigElement.style.position = 'absolute';
+ this.bigElement.style.overflow = 'hidden';
+ this.bigElement.style.width = this.defaults.pWidth +'px';
+ this.bigElement.style.height = this.defaults.pHeight +'px';
+ this.bigElement.style.top = this.defaults.mTop +'px';
+ this.bigElement.style.right = - (parseInt( this.css(this.bigElement,'width') ) + this.defaults.mLeft) +'px';
+ this.bigElement.style.border = '1px solid #ccc';
+ this.bigElement.style.zIndex = '99998';
+ }else{
+ this.bigElement.style.display = 'block';
+ }
+
+
+ this.posX = $(this.obj).offset().left + this.oSmall.offsetWidth/2;
+ this.posY = $(this.obj).offset().top + this.oSmall.offsetHeight/2;
+ document.onmousemove = function(e){
+ _this.move(e);
+ }
+ this.obj.onmouseout = function(){
+ _this.out();
+ }
+}
+Magnifier.prototype.move = function(e){
+ var e = e || event;
+ var tt = document.documentElement.scrollTop || document.body.scrollTop;
+ var ll = document.documentElement.scrollLeft || document.body.scrollLeft;
+ //限制小框移动范围
+ var l = ll + e.clientX - this.posX;
+ var t = tt + e.clientY - this.posY;
+ if(l < 0){
+ l = 0;
+ }else if(l > this.obj.offsetWidth - this.oSmall.offsetWidth ){
+ l = this.obj.offsetWidth - this.oSmall.offsetWidth ;
+ }
+ if(t < 0){
+ t = 0;
+ }else if(t > this.obj.offsetHeight - this.oSmall.offsetHeight ){
+ t = this.obj.offsetHeight - this.oSmall.offsetHeight ;
+ }
+ this.oSmall.style.left = l + 'px';
+ this.oSmall.style.top = t + 'px';
+
+ var percentX = l/(this.oSmall.offsetWidth-this.obj.offsetWidth);
+ var percentY = t/(this.oSmall.offsetHeight-this.obj.offsetHeight);
+ /*大图移动位置*/
+ this.bigImage.style.left = percentX * (this.bigImage.offsetWidth-this.bigElement.offsetWidth) + "px";
+ this.bigImage.style.top = percentY * (this.bigImage.offsetHeight-this.bigElement.offsetHeight) + "px";
+}
+Magnifier.prototype.out = function(e){
+ document.onmousemove = null;
+ this.oSmall.style.display = 'none';
+ this.bigElement.style.display = 'none';
+}
+Magnifier.prototype.css = function(obj,attr){
+ return obj.currentStyle ? obj.currentStyle[attr] : window.getComputedStyle(obj,null)[attr];
+}
\ No newline at end of file
diff --git a/src/main/resources/static/js/SpryTabbedPanels.js b/src/main/resources/static/js/SpryTabbedPanels.js
new file mode 100644
index 0000000..e69de29
diff --git a/src/main/resources/static/js/WdatePicker.js b/src/main/resources/static/js/WdatePicker.js
new file mode 100644
index 0000000..8c9adde
--- /dev/null
+++ b/src/main/resources/static/js/WdatePicker.js
@@ -0,0 +1,39 @@
+/*
+ * My97 DatePicker 4.7 Prerelease2
+ * License: http://www.my97.net/dp/license.asp
+ */
+var $dp,WdatePicker;(function(){var _={
+$wdate:true,
+$dpPath:"",
+$crossFrame:true,
+doubleCalendar:false,
+enableKeyboard:true,
+enableInputMask:true,
+autoUpdateOnChanged:null,
+whichDayIsfirstWeek:4,
+position:{},
+lang:"auto",
+skin:"default",
+dateFmt:"yyyy-MM-dd",
+realDateFmt:"yyyy-MM-dd",
+realTimeFmt:"HH:mm:ss",
+realFullFmt:"%Date %Time",
+minDate:"1900-01-01 00:00:00",
+maxDate:"2099-12-31 23:59:59",
+startDate:"",
+alwaysUseStartDate:false,
+yearOffset:1911,
+firstDayOfWeek:0,
+isShowWeek:false,
+highLineWeekDay:true,
+isShowClear:true,
+isShowToday:true,
+isShowOK:true,
+isShowOthers:true,
+readOnly:false,
+errDealMode:0,
+autoPickDate:null,
+qsEnabled:true,
+autoShowQS:false,
+
+specialDates:null,specialDays:null,disabledDates:null,disabledDays:null,opposite:false,onpicking:null,onpicked:null,onclearing:null,oncleared:null,ychanging:null,ychanged:null,Mchanging:null,Mchanged:null,dchanging:null,dchanged:null,Hchanging:null,Hchanged:null,mchanging:null,mchanged:null,schanging:null,schanged:null,eCont:null,vel:null,errMsg:"",quickSel:[],has:{}};WdatePicker=U;var X=window,O="document",J="documentElement",C="getElementsByTagName",V,A,T,I,b;switch(navigator.appName){case"Microsoft Internet Explorer":T=true;break;case"Opera":b=true;break;default:I=true;break}A=L();if(_.$wdate)M(A+"skin/WdatePicker.css");V=X;if(_.$crossFrame){try{while(V.parent[O]!=V[O]&&V.parent[O][C]("frameset").length==0)V=V.parent}catch(P){}}if(!V.$dp)V.$dp={ff:I,ie:T,opera:b,el:null,win:X,status:0,defMinDate:_.minDate,defMaxDate:_.maxDate,flatCfgs:[]};B();if($dp.status==0)Z(X,function(){U(null,true)});if(!X[O].docMD){E(X[O],"onmousedown",D);X[O].docMD=true}if(!V[O].docMD){E(V[O],"onmousedown",D);V[O].docMD=true}E(X,"onunload",function(){if($dp.dd)Q($dp.dd,"none")});function B(){V.$dp=V.$dp||{};obj={$:function($){return(typeof $=="string")?X[O].getElementById($):$},$D:function($,_){return this.$DV(this.$($).value,_)},$DV:function(_,$){if(_!=""){this.dt=$dp.cal.splitDate(_,$dp.cal.dateFmt);if($)for(var B in $)if(this.dt[B]===undefined)this.errMsg="invalid property:"+B;else{this.dt[B]+=$[B];if(B=="M"){var C=$["M"]>0?1:0,A=new Date(this.dt["y"],this.dt["M"],0).getDate();this.dt["d"]=Math.min(A+C,this.dt["d"])}}if(this.dt.refresh())return this.dt}return""},show:function(){var A=X[O].getElementsByTagName("div"),$=100000;for(var B=0;B$)$=_}this.dd.style.zIndex=$+2;Q(this.dd,"block")},hide:function(){Q(this.dd,"none")},attachEvent:E};for(var $ in obj)V.$dp[$]=obj[$];$dp=V.$dp}function E(A,$,_){if(T)A.attachEvent($,_);else{var B=$.replace(/on/,"");_._ieEmuEventHandler=function($){return _($)};A.addEventListener(B,_._ieEmuEventHandler,false)}}function L(){var _,A,$=X[O][C]("script");for(var B=0;B<$.length;B++){_=$[B].src.substring(0,$[B].src.toLowerCase().indexOf("wdatepicker.js"));A=_.lastIndexOf("/");if(A>0)_=_.substring(0,A+1);if(_)break}return _}function F(F){var E,C;if(F.substring(0,1)!="/"&&F.indexOf("://")==-1){E=V.location.href;C=location.href;if(E.indexOf("?")>-1)E=E.substring(0,E.indexOf("?"));if(C.indexOf("?")>-1)C=C.substring(0,C.indexOf("?"));var G,I,$="",D="",A="",J,H,B="";for(J=0;J_.scrollTop||A.scrollLeft>_.scrollLeft))?A:_;return{"top":B.scrollTop,"left":B.scrollLeft}}function D($){src=$?($.srcElement||$.target):null;if($dp&&$dp.cal&&!$dp.eCont&&$dp.dd&&src!=$dp.el&&$dp.dd.style.display=="block")$dp.cal.close()}function Y(){$dp.status=2;H()}function H(){if($dp.flatCfgs.length>0){var $=$dp.flatCfgs.shift();$.el={innerHTML:""};$.autoPickDate=true;$.qsEnabled=false;K($)}}var R,$;function U(J,C){$dp.win=X;B();J=J||{};if(C){if(!G()){$=$||setInterval(function(){if(V[O].readyState=="complete")clearInterval($);U(null,true)},50);return}if($dp.status==0){$dp.status=1;K({el:{innerHTML:""}},true)}else return}else if(J.eCont){J.eCont=$dp.$(J.eCont);$dp.flatCfgs.push(J);if($dp.status==2)H()}else{if($dp.status==0){U(null,true);return}if($dp.status!=2)return;var F=D();if(F){$dp.srcEl=F.srcElement||F.target;F.cancelBubble=true}J.el=$dp.$(J.el||$dp.srcEl);if(!J.el||J.el["My97Mark"]===true||J.el.disabled||(J.el==$dp.el&&Q($dp.dd)!="none"&&$dp.dd.style.left!="-1970px")){J.el["My97Mark"]=false;return}K(J);if(J.el.nodeType==1&&J.el["My97Mark"]===undefined){$dp.el["My97Mark"]=false;var _,A;if(F.type=="focus"){_="onclick";A="onfocus"}else{_="onfocus";A="onclick"}E(J.el,_,J.el[A])}}function G(){if(T&&V!=X&&V[O].readyState!="complete")return false;return true}function D(){if(I){func=D.caller;while(func!=null){var $=func.arguments[0];if($&&($+"").indexOf("Event")>=0)return $;func=func.caller}return null}return event}}function S(_,$){return _.currentStyle?_.currentStyle[$]:document.defaultView.getComputedStyle(_,false)[$]}function Q(_,$){if(_)if($!=null)_.style.display=$;else return S(_,"display")}function K(H,$){for(var D in _)if(D.substring(0,1)!="$")$dp[D]=_[D];for(D in H)if($dp[D]!==undefined)$dp[D]=H[D];var E=$dp.el?$dp.el.nodeName:"INPUT";if($||$dp.eCont||new RegExp(/input|textarea|div|span|p|a/ig).test(E))$dp.elProp=E=="INPUT"?"value":"innerHTML";else return;if($dp.lang=="auto")$dp.lang=T?navigator.browserLanguage.toLowerCase():navigator.language.toLowerCase();if(!$dp.dd||$dp.eCont||($dp.lang&&$dp.realLang&&$dp.realLang.name!=$dp.lang&&$dp.getLangIndex&&$dp.getLangIndex($dp.lang)>=0)){if($dp.dd&&!$dp.eCont)V[O].body.removeChild($dp.dd);if(_.$dpPath=="")F(A);var B="";if($dp.eCont){$dp.eCont.innerHTML=B;Z($dp.eCont.childNodes[0],Y)}else{$dp.dd=V[O].createElement("DIV");$dp.dd.style.cssText="position:absolute";$dp.dd.innerHTML=B;V[O].body.appendChild($dp.dd);Z($dp.dd.childNodes[0],Y);if($)$dp.dd.style.left=$dp.dd.style.top="-1970px";else{$dp.show();C()}}}else if($dp.cal){$dp.show();$dp.cal.init();if(!$dp.eCont)C()}function C(){var F=$dp.position.left,B=$dp.position.top,C=$dp.el;if(C!=$dp.srcEl&&(Q(C)=="none"||C.type=="hidden"))C=$dp.srcEl;var H=W(C),$=G(X),D=N(V),A=a(V),E=$dp.dd.offsetHeight,_=$dp.dd.offsetWidth;if(isNaN(B)){if(B=="above"||(B!="under"&&(($.topM+H.bottom+E>D.height)&&($.topM+H.top-E>0))))B=A.top+$.topM+H.top-E-2;else B=A.top+$.topM+Math.min(H.bottom,D.height-E)+2}else B+=A.top+$.topM;if(isNaN(F)){var I=H.right-H.left-_;if(I<0)I=0;F=A.left+$.leftM+H.left+I;F=Math.min(F,D.width-_-5)-(T?2:0)}else F+=A.left+$.leftM;$dp.dd.style.top=B+"px";$dp.dd.style.left=F+"px"}}})()
\ No newline at end of file
diff --git a/src/main/resources/static/js/aboutUs.js b/src/main/resources/static/js/aboutUs.js
new file mode 100644
index 0000000..f731f53
--- /dev/null
+++ b/src/main/resources/static/js/aboutUs.js
@@ -0,0 +1,89 @@
+/*关于我们页面的JS*/
+$(function(){
+ /*点击显示隐藏*/
+ $('.abc_left h3').each(function(index) {
+ $(this).click(function(){
+ $('.abc_left h4').show();
+ });
+ });
+ $('.abc_left h4').each(function(index) {
+ $('.abc_left h4').eq(index).click(function(){
+ $('.abc_left a').removeClass("specl_other");
+ $('.abc_left a').eq(index).addClass('specl_other');
+ });
+ });
+ /*导航切换*/
+ $('.newesthing_cort-nav li').each(function(index, element) {
+ $(this).click(function(){
+ $(this).addClass('newesthing_cort-check').siblings().removeClass('newesthing_cort-check');
+ });
+ });
+})
+/*小导航固定*/
+/*
+$(window).scroll(function(){
+ if ($(window).scrollTop() >= 190) {
+ $(".abc_left").addClass("abc_leftfix");
+ }
+else {
+ $(".abc_left").removeClass("abc_leftfix");
+ };
+ $('.abc_left li').click(function(){
+ $("html,body").stop(true, false).animate({"scrollTop": $('.zbk_top').offset().top-0},500);
+ })
+});
+*/
+
+/*$(function () {
+ STO = setInterval(scroll_slide, 2);
+});
+function scroll_slide() {
+ $(".abc_leftfix").css({ "top": $(document).scrollTop() - $(".abc_leftfix").height() / 2 + 49 + "px" });
+ if ($(".footer").offset().top - $(document).scrollTop() - 202 < $(".abc_leftfix").height()) {
+ $(".abc_leftfix").css({ "top": $(".footer").offset().top - $(".abc_leftfix").height() - 386 + "px" });
+ }
+}*/
+
+/*购买流程切换 (1106)*/
+$(function () {
+ /*导航一切换*/
+ /*$('.ttop_right li').each(function (index, element) {
+ $(this).click(function () {
+ $('.ttop_right span').removeClass('sptdnav-left');
+ $(this).addClass('ttop_spli').siblings().removeClass('ttop_spli');
+ $('.ttop_right li').eq(index + 1).find('span').addClass('sptdnav-left').siblings().removeClass('sptdnav-left');
+ $('.ttop_right i').removeClass('sptdnav-right');
+ $('.ques_ul li').removeClass('spclick');
+ $('.buy_question').show();
+ $('.common_question').hide();
+ });
+ $('.ttop_right li').eq(5).click(function () {
+ $('.ttop_right i').addClass('sptdnav-right');
+ });
+ });*/
+ $('.question_allnav-top li').each(function (index, element) {
+ $(this).click(function () {
+ $(this).addClass('questionnav-click').siblings().removeClass('questionnav-click');
+ $('.question_allnav-bottom li').eq(index).addClass('bs_show').siblings().removeClass('bs_show');
+ })
+ });
+ /*左边导航切换*/
+ $('.ques_ul li').each(function (index, element) {
+ $(this).click(function () {
+ $(this).addClass('spclick').siblings().removeClass('spclick');
+ //上面的效果消失
+ $('.ttop_right span').removeClass('sptdnav-left');
+ $('.ttop_right li').removeClass('ttop_spli');
+ //右边内容
+ $('.buy_question').hide();
+ $('.common_question').show();
+ });
+ });
+ /*问题切换*/
+ $('.com-question li').each(function (index, element) {
+ $('.com-question h4').eq(index).click(function () {
+ $('.com-question div').hide();
+ $('.com-question div').eq(index).show();
+ });
+ });
+})
\ No newline at end of file
diff --git a/src/main/resources/static/js/adv.gif b/src/main/resources/static/js/adv.gif
new file mode 100644
index 0000000..e69de29
diff --git a/src/main/resources/static/js/adv.js b/src/main/resources/static/js/adv.js
new file mode 100644
index 0000000..9870b23
--- /dev/null
+++ b/src/main/resources/static/js/adv.js
@@ -0,0 +1 @@
+(function(j,B,g){var i=1000;var a="cma";var v=(function(){var e="dangdang";var d=window.location.href;if(d.indexOf(e)>-1){i=7000;a="cma_dangdang"}})();function k(d){return Object.prototype.toString.call(d)==="[object Array]"}var t=function(){var q=location.hostname;var f=/^\d{1,3}.\d{1,3}.\d{1,3}.\d{1,3}$/;var d=q.split(".");var p=d.length-2;if(f.test(q)||2===d.length){return q}for(;0<=p;--p){if("www"===d[p]){return d.slice(p+1).join(".")}if(-1===",com,net,org,gov,edu,info,name,int,mil,arpa,asia,biz,pro,coop,aero,museum,ac,ad,ae,af,ag,ai,al,am,an,ao,aq,ar,as,at,au,aw,az,ba,bb,bd,be,bf,bg,bh,bi,bj,bm,bn,bo,br,bs,bt,bv,bw,by,bz,ca,cc,cf,cg,ch,ci,ck,cl,cm,cn,co,cq,cr,cu,cv,cx,cy,cz,de,dj,dk,dm,do,dz,ec,ee,eg,eh,es,et,ev,fi,fj,fk,fm,fo,fr,ga,gb,gd,ge,gf,gh,gi,gl,gm,gn,gp,gr,gt,gu,gw,gy,hk,hm,hn,hr,ht,hu,id,ie,il,in,io,iq,ir,is,it,jm,jo,jp,ke,kg,kh,ki,km,kn,kp,kr,kw,ky,kz,la,lb,lc,li,lk,lr,ls,lt,lu,lv,ly,ma,mc,md,me,mg,mh,ml,mm,mn,mo,mp,mq,mr,ms,mt,mv,mw,mx,my,mz,na,nc,ne,nf,ng,ni,nl,no,np,nr,nt,nu,nz,om,pa,pe,pf,pg,ph,pk,pl,pm,pn,pr,pt,pw,py,qa,re,ro,ru,rw,sa,sb,sc,sd,se,sg,sh,si,sj,sk,sl,sm,sn,so,sr,st,su,sy,sz,tc,td,tf,tg,th,tj,tk,tm,tn,to,tp,tr,tt,tv,tw,tz,ua,ug,uk,us,uy,va,vc,ve,vg,vn,vu,wf,ws,ye,yu,za,zm,zr,zw,".indexOf(","+d[p]+",")){return d.slice(p).join(".")}}return q};_py.getLast=function(f){for(var d=this.length-1;0<=d;d--){if(k(this[d])){if(this[d][0]==f){return this[d][1]}}}};_py.serialize=function(){function s(C,E){for(var D=0;D1){s=d[1];e=s.split("&")[0].replace("=","");return e}var p=new RegExp("(^|&)"+f+"=([^&]*)(&|$)"),q=j.location.search.substr(1).match(p);if(q!=null&&q){return q[2]}var u=j.location.hash.substr(1).match(p);if(u!=null&&u){return u[2]}return""},setExendParam:function(u,C,s){var f=u||"",d=C||"",q=s||"";ipy.getExtendParam(f,d,q)},getExtendParam:function(d,p,s){var q="",f="";if(d!=null&&d){q="p="+d}if(p!=null&&p){_py.push(["pv",p])}if(s!=null&&s){q+="&ext="+s}ipy.extendSend(q)},itemInfo:function(f){var d=[],s;switch(typeof f){case"string":s=f;break;case"object":var p=["id","name","origPrice","price","brand","imgUrl","productUrl","categoryId","category","promotion","discount","soldOut","domain"];for(var e=0;e